| Linux kernel & device driver programming |
| [ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] |
1 /* 1
2 * Advantech Single Board Computer WDT dr
3 *
4 * (c) Copyright 2000-2001 Marek Michalki
5 *
6 * Based on acquirewdt.c which is based o
7 * Original copyright messages:
8 *
9 * (c) Copyright 1996 Alan Cox <alan@lxor
10 *
11 *
12 * This program is free software; you can
13 * modify it under the terms of the GNU G
14 * as published by the Free Software Foun
15 * 2 of the License, or (at your option)
16 *
17 * Neither Alan Cox nor CymruNet Ltd. adm
18 * warranty for any of this software. Thi
19 * "AS-IS" and at no charge.
20 *
21 * (c) Copyright 1995 Alan Cox <alan@l
22 *
23 * 14-Dec-2001 Matt Domsch <Matt_Domsch@d
24 * Added nowayout module option to ov
25 *
26 * 16-Oct-2002 Rob Radez <rob@osinvestor.
27 * Clean up ioctls, clean up init + e
28 * add wdt_start and wdt_stop as para
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/platform_device.h>
39 #include <linux/init.h>
40 #include <linux/io.h>
41 #include <linux/uaccess.h>
42
43 #include <asm/system.h>
44
45 #define DRV_NAME "advantechwdt"
46 #define PFX DRV_NAME ": "
47 #define WATCHDOG_NAME "Advantech WDT"
48 #define WATCHDOG_TIMEOUT 60 /* 60
49
50 /* the watchdog platform device */
51 static struct platform_device *advwdt_platform
52 static unsigned long advwdt_is_open;
53 static char adv_expect_close;
54
55 /*
56 * You must set these - there is no sane
57 *
58 * To enable or restart, write the timeou
59 * to I/O port wdt_start. To disable, re
60 * Both are 0x443 for most boards (tested
61 * check your manual (at least the PCA-61
62 * the manual says wdt_stop is 0x43, not
63 * (0x43 is also a write-only control reg
64 */
65
66 static int wdt_stop = 0x443;
67 module_param(wdt_stop, int, 0);
68 MODULE_PARM_DESC(wdt_stop, "Advantech WDT 'sto
69
70 static int wdt_start = 0x443;
71 module_param(wdt_start, int, 0);
72 MODULE_PARM_DESC(wdt_start, "Advantech WDT 'st
73
74 static int timeout = WATCHDOG_TIMEOUT; /* in
75 module_param(timeout, int, 0);
76 MODULE_PARM_DESC(timeout,
77 "Watchdog timeout in seconds. 1<= time
78 __MODULE_STRING(WATCHDOG_TIMEO
79
80 static int nowayout = WATCHDOG_NOWAYOUT;
81 module_param(nowayout, int, 0);
82 MODULE_PARM_DESC(nowayout,
83 "Watchdog cannot be stopped once start
84 __MODULE_STRING(WATCHDOG_NOWAY
85
86 /*
87 * Watchdog Operations
88 */
89
90 static void advwdt_ping(void)
91 {
92 /* Write a watchdog value */
93 outb_p(timeout, wdt_start);
94 }
95
96 static void advwdt_disable(void)
97 {
98 inb_p(wdt_stop);
99 }
100
101 static int advwdt_set_heartbeat(int t)
102 {
103 if (t < 1 || t > 63)
104 return -EINVAL;
105 timeout = t;
106 return 0;
107 }
108
109 /*
110 * /dev/watchdog handling
111 */
112
113 static ssize_t advwdt_write(struct file *file,
114
115 {
116 if (count) {
117 if (!nowayout) {
118 size_t i;
119
120 adv_expect_close = 0;
121
122 for (i = 0; i != count
123 char c;
124 if (get_user(c
125 return
126 if (c == 'V')
127 adv_ex
128 }
129 }
130 advwdt_ping();
131 }
132 return count;
133 }
134
135 static long advwdt_ioctl(struct file *file, un
136 {
137 int new_timeout;
138 void __user *argp = (void __user *)arg
139 int __user *p = argp;
140 static struct watchdog_info ident = {
141 .options = WDIOF_KEEPALIVEPING
142 WDIOF_SETTIMEOUT |
143 WDIOF_MAGICCLOSE,
144 .firmware_version = 1,
145 .identity = WATCHDOG_NAME,
146 };
147
148 switch (cmd) {
149 case WDIOC_GETSUPPORT:
150 if (copy_to_user(argp, &ident,
151 return -EFAULT;
152 break;
153
154 case WDIOC_GETSTATUS:
155 case WDIOC_GETBOOTSTATUS:
156 return put_user(0, p);
157
158 case WDIOC_SETOPTIONS:
159 {
160 int options, retval = -EINVAL;
161
162 if (get_user(options, p))
163 return -EFAULT;
164 if (options & WDIOS_DISABLECAR
165 advwdt_disable();
166 retval = 0;
167 }
168 if (options & WDIOS_ENABLECARD
169 advwdt_ping();
170 retval = 0;
171 }
172 return retval;
173 }
174 case WDIOC_KEEPALIVE:
175 advwdt_ping();
176 break;
177
178 case WDIOC_SETTIMEOUT:
179 if (get_user(new_timeout, p))
180 return -EFAULT;
181 if (advwdt_set_heartbeat(new_t
182 return -EINVAL;
183 advwdt_ping();
184 /* Fall */
185 case WDIOC_GETTIMEOUT:
186 return put_user(timeout, p);
187 default:
188 return -ENOTTY;
189 }
190 return 0;
191 }
192
193 static int advwdt_open(struct inode *inode, st
194 {
195 if (test_and_set_bit(0, &advwdt_is_ope
196 return -EBUSY;
197 /*
198 * Activate
199 */
200
201 advwdt_ping();
202 return nonseekable_open(inode, file);
203 }
204
205 static int advwdt_close(struct inode *inode, s
206 {
207 if (adv_expect_close == 42) {
208 advwdt_disable();
209 } else {
210 printk(KERN_CRIT PFX
211 "Unexpected cl
212 advwdt_ping();
213 }
214 clear_bit(0, &advwdt_is_open);
215 adv_expect_close = 0;
216 return 0;
217 }
218
219 /*
220 * Kernel Interfaces
221 */
222
223 static const struct file_operations advwdt_fop
224 .owner = THIS_MODULE,
225 .llseek = no_llseek,
226 .write = advwdt_write,
227 .unlocked_ioctl = advwdt_ioctl,
228 .open = advwdt_open,
229 .release = advwdt_close,
230 };
231
232 static struct miscdevice advwdt_miscdev = {
233 .minor = WATCHDOG_MINOR,
234 .name = "watchdog",
235 .fops = &advwdt_fops,
236 };
237
238 /*
239 * Init & exit routines
240 */
241
242 static int __devinit advwdt_probe(struct platf
243 {
244 int ret;
245
246 if (wdt_stop != wdt_start) {
247 if (!request_region(wdt_stop,
248 printk(KERN_ERR PFX
249 "I/O address 0
250
251 ret = -EIO;
252 goto out;
253 }
254 }
255
256 if (!request_region(wdt_start, 1, WATC
257 printk(KERN_ERR PFX
258 "I/O address 0
259
260 ret = -EIO;
261 goto unreg_stop;
262 }
263
264 /* Check that the heartbeat value is w
265 * if not reset to the default */
266 if (advwdt_set_heartbeat(timeout)) {
267 advwdt_set_heartbeat(WATCHDOG_
268 printk(KERN_INFO PFX
269 "timeout value must be
270 }
271
272 ret = misc_register(&advwdt_miscdev);
273 if (ret != 0) {
274 printk(KERN_ERR PFX
275 "cannot register miscd
276
277 goto unreg_regions;
278 }
279 printk(KERN_INFO PFX "initialized. tim
280 timeout, nowayout);
281 out:
282 return ret;
283 unreg_regions:
284 release_region(wdt_start, 1);
285 unreg_stop:
286 if (wdt_stop != wdt_start)
287 release_region(wdt_stop, 1);
288 goto out;
289 }
290
291 static int __devexit advwdt_remove(struct plat
292 {
293 misc_deregister(&advwdt_miscdev);
294 release_region(wdt_start, 1);
295 if (wdt_stop != wdt_start)
296 release_region(wdt_stop, 1);
297
298 return 0;
299 }
300
301 static void advwdt_shutdown(struct platform_de
302 {
303 /* Turn the WDT off if we have a soft
304 advwdt_disable();
305 }
306
307 static struct platform_driver advwdt_driver =
308 .probe = advwdt_probe,
309 .remove = __devexit_p(advwdt_r
310 .shutdown = advwdt_shutdown,
311 .driver = {
312 .owner = THIS_MODULE,
313 .name = DRV_NAME,
314 },
315 };
316
317 static int __init advwdt_init(void)
318 {
319 int err;
320
321 printk(KERN_INFO
322 "WDT driver for Advantech single
323
324 err = platform_driver_register(&advwdt
325 if (err)
326 return err;
327
328 advwdt_platform_device = platform_devi
329
330 if (IS_ERR(advwdt_platform_device)) {
331 err = PTR_ERR(advwdt_platform_
332 goto unreg_platform_driver;
333 }
334
335 return 0;
336
337 unreg_platform_driver:
338 platform_driver_unregister(&advwdt_dri
339 return err;
340 }
341
342 static void __exit advwdt_exit(void)
343 {
344 platform_device_unregister(advwdt_plat
345 platform_driver_unregister(&advwdt_dri
346 printk(KERN_INFO PFX "Watchdog Module
347 }
348
349 module_init(advwdt_init);
350 module_exit(advwdt_exit);
351
352 MODULE_LICENSE("GPL");
353 MODULE_AUTHOR("Marek Michalkiewicz <marekm@lin
354 MODULE_DESCRIPTION("Advantech Single Board Com
355 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
356
| This page was automatically generated by the LXR engine. |