svn commit: r336522 - in stable/11/sys/dev: ahci usb/controller

Mark Johnston markj at FreeBSD.org
Thu Jul 19 22:45:50 UTC 2018


Author: markj
Date: Thu Jul 19 22:45:49 2018
New Revision: 336522
URL: https://svnweb.freebsd.org/changeset/base/336522

Log:
  MFC r336225:
  Add PCI IDs for AMD X370 AHCI and XHCI.

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 Jul 19 22:45:13 2018	(r336521)
+++ stable/11/sys/dev/ahci/ahci_pci.c	Thu Jul 19 22:45:49 2018	(r336522)
@@ -69,7 +69,8 @@ static const struct {
 	/* 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},
+	{0x43b51022, 0x00, "AMD 300 Series",	0}, /* X370 */
+	{0x43b71022, 0x00, "AMD 300 Series",	0}, /* B350 */
 	{0x78001022, 0x00, "AMD Hudson-2",	0},
 	{0x78011022, 0x00, "AMD Hudson-2",	0},
 	{0x78021022, 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 Jul 19 22:45:13 2018	(r336521)
+++ stable/11/sys/dev/usb/controller/xhci_pci.c	Thu Jul 19 22:45:49 2018	(r336522)
@@ -99,7 +99,8 @@ xhci_pci_match(device_t self)
 		return ("AMD KERNCZ USB 3.0 controller");
 	case 0x43ba1022:
 		return ("AMD X399 USB 3.0 controller");
-	case 0x43bb1022:
+	case 0x43b91022: /* X370 */
+	case 0x43bb1022: /* B350 */
 		return ("AMD 300 Series USB 3.0 controller");
 	case 0x78141022:
 		return ("AMD FCH USB 3.0 controller");


More information about the svn-src-all mailing list