blob: 016c6a791cab2f11188032e04840a7d144d661c4 [file] [log] [blame]
Russell Kingb9d36b82005-09-12 22:56:56 +01001/*
2 * Watchdog driver for the mpcore watchdog timer
3 *
4 * (c) Copyright 2004 ARM Limited
5 *
6 * Based on the SoftDog driver:
Alan Cox29fa0582008-10-27 15:17:56 +00007 * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>,
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +00008 * All Rights Reserved.
Russell Kingb9d36b82005-09-12 22:56:56 +01009 *
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.
14 *
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.
18 *
19 * (c) Copyright 1995 Alan Cox <alan@lxorguk.ukuu.org.uk>
20 *
21 */
22#include <linux/module.h>
23#include <linux/moduleparam.h>
Russell Kingb9d36b82005-09-12 22:56:56 +010024#include <linux/types.h>
25#include <linux/miscdevice.h>
26#include <linux/watchdog.h>
27#include <linux/fs.h>
28#include <linux/reboot.h>
29#include <linux/init.h>
30#include <linux/interrupt.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010031#include <linux/platform_device.h>
Alan Cox83ab1a52008-05-19 14:07:15 +010032#include <linux/uaccess.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Russell Kingad4162f2005-09-14 09:56:38 +010034
35#include <asm/hardware/arm_twd.h>
Russell Kingb9d36b82005-09-12 22:56:56 +010036
37struct mpcore_wdt {
38 unsigned long timer_alive;
39 struct device *dev;
40 void __iomem *base;
41 int irq;
42 unsigned int perturb;
43 char expect_close;
44};
45
46static struct platform_device *mpcore_wdt_dev;
Russell Kingb9d36b82005-09-12 22:56:56 +010047extern unsigned int mpcore_timer_rate;
48
49#define TIMER_MARGIN 60
50static int mpcore_margin = TIMER_MARGIN;
51module_param(mpcore_margin, int, 0);
Alan Cox83ab1a52008-05-19 14:07:15 +010052MODULE_PARM_DESC(mpcore_margin,
53 "MPcore timer margin in seconds. (0 < mpcore_margin < 65536, default="
54 __MODULE_STRING(TIMER_MARGIN) ")");
Russell Kingb9d36b82005-09-12 22:56:56 +010055
56static int nowayout = WATCHDOG_NOWAYOUT;
57module_param(nowayout, int, 0);
Alan Cox83ab1a52008-05-19 14:07:15 +010058MODULE_PARM_DESC(nowayout,
59 "Watchdog cannot be stopped once started (default="
60 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Russell Kingb9d36b82005-09-12 22:56:56 +010061
62#define ONLY_TESTING 0
63static int mpcore_noboot = ONLY_TESTING;
64module_param(mpcore_noboot, int, 0);
Wim Van Sebroecka77dba72009-04-14 20:20:07 +000065MODULE_PARM_DESC(mpcore_noboot, "MPcore watchdog action, "
66 "set to 1 to ignore reboots, 0 to reboot (default="
67 __MODULE_STRING(ONLY_TESTING) ")");
Russell Kingb9d36b82005-09-12 22:56:56 +010068
69/*
70 * This is the interrupt handler. Note that we only use this
71 * in testing mode, so don't actually do a reboot here.
72 */
David Howells7d12e782006-10-05 14:55:46 +010073static irqreturn_t mpcore_wdt_fire(int irq, void *arg)
Russell Kingb9d36b82005-09-12 22:56:56 +010074{
75 struct mpcore_wdt *wdt = arg;
76
77 /* Check it really was our interrupt */
78 if (readl(wdt->base + TWD_WDOG_INTSTAT)) {
Alan Cox83ab1a52008-05-19 14:07:15 +010079 dev_printk(KERN_CRIT, wdt->dev,
80 "Triggered - Reboot ignored.\n");
Russell Kingb9d36b82005-09-12 22:56:56 +010081 /* Clear the interrupt on the watchdog */
82 writel(1, wdt->base + TWD_WDOG_INTSTAT);
Russell Kingb9d36b82005-09-12 22:56:56 +010083 return IRQ_HANDLED;
84 }
Russell Kingb9d36b82005-09-12 22:56:56 +010085 return IRQ_NONE;
86}
87
88/*
89 * mpcore_wdt_keepalive - reload the timer
90 *
91 * Note that the spec says a DIFFERENT value must be written to the reload
92 * register each time. The "perturb" variable deals with this by adding 1
93 * to the count every other time the function is called.
94 */
95static void mpcore_wdt_keepalive(struct mpcore_wdt *wdt)
96{
97 unsigned int count;
98
99 /* Assume prescale is set to 256 */
100 count = (mpcore_timer_rate / 256) * mpcore_margin;
101
102 /* Reload the counter */
Alan Cox83ab1a52008-05-19 14:07:15 +0100103 spin_lock(&wdt_lock);
Russell Kingb9d36b82005-09-12 22:56:56 +0100104 writel(count + wdt->perturb, wdt->base + TWD_WDOG_LOAD);
Russell Kingb9d36b82005-09-12 22:56:56 +0100105 wdt->perturb = wdt->perturb ? 0 : 1;
Alan Cox83ab1a52008-05-19 14:07:15 +0100106 spin_unlock(&wdt_lock);
Russell Kingb9d36b82005-09-12 22:56:56 +0100107}
108
109static void mpcore_wdt_stop(struct mpcore_wdt *wdt)
110{
Alan Cox83ab1a52008-05-19 14:07:15 +0100111 spin_lock(&wdt_lock);
Russell Kingb9d36b82005-09-12 22:56:56 +0100112 writel(0x12345678, wdt->base + TWD_WDOG_DISABLE);
113 writel(0x87654321, wdt->base + TWD_WDOG_DISABLE);
114 writel(0x0, wdt->base + TWD_WDOG_CONTROL);
Alan Cox83ab1a52008-05-19 14:07:15 +0100115 spin_unlock(&wdt_lock);
Russell Kingb9d36b82005-09-12 22:56:56 +0100116}
117
118static void mpcore_wdt_start(struct mpcore_wdt *wdt)
119{
120 dev_printk(KERN_INFO, wdt->dev, "enabling watchdog.\n");
121
Alan Cox83ab1a52008-05-19 14:07:15 +0100122 spin_lock(&wdt_lock);
Russell Kingb9d36b82005-09-12 22:56:56 +0100123 /* This loads the count register but does NOT start the count yet */
124 mpcore_wdt_keepalive(wdt);
125
126 if (mpcore_noboot) {
127 /* Enable watchdog - prescale=256, watchdog mode=0, enable=1 */
128 writel(0x0000FF01, wdt->base + TWD_WDOG_CONTROL);
129 } else {
130 /* Enable watchdog - prescale=256, watchdog mode=1, enable=1 */
131 writel(0x0000FF09, wdt->base + TWD_WDOG_CONTROL);
132 }
Alan Cox83ab1a52008-05-19 14:07:15 +0100133 spin_unlock(&wdt_lock);
Russell Kingb9d36b82005-09-12 22:56:56 +0100134}
135
136static int mpcore_wdt_set_heartbeat(int t)
137{
138 if (t < 0x0001 || t > 0xFFFF)
139 return -EINVAL;
140
141 mpcore_margin = t;
142 return 0;
143}
144
145/*
146 * /dev/watchdog handling
147 */
148static int mpcore_wdt_open(struct inode *inode, struct file *file)
149{
Russell King3ae5eae2005-11-09 22:32:44 +0000150 struct mpcore_wdt *wdt = platform_get_drvdata(mpcore_wdt_dev);
Russell Kingb9d36b82005-09-12 22:56:56 +0100151
152 if (test_and_set_bit(0, &wdt->timer_alive))
153 return -EBUSY;
154
155 if (nowayout)
156 __module_get(THIS_MODULE);
157
158 file->private_data = wdt;
159
160 /*
161 * Activate timer
162 */
163 mpcore_wdt_start(wdt);
164
165 return nonseekable_open(inode, file);
166}
167
168static int mpcore_wdt_release(struct inode *inode, struct file *file)
169{
170 struct mpcore_wdt *wdt = file->private_data;
171
172 /*
173 * Shut off the timer.
174 * Lock it in if it's a module and we set nowayout
175 */
Alan Cox83ab1a52008-05-19 14:07:15 +0100176 if (wdt->expect_close == 42)
Russell Kingb9d36b82005-09-12 22:56:56 +0100177 mpcore_wdt_stop(wdt);
Alan Cox83ab1a52008-05-19 14:07:15 +0100178 else {
179 dev_printk(KERN_CRIT, wdt->dev,
180 "unexpected close, not stopping watchdog!\n");
Russell Kingb9d36b82005-09-12 22:56:56 +0100181 mpcore_wdt_keepalive(wdt);
182 }
183 clear_bit(0, &wdt->timer_alive);
184 wdt->expect_close = 0;
185 return 0;
186}
187
Alan Cox83ab1a52008-05-19 14:07:15 +0100188static ssize_t mpcore_wdt_write(struct file *file, const char *data,
189 size_t len, loff_t *ppos)
Russell Kingb9d36b82005-09-12 22:56:56 +0100190{
191 struct mpcore_wdt *wdt = file->private_data;
192
Russell Kingb9d36b82005-09-12 22:56:56 +0100193 /*
194 * Refresh the timer.
195 */
196 if (len) {
197 if (!nowayout) {
198 size_t i;
199
200 /* In case it was set long ago */
201 wdt->expect_close = 0;
202
203 for (i = 0; i != len; i++) {
204 char c;
205
206 if (get_user(c, data + i))
207 return -EFAULT;
208 if (c == 'V')
209 wdt->expect_close = 42;
210 }
211 }
212 mpcore_wdt_keepalive(wdt);
213 }
214 return len;
215}
216
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000217static const struct watchdog_info ident = {
Russell Kingb9d36b82005-09-12 22:56:56 +0100218 .options = WDIOF_SETTIMEOUT |
219 WDIOF_KEEPALIVEPING |
220 WDIOF_MAGICCLOSE,
221 .identity = "MPcore Watchdog",
222};
223
Alan Cox83ab1a52008-05-19 14:07:15 +0100224static long mpcore_wdt_ioctl(struct file *file, unsigned int cmd,
225 unsigned long arg)
Russell Kingb9d36b82005-09-12 22:56:56 +0100226{
227 struct mpcore_wdt *wdt = file->private_data;
228 int ret;
229 union {
230 struct watchdog_info ident;
231 int i;
232 } uarg;
233
234 if (_IOC_DIR(cmd) && _IOC_SIZE(cmd) > sizeof(uarg))
Samuel Tardieu795b89d2006-09-09 17:34:31 +0200235 return -ENOTTY;
Russell Kingb9d36b82005-09-12 22:56:56 +0100236
237 if (_IOC_DIR(cmd) & _IOC_WRITE) {
238 ret = copy_from_user(&uarg, (void __user *)arg, _IOC_SIZE(cmd));
239 if (ret)
240 return -EFAULT;
241 }
242
243 switch (cmd) {
244 case WDIOC_GETSUPPORT:
245 uarg.ident = ident;
246 ret = 0;
247 break;
248
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000249 case WDIOC_GETSTATUS:
250 case WDIOC_GETBOOTSTATUS:
251 uarg.i = 0;
252 ret = 0;
253 break;
254
Russell Kingb9d36b82005-09-12 22:56:56 +0100255 case WDIOC_SETOPTIONS:
256 ret = -EINVAL;
257 if (uarg.i & WDIOS_DISABLECARD) {
258 mpcore_wdt_stop(wdt);
259 ret = 0;
260 }
261 if (uarg.i & WDIOS_ENABLECARD) {
262 mpcore_wdt_start(wdt);
263 ret = 0;
264 }
265 break;
266
Russell Kingb9d36b82005-09-12 22:56:56 +0100267 case WDIOC_KEEPALIVE:
268 mpcore_wdt_keepalive(wdt);
269 ret = 0;
270 break;
271
272 case WDIOC_SETTIMEOUT:
273 ret = mpcore_wdt_set_heartbeat(uarg.i);
274 if (ret)
275 break;
276
277 mpcore_wdt_keepalive(wdt);
278 /* Fall */
279 case WDIOC_GETTIMEOUT:
280 uarg.i = mpcore_margin;
281 ret = 0;
282 break;
283
284 default:
Samuel Tardieu795b89d2006-09-09 17:34:31 +0200285 return -ENOTTY;
Russell Kingb9d36b82005-09-12 22:56:56 +0100286 }
287
288 if (ret == 0 && _IOC_DIR(cmd) & _IOC_READ) {
289 ret = copy_to_user((void __user *)arg, &uarg, _IOC_SIZE(cmd));
290 if (ret)
291 ret = -EFAULT;
292 }
293 return ret;
294}
295
296/*
297 * System shutdown handler. Turn off the watchdog if we're
298 * restarting or halting the system.
299 */
Russell King3ae5eae2005-11-09 22:32:44 +0000300static void mpcore_wdt_shutdown(struct platform_device *dev)
Russell Kingb9d36b82005-09-12 22:56:56 +0100301{
Russell King3ae5eae2005-11-09 22:32:44 +0000302 struct mpcore_wdt *wdt = platform_get_drvdata(dev);
Russell Kingb9d36b82005-09-12 22:56:56 +0100303
304 if (system_state == SYSTEM_RESTART || system_state == SYSTEM_HALT)
305 mpcore_wdt_stop(wdt);
306}
307
308/*
309 * Kernel Interfaces
310 */
Arjan van de Ven62322d22006-07-03 00:24:21 -0700311static const struct file_operations mpcore_wdt_fops = {
Russell Kingb9d36b82005-09-12 22:56:56 +0100312 .owner = THIS_MODULE,
313 .llseek = no_llseek,
314 .write = mpcore_wdt_write,
Alan Cox83ab1a52008-05-19 14:07:15 +0100315 .unlocked_ioctl = mpcore_wdt_ioctl,
Russell Kingb9d36b82005-09-12 22:56:56 +0100316 .open = mpcore_wdt_open,
317 .release = mpcore_wdt_release,
318};
319
320static struct miscdevice mpcore_wdt_miscdev = {
321 .minor = WATCHDOG_MINOR,
322 .name = "watchdog",
323 .fops = &mpcore_wdt_fops,
324};
325
Russell King3ae5eae2005-11-09 22:32:44 +0000326static int __devinit mpcore_wdt_probe(struct platform_device *dev)
Russell Kingb9d36b82005-09-12 22:56:56 +0100327{
Russell Kingb9d36b82005-09-12 22:56:56 +0100328 struct mpcore_wdt *wdt;
329 struct resource *res;
330 int ret;
331
332 /* We only accept one device, and it must have an id of -1 */
333 if (dev->id != -1)
334 return -ENODEV;
335
336 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
337 if (!res) {
338 ret = -ENODEV;
339 goto err_out;
340 }
341
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700342 wdt = kzalloc(sizeof(struct mpcore_wdt), GFP_KERNEL);
Russell Kingb9d36b82005-09-12 22:56:56 +0100343 if (!wdt) {
344 ret = -ENOMEM;
345 goto err_out;
346 }
Russell Kingb9d36b82005-09-12 22:56:56 +0100347
348 wdt->dev = &dev->dev;
349 wdt->irq = platform_get_irq(dev, 0);
David Vrabel48944732006-01-19 17:56:29 +0000350 if (wdt->irq < 0) {
351 ret = -ENXIO;
352 goto err_free;
353 }
H Hartley Sweetenb782a562009-12-04 12:24:04 -0500354 wdt->base = ioremap(res->start, resource_size(res));
Russell Kingb9d36b82005-09-12 22:56:56 +0100355 if (!wdt->base) {
356 ret = -ENOMEM;
357 goto err_free;
358 }
359
Andrew Victore0b79e02006-12-04 15:56:18 +0200360 mpcore_wdt_miscdev.parent = &dev->dev;
Russell Kingb9d36b82005-09-12 22:56:56 +0100361 ret = misc_register(&mpcore_wdt_miscdev);
362 if (ret) {
Alan Cox83ab1a52008-05-19 14:07:15 +0100363 dev_printk(KERN_ERR, _dev,
364 "cannot register miscdev on minor=%d (err=%d)\n",
365 WATCHDOG_MINOR, ret);
Russell Kingb9d36b82005-09-12 22:56:56 +0100366 goto err_misc;
367 }
368
Alan Cox83ab1a52008-05-19 14:07:15 +0100369 ret = request_irq(wdt->irq, mpcore_wdt_fire, IRQF_DISABLED,
370 "mpcore_wdt", wdt);
Russell Kingb9d36b82005-09-12 22:56:56 +0100371 if (ret) {
Alan Cox83ab1a52008-05-19 14:07:15 +0100372 dev_printk(KERN_ERR, _dev,
373 "cannot register IRQ%d for watchdog\n", wdt->irq);
Russell Kingb9d36b82005-09-12 22:56:56 +0100374 goto err_irq;
375 }
376
377 mpcore_wdt_stop(wdt);
Russell King3ae5eae2005-11-09 22:32:44 +0000378 platform_set_drvdata(&dev->dev, wdt);
Russell Kingb9d36b82005-09-12 22:56:56 +0100379 mpcore_wdt_dev = dev;
380
381 return 0;
382
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000383err_irq:
Russell Kingb9d36b82005-09-12 22:56:56 +0100384 misc_deregister(&mpcore_wdt_miscdev);
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000385err_misc:
Russell Kingb9d36b82005-09-12 22:56:56 +0100386 iounmap(wdt->base);
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000387err_free:
Russell Kingb9d36b82005-09-12 22:56:56 +0100388 kfree(wdt);
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000389err_out:
Russell Kingb9d36b82005-09-12 22:56:56 +0100390 return ret;
391}
392
Russell King3ae5eae2005-11-09 22:32:44 +0000393static int __devexit mpcore_wdt_remove(struct platform_device *dev)
Russell Kingb9d36b82005-09-12 22:56:56 +0100394{
Russell King3ae5eae2005-11-09 22:32:44 +0000395 struct mpcore_wdt *wdt = platform_get_drvdata(dev);
Russell Kingb9d36b82005-09-12 22:56:56 +0100396
Russell King3ae5eae2005-11-09 22:32:44 +0000397 platform_set_drvdata(dev, NULL);
Russell Kingb9d36b82005-09-12 22:56:56 +0100398
399 misc_deregister(&mpcore_wdt_miscdev);
400
401 mpcore_wdt_dev = NULL;
402
403 free_irq(wdt->irq, wdt);
404 iounmap(wdt->base);
405 kfree(wdt);
406 return 0;
407}
408
Kay Sieversf37d1932008-04-10 21:29:23 -0700409/* work with hotplug and coldplug */
410MODULE_ALIAS("platform:mpcore_wdt");
411
Russell King3ae5eae2005-11-09 22:32:44 +0000412static struct platform_driver mpcore_wdt_driver = {
Russell Kingb9d36b82005-09-12 22:56:56 +0100413 .probe = mpcore_wdt_probe,
414 .remove = __devexit_p(mpcore_wdt_remove),
415 .shutdown = mpcore_wdt_shutdown,
Russell King3ae5eae2005-11-09 22:32:44 +0000416 .driver = {
417 .owner = THIS_MODULE,
418 .name = "mpcore_wdt",
419 },
Russell Kingb9d36b82005-09-12 22:56:56 +0100420};
421
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000422static char banner[] __initdata = KERN_INFO "MPcore Watchdog Timer: 0.1. "
423 "mpcore_noboot=%d mpcore_margin=%d sec (nowayout= %d)\n";
Russell Kingb9d36b82005-09-12 22:56:56 +0100424
425static int __init mpcore_wdt_init(void)
426{
427 /*
428 * Check that the margin value is within it's range;
429 * if not reset to the default
430 */
431 if (mpcore_wdt_set_heartbeat(mpcore_margin)) {
432 mpcore_wdt_set_heartbeat(TIMER_MARGIN);
Alan Cox83ab1a52008-05-19 14:07:15 +0100433 printk(KERN_INFO "mpcore_margin value must be 0 < mpcore_margin < 65536, using %d\n",
Russell Kingb9d36b82005-09-12 22:56:56 +0100434 TIMER_MARGIN);
435 }
436
437 printk(banner, mpcore_noboot, mpcore_margin, nowayout);
438
Russell King3ae5eae2005-11-09 22:32:44 +0000439 return platform_driver_register(&mpcore_wdt_driver);
Russell Kingb9d36b82005-09-12 22:56:56 +0100440}
441
442static void __exit mpcore_wdt_exit(void)
443{
Russell King3ae5eae2005-11-09 22:32:44 +0000444 platform_driver_unregister(&mpcore_wdt_driver);
Russell Kingb9d36b82005-09-12 22:56:56 +0100445}
446
447module_init(mpcore_wdt_init);
448module_exit(mpcore_wdt_exit);
449
450MODULE_AUTHOR("ARM Limited");
451MODULE_DESCRIPTION("MPcore Watchdog Device Driver");
452MODULE_LICENSE("GPL");
453MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);