diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-10-03 16:27:48 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-10-03 16:27:48 +0000 |
commit | 689a7204855406c88b6e4e4439628b52fd8c0638 (patch) | |
tree | 5ffbda07b1864620de81ebd7f167a9ef12f72a32 /src/northbridge/via/cn400/vgabios.c | |
parent | 6768f39a4b5a5d6d1c2318f632f801fe1c8084cd (diff) |
Tell vgabios code in a couple of boards/chipsets about CBFS
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4713 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge/via/cn400/vgabios.c')
-rw-r--r-- | src/northbridge/via/cn400/vgabios.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/northbridge/via/cn400/vgabios.c b/src/northbridge/via/cn400/vgabios.c index ab66937143..9620debe9b 100644 --- a/src/northbridge/via/cn400/vgabios.c +++ b/src/northbridge/via/cn400/vgabios.c @@ -7,6 +7,7 @@ //#include <printk.h> #include <string.h> #include "vgachip.h" +#include <cbfs.h> /* vgabios.c. Derived from: */ @@ -356,7 +357,7 @@ void do_vgabios(void) /* declare rom address here - keep any config data out of the way * of core LXB stuff */ - rom = 0xfff80000; + rom = cbfs_load_optionrom(dev->vendor, dev->device, 0); pci_write_config32(dev, PCI_ROM_ADDRESS, rom|1); printk_debug("VGA BIOS ROM base address: %x\n", rom); |