blob: 7df861bfdb2cd10a88798d6bee1318a8ae4dcdef [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 *
Alan Cox29fa0582008-10-27 15:17:56 +000014 * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>,
15 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
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 *
Alan Cox29fa0582008-10-27 15:17:56 +000026 * (c) Copyright 1995 Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 *
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
Joe Perches27c766a2012-02-15 15:06:19 -080034#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/module.h>
37#include <linux/types.h>
38#include <linux/miscdevice.h>
39#include <linux/watchdog.h>
40#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/init.h>
43#include <linux/spinlock.h>
44#include <linux/moduleparam.h>
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +010045#include <linux/platform_device.h>
Alan Cox2e43ba72008-05-19 14:05:52 +010046#include <linux/io.h>
47#include <linux/uaccess.h>
Wim Van Sebroeck089ab072008-07-15 11:46:11 +000048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/system.h>
50
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +010051static struct platform_device *ibwdt_platform_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static unsigned long ibwdt_is_open;
Alexey Dobriyanc7dfd0c2007-11-01 16:27:08 -070053static DEFINE_SPINLOCK(ibwdt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static char expect_close;
55
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +010056/* Module information */
57#define DRV_NAME "ib700wdt"
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59/*
60 *
61 * Watchdog Timer Configuration
62 *
63 * The function of the watchdog timer is to reset the system
64 * automatically and is defined at I/O port 0443H. To enable the
65 * watchdog timer and allow the system to reset, write I/O port 0443H.
66 * To disable the timer, write I/O port 0441H for the system to stop the
67 * watchdog function. The timer has a tolerance of 20% for its
68 * intervals.
69 *
70 * The following describes how the timer should be programmed.
71 *
72 * Enabling Watchdog:
73 * MOV AX,000FH (Choose the values from 0 to F)
74 * MOV DX,0443H
75 * OUT DX,AX
76 *
77 * Disabling Watchdog:
78 * MOV AX,000FH (Any value is fine.)
79 * MOV DX,0441H
80 * OUT DX,AX
81 *
82 * Watchdog timer control table:
83 * Level Value Time/sec | Level Value Time/sec
84 * 1 F 0 | 9 7 16
85 * 2 E 2 | 10 6 18
86 * 3 D 4 | 11 5 20
87 * 4 C 6 | 12 4 22
88 * 5 B 8 | 13 3 24
89 * 6 A 10 | 14 2 26
90 * 7 9 12 | 15 1 28
91 * 8 8 14 | 16 0 30
92 *
93 */
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#define WDT_STOP 0x441
96#define WDT_START 0x443
97
98/* Default timeout */
Wim Van Sebroeck794db262008-10-15 11:44:40 +000099#define WATCHDOG_TIMEOUT 30 /* 30 seconds +/- 20% */
100static int timeout = WATCHDOG_TIMEOUT; /* in seconds */
101module_param(timeout, int, 0);
102MODULE_PARM_DESC(timeout,
103 "Watchdog timeout in seconds. 0<= timeout <=30, default="
104 __MODULE_STRING(WATCHDOG_TIMEOUT) ".");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Andrey Panin4bfdf372005-07-27 11:43:58 -0700106static int nowayout = WATCHDOG_NOWAYOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107module_param(nowayout, int, 0);
Alan Cox2e43ba72008-05-19 14:05:52 +0100108MODULE_PARM_DESC(nowayout,
109 "Watchdog cannot be stopped once started (default="
110 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112
113/*
Wim Van Sebroeck35d55c92007-01-27 21:50:53 +0100114 * Watchdog Operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 */
116
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000117static void ibwdt_ping(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Wim Van Sebroeck794db262008-10-15 11:44:40 +0000119 int wd_margin = 15 - ((timeout + 1) / 2);
120
Wim Van Sebroecke42162a2007-01-27 22:12:54 +0100121 spin_lock(&ibwdt_lock);
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 /* Write a watchdog value */
124 outb_p(wd_margin, WDT_START);
Wim Van Sebroecke42162a2007-01-27 22:12:54 +0100125
126 spin_unlock(&ibwdt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000129static void ibwdt_disable(void)
Wim Van Sebroeck35d55c92007-01-27 21:50:53 +0100130{
Wim Van Sebroecke42162a2007-01-27 22:12:54 +0100131 spin_lock(&ibwdt_lock);
Wim Van Sebroeck35d55c92007-01-27 21:50:53 +0100132 outb_p(0, WDT_STOP);
Wim Van Sebroecke42162a2007-01-27 22:12:54 +0100133 spin_unlock(&ibwdt_lock);
Wim Van Sebroeck35d55c92007-01-27 21:50:53 +0100134}
135
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000136static int ibwdt_set_heartbeat(int t)
Wim Van Sebroeck35d55c92007-01-27 21:50:53 +0100137{
Wim Van Sebroeck794db262008-10-15 11:44:40 +0000138 if (t < 0 || t > 30)
Wim Van Sebroeck35d55c92007-01-27 21:50:53 +0100139 return -EINVAL;
140
Wim Van Sebroeck794db262008-10-15 11:44:40 +0000141 timeout = t;
Wim Van Sebroeck35d55c92007-01-27 21:50:53 +0100142 return 0;
143}
144
145/*
146 * /dev/watchdog handling
147 */
148
Alan Cox2e43ba72008-05-19 14:05:52 +0100149static ssize_t ibwdt_write(struct file *file, const char __user *buf,
150 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 if (count) {
153 if (!nowayout) {
154 size_t i;
155
156 /* In case it was set long ago */
157 expect_close = 0;
158
159 for (i = 0; i != count; i++) {
160 char c;
161 if (get_user(c, buf + i))
162 return -EFAULT;
163 if (c == 'V')
164 expect_close = 42;
165 }
166 }
167 ibwdt_ping();
168 }
169 return count;
170}
171
Alan Cox2e43ba72008-05-19 14:05:52 +0100172static long ibwdt_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Wim Van Sebroeck35d55c92007-01-27 21:50:53 +0100174 int new_margin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 void __user *argp = (void __user *)arg;
176 int __user *p = argp;
177
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000178 static const struct watchdog_info ident = {
Alan Cox2e43ba72008-05-19 14:05:52 +0100179 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT
180 | WDIOF_MAGICCLOSE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 .firmware_version = 1,
182 .identity = "IB700 WDT",
183 };
184
185 switch (cmd) {
186 case WDIOC_GETSUPPORT:
Alan Cox2e43ba72008-05-19 14:05:52 +0100187 if (copy_to_user(argp, &ident, sizeof(ident)))
188 return -EFAULT;
189 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 case WDIOC_GETSTATUS:
Wim Van Sebroeckc9d77102007-01-27 22:07:03 +0100192 case WDIOC_GETBOOTSTATUS:
Alan Cox2e43ba72008-05-19 14:05:52 +0100193 return put_user(0, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Wim Van Sebroecke42162a2007-01-27 22:12:54 +0100195 case WDIOC_SETOPTIONS:
196 {
Alan Cox2e43ba72008-05-19 14:05:52 +0100197 int options, retval = -EINVAL;
Wim Van Sebroecke42162a2007-01-27 22:12:54 +0100198
Alan Cox2e43ba72008-05-19 14:05:52 +0100199 if (get_user(options, p))
200 return -EFAULT;
Wim Van Sebroecke42162a2007-01-27 22:12:54 +0100201
Alan Cox2e43ba72008-05-19 14:05:52 +0100202 if (options & WDIOS_DISABLECARD) {
203 ibwdt_disable();
204 retval = 0;
205 }
206 if (options & WDIOS_ENABLECARD) {
207 ibwdt_ping();
208 retval = 0;
209 }
210 return retval;
Wim Van Sebroecke42162a2007-01-27 22:12:54 +0100211 }
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000212 case WDIOC_KEEPALIVE:
213 ibwdt_ping();
214 break;
215
216 case WDIOC_SETTIMEOUT:
217 if (get_user(new_margin, p))
218 return -EFAULT;
219 if (ibwdt_set_heartbeat(new_margin))
220 return -EINVAL;
221 ibwdt_ping();
222 /* Fall */
223
224 case WDIOC_GETTIMEOUT:
Wim Van Sebroeck794db262008-10-15 11:44:40 +0000225 return put_user(timeout, p);
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 default:
Alan Cox2e43ba72008-05-19 14:05:52 +0100228 return -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
230 return 0;
231}
232
Alan Cox2e43ba72008-05-19 14:05:52 +0100233static int ibwdt_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Alan Cox2e43ba72008-05-19 14:05:52 +0100235 if (test_and_set_bit(0, &ibwdt_is_open))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (nowayout)
238 __module_get(THIS_MODULE);
239
240 /* Activate */
241 ibwdt_ping();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return nonseekable_open(inode, file);
243}
244
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000245static int ibwdt_close(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Wim Van Sebroeckc9d77102007-01-27 22:07:03 +0100247 if (expect_close == 42) {
Wim Van Sebroeck35d55c92007-01-27 21:50:53 +0100248 ibwdt_disable();
Wim Van Sebroeckc9d77102007-01-27 22:07:03 +0100249 } else {
Joe Perches27c766a2012-02-15 15:06:19 -0800250 pr_crit("WDT device closed unexpectedly. WDT will not stop!\n");
Wim Van Sebroeckc9d77102007-01-27 22:07:03 +0100251 ibwdt_ping();
252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 clear_bit(0, &ibwdt_is_open);
254 expect_close = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 return 0;
256}
257
258/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 * Kernel Interfaces
260 */
261
Arjan van de Ven62322d22006-07-03 00:24:21 -0700262static const struct file_operations ibwdt_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 .owner = THIS_MODULE,
264 .llseek = no_llseek,
265 .write = ibwdt_write,
Alan Cox2e43ba72008-05-19 14:05:52 +0100266 .unlocked_ioctl = ibwdt_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 .open = ibwdt_open,
268 .release = ibwdt_close,
269};
270
271static struct miscdevice ibwdt_miscdev = {
272 .minor = WATCHDOG_MINOR,
273 .name = "watchdog",
274 .fops = &ibwdt_fops,
275};
276
277/*
Wim Van Sebroeckf6e48032007-01-27 21:58:08 +0100278 * Init & exit routines
279 */
280
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +0100281static int __devinit ibwdt_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 int res;
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285#if WDT_START != WDT_STOP
286 if (!request_region(WDT_STOP, 1, "IB700 WDT")) {
Joe Perches27c766a2012-02-15 15:06:19 -0800287 pr_err("STOP method I/O %X is not available\n", WDT_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 res = -EIO;
289 goto out_nostopreg;
290 }
291#endif
292
293 if (!request_region(WDT_START, 1, "IB700 WDT")) {
Joe Perches27c766a2012-02-15 15:06:19 -0800294 pr_err("START method I/O %X is not available\n", WDT_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 res = -EIO;
296 goto out_nostartreg;
297 }
Wim Van Sebroeckf6e48032007-01-27 21:58:08 +0100298
Wim Van Sebroeck794db262008-10-15 11:44:40 +0000299 /* Check that the heartbeat value is within it's range ;
300 * if not reset to the default */
301 if (ibwdt_set_heartbeat(timeout)) {
302 ibwdt_set_heartbeat(WATCHDOG_TIMEOUT);
Joe Perches27c766a2012-02-15 15:06:19 -0800303 pr_info("timeout value must be 0<=x<=30, using %d\n", timeout);
Wim Van Sebroeck794db262008-10-15 11:44:40 +0000304 }
305
Wim Van Sebroeckf6e48032007-01-27 21:58:08 +0100306 res = misc_register(&ibwdt_miscdev);
307 if (res) {
Joe Perches27c766a2012-02-15 15:06:19 -0800308 pr_err("failed to register misc device\n");
Wim Van Sebroeckf6e48032007-01-27 21:58:08 +0100309 goto out_nomisc;
310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return 0;
312
Wim Van Sebroeckf6e48032007-01-27 21:58:08 +0100313out_nomisc:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 release_region(WDT_START, 1);
315out_nostartreg:
316#if WDT_START != WDT_STOP
317 release_region(WDT_STOP, 1);
318#endif
319out_nostopreg:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return res;
321}
322
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +0100323static int __devexit ibwdt_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
325 misc_deregister(&ibwdt_miscdev);
Alan Cox2e43ba72008-05-19 14:05:52 +0100326 release_region(WDT_START, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327#if WDT_START != WDT_STOP
Alan Cox2e43ba72008-05-19 14:05:52 +0100328 release_region(WDT_STOP, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329#endif
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +0100330 return 0;
331}
332
Wim Van Sebroeck35fcf532007-01-27 22:54:18 +0100333static void ibwdt_shutdown(struct platform_device *dev)
334{
335 /* Turn the WDT off if we have a soft shutdown */
336 ibwdt_disable();
337}
338
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +0100339static struct platform_driver ibwdt_driver = {
340 .probe = ibwdt_probe,
341 .remove = __devexit_p(ibwdt_remove),
Wim Van Sebroeck35fcf532007-01-27 22:54:18 +0100342 .shutdown = ibwdt_shutdown,
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +0100343 .driver = {
344 .owner = THIS_MODULE,
345 .name = DRV_NAME,
346 },
347};
348
349static int __init ibwdt_init(void)
350{
351 int err;
352
Joe Perches27c766a2012-02-15 15:06:19 -0800353 pr_info("WDT driver for IB700 single board computer initialising\n");
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +0100354
355 err = platform_driver_register(&ibwdt_driver);
356 if (err)
357 return err;
358
Alan Cox2e43ba72008-05-19 14:05:52 +0100359 ibwdt_platform_device = platform_device_register_simple(DRV_NAME,
360 -1, NULL, 0);
Wim Van Sebroeck745ac1ea2007-01-27 22:39:46 +0100361 if (IS_ERR(ibwdt_platform_device)) {
362 err = PTR_ERR(ibwdt_platform_device);
363 goto unreg_platform_driver;
364 }
365
366 return 0;
367
368unreg_platform_driver:
369 platform_driver_unregister(&ibwdt_driver);
370 return err;
371}
372
373static void __exit ibwdt_exit(void)
374{
375 platform_device_unregister(ibwdt_platform_device);
376 platform_driver_unregister(&ibwdt_driver);
Joe Perches27c766a2012-02-15 15:06:19 -0800377 pr_info("Watchdog Module Unloaded\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
380module_init(ibwdt_init);
381module_exit(ibwdt_exit);
382
383MODULE_AUTHOR("Charles Howes <chowes@vsol.net>");
384MODULE_DESCRIPTION("IB700 SBC watchdog driver");
385MODULE_LICENSE("GPL");
386MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
387
388/* end of ib700wdt.c */