Merge tag 'io_uring-5.11-2021-01-16' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / watchdog / renesas_wdt.c
blob47fce4de01105556429ee1f15c592bc1aeb7c922
1 // SPDX-License-Identifier: GPL-2.0
2 /*
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
7 */
8 #include <linux/bitops.h>
9 #include <linux/clk.h>
10 #include <linux/delay.h>
11 #include <linux/io.h>
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/of.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>
21 #define RWTCNT 0
22 #define RWTCSRA 4
23 #define RWTCSRA_WOVF BIT(4)
24 #define RWTCSRA_WRFLG BIT(5)
25 #define RWTCSRA_TME BIT(7)
26 #define RWTCSRB 8
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) ")");
48 struct rwdt_priv {
49 void __iomem *base;
50 struct watchdog_device wdev;
51 unsigned long clk_rate;
52 u8 cks;
55 static void rwdt_write(struct rwdt_priv *priv, u32 val, unsigned int reg)
57 if (reg == RWTCNT)
58 val |= 0x5a5a0000;
59 else
60 val |= 0xa5a5a500;
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);
71 return 0;
74 static void rwdt_wait_cycles(struct rwdt_priv *priv, unsigned int cycles)
76 unsigned int delay;
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);
86 u8 val;
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)
101 cpu_relax();
103 rwdt_write(priv, priv->cks | RWTCSRA_TME, RWTCSRA);
105 return 0;
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);
117 return 0;
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,
129 void *data)
131 struct rwdt_priv *priv = watchdog_get_drvdata(wdev);
133 rwdt_start(wdev);
134 rwdt_write(priv, 0xffff, RWTCNT);
135 return 0;
138 static const struct watchdog_info rwdt_ident = {
139 .options = WDIOF_MAGICCLOSE | WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT |
140 WDIOF_CARDRESET,
141 .identity = "Renesas WDT Watchdog",
144 static const struct watchdog_ops rwdt_ops = {
145 .owner = THIS_MODULE,
146 .start = rwdt_start,
147 .stop = rwdt_stop,
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[] = {
159 .soc_id = "r8a7790",
160 .revision = "ES1.*",
161 .data = (void *)1, /* needs single CPU */
162 }, {
163 .soc_id = "r8a7791",
164 .revision = "ES1.*",
165 .data = (void *)1, /* needs single CPU */
166 }, {
167 .soc_id = "r8a7792",
168 .data = (void *)0, /* needs SMP disabled */
170 { /* sentinel */ }
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,
180 attr->revision);
181 return true;
184 return false;
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;
194 struct clk *clk;
195 unsigned long clks_per_sec;
196 int ret, i;
197 u8 csra;
199 if (rwdt_blacklisted(dev))
200 return -ENODEV;
202 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
203 if (!priv)
204 return -ENOMEM;
206 priv->base = devm_platform_ioremap_resource(pdev, 0);
207 if (IS_ERR(priv->base))
208 return PTR_ERR(priv->base);
210 clk = devm_clk_get(dev, NULL);
211 if (IS_ERR(clk))
212 return PTR_ERR(clk);
214 pm_runtime_enable(dev);
215 pm_runtime_get_sync(dev);
216 priv->clk_rate = clk_get_rate(clk);
217 csra = readb_relaxed(priv->base + RWTCSRA);
218 priv->wdev.bootstatus = csra & RWTCSRA_WOVF ? WDIOF_CARDRESET : 0;
219 pm_runtime_put(dev);
221 if (!priv->clk_rate) {
222 ret = -ENOENT;
223 goto out_pm_disable;
226 for (i = ARRAY_SIZE(clk_divs) - 1; i >= 0; i--) {
227 clks_per_sec = priv->clk_rate / clk_divs[i];
228 if (clks_per_sec && clks_per_sec < 65536) {
229 priv->cks = i;
230 break;
234 if (i < 0) {
235 dev_err(dev, "Can't find suitable clock divider\n");
236 ret = -ERANGE;
237 goto out_pm_disable;
240 priv->wdev.info = &rwdt_ident;
241 priv->wdev.ops = &rwdt_ops;
242 priv->wdev.parent = dev;
243 priv->wdev.min_timeout = 1;
244 priv->wdev.max_timeout = DIV_BY_CLKS_PER_SEC(priv, 65536);
245 priv->wdev.timeout = min(priv->wdev.max_timeout, RWDT_DEFAULT_TIMEOUT);
247 platform_set_drvdata(pdev, priv);
248 watchdog_set_drvdata(&priv->wdev, priv);
249 watchdog_set_nowayout(&priv->wdev, nowayout);
250 watchdog_set_restart_priority(&priv->wdev, 0);
251 watchdog_stop_on_unregister(&priv->wdev);
253 /* This overrides the default timeout only if DT configuration was found */
254 watchdog_init_timeout(&priv->wdev, 0, dev);
256 /* Check if FW enabled the watchdog */
257 if (csra & RWTCSRA_TME) {
258 /* Ensure properly initialized dividers */
259 rwdt_start(&priv->wdev);
260 set_bit(WDOG_HW_RUNNING, &priv->wdev.status);
263 ret = watchdog_register_device(&priv->wdev);
264 if (ret < 0)
265 goto out_pm_disable;
267 return 0;
269 out_pm_disable:
270 pm_runtime_disable(dev);
271 return ret;
274 static int rwdt_remove(struct platform_device *pdev)
276 struct rwdt_priv *priv = platform_get_drvdata(pdev);
278 watchdog_unregister_device(&priv->wdev);
279 pm_runtime_disable(&pdev->dev);
281 return 0;
284 static int __maybe_unused rwdt_suspend(struct device *dev)
286 struct rwdt_priv *priv = dev_get_drvdata(dev);
288 if (watchdog_active(&priv->wdev))
289 rwdt_stop(&priv->wdev);
291 return 0;
294 static int __maybe_unused rwdt_resume(struct device *dev)
296 struct rwdt_priv *priv = dev_get_drvdata(dev);
298 if (watchdog_active(&priv->wdev))
299 rwdt_start(&priv->wdev);
301 return 0;
304 static SIMPLE_DEV_PM_OPS(rwdt_pm_ops, rwdt_suspend, rwdt_resume);
306 static const struct of_device_id rwdt_ids[] = {
307 { .compatible = "renesas,rcar-gen2-wdt", },
308 { .compatible = "renesas,rcar-gen3-wdt", },
309 { /* sentinel */ }
311 MODULE_DEVICE_TABLE(of, rwdt_ids);
313 static struct platform_driver rwdt_driver = {
314 .driver = {
315 .name = "renesas_wdt",
316 .of_match_table = rwdt_ids,
317 .pm = &rwdt_pm_ops,
319 .probe = rwdt_probe,
320 .remove = rwdt_remove,
322 module_platform_driver(rwdt_driver);
324 MODULE_DESCRIPTION("Renesas WDT Watchdog Driver");
325 MODULE_LICENSE("GPL v2");
326 MODULE_AUTHOR("Wolfram Sang <wsa@sang-engineering.com>");