1 // SPDX-License-Identifier: GPL-2.0
3 * Watchdog driver for IMX2 and later processors
5 * Copyright (C) 2010 Wolfram Sang, Pengutronix e.K. <kernel@pengutronix.de>
6 * Copyright (C) 2014 Freescale Semiconductor, Inc.
8 * some parts adapted by similar drivers from Darius Augulis and Vladimir
9 * Zapolskiy, additional improvements by Wim Van Sebroeck.
11 * NOTE: MX1 has a slightly different Watchdog than MX2 and later:
15 * Registers: 32-bit 16-bit
16 * Stopable timer: Yes No
17 * Need to enable clk: No Yes
18 * Halt on suspend: Manual Can be automatic
21 #include <linux/clk.h>
22 #include <linux/delay.h>
23 #include <linux/init.h>
24 #include <linux/interrupt.h>
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/moduleparam.h>
29 #include <linux/of_address.h>
30 #include <linux/platform_device.h>
31 #include <linux/regmap.h>
32 #include <linux/watchdog.h>
34 #define DRIVER_NAME "imx2-wdt"
36 #define IMX2_WDT_WCR 0x00 /* Control Register */
37 #define IMX2_WDT_WCR_WT (0xFF << 8) /* -> Watchdog Timeout Field */
38 #define IMX2_WDT_WCR_WDA BIT(5) /* -> External Reset WDOG_B */
39 #define IMX2_WDT_WCR_SRS BIT(4) /* -> Software Reset Signal */
40 #define IMX2_WDT_WCR_WRE BIT(3) /* -> WDOG Reset Enable */
41 #define IMX2_WDT_WCR_WDE BIT(2) /* -> Watchdog Enable */
42 #define IMX2_WDT_WCR_WDZST BIT(0) /* -> Watchdog timer Suspend */
44 #define IMX2_WDT_WSR 0x02 /* Service Register */
45 #define IMX2_WDT_SEQ1 0x5555 /* -> service sequence 1 */
46 #define IMX2_WDT_SEQ2 0xAAAA /* -> service sequence 2 */
48 #define IMX2_WDT_WRSR 0x04 /* Reset Status Register */
49 #define IMX2_WDT_WRSR_TOUT BIT(1) /* -> Reset due to Timeout */
51 #define IMX2_WDT_WICR 0x06 /* Interrupt Control Register */
52 #define IMX2_WDT_WICR_WIE BIT(15) /* -> Interrupt Enable */
53 #define IMX2_WDT_WICR_WTIS BIT(14) /* -> Interrupt Status */
54 #define IMX2_WDT_WICR_WICT 0xFF /* -> Interrupt Count Timeout */
56 #define IMX2_WDT_WMCR 0x08 /* Misc Register */
58 #define IMX2_WDT_MAX_TIME 128U
59 #define IMX2_WDT_DEFAULT_TIME 60 /* in seconds */
61 #define WDOG_SEC_TO_COUNT(s) ((s * 2 - 1) << 8)
63 struct imx2_wdt_device {
65 struct regmap *regmap;
66 struct watchdog_device wdog;
72 static bool nowayout = WATCHDOG_NOWAYOUT;
73 module_param(nowayout, bool, 0);
74 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
75 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
77 static unsigned timeout;
78 module_param(timeout, uint, 0);
79 MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds (default="
80 __MODULE_STRING(IMX2_WDT_DEFAULT_TIME) ")");
82 static const struct watchdog_info imx2_wdt_info = {
83 .identity = "imx2+ watchdog",
84 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE,
87 static const struct watchdog_info imx2_wdt_pretimeout_info = {
88 .identity = "imx2+ watchdog",
89 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE |
93 static int imx2_wdt_restart(struct watchdog_device *wdog, unsigned long action,
96 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
97 unsigned int wcr_enable = IMX2_WDT_WCR_WDE;
99 /* Use internal reset or external - not both */
101 wcr_enable |= IMX2_WDT_WCR_SRS; /* do not assert int reset */
103 wcr_enable |= IMX2_WDT_WCR_WDA; /* do not assert ext-reset */
105 /* Assert SRS signal */
106 regmap_write(wdev->regmap, IMX2_WDT_WCR, wcr_enable);
108 * Due to imx6q errata ERR004346 (WDOG: WDOG SRS bit requires to be
109 * written twice), we add another two writes to ensure there must be at
110 * least two writes happen in the same one 32kHz clock period. We save
111 * the target check here, since the writes shouldn't be a huge burden
112 * for other platforms.
114 regmap_write(wdev->regmap, IMX2_WDT_WCR, wcr_enable);
115 regmap_write(wdev->regmap, IMX2_WDT_WCR, wcr_enable);
117 /* wait for reset to assert... */
123 static inline void imx2_wdt_setup(struct watchdog_device *wdog)
125 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
128 regmap_read(wdev->regmap, IMX2_WDT_WCR, &val);
130 /* Suspend timer in low power mode, write once-only */
131 val |= IMX2_WDT_WCR_WDZST;
132 /* Strip the old watchdog Time-Out value */
133 val &= ~IMX2_WDT_WCR_WT;
134 /* Generate internal chip-level reset if WDOG times out */
135 if (!wdev->ext_reset)
136 val &= ~IMX2_WDT_WCR_WRE;
137 /* Or if external-reset assert WDOG_B reset only on time-out */
139 val |= IMX2_WDT_WCR_WRE;
140 /* Keep Watchdog Disabled */
141 val &= ~IMX2_WDT_WCR_WDE;
142 /* Set the watchdog's Time-Out value */
143 val |= WDOG_SEC_TO_COUNT(wdog->timeout);
145 regmap_write(wdev->regmap, IMX2_WDT_WCR, val);
147 /* enable the watchdog */
148 val |= IMX2_WDT_WCR_WDE;
149 regmap_write(wdev->regmap, IMX2_WDT_WCR, val);
152 static inline bool imx2_wdt_is_running(struct imx2_wdt_device *wdev)
156 regmap_read(wdev->regmap, IMX2_WDT_WCR, &val);
158 return val & IMX2_WDT_WCR_WDE;
161 static int imx2_wdt_ping(struct watchdog_device *wdog)
163 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
165 if (!wdev->clk_is_on)
168 regmap_write(wdev->regmap, IMX2_WDT_WSR, IMX2_WDT_SEQ1);
169 regmap_write(wdev->regmap, IMX2_WDT_WSR, IMX2_WDT_SEQ2);
173 static void __imx2_wdt_set_timeout(struct watchdog_device *wdog,
174 unsigned int new_timeout)
176 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
178 regmap_update_bits(wdev->regmap, IMX2_WDT_WCR, IMX2_WDT_WCR_WT,
179 WDOG_SEC_TO_COUNT(new_timeout));
182 static int imx2_wdt_set_timeout(struct watchdog_device *wdog,
183 unsigned int new_timeout)
187 actual = min(new_timeout, IMX2_WDT_MAX_TIME);
188 __imx2_wdt_set_timeout(wdog, actual);
189 wdog->timeout = new_timeout;
193 static int imx2_wdt_set_pretimeout(struct watchdog_device *wdog,
194 unsigned int new_pretimeout)
196 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
198 if (new_pretimeout >= IMX2_WDT_MAX_TIME)
201 wdog->pretimeout = new_pretimeout;
203 regmap_update_bits(wdev->regmap, IMX2_WDT_WICR,
204 IMX2_WDT_WICR_WIE | IMX2_WDT_WICR_WICT,
205 IMX2_WDT_WICR_WIE | (new_pretimeout << 1));
209 static irqreturn_t imx2_wdt_isr(int irq, void *wdog_arg)
211 struct watchdog_device *wdog = wdog_arg;
212 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
214 regmap_write_bits(wdev->regmap, IMX2_WDT_WICR,
215 IMX2_WDT_WICR_WTIS, IMX2_WDT_WICR_WTIS);
217 watchdog_notify_pretimeout(wdog);
222 static int imx2_wdt_start(struct watchdog_device *wdog)
224 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
226 if (imx2_wdt_is_running(wdev))
227 imx2_wdt_set_timeout(wdog, wdog->timeout);
229 imx2_wdt_setup(wdog);
231 set_bit(WDOG_HW_RUNNING, &wdog->status);
233 return imx2_wdt_ping(wdog);
236 static const struct watchdog_ops imx2_wdt_ops = {
237 .owner = THIS_MODULE,
238 .start = imx2_wdt_start,
239 .ping = imx2_wdt_ping,
240 .set_timeout = imx2_wdt_set_timeout,
241 .set_pretimeout = imx2_wdt_set_pretimeout,
242 .restart = imx2_wdt_restart,
245 static const struct regmap_config imx2_wdt_regmap_config = {
252 static void imx2_wdt_action(void *data)
254 clk_disable_unprepare(data);
257 static int __init imx2_wdt_probe(struct platform_device *pdev)
259 struct device *dev = &pdev->dev;
260 struct imx2_wdt_device *wdev;
261 struct watchdog_device *wdog;
266 wdev = devm_kzalloc(dev, sizeof(*wdev), GFP_KERNEL);
270 base = devm_platform_ioremap_resource(pdev, 0);
272 return PTR_ERR(base);
274 wdev->regmap = devm_regmap_init_mmio_clk(dev, NULL, base,
275 &imx2_wdt_regmap_config);
276 if (IS_ERR(wdev->regmap)) {
277 dev_err(dev, "regmap init failed\n");
278 return PTR_ERR(wdev->regmap);
281 wdev->clk = devm_clk_get(dev, NULL);
282 if (IS_ERR(wdev->clk)) {
283 dev_err(dev, "can't get Watchdog clock\n");
284 return PTR_ERR(wdev->clk);
288 wdog->info = &imx2_wdt_info;
289 wdog->ops = &imx2_wdt_ops;
290 wdog->min_timeout = 1;
291 wdog->timeout = IMX2_WDT_DEFAULT_TIME;
292 wdog->max_hw_heartbeat_ms = IMX2_WDT_MAX_TIME * 1000;
295 ret = platform_get_irq(pdev, 0);
297 if (!devm_request_irq(dev, ret, imx2_wdt_isr, 0,
298 dev_name(dev), wdog))
299 wdog->info = &imx2_wdt_pretimeout_info;
301 ret = clk_prepare_enable(wdev->clk);
305 ret = devm_add_action_or_reset(dev, imx2_wdt_action, wdev->clk);
309 wdev->clk_is_on = true;
311 regmap_read(wdev->regmap, IMX2_WDT_WRSR, &val);
312 wdog->bootstatus = val & IMX2_WDT_WRSR_TOUT ? WDIOF_CARDRESET : 0;
314 wdev->ext_reset = of_property_read_bool(dev->of_node,
315 "fsl,ext-reset-output");
317 * The i.MX7D doesn't support low power mode, so we need to ping the watchdog
320 wdev->no_ping = !of_device_is_compatible(dev->of_node, "fsl,imx7d-wdt");
321 platform_set_drvdata(pdev, wdog);
322 watchdog_set_drvdata(wdog, wdev);
323 watchdog_set_nowayout(wdog, nowayout);
324 watchdog_set_restart_priority(wdog, 128);
325 watchdog_init_timeout(wdog, timeout, dev);
327 watchdog_stop_ping_on_suspend(wdog);
329 if (imx2_wdt_is_running(wdev)) {
330 imx2_wdt_set_timeout(wdog, wdog->timeout);
331 set_bit(WDOG_HW_RUNNING, &wdog->status);
335 * Disable the watchdog power down counter at boot. Otherwise the power
336 * down counter will pull down the #WDOG interrupt line for one clock
339 regmap_write(wdev->regmap, IMX2_WDT_WMCR, 0);
341 return devm_watchdog_register_device(dev, wdog);
344 static void imx2_wdt_shutdown(struct platform_device *pdev)
346 struct watchdog_device *wdog = platform_get_drvdata(pdev);
347 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
349 if (imx2_wdt_is_running(wdev)) {
351 * We are running, configure max timeout before reboot
354 imx2_wdt_set_timeout(wdog, IMX2_WDT_MAX_TIME);
356 dev_crit(&pdev->dev, "Device shutdown: Expect reboot!\n");
360 /* Disable watchdog if it is active or non-active but still running */
361 static int __maybe_unused imx2_wdt_suspend(struct device *dev)
363 struct watchdog_device *wdog = dev_get_drvdata(dev);
364 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
366 /* The watchdog IP block is running */
367 if (imx2_wdt_is_running(wdev)) {
369 * Don't update wdog->timeout, we'll restore the current value
372 __imx2_wdt_set_timeout(wdog, IMX2_WDT_MAX_TIME);
377 clk_disable_unprepare(wdev->clk);
379 wdev->clk_is_on = false;
385 /* Enable watchdog and configure it if necessary */
386 static int __maybe_unused imx2_wdt_resume(struct device *dev)
388 struct watchdog_device *wdog = dev_get_drvdata(dev);
389 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
393 ret = clk_prepare_enable(wdev->clk);
398 wdev->clk_is_on = true;
401 if (watchdog_active(wdog) && !imx2_wdt_is_running(wdev)) {
403 * If the watchdog is still active and resumes
404 * from deep sleep state, need to restart the
407 imx2_wdt_setup(wdog);
409 if (imx2_wdt_is_running(wdev)) {
410 imx2_wdt_set_timeout(wdog, wdog->timeout);
417 static SIMPLE_DEV_PM_OPS(imx2_wdt_pm_ops, imx2_wdt_suspend,
420 static const struct of_device_id imx2_wdt_dt_ids[] = {
421 { .compatible = "fsl,imx21-wdt", },
422 { .compatible = "fsl,imx7d-wdt", },
425 MODULE_DEVICE_TABLE(of, imx2_wdt_dt_ids);
427 static struct platform_driver imx2_wdt_driver = {
428 .shutdown = imx2_wdt_shutdown,
431 .pm = &imx2_wdt_pm_ops,
432 .of_match_table = imx2_wdt_dt_ids,
436 module_platform_driver_probe(imx2_wdt_driver, imx2_wdt_probe);
438 MODULE_AUTHOR("Wolfram Sang");
439 MODULE_DESCRIPTION("Watchdog driver for IMX2 and later");
440 MODULE_LICENSE("GPL v2");
441 MODULE_ALIAS("platform:" DRIVER_NAME);