diff options
author | jfv <jfv@FreeBSD.org> | 2011-02-01 01:05:11 +0000 |
---|---|---|
committer | jfv <jfv@FreeBSD.org> | 2011-02-01 01:05:11 +0000 |
commit | c4f814b2fb3f8ace6692b76e2395e15fe63cca70 (patch) | |
tree | f64f78fbf84afa97813ba0ddea48fd29e61794f1 /sys/dev/ichwd/ichwd.c | |
parent | b1efa03054e07ab902c30a2eb3b195601954dd8f (diff) | |
download | FreeBSD-src-c4f814b2fb3f8ace6692b76e2395e15fe63cca70.zip FreeBSD-src-c4f814b2fb3f8ace6692b76e2395e15fe63cca70.tar.gz |
Support for the new Patsburg PCH chipset:
- SMBus Controller
- SATA Controller
- HD Audio Controller
- Watchdog Controller
Thanks to Seth Heasley (seth.heasley@intel.com) for providing us code.
MFC after 3 days
Diffstat (limited to 'sys/dev/ichwd/ichwd.c')
-rw-r--r-- | sys/dev/ichwd/ichwd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ichwd/ichwd.c b/sys/dev/ichwd/ichwd.c index 4e835e5..18c02b5 100644 --- a/sys/dev/ichwd/ichwd.c +++ b/sys/dev/ichwd/ichwd.c @@ -157,7 +157,9 @@ static struct ichwd_device ichwd_devices[] = { { DEVICEID_CPT29, "Intel Cougar Point watchdog timer", 10 }, { DEVICEID_CPT30, "Intel Cougar Point watchdog timer", 10 }, { DEVICEID_CPT31, "Intel Cougar Point watchdog timer", 10 }, - { DEVICEID_DH89XXCC_LPC, "Intel DH89xxCC watchdog timer", 10 }, + { DEVICEID_DH89XXCC_LPC, "Intel DH89xxCC watchdog timer", 10 }, + { DEVICEID_PATSBURG_LPC1, "Intel Patsburg watchdog timer", 10 }, + { DEVICEID_PATSBURG_LPC2, "Intel Patsburg watchdog timer", 10 }, { 0, NULL, 0 }, }; |