summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhselasky <hselasky@FreeBSD.org>2015-10-19 07:21:57 +0000
committerhselasky <hselasky@FreeBSD.org>2015-10-19 07:21:57 +0000
commitfe5ffcc51d3f24b527e81b42efa1b9413cbbbb9a (patch)
treee758f9ff70a22f1f202c676139c843b4006ca753
parent12c5864844c0841a8c86a09401e1c89451777bc5 (diff)
downloadFreeBSD-src-fe5ffcc51d3f24b527e81b42efa1b9413cbbbb9a.zip
FreeBSD-src-fe5ffcc51d3f24b527e81b42efa1b9413cbbbb9a.tar.gz
Add quirk for USB 3.0 PCI device.
Submitted by: philipp.maechler@mamo.li PR: 203650 MFC after: 1 week
-rw-r--r--sys/dev/usb/controller/xhci_pci.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/usb/controller/xhci_pci.c b/sys/dev/usb/controller/xhci_pci.c
index 492fd3c..e6f937f 100644
--- a/sys/dev/usb/controller/xhci_pci.c
+++ b/sys/dev/usb/controller/xhci_pci.c
@@ -115,6 +115,8 @@ xhci_pci_match(device_t self)
return ("Intel Lynx Point USB 3.0 controller");
case 0x8cb18086:
return ("Intel Wildcat Point USB 3.0 controller");
+ case 0x9cb18086:
+ return ("Broadwell Integrated PCH-LP chipset USB 3.0 controller");
case 0xa01b177d:
return ("Cavium ThunderX USB 3.0 controller");
@@ -216,6 +218,7 @@ xhci_pci_attach(device_t self)
case 0x1e318086: /* Panther Point */
case 0x8c318086: /* Lynx Point */
case 0x8cb18086: /* Wildcat Point */
+ case 0x9cb18086: /* Broadwell Mobile Integrated */
/*
* On Intel chipsets, reroute ports from EHCI to XHCI
* controller and use a different IMOD value.
OpenPOWER on IntegriCloud