diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2005-03-25 14:18:50 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2005-03-25 14:18:50 +0000 |
| commit | 5165a17df50248cac8f6bb461cf3cff3814fa173 (patch) | |
| tree | 1d1f2e8e05c9221f48b0b13d5667256ef4262d05 | |
| parent | ddbcc782738e13e5ef96575a92ed6789c8ca2a25 (diff) | |
Notes
| -rw-r--r-- | sys/dev/pci/pci_pci.c | 5 | ||||
| -rw-r--r-- | sys/i386/pci/pci_bus.c | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/sys/dev/pci/pci_pci.c b/sys/dev/pci/pci_pci.c index c246542ed2c1..130205cf36dd 100644 --- a/sys/dev/pci/pci_pci.c +++ b/sys/dev/pci/pci_pci.c @@ -562,6 +562,11 @@ host_pcib_get_busno(pci_read_config_fn read_config, int bus, int slot, int func, case 0x03021014: *busnum = read_config(bus, slot, func, 0x44, 1); break; + + /* Compaq/HP -- vendor 0x0e11 */ + case 0x60100e11: + *busnum = read_config(bus, slot, func, 0xc8, 1); + break; default: /* Don't know how to read bus number. */ return 0; diff --git a/sys/i386/pci/pci_bus.c b/sys/i386/pci/pci_bus.c index 247e823ef721..8721d4a984f6 100644 --- a/sys/i386/pci/pci_bus.c +++ b/sys/i386/pci/pci_bus.c @@ -276,6 +276,12 @@ legacy_pcib_is_host_bridge(int bus, int slot, int func, *busnum = legacy_pcib_read_config(0, bus, slot, func, 0x44, 1); break; + /* Compaq/HP -- vendor 0x0e11 */ + case 0x60100e11: + s = "Compaq/HP Model 6010 HotPlug PCI Bridge"; + *busnum = legacy_pcib_read_config(0, bus, slot, func, 0xc8, 1); + break; + /* Integrated Micro Solutions -- vendor 0x10e0 */ case 0x884910e0: s = "Integrated Micro Solutions VL Bridge"; |
