svn commit: r359285 - head/sys/dev/ichwd

Justin Hibbits jhibbits at FreeBSD.org
Tue Mar 24 21:35:29 UTC 2020


Author: jhibbits
Date: Tue Mar 24 21:28:48 2020
New Revision: 359285
URL: https://svnweb.freebsd.org/changeset/base/359285

Log:
  ichwd: Add Atom C3000 watchdog ID.
  
  MFC after:	3 days
  Sponsored by:	Juniper Networks, Inc

Modified:
  head/sys/dev/ichwd/ichwd.c
  head/sys/dev/ichwd/ichwd.h

Modified: head/sys/dev/ichwd/ichwd.c
==============================================================================
--- head/sys/dev/ichwd/ichwd.c	Tue Mar 24 19:33:21 2020	(r359284)
+++ head/sys/dev/ichwd/ichwd.c	Tue Mar 24 21:28:48 2020	(r359285)
@@ -297,6 +297,7 @@ static struct ichwd_device ichwd_devices[] = {
 static struct ichwd_device ichwd_smb_devices[] = {
 	{ DEVICEID_LEWISBURG_SMB, "Lewisburg watchdog timer",		10, 4 },
 	{ DEVICEID_SRPTLP_SMB,    "Sunrise Point-LP watchdog timer",	10, 4 },
+	{ DEVICEID_C3000,         "Intel Atom C3000 watchdog timer",	10, 4 },
 	{ 0, NULL, 0, 0 },
 };
 

Modified: head/sys/dev/ichwd/ichwd.h
==============================================================================
--- head/sys/dev/ichwd/ichwd.h	Tue Mar 24 19:33:21 2020	(r359284)
+++ head/sys/dev/ichwd/ichwd.h	Tue Mar 24 21:28:48 2020	(r359285)
@@ -67,6 +67,7 @@ struct ichwd_softc {
 
 #define	VENDORID_INTEL		0x8086
 #define	DEVICEID_BAYTRAIL	0x0f1c
+#define	DEVICEID_C3000		0x19df
 #define	DEVICEID_CPT0		0x1c40
 #define	DEVICEID_CPT1		0x1c41
 #define	DEVICEID_CPT2		0x1c42


More information about the svn-src-all mailing list