diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2009-12-07 14:42:26 -0500 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2009-12-23 14:51:21 -0500 |
commit | 4946f8353da9d3038e2a9d0295d5dfeee4cee5c5 (patch) | |
tree | d4250ca6139694cdfe36b1eaebc5fa7bba472d26 /drivers/watchdog | |
parent | f42ecb2808db5386f983d593a7c08d3ea3b94a27 (diff) |
[WATCHDOG] iTCO_wdt: add PCI ID for the Intel EP80579 (Tolapai) SoC
add PCI ID for the Intel EP80579 (Tolapai) SoC
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/iTCO_wdt.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/watchdog/iTCO_wdt.c b/drivers/watchdog/iTCO_wdt.c index e44fbb31bc6f..c8a3bec26830 100644 --- a/drivers/watchdog/iTCO_wdt.c +++ b/drivers/watchdog/iTCO_wdt.c | |||
@@ -30,6 +30,7 @@ | |||
30 | * document number 316972-004, 316973-012: 82801I (ICH9) | 30 | * document number 316972-004, 316973-012: 82801I (ICH9) |
31 | * document number 319973-002, 319974-002: 82801J (ICH10) | 31 | * document number 319973-002, 319974-002: 82801J (ICH10) |
32 | * document number 322169-001, 322170-001: 5 Series, 3400 Series (PCH) | 32 | * document number 322169-001, 322170-001: 5 Series, 3400 Series (PCH) |
33 | * document number 320066-003, 320257-008: EP80597 (IICH) | ||
33 | */ | 34 | */ |
34 | 35 | ||
35 | /* | 36 | /* |
@@ -100,6 +101,7 @@ enum iTCO_chipsets { | |||
100 | TCO_PCH, /* PCH Desktop Full Featured */ | 101 | TCO_PCH, /* PCH Desktop Full Featured */ |
101 | TCO_PCHM, /* PCH Mobile Full Featured */ | 102 | TCO_PCHM, /* PCH Mobile Full Featured */ |
102 | TCO_PCHMSFF, /* PCH Mobile SFF Full Featured */ | 103 | TCO_PCHMSFF, /* PCH Mobile SFF Full Featured */ |
104 | TCO_EP80579, /* EP80579 */ | ||
103 | }; | 105 | }; |
104 | 106 | ||
105 | static struct { | 107 | static struct { |
@@ -143,6 +145,7 @@ static struct { | |||
143 | {"PCH Desktop Full Featured", 2}, | 145 | {"PCH Desktop Full Featured", 2}, |
144 | {"PCH Mobile Full Featured", 2}, | 146 | {"PCH Mobile Full Featured", 2}, |
145 | {"PCH Mobile SFF Full Featured", 2}, | 147 | {"PCH Mobile SFF Full Featured", 2}, |
148 | {"EP80579", 2}, | ||
146 | {NULL, 0} | 149 | {NULL, 0} |
147 | }; | 150 | }; |
148 | 151 | ||
@@ -214,6 +217,7 @@ static struct pci_device_id iTCO_wdt_pci_tbl[] = { | |||
214 | { ITCO_PCI_DEVICE(0x3b00, TCO_PCH)}, | 217 | { ITCO_PCI_DEVICE(0x3b00, TCO_PCH)}, |
215 | { ITCO_PCI_DEVICE(0x3b01, TCO_PCHM)}, | 218 | { ITCO_PCI_DEVICE(0x3b01, TCO_PCHM)}, |
216 | { ITCO_PCI_DEVICE(0x3b0d, TCO_PCHMSFF)}, | 219 | { ITCO_PCI_DEVICE(0x3b0d, TCO_PCHMSFF)}, |
220 | { ITCO_PCI_DEVICE(0x5031, TCO_EP80579)}, | ||
217 | { 0, }, /* End of list */ | 221 | { 0, }, /* End of list */ |
218 | }; | 222 | }; |
219 | MODULE_DEVICE_TABLE(pci, iTCO_wdt_pci_tbl); | 223 | MODULE_DEVICE_TABLE(pci, iTCO_wdt_pci_tbl); |