1 // SPDX-License-Identifier: GPL-2.0+
3 * IB700 Single Board Computer WDT driver
5 * (c) Copyright 2001 Charles Howes <chowes@vsol.net>
7 * Based on advantechwdt.c which is based on acquirewdt.c which
10 * (c) Copyright 2000-2001 Marek Michalkiewicz <marekm@linux.org.pl>
12 * Based on acquirewdt.c which is based on wdt.c.
13 * Original copyright messages:
15 * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>,
16 * All Rights Reserved.
18 * Neither Alan Cox nor CymruNet Ltd. admit liability nor provide
19 * warranty for any of this software. This material is provided
20 * "AS-IS" and at no charge.
22 * (c) Copyright 1995 Alan Cox <alan@lxorguk.ukuu.org.uk>
24 * 14-Dec-2001 Matt Domsch <Matt_Domsch@dell.com>
25 * Added nowayout module option to override CONFIG_WATCHDOG_NOWAYOUT
26 * Added timeout module option to override default
30 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32 #include <linux/module.h>
33 #include <linux/types.h>
34 #include <linux/miscdevice.h>
35 #include <linux/watchdog.h>
36 #include <linux/ioport.h>
38 #include <linux/init.h>
39 #include <linux/spinlock.h>
40 #include <linux/moduleparam.h>
41 #include <linux/platform_device.h>
43 #include <linux/uaccess.h>
46 static struct platform_device
*ibwdt_platform_device
;
47 static unsigned long ibwdt_is_open
;
48 static DEFINE_SPINLOCK(ibwdt_lock
);
49 static char expect_close
;
51 /* Module information */
52 #define DRV_NAME "ib700wdt"
56 * Watchdog Timer Configuration
58 * The function of the watchdog timer is to reset the system
59 * automatically and is defined at I/O port 0443H. To enable the
60 * watchdog timer and allow the system to reset, write I/O port 0443H.
61 * To disable the timer, write I/O port 0441H for the system to stop the
62 * watchdog function. The timer has a tolerance of 20% for its
65 * The following describes how the timer should be programmed.
68 * MOV AX,000FH (Choose the values from 0 to F)
73 * MOV AX,000FH (Any value is fine.)
77 * Watchdog timer control table:
78 * Level Value Time/sec | Level Value Time/sec
90 #define WDT_STOP 0x441
91 #define WDT_START 0x443
94 #define WATCHDOG_TIMEOUT 30 /* 30 seconds +/- 20% */
95 static int timeout
= WATCHDOG_TIMEOUT
; /* in seconds */
96 module_param(timeout
, int, 0);
97 MODULE_PARM_DESC(timeout
,
98 "Watchdog timeout in seconds. 0<= timeout <=30, default="
99 __MODULE_STRING(WATCHDOG_TIMEOUT
) ".");
101 static bool nowayout
= WATCHDOG_NOWAYOUT
;
102 module_param(nowayout
, bool, 0);
103 MODULE_PARM_DESC(nowayout
,
104 "Watchdog cannot be stopped once started (default="
105 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
109 * Watchdog Operations
112 static void ibwdt_ping(void)
114 int wd_margin
= 15 - ((timeout
+ 1) / 2);
116 spin_lock(&ibwdt_lock
);
118 /* Write a watchdog value */
119 outb_p(wd_margin
, WDT_START
);
121 spin_unlock(&ibwdt_lock
);
124 static void ibwdt_disable(void)
126 spin_lock(&ibwdt_lock
);
128 spin_unlock(&ibwdt_lock
);
131 static int ibwdt_set_heartbeat(int t
)
141 * /dev/watchdog handling
144 static ssize_t
ibwdt_write(struct file
*file
, const char __user
*buf
,
145 size_t count
, loff_t
*ppos
)
151 /* In case it was set long ago */
154 for (i
= 0; i
!= count
; i
++) {
156 if (get_user(c
, buf
+ i
))
167 static long ibwdt_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
170 void __user
*argp
= (void __user
*)arg
;
171 int __user
*p
= argp
;
173 static const struct watchdog_info ident
= {
174 .options
= WDIOF_KEEPALIVEPING
| WDIOF_SETTIMEOUT
176 .firmware_version
= 1,
177 .identity
= "IB700 WDT",
181 case WDIOC_GETSUPPORT
:
182 if (copy_to_user(argp
, &ident
, sizeof(ident
)))
186 case WDIOC_GETSTATUS
:
187 case WDIOC_GETBOOTSTATUS
:
188 return put_user(0, p
);
190 case WDIOC_SETOPTIONS
:
192 int options
, retval
= -EINVAL
;
194 if (get_user(options
, p
))
197 if (options
& WDIOS_DISABLECARD
) {
201 if (options
& WDIOS_ENABLECARD
) {
207 case WDIOC_KEEPALIVE
:
211 case WDIOC_SETTIMEOUT
:
212 if (get_user(new_margin
, p
))
214 if (ibwdt_set_heartbeat(new_margin
))
219 case WDIOC_GETTIMEOUT
:
220 return put_user(timeout
, p
);
228 static int ibwdt_open(struct inode
*inode
, struct file
*file
)
230 if (test_and_set_bit(0, &ibwdt_is_open
))
233 __module_get(THIS_MODULE
);
237 return stream_open(inode
, file
);
240 static int ibwdt_close(struct inode
*inode
, struct file
*file
)
242 if (expect_close
== 42) {
245 pr_crit("WDT device closed unexpectedly. WDT will not stop!\n");
248 clear_bit(0, &ibwdt_is_open
);
257 static const struct file_operations ibwdt_fops
= {
258 .owner
= THIS_MODULE
,
260 .write
= ibwdt_write
,
261 .unlocked_ioctl
= ibwdt_ioctl
,
262 .compat_ioctl
= compat_ptr_ioctl
,
264 .release
= ibwdt_close
,
267 static struct miscdevice ibwdt_miscdev
= {
268 .minor
= WATCHDOG_MINOR
,
274 * Init & exit routines
277 static int __init
ibwdt_probe(struct platform_device
*dev
)
281 #if WDT_START != WDT_STOP
282 if (!request_region(WDT_STOP
, 1, "IB700 WDT")) {
283 pr_err("STOP method I/O %X is not available\n", WDT_STOP
);
289 if (!request_region(WDT_START
, 1, "IB700 WDT")) {
290 pr_err("START method I/O %X is not available\n", WDT_START
);
295 /* Check that the heartbeat value is within it's range ;
296 * if not reset to the default */
297 if (ibwdt_set_heartbeat(timeout
)) {
298 ibwdt_set_heartbeat(WATCHDOG_TIMEOUT
);
299 pr_info("timeout value must be 0<=x<=30, using %d\n", timeout
);
302 res
= misc_register(&ibwdt_miscdev
);
304 pr_err("failed to register misc device\n");
310 release_region(WDT_START
, 1);
312 #if WDT_START != WDT_STOP
313 release_region(WDT_STOP
, 1);
319 static int ibwdt_remove(struct platform_device
*dev
)
321 misc_deregister(&ibwdt_miscdev
);
322 release_region(WDT_START
, 1);
323 #if WDT_START != WDT_STOP
324 release_region(WDT_STOP
, 1);
329 static void ibwdt_shutdown(struct platform_device
*dev
)
331 /* Turn the WDT off if we have a soft shutdown */
335 static struct platform_driver ibwdt_driver
= {
336 .remove
= ibwdt_remove
,
337 .shutdown
= ibwdt_shutdown
,
343 static int __init
ibwdt_init(void)
347 pr_info("WDT driver for IB700 single board computer initialising\n");
349 ibwdt_platform_device
= platform_device_register_simple(DRV_NAME
,
351 if (IS_ERR(ibwdt_platform_device
))
352 return PTR_ERR(ibwdt_platform_device
);
354 err
= platform_driver_probe(&ibwdt_driver
, ibwdt_probe
);
356 goto unreg_platform_device
;
360 unreg_platform_device
:
361 platform_device_unregister(ibwdt_platform_device
);
365 static void __exit
ibwdt_exit(void)
367 platform_device_unregister(ibwdt_platform_device
);
368 platform_driver_unregister(&ibwdt_driver
);
369 pr_info("Watchdog Module Unloaded\n");
372 module_init(ibwdt_init
);
373 module_exit(ibwdt_exit
);
375 MODULE_AUTHOR("Charles Howes <chowes@vsol.net>");
376 MODULE_DESCRIPTION("IB700 SBC watchdog driver");
377 MODULE_LICENSE("GPL");
379 /* end of ib700wdt.c */