summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2010-12-02 15:59:41 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2010-12-02 15:59:41 +0000
commitae10be2c3e89add31d73538855b14a5ee0b547bd (patch)
treef3b2630c8f08038af8407638938ef00ed85848f6 /sys
parent326ef47d0c592a024e789b65053f1586c5cfcaf5 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/pci_pci.c2
-rw-r--r--sys/i386/pci/pci_bus.c5
2 files changed, 7 insertions, 0 deletions
diff --git a/sys/dev/pci/pci_pci.c b/sys/dev/pci/pci_pci.c
index e1f16d983d019..91c8bc32bd6bd 100644
--- a/sys/dev/pci/pci_pci.c
+++ b/sys/dev/pci/pci_pci.c
@@ -699,7 +699,9 @@ host_pcib_get_busno(pci_read_config_fn read_config, int bus, int slot, int func,
case 0x00171166:
case 0x01011166:
case 0x010f1014:
+ case 0x01101166:
case 0x02011166:
+ case 0x02251166:
case 0x03021014:
*busnum = read_config(bus, slot, func, 0x44, 1);
break;
diff --git a/sys/i386/pci/pci_bus.c b/sys/i386/pci/pci_bus.c
index e0c8fbdcdc329..2fdb81b4744f2 100644
--- a/sys/i386/pci/pci_bus.c
+++ b/sys/i386/pci/pci_bus.c
@@ -204,6 +204,9 @@ legacy_pcib_is_host_bridge(int bus, int slot, int func,
break;
}
break;
+ case 0x1A308086:
+ s = "Intel 82845 Host to PCI bridge";
+ break;
/* AMD -- vendor 0x1022 */
case 0x30001022:
@@ -304,6 +307,8 @@ legacy_pcib_is_host_bridge(int bus, int slot, int func,
case 0x00171166:
/* FALLTHROUGH */
case 0x01011166:
+ case 0x01101166:
+ case 0x02251166:
s = "ServerWorks host to PCI bridge(unknown chipset)";
*busnum = legacy_pcib_read_config(0, bus, slot, func, 0x44, 1);
break;