aboutsummaryrefslogtreecommitdiff
path: root/src/devices
diff options
context:
space:
mode:
authorYinghai Lu <yinghailu@gmail.com>2005-01-14 02:59:24 +0000
committerYinghai Lu <yinghailu@gmail.com>2005-01-14 02:59:24 +0000
commitd57e75606501e2f7b72d4377661d8cf8dece0999 (patch)
tree380924929504736182cf7f38cdfff633e46e028b /src/devices
parente1f7c7fe0df557d0ad231a97535a44b8f13e5d3b (diff)
onboard pci_rom finally done
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1870 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/device.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/devices/device.c b/src/devices/device.c
index 0ad756b41d..9a1e40e230 100644
--- a/src/devices/device.c
+++ b/src/devices/device.c
@@ -599,6 +599,18 @@ void dev_initialize(void)
struct device *dev;
printk_info("Initializing devices...\n");
+#if CONFIG_CONSOLE_VGA == 1
+ for (dev = all_devices; dev; dev = dev->next) {
+ if (dev->enabled && !dev->initialized &&
+ dev->ops && dev->ops->init)
+ {
+ if( dev->on_mainboard && (dev->rom_address!=0)) continue;
+ printk_debug("%s init\n", dev_path(dev));
+ dev->initialized = 1;
+ dev->ops->init(dev);
+ }
+ }
+#endif
for (dev = all_devices; dev; dev = dev->next) {
if (dev->enabled && !dev->initialized &&
dev->ops && dev->ops->init)