aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog/iTCO_wdt.c
diff options
context:
space:
mode:
authorSeth Heasley <seth.heasley@intel.com>2009-11-10 20:24:01 -0500
committerWim Van Sebroeck <wim@iguana.be>2009-12-04 08:20:40 -0500
commit79e8941dda254505bb8af37b3a009165dfb7e98a (patch)
treee89d7f7606db3988f1fa312f778870ee14083181 /drivers/watchdog/iTCO_wdt.c
parente02f838eedef1533f7a1bcf21fe724c3c93093f9 (diff)
[WATCHDOG] iTCO_wdt: Add support for Intel Ibex Peak
Add the Intel Ibex Peak (PCH) Device IDs to iTCO_wdt.c. Signed-off-by: Seth Heasley <seth.heasley@intel.com> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/iTCO_wdt.c')
-rw-r--r--drivers/watchdog/iTCO_wdt.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/drivers/watchdog/iTCO_wdt.c b/drivers/watchdog/iTCO_wdt.c
index 6a51edde6ea7..4bd3877ad895 100644
--- a/drivers/watchdog/iTCO_wdt.c
+++ b/drivers/watchdog/iTCO_wdt.c
@@ -54,7 +54,9 @@
54 * 82801JIB (ICH10) : document number 319973-002, 319974-002, 54 * 82801JIB (ICH10) : document number 319973-002, 319974-002,
55 * 82801JIR (ICH10R) : document number 319973-002, 319974-002, 55 * 82801JIR (ICH10R) : document number 319973-002, 319974-002,
56 * 82801JD (ICH10D) : document number 319973-002, 319974-002, 56 * 82801JD (ICH10D) : document number 319973-002, 319974-002,
57 * 82801JDO (ICH10DO) : document number 319973-002, 319974-002 57 * 82801JDO (ICH10DO) : document number 319973-002, 319974-002,
58 * 5 Series (PCH) : document number 322169-001, 322170-001,
59 * 3400 Series (PCH) : document number 322169-001, 322170-001
58 */ 60 */
59 61
60/* 62/*
@@ -122,6 +124,9 @@ enum iTCO_chipsets {
122 TCO_ICH10R, /* ICH10R */ 124 TCO_ICH10R, /* ICH10R */
123 TCO_ICH10D, /* ICH10D */ 125 TCO_ICH10D, /* ICH10D */
124 TCO_ICH10DO, /* ICH10DO */ 126 TCO_ICH10DO, /* ICH10DO */
127 TCO_PCH, /* PCH Desktop Full Featured */
128 TCO_PCHM, /* PCH Mobile Full Featured */
129 TCO_PCHMSFF, /* PCH Mobile SFF Full Featured */
125}; 130};
126 131
127static struct { 132static struct {
@@ -162,6 +167,9 @@ static struct {
162 {"ICH10R", 2}, 167 {"ICH10R", 2},
163 {"ICH10D", 2}, 168 {"ICH10D", 2},
164 {"ICH10DO", 2}, 169 {"ICH10DO", 2},
170 {"PCH Desktop Full Featured", 2},
171 {"PCH Mobile Full Featured", 2},
172 {"PCH Mobile SFF Full Featured", 2},
165 {NULL, 0} 173 {NULL, 0}
166}; 174};
167 175
@@ -230,6 +238,9 @@ static struct pci_device_id iTCO_wdt_pci_tbl[] = {
230 { ITCO_PCI_DEVICE(0x3a16, TCO_ICH10R)}, 238 { ITCO_PCI_DEVICE(0x3a16, TCO_ICH10R)},
231 { ITCO_PCI_DEVICE(0x3a1a, TCO_ICH10D)}, 239 { ITCO_PCI_DEVICE(0x3a1a, TCO_ICH10D)},
232 { ITCO_PCI_DEVICE(0x3a14, TCO_ICH10DO)}, 240 { ITCO_PCI_DEVICE(0x3a14, TCO_ICH10DO)},
241 { ITCO_PCI_DEVICE(0x3b00, TCO_PCH)},
242 { ITCO_PCI_DEVICE(0x3b01, TCO_PCHM)},
243 { ITCO_PCI_DEVICE(0x3b0d, TCO_PCHMSFF)},
233 { 0, }, /* End of list */ 244 { 0, }, /* End of list */
234}; 245};
235MODULE_DEVICE_TABLE(pci, iTCO_wdt_pci_tbl); 246MODULE_DEVICE_TABLE(pci, iTCO_wdt_pci_tbl);