Add PCI ID's for ICH8 USB controllers.

MFC after:	1 week
PR:		usb/116574
Submitted by:	Dave Grochowski  malus.x of gmail
This commit is contained in:
John Baldwin 2008-04-07 19:12:22 +00:00
parent 3a4018c4e8
commit 98fb26bf86
2 changed files with 33 additions and 0 deletions

View File

@ -117,6 +117,10 @@ static const char *ehci_device_ich5 = "Intel 82801EB/R (ICH5) USB 2.0 controller
static const char *ehci_device_ich6 = "Intel 82801FB (ICH6) USB 2.0 controller";
#define PCI_EHCI_DEVICEID_ICH7 0x27cc8086
static const char *ehci_device_ich7 = "Intel 82801GB/R (ICH7) USB 2.0 controller";
#define PCI_EHCI_DEVICEID_ICH8_A 0x28368086
static const char *ehci_device_ich8_a = "Intel 82801H (ICH8) USB 2.0 controller USB2-A";
#define PCI_EHCI_DEVICEID_ICH8_B 0x283a8086
static const char *ehci_device_ich8_b = "Intel 82801H (ICH8) USB 2.0 controller USB2-B";
#define PCI_EHCI_DEVICEID_63XX 0x268c8086
static const char *ehci_device_63XX = "Intel 63XXESB USB 2.0 controller";
@ -230,6 +234,10 @@ ehci_pci_match(device_t self)
return (ehci_device_ich6);
case PCI_EHCI_DEVICEID_ICH7:
return (ehci_device_ich7);
case PCI_EHCI_DEVICEID_ICH8_A:
return (ehci_device_ich8_a);
case PCI_EHCI_DEVICEID_ICH8_B:
return (ehci_device_ich8_b);
case PCI_EHCI_DEVICEID_NEC:
return (ehci_device_nec);
case PCI_EHCI_DEVICEID_NF2:

View File

@ -151,6 +151,21 @@ static const char *uhci_device_esb_3 = "Intel 631XESB/632XESB/3100 USB controlle
#define PCI_UHCI_DEVICEID_63XXESB_4 0x268b8086
static const char *uhci_device_esb_4 = "Intel 631XESB/632XESB/3100 USB controller USB-4";
#define PCI_UHCI_DEVICEID_ICH8_A 0x28308086
static const char *uhci_device_ich8_a = "Intel 82801H (ICH8) USB controller USB-A";
#define PCI_UHCI_DEVICEID_ICH8_B 0x28318086
static const char *uhci_device_ich8_b = "Intel 82801H (ICH8) USB controller USB-B";
#define PCI_UHCI_DEVICEID_ICH8_C 0x28328086
static const char *uhci_device_ich8_c = "Intel 82801H (ICH8) USB controller USB-C";
#define PCI_UHCI_DEVICEID_ICH8_D 0x28348086
static const char *uhci_device_ich8_d = "Intel 82801H (ICH8) USB controller USB-D";
#define PCI_UHCI_DEVICEID_ICH8_E 0x28358086
static const char *uhci_device_ich8_e = "Intel 82801H (ICH8) USB controller USB-E";
#define PCI_UHCI_DEVICEID_440MX 0x719a8086
static const char *uhci_device_440mx = "Intel 82443MX USB controller";
@ -250,6 +265,16 @@ uhci_pci_match(device_t self)
return (uhci_device_esb_3);
} else if (device_id == PCI_UHCI_DEVICEID_63XXESB_4) {
return (uhci_device_esb_4);
} else if (device_id == PCI_UHCI_DEVICEID_ICH8_A) {
return (uhci_device_ich8_a);
} else if (device_id == PCI_UHCI_DEVICEID_ICH8_B) {
return (uhci_device_ich8_b);
} else if (device_id == PCI_UHCI_DEVICEID_ICH8_C) {
return (uhci_device_ich8_c);
} else if (device_id == PCI_UHCI_DEVICEID_ICH8_D) {
return (uhci_device_ich8_d);
} else if (device_id == PCI_UHCI_DEVICEID_ICH8_E) {
return (uhci_device_ich8_e);
} else if (device_id == PCI_UHCI_DEVICEID_440MX) {
return (uhci_device_440mx);
} else if (device_id == PCI_UHCI_DEVICEID_460GX) {