svn commit: r359361 - in stable: 11/sys/dev/ichwd 12/sys/dev/ichwd
Justin Hibbits
jhibbits at FreeBSD.org
Fri Mar 27 15:26:37 UTC 2020
Author: jhibbits
Date: Fri Mar 27 15:26:30 2020
New Revision: 359361
URL: https://svnweb.freebsd.org/changeset/base/359361
Log:
MFC r359285:
ichwd: Add Atom C3000 watchdog ID.
Sponsored by: Juniper Networks, Inc
Modified:
stable/11/sys/dev/ichwd/ichwd.c
stable/11/sys/dev/ichwd/ichwd.h
Directory Properties:
stable/11/ (props changed)
Changes in other areas also in this revision:
Modified:
stable/12/sys/dev/ichwd/ichwd.c
Directory Properties:
stable/12/ (props changed)
Modified: stable/11/sys/dev/ichwd/ichwd.c
==============================================================================
--- stable/11/sys/dev/ichwd/ichwd.c Fri Mar 27 15:20:19 2020 (r359360)
+++ stable/11/sys/dev/ichwd/ichwd.c Fri Mar 27 15:26:30 2020 (r359361)
@@ -294,6 +294,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: stable/11/sys/dev/ichwd/ichwd.h
==============================================================================
--- stable/11/sys/dev/ichwd/ichwd.h Fri Mar 27 15:20:19 2020 (r359360)
+++ stable/11/sys/dev/ichwd/ichwd.h Fri Mar 27 15:26:30 2020 (r359361)
@@ -65,6 +65,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