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@lxorguk.ukuu.org.uk>,
15 * All Rights Reserved.
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@lxorguk.ukuu.org.uk>
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>
40 #include <linux/init.h>
41 #include <linux/spinlock.h>
42 #include <linux/moduleparam.h>
43 #include <linux/platform_device.h>
45 #include <linux/uaccess.h>
47 #include <asm/system.h>
49 static struct platform_device
*ibwdt_platform_device
;
50 static unsigned long ibwdt_is_open
;
51 static DEFINE_SPINLOCK(ibwdt_lock
);
52 static char expect_close
;
54 /* Module information */
55 #define DRV_NAME "ib700wdt"
56 #define PFX DRV_NAME ": "
60 * Watchdog Timer Configuration
62 * The function of the watchdog timer is to reset the system
63 * automatically and is defined at I/O port 0443H. To enable the
64 * watchdog timer and allow the system to reset, write I/O port 0443H.
65 * To disable the timer, write I/O port 0441H for the system to stop the
66 * watchdog function. The timer has a tolerance of 20% for its
69 * The following describes how the timer should be programmed.
72 * MOV AX,000FH (Choose the values from 0 to F)
77 * MOV AX,000FH (Any value is fine.)
81 * Watchdog timer control table:
82 * Level Value Time/sec | Level Value Time/sec
94 static int wd_times
[] = {
113 #define WDT_STOP 0x441
114 #define WDT_START 0x443
116 /* Default timeout */
117 #define WD_TIMO 0 /* 30 seconds +/- 20%, from table */
119 static int wd_margin
= WD_TIMO
;
121 static int nowayout
= WATCHDOG_NOWAYOUT
;
122 module_param(nowayout
, int, 0);
123 MODULE_PARM_DESC(nowayout
,
124 "Watchdog cannot be stopped once started (default="
125 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
129 * Watchdog Operations
132 static void ibwdt_ping(void)
134 spin_lock(&ibwdt_lock
);
136 /* Write a watchdog value */
137 outb_p(wd_margin
, WDT_START
);
139 spin_unlock(&ibwdt_lock
);
142 static void ibwdt_disable(void)
144 spin_lock(&ibwdt_lock
);
146 spin_unlock(&ibwdt_lock
);
149 static int ibwdt_set_heartbeat(int t
)
153 if ((t
< 0) || (t
> 30))
156 for (i
= 0x0F; i
> -1; i
--)
157 if (wd_times
[i
] >= t
)
164 * /dev/watchdog handling
167 static ssize_t
ibwdt_write(struct file
*file
, const char __user
*buf
,
168 size_t count
, loff_t
*ppos
)
174 /* In case it was set long ago */
177 for (i
= 0; i
!= count
; i
++) {
179 if (get_user(c
, buf
+ i
))
190 static long ibwdt_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
193 void __user
*argp
= (void __user
*)arg
;
194 int __user
*p
= argp
;
196 static struct watchdog_info ident
= {
197 .options
= WDIOF_KEEPALIVEPING
| WDIOF_SETTIMEOUT
199 .firmware_version
= 1,
200 .identity
= "IB700 WDT",
204 case WDIOC_GETSUPPORT
:
205 if (copy_to_user(argp
, &ident
, sizeof(ident
)))
209 case WDIOC_GETSTATUS
:
210 case WDIOC_GETBOOTSTATUS
:
211 return put_user(0, p
);
213 case WDIOC_SETOPTIONS
:
215 int options
, retval
= -EINVAL
;
217 if (get_user(options
, p
))
220 if (options
& WDIOS_DISABLECARD
) {
224 if (options
& WDIOS_ENABLECARD
) {
230 case WDIOC_KEEPALIVE
:
234 case WDIOC_SETTIMEOUT
:
235 if (get_user(new_margin
, p
))
237 if (ibwdt_set_heartbeat(new_margin
))
242 case WDIOC_GETTIMEOUT
:
243 return put_user(wd_times
[wd_margin
], p
);
251 static int ibwdt_open(struct inode
*inode
, struct file
*file
)
253 if (test_and_set_bit(0, &ibwdt_is_open
))
256 __module_get(THIS_MODULE
);
260 return nonseekable_open(inode
, file
);
263 static int ibwdt_close(struct inode
*inode
, struct file
*file
)
265 if (expect_close
== 42) {
269 "WDT device closed unexpectedly. WDT will not stop!\n");
272 clear_bit(0, &ibwdt_is_open
);
281 static const struct file_operations ibwdt_fops
= {
282 .owner
= THIS_MODULE
,
284 .write
= ibwdt_write
,
285 .unlocked_ioctl
= ibwdt_ioctl
,
287 .release
= ibwdt_close
,
290 static struct miscdevice ibwdt_miscdev
= {
291 .minor
= WATCHDOG_MINOR
,
297 * Init & exit routines
300 static int __devinit
ibwdt_probe(struct platform_device
*dev
)
304 #if WDT_START != WDT_STOP
305 if (!request_region(WDT_STOP
, 1, "IB700 WDT")) {
306 printk(KERN_ERR PFX
"STOP method I/O %X is not available.\n",
313 if (!request_region(WDT_START
, 1, "IB700 WDT")) {
314 printk(KERN_ERR PFX
"START method I/O %X is not available.\n",
320 res
= misc_register(&ibwdt_miscdev
);
322 printk(KERN_ERR PFX
"failed to register misc device\n");
328 release_region(WDT_START
, 1);
330 #if WDT_START != WDT_STOP
331 release_region(WDT_STOP
, 1);
337 static int __devexit
ibwdt_remove(struct platform_device
*dev
)
339 misc_deregister(&ibwdt_miscdev
);
340 release_region(WDT_START
, 1);
341 #if WDT_START != WDT_STOP
342 release_region(WDT_STOP
, 1);
347 static void ibwdt_shutdown(struct platform_device
*dev
)
349 /* Turn the WDT off if we have a soft shutdown */
353 static struct platform_driver ibwdt_driver
= {
354 .probe
= ibwdt_probe
,
355 .remove
= __devexit_p(ibwdt_remove
),
356 .shutdown
= ibwdt_shutdown
,
358 .owner
= THIS_MODULE
,
363 static int __init
ibwdt_init(void)
368 "WDT driver for IB700 single board computer initialising.\n");
370 err
= platform_driver_register(&ibwdt_driver
);
374 ibwdt_platform_device
= platform_device_register_simple(DRV_NAME
,
376 if (IS_ERR(ibwdt_platform_device
)) {
377 err
= PTR_ERR(ibwdt_platform_device
);
378 goto unreg_platform_driver
;
383 unreg_platform_driver
:
384 platform_driver_unregister(&ibwdt_driver
);
388 static void __exit
ibwdt_exit(void)
390 platform_device_unregister(ibwdt_platform_device
);
391 platform_driver_unregister(&ibwdt_driver
);
392 printk(KERN_INFO PFX
"Watchdog Module Unloaded.\n");
395 module_init(ibwdt_init
);
396 module_exit(ibwdt_exit
);
398 MODULE_AUTHOR("Charles Howes <chowes@vsol.net>");
399 MODULE_DESCRIPTION("IB700 SBC watchdog driver");
400 MODULE_LICENSE("GPL");
401 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);
403 /* end of ib700wdt.c */