2 * Watchdog driver for the mpcore watchdog timer
4 * (c) Copyright 2004 ARM Limited
6 * Based on the SoftDog driver:
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
15 * Neither Alan Cox nor CymruNet Ltd. admit liability nor provide
16 * warranty for any of this software. This material is provided
17 * "AS-IS" and at no charge.
22 #include <linux/module.h>
23 #include <linux/moduleparam.h>
24 #include <linux/types.h>
25 #include <linux/miscdevice.h>
26 #include <linux/watchdog.h>
28 #include <linux/reboot.h>
29 #include <linux/init.h>
30 #include <linux/interrupt.h>
31 #include <linux/platform_device.h>
32 #include <linux/uaccess.h>
33 #include <linux/slab.h>
36 #include <asm/smp_twd.h>
39 unsigned long timer_alive;
47 static struct platform_device *mpcore_wdt_dev;
48 static DEFINE_SPINLOCK(wdt_lock);
50 #define TIMER_MARGIN 60
51 static int mpcore_margin = TIMER_MARGIN;
52 module_param(mpcore_margin, int, 0);
53 MODULE_PARM_DESC(mpcore_margin,
54 "MPcore timer margin in seconds. (0 < mpcore_margin < 65536, default="
55 __MODULE_STRING(TIMER_MARGIN) ")");
57 static int nowayout = WATCHDOG_NOWAYOUT;
58 module_param(nowayout, int, 0);
59 MODULE_PARM_DESC(nowayout,
60 "Watchdog cannot be stopped once started (default="
61 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
63 #define ONLY_TESTING 0
64 static int mpcore_noboot = ONLY_TESTING;
65 module_param(mpcore_noboot, int, 0);
66 MODULE_PARM_DESC(mpcore_noboot, "MPcore watchdog action, "
67 "set to 1 to ignore reboots, 0 to reboot (default="
68 __MODULE_STRING(ONLY_TESTING) ")");
71 * This is the interrupt handler. Note that we only use this
72 * in testing mode, so don't actually do a reboot here.
74 static irqreturn_t mpcore_wdt_fire(int irq, void *arg)
76 struct mpcore_wdt *wdt = arg;
78 /* Check it really was our interrupt */
79 if (readl(wdt->base + TWD_WDOG_INTSTAT)) {
80 dev_printk(KERN_CRIT, wdt->dev,
81 "Triggered - Reboot ignored.\n");
82 /* Clear the interrupt on the watchdog */
83 writel(1, wdt->base + TWD_WDOG_INTSTAT);
90 * mpcore_wdt_keepalive - reload the timer
92 * Note that the spec says a DIFFERENT value must be written to the reload
93 * register each time. The "perturb" variable deals with this by adding 1
94 * to the count every other time the function is called.
96 static void mpcore_wdt_keepalive(struct mpcore_wdt *wdt)
100 spin_lock(&wdt_lock);
101 /* Assume prescale is set to 256 */
102 count = __raw_readl(wdt->base + TWD_WDOG_COUNTER);
103 count = (0xFFFFFFFFU - count) * (HZ / 5);
104 count = (count / 256) * mpcore_margin;
106 /* Reload the counter */
107 writel(count + wdt->perturb, wdt->base + TWD_WDOG_LOAD);
108 wdt->perturb = wdt->perturb ? 0 : 1;
109 spin_unlock(&wdt_lock);
112 static void mpcore_wdt_stop(struct mpcore_wdt *wdt)
114 spin_lock(&wdt_lock);
115 writel(0x12345678, wdt->base + TWD_WDOG_DISABLE);
116 writel(0x87654321, wdt->base + TWD_WDOG_DISABLE);
117 writel(0x0, wdt->base + TWD_WDOG_CONTROL);
118 spin_unlock(&wdt_lock);
121 static void mpcore_wdt_start(struct mpcore_wdt *wdt)
123 dev_printk(KERN_INFO, wdt->dev, "enabling watchdog.\n");
125 /* This loads the count register but does NOT start the count yet */
126 mpcore_wdt_keepalive(wdt);
129 /* Enable watchdog - prescale=256, watchdog mode=0, enable=1 */
130 writel(0x0000FF01, wdt->base + TWD_WDOG_CONTROL);
132 /* Enable watchdog - prescale=256, watchdog mode=1, enable=1 */
133 writel(0x0000FF09, wdt->base + TWD_WDOG_CONTROL);
137 static int mpcore_wdt_set_heartbeat(int t)
139 if (t < 0x0001 || t > 0xFFFF)
147 * /dev/watchdog handling
149 static int mpcore_wdt_open(struct inode *inode, struct file *file)
151 struct mpcore_wdt *wdt = platform_get_drvdata(mpcore_wdt_dev);
153 if (test_and_set_bit(0, &wdt->timer_alive))
157 __module_get(THIS_MODULE);
159 file->private_data = wdt;
164 mpcore_wdt_start(wdt);
166 return nonseekable_open(inode, file);
169 static int mpcore_wdt_release(struct inode *inode, struct file *file)
171 struct mpcore_wdt *wdt = file->private_data;
174 * Shut off the timer.
175 * Lock it in if it's a module and we set nowayout
177 if (wdt->expect_close == 42)
178 mpcore_wdt_stop(wdt);
180 dev_printk(KERN_CRIT, wdt->dev,
181 "unexpected close, not stopping watchdog!\n");
182 mpcore_wdt_keepalive(wdt);
184 clear_bit(0, &wdt->timer_alive);
185 wdt->expect_close = 0;
189 static ssize_t mpcore_wdt_write(struct file *file, const char *data,
190 size_t len, loff_t *ppos)
192 struct mpcore_wdt *wdt = file->private_data;
201 /* In case it was set long ago */
202 wdt->expect_close = 0;
204 for (i = 0; i != len; i++) {
207 if (get_user(c, data + i))
210 wdt->expect_close = 42;
213 mpcore_wdt_keepalive(wdt);
218 static const struct watchdog_info ident = {
219 .options = WDIOF_SETTIMEOUT |
220 WDIOF_KEEPALIVEPING |
222 .identity = "MPcore Watchdog",
225 static long mpcore_wdt_ioctl(struct file *file, unsigned int cmd,
228 struct mpcore_wdt *wdt = file->private_data;
231 struct watchdog_info ident;
235 if (_IOC_DIR(cmd) && _IOC_SIZE(cmd) > sizeof(uarg))
238 if (_IOC_DIR(cmd) & _IOC_WRITE) {
239 ret = copy_from_user(&uarg, (void __user *)arg, _IOC_SIZE(cmd));
245 case WDIOC_GETSUPPORT:
250 case WDIOC_GETSTATUS:
251 case WDIOC_GETBOOTSTATUS:
256 case WDIOC_SETOPTIONS:
258 if (uarg.i & WDIOS_DISABLECARD) {
259 mpcore_wdt_stop(wdt);
262 if (uarg.i & WDIOS_ENABLECARD) {
263 mpcore_wdt_start(wdt);
268 case WDIOC_KEEPALIVE:
269 mpcore_wdt_keepalive(wdt);
273 case WDIOC_SETTIMEOUT:
274 ret = mpcore_wdt_set_heartbeat(uarg.i);
278 mpcore_wdt_keepalive(wdt);
280 case WDIOC_GETTIMEOUT:
281 uarg.i = mpcore_margin;
289 if (ret == 0 && _IOC_DIR(cmd) & _IOC_READ) {
290 ret = copy_to_user((void __user *)arg, &uarg, _IOC_SIZE(cmd));
298 * System shutdown handler. Turn off the watchdog if we're
299 * restarting or halting the system.
301 static void mpcore_wdt_shutdown(struct platform_device *dev)
303 struct mpcore_wdt *wdt = platform_get_drvdata(dev);
305 if (system_state == SYSTEM_RESTART || system_state == SYSTEM_HALT)
306 mpcore_wdt_stop(wdt);
312 static const struct file_operations mpcore_wdt_fops = {
313 .owner = THIS_MODULE,
315 .write = mpcore_wdt_write,
316 .unlocked_ioctl = mpcore_wdt_ioctl,
317 .open = mpcore_wdt_open,
318 .release = mpcore_wdt_release,
321 static struct miscdevice mpcore_wdt_miscdev = {
322 .minor = WATCHDOG_MINOR,
324 .fops = &mpcore_wdt_fops,
327 static int __devinit mpcore_wdt_probe(struct platform_device *dev)
329 struct mpcore_wdt *wdt;
330 struct resource *res;
333 /* We only accept one device, and it must have an id of -1 */
337 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
343 wdt = kzalloc(sizeof(struct mpcore_wdt), GFP_KERNEL);
349 wdt->dev = &dev->dev;
350 wdt->irq = platform_get_irq(dev, 0);
355 wdt->base = ioremap(res->start, resource_size(res));
361 mpcore_wdt_miscdev.parent = &dev->dev;
362 ret = misc_register(&mpcore_wdt_miscdev);
364 dev_printk(KERN_ERR, wdt->dev,
365 "cannot register miscdev on minor=%d (err=%d)\n",
366 WATCHDOG_MINOR, ret);
370 ret = request_irq(wdt->irq, mpcore_wdt_fire, 0, "mpcore_wdt", wdt);
372 dev_printk(KERN_ERR, wdt->dev,
373 "cannot register IRQ%d for watchdog\n", wdt->irq);
377 mpcore_wdt_stop(wdt);
378 platform_set_drvdata(dev, wdt);
379 mpcore_wdt_dev = dev;
384 misc_deregister(&mpcore_wdt_miscdev);
393 static int __devexit mpcore_wdt_remove(struct platform_device *dev)
395 struct mpcore_wdt *wdt = platform_get_drvdata(dev);
397 platform_set_drvdata(dev, NULL);
399 misc_deregister(&mpcore_wdt_miscdev);
401 mpcore_wdt_dev = NULL;
403 free_irq(wdt->irq, wdt);
410 static int mpcore_wdt_suspend(struct platform_device *dev, pm_message_t msg)
412 struct mpcore_wdt *wdt = platform_get_drvdata(dev);
413 mpcore_wdt_stop(wdt); /* Turn the WDT off */
417 static int mpcore_wdt_resume(struct platform_device *dev)
419 struct mpcore_wdt *wdt = platform_get_drvdata(dev);
420 /* re-activate timer */
421 if (test_bit(0, &wdt->timer_alive))
422 mpcore_wdt_start(wdt);
426 #define mpcore_wdt_suspend NULL
427 #define mpcore_wdt_resume NULL
430 /* work with hotplug and coldplug */
431 MODULE_ALIAS("platform:mpcore_wdt");
433 static struct platform_driver mpcore_wdt_driver = {
434 .probe = mpcore_wdt_probe,
435 .remove = __devexit_p(mpcore_wdt_remove),
436 .suspend = mpcore_wdt_suspend,
437 .resume = mpcore_wdt_resume,
438 .shutdown = mpcore_wdt_shutdown,
440 .owner = THIS_MODULE,
441 .name = "mpcore_wdt",
445 static char banner[] __initdata = KERN_INFO "MPcore Watchdog Timer: 0.1. "
446 "mpcore_noboot=%d mpcore_margin=%d sec (nowayout= %d)\n";
448 static int __init mpcore_wdt_init(void)
451 * Check that the margin value is within it's range;
452 * if not reset to the default
454 if (mpcore_wdt_set_heartbeat(mpcore_margin)) {
455 mpcore_wdt_set_heartbeat(TIMER_MARGIN);
456 printk(KERN_INFO "mpcore_margin value must be 0 < mpcore_margin < 65536, using %d\n",
460 printk(banner, mpcore_noboot, mpcore_margin, nowayout);
462 return platform_driver_register(&mpcore_wdt_driver);
465 static void __exit mpcore_wdt_exit(void)
467 platform_driver_unregister(&mpcore_wdt_driver);
470 module_init(mpcore_wdt_init);
471 module_exit(mpcore_wdt_exit);
473 MODULE_AUTHOR("ARM Limited");
474 MODULE_DESCRIPTION("MPcore Watchdog Device Driver");
475 MODULE_LICENSE("GPL");
476 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);