2 * Watchdog implementation based on z/VM Watchdog Timer API
4 * The user space watchdog daemon can use this driver as
5 * /dev/vmwatchdog to have z/VM execute the specified CP
6 * command when the timeout expires. The default command is
7 * "IPL", which which cause an immediate reboot.
9 #include <linux/init.h>
11 #include <linux/kernel.h>
12 #include <linux/miscdevice.h>
13 #include <linux/module.h>
14 #include <linux/moduleparam.h>
15 #include <linux/watchdog.h>
17 #include <asm/ebcdic.h>
19 #include <asm/uaccess.h>
21 #define MAX_CMDLEN 240
22 #define MIN_INTERVAL 15
23 static char vmwdt_cmd
[MAX_CMDLEN
] = "IPL";
24 static int vmwdt_conceal
;
26 #ifdef CONFIG_WATCHDOG_NOWAYOUT
27 static int vmwdt_nowayout
= 1;
29 static int vmwdt_nowayout
= 0;
32 MODULE_LICENSE("GPL");
33 MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");
34 MODULE_DESCRIPTION("z/VM Watchdog Timer");
35 module_param_string(cmd
, vmwdt_cmd
, MAX_CMDLEN
, 0644);
36 MODULE_PARM_DESC(cmd
, "CP command that is run when the watchdog triggers");
37 module_param_named(conceal
, vmwdt_conceal
, bool, 0644);
38 MODULE_PARM_DESC(conceal
, "Enable the CONCEAL CP option while the watchdog "
40 module_param_named(nowayout
, vmwdt_nowayout
, bool, 0);
41 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started"
42 " (default=CONFIG_WATCHDOG_NOWAYOUT)");
43 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);
45 static unsigned int vmwdt_interval
= 60;
46 static unsigned long vmwdt_is_open
;
47 static int vmwdt_expect_close
;
55 wdt_conceal
= 0x80000000,
58 static int __diag288(enum vmwdt_func func
, unsigned int timeout
,
59 char *cmd
, size_t len
)
61 register unsigned long __func
asm("2");
62 register unsigned long __timeout
asm("3");
63 register unsigned long __cmdp
asm("4");
64 register unsigned long __cmdl
asm("5");
69 __cmdp
= virt_to_phys(cmd
);
76 ".section .fixup,\"ax\"\n"
80 ".section __ex_table,\"a\"\n"
87 ".section .fixup,\"ax\"\n"
94 ".section __ex_table,\"a\"\n"
100 : "i"(-EINVAL
), "d"(__func
), "d"(__timeout
),
101 "d"(__cmdp
), "d"(__cmdl
)
106 static int vmwdt_keepalive(void)
108 /* we allocate new memory every time to avoid having
109 * to track the state. static allocation is not an
110 * option since that might not be contiguous in real
111 * storage in case of a modular build */
112 static char *ebc_cmd
;
117 ebc_cmd
= kmalloc(MAX_CMDLEN
, GFP_KERNEL
);
121 len
= strlcpy(ebc_cmd
, vmwdt_cmd
, MAX_CMDLEN
);
122 ASCEBC(ebc_cmd
, MAX_CMDLEN
);
123 EBC_TOUPPER(ebc_cmd
, MAX_CMDLEN
);
125 func
= vmwdt_conceal
? (wdt_init
| wdt_conceal
) : wdt_init
;
126 ret
= __diag288(func
, vmwdt_interval
, ebc_cmd
, len
);
130 printk(KERN_WARNING
"%s: problem setting interval %d, "
131 "cmd %s\n", __FUNCTION__
, vmwdt_interval
,
137 static int vmwdt_disable(void)
139 int ret
= __diag288(wdt_cancel
, 0, "", 0);
141 printk(KERN_WARNING
"%s: problem disabling watchdog\n",
147 static int __init
vmwdt_probe(void)
149 /* there is no real way to see if the watchdog is supported,
150 * so we try initializing it with a NOP command ("BEGIN")
151 * that won't cause any harm even if the following disable
152 * fails for some reason */
153 static char __initdata ebc_begin
[] = {
154 194, 197, 199, 201, 213
156 if (__diag288(wdt_init
, 15, ebc_begin
, sizeof(ebc_begin
)) != 0) {
157 printk(KERN_INFO
"z/VM watchdog not available\n");
160 return vmwdt_disable();
163 static int vmwdt_open(struct inode
*i
, struct file
*f
)
166 if (test_and_set_bit(0, &vmwdt_is_open
))
168 ret
= vmwdt_keepalive();
170 clear_bit(0, &vmwdt_is_open
);
171 return ret
? ret
: nonseekable_open(i
, f
);
174 static int vmwdt_close(struct inode
*i
, struct file
*f
)
176 if (vmwdt_expect_close
== 42)
178 vmwdt_expect_close
= 0;
179 clear_bit(0, &vmwdt_is_open
);
183 static struct watchdog_info vmwdt_info
= {
184 .options
= WDIOF_SETTIMEOUT
| WDIOF_KEEPALIVEPING
| WDIOF_MAGICCLOSE
,
185 .firmware_version
= 0,
186 .identity
= "z/VM Watchdog Timer",
189 static int vmwdt_ioctl(struct inode
*i
, struct file
*f
,
190 unsigned int cmd
, unsigned long arg
)
193 case WDIOC_GETSUPPORT
:
194 if (copy_to_user((void __user
*)arg
, &vmwdt_info
,
198 case WDIOC_GETSTATUS
:
199 case WDIOC_GETBOOTSTATUS
:
200 return put_user(0, (int *)arg
);
203 case WDIOC_SETOPTIONS
:
206 if (get_user(options
, (int __user
*)arg
))
209 if (options
& WDIOS_DISABLECARD
) {
210 ret
= vmwdt_disable();
214 if (options
& WDIOS_ENABLECARD
) {
215 ret
= vmwdt_keepalive();
219 case WDIOC_GETTIMEOUT
:
220 return put_user(vmwdt_interval
, (int __user
*)arg
);
221 case WDIOC_SETTIMEOUT
:
224 if (get_user(interval
, (int __user
*)arg
))
226 if (interval
< MIN_INTERVAL
)
228 vmwdt_interval
= interval
;
230 return vmwdt_keepalive();
231 case WDIOC_KEEPALIVE
:
232 return vmwdt_keepalive();
238 static ssize_t
vmwdt_write(struct file
*f
, const char __user
*buf
,
239 size_t count
, loff_t
*ppos
)
242 if (!vmwdt_nowayout
) {
245 /* note: just in case someone wrote the magic character
246 * five months ago... */
247 vmwdt_expect_close
= 0;
249 for (i
= 0; i
!= count
; i
++) {
251 if (get_user(c
, buf
+i
))
254 vmwdt_expect_close
= 42;
257 /* someone wrote to us, we should restart timer */
263 static struct file_operations vmwdt_fops
= {
265 .release
= &vmwdt_close
,
266 .ioctl
= &vmwdt_ioctl
,
267 .write
= &vmwdt_write
,
268 .owner
= THIS_MODULE
,
271 static struct miscdevice vmwdt_dev
= {
272 .minor
= WATCHDOG_MINOR
,
277 static int __init
vmwdt_init(void)
284 return misc_register(&vmwdt_dev
);
286 module_init(vmwdt_init
);
288 static void __exit
vmwdt_exit(void)
290 WARN_ON(misc_deregister(&vmwdt_dev
) != 0);
292 module_exit(vmwdt_exit
);