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

Eitan Adler eadler at FreeBSD.org
Mon Mar 19 07:33:13 UTC 2018


Author: eadler
Date: Mon Mar 19 07:33:12 2018
New Revision: 331195
URL: https://svnweb.freebsd.org/changeset/base/331195

Log:
  MFC r320178:
  
  Add some device IDs for Intel Denverton SoCs.

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	Mon Mar 19 07:28:54 2018	(r331194)
+++ stable/11/sys/dev/ahci/ahci_pci.c	Mon Mar 19 07:33:12 2018	(r331195)
@@ -123,6 +123,26 @@ static const struct {
 	{0x3b298086, 0x00, "Intel Ibex Peak-M",	0},
 	{0x3b2c8086, 0x00, "Intel Ibex Peak-M (RAID)",	0},
 	{0x3b2f8086, 0x00, "Intel Ibex Peak-M",	0},
+	{0x19b08086, 0x00, "Intel Denverton",	0},
+	{0x19b18086, 0x00, "Intel Denverton",	0},
+	{0x19b28086, 0x00, "Intel Denverton",	0},
+	{0x19b38086, 0x00, "Intel Denverton",	0},
+	{0x19b48086, 0x00, "Intel Denverton",	0},
+	{0x19b58086, 0x00, "Intel Denverton",	0},
+	{0x19b68086, 0x00, "Intel Denverton",	0},
+	{0x19b78086, 0x00, "Intel Denverton",	0},
+	{0x19be8086, 0x00, "Intel Denverton",	0},
+	{0x19bf8086, 0x00, "Intel Denverton",	0},
+	{0x19c08086, 0x00, "Intel Denverton",	0},
+	{0x19c18086, 0x00, "Intel Denverton",	0},
+	{0x19c28086, 0x00, "Intel Denverton",	0},
+	{0x19c38086, 0x00, "Intel Denverton",	0},
+	{0x19c48086, 0x00, "Intel Denverton",	0},
+	{0x19c58086, 0x00, "Intel Denverton",	0},
+	{0x19c68086, 0x00, "Intel Denverton",	0},
+	{0x19c78086, 0x00, "Intel Denverton",	0},
+	{0x19ce8086, 0x00, "Intel Denverton",	0},
+	{0x19cf8086, 0x00, "Intel Denverton",	0},
 	{0x1c028086, 0x00, "Intel Cougar Point",	0},
 	{0x1c038086, 0x00, "Intel Cougar Point",	0},
 	{0x1c048086, 0x00, "Intel Cougar Point (RAID)",	0},

Modified: stable/11/sys/dev/usb/controller/xhci_pci.c
==============================================================================
--- stable/11/sys/dev/usb/controller/xhci_pci.c	Mon Mar 19 07:28:54 2018	(r331194)
+++ stable/11/sys/dev/usb/controller/xhci_pci.c	Mon Mar 19 07:33:12 2018	(r331195)
@@ -119,6 +119,8 @@ xhci_pci_match(device_t self)
 
 	case 0x0f358086:
 		return ("Intel BayTrail USB 3.0 controller");
+	case 0x19d08086:
+		return ("Intel Denverton USB 3.0 controller");
 	case 0x9c318086:
 	case 0x1e318086:
 		return ("Intel Panther Point USB 3.0 controller");


More information about the svn-src-stable mailing list