diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2007-12-31 11:44:01 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2007-12-31 11:44:01 +0000 |
| commit | 89dbcee8ce493d2df71c9708bda563d1887e6ddd (patch) | |
| tree | c7dc1bdd22bf25c745016ad12be96a25682a0807 /sys/dev/ichwd | |
| parent | abb75f864a9769c1885546b15f2b8af829a8bbd6 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ichwd')
| -rw-r--r-- | sys/dev/ichwd/ichwd.c | 4 | ||||
| -rw-r--r-- | sys/dev/ichwd/ichwd.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/sys/dev/ichwd/ichwd.c b/sys/dev/ichwd/ichwd.c index 026615a66ac6..8d2d7d5ed8f6 100644 --- a/sys/dev/ichwd/ichwd.c +++ b/sys/dev/ichwd/ichwd.c @@ -94,6 +94,10 @@ static struct ichwd_device ichwd_devices[] = { { DEVICEID_ICH8DH, "Intel ICH8DH watchdog timer", 8 }, { DEVICEID_ICH8DO, "Intel ICH8DO watchdog timer", 8 }, { DEVICEID_63XXESB, "Intel 63XXESB watchdog timer", 8 }, + { DEVICEID_ICH9, "Intel ICH9 watchdog timer", 9 }, + { DEVICEID_ICH9R, "Intel ICH9R watchdog timer", 9 }, + { DEVICEID_ICH9DH, "Intel ICH9DH watchdog timer", 9 }, + { DEVICEID_ICH9DO, "Intel ICH9DO watchdog timer", 9 }, { 0, NULL, 0 }, }; diff --git a/sys/dev/ichwd/ichwd.h b/sys/dev/ichwd/ichwd.h index 338f47fb7d26..1ae938e15551 100644 --- a/sys/dev/ichwd/ichwd.h +++ b/sys/dev/ichwd/ichwd.h @@ -85,6 +85,10 @@ struct ichwd_softc { #define DEVICEID_ICH8 0x2810 #define DEVICEID_ICH8DH 0x2812 #define DEVICEID_ICH8DO 0x2814 +#define DEVICEID_ICH9 0x2918 +#define DEVICEID_ICH9R 0x2916 +#define DEVICEID_ICH9DH 0x2912 +#define DEVICEID_ICH9DO 0x2914 /* ICH LPC Interface Bridge Registers (ICH5 and older) */ #define ICH_GEN_STA 0xd4 |
