1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright 2010-2011 Picochip Ltd., Jamie Iles
4 * http://www.picochip.com
6 * This file implements a driver for the Synopsys DesignWare watchdog device
7 * in the many subsystems. The watchdog has 16 different timeout periods
8 * and these are a function of the input clock frequency.
10 * The DesignWare watchdog cannot be stopped once it has been started so we
11 * do not implement a stop function. The watchdog core will continue to send
12 * heartbeat requests after the watchdog device has been closed.
15 #include <linux/bitops.h>
16 #include <linux/clk.h>
17 #include <linux/delay.h>
18 #include <linux/err.h>
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/moduleparam.h>
25 #include <linux/platform_device.h>
26 #include <linux/reset.h>
27 #include <linux/watchdog.h>
29 #define WDOG_CONTROL_REG_OFFSET 0x00
30 #define WDOG_CONTROL_REG_WDT_EN_MASK 0x01
31 #define WDOG_CONTROL_REG_RESP_MODE_MASK 0x02
32 #define WDOG_TIMEOUT_RANGE_REG_OFFSET 0x04
33 #define WDOG_TIMEOUT_RANGE_TOPINIT_SHIFT 4
34 #define WDOG_CURRENT_COUNT_REG_OFFSET 0x08
35 #define WDOG_COUNTER_RESTART_REG_OFFSET 0x0c
36 #define WDOG_COUNTER_RESTART_KICK_VALUE 0x76
38 /* The maximum TOP (timeout period) value that can be set in the watchdog. */
39 #define DW_WDT_MAX_TOP 15
41 #define DW_WDT_DEFAULT_SECONDS 30
43 static bool nowayout
= WATCHDOG_NOWAYOUT
;
44 module_param(nowayout
, bool, 0);
45 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started "
46 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
52 struct watchdog_device wdd
;
53 struct reset_control
*rst
;
59 #define to_dw_wdt(wdd) container_of(wdd, struct dw_wdt, wdd)
61 static inline int dw_wdt_is_enabled(struct dw_wdt
*dw_wdt
)
63 return readl(dw_wdt
->regs
+ WDOG_CONTROL_REG_OFFSET
) &
64 WDOG_CONTROL_REG_WDT_EN_MASK
;
67 static inline int dw_wdt_top_in_seconds(struct dw_wdt
*dw_wdt
, unsigned top
)
70 * There are 16 possible timeout values in 0..15 where the number of
71 * cycles is 2 ^ (16 + i) and the watchdog counts down.
73 return (1U << (16 + top
)) / dw_wdt
->rate
;
76 static int dw_wdt_get_top(struct dw_wdt
*dw_wdt
)
78 int top
= readl(dw_wdt
->regs
+ WDOG_TIMEOUT_RANGE_REG_OFFSET
) & 0xF;
80 return dw_wdt_top_in_seconds(dw_wdt
, top
);
83 static int dw_wdt_ping(struct watchdog_device
*wdd
)
85 struct dw_wdt
*dw_wdt
= to_dw_wdt(wdd
);
87 writel(WDOG_COUNTER_RESTART_KICK_VALUE
, dw_wdt
->regs
+
88 WDOG_COUNTER_RESTART_REG_OFFSET
);
93 static int dw_wdt_set_timeout(struct watchdog_device
*wdd
, unsigned int top_s
)
95 struct dw_wdt
*dw_wdt
= to_dw_wdt(wdd
);
96 int i
, top_val
= DW_WDT_MAX_TOP
;
99 * Iterate over the timeout values until we find the closest match. We
100 * always look for >=.
102 for (i
= 0; i
<= DW_WDT_MAX_TOP
; ++i
)
103 if (dw_wdt_top_in_seconds(dw_wdt
, i
) >= top_s
) {
109 * Set the new value in the watchdog. Some versions of dw_wdt
110 * have have TOPINIT in the TIMEOUT_RANGE register (as per
111 * CP_WDT_DUAL_TOP in WDT_COMP_PARAMS_1). On those we
112 * effectively get a pat of the watchdog right here.
114 writel(top_val
| top_val
<< WDOG_TIMEOUT_RANGE_TOPINIT_SHIFT
,
115 dw_wdt
->regs
+ WDOG_TIMEOUT_RANGE_REG_OFFSET
);
117 wdd
->timeout
= dw_wdt_top_in_seconds(dw_wdt
, top_val
);
122 static void dw_wdt_arm_system_reset(struct dw_wdt
*dw_wdt
)
124 u32 val
= readl(dw_wdt
->regs
+ WDOG_CONTROL_REG_OFFSET
);
126 /* Disable interrupt mode; always perform system reset. */
127 val
&= ~WDOG_CONTROL_REG_RESP_MODE_MASK
;
128 /* Enable watchdog. */
129 val
|= WDOG_CONTROL_REG_WDT_EN_MASK
;
130 writel(val
, dw_wdt
->regs
+ WDOG_CONTROL_REG_OFFSET
);
133 static int dw_wdt_start(struct watchdog_device
*wdd
)
135 struct dw_wdt
*dw_wdt
= to_dw_wdt(wdd
);
137 dw_wdt_set_timeout(wdd
, wdd
->timeout
);
138 dw_wdt_arm_system_reset(dw_wdt
);
143 static int dw_wdt_stop(struct watchdog_device
*wdd
)
145 struct dw_wdt
*dw_wdt
= to_dw_wdt(wdd
);
148 set_bit(WDOG_HW_RUNNING
, &wdd
->status
);
152 reset_control_assert(dw_wdt
->rst
);
153 reset_control_deassert(dw_wdt
->rst
);
158 static int dw_wdt_restart(struct watchdog_device
*wdd
,
159 unsigned long action
, void *data
)
161 struct dw_wdt
*dw_wdt
= to_dw_wdt(wdd
);
163 writel(0, dw_wdt
->regs
+ WDOG_TIMEOUT_RANGE_REG_OFFSET
);
164 if (dw_wdt_is_enabled(dw_wdt
))
165 writel(WDOG_COUNTER_RESTART_KICK_VALUE
,
166 dw_wdt
->regs
+ WDOG_COUNTER_RESTART_REG_OFFSET
);
168 dw_wdt_arm_system_reset(dw_wdt
);
170 /* wait for reset to assert... */
176 static unsigned int dw_wdt_get_timeleft(struct watchdog_device
*wdd
)
178 struct dw_wdt
*dw_wdt
= to_dw_wdt(wdd
);
180 return readl(dw_wdt
->regs
+ WDOG_CURRENT_COUNT_REG_OFFSET
) /
184 static const struct watchdog_info dw_wdt_ident
= {
185 .options
= WDIOF_KEEPALIVEPING
| WDIOF_SETTIMEOUT
|
187 .identity
= "Synopsys DesignWare Watchdog",
190 static const struct watchdog_ops dw_wdt_ops
= {
191 .owner
= THIS_MODULE
,
192 .start
= dw_wdt_start
,
195 .set_timeout
= dw_wdt_set_timeout
,
196 .get_timeleft
= dw_wdt_get_timeleft
,
197 .restart
= dw_wdt_restart
,
200 #ifdef CONFIG_PM_SLEEP
201 static int dw_wdt_suspend(struct device
*dev
)
203 struct dw_wdt
*dw_wdt
= dev_get_drvdata(dev
);
205 dw_wdt
->control
= readl(dw_wdt
->regs
+ WDOG_CONTROL_REG_OFFSET
);
206 dw_wdt
->timeout
= readl(dw_wdt
->regs
+ WDOG_TIMEOUT_RANGE_REG_OFFSET
);
208 clk_disable_unprepare(dw_wdt
->clk
);
213 static int dw_wdt_resume(struct device
*dev
)
215 struct dw_wdt
*dw_wdt
= dev_get_drvdata(dev
);
216 int err
= clk_prepare_enable(dw_wdt
->clk
);
221 writel(dw_wdt
->timeout
, dw_wdt
->regs
+ WDOG_TIMEOUT_RANGE_REG_OFFSET
);
222 writel(dw_wdt
->control
, dw_wdt
->regs
+ WDOG_CONTROL_REG_OFFSET
);
224 dw_wdt_ping(&dw_wdt
->wdd
);
228 #endif /* CONFIG_PM_SLEEP */
230 static SIMPLE_DEV_PM_OPS(dw_wdt_pm_ops
, dw_wdt_suspend
, dw_wdt_resume
);
232 static int dw_wdt_drv_probe(struct platform_device
*pdev
)
234 struct device
*dev
= &pdev
->dev
;
235 struct watchdog_device
*wdd
;
236 struct dw_wdt
*dw_wdt
;
239 dw_wdt
= devm_kzalloc(dev
, sizeof(*dw_wdt
), GFP_KERNEL
);
243 dw_wdt
->regs
= devm_platform_ioremap_resource(pdev
, 0);
244 if (IS_ERR(dw_wdt
->regs
))
245 return PTR_ERR(dw_wdt
->regs
);
247 dw_wdt
->clk
= devm_clk_get(dev
, NULL
);
248 if (IS_ERR(dw_wdt
->clk
))
249 return PTR_ERR(dw_wdt
->clk
);
251 ret
= clk_prepare_enable(dw_wdt
->clk
);
255 dw_wdt
->rate
= clk_get_rate(dw_wdt
->clk
);
256 if (dw_wdt
->rate
== 0) {
258 goto out_disable_clk
;
261 dw_wdt
->rst
= devm_reset_control_get_optional_shared(&pdev
->dev
, NULL
);
262 if (IS_ERR(dw_wdt
->rst
)) {
263 ret
= PTR_ERR(dw_wdt
->rst
);
264 goto out_disable_clk
;
267 reset_control_deassert(dw_wdt
->rst
);
270 wdd
->info
= &dw_wdt_ident
;
271 wdd
->ops
= &dw_wdt_ops
;
272 wdd
->min_timeout
= 1;
273 wdd
->max_hw_heartbeat_ms
=
274 dw_wdt_top_in_seconds(dw_wdt
, DW_WDT_MAX_TOP
) * 1000;
277 watchdog_set_drvdata(wdd
, dw_wdt
);
278 watchdog_set_nowayout(wdd
, nowayout
);
279 watchdog_init_timeout(wdd
, 0, dev
);
282 * If the watchdog is already running, use its already configured
283 * timeout. Otherwise use the default or the value provided through
286 if (dw_wdt_is_enabled(dw_wdt
)) {
287 wdd
->timeout
= dw_wdt_get_top(dw_wdt
);
288 set_bit(WDOG_HW_RUNNING
, &wdd
->status
);
290 wdd
->timeout
= DW_WDT_DEFAULT_SECONDS
;
291 watchdog_init_timeout(wdd
, 0, dev
);
294 platform_set_drvdata(pdev
, dw_wdt
);
296 watchdog_set_restart_priority(wdd
, 128);
298 ret
= watchdog_register_device(wdd
);
300 goto out_disable_clk
;
305 clk_disable_unprepare(dw_wdt
->clk
);
309 static int dw_wdt_drv_remove(struct platform_device
*pdev
)
311 struct dw_wdt
*dw_wdt
= platform_get_drvdata(pdev
);
313 watchdog_unregister_device(&dw_wdt
->wdd
);
314 reset_control_assert(dw_wdt
->rst
);
315 clk_disable_unprepare(dw_wdt
->clk
);
321 static const struct of_device_id dw_wdt_of_match
[] = {
322 { .compatible
= "snps,dw-wdt", },
325 MODULE_DEVICE_TABLE(of
, dw_wdt_of_match
);
328 static struct platform_driver dw_wdt_driver
= {
329 .probe
= dw_wdt_drv_probe
,
330 .remove
= dw_wdt_drv_remove
,
333 .of_match_table
= of_match_ptr(dw_wdt_of_match
),
334 .pm
= &dw_wdt_pm_ops
,
338 module_platform_driver(dw_wdt_driver
);
340 MODULE_AUTHOR("Jamie Iles");
341 MODULE_DESCRIPTION("Synopsys DesignWare Watchdog Driver");
342 MODULE_LICENSE("GPL");