svn commit: r287825 - head/sys/dev/usb/controller
Ed Maste
emaste at FreeBSD.org
Tue Sep 15 16:08:26 UTC 2015
Author: emaste
Date: Tue Sep 15 16:08:25 2015
New Revision: 287825
URL: https://svnweb.freebsd.org/changeset/base/287825
Log:
Add Cavium ThunderX xHCI controller PCI ID
There is an issue with interrupts at the moment, but it works with
polling mode set (hw.usb.xhci.use_polling=1).
Reviewed by: hselasky
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D3665
Modified:
head/sys/dev/usb/controller/xhci_pci.c
Modified: head/sys/dev/usb/controller/xhci_pci.c
==============================================================================
--- head/sys/dev/usb/controller/xhci_pci.c Tue Sep 15 14:24:19 2015 (r287824)
+++ head/sys/dev/usb/controller/xhci_pci.c Tue Sep 15 16:08:25 2015 (r287825)
@@ -113,6 +113,9 @@ xhci_pci_match(device_t self)
case 0x8cb18086:
return ("Intel Wildcat Point USB 3.0 controller");
+ case 0xa01b177d:
+ return ("Cavium ThunderX USB 3.0 controller");
+
default:
break;
}
More information about the svn-src-head
mailing list