Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Mar 2019 17:27:00 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r345333 - in head/sys/dev: ahci ichsmb
Message-ID:  <201903201727.x2KHR0oA017407@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mav
Date: Wed Mar 20 17:27:00 2019
New Revision: 345333
URL: https://svnweb.freebsd.org/changeset/base/345333

Log:
  Add some Cannon Lake chipset IDs.
  
  Submitted by:	Dmitry Luhtionov <dmitryluhtionov@gmail.com>
  MFC after:	2 weeks

Modified:
  head/sys/dev/ahci/ahci_pci.c
  head/sys/dev/ichsmb/ichsmb_pci.c

Modified: head/sys/dev/ahci/ahci_pci.c
==============================================================================
--- head/sys/dev/ahci/ahci_pci.c	Wed Mar 20 17:21:17 2019	(r345332)
+++ head/sys/dev/ahci/ahci_pci.c	Wed Mar 20 17:27:00 2019	(r345333)
@@ -232,6 +232,8 @@ static const struct {
 	{0xa2828086, 0x00, "Intel Union Point",	0},
 	{0xa2868086, 0x00, "Intel Union Point (RAID)",	0},
 	{0xa28e8086, 0x00, "Intel Union Point (RAID)",	0},
+	{0xa3528086, 0x00, "Intel Cannon Lake",	0},
+	{0xa3538086, 0x00, "Intel Cannon Lake",	0},
 	{0x23238086, 0x00, "Intel DH89xxCC",	0},
 	{0x2360197b, 0x00, "JMicron JMB360",	0},
 	{0x2361197b, 0x00, "JMicron JMB361",	AHCI_Q_NOFORCE | AHCI_Q_1CH},

Modified: head/sys/dev/ichsmb/ichsmb_pci.c
==============================================================================
--- head/sys/dev/ichsmb/ichsmb_pci.c	Wed Mar 20 17:21:17 2019	(r345332)
+++ head/sys/dev/ichsmb/ichsmb_pci.c	Wed Mar 20 17:27:00 2019	(r345333)
@@ -104,6 +104,7 @@ __FBSDID("$FreeBSD$");
 #define	ID_LEWISBURG			0xa1a3
 #define	ID_LEWISBURG2			0xa223
 #define	ID_KABYLAKE			0xa2a3
+#define	ID_CANNONLAKE			0xa323
 
 static const struct ichsmb_device {
 	uint16_t	id;
@@ -148,6 +149,7 @@ static const struct ichsmb_device {
 	{ ID_LEWISBURG,	"Intel Lewisburg SMBus controller"		},
 	{ ID_LEWISBURG2,"Intel Lewisburg SMBus controller"		},
 	{ ID_KABYLAKE,	"Intel Kaby Lake SMBus controller"		},
+	{ ID_CANNONLAKE,"Intel Cannon Lake SMBus controller"		},
 	{ 0, NULL },
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903201727.x2KHR0oA017407>