blob: 1190bf158f8e786bacdc051e405e35492e188727 [file] [log] [blame]
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +02001/*
Wim Van Sebroeckcb711a12009-11-15 13:44:54 +00002 * intel TCO Watchdog Driver
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +02003 *
Wim Van Sebroeckd38bd472010-12-31 14:10:45 +00004 * (c) Copyright 2006-2010 Wim Van Sebroeck <wim@iguana.be>.
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 * Neither Wim Van Sebroeck nor Iguana vzw. admit liability nor
12 * provide warranty for any of this software. This material is
13 * provided "AS-IS" and at no charge.
14 *
15 * The TCO watchdog is implemented in the following I/O controller hubs:
16 * (See the intel documentation on http://developer.intel.com.)
Wim Van Sebroeckcb711a12009-11-15 13:44:54 +000017 * document number 290655-003, 290677-014: 82801AA (ICH), 82801AB (ICHO)
18 * document number 290687-002, 298242-027: 82801BA (ICH2)
19 * document number 290733-003, 290739-013: 82801CA (ICH3-S)
20 * document number 290716-001, 290718-007: 82801CAM (ICH3-M)
21 * document number 290744-001, 290745-025: 82801DB (ICH4)
22 * document number 252337-001, 252663-008: 82801DBM (ICH4-M)
23 * document number 273599-001, 273645-002: 82801E (C-ICH)
24 * document number 252516-001, 252517-028: 82801EB (ICH5), 82801ER (ICH5R)
25 * document number 300641-004, 300884-013: 6300ESB
26 * document number 301473-002, 301474-026: 82801F (ICH6)
27 * document number 313082-001, 313075-006: 631xESB, 632xESB
28 * document number 307013-003, 307014-024: 82801G (ICH7)
Wim Van Sebroeckd38bd472010-12-31 14:10:45 +000029 * document number 322896-001, 322897-001: NM10
Wim Van Sebroeckcb711a12009-11-15 13:44:54 +000030 * document number 313056-003, 313057-017: 82801H (ICH8)
31 * document number 316972-004, 316973-012: 82801I (ICH9)
32 * document number 319973-002, 319974-002: 82801J (ICH10)
Seth Heasley3c9d8ec2010-01-14 20:58:05 +000033 * document number 322169-001, 322170-003: 5 Series, 3400 Series (PCH)
Imre Kaloz4946f832009-12-07 20:42:26 +010034 * document number 320066-003, 320257-008: EP80597 (IICH)
Seth Heasley203f8d82011-01-07 17:11:08 -080035 * document number 324645-001, 324646-001: Cougar Point (CPT)
Seth Heasleyc54fb812010-11-17 12:15:08 -070036 * document number TBD : Patsburg (PBG)
Seth Heasley203f8d82011-01-07 17:11:08 -080037 * document number TBD : DH89xxCC
Seth Heasleyaa1f4652011-04-20 10:56:20 -070038 * document number TBD : Panther Point
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020039 */
40
41/*
42 * Includes, defines, variables, module parameters, ...
43 */
44
45/* Module and version information */
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000046#define DRV_NAME "iTCO_wdt"
Pádraig Brady7e6811d2010-04-19 13:38:25 +010047#define DRV_VERSION "1.06"
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020048#define PFX DRV_NAME ": "
49
50/* Includes */
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +020051#include <linux/module.h> /* For module specific items */
52#include <linux/moduleparam.h> /* For new moduleparam's */
53#include <linux/types.h> /* For standard types (like size_t) */
54#include <linux/errno.h> /* For the -ENODEV/... values */
55#include <linux/kernel.h> /* For printk/panic/... */
Alan Cox0e6fa3f2008-05-19 14:06:25 +010056#include <linux/miscdevice.h> /* For MODULE_ALIAS_MISCDEV
57 (WATCHDOG_MINOR) */
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +020058#include <linux/watchdog.h> /* For the watchdog specific items */
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +020059#include <linux/init.h> /* For __init/__exit/... */
60#include <linux/fs.h> /* For file operations */
61#include <linux/platform_device.h> /* For platform_driver framework */
62#include <linux/pci.h> /* For pci functions */
63#include <linux/ioport.h> /* For io-port access */
64#include <linux/spinlock.h> /* For spin_lock/spin_unlock/... */
Alan Cox0e6fa3f2008-05-19 14:06:25 +010065#include <linux/uaccess.h> /* For copy_to_user/put_user/... */
66#include <linux/io.h> /* For inb/outb/... */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020067
Alan Cox0e6fa3f2008-05-19 14:06:25 +010068#include "iTCO_vendor.h"
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020069
70/* TCO related info */
71enum iTCO_chipsets {
72 TCO_ICH = 0, /* ICH */
73 TCO_ICH0, /* ICH0 */
74 TCO_ICH2, /* ICH2 */
75 TCO_ICH2M, /* ICH2-M */
76 TCO_ICH3, /* ICH3-S */
77 TCO_ICH3M, /* ICH3-M */
78 TCO_ICH4, /* ICH4 */
79 TCO_ICH4M, /* ICH4-M */
80 TCO_CICH, /* C-ICH */
81 TCO_ICH5, /* ICH5 & ICH5R */
82 TCO_6300ESB, /* 6300ESB */
83 TCO_ICH6, /* ICH6 & ICH6R */
84 TCO_ICH6M, /* ICH6-M */
85 TCO_ICH6W, /* ICH6W & ICH6RW */
Wim Van Sebroeck28d41f52008-11-19 22:25:53 +000086 TCO_631XESB, /* 631xESB/632xESB */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020087 TCO_ICH7, /* ICH7 & ICH7R */
Wim Van Sebroeck28d41f52008-11-19 22:25:53 +000088 TCO_ICH7DH, /* ICH7DH */
89 TCO_ICH7M, /* ICH7-M & ICH7-U */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020090 TCO_ICH7MDH, /* ICH7-M DH */
Wim Van Sebroeckd38bd472010-12-31 14:10:45 +000091 TCO_NM10, /* NM10 */
Wim Van Sebroecka8edd742006-10-08 21:05:21 +020092 TCO_ICH8, /* ICH8 & ICH8R */
93 TCO_ICH8DH, /* ICH8DH */
94 TCO_ICH8DO, /* ICH8DO */
Wim Van Sebroeckacf60352007-08-31 08:23:10 +000095 TCO_ICH8M, /* ICH8M */
Wim Van Sebroeck28d41f52008-11-19 22:25:53 +000096 TCO_ICH8ME, /* ICH8M-E */
Wim Van Sebroeck286201d2007-07-26 21:11:28 +000097 TCO_ICH9, /* ICH9 */
98 TCO_ICH9R, /* ICH9R */
99 TCO_ICH9DH, /* ICH9DH */
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000100 TCO_ICH9DO, /* ICH9DO */
Wim Van Sebroeck28d41f52008-11-19 22:25:53 +0000101 TCO_ICH9M, /* ICH9M */
102 TCO_ICH9ME, /* ICH9M-E */
103 TCO_ICH10, /* ICH10 */
104 TCO_ICH10R, /* ICH10R */
105 TCO_ICH10D, /* ICH10D */
106 TCO_ICH10DO, /* ICH10DO */
Seth Heasley79e89412009-11-11 02:24:01 +0100107 TCO_PCH, /* PCH Desktop Full Featured */
108 TCO_PCHM, /* PCH Mobile Full Featured */
Seth Heasley3c9d8ec2010-01-14 20:58:05 +0000109 TCO_P55, /* P55 */
110 TCO_PM55, /* PM55 */
111 TCO_H55, /* H55 */
112 TCO_QM57, /* QM57 */
113 TCO_H57, /* H57 */
114 TCO_HM55, /* HM55 */
115 TCO_Q57, /* Q57 */
116 TCO_HM57, /* HM57 */
Seth Heasley79e89412009-11-11 02:24:01 +0100117 TCO_PCHMSFF, /* PCH Mobile SFF Full Featured */
Seth Heasley3c9d8ec2010-01-14 20:58:05 +0000118 TCO_QS57, /* QS57 */
119 TCO_3400, /* 3400 */
120 TCO_3420, /* 3420 */
121 TCO_3450, /* 3450 */
Imre Kaloz4946f832009-12-07 20:42:26 +0100122 TCO_EP80579, /* EP80579 */
Wim Van Sebroeck97b08a62011-05-20 08:28:48 +0000123 TCO_CPT, /* Cougar Point */
124 TCO_CPTD, /* Cougar Point Desktop */
125 TCO_CPTM, /* Cougar Point Mobile */
126 TCO_PBG, /* Patsburg */
Seth Heasley203f8d82011-01-07 17:11:08 -0800127 TCO_DH89XXCC, /* DH89xxCC */
Wim Van Sebroeck97b08a62011-05-20 08:28:48 +0000128 TCO_PPT, /* Panther Point */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200129};
130
131static struct {
132 char *name;
133 unsigned int iTCO_version;
134} iTCO_chipset_info[] __devinitdata = {
135 {"ICH", 1},
136 {"ICH0", 1},
137 {"ICH2", 1},
138 {"ICH2-M", 1},
139 {"ICH3-S", 1},
140 {"ICH3-M", 1},
141 {"ICH4", 1},
142 {"ICH4-M", 1},
143 {"C-ICH", 1},
144 {"ICH5 or ICH5R", 1},
145 {"6300ESB", 1},
146 {"ICH6 or ICH6R", 2},
147 {"ICH6-M", 2},
148 {"ICH6W or ICH6RW", 2},
Wim Van Sebroeck28d41f52008-11-19 22:25:53 +0000149 {"631xESB/632xESB", 2},
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200150 {"ICH7 or ICH7R", 2},
Wim Van Sebroeck28d41f52008-11-19 22:25:53 +0000151 {"ICH7DH", 2},
152 {"ICH7-M or ICH7-U", 2},
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200153 {"ICH7-M DH", 2},
Wim Van Sebroeckd38bd472010-12-31 14:10:45 +0000154 {"NM10", 2},
Arnaud Patard (Rtp)bcbf25b2006-10-04 14:18:29 +0200155 {"ICH8 or ICH8R", 2},
Wim Van Sebroecka8edd742006-10-08 21:05:21 +0200156 {"ICH8DH", 2},
157 {"ICH8DO", 2},
Wim Van Sebroeckacf60352007-08-31 08:23:10 +0000158 {"ICH8M", 2},
Wim Van Sebroeck28d41f52008-11-19 22:25:53 +0000159 {"ICH8M-E", 2},
Wim Van Sebroeck286201d2007-07-26 21:11:28 +0000160 {"ICH9", 2},
161 {"ICH9R", 2},
162 {"ICH9DH", 2},
Gabriel Ca49056d2008-04-30 16:51:10 +0200163 {"ICH9DO", 2},
Wim Van Sebroeck28d41f52008-11-19 22:25:53 +0000164 {"ICH9M", 2},
165 {"ICH9M-E", 2},
166 {"ICH10", 2},
167 {"ICH10R", 2},
168 {"ICH10D", 2},
169 {"ICH10DO", 2},
Seth Heasley79e89412009-11-11 02:24:01 +0100170 {"PCH Desktop Full Featured", 2},
171 {"PCH Mobile Full Featured", 2},
Seth Heasley3c9d8ec2010-01-14 20:58:05 +0000172 {"P55", 2},
173 {"PM55", 2},
174 {"H55", 2},
175 {"QM57", 2},
176 {"H57", 2},
177 {"HM55", 2},
178 {"Q57", 2},
179 {"HM57", 2},
Seth Heasley79e89412009-11-11 02:24:01 +0100180 {"PCH Mobile SFF Full Featured", 2},
Seth Heasley3c9d8ec2010-01-14 20:58:05 +0000181 {"QS57", 2},
182 {"3400", 2},
183 {"3420", 2},
184 {"3450", 2},
Imre Kaloz4946f832009-12-07 20:42:26 +0100185 {"EP80579", 2},
Seth Heasley4c7d8492010-03-25 16:14:41 -0700186 {"Cougar Point", 2},
Wim Van Sebroeck97b08a62011-05-20 08:28:48 +0000187 {"Cougar Point Desktop", 2},
188 {"Cougar Point Mobile", 2},
Seth Heasleyc54fb812010-11-17 12:15:08 -0700189 {"Patsburg", 2},
Seth Heasley203f8d82011-01-07 17:11:08 -0800190 {"DH89xxCC", 2},
Seth Heasleyaa1f4652011-04-20 10:56:20 -0700191 {"Panther Point", 2},
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100192 {NULL, 0}
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200193};
194
195/*
196 * This data only exists for exporting the supported PCI ids
197 * via MODULE_DEVICE_TABLE. We do not actually register a
198 * pci_driver, because the I/O Controller Hub has also other
199 * functions that probably will be registered by other drivers.
200 */
Wim Van Sebroeck4562f532011-02-21 12:16:44 +0000201static DEFINE_PCI_DEVICE_TABLE(iTCO_wdt_pci_tbl) = {
Wim Van Sebroeck97b08a62011-05-20 08:28:48 +0000202 { PCI_VDEVICE(INTEL, 0x2410), TCO_ICH},
203 { PCI_VDEVICE(INTEL, 0x2420), TCO_ICH0},
204 { PCI_VDEVICE(INTEL, 0x2440), TCO_ICH2},
205 { PCI_VDEVICE(INTEL, 0x244c), TCO_ICH2M},
206 { PCI_VDEVICE(INTEL, 0x2480), TCO_ICH3},
207 { PCI_VDEVICE(INTEL, 0x248c), TCO_ICH3M},
208 { PCI_VDEVICE(INTEL, 0x24c0), TCO_ICH4},
209 { PCI_VDEVICE(INTEL, 0x24cc), TCO_ICH4M},
210 { PCI_VDEVICE(INTEL, 0x2450), TCO_CICH},
211 { PCI_VDEVICE(INTEL, 0x24d0), TCO_ICH5},
212 { PCI_VDEVICE(INTEL, 0x25a1), TCO_6300ESB},
213 { PCI_VDEVICE(INTEL, 0x2640), TCO_ICH6},
214 { PCI_VDEVICE(INTEL, 0x2641), TCO_ICH6M},
215 { PCI_VDEVICE(INTEL, 0x2642), TCO_ICH6W},
216 { PCI_VDEVICE(INTEL, 0x2670), TCO_631XESB},
217 { PCI_VDEVICE(INTEL, 0x2671), TCO_631XESB},
218 { PCI_VDEVICE(INTEL, 0x2672), TCO_631XESB},
219 { PCI_VDEVICE(INTEL, 0x2673), TCO_631XESB},
220 { PCI_VDEVICE(INTEL, 0x2674), TCO_631XESB},
221 { PCI_VDEVICE(INTEL, 0x2675), TCO_631XESB},
222 { PCI_VDEVICE(INTEL, 0x2676), TCO_631XESB},
223 { PCI_VDEVICE(INTEL, 0x2677), TCO_631XESB},
224 { PCI_VDEVICE(INTEL, 0x2678), TCO_631XESB},
225 { PCI_VDEVICE(INTEL, 0x2679), TCO_631XESB},
226 { PCI_VDEVICE(INTEL, 0x267a), TCO_631XESB},
227 { PCI_VDEVICE(INTEL, 0x267b), TCO_631XESB},
228 { PCI_VDEVICE(INTEL, 0x267c), TCO_631XESB},
229 { PCI_VDEVICE(INTEL, 0x267d), TCO_631XESB},
230 { PCI_VDEVICE(INTEL, 0x267e), TCO_631XESB},
231 { PCI_VDEVICE(INTEL, 0x267f), TCO_631XESB},
232 { PCI_VDEVICE(INTEL, 0x27b8), TCO_ICH7},
233 { PCI_VDEVICE(INTEL, 0x27b0), TCO_ICH7DH},
234 { PCI_VDEVICE(INTEL, 0x27b9), TCO_ICH7M},
235 { PCI_VDEVICE(INTEL, 0x27bd), TCO_ICH7MDH},
236 { PCI_VDEVICE(INTEL, 0x27bc), TCO_NM10},
237 { PCI_VDEVICE(INTEL, 0x2810), TCO_ICH8},
238 { PCI_VDEVICE(INTEL, 0x2812), TCO_ICH8DH},
239 { PCI_VDEVICE(INTEL, 0x2814), TCO_ICH8DO},
240 { PCI_VDEVICE(INTEL, 0x2815), TCO_ICH8M},
241 { PCI_VDEVICE(INTEL, 0x2811), TCO_ICH8ME},
242 { PCI_VDEVICE(INTEL, 0x2918), TCO_ICH9},
243 { PCI_VDEVICE(INTEL, 0x2916), TCO_ICH9R},
244 { PCI_VDEVICE(INTEL, 0x2912), TCO_ICH9DH},
245 { PCI_VDEVICE(INTEL, 0x2914), TCO_ICH9DO},
246 { PCI_VDEVICE(INTEL, 0x2919), TCO_ICH9M},
247 { PCI_VDEVICE(INTEL, 0x2917), TCO_ICH9ME},
248 { PCI_VDEVICE(INTEL, 0x3a18), TCO_ICH10},
249 { PCI_VDEVICE(INTEL, 0x3a16), TCO_ICH10R},
250 { PCI_VDEVICE(INTEL, 0x3a1a), TCO_ICH10D},
251 { PCI_VDEVICE(INTEL, 0x3a14), TCO_ICH10DO},
252 { PCI_VDEVICE(INTEL, 0x3b00), TCO_PCH},
253 { PCI_VDEVICE(INTEL, 0x3b01), TCO_PCHM},
254 { PCI_VDEVICE(INTEL, 0x3b02), TCO_P55},
255 { PCI_VDEVICE(INTEL, 0x3b03), TCO_PM55},
256 { PCI_VDEVICE(INTEL, 0x3b06), TCO_H55},
257 { PCI_VDEVICE(INTEL, 0x3b07), TCO_QM57},
258 { PCI_VDEVICE(INTEL, 0x3b08), TCO_H57},
259 { PCI_VDEVICE(INTEL, 0x3b09), TCO_HM55},
260 { PCI_VDEVICE(INTEL, 0x3b0a), TCO_Q57},
261 { PCI_VDEVICE(INTEL, 0x3b0b), TCO_HM57},
262 { PCI_VDEVICE(INTEL, 0x3b0d), TCO_PCHMSFF},
263 { PCI_VDEVICE(INTEL, 0x3b0f), TCO_QS57},
264 { PCI_VDEVICE(INTEL, 0x3b12), TCO_3400},
265 { PCI_VDEVICE(INTEL, 0x3b14), TCO_3420},
266 { PCI_VDEVICE(INTEL, 0x3b16), TCO_3450},
267 { PCI_VDEVICE(INTEL, 0x5031), TCO_EP80579},
268 { PCI_VDEVICE(INTEL, 0x1c41), TCO_CPT},
269 { PCI_VDEVICE(INTEL, 0x1c42), TCO_CPTD},
270 { PCI_VDEVICE(INTEL, 0x1c43), TCO_CPTM},
271 { PCI_VDEVICE(INTEL, 0x1c44), TCO_CPT},
272 { PCI_VDEVICE(INTEL, 0x1c45), TCO_CPT},
273 { PCI_VDEVICE(INTEL, 0x1c46), TCO_CPT},
274 { PCI_VDEVICE(INTEL, 0x1c47), TCO_CPT},
275 { PCI_VDEVICE(INTEL, 0x1c48), TCO_CPT},
276 { PCI_VDEVICE(INTEL, 0x1c49), TCO_CPT},
277 { PCI_VDEVICE(INTEL, 0x1c4a), TCO_CPT},
278 { PCI_VDEVICE(INTEL, 0x1c4b), TCO_CPT},
279 { PCI_VDEVICE(INTEL, 0x1c4c), TCO_CPT},
280 { PCI_VDEVICE(INTEL, 0x1c4d), TCO_CPT},
281 { PCI_VDEVICE(INTEL, 0x1c4e), TCO_CPT},
282 { PCI_VDEVICE(INTEL, 0x1c4f), TCO_CPT},
283 { PCI_VDEVICE(INTEL, 0x1c50), TCO_CPT},
284 { PCI_VDEVICE(INTEL, 0x1c51), TCO_CPT},
285 { PCI_VDEVICE(INTEL, 0x1c52), TCO_CPT},
286 { PCI_VDEVICE(INTEL, 0x1c53), TCO_CPT},
287 { PCI_VDEVICE(INTEL, 0x1c54), TCO_CPT},
288 { PCI_VDEVICE(INTEL, 0x1c55), TCO_CPT},
289 { PCI_VDEVICE(INTEL, 0x1c56), TCO_CPT},
290 { PCI_VDEVICE(INTEL, 0x1c57), TCO_CPT},
291 { PCI_VDEVICE(INTEL, 0x1c58), TCO_CPT},
292 { PCI_VDEVICE(INTEL, 0x1c59), TCO_CPT},
293 { PCI_VDEVICE(INTEL, 0x1c5a), TCO_CPT},
294 { PCI_VDEVICE(INTEL, 0x1c5b), TCO_CPT},
295 { PCI_VDEVICE(INTEL, 0x1c5c), TCO_CPT},
296 { PCI_VDEVICE(INTEL, 0x1c5d), TCO_CPT},
297 { PCI_VDEVICE(INTEL, 0x1c5e), TCO_CPT},
298 { PCI_VDEVICE(INTEL, 0x1c5f), TCO_CPT},
299 { PCI_VDEVICE(INTEL, 0x1d40), TCO_PBG},
300 { PCI_VDEVICE(INTEL, 0x1d41), TCO_PBG},
301 { PCI_VDEVICE(INTEL, 0x2310), TCO_DH89XXCC},
302 { PCI_VDEVICE(INTEL, 0x1e40), TCO_PPT},
303 { PCI_VDEVICE(INTEL, 0x1e41), TCO_PPT},
304 { PCI_VDEVICE(INTEL, 0x1e42), TCO_PPT},
305 { PCI_VDEVICE(INTEL, 0x1e43), TCO_PPT},
306 { PCI_VDEVICE(INTEL, 0x1e44), TCO_PPT},
307 { PCI_VDEVICE(INTEL, 0x1e45), TCO_PPT},
308 { PCI_VDEVICE(INTEL, 0x1e46), TCO_PPT},
309 { PCI_VDEVICE(INTEL, 0x1e47), TCO_PPT},
310 { PCI_VDEVICE(INTEL, 0x1e48), TCO_PPT},
311 { PCI_VDEVICE(INTEL, 0x1e49), TCO_PPT},
312 { PCI_VDEVICE(INTEL, 0x1e4a), TCO_PPT},
313 { PCI_VDEVICE(INTEL, 0x1e4b), TCO_PPT},
314 { PCI_VDEVICE(INTEL, 0x1e4c), TCO_PPT},
315 { PCI_VDEVICE(INTEL, 0x1e4d), TCO_PPT},
316 { PCI_VDEVICE(INTEL, 0x1e4e), TCO_PPT},
317 { PCI_VDEVICE(INTEL, 0x1e4f), TCO_PPT},
318 { PCI_VDEVICE(INTEL, 0x1e50), TCO_PPT},
319 { PCI_VDEVICE(INTEL, 0x1e51), TCO_PPT},
320 { PCI_VDEVICE(INTEL, 0x1e52), TCO_PPT},
321 { PCI_VDEVICE(INTEL, 0x1e53), TCO_PPT},
322 { PCI_VDEVICE(INTEL, 0x1e54), TCO_PPT},
323 { PCI_VDEVICE(INTEL, 0x1e55), TCO_PPT},
324 { PCI_VDEVICE(INTEL, 0x1e56), TCO_PPT},
325 { PCI_VDEVICE(INTEL, 0x1e57), TCO_PPT},
326 { PCI_VDEVICE(INTEL, 0x1e58), TCO_PPT},
327 { PCI_VDEVICE(INTEL, 0x1e59), TCO_PPT},
328 { PCI_VDEVICE(INTEL, 0x1e5a), TCO_PPT},
329 { PCI_VDEVICE(INTEL, 0x1e5b), TCO_PPT},
330 { PCI_VDEVICE(INTEL, 0x1e5c), TCO_PPT},
331 { PCI_VDEVICE(INTEL, 0x1e5d), TCO_PPT},
332 { PCI_VDEVICE(INTEL, 0x1e5e), TCO_PPT},
333 { PCI_VDEVICE(INTEL, 0x1e5f), TCO_PPT},
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200334 { 0, }, /* End of list */
335};
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100336MODULE_DEVICE_TABLE(pci, iTCO_wdt_pci_tbl);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200337
338/* Address definitions for the TCO */
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100339/* TCO base address */
Wim Van Sebroeck0a7e65822009-04-14 20:20:07 +0000340#define TCOBASE (iTCO_wdt_private.ACPIBASE + 0x60)
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100341/* SMI Control and Enable Register */
Wim Van Sebroeck0a7e65822009-04-14 20:20:07 +0000342#define SMI_EN (iTCO_wdt_private.ACPIBASE + 0x30)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200343
Wim Van Sebroeck0a7e65822009-04-14 20:20:07 +0000344#define TCO_RLD (TCOBASE + 0x00) /* TCO Timer Reload and Curr. Value */
345#define TCOv1_TMR (TCOBASE + 0x01) /* TCOv1 Timer Initial Value */
346#define TCO_DAT_IN (TCOBASE + 0x02) /* TCO Data In Register */
347#define TCO_DAT_OUT (TCOBASE + 0x03) /* TCO Data Out Register */
348#define TCO1_STS (TCOBASE + 0x04) /* TCO1 Status Register */
349#define TCO2_STS (TCOBASE + 0x06) /* TCO2 Status Register */
350#define TCO1_CNT (TCOBASE + 0x08) /* TCO1 Control Register */
351#define TCO2_CNT (TCOBASE + 0x0a) /* TCO2 Control Register */
352#define TCOv2_TMR (TCOBASE + 0x12) /* TCOv2 Timer Initial Value */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200353
354/* internal variables */
355static unsigned long is_active;
356static char expect_release;
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100357static struct { /* this is private data for the iTCO_wdt device */
358 /* TCO version/generation */
359 unsigned int iTCO_version;
Prarit Bhargava641912f2010-08-06 11:41:24 -0400360 /* The device's ACPIBASE address (TCOBASE = ACPIBASE+0x60) */
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100361 unsigned long ACPIBASE;
362 /* NO_REBOOT flag is Memory-Mapped GCS register bit 5 (TCO version 2)*/
363 unsigned long __iomem *gcs;
364 /* the lock for io operations */
365 spinlock_t io_lock;
366 /* the PCI-device */
367 struct pci_dev *pdev;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200368} iTCO_wdt_private;
369
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100370/* the watchdog platform device */
371static struct platform_device *iTCO_wdt_platform_device;
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200372
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200373/* module parameters */
374#define WATCHDOG_HEARTBEAT 30 /* 30 sec default heartbeat */
375static int heartbeat = WATCHDOG_HEARTBEAT; /* in seconds */
376module_param(heartbeat, int, 0);
Pádraig Brady7e6811d2010-04-19 13:38:25 +0100377MODULE_PARM_DESC(heartbeat, "Watchdog timeout in seconds. "
378 "5..76 (TCO v1) or 3..614 (TCO v2), default="
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000379 __MODULE_STRING(WATCHDOG_HEARTBEAT) ")");
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200380
381static int nowayout = WATCHDOG_NOWAYOUT;
382module_param(nowayout, int, 0);
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100383MODULE_PARM_DESC(nowayout,
384 "Watchdog cannot be stopped once started (default="
385 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100386
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200387/*
388 * Some TCO specific functions
389 */
390
391static inline unsigned int seconds_to_ticks(int seconds)
392{
393 /* the internal timer is stored as ticks which decrement
394 * every 0.6 seconds */
395 return (seconds * 10) / 6;
396}
397
398static void iTCO_wdt_set_NO_REBOOT_bit(void)
399{
400 u32 val32;
401
402 /* Set the NO_REBOOT bit: this disables reboots */
403 if (iTCO_wdt_private.iTCO_version == 2) {
404 val32 = readl(iTCO_wdt_private.gcs);
405 val32 |= 0x00000020;
406 writel(val32, iTCO_wdt_private.gcs);
407 } else if (iTCO_wdt_private.iTCO_version == 1) {
408 pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32);
409 val32 |= 0x00000002;
410 pci_write_config_dword(iTCO_wdt_private.pdev, 0xd4, val32);
411 }
412}
413
414static int iTCO_wdt_unset_NO_REBOOT_bit(void)
415{
416 int ret = 0;
417 u32 val32;
418
419 /* Unset the NO_REBOOT bit: this enables reboots */
420 if (iTCO_wdt_private.iTCO_version == 2) {
421 val32 = readl(iTCO_wdt_private.gcs);
422 val32 &= 0xffffffdf;
423 writel(val32, iTCO_wdt_private.gcs);
424
425 val32 = readl(iTCO_wdt_private.gcs);
426 if (val32 & 0x00000020)
427 ret = -EIO;
428 } else if (iTCO_wdt_private.iTCO_version == 1) {
429 pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32);
430 val32 &= 0xfffffffd;
431 pci_write_config_dword(iTCO_wdt_private.pdev, 0xd4, val32);
432
433 pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32);
434 if (val32 & 0x00000002)
435 ret = -EIO;
436 }
437
438 return ret; /* returns: 0 = OK, -EIO = Error */
439}
440
441static int iTCO_wdt_start(void)
442{
443 unsigned int val;
444
445 spin_lock(&iTCO_wdt_private.io_lock);
446
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100447 iTCO_vendor_pre_start(iTCO_wdt_private.ACPIBASE, heartbeat);
448
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200449 /* disable chipset's NO_REBOOT bit */
450 if (iTCO_wdt_unset_NO_REBOOT_bit()) {
Roel Kluin2ba7d7b2007-10-23 03:08:27 +0200451 spin_unlock(&iTCO_wdt_private.io_lock);
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000452 printk(KERN_ERR PFX "failed to reset NO_REBOOT flag, "
Prarit Bhargava641912f2010-08-06 11:41:24 -0400453 "reboot disabled by hardware/BIOS\n");
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200454 return -EIO;
455 }
456
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000457 /* Force the timer to its reload value by writing to the TCO_RLD
458 register */
459 if (iTCO_wdt_private.iTCO_version == 2)
460 outw(0x01, TCO_RLD);
461 else if (iTCO_wdt_private.iTCO_version == 1)
462 outb(0x01, TCO_RLD);
463
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200464 /* Bit 11: TCO Timer Halt -> 0 = The TCO timer is enabled to count */
465 val = inw(TCO1_CNT);
466 val &= 0xf7ff;
467 outw(val, TCO1_CNT);
468 val = inw(TCO1_CNT);
469 spin_unlock(&iTCO_wdt_private.io_lock);
470
471 if (val & 0x0800)
472 return -1;
473 return 0;
474}
475
476static int iTCO_wdt_stop(void)
477{
478 unsigned int val;
479
480 spin_lock(&iTCO_wdt_private.io_lock);
481
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100482 iTCO_vendor_pre_stop(iTCO_wdt_private.ACPIBASE);
483
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200484 /* Bit 11: TCO Timer Halt -> 1 = The TCO timer is disabled */
485 val = inw(TCO1_CNT);
486 val |= 0x0800;
487 outw(val, TCO1_CNT);
488 val = inw(TCO1_CNT);
489
490 /* Set the NO_REBOOT bit to prevent later reboots, just for sure */
491 iTCO_wdt_set_NO_REBOOT_bit();
492
493 spin_unlock(&iTCO_wdt_private.io_lock);
494
495 if ((val & 0x0800) == 0)
496 return -1;
497 return 0;
498}
499
500static int iTCO_wdt_keepalive(void)
501{
502 spin_lock(&iTCO_wdt_private.io_lock);
503
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100504 iTCO_vendor_pre_keepalive(iTCO_wdt_private.ACPIBASE, heartbeat);
505
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200506 /* Reload the timer by writing to the TCO Timer Counter register */
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100507 if (iTCO_wdt_private.iTCO_version == 2)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200508 outw(0x01, TCO_RLD);
Pádraig Brady7e6811d2010-04-19 13:38:25 +0100509 else if (iTCO_wdt_private.iTCO_version == 1) {
510 /* Reset the timeout status bit so that the timer
511 * needs to count down twice again before rebooting */
512 outw(0x0008, TCO1_STS); /* write 1 to clear bit */
513
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200514 outb(0x01, TCO_RLD);
Pádraig Brady7e6811d2010-04-19 13:38:25 +0100515 }
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200516
517 spin_unlock(&iTCO_wdt_private.io_lock);
518 return 0;
519}
520
521static int iTCO_wdt_set_heartbeat(int t)
522{
523 unsigned int val16;
524 unsigned char val8;
525 unsigned int tmrval;
526
527 tmrval = seconds_to_ticks(t);
Pádraig Brady7e6811d2010-04-19 13:38:25 +0100528
529 /* For TCO v1 the timer counts down twice before rebooting */
530 if (iTCO_wdt_private.iTCO_version == 1)
531 tmrval /= 2;
532
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200533 /* from the specs: */
534 /* "Values of 0h-3h are ignored and should not be attempted" */
535 if (tmrval < 0x04)
536 return -EINVAL;
537 if (((iTCO_wdt_private.iTCO_version == 2) && (tmrval > 0x3ff)) ||
538 ((iTCO_wdt_private.iTCO_version == 1) && (tmrval > 0x03f)))
539 return -EINVAL;
540
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100541 iTCO_vendor_pre_set_heartbeat(tmrval);
542
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200543 /* Write new heartbeat to watchdog */
544 if (iTCO_wdt_private.iTCO_version == 2) {
545 spin_lock(&iTCO_wdt_private.io_lock);
546 val16 = inw(TCOv2_TMR);
547 val16 &= 0xfc00;
548 val16 |= tmrval;
549 outw(val16, TCOv2_TMR);
550 val16 = inw(TCOv2_TMR);
551 spin_unlock(&iTCO_wdt_private.io_lock);
552
553 if ((val16 & 0x3ff) != tmrval)
554 return -EINVAL;
555 } else if (iTCO_wdt_private.iTCO_version == 1) {
556 spin_lock(&iTCO_wdt_private.io_lock);
557 val8 = inb(TCOv1_TMR);
558 val8 &= 0xc0;
559 val8 |= (tmrval & 0xff);
560 outb(val8, TCOv1_TMR);
561 val8 = inb(TCOv1_TMR);
562 spin_unlock(&iTCO_wdt_private.io_lock);
563
564 if ((val8 & 0x3f) != tmrval)
565 return -EINVAL;
566 }
567
568 heartbeat = t;
569 return 0;
570}
571
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100572static int iTCO_wdt_get_timeleft(int *time_left)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200573{
574 unsigned int val16;
575 unsigned char val8;
576
577 /* read the TCO Timer */
578 if (iTCO_wdt_private.iTCO_version == 2) {
579 spin_lock(&iTCO_wdt_private.io_lock);
580 val16 = inw(TCO_RLD);
581 val16 &= 0x3ff;
582 spin_unlock(&iTCO_wdt_private.io_lock);
583
584 *time_left = (val16 * 6) / 10;
585 } else if (iTCO_wdt_private.iTCO_version == 1) {
586 spin_lock(&iTCO_wdt_private.io_lock);
587 val8 = inb(TCO_RLD);
588 val8 &= 0x3f;
Pádraig Brady7e6811d2010-04-19 13:38:25 +0100589 if (!(inw(TCO1_STS) & 0x0008))
590 val8 += (inb(TCOv1_TMR) & 0x3f);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200591 spin_unlock(&iTCO_wdt_private.io_lock);
592
593 *time_left = (val8 * 6) / 10;
Jeff Garzik80060362006-10-10 03:40:44 -0400594 } else
595 return -EINVAL;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200596 return 0;
597}
598
599/*
600 * /dev/watchdog handling
601 */
602
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100603static int iTCO_wdt_open(struct inode *inode, struct file *file)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200604{
605 /* /dev/watchdog can only be opened once */
606 if (test_and_set_bit(0, &is_active))
607 return -EBUSY;
608
609 /*
610 * Reload and activate timer
611 */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200612 iTCO_wdt_start();
613 return nonseekable_open(inode, file);
614}
615
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100616static int iTCO_wdt_release(struct inode *inode, struct file *file)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200617{
618 /*
619 * Shut off the timer.
620 */
621 if (expect_release == 42) {
622 iTCO_wdt_stop();
623 } else {
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100624 printk(KERN_CRIT PFX
625 "Unexpected close, not stopping watchdog!\n");
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200626 iTCO_wdt_keepalive();
627 }
628 clear_bit(0, &is_active);
629 expect_release = 0;
630 return 0;
631}
632
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100633static ssize_t iTCO_wdt_write(struct file *file, const char __user *data,
634 size_t len, loff_t *ppos)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200635{
636 /* See if we got the magic character 'V' and reload the timer */
637 if (len) {
638 if (!nowayout) {
639 size_t i;
640
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100641 /* note: just in case someone wrote the magic
642 character five months ago... */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200643 expect_release = 0;
644
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100645 /* scan to see whether or not we got the
646 magic character */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200647 for (i = 0; i != len; i++) {
648 char c;
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000649 if (get_user(c, data + i))
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200650 return -EFAULT;
651 if (c == 'V')
652 expect_release = 42;
653 }
654 }
655
656 /* someone wrote to us, we should reload the timer */
657 iTCO_wdt_keepalive();
658 }
659 return len;
660}
661
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100662static long iTCO_wdt_ioctl(struct file *file, unsigned int cmd,
663 unsigned long arg)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200664{
665 int new_options, retval = -EINVAL;
666 int new_heartbeat;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200667 void __user *argp = (void __user *)arg;
668 int __user *p = argp;
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000669 static const struct watchdog_info ident = {
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200670 .options = WDIOF_SETTIMEOUT |
671 WDIOF_KEEPALIVEPING |
672 WDIOF_MAGICCLOSE,
673 .firmware_version = 0,
674 .identity = DRV_NAME,
675 };
676
677 switch (cmd) {
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100678 case WDIOC_GETSUPPORT:
679 return copy_to_user(argp, &ident, sizeof(ident)) ? -EFAULT : 0;
680 case WDIOC_GETSTATUS:
681 case WDIOC_GETBOOTSTATUS:
682 return put_user(0, p);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200683
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100684 case WDIOC_SETOPTIONS:
685 {
686 if (get_user(new_options, p))
687 return -EFAULT;
688
689 if (new_options & WDIOS_DISABLECARD) {
690 iTCO_wdt_stop();
691 retval = 0;
692 }
693 if (new_options & WDIOS_ENABLECARD) {
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200694 iTCO_wdt_keepalive();
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100695 iTCO_wdt_start();
696 retval = 0;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200697 }
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100698 return retval;
699 }
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000700 case WDIOC_KEEPALIVE:
701 iTCO_wdt_keepalive();
702 return 0;
703
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100704 case WDIOC_SETTIMEOUT:
705 {
706 if (get_user(new_heartbeat, p))
707 return -EFAULT;
708 if (iTCO_wdt_set_heartbeat(new_heartbeat))
709 return -EINVAL;
710 iTCO_wdt_keepalive();
711 /* Fall */
712 }
713 case WDIOC_GETTIMEOUT:
714 return put_user(heartbeat, p);
715 case WDIOC_GETTIMELEFT:
716 {
717 int time_left;
718 if (iTCO_wdt_get_timeleft(&time_left))
719 return -EINVAL;
720 return put_user(time_left, p);
721 }
722 default:
723 return -ENOTTY;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200724 }
725}
726
727/*
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200728 * Kernel Interfaces
729 */
730
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800731static const struct file_operations iTCO_wdt_fops = {
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100732 .owner = THIS_MODULE,
733 .llseek = no_llseek,
734 .write = iTCO_wdt_write,
735 .unlocked_ioctl = iTCO_wdt_ioctl,
736 .open = iTCO_wdt_open,
737 .release = iTCO_wdt_release,
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200738};
739
740static struct miscdevice iTCO_wdt_miscdev = {
741 .minor = WATCHDOG_MINOR,
742 .name = "watchdog",
743 .fops = &iTCO_wdt_fops,
744};
745
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200746/*
747 * Init & exit routines
748 */
749
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100750static int __devinit iTCO_wdt_init(struct pci_dev *pdev,
751 const struct pci_device_id *ent, struct platform_device *dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200752{
753 int ret;
754 u32 base_address;
755 unsigned long RCBA;
Wim Van Sebroeck12d60e22009-01-28 20:51:04 +0000756 unsigned long val32;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200757
758 /*
759 * Find the ACPI/PM base I/O address which is the base
760 * for the TCO registers (TCOBASE=ACPIBASE + 0x60)
761 * ACPIBASE is bits [15:7] from 0x40-0x43
762 */
763 pci_read_config_dword(pdev, 0x40, &base_address);
Wim Van Sebroeck0d4804b2007-05-11 18:59:24 +0000764 base_address &= 0x0000ff80;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200765 if (base_address == 0x00000000) {
766 /* Something's wrong here, ACPIBASE has to be set */
Prarit Bhargava641912f2010-08-06 11:41:24 -0400767 printk(KERN_ERR PFX "failed to get TCOBASE address, "
768 "device disabled by hardware/BIOS\n");
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200769 return -ENODEV;
770 }
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100771 iTCO_wdt_private.iTCO_version =
772 iTCO_chipset_info[ent->driver_data].iTCO_version;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200773 iTCO_wdt_private.ACPIBASE = base_address;
774 iTCO_wdt_private.pdev = pdev;
775
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100776 /* Get the Memory-Mapped GCS register, we need it for the
777 NO_REBOOT flag (TCO v2). To get access to it you have to
778 read RCBA from PCI Config space 0xf0 and use it as base.
779 GCS = RCBA + ICH6_GCS(0x3410). */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200780 if (iTCO_wdt_private.iTCO_version == 2) {
781 pci_read_config_dword(pdev, 0xf0, &base_address);
Denis V. Lunevde8cd9a2009-06-05 15:13:08 +0400782 if ((base_address & 1) == 0) {
Prarit Bhargava641912f2010-08-06 11:41:24 -0400783 printk(KERN_ERR PFX "RCBA is disabled by hardware"
784 "/BIOS, device disabled\n");
Denis V. Lunevde8cd9a2009-06-05 15:13:08 +0400785 ret = -ENODEV;
786 goto out;
787 }
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200788 RCBA = base_address & 0xffffc000;
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100789 iTCO_wdt_private.gcs = ioremap((RCBA + 0x3410), 4);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200790 }
791
792 /* Check chipset's NO_REBOOT bit */
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100793 if (iTCO_wdt_unset_NO_REBOOT_bit() && iTCO_vendor_check_noreboot_on()) {
Naga Chumbalkarec269852010-02-09 00:42:02 +0100794 printk(KERN_INFO PFX "unable to reset NO_REBOOT flag, "
Prarit Bhargava641912f2010-08-06 11:41:24 -0400795 "device disabled by hardware/BIOS\n");
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200796 ret = -ENODEV; /* Cannot reset NO_REBOOT bit */
Denis V. Lunevde8cd9a2009-06-05 15:13:08 +0400797 goto out_unmap;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200798 }
799
800 /* Set the NO_REBOOT bit to prevent later reboots, just for sure */
801 iTCO_wdt_set_NO_REBOOT_bit();
802
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000803 /* The TCO logic uses the TCO_EN bit in the SMI_EN register */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200804 if (!request_region(SMI_EN, 4, "iTCO_wdt")) {
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100805 printk(KERN_ERR PFX
Prarit Bhargava641912f2010-08-06 11:41:24 -0400806 "I/O address 0x%04lx already in use, "
807 "device disabled\n", SMI_EN);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200808 ret = -EIO;
Denis V. Lunevde8cd9a2009-06-05 15:13:08 +0400809 goto out_unmap;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200810 }
Wim Van Sebroeck12d60e22009-01-28 20:51:04 +0000811 /* Bit 13: TCO_EN -> 0 = Disables TCO logic generating an SMI# */
812 val32 = inl(SMI_EN);
813 val32 &= 0xffffdfff; /* Turn off SMI clearing watchdog */
814 outl(val32, SMI_EN);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200815
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100816 /* The TCO I/O registers reside in a 32-byte range pointed to
817 by the TCOBASE value */
818 if (!request_region(TCOBASE, 0x20, "iTCO_wdt")) {
Prarit Bhargava641912f2010-08-06 11:41:24 -0400819 printk(KERN_ERR PFX "I/O address 0x%04lx already in use "
820 "device disabled\n", TCOBASE);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200821 ret = -EIO;
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000822 goto unreg_smi_en;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200823 }
824
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100825 printk(KERN_INFO PFX
826 "Found a %s TCO device (Version=%d, TCOBASE=0x%04lx)\n",
827 iTCO_chipset_info[ent->driver_data].name,
828 iTCO_chipset_info[ent->driver_data].iTCO_version,
829 TCOBASE);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200830
831 /* Clear out the (probably old) status */
Pádraig Brady7e6811d2010-04-19 13:38:25 +0100832 outw(0x0008, TCO1_STS); /* Clear the Time Out Status bit */
833 outw(0x0002, TCO2_STS); /* Clear SECOND_TO_STS bit */
834 outw(0x0004, TCO2_STS); /* Clear BOOT_STS bit */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200835
836 /* Make sure the watchdog is not running */
837 iTCO_wdt_stop();
838
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100839 /* Check that the heartbeat value is within it's range;
840 if not reset to the default */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200841 if (iTCO_wdt_set_heartbeat(heartbeat)) {
842 iTCO_wdt_set_heartbeat(WATCHDOG_HEARTBEAT);
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000843 printk(KERN_INFO PFX
Pádraig Brady7e6811d2010-04-19 13:38:25 +0100844 "timeout value out of range, using %d\n", heartbeat);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200845 }
846
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200847 ret = misc_register(&iTCO_wdt_miscdev);
848 if (ret != 0) {
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100849 printk(KERN_ERR PFX
850 "cannot register miscdev on minor=%d (err=%d)\n",
851 WATCHDOG_MINOR, ret);
Wim Van Sebroeck1bef84b2006-08-05 20:59:01 +0200852 goto unreg_region;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200853 }
854
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100855 printk(KERN_INFO PFX "initialized. heartbeat=%d sec (nowayout=%d)\n",
856 heartbeat, nowayout);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200857
858 return 0;
859
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200860unreg_region:
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100861 release_region(TCOBASE, 0x20);
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000862unreg_smi_en:
863 release_region(SMI_EN, 4);
Denis V. Lunevde8cd9a2009-06-05 15:13:08 +0400864out_unmap:
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200865 if (iTCO_wdt_private.iTCO_version == 2)
866 iounmap(iTCO_wdt_private.gcs);
Denis V. Lunevde8cd9a2009-06-05 15:13:08 +0400867out:
Wim Van Sebroeck1bef84b2006-08-05 20:59:01 +0200868 iTCO_wdt_private.ACPIBASE = 0;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200869 return ret;
870}
871
Wim Van Sebroeck08113e32007-08-31 08:15:34 +0000872static void __devexit iTCO_wdt_cleanup(void)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200873{
874 /* Stop the timer before we leave */
875 if (!nowayout)
876 iTCO_wdt_stop();
877
878 /* Deregister */
879 misc_deregister(&iTCO_wdt_miscdev);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200880 release_region(TCOBASE, 0x20);
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000881 release_region(SMI_EN, 4);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200882 if (iTCO_wdt_private.iTCO_version == 2)
883 iounmap(iTCO_wdt_private.gcs);
Wim Van Sebroeck4802c652006-07-19 22:39:13 +0200884 pci_dev_put(iTCO_wdt_private.pdev);
Wim Van Sebroeck1bef84b2006-08-05 20:59:01 +0200885 iTCO_wdt_private.ACPIBASE = 0;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200886}
887
Wim Van Sebroeck08113e32007-08-31 08:15:34 +0000888static int __devinit iTCO_wdt_probe(struct platform_device *dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200889{
Naga Chumbalkarec269852010-02-09 00:42:02 +0100890 int ret = -ENODEV;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200891 int found = 0;
892 struct pci_dev *pdev = NULL;
893 const struct pci_device_id *ent;
894
895 spin_lock_init(&iTCO_wdt_private.io_lock);
896
897 for_each_pci_dev(pdev) {
898 ent = pci_match_id(iTCO_wdt_pci_tbl, pdev);
899 if (ent) {
Naga Chumbalkarec269852010-02-09 00:42:02 +0100900 found++;
901 ret = iTCO_wdt_init(pdev, ent, dev);
902 if (!ret)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200903 break;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200904 }
905 }
906
Naga Chumbalkarec269852010-02-09 00:42:02 +0100907 if (!found)
Prarit Bhargava641912f2010-08-06 11:41:24 -0400908 printk(KERN_INFO PFX "No device detected.\n");
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200909
Naga Chumbalkarec269852010-02-09 00:42:02 +0100910 return ret;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200911}
912
Wim Van Sebroeck08113e32007-08-31 08:15:34 +0000913static int __devexit iTCO_wdt_remove(struct platform_device *dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200914{
915 if (iTCO_wdt_private.ACPIBASE)
916 iTCO_wdt_cleanup();
917
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200918 return 0;
919}
920
921static void iTCO_wdt_shutdown(struct platform_device *dev)
922{
923 iTCO_wdt_stop();
924}
925
926#define iTCO_wdt_suspend NULL
927#define iTCO_wdt_resume NULL
928
929static struct platform_driver iTCO_wdt_driver = {
930 .probe = iTCO_wdt_probe,
Wim Van Sebroeck08113e32007-08-31 08:15:34 +0000931 .remove = __devexit_p(iTCO_wdt_remove),
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200932 .shutdown = iTCO_wdt_shutdown,
933 .suspend = iTCO_wdt_suspend,
934 .resume = iTCO_wdt_resume,
935 .driver = {
936 .owner = THIS_MODULE,
937 .name = DRV_NAME,
938 },
939};
940
941static int __init iTCO_wdt_init_module(void)
942{
943 int err;
944
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000945 printk(KERN_INFO PFX "Intel TCO WatchDog Timer Driver v%s\n",
946 DRV_VERSION);
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200947
948 err = platform_driver_register(&iTCO_wdt_driver);
949 if (err)
950 return err;
951
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100952 iTCO_wdt_platform_device = platform_device_register_simple(DRV_NAME,
953 -1, NULL, 0);
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200954 if (IS_ERR(iTCO_wdt_platform_device)) {
955 err = PTR_ERR(iTCO_wdt_platform_device);
956 goto unreg_platform_driver;
957 }
958
959 return 0;
960
961unreg_platform_driver:
962 platform_driver_unregister(&iTCO_wdt_driver);
963 return err;
964}
965
966static void __exit iTCO_wdt_cleanup_module(void)
967{
968 platform_device_unregister(iTCO_wdt_platform_device);
969 platform_driver_unregister(&iTCO_wdt_driver);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200970 printk(KERN_INFO PFX "Watchdog Module Unloaded.\n");
971}
972
973module_init(iTCO_wdt_init_module);
974module_exit(iTCO_wdt_cleanup_module);
975
976MODULE_AUTHOR("Wim Van Sebroeck <wim@iguana.be>");
977MODULE_DESCRIPTION("Intel TCO WatchDog Timer Driver");
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200978MODULE_VERSION(DRV_VERSION);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200979MODULE_LICENSE("GPL");
980MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);