Add the Intel BayTrail USB device which needs port routing for USB 3.0.

Tested on the BayTrail E3845 platform.
Reviewed by:	hselasky
This commit is contained in:
Kevin Lo 2014-10-21 07:24:58 +00:00
parent a78dc03254
commit 7eb884645c
2 changed files with 5 additions and 0 deletions

View File

@ -120,6 +120,8 @@ 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:

View File

@ -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");
@ -244,6 +246,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 */