svn commit: r339031 - stable/11/sys/dev/ichiic

Oleksandr Tymoshenko gonzo at FreeBSD.org
Sun Sep 30 23:17:34 UTC 2018


Author: gonzo
Date: Sun Sep 30 23:17:33 2018
New Revision: 339031
URL: https://svnweb.freebsd.org/changeset/base/339031

Log:
  MFC r338654, r338701
  
  r338654:
  [ig4] Add PCI IDs for I2C controller on Intel Kaby Lake systems
  
  PR:	221777
  Approved by:	re (kib)
  Submitted by:	marc.priggemeyer at gmail.com
  
  r338701:
  [ig4] Fix device description for Kaby Lake systems
  
  Kaby Lake I2C controller is Intel Sunrise Point-H not Intel Sunrise Point-LP.
  
  Submitted by:	Dmitry Luhtionov
  Approved by:	re (kib)

Modified:
  stable/11/sys/dev/ichiic/ig4_pci.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/ichiic/ig4_pci.c
==============================================================================
--- stable/11/sys/dev/ichiic/ig4_pci.c	Sun Sep 30 23:15:44 2018	(r339030)
+++ stable/11/sys/dev/ichiic/ig4_pci.c	Sun Sep 30 23:17:33 2018	(r339031)
@@ -80,6 +80,8 @@ static int ig4iic_pci_detach(device_t dev);
 #define PCI_CHIP_SKYLAKE_I2C_3		0x9d638086
 #define PCI_CHIP_SKYLAKE_I2C_4		0x9d648086
 #define PCI_CHIP_SKYLAKE_I2C_5		0x9d658086
+#define PCI_CHIP_KABYLAKE_I2C_0		0xa1608086
+#define PCI_CHIP_KABYLAKE_I2C_1		0xa1618086
 #define PCI_CHIP_APL_I2C_0		0x5aac8086
 #define PCI_CHIP_APL_I2C_1		0x5aae8086
 #define PCI_CHIP_APL_I2C_2		0x5ab08086
@@ -110,6 +112,8 @@ static struct ig4iic_pci_device ig4iic_pci_devices[] =
 	{ PCI_CHIP_SKYLAKE_I2C_3, "Intel Sunrise Point-LP I2C Controller-3", IG4_SKYLAKE},
 	{ PCI_CHIP_SKYLAKE_I2C_4, "Intel Sunrise Point-LP I2C Controller-4", IG4_SKYLAKE},
 	{ PCI_CHIP_SKYLAKE_I2C_5, "Intel Sunrise Point-LP I2C Controller-5", IG4_SKYLAKE},
+	{ PCI_CHIP_KABYLAKE_I2C_0, "Intel Sunrise Point-H I2C Controller-0", IG4_SKYLAKE},
+	{ PCI_CHIP_KABYLAKE_I2C_1, "Intel Sunrise Point-H I2C Controller-1", IG4_SKYLAKE},
 	{ PCI_CHIP_APL_I2C_0, "Intel Apollo Lake I2C Controller-0", IG4_APL},
 	{ PCI_CHIP_APL_I2C_1, "Intel Apollo Lake I2C Controller-1", IG4_APL},
 	{ PCI_CHIP_APL_I2C_2, "Intel Apollo Lake I2C Controller-2", IG4_APL},


More information about the svn-src-stable mailing list