blob: 9e577a64ec9e566fa52ea977f5d5ca49d17a0f03 [file] [log] [blame]
Jamie Ilesc9353ae2011-01-24 12:19:12 +00001/*
2 * Copyright 2010-2011 Picochip Ltd., Jamie Iles
3 * http://www.picochip.com
4 *
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.
9 *
10 * This file implements a driver for the Synopsys DesignWare watchdog device
Baruch Siach58a251f2013-12-30 14:25:54 +020011 * in the many subsystems. The watchdog has 16 different timeout periods
Jamie Ilesc9353ae2011-01-24 12:19:12 +000012 * and these are a function of the input clock frequency.
13 *
14 * The DesignWare watchdog cannot be stopped once it has been started so we
15 * use a software timer to implement a ping that will keep the watchdog alive.
16 * If we receive an expected close for the watchdog then we keep the timer
17 * running, otherwise the timer is stopped and the watchdog will expire.
18 */
Joe Perches27c766a2012-02-15 15:06:19 -080019
20#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Jamie Ilesc9353ae2011-01-24 12:19:12 +000021
22#include <linux/bitops.h>
23#include <linux/clk.h>
Jisheng Zhang31228f42014-09-23 15:42:12 +080024#include <linux/delay.h>
Jamie Ilesc9353ae2011-01-24 12:19:12 +000025#include <linux/device.h>
26#include <linux/err.h>
27#include <linux/fs.h>
28#include <linux/io.h>
29#include <linux/kernel.h>
30#include <linux/miscdevice.h>
31#include <linux/module.h>
32#include <linux/moduleparam.h>
Jisheng Zhang31228f42014-09-23 15:42:12 +080033#include <linux/notifier.h>
Dinh Nguyen58e56372013-10-22 11:59:12 -050034#include <linux/of.h>
Jamie Ilesc9353ae2011-01-24 12:19:12 +000035#include <linux/pm.h>
36#include <linux/platform_device.h>
Jisheng Zhang31228f42014-09-23 15:42:12 +080037#include <linux/reboot.h>
Jamie Ilesc9353ae2011-01-24 12:19:12 +000038#include <linux/spinlock.h>
39#include <linux/timer.h>
40#include <linux/uaccess.h>
41#include <linux/watchdog.h>
42
43#define WDOG_CONTROL_REG_OFFSET 0x00
44#define WDOG_CONTROL_REG_WDT_EN_MASK 0x01
45#define WDOG_TIMEOUT_RANGE_REG_OFFSET 0x04
Jisheng Zhangdfa07142014-09-23 15:42:11 +080046#define WDOG_TIMEOUT_RANGE_TOPINIT_SHIFT 4
Jamie Ilesc9353ae2011-01-24 12:19:12 +000047#define WDOG_CURRENT_COUNT_REG_OFFSET 0x08
48#define WDOG_COUNTER_RESTART_REG_OFFSET 0x0c
49#define WDOG_COUNTER_RESTART_KICK_VALUE 0x76
50
51/* The maximum TOP (timeout period) value that can be set in the watchdog. */
52#define DW_WDT_MAX_TOP 15
53
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010054static bool nowayout = WATCHDOG_NOWAYOUT;
55module_param(nowayout, bool, 0);
Jamie Ilesc9353ae2011-01-24 12:19:12 +000056MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
57 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
58
59#define WDT_TIMEOUT (HZ / 2)
60
61static struct {
62 spinlock_t lock;
63 void __iomem *regs;
64 struct clk *clk;
65 unsigned long in_use;
66 unsigned long next_heartbeat;
67 struct timer_list timer;
68 int expect_close;
Jisheng Zhang31228f42014-09-23 15:42:12 +080069 struct notifier_block restart_handler;
Jamie Ilesc9353ae2011-01-24 12:19:12 +000070} dw_wdt;
71
72static inline int dw_wdt_is_enabled(void)
73{
74 return readl(dw_wdt.regs + WDOG_CONTROL_REG_OFFSET) &
75 WDOG_CONTROL_REG_WDT_EN_MASK;
76}
77
78static inline int dw_wdt_top_in_seconds(unsigned top)
79{
80 /*
81 * There are 16 possible timeout values in 0..15 where the number of
82 * cycles is 2 ^ (16 + i) and the watchdog counts down.
83 */
84 return (1 << (16 + top)) / clk_get_rate(dw_wdt.clk);
85}
86
87static int dw_wdt_get_top(void)
88{
89 int top = readl(dw_wdt.regs + WDOG_TIMEOUT_RANGE_REG_OFFSET) & 0xF;
90
91 return dw_wdt_top_in_seconds(top);
92}
93
94static inline void dw_wdt_set_next_heartbeat(void)
95{
96 dw_wdt.next_heartbeat = jiffies + dw_wdt_get_top() * HZ;
97}
98
99static int dw_wdt_set_top(unsigned top_s)
100{
101 int i, top_val = DW_WDT_MAX_TOP;
102
103 /*
104 * Iterate over the timeout values until we find the closest match. We
105 * always look for >=.
106 */
107 for (i = 0; i <= DW_WDT_MAX_TOP; ++i)
108 if (dw_wdt_top_in_seconds(i) >= top_s) {
109 top_val = i;
110 break;
111 }
112
113 /* Set the new value in the watchdog. */
Jisheng Zhangdfa07142014-09-23 15:42:11 +0800114 writel(top_val | top_val << WDOG_TIMEOUT_RANGE_TOPINIT_SHIFT,
115 dw_wdt.regs + WDOG_TIMEOUT_RANGE_REG_OFFSET);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000116
117 dw_wdt_set_next_heartbeat();
118
119 return dw_wdt_top_in_seconds(top_val);
120}
121
122static void dw_wdt_keepalive(void)
123{
124 writel(WDOG_COUNTER_RESTART_KICK_VALUE, dw_wdt.regs +
125 WDOG_COUNTER_RESTART_REG_OFFSET);
126}
127
Jisheng Zhang31228f42014-09-23 15:42:12 +0800128static int dw_wdt_restart_handle(struct notifier_block *this,
129 unsigned long mode, void *cmd)
130{
131 u32 val;
132
133 writel(0, dw_wdt.regs + WDOG_TIMEOUT_RANGE_REG_OFFSET);
134 val = readl(dw_wdt.regs + WDOG_CONTROL_REG_OFFSET);
135 if (val & WDOG_CONTROL_REG_WDT_EN_MASK)
136 writel(WDOG_COUNTER_RESTART_KICK_VALUE, dw_wdt.regs +
137 WDOG_COUNTER_RESTART_REG_OFFSET);
138 else
139 writel(WDOG_CONTROL_REG_WDT_EN_MASK,
140 dw_wdt.regs + WDOG_CONTROL_REG_OFFSET);
141
142 /* wait for reset to assert... */
143 mdelay(500);
144
145 return NOTIFY_DONE;
146}
147
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000148static void dw_wdt_ping(unsigned long data)
149{
150 if (time_before(jiffies, dw_wdt.next_heartbeat) ||
151 (!nowayout && !dw_wdt.in_use)) {
152 dw_wdt_keepalive();
153 mod_timer(&dw_wdt.timer, jiffies + WDT_TIMEOUT);
154 } else
155 pr_crit("keepalive missed, machine will reset\n");
156}
157
158static int dw_wdt_open(struct inode *inode, struct file *filp)
159{
160 if (test_and_set_bit(0, &dw_wdt.in_use))
161 return -EBUSY;
162
163 /* Make sure we don't get unloaded. */
164 __module_get(THIS_MODULE);
165
166 spin_lock(&dw_wdt.lock);
167 if (!dw_wdt_is_enabled()) {
168 /*
169 * The watchdog is not currently enabled. Set the timeout to
170 * the maximum and then start it.
171 */
172 dw_wdt_set_top(DW_WDT_MAX_TOP);
173 writel(WDOG_CONTROL_REG_WDT_EN_MASK,
174 dw_wdt.regs + WDOG_CONTROL_REG_OFFSET);
175 }
176
177 dw_wdt_set_next_heartbeat();
178
179 spin_unlock(&dw_wdt.lock);
180
181 return nonseekable_open(inode, filp);
182}
183
Sachin Kamat0b930262013-05-14 12:11:03 +0530184static ssize_t dw_wdt_write(struct file *filp, const char __user *buf,
185 size_t len, loff_t *offset)
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000186{
187 if (!len)
188 return 0;
189
190 if (!nowayout) {
191 size_t i;
192
193 dw_wdt.expect_close = 0;
194
195 for (i = 0; i < len; ++i) {
196 char c;
197
198 if (get_user(c, buf + i))
199 return -EFAULT;
200
201 if (c == 'V') {
202 dw_wdt.expect_close = 1;
203 break;
204 }
205 }
206 }
207
208 dw_wdt_set_next_heartbeat();
209 mod_timer(&dw_wdt.timer, jiffies + WDT_TIMEOUT);
210
211 return len;
212}
213
214static u32 dw_wdt_time_left(void)
215{
216 return readl(dw_wdt.regs + WDOG_CURRENT_COUNT_REG_OFFSET) /
217 clk_get_rate(dw_wdt.clk);
218}
219
220static const struct watchdog_info dw_wdt_ident = {
221 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT |
222 WDIOF_MAGICCLOSE,
223 .identity = "Synopsys DesignWare Watchdog",
224};
225
226static long dw_wdt_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
227{
228 unsigned long val;
229 int timeout;
230
231 switch (cmd) {
232 case WDIOC_GETSUPPORT:
Jingoo Han60295502013-08-01 14:38:36 +0900233 return copy_to_user((void __user *)arg, &dw_wdt_ident,
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000234 sizeof(dw_wdt_ident)) ? -EFAULT : 0;
235
236 case WDIOC_GETSTATUS:
237 case WDIOC_GETBOOTSTATUS:
Jingoo Han60295502013-08-01 14:38:36 +0900238 return put_user(0, (int __user *)arg);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000239
240 case WDIOC_KEEPALIVE:
241 dw_wdt_set_next_heartbeat();
242 return 0;
243
244 case WDIOC_SETTIMEOUT:
245 if (get_user(val, (int __user *)arg))
246 return -EFAULT;
247 timeout = dw_wdt_set_top(val);
248 return put_user(timeout , (int __user *)arg);
249
250 case WDIOC_GETTIMEOUT:
251 return put_user(dw_wdt_get_top(), (int __user *)arg);
252
253 case WDIOC_GETTIMELEFT:
254 /* Get the time left until expiry. */
255 if (get_user(val, (int __user *)arg))
256 return -EFAULT;
257 return put_user(dw_wdt_time_left(), (int __user *)arg);
258
259 default:
260 return -ENOTTY;
261 }
262}
263
264static int dw_wdt_release(struct inode *inode, struct file *filp)
265{
266 clear_bit(0, &dw_wdt.in_use);
267
268 if (!dw_wdt.expect_close) {
269 del_timer(&dw_wdt.timer);
270
271 if (!nowayout)
272 pr_crit("unexpected close, system will reboot soon\n");
273 else
274 pr_crit("watchdog cannot be disabled, system will reboot soon\n");
275 }
276
277 dw_wdt.expect_close = 0;
278
279 return 0;
280}
281
Heiko Stübnerad83c6c2013-06-26 20:03:52 +0200282#ifdef CONFIG_PM_SLEEP
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000283static int dw_wdt_suspend(struct device *dev)
284{
Heiko Stübner280103e2013-06-26 20:04:31 +0200285 clk_disable_unprepare(dw_wdt.clk);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000286
287 return 0;
288}
289
290static int dw_wdt_resume(struct device *dev)
291{
Heiko Stübner280103e2013-06-26 20:04:31 +0200292 int err = clk_prepare_enable(dw_wdt.clk);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000293
294 if (err)
295 return err;
296
297 dw_wdt_keepalive();
298
299 return 0;
300}
Heiko Stübnerad83c6c2013-06-26 20:03:52 +0200301#endif /* CONFIG_PM_SLEEP */
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000302
Heiko Stübnerad83c6c2013-06-26 20:03:52 +0200303static SIMPLE_DEV_PM_OPS(dw_wdt_pm_ops, dw_wdt_suspend, dw_wdt_resume);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000304
305static const struct file_operations wdt_fops = {
306 .owner = THIS_MODULE,
307 .llseek = no_llseek,
308 .open = dw_wdt_open,
309 .write = dw_wdt_write,
310 .unlocked_ioctl = dw_wdt_ioctl,
311 .release = dw_wdt_release
312};
313
314static struct miscdevice dw_wdt_miscdev = {
315 .fops = &wdt_fops,
316 .name = "watchdog",
317 .minor = WATCHDOG_MINOR,
318};
319
Bill Pemberton2d991a12012-11-19 13:21:41 -0500320static int dw_wdt_drv_probe(struct platform_device *pdev)
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000321{
322 int ret;
323 struct resource *mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
324
Thierry Reding4c271bb2013-01-21 11:09:25 +0100325 dw_wdt.regs = devm_ioremap_resource(&pdev->dev, mem);
326 if (IS_ERR(dw_wdt.regs))
327 return PTR_ERR(dw_wdt.regs);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000328
Jingoo Hancf3cc8c2013-04-29 18:15:26 +0900329 dw_wdt.clk = devm_clk_get(&pdev->dev, NULL);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000330 if (IS_ERR(dw_wdt.clk))
331 return PTR_ERR(dw_wdt.clk);
332
Heiko Stübner280103e2013-06-26 20:04:31 +0200333 ret = clk_prepare_enable(dw_wdt.clk);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000334 if (ret)
Jingoo Hancf3cc8c2013-04-29 18:15:26 +0900335 return ret;
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000336
337 spin_lock_init(&dw_wdt.lock);
338
339 ret = misc_register(&dw_wdt_miscdev);
340 if (ret)
341 goto out_disable_clk;
342
Jisheng Zhang31228f42014-09-23 15:42:12 +0800343 dw_wdt.restart_handler.notifier_call = dw_wdt_restart_handle;
344 dw_wdt.restart_handler.priority = 128;
345 ret = register_restart_handler(&dw_wdt.restart_handler);
346 if (ret)
347 pr_warn("cannot register restart handler\n");
348
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000349 dw_wdt_set_next_heartbeat();
350 setup_timer(&dw_wdt.timer, dw_wdt_ping, 0);
351 mod_timer(&dw_wdt.timer, jiffies + WDT_TIMEOUT);
352
353 return 0;
354
355out_disable_clk:
Heiko Stübner280103e2013-06-26 20:04:31 +0200356 clk_disable_unprepare(dw_wdt.clk);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000357
358 return ret;
359}
360
Bill Pemberton4b12b892012-11-19 13:26:24 -0500361static int dw_wdt_drv_remove(struct platform_device *pdev)
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000362{
Jisheng Zhang31228f42014-09-23 15:42:12 +0800363 unregister_restart_handler(&dw_wdt.restart_handler);
364
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000365 misc_deregister(&dw_wdt_miscdev);
366
Heiko Stübner280103e2013-06-26 20:04:31 +0200367 clk_disable_unprepare(dw_wdt.clk);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000368
369 return 0;
370}
371
Dinh Nguyen58e56372013-10-22 11:59:12 -0500372#ifdef CONFIG_OF
373static const struct of_device_id dw_wdt_of_match[] = {
374 { .compatible = "snps,dw-wdt", },
375 { /* sentinel */ }
376};
377MODULE_DEVICE_TABLE(of, dw_wdt_of_match);
378#endif
379
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000380static struct platform_driver dw_wdt_driver = {
381 .probe = dw_wdt_drv_probe,
Bill Pemberton82268712012-11-19 13:21:12 -0500382 .remove = dw_wdt_drv_remove,
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000383 .driver = {
384 .name = "dw_wdt",
385 .owner = THIS_MODULE,
Dinh Nguyen58e56372013-10-22 11:59:12 -0500386 .of_match_table = of_match_ptr(dw_wdt_of_match),
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000387 .pm = &dw_wdt_pm_ops,
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000388 },
389};
390
Axel Linb8ec6112011-11-29 13:56:27 +0800391module_platform_driver(dw_wdt_driver);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000392
393MODULE_AUTHOR("Jamie Iles");
394MODULE_DESCRIPTION("Synopsys DesignWare Watchdog Driver");
395MODULE_LICENSE("GPL");