svn commit: r289560 - head/sys/dev/usb/controller

Hans Petter Selasky hselasky at FreeBSD.org
Mon Oct 19 07:21:59 UTC 2015


Author: hselasky
Date: Mon Oct 19 07:21:57 2015
New Revision: 289560
URL: https://svnweb.freebsd.org/changeset/base/289560

Log:
  Add quirk for USB 3.0 PCI device.
  
  Submitted by:	philipp.maechler at mamo.li
  PR:		203650
  MFC after:	1 week

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	Mon Oct 19 04:39:27 2015	(r289559)
+++ head/sys/dev/usb/controller/xhci_pci.c	Mon Oct 19 07:21:57 2015	(r289560)
@@ -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.


More information about the svn-src-all mailing list