diff options
author | jhb <jhb@FreeBSD.org> | 2002-07-19 22:17:02 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2002-07-19 22:17:02 +0000 |
commit | ab8e362c66b755464be5de90eddb60c0bb314338 (patch) | |
tree | 35758cbce38be43f2b66a725a91f9a3457ad3703 /sys/dev/usb/uhci_pci.c | |
parent | 30a6c156b0914f916ff894851baf808789ba371f (diff) | |
download | FreeBSD-src-ab8e362c66b755464be5de90eddb60c0bb314338.zip FreeBSD-src-ab8e362c66b755464be5de90eddb60c0bb314338.tar.gz |
Add PCI IDs for the A, B, and C UHCI controllers in the ICH4.
Sponsored by: The Weather Channel
Diffstat (limited to 'sys/dev/usb/uhci_pci.c')
-rw-r--r-- | sys/dev/usb/uhci_pci.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sys/dev/usb/uhci_pci.c b/sys/dev/usb/uhci_pci.c index db3d5c6..2334d31 100644 --- a/sys/dev/usb/uhci_pci.c +++ b/sys/dev/usb/uhci_pci.c @@ -102,6 +102,15 @@ static const char *uhci_device_ich3_a = "Intel 82801CA/CAM (ICH3) USB controller #define PCI_UHCI_DEVICEID_ICH3_B 0x24848086 static const char *uhci_device_ich3_b = "Intel 82801CA/CAM (ICH3) USB controller USB-B"; +#define PCI_UHCI_DEVICEID_ICH4_A 0x24c28086 +static const char *uhci_device_ich4_a = "Intel 82801DB (ICH4) USB controller USB-A"; + +#define PCI_UHCI_DEVICEID_ICH4_B 0x24c48086 +static const char *uhci_device_ich4_b = "Intel 82801DB (ICH4) USB controller USB-B"; + +#define PCI_UHCI_DEVICEID_ICH4_C 0x24c78086 +static const char *uhci_device_ich4_c = "Intel 82801DB (ICH4) USB controller USB-C"; + #define PCI_UHCI_DEVICEID_440MX 0x719a8086 static const char *uhci_device_440mx = "Intel 82443MX USB controller"; @@ -168,6 +177,12 @@ uhci_pci_match(device_t self) return (uhci_device_ich3_a); } else if (device_id == PCI_UHCI_DEVICEID_ICH3_B) { return (uhci_device_ich3_b); + } else if (device_id == PCI_UHCI_DEVICEID_ICH4_A) { + return (uhci_device_ich4_a); + } else if (device_id == PCI_UHCI_DEVICEID_ICH4_B) { + return (uhci_device_ich4_b); + } else if (device_id == PCI_UHCI_DEVICEID_ICH4_C) { + return (uhci_device_ich4_c); } else if (device_id == PCI_UHCI_DEVICEID_440MX) { return (uhci_device_440mx); } else if (device_id == PCI_UHCI_DEVICEID_460GX) { @@ -268,6 +283,18 @@ uhci_pci_attach(device_t self) device_set_desc(sc->sc_bus.bdev, uhci_device_ich3_b); sprintf(sc->sc_vendor, "Intel"); break; + case PCI_UHCI_DEVICEID_ICH4_A: + device_set_desc(sc->sc_bus.bdev, uhci_device_ich4_a); + sprintf(sc->sc_vendor, "Intel"); + break; + case PCI_UHCI_DEVICEID_ICH4_B: + device_set_desc(sc->sc_bus.bdev, uhci_device_ich4_b); + sprintf(sc->sc_vendor, "Intel"); + break; + case PCI_UHCI_DEVICEID_ICH4_C: + device_set_desc(sc->sc_bus.bdev, uhci_device_ich4_c); + sprintf(sc->sc_vendor, "Intel"); + break; case PCI_UHCI_DEVICEID_440MX: device_set_desc(sc->sc_bus.bdev, uhci_device_440mx); sprintf(sc->sc_vendor, "Intel"); |