summaryrefslogtreecommitdiffstats
path: root/sys/pci
diff options
context:
space:
mode:
authorkuriyama <kuriyama@FreeBSD.org>2001-05-21 01:24:14 +0000
committerkuriyama <kuriyama@FreeBSD.org>2001-05-21 01:24:14 +0000
commit9ff3821aa3027d9a1088a351417d00294fb2e394 (patch)
treecbf5a821a5c428d83d222f38c480159ca7df31aa /sys/pci
parent727acb940ed3fa054577255d16a476cbf3c0ab7f (diff)
downloadFreeBSD-src-9ff3821aa3027d9a1088a351417d00294fb2e394.zip
FreeBSD-src-9ff3821aa3027d9a1088a351417d00294fb2e394.tar.gz
Add description for 82801BA controller.
MFC after: 1 week
Diffstat (limited to 'sys/pci')
-rw-r--r--sys/pci/uhci_pci.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/sys/pci/uhci_pci.c b/sys/pci/uhci_pci.c
index 3aaf3f3..828761f 100644
--- a/sys/pci/uhci_pci.c
+++ b/sys/pci/uhci_pci.c
@@ -86,6 +86,10 @@ static const char *uhci_device_piix4 = "Intel 82371AB/EB (PIIX4) USB controller"
static const char *uhci_device_ich = "Intel 82801AA (ICH) USB controller";
#define PCI_UHCI_DEVICEID_ICH0 0x24228086
static const char *uhci_device_ich0 = "Intel 82801AB (ICH0) USB controller";
+#define PCI_UHCI_DEVICEID_ICH2_A 0x24428086
+static const char *uhci_device_ich2_a = "Intel 82801BA/BAM (ICH2) USB controller USB-A";
+#define PCI_UHCI_DEVICEID_ICH2_B 0x24448086
+static const char *uhci_device_ich2_b = "Intel 82801BA/BAM (ICH2) USB controller USB-B";
#define PCI_UHCI_DEVICEID_440MX 0x719a8086
static const char *uhci_device_440mx = "Intel 82443MX USB controller";
#define PCI_UHCI_DEVICEID_VT83C572 0x30381106
@@ -140,6 +144,10 @@ uhci_pci_match(device_t self)
return (uhci_device_ich);
} else if (device_id == PCI_UHCI_DEVICEID_ICH0) {
return (uhci_device_ich0);
+ } else if (device_id == PCI_UHCI_DEVICEID_ICH2_A) {
+ return (uhci_device_ich2_a);
+ } else if (device_id == PCI_UHCI_DEVICEID_ICH2_B) {
+ return (uhci_device_ich2_b);
} else if (device_id == PCI_UHCI_DEVICEID_440MX) {
return (uhci_device_440mx);
} else if (device_id == PCI_UHCI_DEVICEID_VT83C572) {
@@ -223,6 +231,14 @@ uhci_pci_attach(device_t self)
device_set_desc(sc->sc_bus.bdev, uhci_device_ich0);
sprintf(sc->sc_vendor, "Intel");
break;
+ case PCI_UHCI_DEVICEID_ICH2_A:
+ device_set_desc(sc->sc_bus.bdev, uhci_device_ich2_a);
+ sprintf(sc->sc_vendor, "Intel");
+ break;
+ case PCI_UHCI_DEVICEID_ICH2_B:
+ device_set_desc(sc->sc_bus.bdev, uhci_device_ich2_b);
+ 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");
OpenPOWER on IntegriCloud