blob: 3c6a3de13a1bc1cf06c3cc2a85f9489227952c4f [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
Guenter Roeckf29a72c2016-02-28 13:12:19 -080015 * do not implement a stop function. The watchdog core will continue to send
16 * heartbeat requests after the watchdog device has been closed.
Jamie Ilesc9353ae2011-01-24 12:19:12 +000017 */
Joe Perches27c766a2012-02-15 15:06:19 -080018
19#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Jamie Ilesc9353ae2011-01-24 12:19:12 +000020
21#include <linux/bitops.h>
22#include <linux/clk.h>
Jisheng Zhang31228f42014-09-23 15:42:12 +080023#include <linux/delay.h>
Jamie Ilesc9353ae2011-01-24 12:19:12 +000024#include <linux/err.h>
Jamie Ilesc9353ae2011-01-24 12:19:12 +000025#include <linux/io.h>
26#include <linux/kernel.h>
Jamie Ilesc9353ae2011-01-24 12:19:12 +000027#include <linux/module.h>
28#include <linux/moduleparam.h>
Jisheng Zhang31228f42014-09-23 15:42:12 +080029#include <linux/notifier.h>
Dinh Nguyen58e56372013-10-22 11:59:12 -050030#include <linux/of.h>
Jamie Ilesc9353ae2011-01-24 12:19:12 +000031#include <linux/pm.h>
32#include <linux/platform_device.h>
Jisheng Zhang31228f42014-09-23 15:42:12 +080033#include <linux/reboot.h>
Jamie Ilesc9353ae2011-01-24 12:19:12 +000034#include <linux/watchdog.h>
35
36#define WDOG_CONTROL_REG_OFFSET 0x00
37#define WDOG_CONTROL_REG_WDT_EN_MASK 0x01
38#define WDOG_TIMEOUT_RANGE_REG_OFFSET 0x04
Jisheng Zhangdfa07142014-09-23 15:42:11 +080039#define WDOG_TIMEOUT_RANGE_TOPINIT_SHIFT 4
Jamie Ilesc9353ae2011-01-24 12:19:12 +000040#define WDOG_CURRENT_COUNT_REG_OFFSET 0x08
41#define WDOG_COUNTER_RESTART_REG_OFFSET 0x0c
42#define WDOG_COUNTER_RESTART_KICK_VALUE 0x76
43
44/* The maximum TOP (timeout period) value that can be set in the watchdog. */
45#define DW_WDT_MAX_TOP 15
46
Doug Andersonb5ade9b2015-01-27 14:25:17 -080047#define DW_WDT_DEFAULT_SECONDS 30
48
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010049static bool nowayout = WATCHDOG_NOWAYOUT;
50module_param(nowayout, bool, 0);
Jamie Ilesc9353ae2011-01-24 12:19:12 +000051MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
52 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
53
Guenter Roeckf29a72c2016-02-28 13:12:19 -080054struct dw_wdt {
Jamie Ilesc9353ae2011-01-24 12:19:12 +000055 void __iomem *regs;
56 struct clk *clk;
Guenter Roeckc97344f2016-08-09 22:35:58 -070057 unsigned long rate;
Jisheng Zhang31228f42014-09-23 15:42:12 +080058 struct notifier_block restart_handler;
Guenter Roeckf29a72c2016-02-28 13:12:19 -080059 struct watchdog_device wdd;
60};
Jamie Ilesc9353ae2011-01-24 12:19:12 +000061
Guenter Roeckf29a72c2016-02-28 13:12:19 -080062#define to_dw_wdt(wdd) container_of(wdd, struct dw_wdt, wdd)
63
64static inline int dw_wdt_is_enabled(struct dw_wdt *dw_wdt)
Jamie Ilesc9353ae2011-01-24 12:19:12 +000065{
Guenter Roeckf29a72c2016-02-28 13:12:19 -080066 return readl(dw_wdt->regs + WDOG_CONTROL_REG_OFFSET) &
Jamie Ilesc9353ae2011-01-24 12:19:12 +000067 WDOG_CONTROL_REG_WDT_EN_MASK;
68}
69
Guenter Roeckf29a72c2016-02-28 13:12:19 -080070static inline int dw_wdt_top_in_seconds(struct dw_wdt *dw_wdt, unsigned top)
Jamie Ilesc9353ae2011-01-24 12:19:12 +000071{
72 /*
73 * There are 16 possible timeout values in 0..15 where the number of
74 * cycles is 2 ^ (16 + i) and the watchdog counts down.
75 */
Guenter Roeckc97344f2016-08-09 22:35:58 -070076 return (1U << (16 + top)) / dw_wdt->rate;
Jamie Ilesc9353ae2011-01-24 12:19:12 +000077}
78
Guenter Roeckf29a72c2016-02-28 13:12:19 -080079static int dw_wdt_get_top(struct dw_wdt *dw_wdt)
Jamie Ilesc9353ae2011-01-24 12:19:12 +000080{
Guenter Roeckf29a72c2016-02-28 13:12:19 -080081 int top = readl(dw_wdt->regs + WDOG_TIMEOUT_RANGE_REG_OFFSET) & 0xF;
Jamie Ilesc9353ae2011-01-24 12:19:12 +000082
Guenter Roeckf29a72c2016-02-28 13:12:19 -080083 return dw_wdt_top_in_seconds(dw_wdt, top);
Jamie Ilesc9353ae2011-01-24 12:19:12 +000084}
85
Guenter Roeckf29a72c2016-02-28 13:12:19 -080086static int dw_wdt_ping(struct watchdog_device *wdd)
Jamie Ilesc9353ae2011-01-24 12:19:12 +000087{
Guenter Roeckf29a72c2016-02-28 13:12:19 -080088 struct dw_wdt *dw_wdt = to_dw_wdt(wdd);
Jamie Ilesc9353ae2011-01-24 12:19:12 +000089
Guenter Roeckf29a72c2016-02-28 13:12:19 -080090 writel(WDOG_COUNTER_RESTART_KICK_VALUE, dw_wdt->regs +
Doug Andersona0085012015-01-27 14:25:16 -080091 WDOG_COUNTER_RESTART_REG_OFFSET);
Guenter Roeckf29a72c2016-02-28 13:12:19 -080092
93 return 0;
Doug Andersona0085012015-01-27 14:25:16 -080094}
95
Guenter Roeckf29a72c2016-02-28 13:12:19 -080096static int dw_wdt_set_timeout(struct watchdog_device *wdd, unsigned int top_s)
Jamie Ilesc9353ae2011-01-24 12:19:12 +000097{
Guenter Roeckf29a72c2016-02-28 13:12:19 -080098 struct dw_wdt *dw_wdt = to_dw_wdt(wdd);
Jamie Ilesc9353ae2011-01-24 12:19:12 +000099 int i, top_val = DW_WDT_MAX_TOP;
100
101 /*
102 * Iterate over the timeout values until we find the closest match. We
103 * always look for >=.
104 */
105 for (i = 0; i <= DW_WDT_MAX_TOP; ++i)
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800106 if (dw_wdt_top_in_seconds(dw_wdt, i) >= top_s) {
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000107 top_val = i;
108 break;
109 }
110
Doug Andersona0085012015-01-27 14:25:16 -0800111 /*
112 * Set the new value in the watchdog. Some versions of dw_wdt
113 * have have TOPINIT in the TIMEOUT_RANGE register (as per
114 * CP_WDT_DUAL_TOP in WDT_COMP_PARAMS_1). On those we
115 * effectively get a pat of the watchdog right here.
116 */
Jisheng Zhangdfa07142014-09-23 15:42:11 +0800117 writel(top_val | top_val << WDOG_TIMEOUT_RANGE_TOPINIT_SHIFT,
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800118 dw_wdt->regs + WDOG_TIMEOUT_RANGE_REG_OFFSET);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000119
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800120 wdd->timeout = dw_wdt_top_in_seconds(dw_wdt, top_val);
Doug Andersona0085012015-01-27 14:25:16 -0800121
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800122 return 0;
123}
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000124
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800125static int dw_wdt_start(struct watchdog_device *wdd)
126{
127 struct dw_wdt *dw_wdt = to_dw_wdt(wdd);
128
129 dw_wdt_set_timeout(wdd, wdd->timeout);
130
131 set_bit(WDOG_HW_RUNNING, &wdd->status);
132
133 writel(WDOG_CONTROL_REG_WDT_EN_MASK,
134 dw_wdt->regs + WDOG_CONTROL_REG_OFFSET);
135
136 return 0;
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000137}
138
Jisheng Zhang31228f42014-09-23 15:42:12 +0800139static int dw_wdt_restart_handle(struct notifier_block *this,
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800140 unsigned long mode, void *cmd)
Jisheng Zhang31228f42014-09-23 15:42:12 +0800141{
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800142 struct dw_wdt *dw_wdt;
Jisheng Zhang31228f42014-09-23 15:42:12 +0800143 u32 val;
144
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800145 dw_wdt = container_of(this, struct dw_wdt, restart_handler);
146
147 writel(0, dw_wdt->regs + WDOG_TIMEOUT_RANGE_REG_OFFSET);
148 val = readl(dw_wdt->regs + WDOG_CONTROL_REG_OFFSET);
Jisheng Zhang31228f42014-09-23 15:42:12 +0800149 if (val & WDOG_CONTROL_REG_WDT_EN_MASK)
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800150 writel(WDOG_COUNTER_RESTART_KICK_VALUE,
151 dw_wdt->regs + WDOG_COUNTER_RESTART_REG_OFFSET);
Jisheng Zhang31228f42014-09-23 15:42:12 +0800152 else
153 writel(WDOG_CONTROL_REG_WDT_EN_MASK,
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800154 dw_wdt->regs + WDOG_CONTROL_REG_OFFSET);
Jisheng Zhang31228f42014-09-23 15:42:12 +0800155
156 /* wait for reset to assert... */
157 mdelay(500);
158
159 return NOTIFY_DONE;
160}
161
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800162static unsigned int dw_wdt_get_timeleft(struct watchdog_device *wdd)
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000163{
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800164 struct dw_wdt *dw_wdt = to_dw_wdt(wdd);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000165
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800166 return readl(dw_wdt->regs + WDOG_CURRENT_COUNT_REG_OFFSET) /
Guenter Roeckc97344f2016-08-09 22:35:58 -0700167 dw_wdt->rate;
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000168}
169
170static const struct watchdog_info dw_wdt_ident = {
171 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT |
172 WDIOF_MAGICCLOSE,
173 .identity = "Synopsys DesignWare Watchdog",
174};
175
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800176static const struct watchdog_ops dw_wdt_ops = {
177 .owner = THIS_MODULE,
178 .start = dw_wdt_start,
179 .ping = dw_wdt_ping,
180 .set_timeout = dw_wdt_set_timeout,
181 .get_timeleft = dw_wdt_get_timeleft,
182};
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000183
Heiko Stübnerad83c6c2013-06-26 20:03:52 +0200184#ifdef CONFIG_PM_SLEEP
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000185static int dw_wdt_suspend(struct device *dev)
186{
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800187 struct dw_wdt *dw_wdt = dev_get_drvdata(dev);
188
189 clk_disable_unprepare(dw_wdt->clk);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000190
191 return 0;
192}
193
194static int dw_wdt_resume(struct device *dev)
195{
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800196 struct dw_wdt *dw_wdt = dev_get_drvdata(dev);
197 int err = clk_prepare_enable(dw_wdt->clk);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000198
199 if (err)
200 return err;
201
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800202 dw_wdt_ping(&dw_wdt->wdd);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000203
204 return 0;
205}
Heiko Stübnerad83c6c2013-06-26 20:03:52 +0200206#endif /* CONFIG_PM_SLEEP */
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000207
Heiko Stübnerad83c6c2013-06-26 20:03:52 +0200208static SIMPLE_DEV_PM_OPS(dw_wdt_pm_ops, dw_wdt_suspend, dw_wdt_resume);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000209
Bill Pemberton2d991a12012-11-19 13:21:41 -0500210static int dw_wdt_drv_probe(struct platform_device *pdev)
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000211{
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800212 struct device *dev = &pdev->dev;
213 struct watchdog_device *wdd;
214 struct dw_wdt *dw_wdt;
215 struct resource *mem;
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000216 int ret;
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000217
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800218 dw_wdt = devm_kzalloc(dev, sizeof(*dw_wdt), GFP_KERNEL);
219 if (!dw_wdt)
220 return -ENOMEM;
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000221
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800222 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
223 dw_wdt->regs = devm_ioremap_resource(dev, mem);
224 if (IS_ERR(dw_wdt->regs))
225 return PTR_ERR(dw_wdt->regs);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000226
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800227 dw_wdt->clk = devm_clk_get(dev, NULL);
228 if (IS_ERR(dw_wdt->clk))
229 return PTR_ERR(dw_wdt->clk);
230
231 ret = clk_prepare_enable(dw_wdt->clk);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000232 if (ret)
Jingoo Hancf3cc8c2013-04-29 18:15:26 +0900233 return ret;
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000234
Guenter Roeckc97344f2016-08-09 22:35:58 -0700235 dw_wdt->rate = clk_get_rate(dw_wdt->clk);
236 if (dw_wdt->rate == 0) {
237 ret = -EINVAL;
238 goto out_disable_clk;
239 }
240
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800241 wdd = &dw_wdt->wdd;
242 wdd->info = &dw_wdt_ident;
243 wdd->ops = &dw_wdt_ops;
244 wdd->min_timeout = 1;
245 wdd->max_hw_heartbeat_ms =
246 dw_wdt_top_in_seconds(dw_wdt, DW_WDT_MAX_TOP) * 1000;
247 wdd->parent = dev;
248
249 watchdog_set_drvdata(wdd, dw_wdt);
250 watchdog_set_nowayout(wdd, nowayout);
251 watchdog_init_timeout(wdd, 0, dev);
252
253 /*
254 * If the watchdog is already running, use its already configured
255 * timeout. Otherwise use the default or the value provided through
256 * devicetree.
257 */
258 if (dw_wdt_is_enabled(dw_wdt)) {
259 wdd->timeout = dw_wdt_get_top(dw_wdt);
260 set_bit(WDOG_HW_RUNNING, &wdd->status);
261 } else {
262 wdd->timeout = DW_WDT_DEFAULT_SECONDS;
263 watchdog_init_timeout(wdd, 0, dev);
264 }
265
266 platform_set_drvdata(pdev, dw_wdt);
267
268 ret = watchdog_register_device(wdd);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000269 if (ret)
270 goto out_disable_clk;
271
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800272 dw_wdt->restart_handler.notifier_call = dw_wdt_restart_handle;
273 dw_wdt->restart_handler.priority = 128;
274 ret = register_restart_handler(&dw_wdt->restart_handler);
Jisheng Zhang31228f42014-09-23 15:42:12 +0800275 if (ret)
276 pr_warn("cannot register restart handler\n");
277
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000278 return 0;
279
280out_disable_clk:
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800281 clk_disable_unprepare(dw_wdt->clk);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000282 return ret;
283}
284
Bill Pemberton4b12b892012-11-19 13:26:24 -0500285static int dw_wdt_drv_remove(struct platform_device *pdev)
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000286{
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800287 struct dw_wdt *dw_wdt = platform_get_drvdata(pdev);
Jisheng Zhang31228f42014-09-23 15:42:12 +0800288
Guenter Roeckf29a72c2016-02-28 13:12:19 -0800289 unregister_restart_handler(&dw_wdt->restart_handler);
290 watchdog_unregister_device(&dw_wdt->wdd);
291 clk_disable_unprepare(dw_wdt->clk);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000292
293 return 0;
294}
295
Dinh Nguyen58e56372013-10-22 11:59:12 -0500296#ifdef CONFIG_OF
297static const struct of_device_id dw_wdt_of_match[] = {
298 { .compatible = "snps,dw-wdt", },
299 { /* sentinel */ }
300};
301MODULE_DEVICE_TABLE(of, dw_wdt_of_match);
302#endif
303
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000304static struct platform_driver dw_wdt_driver = {
305 .probe = dw_wdt_drv_probe,
Bill Pemberton82268712012-11-19 13:21:12 -0500306 .remove = dw_wdt_drv_remove,
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000307 .driver = {
308 .name = "dw_wdt",
Dinh Nguyen58e56372013-10-22 11:59:12 -0500309 .of_match_table = of_match_ptr(dw_wdt_of_match),
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000310 .pm = &dw_wdt_pm_ops,
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000311 },
312};
313
Axel Linb8ec6112011-11-29 13:56:27 +0800314module_platform_driver(dw_wdt_driver);
Jamie Ilesc9353ae2011-01-24 12:19:12 +0000315
316MODULE_AUTHOR("Jamie Iles");
317MODULE_DESCRIPTION("Synopsys DesignWare Watchdog Driver");
318MODULE_LICENSE("GPL");