This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / drivers / char / watchdog / wafer5823wdt.c
1 /*
2  *      ICP Wafer 5823 Single Board Computer WDT driver
3  *      http://www.icpamerica.com/wafer_5823.php
4  *      May also work on other similar models
5  *
6  *      (c) Copyright 2002 Justin Cormack <justin@street-vision.com>
7  *
8  *      Release 0.02
9  *
10  *      Based on advantechwdt.c which is based on wdt.c.
11  *      Original copyright messages:
12  *
13  *      (c) Copyright 1996-1997 Alan Cox <alan@redhat.com>, All Rights Reserved.
14  *                              http://www.redhat.com
15  *
16  *      This program is free software; you can redistribute it and/or
17  *      modify it under the terms of the GNU General Public License
18  *      as published by the Free Software Foundation; either version
19  *      2 of the License, or (at your option) any later version.
20  *
21  *      Neither Alan Cox nor CymruNet Ltd. admit liability nor provide
22  *      warranty for any of this software. This material is provided
23  *      "AS-IS" and at no charge.
24  *
25  *      (c) Copyright 1995    Alan Cox <alan@lxorguk.ukuu.org.uk>
26  *
27  */
28
29 #include <linux/module.h>
30 #include <linux/moduleparam.h>
31 #include <linux/miscdevice.h>
32 #include <linux/watchdog.h>
33 #include <linux/fs.h>
34 #include <linux/ioport.h>
35 #include <linux/notifier.h>
36 #include <linux/reboot.h>
37 #include <linux/init.h>
38 #include <linux/spinlock.h>
39 #include <asm/io.h>
40 #include <asm/uaccess.h>
41
42 #define WATCHDOG_NAME "Wafer 5823 WDT"
43 #define PFX WATCHDOG_NAME ": "
44 #define WD_TIMO 60                      /* 60 sec default timeout */
45
46 static unsigned long wafwdt_is_open;
47 static char expect_close;
48 static spinlock_t wafwdt_lock;
49
50 /*
51  *      You must set these - there is no sane way to probe for this board.
52  *
53  *      To enable, write the timeout value in seconds (1 to 255) to I/O
54  *      port WDT_START, then read the port to start the watchdog. To pat
55  *      the dog, read port WDT_STOP to stop the timer, then read WDT_START
56  *      to restart it again.
57  */
58
59 static int wdt_stop = 0x843;
60 static int wdt_start = 0x443;
61
62 static int timeout = WD_TIMO;  /* in seconds */
63 module_param(timeout, int, 0);
64 MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds. 1<= timeout <=255, default=" __MODULE_STRING(WD_TIMO) ".");
65
66 #ifdef CONFIG_WATCHDOG_NOWAYOUT
67 static int nowayout = 1;
68 #else
69 static int nowayout = 0;
70 #endif
71
72 module_param(nowayout, int, 0);
73 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=CONFIG_WATCHDOG_NOWAYOUT)");
74
75 static void wafwdt_ping(void)
76 {
77         /* pat watchdog */
78         spin_lock(&wafwdt_lock);
79         inb_p(wdt_stop);
80         inb_p(wdt_start);
81         spin_unlock(&wafwdt_lock);
82 }
83
84 static void wafwdt_start(void)
85 {
86         /* start up watchdog */
87         outb_p(timeout, wdt_start);
88         inb_p(wdt_start);
89 }
90
91 static void
92 wafwdt_stop(void)
93 {
94         /* stop watchdog */
95         inb_p(wdt_stop);
96 }
97
98 static ssize_t wafwdt_write(struct file *file, const char __user *buf, size_t count, loff_t * ppos)
99 {
100         /*  Can't seek (pwrite) on this device  */
101         if (ppos != &file->f_pos)
102                 return -ESPIPE;
103
104         /* See if we got the magic character 'V' and reload the timer */
105         if (count) {
106                 if (!nowayout) {
107                         size_t i;
108
109                         /* In case it was set long ago */
110                         expect_close = 0;
111
112                         /* scan to see whether or not we got the magic character */
113                         for (i = 0; i != count; i++) {
114                                 char c;
115                                 if (get_user(c, buf + i))
116                                         return -EFAULT;
117                                 if (c == 'V')
118                                         expect_close = 42;
119                         }
120                 }
121                 /* Well, anyhow someone wrote to us, we should return that favour */
122                 wafwdt_ping();
123         }
124         return count;
125 }
126
127 static int wafwdt_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
128              unsigned long arg)
129 {
130         int new_timeout;
131         void __user *argp = (void __user *)arg;
132         int __user *p = argp;
133         static struct watchdog_info ident = {
134                 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE,
135                 .firmware_version = 1,
136                 .identity = "Wafer 5823 WDT",
137         };
138
139         switch (cmd) {
140         case WDIOC_GETSUPPORT:
141                 if (copy_to_user(argp, &ident, sizeof (ident)))
142                         return -EFAULT;
143                 break;
144
145         case WDIOC_GETSTATUS:
146         case WDIOC_GETBOOTSTATUS:
147                 return put_user(0, p);
148
149         case WDIOC_KEEPALIVE:
150                 wafwdt_ping();
151                 break;
152
153         case WDIOC_SETTIMEOUT:
154                 if (get_user(new_timeout, p))
155                         return -EFAULT;
156                 if ((new_timeout < 1) || (new_timeout > 255))
157                         return -EINVAL;
158                 timeout = new_timeout;
159                 wafwdt_stop();
160                 wafwdt_start();
161                 /* Fall */
162         case WDIOC_GETTIMEOUT:
163                 return put_user(timeout, p);
164
165         case WDIOC_SETOPTIONS:
166         {
167                 int options, retval = -EINVAL;
168
169                 if (get_user(options, p))
170                         return -EFAULT;
171
172                 if (options & WDIOS_DISABLECARD) {
173                         wafwdt_start();
174                         retval = 0;
175                 }
176
177                 if (options & WDIOS_ENABLECARD) {
178                         wafwdt_stop();
179                         retval = 0;
180                 }
181
182                 return retval;
183         }
184
185         default:
186                 return -ENOIOCTLCMD;
187         }
188         return 0;
189 }
190
191 static int wafwdt_open(struct inode *inode, struct file *file)
192 {
193         if (test_and_set_bit(0, &wafwdt_is_open))
194                 return -EBUSY;
195
196         /*
197          *      Activate
198          */
199         wafwdt_start();
200         return 0;
201 }
202
203 static int
204 wafwdt_close(struct inode *inode, struct file *file)
205 {
206         if (expect_close == 42) {
207                 wafwdt_stop();
208         } else {
209                 printk(KERN_CRIT PFX "WDT device closed unexpectedly.  WDT will not stop!\n");
210                 wafwdt_ping();
211         }
212         clear_bit(0, &wafwdt_is_open);
213         expect_close = 0;
214         return 0;
215 }
216
217 /*
218  *      Notifier for system down
219  */
220
221 static int wafwdt_notify_sys(struct notifier_block *this, unsigned long code, void *unused)
222 {
223         if (code == SYS_DOWN || code == SYS_HALT) {
224                 /* Turn the WDT off */
225                 wafwdt_stop();
226         }
227         return NOTIFY_DONE;
228 }
229
230 /*
231  *      Kernel Interfaces
232  */
233
234 static struct file_operations wafwdt_fops = {
235         .owner          = THIS_MODULE,
236         .llseek         = no_llseek,
237         .write          = wafwdt_write,
238         .ioctl          = wafwdt_ioctl,
239         .open           = wafwdt_open,
240         .release        = wafwdt_close,
241 };
242
243 static struct miscdevice wafwdt_miscdev = {
244         .minor  = WATCHDOG_MINOR,
245         .name   = "watchdog",
246         .fops   = &wafwdt_fops,
247 };
248
249 /*
250  *      The WDT needs to learn about soft shutdowns in order to
251  *      turn the timebomb registers off.
252  */
253
254 static struct notifier_block wafwdt_notifier = {
255         .notifier_call = wafwdt_notify_sys,
256 };
257
258 static int __init wafwdt_init(void)
259 {
260         int ret;
261
262         printk(KERN_INFO "WDT driver for Wafer 5823 single board computer initialising.\n");
263
264         spin_lock_init(&wafwdt_lock);
265
266         if (timeout < 1 || timeout > 255) {
267                 timeout = WD_TIMO;
268                 printk (KERN_INFO PFX "timeout value must be 1<=x<=255, using %d\n",
269                         timeout);
270         }
271
272         if (wdt_stop != wdt_start) {
273                 if(!request_region(wdt_stop, 1, "Wafer 5823 WDT")) {
274                         printk (KERN_ERR PFX "I/O address 0x%04x already in use\n",
275                         wdt_stop);
276                         ret = -EIO;
277                         goto error;
278                 }
279         }
280
281         if(!request_region(wdt_start, 1, "Wafer 5823 WDT")) {
282                 printk (KERN_ERR PFX "I/O address 0x%04x already in use\n",
283                         wdt_start);
284                 ret = -EIO;
285                 goto error2;
286         }
287
288         ret = register_reboot_notifier(&wafwdt_notifier);
289         if (ret != 0) {
290                 printk (KERN_ERR PFX "cannot register reboot notifier (err=%d)\n",
291                         ret);
292                 goto error3;
293         }
294
295         ret = misc_register(&wafwdt_miscdev);
296         if (ret != 0) {
297                 printk (KERN_ERR PFX "cannot register miscdev on minor=%d (err=%d)\n",
298                         WATCHDOG_MINOR, ret);
299                 goto error4;
300         }
301
302         printk (KERN_INFO PFX "initialized. timeout=%d sec (nowayout=%d)\n",
303                 timeout, nowayout);
304
305         return ret;
306 error4:
307         unregister_reboot_notifier(&wafwdt_notifier);
308 error3:
309         release_region(wdt_start, 1);
310 error2:
311         if (wdt_stop != wdt_start)
312                 release_region(wdt_stop, 1);
313 error:
314         return ret;
315 }
316
317 static void __exit wafwdt_exit(void)
318 {
319         misc_deregister(&wafwdt_miscdev);
320         unregister_reboot_notifier(&wafwdt_notifier);
321         if(wdt_stop != wdt_start)
322                 release_region(wdt_stop, 1);
323         release_region(wdt_start, 1);
324 }
325
326 module_init(wafwdt_init);
327 module_exit(wafwdt_exit);
328
329 MODULE_AUTHOR("Justin Cormack");
330 MODULE_DESCRIPTION("ICP Wafer 5823 Single Board Computer WDT driver");
331 MODULE_LICENSE("GPL");
332 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
333
334 /* end of wafer5823wdt.c */