blob: bfec16600475c906ed9a408c719598c0430ecb9b [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>
Wim Van Sebroeckc2bd11c2007-01-11 22:35:40 +010038#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/init.h>
Wim Van Sebroeck089ab072008-07-15 11:46:11 +000040#include <linux/io.h>
41#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/system.h>
44
Wim Van Sebroeck1d747be2007-01-11 22:19:28 +010045#define DRV_NAME "advantechwdt"
46#define PFX DRV_NAME ": "
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define WATCHDOG_NAME "Advantech WDT"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */
49
Wim Van Sebroeckc2bd11c2007-01-11 22:35:40 +010050static struct platform_device *advwdt_platform_device; /* the watchdog platform device */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051static unsigned long advwdt_is_open;
52static char adv_expect_close;
53
54/*
55 * You must set these - there is no sane way to probe for this board.
56 *
57 * To enable or restart, write the timeout value in seconds (1 to 63)
58 * to I/O port wdt_start. To disable, read I/O port wdt_stop.
59 * Both are 0x443 for most boards (tested on a PCA-6276VE-00B1), but
60 * check your manual (at least the PCA-6159 seems to be different -
61 * the manual says wdt_stop is 0x43, not 0x443).
62 * (0x43 is also a write-only control register for the 8254 timer!)
63 */
64
65static int wdt_stop = 0x443;
66module_param(wdt_stop, int, 0);
67MODULE_PARM_DESC(wdt_stop, "Advantech WDT 'stop' io port (default 0x443)");
68
69static int wdt_start = 0x443;
70module_param(wdt_start, int, 0);
71MODULE_PARM_DESC(wdt_start, "Advantech WDT 'start' io port (default 0x443)");
72
73static int timeout = WATCHDOG_TIMEOUT; /* in seconds */
74module_param(timeout, int, 0);
Alan Coxb6b4d9b2008-05-19 14:04:51 +010075MODULE_PARM_DESC(timeout,
76 "Watchdog timeout in seconds. 1<= timeout <=63, default="
77 __MODULE_STRING(WATCHDOG_TIMEOUT) ".");
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Andrey Panin4bfdf372005-07-27 11:43:58 -070079static int nowayout = WATCHDOG_NOWAYOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080module_param(nowayout, int, 0);
Alan Coxb6b4d9b2008-05-19 14:04:51 +010081MODULE_PARM_DESC(nowayout,
82 "Watchdog cannot be stopped once started (default="
83 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85/*
Wim Van Sebroeck1d747be2007-01-11 22:19:28 +010086 * Watchdog Operations
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 */
88
Alan Coxb6b4d9b2008-05-19 14:04:51 +010089static void advwdt_ping(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 /* Write a watchdog value */
92 outb_p(timeout, wdt_start);
93}
94
Alan Coxb6b4d9b2008-05-19 14:04:51 +010095static void advwdt_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
97 inb_p(wdt_stop);
98}
99
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100100static int advwdt_set_heartbeat(int t)
Wim Van Sebroeck0349a362007-01-11 22:27:51 +0100101{
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100102 if (t < 1 || t > 63)
Wim Van Sebroeck0349a362007-01-11 22:27:51 +0100103 return -EINVAL;
Wim Van Sebroeck0349a362007-01-11 22:27:51 +0100104 timeout = t;
105 return 0;
106}
107
Wim Van Sebroeck1d747be2007-01-11 22:19:28 +0100108/*
109 * /dev/watchdog handling
110 */
111
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100112static ssize_t advwdt_write(struct file *file, const char __user *buf,
113 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 if (count) {
116 if (!nowayout) {
117 size_t i;
118
119 adv_expect_close = 0;
120
121 for (i = 0; i != count; i++) {
122 char c;
123 if (get_user(c, buf+i))
124 return -EFAULT;
125 if (c == 'V')
126 adv_expect_close = 42;
127 }
128 }
129 advwdt_ping();
130 }
131 return count;
132}
133
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100134static long advwdt_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 int new_timeout;
137 void __user *argp = (void __user *)arg;
138 int __user *p = argp;
139 static struct watchdog_info ident = {
140 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE,
141 .firmware_version = 1,
Wim Van Sebroeck1d747be2007-01-11 22:19:28 +0100142 .identity = WATCHDOG_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 };
144
145 switch (cmd) {
146 case WDIOC_GETSUPPORT:
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100147 if (copy_to_user(argp, &ident, sizeof(ident)))
148 return -EFAULT;
149 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 case WDIOC_GETSTATUS:
152 case WDIOC_GETBOOTSTATUS:
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100153 return put_user(0, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 case WDIOC_SETOPTIONS:
156 {
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100157 int options, retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100159 if (get_user(options, p))
160 return -EFAULT;
161 if (options & WDIOS_DISABLECARD) {
162 advwdt_disable();
163 retval = 0;
164 }
165 if (options & WDIOS_ENABLECARD) {
166 advwdt_ping();
167 retval = 0;
168 }
169 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000171 case WDIOC_KEEPALIVE:
172 advwdt_ping();
173 break;
174
175 case WDIOC_SETTIMEOUT:
176 if (get_user(new_timeout, p))
177 return -EFAULT;
178 if (advwdt_set_heartbeat(new_timeout))
179 return -EINVAL;
180 advwdt_ping();
181 /* Fall */
182 case WDIOC_GETTIMEOUT:
183 return put_user(timeout, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 default:
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100185 return -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187 return 0;
188}
189
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100190static int advwdt_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 if (test_and_set_bit(0, &advwdt_is_open))
193 return -EBUSY;
194 /*
195 * Activate
196 */
197
198 advwdt_ping();
199 return nonseekable_open(inode, file);
200}
201
202static int
203advwdt_close(struct inode *inode, struct file *file)
204{
205 if (adv_expect_close == 42) {
206 advwdt_disable();
207 } else {
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100208 printk(KERN_CRIT PFX
209 "Unexpected close, not stopping watchdog!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 advwdt_ping();
211 }
212 clear_bit(0, &advwdt_is_open);
213 adv_expect_close = 0;
214 return 0;
215}
216
217/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 * Kernel Interfaces
219 */
220
Arjan van de Ven62322d22006-07-03 00:24:21 -0700221static const struct file_operations advwdt_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 .owner = THIS_MODULE,
223 .llseek = no_llseek,
224 .write = advwdt_write,
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100225 .unlocked_ioctl = advwdt_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 .open = advwdt_open,
227 .release = advwdt_close,
228};
229
230static struct miscdevice advwdt_miscdev = {
Wim Van Sebroeck1d747be2007-01-11 22:19:28 +0100231 .minor = WATCHDOG_MINOR,
232 .name = "watchdog",
233 .fops = &advwdt_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234};
235
236/*
Wim Van Sebroeck1d747be2007-01-11 22:19:28 +0100237 * Init & exit routines
238 */
239
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100240static int __devinit advwdt_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 int ret;
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (wdt_stop != wdt_start) {
245 if (!request_region(wdt_stop, 1, WATCHDOG_NAME)) {
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100246 printk(KERN_ERR PFX
247 "I/O address 0x%04x already in use\n",
248 wdt_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 ret = -EIO;
250 goto out;
251 }
252 }
253
254 if (!request_region(wdt_start, 1, WATCHDOG_NAME)) {
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100255 printk(KERN_ERR PFX
256 "I/O address 0x%04x already in use\n",
257 wdt_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 ret = -EIO;
259 goto unreg_stop;
260 }
261
Wim Van Sebroeck0349a362007-01-11 22:27:51 +0100262 /* Check that the heartbeat value is within it's range ; if not reset to the default */
263 if (advwdt_set_heartbeat(timeout)) {
264 advwdt_set_heartbeat(WATCHDOG_TIMEOUT);
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100265 printk(KERN_INFO PFX
266 "timeout value must be 1<=x<=63, using %d\n", timeout);
Wim Van Sebroeck0349a362007-01-11 22:27:51 +0100267 }
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 ret = misc_register(&advwdt_miscdev);
270 if (ret != 0) {
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100271 printk(KERN_ERR PFX
272 "cannot register miscdev on minor=%d (err=%d)\n",
273 WATCHDOG_MINOR, ret);
Wim Van Sebroeck2e9c9cf2007-01-11 22:42:41 +0100274 goto unreg_regions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 }
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100276 printk(KERN_INFO PFX "initialized. timeout=%d sec (nowayout=%d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 timeout, nowayout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278out:
279 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280unreg_regions:
281 release_region(wdt_start, 1);
282unreg_stop:
283 if (wdt_stop != wdt_start)
284 release_region(wdt_stop, 1);
285 goto out;
286}
287
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100288static int __devexit advwdt_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 misc_deregister(&advwdt_miscdev);
Wim Van Sebroeck1d747be2007-01-11 22:19:28 +0100291 release_region(wdt_start,1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if(wdt_stop != wdt_start)
293 release_region(wdt_stop,1);
Wim Van Sebroeckc2bd11c2007-01-11 22:35:40 +0100294
295 return 0;
296}
297
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100298static void advwdt_shutdown(struct platform_device *dev)
Wim Van Sebroeck2e9c9cf2007-01-11 22:42:41 +0100299{
300 /* Turn the WDT off if we have a soft shutdown */
301 advwdt_disable();
302}
303
Wim Van Sebroeckc2bd11c2007-01-11 22:35:40 +0100304static struct platform_driver advwdt_driver = {
305 .probe = advwdt_probe,
306 .remove = __devexit_p(advwdt_remove),
Wim Van Sebroeck2e9c9cf2007-01-11 22:42:41 +0100307 .shutdown = advwdt_shutdown,
Wim Van Sebroeckc2bd11c2007-01-11 22:35:40 +0100308 .driver = {
309 .owner = THIS_MODULE,
310 .name = DRV_NAME,
311 },
312};
313
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100314static int __init advwdt_init(void)
Wim Van Sebroeckc2bd11c2007-01-11 22:35:40 +0100315{
316 int err;
317
318 printk(KERN_INFO "WDT driver for Advantech single board computer initialising.\n");
319
320 err = platform_driver_register(&advwdt_driver);
321 if (err)
322 return err;
323
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100324 advwdt_platform_device = platform_device_register_simple(DRV_NAME,
325 -1, NULL, 0);
Wim Van Sebroeckc2bd11c2007-01-11 22:35:40 +0100326 if (IS_ERR(advwdt_platform_device)) {
327 err = PTR_ERR(advwdt_platform_device);
328 goto unreg_platform_driver;
329 }
330
331 return 0;
332
333unreg_platform_driver:
334 platform_driver_unregister(&advwdt_driver);
335 return err;
336}
337
Alan Coxb6b4d9b2008-05-19 14:04:51 +0100338static void __exit advwdt_exit(void)
Wim Van Sebroeckc2bd11c2007-01-11 22:35:40 +0100339{
340 platform_device_unregister(advwdt_platform_device);
341 platform_driver_unregister(&advwdt_driver);
342 printk(KERN_INFO PFX "Watchdog Module Unloaded.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
345module_init(advwdt_init);
346module_exit(advwdt_exit);
347
348MODULE_LICENSE("GPL");
349MODULE_AUTHOR("Marek Michalkiewicz <marekm@linux.org.pl>");
350MODULE_DESCRIPTION("Advantech Single Board Computer WDT driver");
351MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);