ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / drivers / char / watchdog / mixcomwd.c
1 /*
2  * MixCom Watchdog: A Simple Hardware Watchdog Device
3  * Based on Softdog driver by Alan Cox and PC Watchdog driver by Ken Hollis
4  *
5  * Author: Gergely Madarasz <gorgo@itc.hu>
6  *
7  * Copyright (c) 1999 ITConsult-Pro Co. <info@itc.hu>
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version
12  * 2 of the License, or (at your option) any later version.
13  *
14  * Version 0.1 (99/04/15):
15  *              - first version
16  *
17  * Version 0.2 (99/06/16):
18  *              - added kernel timer watchdog ping after close
19  *                since the hardware does not support watchdog shutdown
20  *
21  * Version 0.3 (99/06/21):
22  *              - added WDIOC_GETSTATUS and WDIOC_GETSUPPORT ioctl calls
23  *
24  * Version 0.3.1 (99/06/22):
25  *              - allow module removal while internal timer is active,
26  *                print warning about probable reset
27  *
28  * Version 0.4 (99/11/15):
29  *              - support for one more type board
30  *
31  * Version 0.5 (2001/12/14) Matt Domsch <Matt_Domsch@dell.com>
32  *              - added nowayout module option to override CONFIG_WATCHDOG_NOWAYOUT
33  *
34  */
35
36 #define VERSION "0.5"
37
38 #include <linux/module.h>
39 #include <linux/moduleparam.h>
40 #include <linux/config.h>
41 #include <linux/types.h>
42 #include <linux/miscdevice.h>
43 #include <linux/ioport.h>
44 #include <linux/watchdog.h>
45 #include <linux/fs.h>
46 #include <linux/reboot.h>
47 #include <linux/init.h>
48 #include <asm/uaccess.h>
49 #include <asm/io.h>
50
51 static int mixcomwd_ioports[] = { 0x180, 0x280, 0x380, 0x000 };
52
53 #define MIXCOM_WATCHDOG_OFFSET 0xc10
54 #define MIXCOM_ID 0x11
55 #define FLASHCOM_WATCHDOG_OFFSET 0x4
56 #define FLASHCOM_ID 0x18
57
58 static unsigned long mixcomwd_opened; /* long req'd for setbit --RR */
59
60 static int watchdog_port;
61 static int mixcomwd_timer_alive;
62 static struct timer_list mixcomwd_timer = TIMER_INITIALIZER(NULL, 0, 0);
63 static char expect_close;
64
65 #ifdef CONFIG_WATCHDOG_NOWAYOUT
66 static int nowayout = 1;
67 #else
68 static int nowayout = 0;
69 #endif
70
71 module_param(nowayout, int, 0);
72 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=CONFIG_WATCHDOG_NOWAYOUT)");
73
74 static void mixcomwd_ping(void)
75 {
76         outb_p(55,watchdog_port);
77         return;
78 }
79
80 static void mixcomwd_timerfun(unsigned long d)
81 {
82         mixcomwd_ping();
83
84         mod_timer(&mixcomwd_timer,jiffies+ 5*HZ);
85 }
86
87 /*
88  *      Allow only one person to hold it open
89  */
90
91 static int mixcomwd_open(struct inode *inode, struct file *file)
92 {
93         if(test_and_set_bit(0,&mixcomwd_opened)) {
94                 return -EBUSY;
95         }
96         mixcomwd_ping();
97
98         if (nowayout) {
99                 /*
100                  * fops_get() code via open() has already done
101                  * a try_module_get() so it is safe to do the
102                  * __module_get().
103                  */
104                 __module_get(THIS_MODULE);
105         } else {
106                 if(mixcomwd_timer_alive) {
107                         del_timer(&mixcomwd_timer);
108                         mixcomwd_timer_alive=0;
109                 }
110         }
111         return 0;
112 }
113
114 static int mixcomwd_release(struct inode *inode, struct file *file)
115 {
116         if (expect_close == 42) {
117                 if(mixcomwd_timer_alive) {
118                         printk(KERN_ERR "mixcomwd: release called while internal timer alive");
119                         return -EBUSY;
120                 }
121                 init_timer(&mixcomwd_timer);
122                 mixcomwd_timer.expires=jiffies + 5 * HZ;
123                 mixcomwd_timer.function=mixcomwd_timerfun;
124                 mixcomwd_timer.data=0;
125                 mixcomwd_timer_alive=1;
126                 add_timer(&mixcomwd_timer);
127         } else {
128                 printk(KERN_CRIT "mixcomwd: WDT device closed unexpectedly.  WDT will not stop!\n");
129         }
130
131         clear_bit(0,&mixcomwd_opened);
132         expect_close=0;
133         return 0;
134 }
135
136
137 static ssize_t mixcomwd_write(struct file *file, const char *data, size_t len, loff_t *ppos)
138 {
139         if (ppos != &file->f_pos) {
140                 return -ESPIPE;
141         }
142
143         if(len)
144         {
145                 if (!nowayout) {
146                         size_t i;
147
148                         /* In case it was set long ago */
149                         expect_close = 0;
150
151                         for (i = 0; i != len; i++) {
152                                 char c;
153                                 if (get_user(c, data + i))
154                                         return -EFAULT;
155                                 if (c == 'V')
156                                         expect_close = 42;
157                         }
158                 }
159                 mixcomwd_ping();
160         }
161         return len;
162 }
163
164 static int mixcomwd_ioctl(struct inode *inode, struct file *file,
165         unsigned int cmd, unsigned long arg)
166 {
167         int status;
168         static struct watchdog_info ident = {
169                 .options = WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
170                 .firmware_version = 1,
171                 .identity = "MixCOM watchdog",
172         };
173
174         switch(cmd)
175         {
176                 case WDIOC_GETSTATUS:
177                         status=mixcomwd_opened;
178                         if (!nowayout) {
179                                 status|=mixcomwd_timer_alive;
180                         }
181                         if (copy_to_user((int *)arg, &status, sizeof(int))) {
182                                 return -EFAULT;
183                         }
184                         break;
185                 case WDIOC_GETSUPPORT:
186                         if (copy_to_user((struct watchdog_info *)arg, &ident,
187                             sizeof(ident))) {
188                                 return -EFAULT;
189                         }
190                         break;
191                 case WDIOC_KEEPALIVE:
192                         mixcomwd_ping();
193                         break;
194                 default:
195                         return -ENOIOCTLCMD;
196         }
197         return 0;
198 }
199
200 static struct file_operations mixcomwd_fops=
201 {
202         .owner          = THIS_MODULE,
203         .write          = mixcomwd_write,
204         .ioctl          = mixcomwd_ioctl,
205         .open           = mixcomwd_open,
206         .release        = mixcomwd_release,
207 };
208
209 static struct miscdevice mixcomwd_miscdev=
210 {
211         .minor  = WATCHDOG_MINOR,
212         .name   = "watchdog",
213         .fops   = &mixcomwd_fops,
214 };
215
216 static int __init mixcomwd_checkcard(int port)
217 {
218         int id;
219
220         port += MIXCOM_WATCHDOG_OFFSET;
221         if (!request_region(port, 1, "MixCOM watchdog")) {
222                 return 0;
223         }
224
225         id=inb_p(port) & 0x3f;
226         if(id!=MIXCOM_ID) {
227                 release_region(port, 1);
228                 return 0;
229         }
230         return port;
231 }
232
233 static int __init flashcom_checkcard(int port)
234 {
235         int id;
236
237         port += FLASHCOM_WATCHDOG_OFFSET;
238         if (!request_region(port, 1, "MixCOM watchdog")) {
239                 return 0;
240         }
241
242         id=inb_p(port);
243         if(id!=FLASHCOM_ID) {
244                 release_region(port, 1);
245                 return 0;
246         }
247         return port;
248  }
249
250 static int __init mixcomwd_init(void)
251 {
252         int i;
253         int ret;
254         int found=0;
255
256         for (i = 0; !found && mixcomwd_ioports[i] != 0; i++) {
257                 watchdog_port = mixcomwd_checkcard(mixcomwd_ioports[i]);
258                 if (watchdog_port) {
259                         found = 1;
260                 }
261         }
262
263         /* The FlashCOM card can be set up at 0x300 -> 0x378, in 0x8 jumps */
264         for (i = 0x300; !found && i < 0x380; i+=0x8) {
265                 watchdog_port = flashcom_checkcard(i);
266                 if (watchdog_port) {
267                         found = 1;
268                 }
269         }
270
271         if (!found) {
272                 printk("mixcomwd: No card detected, or port not available.\n");
273                 return -ENODEV;
274         }
275
276         ret = misc_register(&mixcomwd_miscdev);
277         if (ret)
278         {
279                 release_region(watchdog_port, 1);
280                 return ret;
281         }
282
283         printk(KERN_INFO "MixCOM watchdog driver v%s, watchdog port at 0x%3x\n",VERSION,watchdog_port);
284
285         return 0;
286 }
287
288 static void __exit mixcomwd_exit(void)
289 {
290         if (!nowayout) {
291                 if(mixcomwd_timer_alive) {
292                         printk(KERN_WARNING "mixcomwd: I quit now, hardware will"
293                                " probably reboot!\n");
294                         del_timer(&mixcomwd_timer);
295                         mixcomwd_timer_alive=0;
296                 }
297         }
298         release_region(watchdog_port,1);
299         misc_deregister(&mixcomwd_miscdev);
300 }
301
302 module_init(mixcomwd_init);
303 module_exit(mixcomwd_exit);
304
305 MODULE_AUTHOR("Gergely Madarasz <gorgo@itc.hu>");
306 MODULE_DESCRIPTION("MixCom Watchdog driver");
307 MODULE_LICENSE("GPL");
308 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);