blob: e5b59bebcdb1a7f9da15376aa4d6a3423d27e1e7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Paul Mundtb1fa8882010-05-24 10:55:59 +09002 * drivers/watchdog/shwdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Watchdog driver for integrated watchdog in the SuperH processors.
5 *
Paul Mundt40968122012-05-10 14:21:15 +09006 * Copyright (C) 2001 - 2012 Paul Mundt <lethal@linux-sh.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 *
13 * 14-Dec-2001 Matt Domsch <Matt_Domsch@dell.com>
14 * Added nowayout module option to override CONFIG_WATCHDOG_NOWAYOUT
15 *
16 * 19-Apr-2002 Rob Radez <rob@osinvestor.com>
17 * Added expect close support, made emulated timeout runtime changeable
18 * general cleanups, add some ioctls
19 */
Joe Perches27c766a2012-02-15 15:06:19 -080020
21#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/module.h>
24#include <linux/moduleparam.h>
Paul Mundt8f5585e2010-05-25 18:31:12 +090025#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
27#include <linux/types.h>
Paul Mundtf9fb3602012-05-10 15:15:08 +090028#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/miscdevice.h>
30#include <linux/watchdog.h>
Paul Mundt8c013d962012-05-10 16:08:35 +090031#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/fs.h>
Paul Mundtf1184202006-09-27 17:53:59 +090033#include <linux/mm.h>
Paul Mundt8f5585e2010-05-25 18:31:12 +090034#include <linux/slab.h>
Alan Cox70b814e2008-05-19 14:08:55 +010035#include <linux/io.h>
Paul Mundt9ea64042012-05-10 15:46:48 +090036#include <linux/clk.h>
Adrian Bunk58cf4192008-08-08 18:39:11 +030037#include <asm/watchdog.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Paul Mundt8f5585e2010-05-25 18:31:12 +090039#define DRV_NAME "sh-wdt"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/*
42 * Default clock division ratio is 5.25 msecs. For an additional table of
43 * values, consult the asm-sh/watchdog.h. Overload this at module load
44 * time.
45 *
46 * In order for this to work reliably we need to have HZ set to 1000 or
47 * something quite higher than 100 (or we need a proper high-res timer
48 * implementation that will deal with this properly), otherwise the 10ms
49 * resolution of a jiffy is enough to trigger the overflow. For things like
50 * the SH-4 and SH-5, this isn't necessarily that big of a problem, though
51 * for the SH-2 and SH-3, this isn't recommended unless the WDT is absolutely
52 * necssary.
53 *
54 * As a result of this timing problem, the only modes that are particularly
Lucas De Marchi25985ed2011-03-30 22:57:33 -030055 * feasible are the 4096 and the 2048 divisors, which yield 5.25 and 2.62ms
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * overflow periods respectively.
57 *
58 * Also, since we can't really expect userspace to be responsive enough
Joe Perchesee0fc092008-02-03 17:32:52 +020059 * before the overflow happens, we maintain two separate timers .. One in
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * the kernel for clearing out WOVF every 2ms or so (again, this depends on
61 * HZ == 1000), and another for monitoring userspace writes to the WDT device.
62 *
63 * As such, we currently use a configurable heartbeat interval which defaults
64 * to 30s. In this case, the userspace daemon is only responsible for periodic
65 * writes to the device before the next heartbeat is scheduled. If the daemon
66 * misses its deadline, the kernel timer will allow the WDT to overflow.
67 */
68static int clock_division_ratio = WTCSR_CKS_4096;
David Engrafbea19062011-07-20 15:03:39 +020069#define next_ping_period(cks) (jiffies + msecs_to_jiffies(cks - 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define WATCHDOG_HEARTBEAT 30 /* 30 sec default heartbeat */
72static int heartbeat = WATCHDOG_HEARTBEAT; /* in seconds */
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010073static bool nowayout = WATCHDOG_NOWAYOUT;
Paul Mundt8f5585e2010-05-25 18:31:12 +090074static unsigned long next_heartbeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Paul Mundt8f5585e2010-05-25 18:31:12 +090076struct sh_wdt {
77 void __iomem *base;
78 struct device *dev;
Paul Mundt9ea64042012-05-10 15:46:48 +090079 struct clk *clk;
Paul Mundtf9fb3602012-05-10 15:15:08 +090080 spinlock_t lock;
Paul Mundt8f5585e2010-05-25 18:31:12 +090081
82 struct timer_list timer;
Paul Mundt8f5585e2010-05-25 18:31:12 +090083};
84
Paul Mundt1950f492012-05-10 15:07:53 +090085static int sh_wdt_start(struct watchdog_device *wdt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Paul Mundt1950f492012-05-10 15:07:53 +090087 struct sh_wdt *wdt = watchdog_get_drvdata(wdt_dev);
Alan Cox70b814e2008-05-19 14:08:55 +010088 unsigned long flags;
Paul Mundt8f5585e2010-05-25 18:31:12 +090089 u8 csr;
Alan Cox70b814e2008-05-19 14:08:55 +010090
Paul Mundt8c013d962012-05-10 16:08:35 +090091 pm_runtime_get_sync(wdt->dev);
Paul Mundtd42c9742012-05-10 16:14:40 +090092 clk_enable(wdt->clk);
Paul Mundt8c013d962012-05-10 16:08:35 +090093
Paul Mundtf9fb3602012-05-10 15:15:08 +090094 spin_lock_irqsave(&wdt->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 next_heartbeat = jiffies + (heartbeat * HZ);
Paul Mundt8f5585e2010-05-25 18:31:12 +090097 mod_timer(&wdt->timer, next_ping_period(clock_division_ratio));
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 csr = sh_wdt_read_csr();
100 csr |= WTCSR_WT | clock_division_ratio;
101 sh_wdt_write_csr(csr);
102
103 sh_wdt_write_cnt(0);
104
105 /*
106 * These processors have a bit of an inconsistent initialization
107 * process.. starting with SH-3, RSTS was moved to WTCSR, and the
108 * RSTCSR register was removed.
109 *
110 * On the SH-2 however, in addition with bits being in different
111 * locations, we must deal with RSTCSR outright..
112 */
113 csr = sh_wdt_read_csr();
114 csr |= WTCSR_TME;
115 csr &= ~WTCSR_RSTS;
116 sh_wdt_write_csr(csr);
117
118#ifdef CONFIG_CPU_SH2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 csr = sh_wdt_read_rstcsr();
120 csr &= ~RSTCSR_RSTS;
121 sh_wdt_write_rstcsr(csr);
122#endif
Paul Mundtf9fb3602012-05-10 15:15:08 +0900123 spin_unlock_irqrestore(&wdt->lock, flags);
Paul Mundt1950f492012-05-10 15:07:53 +0900124
125 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
Paul Mundt1950f492012-05-10 15:07:53 +0900128static int sh_wdt_stop(struct watchdog_device *wdt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
Paul Mundt1950f492012-05-10 15:07:53 +0900130 struct sh_wdt *wdt = watchdog_get_drvdata(wdt_dev);
Alan Cox70b814e2008-05-19 14:08:55 +0100131 unsigned long flags;
Paul Mundt8f5585e2010-05-25 18:31:12 +0900132 u8 csr;
Alan Cox70b814e2008-05-19 14:08:55 +0100133
Paul Mundtf9fb3602012-05-10 15:15:08 +0900134 spin_lock_irqsave(&wdt->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Paul Mundt8f5585e2010-05-25 18:31:12 +0900136 del_timer(&wdt->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 csr = sh_wdt_read_csr();
139 csr &= ~WTCSR_TME;
140 sh_wdt_write_csr(csr);
Paul Mundt8f5585e2010-05-25 18:31:12 +0900141
Paul Mundtf9fb3602012-05-10 15:15:08 +0900142 spin_unlock_irqrestore(&wdt->lock, flags);
Paul Mundt1950f492012-05-10 15:07:53 +0900143
Paul Mundtd42c9742012-05-10 16:14:40 +0900144 clk_disable(wdt->clk);
Paul Mundt8c013d962012-05-10 16:08:35 +0900145 pm_runtime_put_sync(wdt->dev);
146
Paul Mundt1950f492012-05-10 15:07:53 +0900147 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Paul Mundt1950f492012-05-10 15:07:53 +0900150static int sh_wdt_keepalive(struct watchdog_device *wdt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Paul Mundtf9fb3602012-05-10 15:15:08 +0900152 struct sh_wdt *wdt = watchdog_get_drvdata(wdt_dev);
Alan Cox70b814e2008-05-19 14:08:55 +0100153 unsigned long flags;
154
Paul Mundtf9fb3602012-05-10 15:15:08 +0900155 spin_lock_irqsave(&wdt->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 next_heartbeat = jiffies + (heartbeat * HZ);
Paul Mundtf9fb3602012-05-10 15:15:08 +0900157 spin_unlock_irqrestore(&wdt->lock, flags);
Paul Mundt1950f492012-05-10 15:07:53 +0900158
159 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
Paul Mundt1950f492012-05-10 15:07:53 +0900162static int sh_wdt_set_heartbeat(struct watchdog_device *wdt_dev, unsigned t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Paul Mundtf9fb3602012-05-10 15:15:08 +0900164 struct sh_wdt *wdt = watchdog_get_drvdata(wdt_dev);
Alan Cox70b814e2008-05-19 14:08:55 +0100165 unsigned long flags;
166
167 if (unlikely(t < 1 || t > 3600)) /* arbitrary upper limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return -EINVAL;
169
Paul Mundtf9fb3602012-05-10 15:15:08 +0900170 spin_lock_irqsave(&wdt->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 heartbeat = t;
Paul Mundt1950f492012-05-10 15:07:53 +0900172 wdt_dev->timeout = t;
Paul Mundtf9fb3602012-05-10 15:15:08 +0900173 spin_unlock_irqrestore(&wdt->lock, flags);
Paul Mundt1950f492012-05-10 15:07:53 +0900174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 return 0;
176}
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178static void sh_wdt_ping(unsigned long data)
179{
Paul Mundt8f5585e2010-05-25 18:31:12 +0900180 struct sh_wdt *wdt = (struct sh_wdt *)data;
Alan Cox70b814e2008-05-19 14:08:55 +0100181 unsigned long flags;
182
Paul Mundtf9fb3602012-05-10 15:15:08 +0900183 spin_lock_irqsave(&wdt->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (time_before(jiffies, next_heartbeat)) {
Paul Mundt8f5585e2010-05-25 18:31:12 +0900185 u8 csr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 csr = sh_wdt_read_csr();
188 csr &= ~WTCSR_IOVF;
189 sh_wdt_write_csr(csr);
190
191 sh_wdt_write_cnt(0);
192
Paul Mundt8f5585e2010-05-25 18:31:12 +0900193 mod_timer(&wdt->timer, next_ping_period(clock_division_ratio));
Paul Mundte4c2cfe2006-09-27 12:31:01 +0900194 } else
Paul Mundt8f5585e2010-05-25 18:31:12 +0900195 dev_warn(wdt->dev, "Heartbeat lost! Will not ping "
196 "the watchdog\n");
Paul Mundtf9fb3602012-05-10 15:15:08 +0900197 spin_unlock_irqrestore(&wdt->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
Alan Cox70b814e2008-05-19 14:08:55 +0100200static const struct watchdog_info sh_wdt_info = {
Paul Mundte4c2cfe2006-09-27 12:31:01 +0900201 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT |
202 WDIOF_MAGICCLOSE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 .firmware_version = 1,
204 .identity = "SH WDT",
205};
206
Paul Mundt1950f492012-05-10 15:07:53 +0900207static const struct watchdog_ops sh_wdt_ops = {
208 .owner = THIS_MODULE,
209 .start = sh_wdt_start,
210 .stop = sh_wdt_stop,
211 .ping = sh_wdt_keepalive,
212 .set_timeout = sh_wdt_set_heartbeat,
213};
214
215static struct watchdog_device sh_wdt_dev = {
216 .info = &sh_wdt_info,
217 .ops = &sh_wdt_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218};
219
Paul Mundt8f5585e2010-05-25 18:31:12 +0900220static int __devinit sh_wdt_probe(struct platform_device *pdev)
221{
222 struct sh_wdt *wdt;
223 struct resource *res;
224 int rc;
225
226 /*
227 * As this driver only covers the global watchdog case, reject
228 * any attempts to register per-CPU watchdogs.
229 */
230 if (pdev->id != -1)
231 return -EINVAL;
232
233 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
234 if (unlikely(!res))
235 return -EINVAL;
236
Paul Mundt8f5585e2010-05-25 18:31:12 +0900237 wdt = devm_kzalloc(&pdev->dev, sizeof(struct sh_wdt), GFP_KERNEL);
Paul Mundt9ea64042012-05-10 15:46:48 +0900238 if (unlikely(!wdt))
239 return -ENOMEM;
Paul Mundt8f5585e2010-05-25 18:31:12 +0900240
241 wdt->dev = &pdev->dev;
242
Paul Mundt9ea64042012-05-10 15:46:48 +0900243 wdt->clk = clk_get(&pdev->dev, NULL);
244 if (IS_ERR(wdt->clk)) {
245 /*
246 * Clock framework support is optional, continue on
247 * anyways if we don't find a matching clock.
248 */
249 wdt->clk = NULL;
250 }
251
Paul Mundt9ea64042012-05-10 15:46:48 +0900252 wdt->base = devm_request_and_ioremap(wdt->dev, res);
253 if (unlikely(!wdt->base)) {
254 rc = -EADDRNOTAVAIL;
Paul Mundtd42c9742012-05-10 16:14:40 +0900255 goto err;
Paul Mundt9ea64042012-05-10 15:46:48 +0900256 }
257
Paul Mundtf9fb3602012-05-10 15:15:08 +0900258 watchdog_set_nowayout(&sh_wdt_dev, nowayout);
259 watchdog_set_drvdata(&sh_wdt_dev, wdt);
260
Paul Mundtf9fb3602012-05-10 15:15:08 +0900261 spin_lock_init(&wdt->lock);
262
Paul Mundt1950f492012-05-10 15:07:53 +0900263 rc = sh_wdt_set_heartbeat(&sh_wdt_dev, heartbeat);
Paul Mundt8f5585e2010-05-25 18:31:12 +0900264 if (unlikely(rc)) {
Paul Mundt1950f492012-05-10 15:07:53 +0900265 /* Default timeout if invalid */
266 sh_wdt_set_heartbeat(&sh_wdt_dev, WATCHDOG_HEARTBEAT);
267
268 dev_warn(&pdev->dev,
269 "heartbeat value must be 1<=x<=3600, using %d\n",
270 sh_wdt_dev.timeout);
271 }
272
273 dev_info(&pdev->dev, "configured with heartbeat=%d sec (nowayout=%d)\n",
274 sh_wdt_dev.timeout, nowayout);
275
Paul Mundt1950f492012-05-10 15:07:53 +0900276 rc = watchdog_register_device(&sh_wdt_dev);
277 if (unlikely(rc)) {
278 dev_err(&pdev->dev, "Can't register watchdog (err=%d)\n", rc);
Paul Mundtd42c9742012-05-10 16:14:40 +0900279 goto err;
Paul Mundt8f5585e2010-05-25 18:31:12 +0900280 }
281
282 init_timer(&wdt->timer);
283 wdt->timer.function = sh_wdt_ping;
284 wdt->timer.data = (unsigned long)wdt;
285 wdt->timer.expires = next_ping_period(clock_division_ratio);
286
287 platform_set_drvdata(pdev, wdt);
Paul Mundt8f5585e2010-05-25 18:31:12 +0900288
289 dev_info(&pdev->dev, "initialized.\n");
290
Paul Mundt8c013d962012-05-10 16:08:35 +0900291 pm_runtime_enable(&pdev->dev);
292
Paul Mundt8f5585e2010-05-25 18:31:12 +0900293 return 0;
294
Paul Mundtd42c9742012-05-10 16:14:40 +0900295err:
Paul Mundt9ea64042012-05-10 15:46:48 +0900296 clk_put(wdt->clk);
Paul Mundt8f5585e2010-05-25 18:31:12 +0900297
298 return rc;
299}
300
301static int __devexit sh_wdt_remove(struct platform_device *pdev)
302{
303 struct sh_wdt *wdt = platform_get_drvdata(pdev);
Paul Mundt8f5585e2010-05-25 18:31:12 +0900304
305 platform_set_drvdata(pdev, NULL);
306
Paul Mundt1950f492012-05-10 15:07:53 +0900307 watchdog_unregister_device(&sh_wdt_dev);
Paul Mundt8f5585e2010-05-25 18:31:12 +0900308
Paul Mundt8c013d962012-05-10 16:08:35 +0900309 pm_runtime_disable(&pdev->dev);
Paul Mundt9ea64042012-05-10 15:46:48 +0900310 clk_put(wdt->clk);
Paul Mundt8f5585e2010-05-25 18:31:12 +0900311
312 return 0;
313}
314
Paul Mundt40968122012-05-10 14:21:15 +0900315static void sh_wdt_shutdown(struct platform_device *pdev)
316{
Paul Mundt1950f492012-05-10 15:07:53 +0900317 sh_wdt_stop(&sh_wdt_dev);
Paul Mundt40968122012-05-10 14:21:15 +0900318}
319
Paul Mundt8f5585e2010-05-25 18:31:12 +0900320static struct platform_driver sh_wdt_driver = {
321 .driver = {
322 .name = DRV_NAME,
323 .owner = THIS_MODULE,
324 },
325
Paul Mundt40968122012-05-10 14:21:15 +0900326 .probe = sh_wdt_probe,
327 .remove = __devexit_p(sh_wdt_remove),
328 .shutdown = sh_wdt_shutdown,
Paul Mundt8f5585e2010-05-25 18:31:12 +0900329};
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331static int __init sh_wdt_init(void)
332{
Paul Mundt8f5585e2010-05-25 18:31:12 +0900333 if (unlikely(clock_division_ratio < 0x5 ||
334 clock_division_ratio > 0x7)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 clock_division_ratio = WTCSR_CKS_4096;
Paul Mundt8f5585e2010-05-25 18:31:12 +0900336
Joe Perches27c766a2012-02-15 15:06:19 -0800337 pr_info("divisor must be 0x5<=x<=0x7, using %d\n",
338 clock_division_ratio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
340
Paul Mundt8f5585e2010-05-25 18:31:12 +0900341 return platform_driver_register(&sh_wdt_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344static void __exit sh_wdt_exit(void)
345{
Paul Mundt8f5585e2010-05-25 18:31:12 +0900346 platform_driver_unregister(&sh_wdt_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
Paul Mundt8f5585e2010-05-25 18:31:12 +0900348module_init(sh_wdt_init);
349module_exit(sh_wdt_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>");
352MODULE_DESCRIPTION("SuperH watchdog driver");
353MODULE_LICENSE("GPL");
Paul Mundt8f5585e2010-05-25 18:31:12 +0900354MODULE_ALIAS("platform:" DRV_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
356
357module_param(clock_division_ratio, int, 0);
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000358MODULE_PARM_DESC(clock_division_ratio,
359 "Clock division ratio. Valid ranges are from 0x5 (1.31ms) "
Randy Dunlap76550d32010-05-01 09:46:15 -0700360 "to 0x7 (5.25ms). (default=" __MODULE_STRING(WTCSR_CKS_4096) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362module_param(heartbeat, int, 0);
Alan Cox70b814e2008-05-19 14:08:55 +0100363MODULE_PARM_DESC(heartbeat,
364 "Watchdog heartbeat in seconds. (1 <= heartbeat <= 3600, default="
365 __MODULE_STRING(WATCHDOG_HEARTBEAT) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100367module_param(nowayout, bool, 0);
Alan Cox70b814e2008-05-19 14:08:55 +0100368MODULE_PARM_DESC(nowayout,
369 "Watchdog cannot be stopped once started (default="
370 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");