1 // SPDX-License-Identifier: GPL-2.0
3 * Watchdog driver for Renesas WDT watchdog
5 * Copyright (C) 2015-17 Wolfram Sang, Sang Engineering <wsa@sang-engineering.com>
6 * Copyright (C) 2015-17 Renesas Electronics Corporation
8 #include <linux/bitops.h>
10 #include <linux/delay.h>
12 #include <linux/kernel.h>
13 #include <linux/module.h>
15 #include <linux/platform_device.h>
16 #include <linux/pm_runtime.h>
17 #include <linux/smp.h>
18 #include <linux/sys_soc.h>
19 #include <linux/watchdog.h>
23 #define RWTCSRA_WOVF BIT(4)
24 #define RWTCSRA_WRFLG BIT(5)
25 #define RWTCSRA_TME BIT(7)
28 #define RWDT_DEFAULT_TIMEOUT 60U
31 * In probe, clk_rate is checked to be not more than 16 bit * biggest clock
32 * divider (12 bits). d is only a factor to fully utilize the WDT counter and
33 * will not exceed its 16 bits. Thus, no overflow, we stay below 32 bits.
35 #define MUL_BY_CLKS_PER_SEC(p, d) \
36 DIV_ROUND_UP((d) * (p)->clk_rate, clk_divs[(p)->cks])
38 /* d is 16 bit, clk_divs 12 bit -> no 32 bit overflow */
39 #define DIV_BY_CLKS_PER_SEC(p, d) ((d) * clk_divs[(p)->cks] / (p)->clk_rate)
41 static const unsigned int clk_divs
[] = { 1, 4, 16, 32, 64, 128, 1024, 4096 };
43 static bool nowayout
= WATCHDOG_NOWAYOUT
;
44 module_param(nowayout
, bool, 0);
45 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started (default="
46 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
50 struct watchdog_device wdev
;
51 unsigned long clk_rate
;
55 static void rwdt_write(struct rwdt_priv
*priv
, u32 val
, unsigned int reg
)
62 writel_relaxed(val
, priv
->base
+ reg
);
65 static int rwdt_init_timeout(struct watchdog_device
*wdev
)
67 struct rwdt_priv
*priv
= watchdog_get_drvdata(wdev
);
69 rwdt_write(priv
, 65536 - MUL_BY_CLKS_PER_SEC(priv
, wdev
->timeout
), RWTCNT
);
74 static void rwdt_wait_cycles(struct rwdt_priv
*priv
, unsigned int cycles
)
78 delay
= DIV_ROUND_UP(cycles
* 1000000, priv
->clk_rate
);
80 usleep_range(delay
, 2 * delay
);
83 static int rwdt_start(struct watchdog_device
*wdev
)
85 struct rwdt_priv
*priv
= watchdog_get_drvdata(wdev
);
88 pm_runtime_get_sync(wdev
->parent
);
90 /* Stop the timer before we modify any register */
91 val
= readb_relaxed(priv
->base
+ RWTCSRA
) & ~RWTCSRA_TME
;
92 rwdt_write(priv
, val
, RWTCSRA
);
93 /* Delay 2 cycles before setting watchdog counter */
94 rwdt_wait_cycles(priv
, 2);
96 rwdt_init_timeout(wdev
);
97 rwdt_write(priv
, priv
->cks
, RWTCSRA
);
98 rwdt_write(priv
, 0, RWTCSRB
);
100 while (readb_relaxed(priv
->base
+ RWTCSRA
) & RWTCSRA_WRFLG
)
103 rwdt_write(priv
, priv
->cks
| RWTCSRA_TME
, RWTCSRA
);
108 static int rwdt_stop(struct watchdog_device
*wdev
)
110 struct rwdt_priv
*priv
= watchdog_get_drvdata(wdev
);
112 rwdt_write(priv
, priv
->cks
, RWTCSRA
);
113 /* Delay 3 cycles before disabling module clock */
114 rwdt_wait_cycles(priv
, 3);
115 pm_runtime_put(wdev
->parent
);
120 static unsigned int rwdt_get_timeleft(struct watchdog_device
*wdev
)
122 struct rwdt_priv
*priv
= watchdog_get_drvdata(wdev
);
123 u16 val
= readw_relaxed(priv
->base
+ RWTCNT
);
125 return DIV_BY_CLKS_PER_SEC(priv
, 65536 - val
);
128 static int rwdt_restart(struct watchdog_device
*wdev
, unsigned long action
,
131 struct rwdt_priv
*priv
= watchdog_get_drvdata(wdev
);
134 rwdt_write(priv
, 0xffff, RWTCNT
);
138 static const struct watchdog_info rwdt_ident
= {
139 .options
= WDIOF_MAGICCLOSE
| WDIOF_KEEPALIVEPING
| WDIOF_SETTIMEOUT
|
141 .identity
= "Renesas WDT Watchdog",
144 static const struct watchdog_ops rwdt_ops
= {
145 .owner
= THIS_MODULE
,
148 .ping
= rwdt_init_timeout
,
149 .get_timeleft
= rwdt_get_timeleft
,
150 .restart
= rwdt_restart
,
153 #if defined(CONFIG_ARCH_RCAR_GEN2) && defined(CONFIG_SMP)
155 * Watchdog-reset integration is broken on early revisions of R-Car Gen2 SoCs
157 static const struct soc_device_attribute rwdt_quirks_match
[] = {
161 .data
= (void *)1, /* needs single CPU */
165 .data
= (void *)1, /* needs single CPU */
168 .data
= (void *)0, /* needs SMP disabled */
173 static bool rwdt_blacklisted(struct device
*dev
)
175 const struct soc_device_attribute
*attr
;
177 attr
= soc_device_match(rwdt_quirks_match
);
178 if (attr
&& setup_max_cpus
> (uintptr_t)attr
->data
) {
179 dev_info(dev
, "Watchdog blacklisted on %s %s\n", attr
->soc_id
,
186 #else /* !CONFIG_ARCH_RCAR_GEN2 || !CONFIG_SMP */
187 static inline bool rwdt_blacklisted(struct device
*dev
) { return false; }
188 #endif /* !CONFIG_ARCH_RCAR_GEN2 || !CONFIG_SMP */
190 static int rwdt_probe(struct platform_device
*pdev
)
192 struct device
*dev
= &pdev
->dev
;
193 struct rwdt_priv
*priv
;
195 unsigned long clks_per_sec
;
198 if (rwdt_blacklisted(dev
))
201 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
205 priv
->base
= devm_platform_ioremap_resource(pdev
, 0);
206 if (IS_ERR(priv
->base
))
207 return PTR_ERR(priv
->base
);
209 clk
= devm_clk_get(dev
, NULL
);
213 pm_runtime_enable(dev
);
214 pm_runtime_get_sync(dev
);
215 priv
->clk_rate
= clk_get_rate(clk
);
216 priv
->wdev
.bootstatus
= (readb_relaxed(priv
->base
+ RWTCSRA
) &
217 RWTCSRA_WOVF
) ? WDIOF_CARDRESET
: 0;
220 if (!priv
->clk_rate
) {
225 for (i
= ARRAY_SIZE(clk_divs
) - 1; i
>= 0; i
--) {
226 clks_per_sec
= priv
->clk_rate
/ clk_divs
[i
];
227 if (clks_per_sec
&& clks_per_sec
< 65536) {
234 dev_err(dev
, "Can't find suitable clock divider\n");
239 priv
->wdev
.info
= &rwdt_ident
;
240 priv
->wdev
.ops
= &rwdt_ops
;
241 priv
->wdev
.parent
= dev
;
242 priv
->wdev
.min_timeout
= 1;
243 priv
->wdev
.max_timeout
= DIV_BY_CLKS_PER_SEC(priv
, 65536);
244 priv
->wdev
.timeout
= min(priv
->wdev
.max_timeout
, RWDT_DEFAULT_TIMEOUT
);
246 platform_set_drvdata(pdev
, priv
);
247 watchdog_set_drvdata(&priv
->wdev
, priv
);
248 watchdog_set_nowayout(&priv
->wdev
, nowayout
);
249 watchdog_set_restart_priority(&priv
->wdev
, 0);
250 watchdog_stop_on_unregister(&priv
->wdev
);
252 /* This overrides the default timeout only if DT configuration was found */
253 watchdog_init_timeout(&priv
->wdev
, 0, dev
);
255 ret
= watchdog_register_device(&priv
->wdev
);
262 pm_runtime_disable(dev
);
266 static int rwdt_remove(struct platform_device
*pdev
)
268 struct rwdt_priv
*priv
= platform_get_drvdata(pdev
);
270 watchdog_unregister_device(&priv
->wdev
);
271 pm_runtime_disable(&pdev
->dev
);
276 static int __maybe_unused
rwdt_suspend(struct device
*dev
)
278 struct rwdt_priv
*priv
= dev_get_drvdata(dev
);
280 if (watchdog_active(&priv
->wdev
))
281 rwdt_stop(&priv
->wdev
);
286 static int __maybe_unused
rwdt_resume(struct device
*dev
)
288 struct rwdt_priv
*priv
= dev_get_drvdata(dev
);
290 if (watchdog_active(&priv
->wdev
))
291 rwdt_start(&priv
->wdev
);
296 static SIMPLE_DEV_PM_OPS(rwdt_pm_ops
, rwdt_suspend
, rwdt_resume
);
298 static const struct of_device_id rwdt_ids
[] = {
299 { .compatible
= "renesas,rcar-gen2-wdt", },
300 { .compatible
= "renesas,rcar-gen3-wdt", },
303 MODULE_DEVICE_TABLE(of
, rwdt_ids
);
305 static struct platform_driver rwdt_driver
= {
307 .name
= "renesas_wdt",
308 .of_match_table
= rwdt_ids
,
312 .remove
= rwdt_remove
,
314 module_platform_driver(rwdt_driver
);
316 MODULE_DESCRIPTION("Renesas WDT Watchdog Driver");
317 MODULE_LICENSE("GPL v2");
318 MODULE_AUTHOR("Wolfram Sang <wsa@sang-engineering.com>");