blob: 528a417856c4f0270d9f9baaa57405fb3dc0199b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Advantech Single Board Computer WDT driver
3 *
4 * (c) Copyright 2000-2001 Marek Michalkiewicz <marekm@linux.org.pl>
5 *
6 * Based on acquirewdt.c which is based on wdt.c.
7 * Original copyright messages:
8 *
9 * (c) Copyright 1996 Alan Cox <alan@redhat.com>, All Rights Reserved.
10 * http://www.redhat.com
11 *
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.
16 *
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.
20 *
21 * (c) Copyright 1995 Alan Cox <alan@redhat.com>
22 *
23 * 14-Dec-2001 Matt Domsch <Matt_Domsch@dell.com>
24 * Added nowayout module option to override CONFIG_WATCHDOG_NOWAYOUT
25 *
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.
29 */
30
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>
36#include <linux/fs.h>
37#include <linux/ioport.h>
38#include <linux/notifier.h>
39#include <linux/reboot.h>
Wim Van Sebroeckc2bd11c2007-01-11 22:35:40 +010040#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/init.h>
42
43#include <asm/io.h>
44#include <asm/uaccess.h>
45#include <asm/system.h>
46
Wim Van Sebroeck1d747be2007-01-11 22:19:28 +010047#define DRV_NAME "advantechwdt"
48#define PFX DRV_NAME ": "
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define WATCHDOG_NAME "Advantech WDT"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */
51
Wim Van Sebroeckc2bd11c2007-01-11 22:35:40 +010052static struct platform_device *advwdt_platform_device; /* the watchdog platform device */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static unsigned long advwdt_is_open;
54static char adv_expect_close;
55
56/*
57 * You must set these - there is no sane way to probe for this board.
58 *
59 * To enable or restart, write the timeout value in seconds (1 to 63)
60 * to I/O port wdt_start. To disable, read I/O port wdt_stop.
61 * Both are 0x443 for most boards (tested on a PCA-6276VE-00B1), but
62 * check your manual (at least the PCA-6159 seems to be different -
63 * the manual says wdt_stop is 0x43, not 0x443).
64 * (0x43 is also a write-only control register for the 8254 timer!)
65 */
66
67static int wdt_stop = 0x443;
68module_param(wdt_stop, int, 0);
69MODULE_PARM_DESC(wdt_stop, "Advantech WDT 'stop' io port (default 0x443)");
70
71static int wdt_start = 0x443;
72module_param(wdt_start, int, 0);
73MODULE_PARM_DESC(wdt_start, "Advantech WDT 'start' io port (default 0x443)");
74
75static int timeout = WATCHDOG_TIMEOUT; /* in seconds */
76module_param(timeout, int, 0);
77MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds. 1<= timeout <=63, default=" __MODULE_STRING(WATCHDOG_TIMEOUT) ".");
78
Andrey Panin4bfdf372005-07-27 11:43:58 -070079static int nowayout = WATCHDOG_NOWAYOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080module_param(nowayout, int, 0);
Wim Van Sebroeck1d747be2007-01-11 22:19:28 +010081MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83/*
Wim Van Sebroeck1d747be2007-01-11 22:19:28 +010084 * Watchdog Operations
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 */
86
87static void
88advwdt_ping(void)
89{
90 /* Write a watchdog value */
91 outb_p(timeout, wdt_start);
92}
93
94static void
95advwdt_disable(void)
96{
97 inb_p(wdt_stop);
98}
99
Wim Van Sebroeck0349a362007-01-11 22:27:51 +0100100static int
101advwdt_set_heartbeat(int t)
102{
103 if ((t < 1) || (t > 63))
104 return -EINVAL;
105
106 timeout = t;
107 return 0;
108}
109
Wim Van Sebroeck1d747be2007-01-11 22:19:28 +0100110/*
111 * /dev/watchdog handling
112 */
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114static ssize_t
115advwdt_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
116{
117 if (count) {
118 if (!nowayout) {
119 size_t i;
120
121 adv_expect_close = 0;
122
123 for (i = 0; i != count; i++) {
124 char c;
125 if (get_user(c, buf+i))
126 return -EFAULT;
127 if (c == 'V')
128 adv_expect_close = 42;
129 }
130 }
131 advwdt_ping();
132 }
133 return count;
134}
135
136static int
137advwdt_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
138 unsigned long arg)
139{
140 int new_timeout;
141 void __user *argp = (void __user *)arg;
142 int __user *p = argp;
143 static struct watchdog_info ident = {
144 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE,
145 .firmware_version = 1,
Wim Van Sebroeck1d747be2007-01-11 22:19:28 +0100146 .identity = WATCHDOG_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 };
148
149 switch (cmd) {
150 case WDIOC_GETSUPPORT:
151 if (copy_to_user(argp, &ident, sizeof(ident)))
152 return -EFAULT;
153 break;
154
155 case WDIOC_GETSTATUS:
156 case WDIOC_GETBOOTSTATUS:
157 return put_user(0, p);
158
159 case WDIOC_KEEPALIVE:
160 advwdt_ping();
161 break;
162
163 case WDIOC_SETTIMEOUT:
164 if (get_user(new_timeout, p))
165 return -EFAULT;
Wim Van Sebroeck0349a362007-01-11 22:27:51 +0100166 if (advwdt_set_heartbeat(new_timeout))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 advwdt_ping();
169 /* Fall */
170
171 case WDIOC_GETTIMEOUT:
172 return put_user(timeout, p);
173
174 case WDIOC_SETOPTIONS:
175 {
176 int options, retval = -EINVAL;
177
178 if (get_user(options, p))
179 return -EFAULT;
180
181 if (options & WDIOS_DISABLECARD) {
182 advwdt_disable();
183 retval = 0;
184 }
185
186 if (options & WDIOS_ENABLECARD) {
187 advwdt_ping();
188 retval = 0;
189 }
190
191 return retval;
192 }
193
194 default:
Samuel Tardieu795b89d2006-09-09 17:34:31 +0200195 return -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197 return 0;
198}
199
200static int
201advwdt_open(struct inode *inode, struct file *file)
202{
203 if (test_and_set_bit(0, &advwdt_is_open))
204 return -EBUSY;
205 /*
206 * Activate
207 */
208
209 advwdt_ping();
210 return nonseekable_open(inode, file);
211}
212
213static int
214advwdt_close(struct inode *inode, struct file *file)
215{
216 if (adv_expect_close == 42) {
217 advwdt_disable();
218 } else {
219 printk(KERN_CRIT PFX "Unexpected close, not stopping watchdog!\n");
220 advwdt_ping();
221 }
222 clear_bit(0, &advwdt_is_open);
223 adv_expect_close = 0;
224 return 0;
225}
226
227/*
228 * Notifier for system down
229 */
230
231static int
232advwdt_notify_sys(struct notifier_block *this, unsigned long code,
233 void *unused)
234{
235 if (code == SYS_DOWN || code == SYS_HALT) {
236 /* Turn the WDT off */
237 advwdt_disable();
238 }
239 return NOTIFY_DONE;
240}
241
242/*
243 * Kernel Interfaces
244 */
245
Arjan van de Ven62322d22006-07-03 00:24:21 -0700246static const struct file_operations advwdt_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 .owner = THIS_MODULE,
248 .llseek = no_llseek,
249 .write = advwdt_write,
250 .ioctl = advwdt_ioctl,
251 .open = advwdt_open,
252 .release = advwdt_close,
253};
254
255static struct miscdevice advwdt_miscdev = {
Wim Van Sebroeck1d747be2007-01-11 22:19:28 +0100256 .minor = WATCHDOG_MINOR,
257 .name = "watchdog",
258 .fops = &advwdt_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259};
260
261/*
262 * The WDT needs to learn about soft shutdowns in order to
263 * turn the timebomb registers off.
264 */
265
266static struct notifier_block advwdt_notifier = {
267 .notifier_call = advwdt_notify_sys,
268};
269
Wim Van Sebroeck1d747be2007-01-11 22:19:28 +0100270/*
271 * Init & exit routines
272 */
273
Wim Van Sebroeckc2bd11c2007-01-11 22:35:40 +0100274static int __devinit
275advwdt_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 int ret;
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (wdt_stop != wdt_start) {
280 if (!request_region(wdt_stop, 1, WATCHDOG_NAME)) {
281 printk (KERN_ERR PFX "I/O address 0x%04x already in use\n",
282 wdt_stop);
283 ret = -EIO;
284 goto out;
285 }
286 }
287
288 if (!request_region(wdt_start, 1, WATCHDOG_NAME)) {
289 printk (KERN_ERR PFX "I/O address 0x%04x already in use\n",
290 wdt_start);
291 ret = -EIO;
292 goto unreg_stop;
293 }
294
Wim Van Sebroeck0349a362007-01-11 22:27:51 +0100295 /* Check that the heartbeat value is within it's range ; if not reset to the default */
296 if (advwdt_set_heartbeat(timeout)) {
297 advwdt_set_heartbeat(WATCHDOG_TIMEOUT);
298 printk (KERN_INFO PFX "timeout value must be 1<=x<=63, using %d\n",
299 timeout);
300 }
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 ret = register_reboot_notifier(&advwdt_notifier);
303 if (ret != 0) {
304 printk (KERN_ERR PFX "cannot register reboot notifier (err=%d)\n",
305 ret);
306 goto unreg_regions;
307 }
308
309 ret = misc_register(&advwdt_miscdev);
310 if (ret != 0) {
311 printk (KERN_ERR PFX "cannot register miscdev on minor=%d (err=%d)\n",
312 WATCHDOG_MINOR, ret);
313 goto unreg_reboot;
314 }
315
316 printk (KERN_INFO PFX "initialized. timeout=%d sec (nowayout=%d)\n",
317 timeout, nowayout);
318
319out:
320 return ret;
321unreg_reboot:
322 unregister_reboot_notifier(&advwdt_notifier);
323unreg_regions:
324 release_region(wdt_start, 1);
325unreg_stop:
326 if (wdt_stop != wdt_start)
327 release_region(wdt_stop, 1);
328 goto out;
329}
330
Wim Van Sebroeckc2bd11c2007-01-11 22:35:40 +0100331static int __devexit
332advwdt_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 misc_deregister(&advwdt_miscdev);
335 unregister_reboot_notifier(&advwdt_notifier);
Wim Van Sebroeck1d747be2007-01-11 22:19:28 +0100336 release_region(wdt_start,1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if(wdt_stop != wdt_start)
338 release_region(wdt_stop,1);
Wim Van Sebroeckc2bd11c2007-01-11 22:35:40 +0100339
340 return 0;
341}
342
343static struct platform_driver advwdt_driver = {
344 .probe = advwdt_probe,
345 .remove = __devexit_p(advwdt_remove),
346 .driver = {
347 .owner = THIS_MODULE,
348 .name = DRV_NAME,
349 },
350};
351
352static int __init
353advwdt_init(void)
354{
355 int err;
356
357 printk(KERN_INFO "WDT driver for Advantech single board computer initialising.\n");
358
359 err = platform_driver_register(&advwdt_driver);
360 if (err)
361 return err;
362
363 advwdt_platform_device = platform_device_register_simple(DRV_NAME, -1, NULL, 0);
364 if (IS_ERR(advwdt_platform_device)) {
365 err = PTR_ERR(advwdt_platform_device);
366 goto unreg_platform_driver;
367 }
368
369 return 0;
370
371unreg_platform_driver:
372 platform_driver_unregister(&advwdt_driver);
373 return err;
374}
375
376static void __exit
377advwdt_exit(void)
378{
379 platform_device_unregister(advwdt_platform_device);
380 platform_driver_unregister(&advwdt_driver);
381 printk(KERN_INFO PFX "Watchdog Module Unloaded.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
384module_init(advwdt_init);
385module_exit(advwdt_exit);
386
387MODULE_LICENSE("GPL");
388MODULE_AUTHOR("Marek Michalkiewicz <marekm@linux.org.pl>");
389MODULE_DESCRIPTION("Advantech Single Board Computer WDT driver");
390MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);