linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] OLPC + Geode fixups
@ 2006-07-24 16:50 Jordan Crouse
  2006-07-24 16:53 ` [PATCH 1/2] GEODE: Update and fixup the PCI IDs for the CS5535 Jordan Crouse
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jordan Crouse @ 2006-07-24 16:50 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel, blizzard, dwmw2

The following two patches are in support of the OLPC project.  I sent these
patches before, but somewhere along the line I failed to correctly follow up.

The first one does some PCI ID cleanup (which is always nice), and the 
second allows one to disable VGA probing, which is essential when using
the OLPC LinuxBIOS which doesn't have VGA/VESA support (yay!).

-- 
Jordan Crouse
Senior Linux Engineer
Advanced Micro Devices, Inc.
<www.amd.com/embeddedprocessors>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] GEODE: Update and fixup the PCI IDs for the CS5535
  2006-07-24 16:50 [PATCH 0/2] OLPC + Geode fixups Jordan Crouse
@ 2006-07-24 16:53 ` Jordan Crouse
  2006-07-24 16:53 ` [PATCH 2/2] [PATCH] Add a configuration option to avoid automatically probing VGA Jordan Crouse
  2006-07-26  5:52 ` [PATCH 0/2] OLPC + Geode fixups Andrew Morton
  2 siblings, 0 replies; 4+ messages in thread
From: Jordan Crouse @ 2006-07-24 16:53 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel, blizzard, dwmw2

From: Jordan Crouse <jordan.crouse@amd.com>

Clean up redundant and poorly worded PCI IDs

Signed-off-by:  Jordan Crouse <jordan.crouse@amd.com>
---

 drivers/video/geode/gxfb_core.c |    2 +-
 include/linux/pci_ids.h         |    5 ++---
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/video/geode/gxfb_core.c b/drivers/video/geode/gxfb_core.c
index 0d3643f..a454dcb 100644
--- a/drivers/video/geode/gxfb_core.c
+++ b/drivers/video/geode/gxfb_core.c
@@ -380,7 +380,7 @@ static void gxfb_remove(struct pci_dev *
 }
 
 static struct pci_device_id gxfb_id_table[] = {
-	{ PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_CS5535_VIDEO,
+	{ PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_GX_VIDEO,
 	  PCI_ANY_ID, PCI_ANY_ID, PCI_BASE_CLASS_DISPLAY << 16,
 	  0xff0000, 0 },
 	{ 0, }
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h
index c09396d..ca1c50c 100644
--- a/include/linux/pci_ids.h
+++ b/include/linux/pci_ids.h
@@ -390,7 +390,7 @@ #define PCI_DEVICE_ID_NS_CS5535_ISA	0x00
 #define PCI_DEVICE_ID_NS_CS5535_IDE	0x002d
 #define PCI_DEVICE_ID_NS_CS5535_AUDIO	0x002e
 #define PCI_DEVICE_ID_NS_CS5535_USB	0x002f
-#define PCI_DEVICE_ID_NS_CS5535_VIDEO	0x0030
+#define PCI_DEVICE_ID_NS_GX_VIDEO	0x0030
 #define PCI_DEVICE_ID_NS_SATURN		0x0035
 #define PCI_DEVICE_ID_NS_SCx200_BRIDGE	0x0500
 #define PCI_DEVICE_ID_NS_SCx200_SMI	0x0501
@@ -403,8 +403,7 @@ #define PCI_DEVICE_ID_NS_SC1100_SMI	0x05
 #define PCI_DEVICE_ID_NS_SC1100_XBUS	0x0515
 #define PCI_DEVICE_ID_NS_87410		0xd001
 
-#define PCI_DEVICE_ID_NS_CS5535_HOST_BRIDGE  0x0028
-#define PCI_DEVICE_ID_NS_CS5535_ISA_BRIDGE   0x002b
+#define PCI_DEVICE_ID_NS_GX_HOST_BRIDGE  0x0028
 
 #define PCI_VENDOR_ID_TSENG		0x100c
 #define PCI_DEVICE_ID_TSENG_W32P_2	0x3202



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] [PATCH] Add a configuration option to avoid automatically probing VGA
  2006-07-24 16:50 [PATCH 0/2] OLPC + Geode fixups Jordan Crouse
  2006-07-24 16:53 ` [PATCH 1/2] GEODE: Update and fixup the PCI IDs for the CS5535 Jordan Crouse
@ 2006-07-24 16:53 ` Jordan Crouse
  2006-07-26  5:52 ` [PATCH 0/2] OLPC + Geode fixups Andrew Morton
  2 siblings, 0 replies; 4+ messages in thread
From: Jordan Crouse @ 2006-07-24 16:53 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel, blizzard, dwmw2

From: Jordan Crouse <jordan.crouse@amd.com>

Some x86 implementations don't have a built in VGA / VESA BIOS.  This
configuration option (enabled when EMBEDDED is selected), allows us to
avoid probing the VGA hardware during boot.  This option also disables
the VGA console option, which depends heavily on the VGA / VESA probing.

Signed-off-by: Jordan Crouse <jordan.crouse@amd.com>
---

 arch/i386/Kconfig             |    9 +++++++++
 arch/i386/boot/setup.S        |    5 +++++
 drivers/video/Kconfig         |    6 +++---
 drivers/video/console/Kconfig |    4 ++--
 4 files changed, 19 insertions(+), 5 deletions(-)

diff --git a/arch/i386/Kconfig b/arch/i386/Kconfig
index daa75ce..d8935d9 100644
--- a/arch/i386/Kconfig
+++ b/arch/i386/Kconfig
@@ -735,6 +735,15 @@ config SECCOMP
 
 	  If unsure, say Y. Only embedded should say N here.
 
+config VGA_NOPROBE
+       bool "Don't probe VGA at boot" if EMBEDDED
+       default n
+       help
+         Saying Y here will cause the kernel to not probe VGA at boot time.
+         This will break everything that depends on the probed screen
+         data.  Say N here unless you are absolutely sure this is what you
+         want.
+
 source kernel/Kconfig.hz
 
 config KEXEC
diff --git a/arch/i386/boot/setup.S b/arch/i386/boot/setup.S
index d2b684c..d63bd9d 100644
--- a/arch/i386/boot/setup.S
+++ b/arch/i386/boot/setup.S
@@ -394,10 +394,13 @@ # Set the keyboard repeat rate to the ma
 	xorw	%bx, %bx
 	int	$0x16
 
+#ifndef CONFIG_VGA_NOPROBE
+
 # Check for video adapter and its parameters and allow the
 # user to browse video modes.
 	call	video				# NOTE: we need %ds pointing
 						# to bootsector
+#endif
 
 # Get hd0 data...
 	xorw	%ax, %ax
@@ -1006,9 +1009,11 @@ gdt_48:
 	.word	gdt_end - gdt - 1		# gdt limit
 	.word	0, 0				# gdt base (filled in later)
 
+#ifndef CONFIG_VGA_NOPROBE
 # Include video setup & detection code
 
 #include "video.S"
+#endif
 
 # Setup signature -- must be last
 setup_sig1:	.word	SIG1
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
index 6533b0f..21bf515 100644
--- a/drivers/video/Kconfig
+++ b/drivers/video/Kconfig
@@ -540,7 +540,7 @@ config FB_TGA
 
 config FB_VESA
 	bool "VESA VGA graphics support"
-	depends on (FB = y) && X86
+	depends on (FB = y) && X86 && !VGA_NOPROBE
 	select FB_CFB_FILLRECT
 	select FB_CFB_COPYAREA
 	select FB_CFB_IMAGEBLIT
@@ -828,7 +828,7 @@ config FB_I810_I2C
 
 config FB_INTEL
 	tristate "Intel 830M/845G/852GM/855GM/865G support (EXPERIMENTAL)"
-	depends on FB && EXPERIMENTAL && PCI && X86
+	depends on FB && EXPERIMENTAL && PCI && X86 && !VGA_NOPROBE
 	select AGP
 	select AGP_INTEL
 	select FB_MODE_HELPERS
@@ -1166,7 +1166,7 @@ config FB_SAVAGE_ACCEL
 
 config FB_SIS
 	tristate "SiS/XGI display support"
-	depends on FB && PCI
+	depends on FB && PCI && !VGA_NOPROBE
 	select FB_CFB_FILLRECT
 	select FB_CFB_COPYAREA
 	select FB_CFB_IMAGEBLIT
diff --git a/drivers/video/console/Kconfig b/drivers/video/console/Kconfig
index 4444bef..0be8e3b 100644
--- a/drivers/video/console/Kconfig
+++ b/drivers/video/console/Kconfig
@@ -5,8 +5,8 @@ #
 menu "Console display driver support"
 
 config VGA_CONSOLE
-	bool "VGA text console" if EMBEDDED || !X86
-	depends on !ARCH_ACORN && !ARCH_EBSA110 && !4xx && !8xx && !SPARC && !M68K && !PARISC && !FRV && !ARCH_VERSATILE
+	bool "VGA text console" if (EMBEDDED || !X86)
+	depends on !ARCH_ACORN && !ARCH_EBSA110 && !4xx && !8xx && !SPARC && !M68K && !PARISC && !FRV && !ARCH_VERSATILE && !VGA_NOPROBE
 	default y
 	help
 	  Saying Y here will allow you to use Linux in text mode through a



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/2] OLPC + Geode fixups
  2006-07-24 16:50 [PATCH 0/2] OLPC + Geode fixups Jordan Crouse
  2006-07-24 16:53 ` [PATCH 1/2] GEODE: Update and fixup the PCI IDs for the CS5535 Jordan Crouse
  2006-07-24 16:53 ` [PATCH 2/2] [PATCH] Add a configuration option to avoid automatically probing VGA Jordan Crouse
@ 2006-07-26  5:52 ` Andrew Morton
  2 siblings, 0 replies; 4+ messages in thread
From: Andrew Morton @ 2006-07-26  5:52 UTC (permalink / raw)
  To: Jordan Crouse; +Cc: linux-kernel, blizzard, dwmw2, linux-fbdev-devel

On Mon, 24 Jul 2006 10:50:46 -0600
"Jordan Crouse" <jordan.crouse@amd.com> wrote:

> The following two patches are in support of the OLPC project.  I sent these
> patches before, but somewhere along the line I failed to correctly follow up.

Actually I sneakily snuck
git://git.infradead.org/users/jcrouse/geode.git#linus-upstream into -mm (as
git-geode.patch) a month ago - it's been there since 2.6.17-mm3.

So assuming that tree is being kept up-to-date, I don't need to do
anything.  Please arrange for the relevant subsystem maintainers to review
the bits of your tree which affect them (as you have done) and then send a
pull request to Linus at the appropriate time, cc'ing myself.

Unless there are significant bugfixes or this is a new subsystem, the
appropriate time would be in the post-2.6.18 two-week merge window.

And please let me know when there are -mm-affecting changes in that git tree.
Sometimes people add new branches without telling me, or they leave me
carrying abandoned stuff.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2006-07-26  5:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-07-24 16:50 [PATCH 0/2] OLPC + Geode fixups Jordan Crouse
2006-07-24 16:53 ` [PATCH 1/2] GEODE: Update and fixup the PCI IDs for the CS5535 Jordan Crouse
2006-07-24 16:53 ` [PATCH 2/2] [PATCH] Add a configuration option to avoid automatically probing VGA Jordan Crouse
2006-07-26  5:52 ` [PATCH 0/2] OLPC + Geode fixups Andrew Morton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).