diff options
author | Li-Ta Lo <ollie@lanl.gov> | 2005-01-11 22:48:54 +0000 |
---|---|---|
committer | Li-Ta Lo <ollie@lanl.gov> | 2005-01-11 22:48:54 +0000 |
commit | 515f6c729e0b4878884e74e21d00dbc4b66dcdd9 (patch) | |
tree | 82879fb1f10c07a85c573bca92410bdc6c874e3d /src/northbridge | |
parent | 51990b350a03eb718f6af0890a2f9a42373106ca (diff) | |
download | coreboot-515f6c729e0b4878884e74e21d00dbc4b66dcdd9.tar.xz |
works for PCI vga cards too
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1856 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge')
-rw-r--r-- | src/northbridge/amd/amdk8/northbridge.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/northbridge/amd/amdk8/northbridge.c b/src/northbridge/amd/amdk8/northbridge.c index a36e6b96a6..fe1fcaa890 100644 --- a/src/northbridge/amd/amdk8/northbridge.c +++ b/src/northbridge/amd/amdk8/northbridge.c @@ -387,6 +387,8 @@ static void amdk8_set_resource(device_t dev, struct resource *resource, unsigned limit |= (nodeid & 7); if (dev->link[link].bridge_ctrl & PCI_BRIDGE_CTL_VGA) { + printk_spew("%s, enabling legacy VGA IO forwarding for %s link %s\n", + __func__, dev_path(dev), link); base |= PCI_IO_BASE_VGA_EN; } if (dev->link[link].bridge_ctrl & PCI_BRIDGE_CTL_NO_ISA) { @@ -439,6 +441,8 @@ static void amdk8_create_vga_resource(device_t dev, unsigned nodeid) } } + printk_spew("%s: link %d has VGA device\n", __func__, link); + /* no VGA card installed */ if (link == dev->links) return; |