diff options
author | Alexander Motin <mav@FreeBSD.org> | 2014-11-26 04:23:21 +0000 |
---|---|---|
committer | Alexander Motin <mav@FreeBSD.org> | 2014-11-26 04:23:21 +0000 |
commit | e67f3bec3956124c9a82040a2459a6820fe2a51e (patch) | |
tree | 41b7905e1c38a214393d6a9fa10ef5998b3f460e /sys/dev/ichwd | |
parent | d10e52d6270231ad502f13d988cbdbab7c6c92a4 (diff) |
Notes
Diffstat (limited to 'sys/dev/ichwd')
-rw-r--r-- | sys/dev/ichwd/ichwd.c | 3 | ||||
-rw-r--r-- | sys/dev/ichwd/ichwd.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/sys/dev/ichwd/ichwd.c b/sys/dev/ichwd/ichwd.c index f28f5e04f6b3e..fdaac711ce3a0 100644 --- a/sys/dev/ichwd/ichwd.c +++ b/sys/dev/ichwd/ichwd.c @@ -194,6 +194,9 @@ static struct ichwd_device ichwd_devices[] = { { DEVICEID_LPT0, "Intel Lynx Point watchdog timer", 10 }, { DEVICEID_LPT1, "Intel Lynx Point watchdog timer", 10 }, { DEVICEID_LPT2, "Intel Lynx Point watchdog timer", 10 }, + { DEVICEID_WCPT2, "Intel Wildcat Point watchdog timer", 10 }, + { DEVICEID_WCPT4, "Intel Wildcat Point watchdog timer", 10 }, + { DEVICEID_WCPT6, "Intel Wildcat Point watchdog timer", 10 }, { DEVICEID_DH89XXCC_LPC, "Intel DH89xxCC watchdog timer", 10 }, { DEVICEID_COLETOCRK_LPC, "Intel Coleto Creek watchdog timer", 10 }, { 0, NULL, 0 }, diff --git a/sys/dev/ichwd/ichwd.h b/sys/dev/ichwd/ichwd.h index 6f0c7173efd73..0699279f2d43c 100644 --- a/sys/dev/ichwd/ichwd.h +++ b/sys/dev/ichwd/ichwd.h @@ -210,6 +210,9 @@ struct ichwd_softc { #define DEVICEID_LPT29 0x8c5d #define DEVICEID_LPT30 0x8c5e #define DEVICEID_LPT31 0x8c5f +#define DEVICEID_WCPT2 0x8cc2 +#define DEVICEID_WCPT4 0x8cc4 +#define DEVICEID_WCPT6 0x8cc6 /* ICH LPC Interface Bridge Registers (ICH5 and older) */ #define ICH_GEN_STA 0xd4 |