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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
36 #include <linux/module.h>
37 #include <linux/types.h>
38 #include <linux/miscdevice.h>
39 #include <linux/watchdog.h>
40 #include <linux/ioport.h>
42 #include <linux/init.h>
43 #include <linux/spinlock.h>
44 #include <linux/moduleparam.h>
45 #include <linux/platform_device.h>
47 #include <linux/uaccess.h>
50 static struct platform_device
*ibwdt_platform_device
;
51 static unsigned long ibwdt_is_open
;
52 static DEFINE_SPINLOCK(ibwdt_lock
);
53 static char expect_close
;
55 /* Module information */
56 #define DRV_NAME "ib700wdt"
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 #define WDT_STOP 0x441
95 #define WDT_START 0x443
98 #define WATCHDOG_TIMEOUT 30 /* 30 seconds +/- 20% */
99 static int timeout
= WATCHDOG_TIMEOUT
; /* in seconds */
100 module_param(timeout
, int, 0);
101 MODULE_PARM_DESC(timeout
,
102 "Watchdog timeout in seconds. 0<= timeout <=30, default="
103 __MODULE_STRING(WATCHDOG_TIMEOUT
) ".");
105 static bool nowayout
= WATCHDOG_NOWAYOUT
;
106 module_param(nowayout
, bool, 0);
107 MODULE_PARM_DESC(nowayout
,
108 "Watchdog cannot be stopped once started (default="
109 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
113 * Watchdog Operations
116 static void ibwdt_ping(void)
118 int wd_margin
= 15 - ((timeout
+ 1) / 2);
120 spin_lock(&ibwdt_lock
);
122 /* Write a watchdog value */
123 outb_p(wd_margin
, WDT_START
);
125 spin_unlock(&ibwdt_lock
);
128 static void ibwdt_disable(void)
130 spin_lock(&ibwdt_lock
);
132 spin_unlock(&ibwdt_lock
);
135 static int ibwdt_set_heartbeat(int t
)
145 * /dev/watchdog handling
148 static ssize_t
ibwdt_write(struct file
*file
, const char __user
*buf
,
149 size_t count
, loff_t
*ppos
)
155 /* In case it was set long ago */
158 for (i
= 0; i
!= count
; i
++) {
160 if (get_user(c
, buf
+ i
))
171 static long ibwdt_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
174 void __user
*argp
= (void __user
*)arg
;
175 int __user
*p
= argp
;
177 static const struct watchdog_info ident
= {
178 .options
= WDIOF_KEEPALIVEPING
| WDIOF_SETTIMEOUT
180 .firmware_version
= 1,
181 .identity
= "IB700 WDT",
185 case WDIOC_GETSUPPORT
:
186 if (copy_to_user(argp
, &ident
, sizeof(ident
)))
190 case WDIOC_GETSTATUS
:
191 case WDIOC_GETBOOTSTATUS
:
192 return put_user(0, p
);
194 case WDIOC_SETOPTIONS
:
196 int options
, retval
= -EINVAL
;
198 if (get_user(options
, p
))
201 if (options
& WDIOS_DISABLECARD
) {
205 if (options
& WDIOS_ENABLECARD
) {
211 case WDIOC_KEEPALIVE
:
215 case WDIOC_SETTIMEOUT
:
216 if (get_user(new_margin
, p
))
218 if (ibwdt_set_heartbeat(new_margin
))
223 case WDIOC_GETTIMEOUT
:
224 return put_user(timeout
, p
);
232 static int ibwdt_open(struct inode
*inode
, struct file
*file
)
234 if (test_and_set_bit(0, &ibwdt_is_open
))
237 __module_get(THIS_MODULE
);
241 return nonseekable_open(inode
, file
);
244 static int ibwdt_close(struct inode
*inode
, struct file
*file
)
246 if (expect_close
== 42) {
249 pr_crit("WDT device closed unexpectedly. WDT will not stop!\n");
252 clear_bit(0, &ibwdt_is_open
);
261 static const struct file_operations ibwdt_fops
= {
262 .owner
= THIS_MODULE
,
264 .write
= ibwdt_write
,
265 .unlocked_ioctl
= ibwdt_ioctl
,
267 .release
= ibwdt_close
,
270 static struct miscdevice ibwdt_miscdev
= {
271 .minor
= WATCHDOG_MINOR
,
277 * Init & exit routines
280 static int ibwdt_probe(struct platform_device
*dev
)
284 #if WDT_START != WDT_STOP
285 if (!request_region(WDT_STOP
, 1, "IB700 WDT")) {
286 pr_err("STOP method I/O %X is not available\n", WDT_STOP
);
292 if (!request_region(WDT_START
, 1, "IB700 WDT")) {
293 pr_err("START method I/O %X is not available\n", WDT_START
);
298 /* Check that the heartbeat value is within it's range ;
299 * if not reset to the default */
300 if (ibwdt_set_heartbeat(timeout
)) {
301 ibwdt_set_heartbeat(WATCHDOG_TIMEOUT
);
302 pr_info("timeout value must be 0<=x<=30, using %d\n", timeout
);
305 res
= misc_register(&ibwdt_miscdev
);
307 pr_err("failed to register misc device\n");
313 release_region(WDT_START
, 1);
315 #if WDT_START != WDT_STOP
316 release_region(WDT_STOP
, 1);
322 static int ibwdt_remove(struct platform_device
*dev
)
324 misc_deregister(&ibwdt_miscdev
);
325 release_region(WDT_START
, 1);
326 #if WDT_START != WDT_STOP
327 release_region(WDT_STOP
, 1);
332 static void ibwdt_shutdown(struct platform_device
*dev
)
334 /* Turn the WDT off if we have a soft shutdown */
338 static struct platform_driver ibwdt_driver
= {
339 .probe
= ibwdt_probe
,
340 .remove
= ibwdt_remove
,
341 .shutdown
= ibwdt_shutdown
,
343 .owner
= THIS_MODULE
,
348 static int __init
ibwdt_init(void)
352 pr_info("WDT driver for IB700 single board computer initialising\n");
354 err
= platform_driver_register(&ibwdt_driver
);
358 ibwdt_platform_device
= platform_device_register_simple(DRV_NAME
,
360 if (IS_ERR(ibwdt_platform_device
)) {
361 err
= PTR_ERR(ibwdt_platform_device
);
362 goto unreg_platform_driver
;
367 unreg_platform_driver
:
368 platform_driver_unregister(&ibwdt_driver
);
372 static void __exit
ibwdt_exit(void)
374 platform_device_unregister(ibwdt_platform_device
);
375 platform_driver_unregister(&ibwdt_driver
);
376 pr_info("Watchdog Module Unloaded\n");
379 module_init(ibwdt_init
);
380 module_exit(ibwdt_exit
);
382 MODULE_AUTHOR("Charles Howes <chowes@vsol.net>");
383 MODULE_DESCRIPTION("IB700 SBC watchdog driver");
384 MODULE_LICENSE("GPL");
385 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);
387 /* end of ib700wdt.c */