1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34#include <linux/module.h>
35#include <linux/types.h>
36#include <linux/miscdevice.h>
37#include <linux/watchdog.h>
38#include <linux/ioport.h>
39#include <linux/fs.h>
40#include <linux/init.h>
41#include <linux/spinlock.h>
42#include <linux/moduleparam.h>
43#include <linux/platform_device.h>
44#include <linux/io.h>
45#include <linux/uaccess.h>
46
47#include <asm/system.h>
48
49static struct platform_device *ibwdt_platform_device;
50static unsigned long ibwdt_is_open;
51static DEFINE_SPINLOCK(ibwdt_lock);
52static char expect_close;
53
54
55#define DRV_NAME "ib700wdt"
56#define PFX DRV_NAME ": "
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94static int wd_times[] = {
95 30,
96 28,
97 26,
98 24,
99 22,
100 20,
101 18,
102 16,
103 14,
104 12,
105 10,
106 8,
107 6,
108 4,
109 2,
110 0,
111};
112
113#define WDT_STOP 0x441
114#define WDT_START 0x443
115
116
117#define WD_TIMO 0
118
119static int wd_margin = WD_TIMO;
120
121static int nowayout = WATCHDOG_NOWAYOUT;
122module_param(nowayout, int, 0);
123MODULE_PARM_DESC(nowayout,
124 "Watchdog cannot be stopped once started (default="
125 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
126
127
128
129
130
131
132static void ibwdt_ping(void)
133{
134 spin_lock(&ibwdt_lock);
135
136
137 outb_p(wd_margin, WDT_START);
138
139 spin_unlock(&ibwdt_lock);
140}
141
142static void ibwdt_disable(void)
143{
144 spin_lock(&ibwdt_lock);
145 outb_p(0, WDT_STOP);
146 spin_unlock(&ibwdt_lock);
147}
148
149static int ibwdt_set_heartbeat(int t)
150{
151 int i;
152
153 if ((t < 0) || (t > 30))
154 return -EINVAL;
155
156 for (i = 0x0F; i > -1; i--)
157 if (wd_times[i] >= t)
158 break;
159 wd_margin = i;
160 return 0;
161}
162
163
164
165
166
167static ssize_t ibwdt_write(struct file *file, const char __user *buf,
168 size_t count, loff_t *ppos)
169{
170 if (count) {
171 if (!nowayout) {
172 size_t i;
173
174
175 expect_close = 0;
176
177 for (i = 0; i != count; i++) {
178 char c;
179 if (get_user(c, buf + i))
180 return -EFAULT;
181 if (c == 'V')
182 expect_close = 42;
183 }
184 }
185 ibwdt_ping();
186 }
187 return count;
188}
189
190static long ibwdt_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
191{
192 int new_margin;
193 void __user *argp = (void __user *)arg;
194 int __user *p = argp;
195
196 static struct watchdog_info ident = {
197 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT
198 | WDIOF_MAGICCLOSE,
199 .firmware_version = 1,
200 .identity = "IB700 WDT",
201 };
202
203 switch (cmd) {
204 case WDIOC_GETSUPPORT:
205 if (copy_to_user(argp, &ident, sizeof(ident)))
206 return -EFAULT;
207 break;
208
209 case WDIOC_GETSTATUS:
210 case WDIOC_GETBOOTSTATUS:
211 return put_user(0, p);
212
213 case WDIOC_SETOPTIONS:
214 {
215 int options, retval = -EINVAL;
216
217 if (get_user(options, p))
218 return -EFAULT;
219
220 if (options & WDIOS_DISABLECARD) {
221 ibwdt_disable();
222 retval = 0;
223 }
224 if (options & WDIOS_ENABLECARD) {
225 ibwdt_ping();
226 retval = 0;
227 }
228 return retval;
229 }
230 case WDIOC_KEEPALIVE:
231 ibwdt_ping();
232 break;
233
234 case WDIOC_SETTIMEOUT:
235 if (get_user(new_margin, p))
236 return -EFAULT;
237 if (ibwdt_set_heartbeat(new_margin))
238 return -EINVAL;
239 ibwdt_ping();
240
241
242 case WDIOC_GETTIMEOUT:
243 return put_user(wd_times[wd_margin], p);
244
245 default:
246 return -ENOTTY;
247 }
248 return 0;
249}
250
251static int ibwdt_open(struct inode *inode, struct file *file)
252{
253 if (test_and_set_bit(0, &ibwdt_is_open))
254 return -EBUSY;
255 if (nowayout)
256 __module_get(THIS_MODULE);
257
258
259 ibwdt_ping();
260 return nonseekable_open(inode, file);
261}
262
263static int ibwdt_close(struct inode *inode, struct file *file)
264{
265 if (expect_close == 42) {
266 ibwdt_disable();
267 } else {
268 printk(KERN_CRIT PFX
269 "WDT device closed unexpectedly. WDT will not stop!\n");
270 ibwdt_ping();
271 }
272 clear_bit(0, &ibwdt_is_open);
273 expect_close = 0;
274 return 0;
275}
276
277
278
279
280
281static const struct file_operations ibwdt_fops = {
282 .owner = THIS_MODULE,
283 .llseek = no_llseek,
284 .write = ibwdt_write,
285 .unlocked_ioctl = ibwdt_ioctl,
286 .open = ibwdt_open,
287 .release = ibwdt_close,
288};
289
290static struct miscdevice ibwdt_miscdev = {
291 .minor = WATCHDOG_MINOR,
292 .name = "watchdog",
293 .fops = &ibwdt_fops,
294};
295
296
297
298
299
300static int __devinit ibwdt_probe(struct platform_device *dev)
301{
302 int res;
303
304#if WDT_START != WDT_STOP
305 if (!request_region(WDT_STOP, 1, "IB700 WDT")) {
306 printk(KERN_ERR PFX "STOP method I/O %X is not available.\n",
307 WDT_STOP);
308 res = -EIO;
309 goto out_nostopreg;
310 }
311#endif
312
313 if (!request_region(WDT_START, 1, "IB700 WDT")) {
314 printk(KERN_ERR PFX "START method I/O %X is not available.\n",
315 WDT_START);
316 res = -EIO;
317 goto out_nostartreg;
318 }
319
320 res = misc_register(&ibwdt_miscdev);
321 if (res) {
322 printk(KERN_ERR PFX "failed to register misc device\n");
323 goto out_nomisc;
324 }
325 return 0;
326
327out_nomisc:
328 release_region(WDT_START, 1);
329out_nostartreg:
330#if WDT_START != WDT_STOP
331 release_region(WDT_STOP, 1);
332#endif
333out_nostopreg:
334 return res;
335}
336
337static int __devexit ibwdt_remove(struct platform_device *dev)
338{
339 misc_deregister(&ibwdt_miscdev);
340 release_region(WDT_START, 1);
341#if WDT_START != WDT_STOP
342 release_region(WDT_STOP, 1);
343#endif
344 return 0;
345}
346
347static void ibwdt_shutdown(struct platform_device *dev)
348{
349
350 ibwdt_disable();
351}
352
353static struct platform_driver ibwdt_driver = {
354 .probe = ibwdt_probe,
355 .remove = __devexit_p(ibwdt_remove),
356 .shutdown = ibwdt_shutdown,
357 .driver = {
358 .owner = THIS_MODULE,
359 .name = DRV_NAME,
360 },
361};
362
363static int __init ibwdt_init(void)
364{
365 int err;
366
367 printk(KERN_INFO PFX
368 "WDT driver for IB700 single board computer initialising.\n");
369
370 err = platform_driver_register(&ibwdt_driver);
371 if (err)
372 return err;
373
374 ibwdt_platform_device = platform_device_register_simple(DRV_NAME,
375 -1, NULL, 0);
376 if (IS_ERR(ibwdt_platform_device)) {
377 err = PTR_ERR(ibwdt_platform_device);
378 goto unreg_platform_driver;
379 }
380
381 return 0;
382
383unreg_platform_driver:
384 platform_driver_unregister(&ibwdt_driver);
385 return err;
386}
387
388static void __exit ibwdt_exit(void)
389{
390 platform_device_unregister(ibwdt_platform_device);
391 platform_driver_unregister(&ibwdt_driver);
392 printk(KERN_INFO PFX "Watchdog Module Unloaded.\n");
393}
394
395module_init(ibwdt_init);
396module_exit(ibwdt_exit);
397
398MODULE_AUTHOR("Charles Howes <chowes@vsol.net>");
399MODULE_DESCRIPTION("IB700 SBC watchdog driver");
400MODULE_LICENSE("GPL");
401MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
402
403
404