From 77cb3b49b7d2afec3612416b1359d76920a0bede Mon Sep 17 00:00:00 2001 From: Justin Hibbits Date: Tue, 24 Mar 2020 21:28:48 +0000 Subject: [PATCH] ichwd: Add Atom C3000 watchdog ID. MFC after: 3 days Sponsored by: Juniper Networks, Inc --- sys/dev/ichwd/ichwd.c | 1 + sys/dev/ichwd/ichwd.h | 1 + 2 files changed, 2 insertions(+) diff --git a/sys/dev/ichwd/ichwd.c b/sys/dev/ichwd/ichwd.c index 6a73a3cd52c6..587f99f9e7ee 100644 --- a/sys/dev/ichwd/ichwd.c +++ b/sys/dev/ichwd/ichwd.c @@ -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 }, }; diff --git a/sys/dev/ichwd/ichwd.h b/sys/dev/ichwd/ichwd.h index dc6f781bfe20..f78485249871 100644 --- a/sys/dev/ichwd/ichwd.h +++ b/sys/dev/ichwd/ichwd.h @@ -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