2 * w83697hf/hg WDT driver
4 * (c) Copyright 2006 Samuel Tardieu <sam@rfc1149.net>
5 * (c) Copyright 2006 Marcus Junker <junker@anduras.de>
7 * Based on w83627hf_wdt.c which is based on advantechwdt.c
8 * which is based on wdt.c.
9 * Original copyright messages:
11 * (c) Copyright 2003 Pádraig Brady <P@draigBrady.com>
13 * (c) Copyright 2000-2001 Marek Michalkiewicz <marekm@linux.org.pl>
15 * (c) Copyright 1996 Alan Cox <alan@redhat.com>, All Rights Reserved.
16 * http://www.redhat.com
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version
21 * 2 of the License, or (at your option) any later version.
23 * Neither Marcus Junker nor ANDURAS AG admit liability nor provide
24 * warranty for any of this software. This material is provided
25 * "AS-IS" and at no charge.
28 #include <linux/module.h>
29 #include <linux/moduleparam.h>
30 #include <linux/types.h>
31 #include <linux/miscdevice.h>
32 #include <linux/watchdog.h>
34 #include <linux/ioport.h>
35 #include <linux/notifier.h>
36 #include <linux/reboot.h>
37 #include <linux/init.h>
38 #include <linux/spinlock.h>
41 #include <asm/uaccess.h>
42 #include <asm/system.h>
44 #define WATCHDOG_NAME "w83697hf/hg WDT"
45 #define PFX WATCHDOG_NAME ": "
46 #define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */
47 #define WATCHDOG_EARLY_DISABLE 1 /* Disable until userland kicks in */
49 static unsigned long wdt_is_open
;
50 static char expect_close
;
51 static DEFINE_SPINLOCK(io_lock
);
53 /* You must set this - there is no sane way to probe for this board. */
54 static int wdt_io
= 0x2e;
55 module_param(wdt_io
, int, 0);
56 MODULE_PARM_DESC(wdt_io
, "w83697hf/hg WDT io port (default 0x2e, 0 = autodetect)");
58 static int timeout
= WATCHDOG_TIMEOUT
; /* in seconds */
59 module_param(timeout
, int, 0);
60 MODULE_PARM_DESC(timeout
, "Watchdog timeout in seconds. 1<= timeout <=255 (default=" __MODULE_STRING(WATCHDOG_TIMEOUT
) ")");
62 static int nowayout
= WATCHDOG_NOWAYOUT
;
63 module_param(nowayout
, int, 0);
64 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started (default=" __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
66 static int early_disable
= WATCHDOG_EARLY_DISABLE
;
67 module_param(early_disable
, int, 0);
68 MODULE_PARM_DESC(early_disable
, "Watchdog gets disabled at boot time (default=" __MODULE_STRING(WATCHDOG_EARLY_DISABLE
) ")");
74 #define W83697HF_EFER (wdt_io+0) /* Extended Function Enable Register */
75 #define W83697HF_EFIR (wdt_io+0) /* Extended Function Index Register (same as EFER) */
76 #define W83697HF_EFDR (wdt_io+1) /* Extended Function Data Register */
81 outb_p(0x87, W83697HF_EFER
); /* Enter extended function mode */
82 outb_p(0x87, W83697HF_EFER
); /* Again according to manual */
88 outb_p(0xAA, W83697HF_EFER
); /* Leave extended function mode */
92 * The three functions w83697hf_get_reg(), w83697hf_set_reg() and
93 * w83697hf_write_timeout() must be called with the device unlocked.
97 w83697hf_get_reg(unsigned char reg
)
99 outb_p(reg
, W83697HF_EFIR
);
100 return inb_p(W83697HF_EFDR
);
104 w83697hf_set_reg(unsigned char reg
, unsigned char data
)
106 outb_p(reg
, W83697HF_EFIR
);
107 outb_p(data
, W83697HF_EFDR
);
111 w83697hf_write_timeout(int timeout
)
113 w83697hf_set_reg(0xF4, timeout
); /* Write Timeout counter to CRF4 */
117 w83697hf_select_wdt(void)
120 w83697hf_set_reg(0x07, 0x08); /* Switch to logic device 8 (GPIO2) */
124 w83697hf_deselect_wdt(void)
134 w83697hf_select_wdt();
136 bbuf
= w83697hf_get_reg(0x29);
139 w83697hf_set_reg(0x29, bbuf
); /* Set pin 119 to WDTO# mode (= CR29, WDT0) */
141 bbuf
= w83697hf_get_reg(0xF3);
143 w83697hf_set_reg(0xF3, bbuf
); /* Count mode is seconds */
145 w83697hf_deselect_wdt();
152 w83697hf_select_wdt();
154 w83697hf_write_timeout(timeout
);
156 w83697hf_deselect_wdt();
157 spin_unlock(&io_lock
);
164 w83697hf_select_wdt();
166 w83697hf_write_timeout(timeout
);
167 w83697hf_set_reg(0x30, 1); /* Enable timer */
169 w83697hf_deselect_wdt();
170 spin_unlock(&io_lock
);
177 w83697hf_select_wdt();
179 w83697hf_set_reg(0x30, 0); /* Disable timer */
180 w83697hf_write_timeout(0);
182 w83697hf_deselect_wdt();
183 spin_unlock(&io_lock
);
192 w83697hf_select_wdt();
194 t
= w83697hf_get_reg(0xF4); /* Read timer */
196 w83697hf_deselect_wdt();
197 spin_unlock(&io_lock
);
203 wdt_set_heartbeat(int t
)
205 if ((t
< 1) || (t
> 255))
213 wdt_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*ppos
)
221 for (i
= 0; i
!= count
; i
++) {
223 if (get_user(c
, buf
+i
))
235 wdt_ioctl(struct inode
*inode
, struct file
*file
, unsigned int cmd
,
238 void __user
*argp
= (void __user
*)arg
;
239 int __user
*p
= argp
;
241 static struct watchdog_info ident
= {
242 .options
= WDIOF_KEEPALIVEPING
| WDIOF_SETTIMEOUT
| WDIOF_MAGICCLOSE
,
243 .firmware_version
= 1,
244 .identity
= "W83697HF WDT",
248 case WDIOC_GETSUPPORT
:
249 if (copy_to_user(argp
, &ident
, sizeof(ident
)))
253 case WDIOC_GETSTATUS
:
254 case WDIOC_GETBOOTSTATUS
:
255 return put_user(0, p
);
257 case WDIOC_KEEPALIVE
:
261 case WDIOC_SETTIMEOUT
:
262 if (get_user(new_timeout
, p
))
264 if (wdt_set_heartbeat(new_timeout
))
269 case WDIOC_GETTIMEOUT
:
270 return put_user(timeout
, p
);
272 case WDIOC_SETOPTIONS
:
274 int options
, retval
= -EINVAL
;
276 if (get_user(options
, p
))
279 if (options
& WDIOS_DISABLECARD
) {
284 if (options
& WDIOS_ENABLECARD
) {
299 wdt_open(struct inode
*inode
, struct file
*file
)
301 if (test_and_set_bit(0, &wdt_is_open
))
308 return nonseekable_open(inode
, file
);
312 wdt_close(struct inode
*inode
, struct file
*file
)
314 if (expect_close
== 42) {
317 printk (KERN_CRIT PFX
"Unexpected close, not stopping watchdog!\n");
321 clear_bit(0, &wdt_is_open
);
326 * Notifier for system down
330 wdt_notify_sys(struct notifier_block
*this, unsigned long code
,
333 if (code
== SYS_DOWN
|| code
== SYS_HALT
) {
334 /* Turn the WDT off */
344 static const struct file_operations wdt_fops
= {
345 .owner
= THIS_MODULE
,
350 .release
= wdt_close
,
353 static struct miscdevice wdt_miscdev
= {
354 .minor
= WATCHDOG_MINOR
,
360 * The WDT needs to learn about soft shutdowns in order to
361 * turn the timebomb registers off.
364 static struct notifier_block wdt_notifier
= {
365 .notifier_call
= wdt_notify_sys
,
369 w83697hf_check_wdt(void)
371 if (!request_region(wdt_io
, 2, WATCHDOG_NAME
)) {
372 printk (KERN_ERR PFX
"I/O address 0x%x already in use\n", wdt_io
);
376 printk (KERN_DEBUG PFX
"Looking for watchdog at address 0x%x\n", wdt_io
);
378 if (w83697hf_get_reg(0x20) == 0x60) {
379 printk (KERN_INFO PFX
"watchdog found at address 0x%x\n", wdt_io
);
383 w83697hf_lock(); /* Reprotect in case it was a compatible device */
385 printk (KERN_INFO PFX
"watchdog not found at address 0x%x\n", wdt_io
);
386 release_region(wdt_io
, 2);
390 static int w83697hf_ioports
[] = { 0x2e, 0x4e, 0x00 };
395 int ret
, i
, found
= 0;
397 printk (KERN_INFO PFX
"WDT driver for W83697HF/HG initializing\n");
400 /* we will autodetect the W83697HF/HG watchdog */
401 for (i
= 0; ((!found
) && (w83697hf_ioports
[i
] != 0)); i
++) {
402 wdt_io
= w83697hf_ioports
[i
];
403 if (!w83697hf_check_wdt())
407 if (!w83697hf_check_wdt())
412 printk (KERN_ERR PFX
"No W83697HF/HG could be found\n");
420 printk (KERN_WARNING PFX
"Stopping previously enabled watchdog until userland kicks in\n");
424 if (wdt_set_heartbeat(timeout
)) {
425 wdt_set_heartbeat(WATCHDOG_TIMEOUT
);
426 printk (KERN_INFO PFX
"timeout value must be 1<=timeout<=255, using %d\n",
430 ret
= register_reboot_notifier(&wdt_notifier
);
432 printk (KERN_ERR PFX
"cannot register reboot notifier (err=%d)\n",
437 ret
= misc_register(&wdt_miscdev
);
439 printk (KERN_ERR PFX
"cannot register miscdev on minor=%d (err=%d)\n",
440 WATCHDOG_MINOR
, ret
);
444 printk (KERN_INFO PFX
"initialized. timeout=%d sec (nowayout=%d)\n",
450 unregister_reboot_notifier(&wdt_notifier
);
452 release_region(wdt_io
, 2);
459 misc_deregister(&wdt_miscdev
);
460 unregister_reboot_notifier(&wdt_notifier
);
461 release_region(wdt_io
, 2);
464 module_init(wdt_init
);
465 module_exit(wdt_exit
);
467 MODULE_LICENSE("GPL");
468 MODULE_AUTHOR("Marcus Junker <junker@anduras.de>, Samuel Tardieu <sam@rfc1149.net>");
469 MODULE_DESCRIPTION("w83697hf/hg WDT driver");
470 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);