diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2011-12-24 00:44:07 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2011-12-27 21:51:59 -0500 |
commit | 4c52fb4ce7513e3f13bd8272309e66bb9e2488a7 (patch) | |
tree | aee0053390a04d6c2d2969aa34d18b14fbbb9e41 /src/Kconfig | |
parent | 72b5e45550e5dc439681cd90a9b6220ac20d0254 (diff) | |
download | seabios-4c52fb4ce7513e3f13bd8272309e66bb9e2488a7.tar.gz |
vgabios: Merge support for GeodeLX vga bios.
GeodeLX support based on a patch sent by Chris Kindt on 20090825. The
patch provides basic support for running the vga bios on a Geode
device.
The original patch has been updated with the following:
* Updates to merge with the current code,
* geode specific timings are loaded at init time
* PCI code was dropped as the current code now supports pci
* Updates for Kconfig
* dropped redundant lxdprintf
* dropped geode_demo screen writing
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/Kconfig b/src/Kconfig index ad16502e..bd4550e4 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -330,13 +330,19 @@ menu "VGA ROM" default n help Build support for Cirrus VGA emulation. - + config VGA_BOCHS bool "Bochs DISPI interface VGA BIOS" default n help Build support for Bochs DISPI interface - + + config VGA_GEODELX + bool "GeodeLX interface VGA BIOS" + default n + help + Build support for Geode vga + config VGA_PCI bool "PCI ROM Headers" default y @@ -349,15 +355,17 @@ menu "VGA ROM" hex "PCI Vendor ID" default 0x1013 if VGA_CIRRUS default 0x1234 if VGA_BOCHS + default 0x1022 if VGA_GEODELX default 0x0000 help Vendor ID for the PCI ROM - + config VGA_DID depends on VGA_PCI hex "PCI Device ID" default 0x00b8 if VGA_CIRRUS default 0x1111 if VGA_BOCHS + default 0x2081 if VGA_GEODELX default 0x0000 help Device ID for the PCI ROM |