2 * W83877F Computer Watchdog Timer driver
4 * Based on acquirewdt.c by Alan Cox,
5 * and sbc60xxwdt.c by Jakob Oestergaard <jakob@unthought.net>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
12 * The authors do NOT admit liability nor provide warranty for
13 * any of this software. This material is provided "AS-IS" in
14 * the hope that it may be useful for others.
16 * (c) Copyright 2001 Scott Jennings <linuxdrivers@oro.net>
18 * 4/19 - 2001 [Initial revision]
19 * 9/27 - 2001 Added spinlocking
20 * 4/12 - 2002 [rob@osinvestor.com] Eliminate extra comments
22 * Eliminate extra spin_unlock
23 * Added KERN_* tags to printks
24 * add CONFIG_WATCHDOG_NOWAYOUT support
25 * fix possible wdt_is_open race
26 * changed watchdog_info to correctly reflect what
28 * added WDIOC_GETSTATUS, WDIOC_GETBOOTSTATUS,
30 * WDIOC_GETTIMEOUT, and WDIOC_SETOPTIONS ioctls
31 * 09/8 - 2003 [wim@iguana.be] cleanup of trailing spaces
32 * added extra printk's for startup problems
34 * made timeout (the emulated heartbeat) a
36 * made the keepalive ping an internal subroutine
38 * This WDT driver is different from most other Linux WDT
39 * drivers in that the driver will ping the watchdog by itself,
40 * because this particular WDT has a very short timeout (1.6
41 * seconds) and it would be insane to count on any userspace
42 * daemon always getting scheduled within that time frame.
45 #include <linux/module.h>
46 #include <linux/moduleparam.h>
47 #include <linux/types.h>
48 #include <linux/timer.h>
49 #include <linux/jiffies.h>
50 #include <linux/miscdevice.h>
51 #include <linux/watchdog.h>
53 #include <linux/ioport.h>
54 #include <linux/notifier.h>
55 #include <linux/reboot.h>
56 #include <linux/init.h>
58 #include <linux/uaccess.h>
59 #include <asm/system.h>
61 #define OUR_NAME "w83877f_wdt"
62 #define PFX OUR_NAME ": "
64 #define ENABLE_W83877F_PORT 0x3F0
65 #define ENABLE_W83877F 0x87
66 #define DISABLE_W83877F 0xAA
67 #define WDT_PING 0x443
68 #define WDT_REGISTER 0x14
69 #define WDT_ENABLE 0x9C
70 #define WDT_DISABLE 0x8C
73 * The W83877F seems to be fixed at 1.6s timeout (at least on the
74 * EMACS PC-104 board I'm using). If we reset the watchdog every
75 * ~250ms we should be safe. */
77 #define WDT_INTERVAL (HZ/4+1)
80 * We must not require too good response from the userspace daemon.
81 * Here we require the userspace daemon to send us a heartbeat
82 * char to /dev/watchdog every 30 seconds.
85 #define WATCHDOG_TIMEOUT 30 /* 30 sec default timeout */
86 /* in seconds, will be multiplied by HZ to get seconds to wait for a ping */
87 static int timeout = WATCHDOG_TIMEOUT;
88 module_param(timeout, int, 0);
89 MODULE_PARM_DESC(timeout,
90 "Watchdog timeout in seconds. (1<=timeout<=3600, default="
91 __MODULE_STRING(WATCHDOG_TIMEOUT) ")");
94 static int nowayout = WATCHDOG_NOWAYOUT;
95 module_param(nowayout, int, 0);
96 MODULE_PARM_DESC(nowayout,
97 "Watchdog cannot be stopped once started (default="
98 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
100 static void wdt_timer_ping(unsigned long);
101 static DEFINE_TIMER(timer, wdt_timer_ping, 0, 0);
102 static unsigned long next_heartbeat;
103 static unsigned long wdt_is_open;
104 static char wdt_expect_close;
105 static DEFINE_SPINLOCK(wdt_spinlock);
111 static void wdt_timer_ping(unsigned long data)
113 /* If we got a heartbeat pulse within the WDT_US_INTERVAL
114 * we agree to ping the WDT
116 if (time_before(jiffies, next_heartbeat)) {
118 spin_lock(&wdt_spinlock);
120 /* Ping the WDT by reading from WDT_PING */
123 /* Re-set the timer interval */
124 mod_timer(&timer, jiffies + WDT_INTERVAL);
126 spin_unlock(&wdt_spinlock);
129 printk(KERN_WARNING PFX
130 "Heartbeat lost! Will not ping the watchdog\n");
137 static void wdt_change(int writeval)
140 spin_lock_irqsave(&wdt_spinlock, flags);
145 /* make W83877F available */
146 outb_p(ENABLE_W83877F, ENABLE_W83877F_PORT);
147 outb_p(ENABLE_W83877F, ENABLE_W83877F_PORT);
149 /* enable watchdog */
150 outb_p(WDT_REGISTER, ENABLE_W83877F_PORT);
151 outb_p(writeval, ENABLE_W83877F_PORT+1);
153 /* lock the W8387FF away */
154 outb_p(DISABLE_W83877F, ENABLE_W83877F_PORT);
156 spin_unlock_irqrestore(&wdt_spinlock, flags);
159 static void wdt_startup(void)
161 next_heartbeat = jiffies + (timeout * HZ);
163 /* Start the timer */
164 mod_timer(&timer, jiffies + WDT_INTERVAL);
166 wdt_change(WDT_ENABLE);
168 printk(KERN_INFO PFX "Watchdog timer is now enabled.\n");
171 static void wdt_turnoff(void)
176 wdt_change(WDT_DISABLE);
178 printk(KERN_INFO PFX "Watchdog timer is now disabled...\n");
181 static void wdt_keepalive(void)
184 next_heartbeat = jiffies + (timeout * HZ);
188 * /dev/watchdog handling
191 static ssize_t fop_write(struct file *file, const char __user *buf,
192 size_t count, loff_t *ppos)
194 /* See if we got the magic character 'V' and reload the timer */
199 /* note: just in case someone wrote the magic
200 character five months ago... */
201 wdt_expect_close = 0;
203 /* scan to see whether or not we got the
205 for (ofs = 0; ofs != count; ofs++) {
207 if (get_user(c, buf + ofs))
210 wdt_expect_close = 42;
214 /* someone wrote to us, we should restart timer */
220 static int fop_open(struct inode *inode, struct file *file)
222 /* Just in case we're already talking to someone... */
223 if (test_and_set_bit(0, &wdt_is_open))
226 /* Good, fire up the show */
228 return nonseekable_open(inode, file);
231 static int fop_close(struct inode *inode, struct file *file)
233 if (wdt_expect_close == 42)
238 "device file closed unexpectedly. Will not stop the WDT!\n");
240 clear_bit(0, &wdt_is_open);
241 wdt_expect_close = 0;
245 static long fop_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
247 void __user *argp = (void __user *)arg;
248 int __user *p = argp;
249 static const struct watchdog_info ident = {
250 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT
252 .firmware_version = 1,
253 .identity = "W83877F",
257 case WDIOC_GETSUPPORT:
258 return copy_to_user(argp, &ident, sizeof(ident)) ? -EFAULT : 0;
259 case WDIOC_GETSTATUS:
260 case WDIOC_GETBOOTSTATUS:
261 return put_user(0, p);
262 case WDIOC_SETOPTIONS:
264 int new_options, retval = -EINVAL;
266 if (get_user(new_options, p))
269 if (new_options & WDIOS_DISABLECARD) {
274 if (new_options & WDIOS_ENABLECARD) {
281 case WDIOC_KEEPALIVE:
284 case WDIOC_SETTIMEOUT:
288 if (get_user(new_timeout, p))
291 /* arbitrary upper limit */
292 if (new_timeout < 1 || new_timeout > 3600)
295 timeout = new_timeout;
299 case WDIOC_GETTIMEOUT:
300 return put_user(timeout, p);
306 static const struct file_operations wdt_fops = {
307 .owner = THIS_MODULE,
311 .release = fop_close,
312 .unlocked_ioctl = fop_ioctl,
315 static struct miscdevice wdt_miscdev = {
316 .minor = WATCHDOG_MINOR,
322 * Notifier for system down
325 static int wdt_notify_sys(struct notifier_block *this, unsigned long code,
328 if (code == SYS_DOWN || code == SYS_HALT)
334 * The WDT needs to learn about soft shutdowns in order to
335 * turn the timebomb registers off.
338 static struct notifier_block wdt_notifier = {
339 .notifier_call = wdt_notify_sys,
342 static void __exit w83877f_wdt_unload(void)
347 misc_deregister(&wdt_miscdev);
349 unregister_reboot_notifier(&wdt_notifier);
350 release_region(WDT_PING, 1);
351 release_region(ENABLE_W83877F_PORT, 2);
354 static int __init w83877f_wdt_init(void)
358 if (timeout < 1 || timeout > 3600) { /* arbitrary upper limit */
359 timeout = WATCHDOG_TIMEOUT;
361 "timeout value must be 1 <= x <= 3600, using %d\n",
365 if (!request_region(ENABLE_W83877F_PORT, 2, "W83877F WDT")) {
366 printk(KERN_ERR PFX "I/O address 0x%04x already in use\n",
367 ENABLE_W83877F_PORT);
372 if (!request_region(WDT_PING, 1, "W8387FF WDT")) {
373 printk(KERN_ERR PFX "I/O address 0x%04x already in use\n",
376 goto err_out_region1;
379 rc = register_reboot_notifier(&wdt_notifier);
382 "cannot register reboot notifier (err=%d)\n", rc);
383 goto err_out_region2;
386 rc = misc_register(&wdt_miscdev);
389 "cannot register miscdev on minor=%d (err=%d)\n",
390 wdt_miscdev.minor, rc);
395 "WDT driver for W83877F initialised. timeout=%d sec (nowayout=%d)\n",
401 unregister_reboot_notifier(&wdt_notifier);
403 release_region(WDT_PING, 1);
405 release_region(ENABLE_W83877F_PORT, 2);
410 module_init(w83877f_wdt_init);
411 module_exit(w83877f_wdt_unload);
413 MODULE_AUTHOR("Scott and Bill Jennings");
414 MODULE_DESCRIPTION("Driver for watchdog timer in w83877f chip");
415 MODULE_LICENSE("GPL");
416 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);