blob: cbdfbf00cfb7b0f85c8578f7920ff6abd90dc740 [file] [log] [blame]
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +02001/*
2 * intel TCO Watchdog Driver (Used in i82801 and i6300ESB chipsets)
3 *
4 * (c) Copyright 2006 Wim Van Sebroeck <wim@iguana.be>.
5 *
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.)
17 * 82801AA (ICH) : document number 290655-003, 290677-014,
18 * 82801AB (ICHO) : document number 290655-003, 290677-014,
19 * 82801BA (ICH2) : document number 290687-002, 298242-027,
20 * 82801BAM (ICH2-M) : document number 290687-002, 298242-027,
21 * 82801CA (ICH3-S) : document number 290733-003, 290739-013,
22 * 82801CAM (ICH3-M) : document number 290716-001, 290718-007,
23 * 82801DB (ICH4) : document number 290744-001, 290745-020,
24 * 82801DBM (ICH4-M) : document number 252337-001, 252663-005,
25 * 82801E (C-ICH) : document number 273599-001, 273645-002,
26 * 82801EB (ICH5) : document number 252516-001, 252517-003,
27 * 82801ER (ICH5R) : document number 252516-001, 252517-003,
28 * 82801FB (ICH6) : document number 301473-002, 301474-007,
29 * 82801FR (ICH6R) : document number 301473-002, 301474-007,
30 * 82801FBM (ICH6-M) : document number 301473-002, 301474-007,
31 * 82801FW (ICH6W) : document number 301473-001, 301474-007,
32 * 82801FRW (ICH6RW) : document number 301473-001, 301474-007,
33 * 82801GB (ICH7) : document number 307013-002, 307014-009,
34 * 82801GR (ICH7R) : document number 307013-002, 307014-009,
35 * 82801GDH (ICH7DH) : document number 307013-002, 307014-009,
36 * 82801GBM (ICH7-M) : document number 307013-002, 307014-009,
37 * 82801GHM (ICH7-M DH) : document number 307013-002, 307014-009,
38 * 6300ESB (6300ESB) : document number 300641-003
39 */
40
41/*
42 * Includes, defines, variables, module parameters, ...
43 */
44
45/* Module and version information */
46#define DRV_NAME "iTCO_wdt"
47#define DRV_VERSION "1.00"
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +020048#define DRV_RELDATE "18-Jun-2006"
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020049#define PFX DRV_NAME ": "
50
51/* Includes */
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +020052#include <linux/config.h> /* For CONFIG_WATCHDOG_NOWAYOUT/... */
53#include <linux/module.h> /* For module specific items */
54#include <linux/moduleparam.h> /* For new moduleparam's */
55#include <linux/types.h> /* For standard types (like size_t) */
56#include <linux/errno.h> /* For the -ENODEV/... values */
57#include <linux/kernel.h> /* For printk/panic/... */
58#include <linux/miscdevice.h> /* For MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR) */
59#include <linux/watchdog.h> /* For the watchdog specific items */
60#include <linux/notifier.h> /* For notifier support */
61#include <linux/reboot.h> /* For reboot_notifier stuff */
62#include <linux/init.h> /* For __init/__exit/... */
63#include <linux/fs.h> /* For file operations */
64#include <linux/platform_device.h> /* For platform_driver framework */
65#include <linux/pci.h> /* For pci functions */
66#include <linux/ioport.h> /* For io-port access */
67#include <linux/spinlock.h> /* For spin_lock/spin_unlock/... */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020068
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +020069#include <asm/uaccess.h> /* For copy_to_user/put_user/... */
70#include <asm/io.h> /* For inb/outb/... */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020071
72/* TCO related info */
73enum iTCO_chipsets {
74 TCO_ICH = 0, /* ICH */
75 TCO_ICH0, /* ICH0 */
76 TCO_ICH2, /* ICH2 */
77 TCO_ICH2M, /* ICH2-M */
78 TCO_ICH3, /* ICH3-S */
79 TCO_ICH3M, /* ICH3-M */
80 TCO_ICH4, /* ICH4 */
81 TCO_ICH4M, /* ICH4-M */
82 TCO_CICH, /* C-ICH */
83 TCO_ICH5, /* ICH5 & ICH5R */
84 TCO_6300ESB, /* 6300ESB */
85 TCO_ICH6, /* ICH6 & ICH6R */
86 TCO_ICH6M, /* ICH6-M */
87 TCO_ICH6W, /* ICH6W & ICH6RW */
88 TCO_ICH7, /* ICH7 & ICH7R */
89 TCO_ICH7M, /* ICH7-M */
90 TCO_ICH7MDH, /* ICH7-M DH */
91};
92
93static struct {
94 char *name;
95 unsigned int iTCO_version;
96} iTCO_chipset_info[] __devinitdata = {
97 {"ICH", 1},
98 {"ICH0", 1},
99 {"ICH2", 1},
100 {"ICH2-M", 1},
101 {"ICH3-S", 1},
102 {"ICH3-M", 1},
103 {"ICH4", 1},
104 {"ICH4-M", 1},
105 {"C-ICH", 1},
106 {"ICH5 or ICH5R", 1},
107 {"6300ESB", 1},
108 {"ICH6 or ICH6R", 2},
109 {"ICH6-M", 2},
110 {"ICH6W or ICH6RW", 2},
111 {"ICH7 or ICH7R", 2},
112 {"ICH7-M", 2},
113 {"ICH7-M DH", 2},
114 {NULL,0}
115};
116
117/*
118 * This data only exists for exporting the supported PCI ids
119 * via MODULE_DEVICE_TABLE. We do not actually register a
120 * pci_driver, because the I/O Controller Hub has also other
121 * functions that probably will be registered by other drivers.
122 */
123static struct pci_device_id iTCO_wdt_pci_tbl[] = {
124 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_ICH },
125 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_ICH0 },
126 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_ICH2 },
127 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_10, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_ICH2M },
128 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_ICH3 },
129 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_12, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_ICH3M },
130 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_ICH4 },
131 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_12, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_ICH4M },
132 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801E_0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_CICH },
133 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_ICH5 },
134 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_6300ESB },
135 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_ICH6 },
136 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_ICH6M },
137 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_2, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_ICH6W },
138 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_ICH7 },
139 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_ICH7M },
140 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_31, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TCO_ICH7MDH },
141 { 0, }, /* End of list */
142};
143MODULE_DEVICE_TABLE (pci, iTCO_wdt_pci_tbl);
144
145/* Address definitions for the TCO */
146#define TCOBASE iTCO_wdt_private.ACPIBASE + 0x60 /* TCO base address */
147#define SMI_EN iTCO_wdt_private.ACPIBASE + 0x30 /* SMI Control and Enable Register */
148
149#define TCO_RLD TCOBASE + 0x00 /* TCO Timer Reload and Current Value */
150#define TCOv1_TMR TCOBASE + 0x01 /* TCOv1 Timer Initial Value */
151#define TCO_DAT_IN TCOBASE + 0x02 /* TCO Data In Register */
152#define TCO_DAT_OUT TCOBASE + 0x03 /* TCO Data Out Register */
153#define TCO1_STS TCOBASE + 0x04 /* TCO1 Status Register */
154#define TCO2_STS TCOBASE + 0x06 /* TCO2 Status Register */
155#define TCO1_CNT TCOBASE + 0x08 /* TCO1 Control Register */
156#define TCO2_CNT TCOBASE + 0x0a /* TCO2 Control Register */
157#define TCOv2_TMR TCOBASE + 0x12 /* TCOv2 Timer Initial Value */
158
159/* internal variables */
160static unsigned long is_active;
161static char expect_release;
162static struct { /* this is private data for the iTCO_wdt device */
163 unsigned int iTCO_version; /* TCO version/generation */
164 unsigned long ACPIBASE; /* The cards ACPIBASE address (TCOBASE = ACPIBASE+0x60) */
165 unsigned long __iomem *gcs; /* NO_REBOOT flag is Memory-Mapped GCS register bit 5 (TCO version 2) */
166 spinlock_t io_lock; /* the lock for io operations */
167 struct pci_dev *pdev; /* the PCI-device */
168} iTCO_wdt_private;
169
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200170static struct platform_device *iTCO_wdt_platform_device; /* the watchdog platform device */
171
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200172/* module parameters */
173#define WATCHDOG_HEARTBEAT 30 /* 30 sec default heartbeat */
174static int heartbeat = WATCHDOG_HEARTBEAT; /* in seconds */
175module_param(heartbeat, int, 0);
176MODULE_PARM_DESC(heartbeat, "Watchdog heartbeat in seconds. (2<heartbeat<39 (TCO v1) or 613 (TCO v2), default=" __MODULE_STRING(WATCHDOG_HEARTBEAT) ")");
177
178static int nowayout = WATCHDOG_NOWAYOUT;
179module_param(nowayout, int, 0);
180MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=CONFIG_WATCHDOG_NOWAYOUT)");
181
182/*
183 * Some TCO specific functions
184 */
185
186static inline unsigned int seconds_to_ticks(int seconds)
187{
188 /* the internal timer is stored as ticks which decrement
189 * every 0.6 seconds */
190 return (seconds * 10) / 6;
191}
192
193static void iTCO_wdt_set_NO_REBOOT_bit(void)
194{
195 u32 val32;
196
197 /* Set the NO_REBOOT bit: this disables reboots */
198 if (iTCO_wdt_private.iTCO_version == 2) {
199 val32 = readl(iTCO_wdt_private.gcs);
200 val32 |= 0x00000020;
201 writel(val32, iTCO_wdt_private.gcs);
202 } else if (iTCO_wdt_private.iTCO_version == 1) {
203 pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32);
204 val32 |= 0x00000002;
205 pci_write_config_dword(iTCO_wdt_private.pdev, 0xd4, val32);
206 }
207}
208
209static int iTCO_wdt_unset_NO_REBOOT_bit(void)
210{
211 int ret = 0;
212 u32 val32;
213
214 /* Unset the NO_REBOOT bit: this enables reboots */
215 if (iTCO_wdt_private.iTCO_version == 2) {
216 val32 = readl(iTCO_wdt_private.gcs);
217 val32 &= 0xffffffdf;
218 writel(val32, iTCO_wdt_private.gcs);
219
220 val32 = readl(iTCO_wdt_private.gcs);
221 if (val32 & 0x00000020)
222 ret = -EIO;
223 } else if (iTCO_wdt_private.iTCO_version == 1) {
224 pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32);
225 val32 &= 0xfffffffd;
226 pci_write_config_dword(iTCO_wdt_private.pdev, 0xd4, val32);
227
228 pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32);
229 if (val32 & 0x00000002)
230 ret = -EIO;
231 }
232
233 return ret; /* returns: 0 = OK, -EIO = Error */
234}
235
236static int iTCO_wdt_start(void)
237{
238 unsigned int val;
239
240 spin_lock(&iTCO_wdt_private.io_lock);
241
242 /* disable chipset's NO_REBOOT bit */
243 if (iTCO_wdt_unset_NO_REBOOT_bit()) {
244 printk(KERN_ERR PFX "failed to reset NO_REBOOT flag, reboot disabled by hardware\n");
245 return -EIO;
246 }
247
248 /* Bit 11: TCO Timer Halt -> 0 = The TCO timer is enabled to count */
249 val = inw(TCO1_CNT);
250 val &= 0xf7ff;
251 outw(val, TCO1_CNT);
252 val = inw(TCO1_CNT);
253 spin_unlock(&iTCO_wdt_private.io_lock);
254
255 if (val & 0x0800)
256 return -1;
257 return 0;
258}
259
260static int iTCO_wdt_stop(void)
261{
262 unsigned int val;
263
264 spin_lock(&iTCO_wdt_private.io_lock);
265
266 /* Bit 11: TCO Timer Halt -> 1 = The TCO timer is disabled */
267 val = inw(TCO1_CNT);
268 val |= 0x0800;
269 outw(val, TCO1_CNT);
270 val = inw(TCO1_CNT);
271
272 /* Set the NO_REBOOT bit to prevent later reboots, just for sure */
273 iTCO_wdt_set_NO_REBOOT_bit();
274
275 spin_unlock(&iTCO_wdt_private.io_lock);
276
277 if ((val & 0x0800) == 0)
278 return -1;
279 return 0;
280}
281
282static int iTCO_wdt_keepalive(void)
283{
284 spin_lock(&iTCO_wdt_private.io_lock);
285
286 /* Reload the timer by writing to the TCO Timer Counter register */
287 if (iTCO_wdt_private.iTCO_version == 2) {
288 outw(0x01, TCO_RLD);
289 } else if (iTCO_wdt_private.iTCO_version == 1) {
290 outb(0x01, TCO_RLD);
291 }
292
293 spin_unlock(&iTCO_wdt_private.io_lock);
294 return 0;
295}
296
297static int iTCO_wdt_set_heartbeat(int t)
298{
299 unsigned int val16;
300 unsigned char val8;
301 unsigned int tmrval;
302
303 tmrval = seconds_to_ticks(t);
304 /* from the specs: */
305 /* "Values of 0h-3h are ignored and should not be attempted" */
306 if (tmrval < 0x04)
307 return -EINVAL;
308 if (((iTCO_wdt_private.iTCO_version == 2) && (tmrval > 0x3ff)) ||
309 ((iTCO_wdt_private.iTCO_version == 1) && (tmrval > 0x03f)))
310 return -EINVAL;
311
312 /* Write new heartbeat to watchdog */
313 if (iTCO_wdt_private.iTCO_version == 2) {
314 spin_lock(&iTCO_wdt_private.io_lock);
315 val16 = inw(TCOv2_TMR);
316 val16 &= 0xfc00;
317 val16 |= tmrval;
318 outw(val16, TCOv2_TMR);
319 val16 = inw(TCOv2_TMR);
320 spin_unlock(&iTCO_wdt_private.io_lock);
321
322 if ((val16 & 0x3ff) != tmrval)
323 return -EINVAL;
324 } else if (iTCO_wdt_private.iTCO_version == 1) {
325 spin_lock(&iTCO_wdt_private.io_lock);
326 val8 = inb(TCOv1_TMR);
327 val8 &= 0xc0;
328 val8 |= (tmrval & 0xff);
329 outb(val8, TCOv1_TMR);
330 val8 = inb(TCOv1_TMR);
331 spin_unlock(&iTCO_wdt_private.io_lock);
332
333 if ((val8 & 0x3f) != tmrval)
334 return -EINVAL;
335 }
336
337 heartbeat = t;
338 return 0;
339}
340
341static int iTCO_wdt_get_timeleft (int *time_left)
342{
343 unsigned int val16;
344 unsigned char val8;
345
346 /* read the TCO Timer */
347 if (iTCO_wdt_private.iTCO_version == 2) {
348 spin_lock(&iTCO_wdt_private.io_lock);
349 val16 = inw(TCO_RLD);
350 val16 &= 0x3ff;
351 spin_unlock(&iTCO_wdt_private.io_lock);
352
353 *time_left = (val16 * 6) / 10;
354 } else if (iTCO_wdt_private.iTCO_version == 1) {
355 spin_lock(&iTCO_wdt_private.io_lock);
356 val8 = inb(TCO_RLD);
357 val8 &= 0x3f;
358 spin_unlock(&iTCO_wdt_private.io_lock);
359
360 *time_left = (val8 * 6) / 10;
361 }
362 return 0;
363}
364
365/*
366 * /dev/watchdog handling
367 */
368
369static int iTCO_wdt_open (struct inode *inode, struct file *file)
370{
371 /* /dev/watchdog can only be opened once */
372 if (test_and_set_bit(0, &is_active))
373 return -EBUSY;
374
375 /*
376 * Reload and activate timer
377 */
378 iTCO_wdt_keepalive();
379 iTCO_wdt_start();
380 return nonseekable_open(inode, file);
381}
382
383static int iTCO_wdt_release (struct inode *inode, struct file *file)
384{
385 /*
386 * Shut off the timer.
387 */
388 if (expect_release == 42) {
389 iTCO_wdt_stop();
390 } else {
391 printk(KERN_CRIT PFX "Unexpected close, not stopping watchdog!\n");
392 iTCO_wdt_keepalive();
393 }
394 clear_bit(0, &is_active);
395 expect_release = 0;
396 return 0;
397}
398
399static ssize_t iTCO_wdt_write (struct file *file, const char __user *data,
400 size_t len, loff_t * ppos)
401{
402 /* See if we got the magic character 'V' and reload the timer */
403 if (len) {
404 if (!nowayout) {
405 size_t i;
406
407 /* note: just in case someone wrote the magic character
408 * five months ago... */
409 expect_release = 0;
410
411 /* scan to see whether or not we got the magic character */
412 for (i = 0; i != len; i++) {
413 char c;
414 if (get_user(c, data+i))
415 return -EFAULT;
416 if (c == 'V')
417 expect_release = 42;
418 }
419 }
420
421 /* someone wrote to us, we should reload the timer */
422 iTCO_wdt_keepalive();
423 }
424 return len;
425}
426
427static int iTCO_wdt_ioctl (struct inode *inode, struct file *file,
428 unsigned int cmd, unsigned long arg)
429{
430 int new_options, retval = -EINVAL;
431 int new_heartbeat;
432 int time_left;
433 void __user *argp = (void __user *)arg;
434 int __user *p = argp;
435 static struct watchdog_info ident = {
436 .options = WDIOF_SETTIMEOUT |
437 WDIOF_KEEPALIVEPING |
438 WDIOF_MAGICCLOSE,
439 .firmware_version = 0,
440 .identity = DRV_NAME,
441 };
442
443 switch (cmd) {
444 case WDIOC_GETSUPPORT:
445 return copy_to_user(argp, &ident,
446 sizeof (ident)) ? -EFAULT : 0;
447
448 case WDIOC_GETSTATUS:
449 case WDIOC_GETBOOTSTATUS:
450 return put_user(0, p);
451
452 case WDIOC_KEEPALIVE:
453 iTCO_wdt_keepalive();
454 return 0;
455
456 case WDIOC_SETOPTIONS:
457 {
458 if (get_user(new_options, p))
459 return -EFAULT;
460
461 if (new_options & WDIOS_DISABLECARD) {
462 iTCO_wdt_stop();
463 retval = 0;
464 }
465
466 if (new_options & WDIOS_ENABLECARD) {
467 iTCO_wdt_keepalive();
468 iTCO_wdt_start();
469 retval = 0;
470 }
471
472 return retval;
473 }
474
475 case WDIOC_SETTIMEOUT:
476 {
477 if (get_user(new_heartbeat, p))
478 return -EFAULT;
479
480 if (iTCO_wdt_set_heartbeat(new_heartbeat))
481 return -EINVAL;
482
483 iTCO_wdt_keepalive();
484 /* Fall */
485 }
486
487 case WDIOC_GETTIMEOUT:
488 return put_user(heartbeat, p);
489
490 case WDIOC_GETTIMELEFT:
491 {
492 if (iTCO_wdt_get_timeleft(&time_left))
493 return -EINVAL;
494
495 return put_user(time_left, p);
496 }
497
498 default:
499 return -ENOIOCTLCMD;
500 }
501}
502
503/*
504 * Notify system
505 */
506
507static int iTCO_wdt_notify_sys (struct notifier_block *this, unsigned long code, void *unused)
508{
509 if (code==SYS_DOWN || code==SYS_HALT) {
510 /* Turn the WDT off */
511 iTCO_wdt_stop();
512 }
513
514 return NOTIFY_DONE;
515}
516
517/*
518 * Kernel Interfaces
519 */
520
521static struct file_operations iTCO_wdt_fops = {
522 .owner = THIS_MODULE,
523 .llseek = no_llseek,
524 .write = iTCO_wdt_write,
525 .ioctl = iTCO_wdt_ioctl,
526 .open = iTCO_wdt_open,
527 .release = iTCO_wdt_release,
528};
529
530static struct miscdevice iTCO_wdt_miscdev = {
531 .minor = WATCHDOG_MINOR,
532 .name = "watchdog",
533 .fops = &iTCO_wdt_fops,
534};
535
536static struct notifier_block iTCO_wdt_notifier = {
537 .notifier_call = iTCO_wdt_notify_sys,
538};
539
540/*
541 * Init & exit routines
542 */
543
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200544static int iTCO_wdt_init(struct pci_dev *pdev, const struct pci_device_id *ent, struct platform_device *dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200545{
546 int ret;
547 u32 base_address;
548 unsigned long RCBA;
549 unsigned long val32;
550
551 /*
552 * Find the ACPI/PM base I/O address which is the base
553 * for the TCO registers (TCOBASE=ACPIBASE + 0x60)
554 * ACPIBASE is bits [15:7] from 0x40-0x43
555 */
556 pci_read_config_dword(pdev, 0x40, &base_address);
557 base_address &= 0x00007f80;
558 if (base_address == 0x00000000) {
559 /* Something's wrong here, ACPIBASE has to be set */
560 printk(KERN_ERR PFX "failed to get TCOBASE address\n");
561 return -ENODEV;
562 }
563 iTCO_wdt_private.iTCO_version = iTCO_chipset_info[ent->driver_data].iTCO_version;
564 iTCO_wdt_private.ACPIBASE = base_address;
565 iTCO_wdt_private.pdev = pdev;
566
567 /* Get the Memory-Mapped GCS register, we need it for the NO_REBOOT flag (TCO v2) */
568 /* To get access to it you have to read RCBA from PCI Config space 0xf0
569 and use it as base. GCS = RCBA + ICH6_GCS(0x3410). */
570 if (iTCO_wdt_private.iTCO_version == 2) {
571 pci_read_config_dword(pdev, 0xf0, &base_address);
572 RCBA = base_address & 0xffffc000;
573 iTCO_wdt_private.gcs = ioremap((RCBA + 0x3410),4);
574 }
575
576 /* Check chipset's NO_REBOOT bit */
577 if (iTCO_wdt_unset_NO_REBOOT_bit()) {
578 printk(KERN_ERR PFX "failed to reset NO_REBOOT flag, reboot disabled by hardware\n");
579 ret = -ENODEV; /* Cannot reset NO_REBOOT bit */
580 goto out;
581 }
582
583 /* Set the NO_REBOOT bit to prevent later reboots, just for sure */
584 iTCO_wdt_set_NO_REBOOT_bit();
585
586 /* Set the TCO_EN bit in SMI_EN register */
587 if (!request_region(SMI_EN, 4, "iTCO_wdt")) {
588 printk(KERN_ERR PFX "I/O address 0x%04lx already in use\n",
589 SMI_EN );
590 ret = -EIO;
591 goto out;
592 }
593 val32 = inl(SMI_EN);
594 val32 &= 0xffffdfff; /* Turn off SMI clearing watchdog */
595 outl(val32, SMI_EN);
596 release_region(SMI_EN, 4);
597
598 /* The TCO I/O registers reside in a 32-byte range pointed to by the TCOBASE value */
599 if (!request_region (TCOBASE, 0x20, "iTCO_wdt")) {
600 printk (KERN_ERR PFX "I/O address 0x%04lx already in use\n",
601 TCOBASE);
602 ret = -EIO;
603 goto out;
604 }
605
606 printk(KERN_INFO PFX "Found a %s TCO device (Version=%d, TCOBASE=0x%04lx)\n",
607 iTCO_chipset_info[ent->driver_data].name,
608 iTCO_chipset_info[ent->driver_data].iTCO_version,
609 TCOBASE);
610
611 /* Clear out the (probably old) status */
612 outb(0, TCO1_STS);
613 outb(3, TCO2_STS);
614
615 /* Make sure the watchdog is not running */
616 iTCO_wdt_stop();
617
618 /* Check that the heartbeat value is within it's range ; if not reset to the default */
619 if (iTCO_wdt_set_heartbeat(heartbeat)) {
620 iTCO_wdt_set_heartbeat(WATCHDOG_HEARTBEAT);
621 printk(KERN_INFO PFX "heartbeat value must be 2<heartbeat<39 (TCO v1) or 613 (TCO v2), using %d\n",
622 heartbeat);
623 }
624
625 ret = register_reboot_notifier(&iTCO_wdt_notifier);
626 if (ret != 0) {
627 printk(KERN_ERR PFX "cannot register reboot notifier (err=%d)\n",
628 ret);
629 goto unreg_region;
630 }
631
632 ret = misc_register(&iTCO_wdt_miscdev);
633 if (ret != 0) {
634 printk(KERN_ERR PFX "cannot register miscdev on minor=%d (err=%d)\n",
635 WATCHDOG_MINOR, ret);
636 goto unreg_notifier;
637 }
638
639 printk (KERN_INFO PFX "initialized. heartbeat=%d sec (nowayout=%d)\n",
640 heartbeat, nowayout);
641
642 return 0;
643
644unreg_notifier:
645 unregister_reboot_notifier(&iTCO_wdt_notifier);
646unreg_region:
647 release_region (TCOBASE, 0x20);
648out:
649 if (iTCO_wdt_private.iTCO_version == 2)
650 iounmap(iTCO_wdt_private.gcs);
651 iTCO_wdt_private.ACPIBASE = 0;
652 return ret;
653}
654
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200655static void iTCO_wdt_cleanup(void)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200656{
657 /* Stop the timer before we leave */
658 if (!nowayout)
659 iTCO_wdt_stop();
660
661 /* Deregister */
662 misc_deregister(&iTCO_wdt_miscdev);
663 unregister_reboot_notifier(&iTCO_wdt_notifier);
664 release_region(TCOBASE, 0x20);
665 if (iTCO_wdt_private.iTCO_version == 2)
666 iounmap(iTCO_wdt_private.gcs);
667}
668
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200669static int iTCO_wdt_probe(struct platform_device *dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200670{
671 int found = 0;
672 struct pci_dev *pdev = NULL;
673 const struct pci_device_id *ent;
674
675 spin_lock_init(&iTCO_wdt_private.io_lock);
676
677 for_each_pci_dev(pdev) {
678 ent = pci_match_id(iTCO_wdt_pci_tbl, pdev);
679 if (ent) {
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200680 if (!(iTCO_wdt_init(pdev, ent, dev))) {
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200681 found++;
682 break;
683 }
684 }
685 }
686
687 if (!found) {
688 printk(KERN_INFO PFX "No card detected\n");
689 return -ENODEV;
690 }
691
692 return 0;
693}
694
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200695static int iTCO_wdt_remove(struct platform_device *dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200696{
697 if (iTCO_wdt_private.ACPIBASE)
698 iTCO_wdt_cleanup();
699
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200700 return 0;
701}
702
703static void iTCO_wdt_shutdown(struct platform_device *dev)
704{
705 iTCO_wdt_stop();
706}
707
708#define iTCO_wdt_suspend NULL
709#define iTCO_wdt_resume NULL
710
711static struct platform_driver iTCO_wdt_driver = {
712 .probe = iTCO_wdt_probe,
713 .remove = iTCO_wdt_remove,
714 .shutdown = iTCO_wdt_shutdown,
715 .suspend = iTCO_wdt_suspend,
716 .resume = iTCO_wdt_resume,
717 .driver = {
718 .owner = THIS_MODULE,
719 .name = DRV_NAME,
720 },
721};
722
723static int __init iTCO_wdt_init_module(void)
724{
725 int err;
726
727 printk(KERN_INFO PFX "Intel TCO WatchDog Timer Driver v%s (%s)\n",
728 DRV_VERSION, DRV_RELDATE);
729
730 err = platform_driver_register(&iTCO_wdt_driver);
731 if (err)
732 return err;
733
734 iTCO_wdt_platform_device = platform_device_register_simple(DRV_NAME, -1, NULL, 0);
735 if (IS_ERR(iTCO_wdt_platform_device)) {
736 err = PTR_ERR(iTCO_wdt_platform_device);
737 goto unreg_platform_driver;
738 }
739
740 return 0;
741
742unreg_platform_driver:
743 platform_driver_unregister(&iTCO_wdt_driver);
744 return err;
745}
746
747static void __exit iTCO_wdt_cleanup_module(void)
748{
749 platform_device_unregister(iTCO_wdt_platform_device);
750 platform_driver_unregister(&iTCO_wdt_driver);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200751 printk(KERN_INFO PFX "Watchdog Module Unloaded.\n");
752}
753
754module_init(iTCO_wdt_init_module);
755module_exit(iTCO_wdt_cleanup_module);
756
757MODULE_AUTHOR("Wim Van Sebroeck <wim@iguana.be>");
758MODULE_DESCRIPTION("Intel TCO WatchDog Timer Driver");
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200759MODULE_VERSION(DRV_VERSION);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200760MODULE_LICENSE("GPL");
761MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);