2 * Advantech Single Board Computer WDT driver
4 * (c) Copyright 2000-2001 Marek Michalkiewicz <marekm@linux.org.pl>
6 * Based on acquirewdt.c which is based on wdt.c.
7 * Original copyright messages:
9 * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>,
10 * All Rights Reserved.
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
17 * Neither Alan Cox nor CymruNet Ltd. admit liability nor provide
18 * warranty for any of this software. This material is provided
19 * "AS-IS" and at no charge.
21 * (c) Copyright 1995 Alan Cox <alan@lxorguk.ukuu.org.uk>
23 * 14-Dec-2001 Matt Domsch <Matt_Domsch@dell.com>
24 * Added nowayout module option to override CONFIG_WATCHDOG_NOWAYOUT
26 * 16-Oct-2002 Rob Radez <rob@osinvestor.com>
27 * Clean up ioctls, clean up init + exit, add expect close support,
28 * add wdt_start and wdt_stop as parameters.
31 #include <linux/module.h>
32 #include <linux/moduleparam.h>
33 #include <linux/types.h>
34 #include <linux/miscdevice.h>
35 #include <linux/watchdog.h>
37 #include <linux/ioport.h>
38 #include <linux/platform_device.h>
39 #include <linux/init.h>
41 #include <linux/uaccess.h>
43 #include <asm/system.h>
45 #define DRV_NAME "advantechwdt"
46 #define PFX DRV_NAME ": "
47 #define WATCHDOG_NAME "Advantech WDT"
48 #define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */
50 /* the watchdog platform device */
51 static struct platform_device
*advwdt_platform_device
;
52 static unsigned long advwdt_is_open
;
53 static char adv_expect_close
;
56 * You must set these - there is no sane way to probe for this board.
58 * To enable or restart, write the timeout value in seconds (1 to 63)
59 * to I/O port wdt_start. To disable, read I/O port wdt_stop.
60 * Both are 0x443 for most boards (tested on a PCA-6276VE-00B1), but
61 * check your manual (at least the PCA-6159 seems to be different -
62 * the manual says wdt_stop is 0x43, not 0x443).
63 * (0x43 is also a write-only control register for the 8254 timer!)
66 static int wdt_stop
= 0x443;
67 module_param(wdt_stop
, int, 0);
68 MODULE_PARM_DESC(wdt_stop
, "Advantech WDT 'stop' io port (default 0x443)");
70 static int wdt_start
= 0x443;
71 module_param(wdt_start
, int, 0);
72 MODULE_PARM_DESC(wdt_start
, "Advantech WDT 'start' io port (default 0x443)");
74 static int timeout
= WATCHDOG_TIMEOUT
; /* in seconds */
75 module_param(timeout
, int, 0);
76 MODULE_PARM_DESC(timeout
,
77 "Watchdog timeout in seconds. 1<= timeout <=63, default="
78 __MODULE_STRING(WATCHDOG_TIMEOUT
) ".");
80 static int nowayout
= WATCHDOG_NOWAYOUT
;
81 module_param(nowayout
, int, 0);
82 MODULE_PARM_DESC(nowayout
,
83 "Watchdog cannot be stopped once started (default="
84 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
90 static void advwdt_ping(void)
92 /* Write a watchdog value */
93 outb_p(timeout
, wdt_start
);
96 static void advwdt_disable(void)
101 static int advwdt_set_heartbeat(int t
)
110 * /dev/watchdog handling
113 static ssize_t
advwdt_write(struct file
*file
, const char __user
*buf
,
114 size_t count
, loff_t
*ppos
)
120 adv_expect_close
= 0;
122 for (i
= 0; i
!= count
; i
++) {
124 if (get_user(c
, buf
+ i
))
127 adv_expect_close
= 42;
135 static long advwdt_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
138 void __user
*argp
= (void __user
*)arg
;
139 int __user
*p
= argp
;
140 static struct watchdog_info ident
= {
141 .options
= WDIOF_KEEPALIVEPING
|
144 .firmware_version
= 1,
145 .identity
= WATCHDOG_NAME
,
149 case WDIOC_GETSUPPORT
:
150 if (copy_to_user(argp
, &ident
, sizeof(ident
)))
154 case WDIOC_GETSTATUS
:
155 case WDIOC_GETBOOTSTATUS
:
156 return put_user(0, p
);
158 case WDIOC_SETOPTIONS
:
160 int options
, retval
= -EINVAL
;
162 if (get_user(options
, p
))
164 if (options
& WDIOS_DISABLECARD
) {
168 if (options
& WDIOS_ENABLECARD
) {
174 case WDIOC_KEEPALIVE
:
178 case WDIOC_SETTIMEOUT
:
179 if (get_user(new_timeout
, p
))
181 if (advwdt_set_heartbeat(new_timeout
))
185 case WDIOC_GETTIMEOUT
:
186 return put_user(timeout
, p
);
193 static int advwdt_open(struct inode
*inode
, struct file
*file
)
195 if (test_and_set_bit(0, &advwdt_is_open
))
202 return nonseekable_open(inode
, file
);
205 static int advwdt_close(struct inode
*inode
, struct file
*file
)
207 if (adv_expect_close
== 42) {
211 "Unexpected close, not stopping watchdog!\n");
214 clear_bit(0, &advwdt_is_open
);
215 adv_expect_close
= 0;
223 static const struct file_operations advwdt_fops
= {
224 .owner
= THIS_MODULE
,
226 .write
= advwdt_write
,
227 .unlocked_ioctl
= advwdt_ioctl
,
229 .release
= advwdt_close
,
232 static struct miscdevice advwdt_miscdev
= {
233 .minor
= WATCHDOG_MINOR
,
235 .fops
= &advwdt_fops
,
239 * Init & exit routines
242 static int __devinit
advwdt_probe(struct platform_device
*dev
)
246 if (wdt_stop
!= wdt_start
) {
247 if (!request_region(wdt_stop
, 1, WATCHDOG_NAME
)) {
249 "I/O address 0x%04x already in use\n",
256 if (!request_region(wdt_start
, 1, WATCHDOG_NAME
)) {
258 "I/O address 0x%04x already in use\n",
264 /* Check that the heartbeat value is within it's range ;
265 * if not reset to the default */
266 if (advwdt_set_heartbeat(timeout
)) {
267 advwdt_set_heartbeat(WATCHDOG_TIMEOUT
);
269 "timeout value must be 1<=x<=63, using %d\n", timeout
);
272 ret
= misc_register(&advwdt_miscdev
);
275 "cannot register miscdev on minor=%d (err=%d)\n",
276 WATCHDOG_MINOR
, ret
);
279 printk(KERN_INFO PFX
"initialized. timeout=%d sec (nowayout=%d)\n",
284 release_region(wdt_start
, 1);
286 if (wdt_stop
!= wdt_start
)
287 release_region(wdt_stop
, 1);
291 static int __devexit
advwdt_remove(struct platform_device
*dev
)
293 misc_deregister(&advwdt_miscdev
);
294 release_region(wdt_start
, 1);
295 if (wdt_stop
!= wdt_start
)
296 release_region(wdt_stop
, 1);
301 static void advwdt_shutdown(struct platform_device
*dev
)
303 /* Turn the WDT off if we have a soft shutdown */
307 static struct platform_driver advwdt_driver
= {
308 .probe
= advwdt_probe
,
309 .remove
= __devexit_p(advwdt_remove
),
310 .shutdown
= advwdt_shutdown
,
312 .owner
= THIS_MODULE
,
317 static int __init
advwdt_init(void)
322 "WDT driver for Advantech single board computer initialising.\n");
324 err
= platform_driver_register(&advwdt_driver
);
328 advwdt_platform_device
= platform_device_register_simple(DRV_NAME
,
330 if (IS_ERR(advwdt_platform_device
)) {
331 err
= PTR_ERR(advwdt_platform_device
);
332 goto unreg_platform_driver
;
337 unreg_platform_driver
:
338 platform_driver_unregister(&advwdt_driver
);
342 static void __exit
advwdt_exit(void)
344 platform_device_unregister(advwdt_platform_device
);
345 platform_driver_unregister(&advwdt_driver
);
346 printk(KERN_INFO PFX
"Watchdog Module Unloaded.\n");
349 module_init(advwdt_init
);
350 module_exit(advwdt_exit
);
352 MODULE_LICENSE("GPL");
353 MODULE_AUTHOR("Marek Michalkiewicz <marekm@linux.org.pl>");
354 MODULE_DESCRIPTION("Advantech Single Board Computer WDT driver");
355 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);