Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 11 Jan 2015 12:08:18 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r276968 - stable/10/sys/dev/usb/controller
Message-ID:  <201501111208.t0BC8IfO082133@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hselasky
Date: Sun Jan 11 12:08:17 2015
New Revision: 276968
URL: https://svnweb.freebsd.org/changeset/base/276968

Log:
  MFC r271156 and r273376:
  - Add IDs for Intel Patsburg USB 2.0 controller.
  - Add the Intel BayTrail USB device which needs port routing for USB 3.0.

Modified:
  stable/10/sys/dev/usb/controller/ehci_pci.c
  stable/10/sys/dev/usb/controller/xhci_pci.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/usb/controller/ehci_pci.c
==============================================================================
--- stable/10/sys/dev/usb/controller/ehci_pci.c	Sun Jan 11 12:01:46 2015	(r276967)
+++ stable/10/sys/dev/usb/controller/ehci_pci.c	Sun Jan 11 12:08:17 2015	(r276968)
@@ -120,6 +120,12 @@ ehci_pci_match(device_t self)
 	case 0x43961002:
 		return ("AMD SB7x0/SB8x0/SB9x0 USB 2.0 controller");
 
+	case 0x0f348086:
+		return ("Intel BayTrail USB 2.0 controller");
+	case 0x1d268086:
+		return ("Intel Patsburg USB 2.0 controller");
+	case 0x1d2d8086:
+		return ("Intel Patsburg USB 2.0 controller");
 	case 0x1e268086:
 		return ("Intel Panther Point USB 2.0 controller");
 	case 0x1e2d8086:

Modified: stable/10/sys/dev/usb/controller/xhci_pci.c
==============================================================================
--- stable/10/sys/dev/usb/controller/xhci_pci.c	Sun Jan 11 12:01:46 2015	(r276967)
+++ stable/10/sys/dev/usb/controller/xhci_pci.c	Sun Jan 11 12:08:17 2015	(r276968)
@@ -102,6 +102,8 @@ xhci_pci_match(device_t self)
 	case 0x10421b21:
 		return ("ASMedia ASM1042 USB 3.0 controller");
 
+	case 0x0f358086:
+		return ("Intel Intel BayTrail USB 3.0 controller");
 	case 0x9c318086:
 	case 0x1e318086:
 		return ("Intel Panther Point USB 3.0 controller");
@@ -250,6 +252,7 @@ xhci_pci_attach(device_t self)
 
 	/* On Intel chipsets reroute ports from EHCI to XHCI controller. */
 	switch (pci_get_devid(self)) {
+	case 0x0f358086:	/* BayTrail */
 	case 0x9c318086:	/* Panther Point */
 	case 0x1e318086:	/* Panther Point */
 	case 0x8c318086:	/* Lynx Point */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501111208.t0BC8IfO082133>