svn commit: r326572 - head/sys/dev/ioat

Conrad Meyer cem at FreeBSD.org
Tue Dec 5 18:48:59 UTC 2017


Author: cem
Date: Tue Dec  5 18:48:58 2017
New Revision: 326572
URL: https://svnweb.freebsd.org/changeset/base/326572

Log:
  ioat(4): Add Skylake Xeon PCI-ID
  
  SKX IOAT is just another 3.2 version of the CBDMA engine.
  
  Submitted by:	Deepak Veliath <deepak.veliath AT isilon.com>
  Sponsored by:	Dell EMC Isilon

Modified:
  head/sys/dev/ioat/ioat.c

Modified: head/sys/dev/ioat/ioat.c
==============================================================================
--- head/sys/dev/ioat/ioat.c	Tue Dec  5 18:42:07 2017	(r326571)
+++ head/sys/dev/ioat/ioat.c	Tue Dec  5 18:48:58 2017	(r326572)
@@ -236,6 +236,8 @@ static struct _pcsid
 	{ 0x6f278086, "BDX IOAT Ch7" },
 	{ 0x6f2e8086, "BDX IOAT Ch0 (RAID)" },
 	{ 0x6f2f8086, "BDX IOAT Ch1 (RAID)" },
+
+	{ 0x20218086, "SKX IOAT" },
 };
 
 MODULE_PNP_INFO("W32:vendor/device;D:human", pci, ioat, pci_ids,


More information about the svn-src-all mailing list