2 * MachZ ZF-Logic Watchdog Timer driver for Linux
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
10 * The author does NOT admit liability nor provide warranty for
11 * any of this software. This material is provided "AS-IS" in
12 * the hope that it may be useful for others.
14 * Author: Fernando Fuganti <fuganti@conectiva.com.br>
16 * Based on sbc60xxwdt.c by Jakob Oestergaard
19 * We have two timers (wd#1, wd#2) driven by a 32 KHz clock with the
23 * After the expiration of wd#1, it can generate a NMI, SCI, SMI, or
24 * a system RESET and it starts wd#2 that unconditionaly will RESET
25 * the system when the counter reaches zero.
27 * 14-Dec-2001 Matt Domsch <Matt_Domsch@dell.com>
28 * Added nowayout module option to override CONFIG_WATCHDOG_NOWAYOUT
31 #include <linux/module.h>
32 #include <linux/moduleparam.h>
33 #include <linux/types.h>
34 #include <linux/timer.h>
35 #include <linux/jiffies.h>
36 #include <linux/miscdevice.h>
37 #include <linux/watchdog.h>
39 #include <linux/ioport.h>
40 #include <linux/notifier.h>
41 #include <linux/reboot.h>
42 #include <linux/init.h>
45 #include <asm/uaccess.h>
46 #include <asm/system.h>
49 #define ZF_IOBASE 0x218
55 /* indexes */ /* size */
56 #define ZFL_VERSION 0x02 /* 16 */
57 #define CONTROL 0x10 /* 16 */
58 #define STATUS 0x12 /* 8 */
59 #define COUNTER_1 0x0C /* 16 */
60 #define COUNTER_2 0x0E /* 8 */
61 #define PULSE_LEN 0x0F /* 8 */
64 #define ENABLE_WD1 0x0001
65 #define ENABLE_WD2 0x0002
66 #define RESET_WD1 0x0010
67 #define RESET_WD2 0x0020
68 #define GEN_SCI 0x0100
69 #define GEN_NMI 0x0200
70 #define GEN_SMI 0x0400
71 #define GEN_RESET 0x0800
79 #define zf_writew(port, data) { outb(port, INDEX); outw(data, DATA_W); }
80 #define zf_writeb(port, data) { outb(port, INDEX); outb(data, DATA_B); }
81 #define zf_get_ZFL_version() zf_readw(ZFL_VERSION)
84 static unsigned short zf_readw(unsigned char port
)
91 MODULE_AUTHOR("Fernando Fuganti <fuganti@conectiva.com.br>");
92 MODULE_DESCRIPTION("MachZ ZF-Logic Watchdog driver");
93 MODULE_LICENSE("GPL");
94 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);
96 static int nowayout
= WATCHDOG_NOWAYOUT
;
97 module_param(nowayout
, int, 0);
98 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started (default=" __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
100 #define PFX "machzwd"
102 static struct watchdog_info zf_info
= {
103 .options
= WDIOF_KEEPALIVEPING
| WDIOF_MAGICCLOSE
,
104 .firmware_version
= 1,
105 .identity
= "ZF-Logic watchdog",
110 * action refers to action taken when watchdog resets
115 * defaults to GEN_RESET (0)
117 static int action
= 0;
118 module_param(action
, int, 0);
119 MODULE_PARM_DESC(action
, "after watchdog resets, generate: 0 = RESET(*) 1 = SMI 2 = NMI 3 = SCI");
121 static void zf_ping(unsigned long data
);
123 static int zf_action
= GEN_RESET
;
124 static unsigned long zf_is_open
;
125 static char zf_expect_close
;
126 static DEFINE_SPINLOCK(zf_lock
);
127 static DEFINE_SPINLOCK(zf_port_lock
);
128 static DEFINE_TIMER(zf_timer
, zf_ping
, 0, 0);
129 static unsigned long next_heartbeat
= 0;
132 /* timeout for user land heart beat (10 seconds) */
133 #define ZF_USER_TIMEO (HZ*10)
135 /* timeout for hardware watchdog (~500ms) */
136 #define ZF_HW_TIMEO (HZ/2)
138 /* number of ticks on WD#1 (driven by a 32KHz clock, 2s) */
139 #define ZF_CTIMEOUT 0xffff
142 # define dprintk(format, args...)
144 <<<<<<< HEAD
:drivers
/watchdog
/machzwd
.c
145 # define dprintk(format, args...) printk(KERN_DEBUG PFX ":%s:%d: " format, __FUNCTION__, __LINE__ , ## args)
147 # define dprintk(format, args...) printk(KERN_DEBUG PFX ":%s:%d: " format, __func__, __LINE__ , ## args)
148 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/watchdog
/machzwd
.c
152 static inline void zf_set_status(unsigned char new)
154 zf_writeb(STATUS
, new);
158 /* CONTROL register functions */
160 static inline unsigned short zf_get_control(void)
162 return zf_readw(CONTROL
);
165 static inline void zf_set_control(unsigned short new)
167 zf_writew(CONTROL
, new);
171 /* WD#? counter functions */
173 * Just set counter value
176 static inline void zf_set_timer(unsigned short new, unsigned char n
)
180 zf_writew(COUNTER_1
, new);
182 zf_writeb(COUNTER_2
, new > 0xff ? 0xff : new);
189 * stop hardware timer
191 static void zf_timer_off(void)
193 unsigned int ctrl_reg
= 0;
196 /* stop internal ping */
197 del_timer_sync(&zf_timer
);
199 spin_lock_irqsave(&zf_port_lock
, flags
);
200 /* stop watchdog timer */
201 ctrl_reg
= zf_get_control();
202 ctrl_reg
|= (ENABLE_WD1
|ENABLE_WD2
); /* disable wd1 and wd2 */
203 ctrl_reg
&= ~(ENABLE_WD1
|ENABLE_WD2
);
204 zf_set_control(ctrl_reg
);
205 spin_unlock_irqrestore(&zf_port_lock
, flags
);
207 printk(KERN_INFO PFX
": Watchdog timer is now disabled\n");
212 * start hardware timer
214 static void zf_timer_on(void)
216 unsigned int ctrl_reg
= 0;
219 spin_lock_irqsave(&zf_port_lock
, flags
);
221 zf_writeb(PULSE_LEN
, 0xff);
223 zf_set_timer(ZF_CTIMEOUT
, WD1
);
226 next_heartbeat
= jiffies
+ ZF_USER_TIMEO
;
228 /* start the timer for internal ping */
229 mod_timer(&zf_timer
, jiffies
+ ZF_HW_TIMEO
);
231 /* start watchdog timer */
232 ctrl_reg
= zf_get_control();
233 ctrl_reg
|= (ENABLE_WD1
|zf_action
);
234 zf_set_control(ctrl_reg
);
235 spin_unlock_irqrestore(&zf_port_lock
, flags
);
237 printk(KERN_INFO PFX
": Watchdog timer is now enabled\n");
241 static void zf_ping(unsigned long data
)
243 unsigned int ctrl_reg
= 0;
246 zf_writeb(COUNTER_2
, 0xff);
248 if(time_before(jiffies
, next_heartbeat
)){
250 dprintk("time_before: %ld\n", next_heartbeat
- jiffies
);
253 * reset event is activated by transition from 0 to 1 on
254 * RESET_WD1 bit and we assume that it is already zero...
257 spin_lock_irqsave(&zf_port_lock
, flags
);
258 ctrl_reg
= zf_get_control();
259 ctrl_reg
|= RESET_WD1
;
260 zf_set_control(ctrl_reg
);
262 /* ...and nothing changes until here */
263 ctrl_reg
&= ~(RESET_WD1
);
264 zf_set_control(ctrl_reg
);
265 spin_unlock_irqrestore(&zf_port_lock
, flags
);
267 mod_timer(&zf_timer
, jiffies
+ ZF_HW_TIMEO
);
269 printk(KERN_CRIT PFX
": I will reset your machine\n");
273 static ssize_t
zf_write(struct file
*file
, const char __user
*buf
, size_t count
,
276 /* See if we got the magic character */
280 * no need to check for close confirmation
281 * no way to disable watchdog ;)
287 * note: just in case someone wrote the magic character
293 for (ofs
= 0; ofs
!= count
; ofs
++){
295 if (get_user(c
, buf
+ ofs
))
298 zf_expect_close
= 42;
299 dprintk("zf_expect_close = 42\n");
305 * Well, anyhow someone wrote to us,
306 * we should return that favour
308 next_heartbeat
= jiffies
+ ZF_USER_TIMEO
;
309 dprintk("user ping at %ld\n", jiffies
);
316 static int zf_ioctl(struct inode
*inode
, struct file
*file
, unsigned int cmd
,
319 void __user
*argp
= (void __user
*)arg
;
320 int __user
*p
= argp
;
322 case WDIOC_GETSUPPORT
:
323 if (copy_to_user(argp
, &zf_info
, sizeof(zf_info
)))
327 case WDIOC_GETSTATUS
:
328 case WDIOC_GETBOOTSTATUS
:
329 return put_user(0, p
);
331 case WDIOC_KEEPALIVE
:
342 static int zf_open(struct inode
*inode
, struct file
*file
)
345 if(test_and_set_bit(0, &zf_is_open
)) {
346 spin_unlock(&zf_lock
);
351 __module_get(THIS_MODULE
);
353 spin_unlock(&zf_lock
);
357 return nonseekable_open(inode
, file
);
360 static int zf_close(struct inode
*inode
, struct file
*file
)
362 if(zf_expect_close
== 42){
365 del_timer(&zf_timer
);
366 printk(KERN_ERR PFX
": device file closed unexpectedly. Will not stop the WDT!\n");
370 clear_bit(0, &zf_is_open
);
371 spin_unlock(&zf_lock
);
379 * Notifier for system down
382 static int zf_notify_sys(struct notifier_block
*this, unsigned long code
,
385 if(code
== SYS_DOWN
|| code
== SYS_HALT
){
395 static const struct file_operations zf_fops
= {
396 .owner
= THIS_MODULE
,
404 static struct miscdevice zf_miscdev
= {
405 .minor
= WATCHDOG_MINOR
,
412 * The device needs to learn about soft shutdowns in order to
413 * turn the timebomb registers off.
415 static struct notifier_block zf_notifier
= {
416 .notifier_call
= zf_notify_sys
,
419 static void __init
zf_show_action(int act
)
421 char *str
[] = { "RESET", "SMI", "NMI", "SCI" };
423 printk(KERN_INFO PFX
": Watchdog using action = %s\n", str
[act
]);
426 static int __init
zf_init(void)
430 printk(KERN_INFO PFX
": MachZ ZF-Logic Watchdog driver initializing.\n");
432 ret
= zf_get_ZFL_version();
433 if ((!ret
) || (ret
== 0xffff)) {
434 printk(KERN_WARNING PFX
": no ZF-Logic found\n");
438 if((action
<= 3) && (action
>= 0)){
439 zf_action
= zf_action
>>action
;
443 zf_show_action(action
);
445 if(!request_region(ZF_IOBASE
, 3, "MachZ ZFL WDT")){
446 printk(KERN_ERR
"cannot reserve I/O ports at %d\n",
452 ret
= register_reboot_notifier(&zf_notifier
);
454 printk(KERN_ERR
"can't register reboot notifier (err=%d)\n",
459 ret
= misc_register(&zf_miscdev
);
461 printk(KERN_ERR
"can't misc_register on minor=%d\n",
472 unregister_reboot_notifier(&zf_notifier
);
474 release_region(ZF_IOBASE
, 3);
480 static void __exit
zf_exit(void)
484 misc_deregister(&zf_miscdev
);
485 unregister_reboot_notifier(&zf_notifier
);
486 release_region(ZF_IOBASE
, 3);
489 module_init(zf_init
);
490 module_exit(zf_exit
);