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
);
118 * In case users set bigger timeout value than HW can support,
119 * kernel(watchdog_dev.c) helps to feed watchdog before
120 * wdd->max_hw_heartbeat_ms
122 if (top_s
* 1000 <= wdd
->max_hw_heartbeat_ms
)
123 wdd
->timeout
= dw_wdt_top_in_seconds(dw_wdt
, top_val
);
125 wdd
->timeout
= top_s
;
130 static void dw_wdt_arm_system_reset(struct dw_wdt
*dw_wdt
)
132 u32 val
= readl(dw_wdt
->regs
+ WDOG_CONTROL_REG_OFFSET
);
134 /* Disable interrupt mode; always perform system reset. */
135 val
&= ~WDOG_CONTROL_REG_RESP_MODE_MASK
;
136 /* Enable watchdog. */
137 val
|= WDOG_CONTROL_REG_WDT_EN_MASK
;
138 writel(val
, dw_wdt
->regs
+ WDOG_CONTROL_REG_OFFSET
);
141 static int dw_wdt_start(struct watchdog_device
*wdd
)
143 struct dw_wdt
*dw_wdt
= to_dw_wdt(wdd
);
145 dw_wdt_set_timeout(wdd
, wdd
->timeout
);
146 dw_wdt_ping(&dw_wdt
->wdd
);
147 dw_wdt_arm_system_reset(dw_wdt
);
152 static int dw_wdt_stop(struct watchdog_device
*wdd
)
154 struct dw_wdt
*dw_wdt
= to_dw_wdt(wdd
);
157 set_bit(WDOG_HW_RUNNING
, &wdd
->status
);
161 reset_control_assert(dw_wdt
->rst
);
162 reset_control_deassert(dw_wdt
->rst
);
167 static int dw_wdt_restart(struct watchdog_device
*wdd
,
168 unsigned long action
, void *data
)
170 struct dw_wdt
*dw_wdt
= to_dw_wdt(wdd
);
172 writel(0, dw_wdt
->regs
+ WDOG_TIMEOUT_RANGE_REG_OFFSET
);
173 if (dw_wdt_is_enabled(dw_wdt
))
174 writel(WDOG_COUNTER_RESTART_KICK_VALUE
,
175 dw_wdt
->regs
+ WDOG_COUNTER_RESTART_REG_OFFSET
);
177 dw_wdt_arm_system_reset(dw_wdt
);
179 /* wait for reset to assert... */
185 static unsigned int dw_wdt_get_timeleft(struct watchdog_device
*wdd
)
187 struct dw_wdt
*dw_wdt
= to_dw_wdt(wdd
);
189 return readl(dw_wdt
->regs
+ WDOG_CURRENT_COUNT_REG_OFFSET
) /
193 static const struct watchdog_info dw_wdt_ident
= {
194 .options
= WDIOF_KEEPALIVEPING
| WDIOF_SETTIMEOUT
|
196 .identity
= "Synopsys DesignWare Watchdog",
199 static const struct watchdog_ops dw_wdt_ops
= {
200 .owner
= THIS_MODULE
,
201 .start
= dw_wdt_start
,
204 .set_timeout
= dw_wdt_set_timeout
,
205 .get_timeleft
= dw_wdt_get_timeleft
,
206 .restart
= dw_wdt_restart
,
209 #ifdef CONFIG_PM_SLEEP
210 static int dw_wdt_suspend(struct device
*dev
)
212 struct dw_wdt
*dw_wdt
= dev_get_drvdata(dev
);
214 dw_wdt
->control
= readl(dw_wdt
->regs
+ WDOG_CONTROL_REG_OFFSET
);
215 dw_wdt
->timeout
= readl(dw_wdt
->regs
+ WDOG_TIMEOUT_RANGE_REG_OFFSET
);
217 clk_disable_unprepare(dw_wdt
->clk
);
222 static int dw_wdt_resume(struct device
*dev
)
224 struct dw_wdt
*dw_wdt
= dev_get_drvdata(dev
);
225 int err
= clk_prepare_enable(dw_wdt
->clk
);
230 writel(dw_wdt
->timeout
, dw_wdt
->regs
+ WDOG_TIMEOUT_RANGE_REG_OFFSET
);
231 writel(dw_wdt
->control
, dw_wdt
->regs
+ WDOG_CONTROL_REG_OFFSET
);
233 dw_wdt_ping(&dw_wdt
->wdd
);
237 #endif /* CONFIG_PM_SLEEP */
239 static SIMPLE_DEV_PM_OPS(dw_wdt_pm_ops
, dw_wdt_suspend
, dw_wdt_resume
);
241 static int dw_wdt_drv_probe(struct platform_device
*pdev
)
243 struct device
*dev
= &pdev
->dev
;
244 struct watchdog_device
*wdd
;
245 struct dw_wdt
*dw_wdt
;
248 dw_wdt
= devm_kzalloc(dev
, sizeof(*dw_wdt
), GFP_KERNEL
);
252 dw_wdt
->regs
= devm_platform_ioremap_resource(pdev
, 0);
253 if (IS_ERR(dw_wdt
->regs
))
254 return PTR_ERR(dw_wdt
->regs
);
256 dw_wdt
->clk
= devm_clk_get(dev
, NULL
);
257 if (IS_ERR(dw_wdt
->clk
))
258 return PTR_ERR(dw_wdt
->clk
);
260 ret
= clk_prepare_enable(dw_wdt
->clk
);
264 dw_wdt
->rate
= clk_get_rate(dw_wdt
->clk
);
265 if (dw_wdt
->rate
== 0) {
267 goto out_disable_clk
;
270 dw_wdt
->rst
= devm_reset_control_get_optional_shared(&pdev
->dev
, NULL
);
271 if (IS_ERR(dw_wdt
->rst
)) {
272 ret
= PTR_ERR(dw_wdt
->rst
);
273 goto out_disable_clk
;
276 reset_control_deassert(dw_wdt
->rst
);
279 wdd
->info
= &dw_wdt_ident
;
280 wdd
->ops
= &dw_wdt_ops
;
281 wdd
->min_timeout
= 1;
282 wdd
->max_hw_heartbeat_ms
=
283 dw_wdt_top_in_seconds(dw_wdt
, DW_WDT_MAX_TOP
) * 1000;
286 watchdog_set_drvdata(wdd
, dw_wdt
);
287 watchdog_set_nowayout(wdd
, nowayout
);
288 watchdog_init_timeout(wdd
, 0, dev
);
291 * If the watchdog is already running, use its already configured
292 * timeout. Otherwise use the default or the value provided through
295 if (dw_wdt_is_enabled(dw_wdt
)) {
296 wdd
->timeout
= dw_wdt_get_top(dw_wdt
);
297 set_bit(WDOG_HW_RUNNING
, &wdd
->status
);
299 wdd
->timeout
= DW_WDT_DEFAULT_SECONDS
;
300 watchdog_init_timeout(wdd
, 0, dev
);
303 platform_set_drvdata(pdev
, dw_wdt
);
305 watchdog_set_restart_priority(wdd
, 128);
307 ret
= watchdog_register_device(wdd
);
309 goto out_disable_clk
;
314 clk_disable_unprepare(dw_wdt
->clk
);
318 static int dw_wdt_drv_remove(struct platform_device
*pdev
)
320 struct dw_wdt
*dw_wdt
= platform_get_drvdata(pdev
);
322 watchdog_unregister_device(&dw_wdt
->wdd
);
323 reset_control_assert(dw_wdt
->rst
);
324 clk_disable_unprepare(dw_wdt
->clk
);
330 static const struct of_device_id dw_wdt_of_match
[] = {
331 { .compatible
= "snps,dw-wdt", },
334 MODULE_DEVICE_TABLE(of
, dw_wdt_of_match
);
337 static struct platform_driver dw_wdt_driver
= {
338 .probe
= dw_wdt_drv_probe
,
339 .remove
= dw_wdt_drv_remove
,
342 .of_match_table
= of_match_ptr(dw_wdt_of_match
),
343 .pm
= &dw_wdt_pm_ops
,
347 module_platform_driver(dw_wdt_driver
);
349 MODULE_AUTHOR("Jamie Iles");
350 MODULE_DESCRIPTION("Synopsys DesignWare Watchdog Driver");
351 MODULE_LICENSE("GPL");