2 * IB700 Single Board Computer WDT driver
4 * (c) Copyright 2001 Charles Howes <chowes@vsol.net>
6 * Based on advantechwdt.c which is based on acquirewdt.c which
9 * (c) Copyright 2000-2001 Marek Michalkiewicz <marekm@linux.org.pl>
11 * Based on acquirewdt.c which is based on wdt.c.
12 * Original copyright messages:
14 * (c) Copyright 1996 Alan Cox <alan@redhat.com>, All Rights Reserved.
15 * http://www.redhat.com
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License
19 * as published by the Free Software Foundation; either version
20 * 2 of the License, or (at your option) any later version.
22 * Neither Alan Cox nor CymruNet Ltd. admit liability nor provide
23 * warranty for any of this software. This material is provided
24 * "AS-IS" and at no charge.
26 * (c) Copyright 1995 Alan Cox <alan@redhat.com>
28 * 14-Dec-2001 Matt Domsch <Matt_Domsch@dell.com>
29 * Added nowayout module option to override CONFIG_WATCHDOG_NOWAYOUT
30 * Added timeout module option to override default
34 #include <linux/module.h>
35 #include <linux/types.h>
36 #include <linux/miscdevice.h>
37 #include <linux/watchdog.h>
38 #include <linux/ioport.h>
39 #include <linux/notifier.h>
41 #include <linux/reboot.h>
42 #include <linux/init.h>
43 #include <linux/spinlock.h>
44 #include <linux/moduleparam.h>
45 #include <linux/platform_device.h>
48 #include <asm/uaccess.h>
49 #include <asm/system.h>
51 static struct platform_device *ibwdt_platform_device;
52 static unsigned long ibwdt_is_open;
53 static spinlock_t ibwdt_lock;
54 static char expect_close;
56 /* Module information */
57 #define DRV_NAME "ib700wdt"
58 #define PFX DRV_NAME ": "
62 * Watchdog Timer Configuration
64 * The function of the watchdog timer is to reset the system
65 * automatically and is defined at I/O port 0443H. To enable the
66 * watchdog timer and allow the system to reset, write I/O port 0443H.
67 * To disable the timer, write I/O port 0441H for the system to stop the
68 * watchdog function. The timer has a tolerance of 20% for its
71 * The following describes how the timer should be programmed.
74 * MOV AX,000FH (Choose the values from 0 to F)
79 * MOV AX,000FH (Any value is fine.)
83 * Watchdog timer control table:
84 * Level Value Time/sec | Level Value Time/sec
96 static int wd_times[] = {
115 #define WDT_STOP 0x441
116 #define WDT_START 0x443
118 /* Default timeout */
119 #define WD_TIMO 0 /* 30 seconds +/- 20%, from table */
121 static int wd_margin = WD_TIMO;
123 static int nowayout = WATCHDOG_NOWAYOUT;
124 module_param(nowayout, int, 0);
125 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
129 * Watchdog Operations
135 spin_lock(&ibwdt_lock);
137 /* Write a watchdog value */
138 outb_p(wd_margin, WDT_START);
140 spin_unlock(&ibwdt_lock);
146 spin_lock(&ibwdt_lock);
148 spin_unlock(&ibwdt_lock);
152 ibwdt_set_heartbeat(int t)
156 if ((t < 0) || (t > 30))
159 for (i = 0x0F; i > -1; i--)
167 * /dev/watchdog handling
171 ibwdt_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
177 /* In case it was set long ago */
180 for (i = 0; i != count; i++) {
182 if (get_user(c, buf + i))
194 ibwdt_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
198 void __user *argp = (void __user *)arg;
199 int __user *p = argp;
201 static struct watchdog_info ident = {
202 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE,
203 .firmware_version = 1,
204 .identity = "IB700 WDT",
208 case WDIOC_GETSUPPORT:
209 if (copy_to_user(argp, &ident, sizeof(ident)))
213 case WDIOC_GETSTATUS:
214 case WDIOC_GETBOOTSTATUS:
215 return put_user(0, p);
217 case WDIOC_KEEPALIVE:
221 case WDIOC_SETTIMEOUT:
222 if (get_user(new_margin, p))
224 if (ibwdt_set_heartbeat(new_margin))
229 case WDIOC_GETTIMEOUT:
230 return put_user(wd_times[wd_margin], p);
232 case WDIOC_SETOPTIONS:
234 int options, retval = -EINVAL;
236 if (get_user(options, p))
239 if (options & WDIOS_DISABLECARD) {
244 if (options & WDIOS_ENABLECARD) {
259 ibwdt_open(struct inode *inode, struct file *file)
261 if (test_and_set_bit(0, &ibwdt_is_open)) {
265 __module_get(THIS_MODULE);
269 return nonseekable_open(inode, file);
273 ibwdt_close(struct inode *inode, struct file *file)
275 if (expect_close == 42) {
278 printk(KERN_CRIT PFX "WDT device closed unexpectedly. WDT will not stop!\n");
281 clear_bit(0, &ibwdt_is_open);
287 * Notifier for system down
291 ibwdt_notify_sys(struct notifier_block *this, unsigned long code,
294 if (code == SYS_DOWN || code == SYS_HALT) {
295 /* Turn the WDT off */
305 static const struct file_operations ibwdt_fops = {
306 .owner = THIS_MODULE,
308 .write = ibwdt_write,
309 .ioctl = ibwdt_ioctl,
311 .release = ibwdt_close,
314 static struct miscdevice ibwdt_miscdev = {
315 .minor = WATCHDOG_MINOR,
321 * The WDT needs to learn about soft shutdowns in order to
322 * turn the timebomb registers off.
325 static struct notifier_block ibwdt_notifier = {
326 .notifier_call = ibwdt_notify_sys,
330 * Init & exit routines
333 static int __devinit ibwdt_probe(struct platform_device *dev)
337 spin_lock_init(&ibwdt_lock);
339 #if WDT_START != WDT_STOP
340 if (!request_region(WDT_STOP, 1, "IB700 WDT")) {
341 printk (KERN_ERR PFX "STOP method I/O %X is not available.\n", WDT_STOP);
347 if (!request_region(WDT_START, 1, "IB700 WDT")) {
348 printk (KERN_ERR PFX "START method I/O %X is not available.\n", WDT_START);
353 res = register_reboot_notifier(&ibwdt_notifier);
355 printk (KERN_ERR PFX "Failed to register reboot notifier.\n");
359 res = misc_register(&ibwdt_miscdev);
361 printk (KERN_ERR PFX "failed to register misc device\n");
367 unregister_reboot_notifier(&ibwdt_notifier);
369 release_region(WDT_START, 1);
371 #if WDT_START != WDT_STOP
372 release_region(WDT_STOP, 1);
378 static int __devexit ibwdt_remove(struct platform_device *dev)
380 misc_deregister(&ibwdt_miscdev);
381 unregister_reboot_notifier(&ibwdt_notifier);
382 release_region(WDT_START,1);
383 #if WDT_START != WDT_STOP
384 release_region(WDT_STOP,1);
389 static struct platform_driver ibwdt_driver = {
390 .probe = ibwdt_probe,
391 .remove = __devexit_p(ibwdt_remove),
393 .owner = THIS_MODULE,
398 static int __init ibwdt_init(void)
402 printk(KERN_INFO PFX "WDT driver for IB700 single board computer initialising.\n");
404 err = platform_driver_register(&ibwdt_driver);
408 ibwdt_platform_device = platform_device_register_simple(DRV_NAME, -1, NULL, 0);
409 if (IS_ERR(ibwdt_platform_device)) {
410 err = PTR_ERR(ibwdt_platform_device);
411 goto unreg_platform_driver;
416 unreg_platform_driver:
417 platform_driver_unregister(&ibwdt_driver);
421 static void __exit ibwdt_exit(void)
423 platform_device_unregister(ibwdt_platform_device);
424 platform_driver_unregister(&ibwdt_driver);
425 printk(KERN_INFO PFX "Watchdog Module Unloaded.\n");
428 module_init(ibwdt_init);
429 module_exit(ibwdt_exit);
431 MODULE_AUTHOR("Charles Howes <chowes@vsol.net>");
432 MODULE_DESCRIPTION("IB700 SBC watchdog driver");
433 MODULE_LICENSE("GPL");
434 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
436 /* end of ib700wdt.c */