blob: 9eb9537c370e1aef589d9b371728c26cba436e10 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IB700 Single Board Computer WDT driver
3 *
4 * (c) Copyright 2001 Charles Howes <chowes@vsol.net>
5 *
Wim Van Sebroeckc9d77102007-01-27 22:07:03 +01006 * Based on advantechwdt.c which is based on acquirewdt.c which
7 * is based on wdt.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * (c) Copyright 2000-2001 Marek Michalkiewicz <marekm@linux.org.pl>
10 *
11 * Based on acquirewdt.c which is based on wdt.c.
12 * Original copyright messages:
13 *
14 * (c) Copyright 1996 Alan Cox <alan@redhat.com>, All Rights Reserved.
15 * http://www.redhat.com
16 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License
19 * as published by the Free Software Foundation; either version
20 * 2 of the License, or (at your option) any later version.
21 *
22 * Neither Alan Cox nor CymruNet Ltd. admit liability nor provide
23 * warranty for any of this software. This material is provided
24 * "AS-IS" and at no charge.
25 *
26 * (c) Copyright 1995 Alan Cox <alan@redhat.com>
27 *
Wim Van Sebroeckc9d77102007-01-27 22:07:03 +010028 * 14-Dec-2001 Matt Domsch <Matt_Domsch@dell.com>
29 * Added nowayout module option to override CONFIG_WATCHDOG_NOWAYOUT
30 * Added timeout module option to override default
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 *
32 */
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/module.h>
35#include <linux/types.h>
36#include <linux/miscdevice.h>
37#include <linux/watchdog.h>
38#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/init.h>
41#include <linux/spinlock.h>
42#include <linux/moduleparam.h>
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +010043#include <linux/platform_device.h>
Alan Cox2e43ba72008-05-19 14:05:52 +010044#include <linux/io.h>
45#include <linux/uaccess.h>
Wim Van Sebroeck089ab072008-07-15 11:46:11 +000046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/system.h>
48
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +010049static struct platform_device *ibwdt_platform_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050static unsigned long ibwdt_is_open;
Alexey Dobriyanc7dfd0c2007-11-01 16:27:08 -070051static DEFINE_SPINLOCK(ibwdt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static char expect_close;
53
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +010054/* Module information */
55#define DRV_NAME "ib700wdt"
56#define PFX DRV_NAME ": "
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/*
59 *
60 * Watchdog Timer Configuration
61 *
62 * The function of the watchdog timer is to reset the system
63 * automatically and is defined at I/O port 0443H. To enable the
64 * watchdog timer and allow the system to reset, write I/O port 0443H.
65 * To disable the timer, write I/O port 0441H for the system to stop the
66 * watchdog function. The timer has a tolerance of 20% for its
67 * intervals.
68 *
69 * The following describes how the timer should be programmed.
70 *
71 * Enabling Watchdog:
72 * MOV AX,000FH (Choose the values from 0 to F)
73 * MOV DX,0443H
74 * OUT DX,AX
75 *
76 * Disabling Watchdog:
77 * MOV AX,000FH (Any value is fine.)
78 * MOV DX,0441H
79 * OUT DX,AX
80 *
81 * Watchdog timer control table:
82 * Level Value Time/sec | Level Value Time/sec
83 * 1 F 0 | 9 7 16
84 * 2 E 2 | 10 6 18
85 * 3 D 4 | 11 5 20
86 * 4 C 6 | 12 4 22
87 * 5 B 8 | 13 3 24
88 * 6 A 10 | 14 2 26
89 * 7 9 12 | 15 1 28
90 * 8 8 14 | 16 0 30
91 *
92 */
93
94static int wd_times[] = {
95 30, /* 0x0 */
96 28, /* 0x1 */
97 26, /* 0x2 */
98 24, /* 0x3 */
99 22, /* 0x4 */
100 20, /* 0x5 */
101 18, /* 0x6 */
102 16, /* 0x7 */
103 14, /* 0x8 */
104 12, /* 0x9 */
105 10, /* 0xA */
106 8, /* 0xB */
107 6, /* 0xC */
108 4, /* 0xD */
109 2, /* 0xE */
110 0, /* 0xF */
111};
112
113#define WDT_STOP 0x441
114#define WDT_START 0x443
115
116/* Default timeout */
117#define WD_TIMO 0 /* 30 seconds +/- 20%, from table */
118
119static int wd_margin = WD_TIMO;
120
Andrey Panin4bfdf372005-07-27 11:43:58 -0700121static int nowayout = WATCHDOG_NOWAYOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122module_param(nowayout, int, 0);
Alan Cox2e43ba72008-05-19 14:05:52 +0100123MODULE_PARM_DESC(nowayout,
124 "Watchdog cannot be stopped once started (default="
125 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127
128/*
Wim Van Sebroeck35d55c92007-01-27 21:50:53 +0100129 * Watchdog Operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 */
131
132static void
133ibwdt_ping(void)
134{
Wim Van Sebroecke42162a2007-01-27 22:12:54 +0100135 spin_lock(&ibwdt_lock);
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 /* Write a watchdog value */
138 outb_p(wd_margin, WDT_START);
Wim Van Sebroecke42162a2007-01-27 22:12:54 +0100139
140 spin_unlock(&ibwdt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Wim Van Sebroeck35d55c92007-01-27 21:50:53 +0100143static void
144ibwdt_disable(void)
145{
Wim Van Sebroecke42162a2007-01-27 22:12:54 +0100146 spin_lock(&ibwdt_lock);
Wim Van Sebroeck35d55c92007-01-27 21:50:53 +0100147 outb_p(0, WDT_STOP);
Wim Van Sebroecke42162a2007-01-27 22:12:54 +0100148 spin_unlock(&ibwdt_lock);
Wim Van Sebroeck35d55c92007-01-27 21:50:53 +0100149}
150
151static int
152ibwdt_set_heartbeat(int t)
153{
154 int i;
155
156 if ((t < 0) || (t > 30))
157 return -EINVAL;
158
159 for (i = 0x0F; i > -1; i--)
160 if (wd_times[i] > t)
161 break;
162 wd_margin = i;
163 return 0;
164}
165
166/*
167 * /dev/watchdog handling
168 */
169
Alan Cox2e43ba72008-05-19 14:05:52 +0100170static ssize_t ibwdt_write(struct file *file, const char __user *buf,
171 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 if (count) {
174 if (!nowayout) {
175 size_t i;
176
177 /* In case it was set long ago */
178 expect_close = 0;
179
180 for (i = 0; i != count; i++) {
181 char c;
182 if (get_user(c, buf + i))
183 return -EFAULT;
184 if (c == 'V')
185 expect_close = 42;
186 }
187 }
188 ibwdt_ping();
189 }
190 return count;
191}
192
Alan Cox2e43ba72008-05-19 14:05:52 +0100193static long ibwdt_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Wim Van Sebroeck35d55c92007-01-27 21:50:53 +0100195 int new_margin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 void __user *argp = (void __user *)arg;
197 int __user *p = argp;
198
199 static struct watchdog_info ident = {
Alan Cox2e43ba72008-05-19 14:05:52 +0100200 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT
201 | WDIOF_MAGICCLOSE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 .firmware_version = 1,
203 .identity = "IB700 WDT",
204 };
205
206 switch (cmd) {
207 case WDIOC_GETSUPPORT:
Alan Cox2e43ba72008-05-19 14:05:52 +0100208 if (copy_to_user(argp, &ident, sizeof(ident)))
209 return -EFAULT;
210 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 case WDIOC_GETSTATUS:
Wim Van Sebroeckc9d77102007-01-27 22:07:03 +0100213 case WDIOC_GETBOOTSTATUS:
Alan Cox2e43ba72008-05-19 14:05:52 +0100214 return put_user(0, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 case WDIOC_KEEPALIVE:
Alan Cox2e43ba72008-05-19 14:05:52 +0100217 ibwdt_ping();
218 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 case WDIOC_SETTIMEOUT:
Alan Cox2e43ba72008-05-19 14:05:52 +0100221 if (get_user(new_margin, p))
222 return -EFAULT;
223 if (ibwdt_set_heartbeat(new_margin))
224 return -EINVAL;
225 ibwdt_ping();
226 /* Fall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 case WDIOC_GETTIMEOUT:
Alan Cox2e43ba72008-05-19 14:05:52 +0100229 return put_user(wd_times[wd_margin], p);
Wim Van Sebroecke42162a2007-01-27 22:12:54 +0100230
231 case WDIOC_SETOPTIONS:
232 {
Alan Cox2e43ba72008-05-19 14:05:52 +0100233 int options, retval = -EINVAL;
Wim Van Sebroecke42162a2007-01-27 22:12:54 +0100234
Alan Cox2e43ba72008-05-19 14:05:52 +0100235 if (get_user(options, p))
236 return -EFAULT;
Wim Van Sebroecke42162a2007-01-27 22:12:54 +0100237
Alan Cox2e43ba72008-05-19 14:05:52 +0100238 if (options & WDIOS_DISABLECARD) {
239 ibwdt_disable();
240 retval = 0;
241 }
242 if (options & WDIOS_ENABLECARD) {
243 ibwdt_ping();
244 retval = 0;
245 }
246 return retval;
Wim Van Sebroecke42162a2007-01-27 22:12:54 +0100247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 default:
Alan Cox2e43ba72008-05-19 14:05:52 +0100249 return -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251 return 0;
252}
253
Alan Cox2e43ba72008-05-19 14:05:52 +0100254static int ibwdt_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Alan Cox2e43ba72008-05-19 14:05:52 +0100256 if (test_and_set_bit(0, &ibwdt_is_open))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 if (nowayout)
259 __module_get(THIS_MODULE);
260
261 /* Activate */
262 ibwdt_ping();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return nonseekable_open(inode, file);
264}
265
266static int
267ibwdt_close(struct inode *inode, struct file *file)
268{
Wim Van Sebroeckc9d77102007-01-27 22:07:03 +0100269 if (expect_close == 42) {
Wim Van Sebroeck35d55c92007-01-27 21:50:53 +0100270 ibwdt_disable();
Wim Van Sebroeckc9d77102007-01-27 22:07:03 +0100271 } else {
Alan Cox2e43ba72008-05-19 14:05:52 +0100272 printk(KERN_CRIT PFX
273 "WDT device closed unexpectedly. WDT will not stop!\n");
Wim Van Sebroeckc9d77102007-01-27 22:07:03 +0100274 ibwdt_ping();
275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 clear_bit(0, &ibwdt_is_open);
277 expect_close = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return 0;
279}
280
281/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 * Kernel Interfaces
283 */
284
Arjan van de Ven62322d22006-07-03 00:24:21 -0700285static const struct file_operations ibwdt_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 .owner = THIS_MODULE,
287 .llseek = no_llseek,
288 .write = ibwdt_write,
Alan Cox2e43ba72008-05-19 14:05:52 +0100289 .unlocked_ioctl = ibwdt_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 .open = ibwdt_open,
291 .release = ibwdt_close,
292};
293
294static struct miscdevice ibwdt_miscdev = {
295 .minor = WATCHDOG_MINOR,
296 .name = "watchdog",
297 .fops = &ibwdt_fops,
298};
299
300/*
Wim Van Sebroeckf6e48032007-01-27 21:58:08 +0100301 * Init & exit routines
302 */
303
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +0100304static int __devinit ibwdt_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 int res;
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308#if WDT_START != WDT_STOP
309 if (!request_region(WDT_STOP, 1, "IB700 WDT")) {
Alan Cox2e43ba72008-05-19 14:05:52 +0100310 printk(KERN_ERR PFX "STOP method I/O %X is not available.\n",
311 WDT_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 res = -EIO;
313 goto out_nostopreg;
314 }
315#endif
316
317 if (!request_region(WDT_START, 1, "IB700 WDT")) {
Alan Cox2e43ba72008-05-19 14:05:52 +0100318 printk(KERN_ERR PFX "START method I/O %X is not available.\n",
319 WDT_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 res = -EIO;
321 goto out_nostartreg;
322 }
Wim Van Sebroeckf6e48032007-01-27 21:58:08 +0100323
Wim Van Sebroeckf6e48032007-01-27 21:58:08 +0100324 res = misc_register(&ibwdt_miscdev);
325 if (res) {
Alan Cox2e43ba72008-05-19 14:05:52 +0100326 printk(KERN_ERR PFX "failed to register misc device\n");
Wim Van Sebroeckf6e48032007-01-27 21:58:08 +0100327 goto out_nomisc;
328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return 0;
330
Wim Van Sebroeckf6e48032007-01-27 21:58:08 +0100331out_nomisc:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 release_region(WDT_START, 1);
333out_nostartreg:
334#if WDT_START != WDT_STOP
335 release_region(WDT_STOP, 1);
336#endif
337out_nostopreg:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return res;
339}
340
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +0100341static int __devexit ibwdt_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343 misc_deregister(&ibwdt_miscdev);
Alan Cox2e43ba72008-05-19 14:05:52 +0100344 release_region(WDT_START, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345#if WDT_START != WDT_STOP
Alan Cox2e43ba72008-05-19 14:05:52 +0100346 release_region(WDT_STOP, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347#endif
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +0100348 return 0;
349}
350
Wim Van Sebroeck35fcf532007-01-27 22:54:18 +0100351static void ibwdt_shutdown(struct platform_device *dev)
352{
353 /* Turn the WDT off if we have a soft shutdown */
354 ibwdt_disable();
355}
356
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +0100357static struct platform_driver ibwdt_driver = {
358 .probe = ibwdt_probe,
359 .remove = __devexit_p(ibwdt_remove),
Wim Van Sebroeck35fcf532007-01-27 22:54:18 +0100360 .shutdown = ibwdt_shutdown,
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +0100361 .driver = {
362 .owner = THIS_MODULE,
363 .name = DRV_NAME,
364 },
365};
366
367static int __init ibwdt_init(void)
368{
369 int err;
370
Alan Cox2e43ba72008-05-19 14:05:52 +0100371 printk(KERN_INFO PFX
372 "WDT driver for IB700 single board computer initialising.\n");
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +0100373
374 err = platform_driver_register(&ibwdt_driver);
375 if (err)
376 return err;
377
Alan Cox2e43ba72008-05-19 14:05:52 +0100378 ibwdt_platform_device = platform_device_register_simple(DRV_NAME,
379 -1, NULL, 0);
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +0100380 if (IS_ERR(ibwdt_platform_device)) {
381 err = PTR_ERR(ibwdt_platform_device);
382 goto unreg_platform_driver;
383 }
384
385 return 0;
386
387unreg_platform_driver:
388 platform_driver_unregister(&ibwdt_driver);
389 return err;
390}
391
392static void __exit ibwdt_exit(void)
393{
394 platform_device_unregister(ibwdt_platform_device);
395 platform_driver_unregister(&ibwdt_driver);
396 printk(KERN_INFO PFX "Watchdog Module Unloaded.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
399module_init(ibwdt_init);
400module_exit(ibwdt_exit);
401
402MODULE_AUTHOR("Charles Howes <chowes@vsol.net>");
403MODULE_DESCRIPTION("IB700 SBC watchdog driver");
404MODULE_LICENSE("GPL");
405MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
406
407/* end of ib700wdt.c */