2 * MixCom Watchdog: A Simple Hardware Watchdog Device
3 * Based on Softdog driver by Alan Cox and PC Watchdog driver by Ken Hollis
5 * Author: Gergely Madarasz <gorgo@itc.hu>
7 * Copyright (c) 1999 ITConsult-Pro Co. <info@itc.hu>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
14 * Version 0.1 (99/04/15):
17 * Version 0.2 (99/06/16):
18 * - added kernel timer watchdog ping after close
19 * since the hardware does not support watchdog shutdown
21 * Version 0.3 (99/06/21):
22 * - added WDIOC_GETSTATUS and WDIOC_GETSUPPORT ioctl calls
24 * Version 0.3.1 (99/06/22):
25 * - allow module removal while internal timer is active,
26 * print warning about probable reset
28 * Version 0.4 (99/11/15):
29 * - support for one more type board
31 * Version 0.5 (2001/12/14) Matt Domsch <Matt_Domsch@dell.com>
32 * - added nowayout module option to override CONFIG_WATCHDOG_NOWAYOUT
38 #include <linux/module.h>
39 #include <linux/moduleparam.h>
40 #include <linux/config.h>
41 #include <linux/types.h>
42 #include <linux/miscdevice.h>
43 #include <linux/ioport.h>
44 #include <linux/watchdog.h>
46 #include <linux/reboot.h>
47 #include <linux/init.h>
48 #include <asm/uaccess.h>
51 static int mixcomwd_ioports
[] = { 0x180, 0x280, 0x380, 0x000 };
53 #define MIXCOM_WATCHDOG_OFFSET 0xc10
54 #define MIXCOM_ID 0x11
55 #define FLASHCOM_WATCHDOG_OFFSET 0x4
56 #define FLASHCOM_ID 0x18
58 static unsigned long mixcomwd_opened
; /* long req'd for setbit --RR */
60 static int watchdog_port
;
61 static int mixcomwd_timer_alive
;
62 static struct timer_list mixcomwd_timer
= TIMER_INITIALIZER(NULL
, 0, 0);
63 static char expect_close
;
65 #ifdef CONFIG_WATCHDOG_NOWAYOUT
66 static int nowayout
= 1;
68 static int nowayout
= 0;
71 module_param(nowayout
, int, 0);
72 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started (default=CONFIG_WATCHDOG_NOWAYOUT)");
74 static void mixcomwd_ping(void)
76 outb_p(55,watchdog_port
);
80 static void mixcomwd_timerfun(unsigned long d
)
84 mod_timer(&mixcomwd_timer
,jiffies
+ 5*HZ
);
88 * Allow only one person to hold it open
91 static int mixcomwd_open(struct inode
*inode
, struct file
*file
)
93 if(test_and_set_bit(0,&mixcomwd_opened
)) {
100 * fops_get() code via open() has already done
101 * a try_module_get() so it is safe to do the
104 __module_get(THIS_MODULE
);
106 if(mixcomwd_timer_alive
) {
107 del_timer(&mixcomwd_timer
);
108 mixcomwd_timer_alive
=0;
111 return nonseekable_open(inode
, file
);
114 static int mixcomwd_release(struct inode
*inode
, struct file
*file
)
116 if (expect_close
== 42) {
117 if(mixcomwd_timer_alive
) {
118 printk(KERN_ERR
"mixcomwd: release called while internal timer alive");
121 init_timer(&mixcomwd_timer
);
122 mixcomwd_timer
.expires
=jiffies
+ 5 * HZ
;
123 mixcomwd_timer
.function
=mixcomwd_timerfun
;
124 mixcomwd_timer
.data
=0;
125 mixcomwd_timer_alive
=1;
126 add_timer(&mixcomwd_timer
);
128 printk(KERN_CRIT
"mixcomwd: WDT device closed unexpectedly. WDT will not stop!\n");
131 clear_bit(0,&mixcomwd_opened
);
137 static ssize_t
mixcomwd_write(struct file
*file
, const char __user
*data
, size_t len
, loff_t
*ppos
)
144 /* In case it was set long ago */
147 for (i
= 0; i
!= len
; i
++) {
149 if (get_user(c
, data
+ i
))
160 static int mixcomwd_ioctl(struct inode
*inode
, struct file
*file
,
161 unsigned int cmd
, unsigned long arg
)
163 void __user
*argp
= (void __user
*)arg
;
164 int __user
*p
= argp
;
166 static struct watchdog_info ident
= {
167 .options
= WDIOF_KEEPALIVEPING
| WDIOF_MAGICCLOSE
,
168 .firmware_version
= 1,
169 .identity
= "MixCOM watchdog",
174 case WDIOC_GETSTATUS
:
175 status
=mixcomwd_opened
;
177 status
|=mixcomwd_timer_alive
;
179 if (copy_to_user(p
, &status
, sizeof(int))) {
183 case WDIOC_GETSUPPORT
:
184 if (copy_to_user(argp
, &ident
, sizeof(ident
))) {
188 case WDIOC_KEEPALIVE
:
197 static struct file_operations mixcomwd_fops
=
199 .owner
= THIS_MODULE
,
201 .write
= mixcomwd_write
,
202 .ioctl
= mixcomwd_ioctl
,
203 .open
= mixcomwd_open
,
204 .release
= mixcomwd_release
,
207 static struct miscdevice mixcomwd_miscdev
=
209 .minor
= WATCHDOG_MINOR
,
211 .fops
= &mixcomwd_fops
,
214 static int __init
mixcomwd_checkcard(int port
)
218 port
+= MIXCOM_WATCHDOG_OFFSET
;
219 if (!request_region(port
, 1, "MixCOM watchdog")) {
223 id
=inb_p(port
) & 0x3f;
225 release_region(port
, 1);
231 static int __init
flashcom_checkcard(int port
)
235 port
+= FLASHCOM_WATCHDOG_OFFSET
;
236 if (!request_region(port
, 1, "MixCOM watchdog")) {
241 if(id
!=FLASHCOM_ID
) {
242 release_region(port
, 1);
248 static int __init
mixcomwd_init(void)
254 for (i
= 0; !found
&& mixcomwd_ioports
[i
] != 0; i
++) {
255 watchdog_port
= mixcomwd_checkcard(mixcomwd_ioports
[i
]);
261 /* The FlashCOM card can be set up at 0x300 -> 0x378, in 0x8 jumps */
262 for (i
= 0x300; !found
&& i
< 0x380; i
+=0x8) {
263 watchdog_port
= flashcom_checkcard(i
);
270 printk("mixcomwd: No card detected, or port not available.\n");
274 ret
= misc_register(&mixcomwd_miscdev
);
277 release_region(watchdog_port
, 1);
281 printk(KERN_INFO
"MixCOM watchdog driver v%s, watchdog port at 0x%3x\n",VERSION
,watchdog_port
);
286 static void __exit
mixcomwd_exit(void)
289 if(mixcomwd_timer_alive
) {
290 printk(KERN_WARNING
"mixcomwd: I quit now, hardware will"
291 " probably reboot!\n");
292 del_timer(&mixcomwd_timer
);
293 mixcomwd_timer_alive
=0;
296 release_region(watchdog_port
,1);
297 misc_deregister(&mixcomwd_miscdev
);
300 module_init(mixcomwd_init
);
301 module_exit(mixcomwd_exit
);
303 MODULE_AUTHOR("Gergely Madarasz <gorgo@itc.hu>");
304 MODULE_DESCRIPTION("MixCom Watchdog driver");
305 MODULE_LICENSE("GPL");
306 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);