From 22dfcd1b30af6eb084cd7b4947b82a7e34299618 Mon Sep 17 00:00:00 2001 From: Benno Rice Date: Fri, 10 Jun 2005 08:28:22 +0000 Subject: [PATCH] Identify the Intel ICH4 EHCI controller. --- sys/dev/usb/ehci_pci.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys/dev/usb/ehci_pci.c b/sys/dev/usb/ehci_pci.c index d372f7067618..439a3f5c9878 100644 --- a/sys/dev/usb/ehci_pci.c +++ b/sys/dev/usb/ehci_pci.c @@ -94,6 +94,9 @@ static const char *ehci_device_nec = "NEC uPD 720100 USB 2.0 controller"; #define PCI_EHCI_DEVICEID_VIA 0x31041106 static const char *ehci_device_via = "VIA VT6202 USB 2.0 controller"; +#define PCI_EHCI_DEVICEID_ICH4 0x24cd8086 +static const char *ehci_device_ich4 = "Intel 82801DB/DBL/DBM (ICH4) USB 2.0 controller"; + static const char *ehci_device_generic = "EHCI (generic) USB 2.0 controller"; #define PCI_EHCI_BASE_REG 0x10 @@ -165,6 +168,8 @@ ehci_pci_match(device_t self) return (ehci_device_nec); case PCI_EHCI_DEVICEID_VIA: return (ehci_device_via); + case PCI_EHCI_DEVICEID_ICH4: + return (ehci_device_ich4); default: if (pci_get_class(self) == PCIC_SERIALBUS && pci_get_subclass(self) == PCIS_SERIALBUS_USB