1 // SPDX-License-Identifier: GPL-2.0+
3 * ICP Wafer 5823 Single Board Computer WDT driver
4 * http://www.icpamerica.com/wafer_5823.php
5 * May also work on other similar models
7 * (c) Copyright 2002 Justin Cormack <justin@street-vision.com>
11 * Based on advantechwdt.c which is based on wdt.c.
12 * Original copyright messages:
14 * (c) Copyright 1996-1997 Alan Cox <alan@lxorguk.ukuu.org.uk>,
15 * All Rights Reserved.
17 * Neither Alan Cox nor CymruNet Ltd. admit liability nor provide
18 * warranty for any of this software. This material is provided
19 * "AS-IS" and at no charge.
21 * (c) Copyright 1995 Alan Cox <alan@lxorguk.ukuu.org.uk>
25 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
27 #include <linux/module.h>
28 #include <linux/moduleparam.h>
29 #include <linux/miscdevice.h>
30 #include <linux/watchdog.h>
32 #include <linux/ioport.h>
33 #include <linux/notifier.h>
34 #include <linux/reboot.h>
35 #include <linux/init.h>
36 #include <linux/spinlock.h>
38 #include <linux/uaccess.h>
40 #define WATCHDOG_NAME "Wafer 5823 WDT"
41 #define PFX WATCHDOG_NAME ": "
42 #define WD_TIMO 60 /* 60 sec default timeout */
44 static unsigned long wafwdt_is_open;
45 static char expect_close;
46 static DEFINE_SPINLOCK(wafwdt_lock);
49 * You must set these - there is no sane way to probe for this board.
51 * To enable, write the timeout value in seconds (1 to 255) to I/O
52 * port WDT_START, then read the port to start the watchdog. To pat
53 * the dog, read port WDT_STOP to stop the timer, then read WDT_START
54 * to restart it again.
57 static int wdt_stop = 0x843;
58 static int wdt_start = 0x443;
60 static int timeout = WD_TIMO; /* in seconds */
61 module_param(timeout, int, 0);
62 MODULE_PARM_DESC(timeout,
63 "Watchdog timeout in seconds. 1 <= timeout <= 255, default="
64 __MODULE_STRING(WD_TIMO) ".");
66 static bool nowayout = WATCHDOG_NOWAYOUT;
67 module_param(nowayout, bool, 0);
68 MODULE_PARM_DESC(nowayout,
69 "Watchdog cannot be stopped once started (default="
70 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
72 static void wafwdt_ping(void)
75 spin_lock(&wafwdt_lock);
78 spin_unlock(&wafwdt_lock);
81 static void wafwdt_start(void)
83 /* start up watchdog */
84 outb_p(timeout, wdt_start);
88 static void wafwdt_stop(void)
94 static ssize_t wafwdt_write(struct file *file, const char __user *buf,
95 size_t count, loff_t *ppos)
97 /* See if we got the magic character 'V' and reload the timer */
102 /* In case it was set long ago */
105 /* scan to see whether or not we got the magic
107 for (i = 0; i != count; i++) {
109 if (get_user(c, buf + i))
115 /* Well, anyhow someone wrote to us, we should
116 return that favour */
122 static long wafwdt_ioctl(struct file *file, unsigned int cmd,
126 void __user *argp = (void __user *)arg;
127 int __user *p = argp;
128 static const struct watchdog_info ident = {
129 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT |
131 .firmware_version = 1,
132 .identity = "Wafer 5823 WDT",
136 case WDIOC_GETSUPPORT:
137 if (copy_to_user(argp, &ident, sizeof(ident)))
141 case WDIOC_GETSTATUS:
142 case WDIOC_GETBOOTSTATUS:
143 return put_user(0, p);
145 case WDIOC_SETOPTIONS:
147 int options, retval = -EINVAL;
149 if (get_user(options, p))
152 if (options & WDIOS_DISABLECARD) {
157 if (options & WDIOS_ENABLECARD) {
165 case WDIOC_KEEPALIVE:
169 case WDIOC_SETTIMEOUT:
170 if (get_user(new_timeout, p))
172 if ((new_timeout < 1) || (new_timeout > 255))
174 timeout = new_timeout;
178 case WDIOC_GETTIMEOUT:
179 return put_user(timeout, p);
187 static int wafwdt_open(struct inode *inode, struct file *file)
189 if (test_and_set_bit(0, &wafwdt_is_open))
196 return stream_open(inode, file);
199 static int wafwdt_close(struct inode *inode, struct file *file)
201 if (expect_close == 42)
204 pr_crit("WDT device closed unexpectedly. WDT will not stop!\n");
207 clear_bit(0, &wafwdt_is_open);
213 * Notifier for system down
216 static int wafwdt_notify_sys(struct notifier_block *this, unsigned long code,
219 if (code == SYS_DOWN || code == SYS_HALT)
228 static const struct file_operations wafwdt_fops = {
229 .owner = THIS_MODULE,
231 .write = wafwdt_write,
232 .unlocked_ioctl = wafwdt_ioctl,
233 .compat_ioctl = compat_ptr_ioctl,
235 .release = wafwdt_close,
238 static struct miscdevice wafwdt_miscdev = {
239 .minor = WATCHDOG_MINOR,
241 .fops = &wafwdt_fops,
245 * The WDT needs to learn about soft shutdowns in order to
246 * turn the timebomb registers off.
249 static struct notifier_block wafwdt_notifier = {
250 .notifier_call = wafwdt_notify_sys,
253 static int __init wafwdt_init(void)
257 pr_info("WDT driver for Wafer 5823 single board computer initialising\n");
259 if (timeout < 1 || timeout > 255) {
261 pr_info("timeout value must be 1 <= x <= 255, using %d\n",
265 if (wdt_stop != wdt_start) {
266 if (!request_region(wdt_stop, 1, "Wafer 5823 WDT")) {
267 pr_err("I/O address 0x%04x already in use\n", wdt_stop);
273 if (!request_region(wdt_start, 1, "Wafer 5823 WDT")) {
274 pr_err("I/O address 0x%04x already in use\n", wdt_start);
279 ret = register_reboot_notifier(&wafwdt_notifier);
281 pr_err("cannot register reboot notifier (err=%d)\n", ret);
285 ret = misc_register(&wafwdt_miscdev);
287 pr_err("cannot register miscdev on minor=%d (err=%d)\n",
288 WATCHDOG_MINOR, ret);
292 pr_info("initialized. timeout=%d sec (nowayout=%d)\n",
297 unregister_reboot_notifier(&wafwdt_notifier);
299 release_region(wdt_start, 1);
301 if (wdt_stop != wdt_start)
302 release_region(wdt_stop, 1);
307 static void __exit wafwdt_exit(void)
309 misc_deregister(&wafwdt_miscdev);
310 unregister_reboot_notifier(&wafwdt_notifier);
311 if (wdt_stop != wdt_start)
312 release_region(wdt_stop, 1);
313 release_region(wdt_start, 1);
316 module_init(wafwdt_init);
317 module_exit(wafwdt_exit);
319 MODULE_AUTHOR("Justin Cormack");
320 MODULE_DESCRIPTION("ICP Wafer 5823 Single Board Computer WDT driver");
321 MODULE_LICENSE("GPL");
323 /* end of wafer5823wdt.c */