2 * intel TCO Watchdog Driver
4 * (c) Copyright 2006-2009 Wim Van Sebroeck <wim@iguana.be>.
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.
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.
15 * The TCO watchdog is implemented in the following I/O controller hubs:
16 * (See the intel documentation on http://developer.intel.com.)
17 * 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)
29 * document number 313056-003, 313057-017: 82801H (ICH8)
30 * document number 316972-004, 316973-012: 82801I (ICH9)
31 * document number 319973-002, 319974-002: 82801J (ICH10)
32 * document number 322169-001, 322170-003: 5 Series, 3400 Series (PCH)
33 * document number 320066-003, 320257-008: EP80597 (IICH)
34 * document number TBD : Cougar Point (CPT)
38 * Includes, defines, variables, module parameters, ...
41 /* Module and version information */
42 #define DRV_NAME "iTCO_wdt"
43 #define DRV_VERSION "1.05"
44 #define PFX DRV_NAME ": "
47 #include <linux/module.h> /* For module specific items */
48 #include <linux/moduleparam.h> /* For new moduleparam's */
49 #include <linux/types.h> /* For standard types (like size_t) */
50 #include <linux/errno.h> /* For the -ENODEV/... values */
51 #include <linux/kernel.h> /* For printk/panic/... */
52 #include <linux/miscdevice.h> /* For MODULE_ALIAS_MISCDEV
54 #include <linux/watchdog.h> /* For the watchdog specific items */
55 #include <linux/init.h> /* For __init/__exit/... */
56 #include <linux/fs.h> /* For file operations */
57 #include <linux/platform_device.h> /* For platform_driver framework */
58 #include <linux/pci.h> /* For pci functions */
59 #include <linux/ioport.h> /* For io-port access */
60 #include <linux/spinlock.h> /* For spin_lock/spin_unlock/... */
61 #include <linux/uaccess.h> /* For copy_to_user/put_user/... */
62 #include <linux/io.h> /* For inb/outb/... */
64 #include "iTCO_vendor.h"
66 /* TCO related info */
68 TCO_ICH
= 0, /* ICH */
71 TCO_ICH2M
, /* ICH2-M */
72 TCO_ICH3
, /* ICH3-S */
73 TCO_ICH3M
, /* ICH3-M */
75 TCO_ICH4M
, /* ICH4-M */
77 TCO_ICH5
, /* ICH5 & ICH5R */
78 TCO_6300ESB
, /* 6300ESB */
79 TCO_ICH6
, /* ICH6 & ICH6R */
80 TCO_ICH6M
, /* ICH6-M */
81 TCO_ICH6W
, /* ICH6W & ICH6RW */
82 TCO_631XESB
, /* 631xESB/632xESB */
83 TCO_ICH7
, /* ICH7 & ICH7R */
84 TCO_ICH7DH
, /* ICH7DH */
85 TCO_ICH7M
, /* ICH7-M & ICH7-U */
86 TCO_ICH7MDH
, /* ICH7-M DH */
87 TCO_ICH8
, /* ICH8 & ICH8R */
88 TCO_ICH8DH
, /* ICH8DH */
89 TCO_ICH8DO
, /* ICH8DO */
90 TCO_ICH8M
, /* ICH8M */
91 TCO_ICH8ME
, /* ICH8M-E */
93 TCO_ICH9R
, /* ICH9R */
94 TCO_ICH9DH
, /* ICH9DH */
95 TCO_ICH9DO
, /* ICH9DO */
96 TCO_ICH9M
, /* ICH9M */
97 TCO_ICH9ME
, /* ICH9M-E */
98 TCO_ICH10
, /* ICH10 */
99 TCO_ICH10R
, /* ICH10R */
100 TCO_ICH10D
, /* ICH10D */
101 TCO_ICH10DO
, /* ICH10DO */
102 TCO_PCH
, /* PCH Desktop Full Featured */
103 TCO_PCHM
, /* PCH Mobile Full Featured */
112 TCO_PCHMSFF
, /* PCH Mobile SFF Full Featured */
117 TCO_EP80579
, /* EP80579 */
118 TCO_CPTD
, /* CPT Desktop */
119 TCO_CPTM
, /* CPT Mobile */
124 unsigned int iTCO_version
;
125 } iTCO_chipset_info
[] __devinitdata
= {
135 {"ICH5 or ICH5R", 1},
137 {"ICH6 or ICH6R", 2},
139 {"ICH6W or ICH6RW", 2},
140 {"631xESB/632xESB", 2},
141 {"ICH7 or ICH7R", 2},
143 {"ICH7-M or ICH7-U", 2},
145 {"ICH8 or ICH8R", 2},
160 {"PCH Desktop Full Featured", 2},
161 {"PCH Mobile Full Featured", 2},
170 {"PCH Mobile SFF Full Featured", 2},
181 #define ITCO_PCI_DEVICE(dev, data) \
182 .vendor = PCI_VENDOR_ID_INTEL, \
184 .subvendor = PCI_ANY_ID, \
185 .subdevice = PCI_ANY_ID, \
191 * This data only exists for exporting the supported PCI ids
192 * via MODULE_DEVICE_TABLE. We do not actually register a
193 * pci_driver, because the I/O Controller Hub has also other
194 * functions that probably will be registered by other drivers.
196 static struct pci_device_id iTCO_wdt_pci_tbl
[] = {
197 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801AA_0
, TCO_ICH
)},
198 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801AB_0
, TCO_ICH0
)},
199 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801BA_0
, TCO_ICH2
)},
200 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801BA_10
, TCO_ICH2M
)},
201 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801CA_0
, TCO_ICH3
)},
202 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801CA_12
, TCO_ICH3M
)},
203 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801DB_0
, TCO_ICH4
)},
204 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801DB_12
, TCO_ICH4M
)},
205 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801E_0
, TCO_CICH
)},
206 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_82801EB_0
, TCO_ICH5
)},
207 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ESB_1
, TCO_6300ESB
)},
208 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH6_0
, TCO_ICH6
)},
209 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH6_1
, TCO_ICH6M
)},
210 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH6_2
, TCO_ICH6W
)},
211 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ESB2_0
, TCO_631XESB
)},
212 { ITCO_PCI_DEVICE(0x2671, TCO_631XESB
)},
213 { ITCO_PCI_DEVICE(0x2672, TCO_631XESB
)},
214 { ITCO_PCI_DEVICE(0x2673, TCO_631XESB
)},
215 { ITCO_PCI_DEVICE(0x2674, TCO_631XESB
)},
216 { ITCO_PCI_DEVICE(0x2675, TCO_631XESB
)},
217 { ITCO_PCI_DEVICE(0x2676, TCO_631XESB
)},
218 { ITCO_PCI_DEVICE(0x2677, TCO_631XESB
)},
219 { ITCO_PCI_DEVICE(0x2678, TCO_631XESB
)},
220 { ITCO_PCI_DEVICE(0x2679, TCO_631XESB
)},
221 { ITCO_PCI_DEVICE(0x267a, TCO_631XESB
)},
222 { ITCO_PCI_DEVICE(0x267b, TCO_631XESB
)},
223 { ITCO_PCI_DEVICE(0x267c, TCO_631XESB
)},
224 { ITCO_PCI_DEVICE(0x267d, TCO_631XESB
)},
225 { ITCO_PCI_DEVICE(0x267e, TCO_631XESB
)},
226 { ITCO_PCI_DEVICE(0x267f, TCO_631XESB
)},
227 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH7_0
, TCO_ICH7
)},
228 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH7_30
, TCO_ICH7DH
)},
229 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH7_1
, TCO_ICH7M
)},
230 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH7_31
, TCO_ICH7MDH
)},
231 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH8_0
, TCO_ICH8
)},
232 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH8_2
, TCO_ICH8DH
)},
233 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH8_3
, TCO_ICH8DO
)},
234 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH8_4
, TCO_ICH8M
)},
235 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH8_1
, TCO_ICH8ME
)},
236 { ITCO_PCI_DEVICE(0x2918, TCO_ICH9
)},
237 { ITCO_PCI_DEVICE(0x2916, TCO_ICH9R
)},
238 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH9_2
, TCO_ICH9DH
)},
239 { ITCO_PCI_DEVICE(PCI_DEVICE_ID_INTEL_ICH9_4
, TCO_ICH9DO
)},
240 { ITCO_PCI_DEVICE(0x2919, TCO_ICH9M
)},
241 { ITCO_PCI_DEVICE(0x2917, TCO_ICH9ME
)},
242 { ITCO_PCI_DEVICE(0x3a18, TCO_ICH10
)},
243 { ITCO_PCI_DEVICE(0x3a16, TCO_ICH10R
)},
244 { ITCO_PCI_DEVICE(0x3a1a, TCO_ICH10D
)},
245 { ITCO_PCI_DEVICE(0x3a14, TCO_ICH10DO
)},
246 { ITCO_PCI_DEVICE(0x3b00, TCO_PCH
)},
247 { ITCO_PCI_DEVICE(0x3b01, TCO_PCHM
)},
248 { ITCO_PCI_DEVICE(0x3b02, TCO_P55
)},
249 { ITCO_PCI_DEVICE(0x3b03, TCO_PM55
)},
250 { ITCO_PCI_DEVICE(0x3b06, TCO_H55
)},
251 { ITCO_PCI_DEVICE(0x3b07, TCO_QM57
)},
252 { ITCO_PCI_DEVICE(0x3b08, TCO_H57
)},
253 { ITCO_PCI_DEVICE(0x3b09, TCO_HM55
)},
254 { ITCO_PCI_DEVICE(0x3b0a, TCO_Q57
)},
255 { ITCO_PCI_DEVICE(0x3b0b, TCO_HM57
)},
256 { ITCO_PCI_DEVICE(0x3b0d, TCO_PCHMSFF
)},
257 { ITCO_PCI_DEVICE(0x3b0f, TCO_QS57
)},
258 { ITCO_PCI_DEVICE(0x3b12, TCO_3400
)},
259 { ITCO_PCI_DEVICE(0x3b14, TCO_3420
)},
260 { ITCO_PCI_DEVICE(0x3b16, TCO_3450
)},
261 { ITCO_PCI_DEVICE(0x5031, TCO_EP80579
)},
262 { ITCO_PCI_DEVICE(0x1c42, TCO_CPTD
)},
263 { ITCO_PCI_DEVICE(0x1c43, TCO_CPTM
)},
264 { 0, }, /* End of list */
266 MODULE_DEVICE_TABLE(pci
, iTCO_wdt_pci_tbl
);
268 /* Address definitions for the TCO */
269 /* TCO base address */
270 #define TCOBASE (iTCO_wdt_private.ACPIBASE + 0x60)
271 /* SMI Control and Enable Register */
272 #define SMI_EN (iTCO_wdt_private.ACPIBASE + 0x30)
274 #define TCO_RLD (TCOBASE + 0x00) /* TCO Timer Reload and Curr. Value */
275 #define TCOv1_TMR (TCOBASE + 0x01) /* TCOv1 Timer Initial Value */
276 #define TCO_DAT_IN (TCOBASE + 0x02) /* TCO Data In Register */
277 #define TCO_DAT_OUT (TCOBASE + 0x03) /* TCO Data Out Register */
278 #define TCO1_STS (TCOBASE + 0x04) /* TCO1 Status Register */
279 #define TCO2_STS (TCOBASE + 0x06) /* TCO2 Status Register */
280 #define TCO1_CNT (TCOBASE + 0x08) /* TCO1 Control Register */
281 #define TCO2_CNT (TCOBASE + 0x0a) /* TCO2 Control Register */
282 #define TCOv2_TMR (TCOBASE + 0x12) /* TCOv2 Timer Initial Value */
284 /* internal variables */
285 static unsigned long is_active
;
286 static char expect_release
;
287 static struct { /* this is private data for the iTCO_wdt device */
288 /* TCO version/generation */
289 unsigned int iTCO_version
;
290 /* The cards ACPIBASE address (TCOBASE = ACPIBASE+0x60) */
291 unsigned long ACPIBASE
;
292 /* NO_REBOOT flag is Memory-Mapped GCS register bit 5 (TCO version 2)*/
293 unsigned long __iomem
*gcs
;
294 /* the lock for io operations */
297 struct pci_dev
*pdev
;
300 /* the watchdog platform device */
301 static struct platform_device
*iTCO_wdt_platform_device
;
303 /* module parameters */
304 #define WATCHDOG_HEARTBEAT 30 /* 30 sec default heartbeat */
305 static int heartbeat
= WATCHDOG_HEARTBEAT
; /* in seconds */
306 module_param(heartbeat
, int, 0);
307 MODULE_PARM_DESC(heartbeat
, "Watchdog heartbeat in seconds. "
308 "(2<heartbeat<39 (TCO v1) or 613 (TCO v2), default="
309 __MODULE_STRING(WATCHDOG_HEARTBEAT
) ")");
311 static int nowayout
= WATCHDOG_NOWAYOUT
;
312 module_param(nowayout
, int, 0);
313 MODULE_PARM_DESC(nowayout
,
314 "Watchdog cannot be stopped once started (default="
315 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
318 * Some TCO specific functions
321 static inline unsigned int seconds_to_ticks(int seconds
)
323 /* the internal timer is stored as ticks which decrement
324 * every 0.6 seconds */
325 return (seconds
* 10) / 6;
328 static void iTCO_wdt_set_NO_REBOOT_bit(void)
332 /* Set the NO_REBOOT bit: this disables reboots */
333 if (iTCO_wdt_private
.iTCO_version
== 2) {
334 val32
= readl(iTCO_wdt_private
.gcs
);
336 writel(val32
, iTCO_wdt_private
.gcs
);
337 } else if (iTCO_wdt_private
.iTCO_version
== 1) {
338 pci_read_config_dword(iTCO_wdt_private
.pdev
, 0xd4, &val32
);
340 pci_write_config_dword(iTCO_wdt_private
.pdev
, 0xd4, val32
);
344 static int iTCO_wdt_unset_NO_REBOOT_bit(void)
349 /* Unset the NO_REBOOT bit: this enables reboots */
350 if (iTCO_wdt_private
.iTCO_version
== 2) {
351 val32
= readl(iTCO_wdt_private
.gcs
);
353 writel(val32
, iTCO_wdt_private
.gcs
);
355 val32
= readl(iTCO_wdt_private
.gcs
);
356 if (val32
& 0x00000020)
358 } else if (iTCO_wdt_private
.iTCO_version
== 1) {
359 pci_read_config_dword(iTCO_wdt_private
.pdev
, 0xd4, &val32
);
361 pci_write_config_dword(iTCO_wdt_private
.pdev
, 0xd4, val32
);
363 pci_read_config_dword(iTCO_wdt_private
.pdev
, 0xd4, &val32
);
364 if (val32
& 0x00000002)
368 return ret
; /* returns: 0 = OK, -EIO = Error */
371 static int iTCO_wdt_start(void)
375 spin_lock(&iTCO_wdt_private
.io_lock
);
377 iTCO_vendor_pre_start(iTCO_wdt_private
.ACPIBASE
, heartbeat
);
379 /* disable chipset's NO_REBOOT bit */
380 if (iTCO_wdt_unset_NO_REBOOT_bit()) {
381 spin_unlock(&iTCO_wdt_private
.io_lock
);
382 printk(KERN_ERR PFX
"failed to reset NO_REBOOT flag, "
383 "reboot disabled by hardware\n");
387 /* Force the timer to its reload value by writing to the TCO_RLD
389 if (iTCO_wdt_private
.iTCO_version
== 2)
391 else if (iTCO_wdt_private
.iTCO_version
== 1)
394 /* Bit 11: TCO Timer Halt -> 0 = The TCO timer is enabled to count */
399 spin_unlock(&iTCO_wdt_private
.io_lock
);
406 static int iTCO_wdt_stop(void)
410 spin_lock(&iTCO_wdt_private
.io_lock
);
412 iTCO_vendor_pre_stop(iTCO_wdt_private
.ACPIBASE
);
414 /* Bit 11: TCO Timer Halt -> 1 = The TCO timer is disabled */
420 /* Set the NO_REBOOT bit to prevent later reboots, just for sure */
421 iTCO_wdt_set_NO_REBOOT_bit();
423 spin_unlock(&iTCO_wdt_private
.io_lock
);
425 if ((val
& 0x0800) == 0)
430 static int iTCO_wdt_keepalive(void)
432 spin_lock(&iTCO_wdt_private
.io_lock
);
434 iTCO_vendor_pre_keepalive(iTCO_wdt_private
.ACPIBASE
, heartbeat
);
436 /* Reload the timer by writing to the TCO Timer Counter register */
437 if (iTCO_wdt_private
.iTCO_version
== 2)
439 else if (iTCO_wdt_private
.iTCO_version
== 1)
442 spin_unlock(&iTCO_wdt_private
.io_lock
);
446 static int iTCO_wdt_set_heartbeat(int t
)
452 tmrval
= seconds_to_ticks(t
);
453 /* from the specs: */
454 /* "Values of 0h-3h are ignored and should not be attempted" */
457 if (((iTCO_wdt_private
.iTCO_version
== 2) && (tmrval
> 0x3ff)) ||
458 ((iTCO_wdt_private
.iTCO_version
== 1) && (tmrval
> 0x03f)))
461 iTCO_vendor_pre_set_heartbeat(tmrval
);
463 /* Write new heartbeat to watchdog */
464 if (iTCO_wdt_private
.iTCO_version
== 2) {
465 spin_lock(&iTCO_wdt_private
.io_lock
);
466 val16
= inw(TCOv2_TMR
);
469 outw(val16
, TCOv2_TMR
);
470 val16
= inw(TCOv2_TMR
);
471 spin_unlock(&iTCO_wdt_private
.io_lock
);
473 if ((val16
& 0x3ff) != tmrval
)
475 } else if (iTCO_wdt_private
.iTCO_version
== 1) {
476 spin_lock(&iTCO_wdt_private
.io_lock
);
477 val8
= inb(TCOv1_TMR
);
479 val8
|= (tmrval
& 0xff);
480 outb(val8
, TCOv1_TMR
);
481 val8
= inb(TCOv1_TMR
);
482 spin_unlock(&iTCO_wdt_private
.io_lock
);
484 if ((val8
& 0x3f) != tmrval
)
492 static int iTCO_wdt_get_timeleft(int *time_left
)
497 /* read the TCO Timer */
498 if (iTCO_wdt_private
.iTCO_version
== 2) {
499 spin_lock(&iTCO_wdt_private
.io_lock
);
500 val16
= inw(TCO_RLD
);
502 spin_unlock(&iTCO_wdt_private
.io_lock
);
504 *time_left
= (val16
* 6) / 10;
505 } else if (iTCO_wdt_private
.iTCO_version
== 1) {
506 spin_lock(&iTCO_wdt_private
.io_lock
);
509 spin_unlock(&iTCO_wdt_private
.io_lock
);
511 *time_left
= (val8
* 6) / 10;
518 * /dev/watchdog handling
521 static int iTCO_wdt_open(struct inode
*inode
, struct file
*file
)
523 /* /dev/watchdog can only be opened once */
524 if (test_and_set_bit(0, &is_active
))
528 * Reload and activate timer
531 return nonseekable_open(inode
, file
);
534 static int iTCO_wdt_release(struct inode
*inode
, struct file
*file
)
537 * Shut off the timer.
539 if (expect_release
== 42) {
543 "Unexpected close, not stopping watchdog!\n");
544 iTCO_wdt_keepalive();
546 clear_bit(0, &is_active
);
551 static ssize_t
iTCO_wdt_write(struct file
*file
, const char __user
*data
,
552 size_t len
, loff_t
*ppos
)
554 /* See if we got the magic character 'V' and reload the timer */
559 /* note: just in case someone wrote the magic
560 character five months ago... */
563 /* scan to see whether or not we got the
565 for (i
= 0; i
!= len
; i
++) {
567 if (get_user(c
, data
+ i
))
574 /* someone wrote to us, we should reload the timer */
575 iTCO_wdt_keepalive();
580 static long iTCO_wdt_ioctl(struct file
*file
, unsigned int cmd
,
583 int new_options
, retval
= -EINVAL
;
585 void __user
*argp
= (void __user
*)arg
;
586 int __user
*p
= argp
;
587 static struct watchdog_info ident
= {
588 .options
= WDIOF_SETTIMEOUT
|
589 WDIOF_KEEPALIVEPING
|
591 .firmware_version
= 0,
592 .identity
= DRV_NAME
,
596 case WDIOC_GETSUPPORT
:
597 return copy_to_user(argp
, &ident
, sizeof(ident
)) ? -EFAULT
: 0;
598 case WDIOC_GETSTATUS
:
599 case WDIOC_GETBOOTSTATUS
:
600 return put_user(0, p
);
602 case WDIOC_SETOPTIONS
:
604 if (get_user(new_options
, p
))
607 if (new_options
& WDIOS_DISABLECARD
) {
611 if (new_options
& WDIOS_ENABLECARD
) {
612 iTCO_wdt_keepalive();
618 case WDIOC_KEEPALIVE
:
619 iTCO_wdt_keepalive();
622 case WDIOC_SETTIMEOUT
:
624 if (get_user(new_heartbeat
, p
))
626 if (iTCO_wdt_set_heartbeat(new_heartbeat
))
628 iTCO_wdt_keepalive();
631 case WDIOC_GETTIMEOUT
:
632 return put_user(heartbeat
, p
);
633 case WDIOC_GETTIMELEFT
:
636 if (iTCO_wdt_get_timeleft(&time_left
))
638 return put_user(time_left
, p
);
649 static const struct file_operations iTCO_wdt_fops
= {
650 .owner
= THIS_MODULE
,
652 .write
= iTCO_wdt_write
,
653 .unlocked_ioctl
= iTCO_wdt_ioctl
,
654 .open
= iTCO_wdt_open
,
655 .release
= iTCO_wdt_release
,
658 static struct miscdevice iTCO_wdt_miscdev
= {
659 .minor
= WATCHDOG_MINOR
,
661 .fops
= &iTCO_wdt_fops
,
665 * Init & exit routines
668 static int __devinit
iTCO_wdt_init(struct pci_dev
*pdev
,
669 const struct pci_device_id
*ent
, struct platform_device
*dev
)
677 * Find the ACPI/PM base I/O address which is the base
678 * for the TCO registers (TCOBASE=ACPIBASE + 0x60)
679 * ACPIBASE is bits [15:7] from 0x40-0x43
681 pci_read_config_dword(pdev
, 0x40, &base_address
);
682 base_address
&= 0x0000ff80;
683 if (base_address
== 0x00000000) {
684 /* Something's wrong here, ACPIBASE has to be set */
685 printk(KERN_ERR PFX
"failed to get TCOBASE address\n");
689 iTCO_wdt_private
.iTCO_version
=
690 iTCO_chipset_info
[ent
->driver_data
].iTCO_version
;
691 iTCO_wdt_private
.ACPIBASE
= base_address
;
692 iTCO_wdt_private
.pdev
= pdev
;
694 /* Get the Memory-Mapped GCS register, we need it for the
695 NO_REBOOT flag (TCO v2). To get access to it you have to
696 read RCBA from PCI Config space 0xf0 and use it as base.
697 GCS = RCBA + ICH6_GCS(0x3410). */
698 if (iTCO_wdt_private
.iTCO_version
== 2) {
699 pci_read_config_dword(pdev
, 0xf0, &base_address
);
700 if ((base_address
& 1) == 0) {
701 printk(KERN_ERR PFX
"RCBA is disabled by harddware\n");
705 RCBA
= base_address
& 0xffffc000;
706 iTCO_wdt_private
.gcs
= ioremap((RCBA
+ 0x3410), 4);
709 /* Check chipset's NO_REBOOT bit */
710 if (iTCO_wdt_unset_NO_REBOOT_bit() && iTCO_vendor_check_noreboot_on()) {
711 printk(KERN_ERR PFX
"failed to reset NO_REBOOT flag, "
712 "reboot disabled by hardware\n");
713 ret
= -ENODEV
; /* Cannot reset NO_REBOOT bit */
717 /* Set the NO_REBOOT bit to prevent later reboots, just for sure */
718 iTCO_wdt_set_NO_REBOOT_bit();
720 /* The TCO logic uses the TCO_EN bit in the SMI_EN register */
721 if (!request_region(SMI_EN
, 4, "iTCO_wdt")) {
723 "I/O address 0x%04lx already in use\n", SMI_EN
);
727 /* Bit 13: TCO_EN -> 0 = Disables TCO logic generating an SMI# */
729 val32
&= 0xffffdfff; /* Turn off SMI clearing watchdog */
732 /* The TCO I/O registers reside in a 32-byte range pointed to
733 by the TCOBASE value */
734 if (!request_region(TCOBASE
, 0x20, "iTCO_wdt")) {
735 printk(KERN_ERR PFX
"I/O address 0x%04lx already in use\n",
742 "Found a %s TCO device (Version=%d, TCOBASE=0x%04lx)\n",
743 iTCO_chipset_info
[ent
->driver_data
].name
,
744 iTCO_chipset_info
[ent
->driver_data
].iTCO_version
,
747 /* Clear out the (probably old) status */
748 outb(8, TCO1_STS
); /* Clear the Time Out Status bit */
749 outb(2, TCO2_STS
); /* Clear SECOND_TO_STS bit */
750 outb(4, TCO2_STS
); /* Clear BOOT_STS bit */
752 /* Make sure the watchdog is not running */
755 /* Check that the heartbeat value is within it's range;
756 if not reset to the default */
757 if (iTCO_wdt_set_heartbeat(heartbeat
)) {
758 iTCO_wdt_set_heartbeat(WATCHDOG_HEARTBEAT
);
760 "heartbeat value must be 2 < heartbeat < 39 (TCO v1) "
761 "or 613 (TCO v2), using %d\n", heartbeat
);
764 ret
= misc_register(&iTCO_wdt_miscdev
);
767 "cannot register miscdev on minor=%d (err=%d)\n",
768 WATCHDOG_MINOR
, ret
);
772 printk(KERN_INFO PFX
"initialized. heartbeat=%d sec (nowayout=%d)\n",
773 heartbeat
, nowayout
);
778 release_region(TCOBASE
, 0x20);
780 release_region(SMI_EN
, 4);
782 if (iTCO_wdt_private
.iTCO_version
== 2)
783 iounmap(iTCO_wdt_private
.gcs
);
785 pci_dev_put(iTCO_wdt_private
.pdev
);
786 iTCO_wdt_private
.ACPIBASE
= 0;
790 static void __devexit
iTCO_wdt_cleanup(void)
792 /* Stop the timer before we leave */
797 misc_deregister(&iTCO_wdt_miscdev
);
798 release_region(TCOBASE
, 0x20);
799 release_region(SMI_EN
, 4);
800 if (iTCO_wdt_private
.iTCO_version
== 2)
801 iounmap(iTCO_wdt_private
.gcs
);
802 pci_dev_put(iTCO_wdt_private
.pdev
);
803 iTCO_wdt_private
.ACPIBASE
= 0;
806 static int __devinit
iTCO_wdt_probe(struct platform_device
*dev
)
809 struct pci_dev
*pdev
= NULL
;
810 const struct pci_device_id
*ent
;
812 spin_lock_init(&iTCO_wdt_private
.io_lock
);
814 for_each_pci_dev(pdev
) {
815 ent
= pci_match_id(iTCO_wdt_pci_tbl
, pdev
);
817 if (!(iTCO_wdt_init(pdev
, ent
, dev
))) {
825 printk(KERN_INFO PFX
"No card detected\n");
832 static int __devexit
iTCO_wdt_remove(struct platform_device
*dev
)
834 if (iTCO_wdt_private
.ACPIBASE
)
840 static void iTCO_wdt_shutdown(struct platform_device
*dev
)
845 #define iTCO_wdt_suspend NULL
846 #define iTCO_wdt_resume NULL
848 static struct platform_driver iTCO_wdt_driver
= {
849 .probe
= iTCO_wdt_probe
,
850 .remove
= __devexit_p(iTCO_wdt_remove
),
851 .shutdown
= iTCO_wdt_shutdown
,
852 .suspend
= iTCO_wdt_suspend
,
853 .resume
= iTCO_wdt_resume
,
855 .owner
= THIS_MODULE
,
860 static int __init
iTCO_wdt_init_module(void)
864 printk(KERN_INFO PFX
"Intel TCO WatchDog Timer Driver v%s\n",
867 err
= platform_driver_register(&iTCO_wdt_driver
);
871 iTCO_wdt_platform_device
= platform_device_register_simple(DRV_NAME
,
873 if (IS_ERR(iTCO_wdt_platform_device
)) {
874 err
= PTR_ERR(iTCO_wdt_platform_device
);
875 goto unreg_platform_driver
;
880 unreg_platform_driver
:
881 platform_driver_unregister(&iTCO_wdt_driver
);
885 static void __exit
iTCO_wdt_cleanup_module(void)
887 platform_device_unregister(iTCO_wdt_platform_device
);
888 platform_driver_unregister(&iTCO_wdt_driver
);
889 printk(KERN_INFO PFX
"Watchdog Module Unloaded.\n");
892 module_init(iTCO_wdt_init_module
);
893 module_exit(iTCO_wdt_cleanup_module
);
895 MODULE_AUTHOR("Wim Van Sebroeck <wim@iguana.be>");
896 MODULE_DESCRIPTION("Intel TCO WatchDog Timer Driver");
897 MODULE_VERSION(DRV_VERSION
);
898 MODULE_LICENSE("GPL");
899 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);