svn commit: r334453 - in stable/11/sys/dev: ahci usb/controller
Marius Strobl
marius at FreeBSD.org
Thu May 31 22:20:33 UTC 2018
Author: marius
Date: Thu May 31 22:20:31 2018
New Revision: 334453
URL: https://svnweb.freebsd.org/changeset/base/334453
Log:
MFC: r327364, r334293
- Add AHCI/XHCI device IDs found on AMD 1950X+X399 system
- Describe Fresco Logic FL1100 USB 3.0 controllers.
Approved by: re (gjb)
Modified:
stable/11/sys/dev/ahci/ahci_pci.c
stable/11/sys/dev/usb/controller/xhci_pci.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/dev/ahci/ahci_pci.c
==============================================================================
--- stable/11/sys/dev/ahci/ahci_pci.c Thu May 31 21:56:57 2018 (r334452)
+++ stable/11/sys/dev/ahci/ahci_pci.c Thu May 31 22:20:31 2018 (r334453)
@@ -68,6 +68,7 @@ static const struct {
AHCI_Q_ATI_PMP_BUG | AHCI_Q_1MSI},
/* Not sure SB8x0/SB9x0 needs this quirk. Be conservative though */
{0x43951002, 0x00, "AMD SB8x0/SB9x0", AHCI_Q_ATI_PMP_BUG},
+ {0x43b61022, 0x00, "AMD X399", 0},
{0x43b71022, 0x00, "AMD 300 Series", 0},
{0x78001022, 0x00, "AMD Hudson-2", 0},
{0x78011022, 0x00, "AMD Hudson-2", 0},
Modified: stable/11/sys/dev/usb/controller/xhci_pci.c
==============================================================================
--- stable/11/sys/dev/usb/controller/xhci_pci.c Thu May 31 21:56:57 2018 (r334452)
+++ stable/11/sys/dev/usb/controller/xhci_pci.c Thu May 31 22:20:31 2018 (r334453)
@@ -97,6 +97,8 @@ xhci_pci_match(device_t self)
switch (device_id) {
case 0x145c1022:
return ("AMD KERNCZ USB 3.0 controller");
+ case 0x43ba1022:
+ return ("AMD X399 USB 3.0 controller");
case 0x43bb1022:
return ("AMD 300 Series USB 3.0 controller");
case 0x78141022:
@@ -109,6 +111,8 @@ xhci_pci_match(device_t self)
case 0x10001b73:
return ("Fresco Logic FL1000G USB 3.0 controller");
+ case 0x11001b73:
+ return ("Fresco Logic FL1100 USB 3.0 controller");
case 0x10421b21:
return ("ASMedia ASM1042 USB 3.0 controller");
More information about the svn-src-stable
mailing list