diff options
author | peter <peter@FreeBSD.org> | 2002-11-13 21:30:44 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2002-11-13 21:30:44 +0000 |
commit | 51cb1ae47b72c0ab4605f2a92842d6b54a52fe31 (patch) | |
tree | eab146aa80bfee906439cbca43e997c29b687d82 /sys/amd64/pci | |
parent | cea56bb80551290c65f7717f06e849b9066c8761 (diff) | |
download | FreeBSD-src-51cb1ae47b72c0ab4605f2a92842d6b54a52fe31.zip FreeBSD-src-51cb1ae47b72c0ab4605f2a92842d6b54a52fe31.tar.gz |
Recognize the Serverworks CIOB30 host to pci bridge.
Diffstat (limited to 'sys/amd64/pci')
-rw-r--r-- | sys/amd64/pci/pci_bus.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/amd64/pci/pci_bus.c b/sys/amd64/pci/pci_bus.c index c532a28..226536c 100644 --- a/sys/amd64/pci/pci_bus.c +++ b/sys/amd64/pci/pci_bus.c @@ -263,6 +263,11 @@ nexus_pcib_is_host_bridge(int bus, int slot, int func, *busnum = nexus_pcib_read_config(0, bus, slot, func, 0x44, 1); break; + case 0x00101166: + s = "ServerWorks CIOB30 host to PCI bridge"; + *busnum = nexus_pcib_read_config(0, bus, slot, func, 0x44, 1); + break; + case 0x00111166: /* FALLTHROUGH */ case 0x03021014: /* IBM re-badged ServerWorks chipset */ |