blob: 4cb59a23aab016750c665d6c09ec5081f9dbc501 [file] [log] [blame]
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +02001/*
2 * Watchdog driver for IMX2 and later processors
3 *
4 * Copyright (C) 2010 Wolfram Sang, Pengutronix e.K. <w.sang@pengutronix.de>
Anson Huang1a9c5ef2014-01-13 19:58:34 +08005 * Copyright (C) 2014 Freescale Semiconductor, Inc.
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +02006 *
7 * some parts adapted by similar drivers from Darius Augulis and Vladimir
8 * Zapolskiy, additional improvements by Wim Van Sebroeck.
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published by
12 * the Free Software Foundation.
13 *
14 * NOTE: MX1 has a slightly different Watchdog than MX2 and later:
15 *
16 * MX1: MX2+:
17 * ---- -----
18 * Registers: 32-bit 16-bit
19 * Stopable timer: Yes No
20 * Need to enable clk: No Yes
21 * Halt on suspend: Manual Can be automatic
22 */
23
Xiubo Li30cb0422014-04-04 09:33:24 +080024#include <linux/clk.h>
Jingchang Lu334a9d82014-09-12 15:24:36 +080025#include <linux/delay.h>
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +020026#include <linux/init.h>
Xiubo Li30cb0422014-04-04 09:33:24 +080027#include <linux/io.h>
28#include <linux/jiffies.h>
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +020029#include <linux/kernel.h>
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +020030#include <linux/module.h>
31#include <linux/moduleparam.h>
Xiubo Lif728f4b2014-06-03 10:45:14 +080032#include <linux/of_address.h>
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +020033#include <linux/platform_device.h>
Xiubo Lia7977002014-04-04 09:33:25 +080034#include <linux/regmap.h>
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +020035#include <linux/timer.h>
Xiubo Li30cb0422014-04-04 09:33:24 +080036#include <linux/watchdog.h>
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +020037
38#define DRIVER_NAME "imx2-wdt"
39
40#define IMX2_WDT_WCR 0x00 /* Control Register */
41#define IMX2_WDT_WCR_WT (0xFF << 8) /* -> Watchdog Timeout Field */
42#define IMX2_WDT_WCR_WRE (1 << 3) /* -> WDOG Reset Enable */
43#define IMX2_WDT_WCR_WDE (1 << 2) /* -> Watchdog Enable */
Anson Huang1a9c5ef2014-01-13 19:58:34 +080044#define IMX2_WDT_WCR_WDZST (1 << 0) /* -> Watchdog timer Suspend */
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +020045
46#define IMX2_WDT_WSR 0x02 /* Service Register */
47#define IMX2_WDT_SEQ1 0x5555 /* -> service sequence 1 */
48#define IMX2_WDT_SEQ2 0xAAAA /* -> service sequence 2 */
49
Oskar Schirmer474ef122012-02-16 12:17:45 +000050#define IMX2_WDT_WRSR 0x04 /* Reset Status Register */
51#define IMX2_WDT_WRSR_TOUT (1 << 1) /* -> Reset due to Timeout */
52
Markus Pargmann5fe65ce2014-09-08 09:14:07 +020053#define IMX2_WDT_WMCR 0x08 /* Misc Register */
54
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +020055#define IMX2_WDT_MAX_TIME 128
56#define IMX2_WDT_DEFAULT_TIME 60 /* in seconds */
57
58#define WDOG_SEC_TO_COUNT(s) ((s * 2 - 1) << 8)
59
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +020060struct imx2_wdt_device {
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +020061 struct clk *clk;
Xiubo Lia7977002014-04-04 09:33:25 +080062 struct regmap *regmap;
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +020063 struct timer_list timer; /* Pings the watchdog when closed */
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +020064 struct watchdog_device wdog;
65};
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +020066
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010067static bool nowayout = WATCHDOG_NOWAYOUT;
68module_param(nowayout, bool, 0);
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +020069MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
70 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
71
72
73static unsigned timeout = IMX2_WDT_DEFAULT_TIME;
74module_param(timeout, uint, 0);
75MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds (default="
76 __MODULE_STRING(IMX2_WDT_DEFAULT_TIME) ")");
77
78static const struct watchdog_info imx2_wdt_info = {
79 .identity = "imx2+ watchdog",
80 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE,
81};
82
Guenter Roeck4d8b2292016-02-26 17:32:49 -080083static int imx2_wdt_restart(struct watchdog_device *wdog, unsigned long action,
84 void *data)
Jingchang Lu334a9d82014-09-12 15:24:36 +080085{
Damien Riegel2d9d24752015-11-16 12:28:04 -050086 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
Jingchang Lu334a9d82014-09-12 15:24:36 +080087 unsigned int wcr_enable = IMX2_WDT_WCR_WDE;
Damien Riegel2d9d24752015-11-16 12:28:04 -050088
Jingchang Lu334a9d82014-09-12 15:24:36 +080089 /* Assert SRS signal */
Fabio Estevam9493c0d2015-10-02 00:25:28 -030090 regmap_write(wdev->regmap, IMX2_WDT_WCR, wcr_enable);
Jingchang Lu334a9d82014-09-12 15:24:36 +080091 /*
92 * Due to imx6q errata ERR004346 (WDOG: WDOG SRS bit requires to be
93 * written twice), we add another two writes to ensure there must be at
94 * least two writes happen in the same one 32kHz clock period. We save
95 * the target check here, since the writes shouldn't be a huge burden
96 * for other platforms.
97 */
Fabio Estevam9493c0d2015-10-02 00:25:28 -030098 regmap_write(wdev->regmap, IMX2_WDT_WCR, wcr_enable);
99 regmap_write(wdev->regmap, IMX2_WDT_WCR, wcr_enable);
Jingchang Lu334a9d82014-09-12 15:24:36 +0800100
101 /* wait for reset to assert... */
102 mdelay(500);
103
Damien Riegel2d9d24752015-11-16 12:28:04 -0500104 return 0;
Jingchang Lu334a9d82014-09-12 15:24:36 +0800105}
106
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200107static inline void imx2_wdt_setup(struct watchdog_device *wdog)
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200108{
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200109 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
Xiubo Lia7977002014-04-04 09:33:25 +0800110 u32 val;
111
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200112 regmap_read(wdev->regmap, IMX2_WDT_WCR, &val);
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200113
Anson Huang1a9c5ef2014-01-13 19:58:34 +0800114 /* Suspend timer in low power mode, write once-only */
115 val |= IMX2_WDT_WCR_WDZST;
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200116 /* Strip the old watchdog Time-Out value */
117 val &= ~IMX2_WDT_WCR_WT;
118 /* Generate reset if WDOG times out */
119 val &= ~IMX2_WDT_WCR_WRE;
120 /* Keep Watchdog Disabled */
121 val &= ~IMX2_WDT_WCR_WDE;
122 /* Set the watchdog's Time-Out value */
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200123 val |= WDOG_SEC_TO_COUNT(wdog->timeout);
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200124
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200125 regmap_write(wdev->regmap, IMX2_WDT_WCR, val);
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200126
127 /* enable the watchdog */
128 val |= IMX2_WDT_WCR_WDE;
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200129 regmap_write(wdev->regmap, IMX2_WDT_WCR, val);
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200130}
131
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200132static inline bool imx2_wdt_is_running(struct imx2_wdt_device *wdev)
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200133{
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200134 u32 val;
135
136 regmap_read(wdev->regmap, IMX2_WDT_WCR, &val);
137
138 return val & IMX2_WDT_WCR_WDE;
139}
140
141static int imx2_wdt_ping(struct watchdog_device *wdog)
142{
143 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
144
145 regmap_write(wdev->regmap, IMX2_WDT_WSR, IMX2_WDT_SEQ1);
146 regmap_write(wdev->regmap, IMX2_WDT_WSR, IMX2_WDT_SEQ2);
147 return 0;
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200148}
149
150static void imx2_wdt_timer_ping(unsigned long arg)
151{
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200152 struct watchdog_device *wdog = (struct watchdog_device *)arg;
153 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
154
155 /* ping it every wdog->timeout / 2 seconds to prevent reboot */
156 imx2_wdt_ping(wdog);
157 mod_timer(&wdev->timer, jiffies + wdog->timeout * HZ / 2);
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200158}
159
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200160static int imx2_wdt_set_timeout(struct watchdog_device *wdog,
161 unsigned int new_timeout)
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200162{
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200163 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200164
Michael Grzeschik30dd4a82015-05-06 13:17:59 +0200165 wdog->timeout = new_timeout;
166
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200167 regmap_update_bits(wdev->regmap, IMX2_WDT_WCR, IMX2_WDT_WCR_WT,
Xiubo Lia7977002014-04-04 09:33:25 +0800168 WDOG_SEC_TO_COUNT(new_timeout));
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200169 return 0;
170}
171
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200172static int imx2_wdt_start(struct watchdog_device *wdog)
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200173{
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200174 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200175
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200176 if (imx2_wdt_is_running(wdev)) {
177 /* delete the timer that pings the watchdog after close */
178 del_timer_sync(&wdev->timer);
179 imx2_wdt_set_timeout(wdog, wdog->timeout);
180 } else
181 imx2_wdt_setup(wdog);
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200182
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200183 return imx2_wdt_ping(wdog);
184}
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200185
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200186static int imx2_wdt_stop(struct watchdog_device *wdog)
187{
188 /*
189 * We don't need a clk_disable, it cannot be disabled once started.
190 * We use a timer to ping the watchdog while /dev/watchdog is closed
191 */
192 imx2_wdt_timer_ping((unsigned long)wdog);
193 return 0;
194}
Oskar Schirmer474ef122012-02-16 12:17:45 +0000195
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200196static inline void imx2_wdt_ping_if_active(struct watchdog_device *wdog)
197{
198 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200199
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200200 if (imx2_wdt_is_running(wdev)) {
201 imx2_wdt_set_timeout(wdog, wdog->timeout);
202 imx2_wdt_timer_ping((unsigned long)wdog);
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200203 }
204}
205
Krzysztof Kozlowski4bd8ce32015-01-05 10:09:17 +0100206static const struct watchdog_ops imx2_wdt_ops = {
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200207 .owner = THIS_MODULE,
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200208 .start = imx2_wdt_start,
209 .stop = imx2_wdt_stop,
210 .ping = imx2_wdt_ping,
211 .set_timeout = imx2_wdt_set_timeout,
Damien Riegel2d9d24752015-11-16 12:28:04 -0500212 .restart = imx2_wdt_restart,
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200213};
214
Krzysztof Kozlowski4bd8ce32015-01-05 10:09:17 +0100215static const struct regmap_config imx2_wdt_regmap_config = {
Xiubo Lia7977002014-04-04 09:33:25 +0800216 .reg_bits = 16,
217 .reg_stride = 2,
218 .val_bits = 16,
219 .max_register = 0x8,
220};
221
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200222static int __init imx2_wdt_probe(struct platform_device *pdev)
223{
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200224 struct imx2_wdt_device *wdev;
225 struct watchdog_device *wdog;
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200226 struct resource *res;
Xiubo Lia7977002014-04-04 09:33:25 +0800227 void __iomem *base;
228 int ret;
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200229 u32 val;
230
231 wdev = devm_kzalloc(&pdev->dev, sizeof(*wdev), GFP_KERNEL);
232 if (!wdev)
233 return -ENOMEM;
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200234
235 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Xiubo Lia7977002014-04-04 09:33:25 +0800236 base = devm_ioremap_resource(&pdev->dev, res);
237 if (IS_ERR(base))
238 return PTR_ERR(base);
239
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200240 wdev->regmap = devm_regmap_init_mmio_clk(&pdev->dev, NULL, base,
241 &imx2_wdt_regmap_config);
242 if (IS_ERR(wdev->regmap)) {
Xiubo Lia7977002014-04-04 09:33:25 +0800243 dev_err(&pdev->dev, "regmap init failed\n");
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200244 return PTR_ERR(wdev->regmap);
Xiubo Lia7977002014-04-04 09:33:25 +0800245 }
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200246
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200247 wdev->clk = devm_clk_get(&pdev->dev, NULL);
248 if (IS_ERR(wdev->clk)) {
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200249 dev_err(&pdev->dev, "can't get Watchdog clock\n");
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200250 return PTR_ERR(wdev->clk);
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200251 }
252
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200253 wdog = &wdev->wdog;
254 wdog->info = &imx2_wdt_info;
255 wdog->ops = &imx2_wdt_ops;
256 wdog->min_timeout = 1;
257 wdog->max_timeout = IMX2_WDT_MAX_TIME;
Vladimir Zapolskiy81351932015-06-02 15:46:18 +0300258 wdog->parent = &pdev->dev;
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200259
Fabio Estevamaefb1632015-06-22 01:16:18 -0300260 ret = clk_prepare_enable(wdev->clk);
261 if (ret)
262 return ret;
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200263
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200264 regmap_read(wdev->regmap, IMX2_WDT_WRSR, &val);
265 wdog->bootstatus = val & IMX2_WDT_WRSR_TOUT ? WDIOF_CARDRESET : 0;
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200266
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200267 wdog->timeout = clamp_t(unsigned, timeout, 1, IMX2_WDT_MAX_TIME);
268 if (wdog->timeout != timeout)
269 dev_warn(&pdev->dev, "Initial timeout out of range! Clamped from %u to %u\n",
270 timeout, wdog->timeout);
271
272 platform_set_drvdata(pdev, wdog);
273 watchdog_set_drvdata(wdog, wdev);
274 watchdog_set_nowayout(wdog, nowayout);
Damien Riegel2d9d24752015-11-16 12:28:04 -0500275 watchdog_set_restart_priority(wdog, 128);
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200276 watchdog_init_timeout(wdog, timeout, &pdev->dev);
277
278 setup_timer(&wdev->timer, imx2_wdt_timer_ping, (unsigned long)wdog);
279
280 imx2_wdt_ping_if_active(wdog);
281
Markus Pargmann5fe65ce2014-09-08 09:14:07 +0200282 /*
283 * Disable the watchdog power down counter at boot. Otherwise the power
284 * down counter will pull down the #WDOG interrupt line for one clock
285 * cycle.
286 */
287 regmap_write(wdev->regmap, IMX2_WDT_WMCR, 0);
288
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200289 ret = watchdog_register_device(wdog);
290 if (ret) {
291 dev_err(&pdev->dev, "cannot register watchdog device\n");
Fabio Estevamdb11cba2015-06-22 01:16:19 -0300292 goto disable_clk;
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200293 }
294
295 dev_info(&pdev->dev, "timeout %d sec (nowayout=%d)\n",
296 wdog->timeout, nowayout);
297
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200298 return 0;
Fabio Estevamdb11cba2015-06-22 01:16:19 -0300299
300disable_clk:
301 clk_disable_unprepare(wdev->clk);
302 return ret;
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200303}
304
305static int __exit imx2_wdt_remove(struct platform_device *pdev)
306{
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200307 struct watchdog_device *wdog = platform_get_drvdata(pdev);
308 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200309
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200310 watchdog_unregister_device(wdog);
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200311
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200312 if (imx2_wdt_is_running(wdev)) {
313 del_timer_sync(&wdev->timer);
314 imx2_wdt_ping(wdog);
315 dev_crit(&pdev->dev, "Device removed: Expect reboot!\n");
Jingoo Hanbdf49572013-04-29 18:15:53 +0900316 }
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200317 return 0;
318}
319
320static void imx2_wdt_shutdown(struct platform_device *pdev)
321{
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200322 struct watchdog_device *wdog = platform_get_drvdata(pdev);
323 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200324
Anatolij Gustschinfaad5de2014-04-11 08:57:14 +0200325 if (imx2_wdt_is_running(wdev)) {
326 /*
327 * We are running, we need to delete the timer but will
328 * give max timeout before reboot will take place
329 */
330 del_timer_sync(&wdev->timer);
331 imx2_wdt_set_timeout(wdog, IMX2_WDT_MAX_TIME);
332 imx2_wdt_ping(wdog);
333 dev_crit(&pdev->dev, "Device shutdown: Expect reboot!\n");
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200334 }
335}
336
Xiubo Liaefbaf32014-09-22 18:00:52 +0800337#ifdef CONFIG_PM_SLEEP
Xiubo Libbd59002014-10-16 11:44:15 +0800338/* Disable watchdog if it is active or non-active but still running */
Xiubo Liaefbaf32014-09-22 18:00:52 +0800339static int imx2_wdt_suspend(struct device *dev)
340{
341 struct watchdog_device *wdog = dev_get_drvdata(dev);
342 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
343
Xiubo Libbd59002014-10-16 11:44:15 +0800344 /* The watchdog IP block is running */
345 if (imx2_wdt_is_running(wdev)) {
346 imx2_wdt_set_timeout(wdog, IMX2_WDT_MAX_TIME);
347 imx2_wdt_ping(wdog);
Xiubo Liaefbaf32014-09-22 18:00:52 +0800348
Xiubo Libbd59002014-10-16 11:44:15 +0800349 /* The watchdog is not active */
350 if (!watchdog_active(wdog))
351 del_timer_sync(&wdev->timer);
352 }
Xiubo Liaefbaf32014-09-22 18:00:52 +0800353
354 clk_disable_unprepare(wdev->clk);
355
356 return 0;
357}
358
359/* Enable watchdog and configure it if necessary */
360static int imx2_wdt_resume(struct device *dev)
361{
362 struct watchdog_device *wdog = dev_get_drvdata(dev);
363 struct imx2_wdt_device *wdev = watchdog_get_drvdata(wdog);
Fabio Estevamaefb1632015-06-22 01:16:18 -0300364 int ret;
Xiubo Liaefbaf32014-09-22 18:00:52 +0800365
Fabio Estevamaefb1632015-06-22 01:16:18 -0300366 ret = clk_prepare_enable(wdev->clk);
367 if (ret)
368 return ret;
Xiubo Liaefbaf32014-09-22 18:00:52 +0800369
370 if (watchdog_active(wdog) && !imx2_wdt_is_running(wdev)) {
Xiubo Libbd59002014-10-16 11:44:15 +0800371 /*
372 * If the watchdog is still active and resumes
373 * from deep sleep state, need to restart the
374 * watchdog again.
Xiubo Liaefbaf32014-09-22 18:00:52 +0800375 */
376 imx2_wdt_setup(wdog);
377 imx2_wdt_set_timeout(wdog, wdog->timeout);
378 imx2_wdt_ping(wdog);
379 } else if (imx2_wdt_is_running(wdev)) {
Xiubo Libbd59002014-10-16 11:44:15 +0800380 /* Resuming from non-deep sleep state. */
381 imx2_wdt_set_timeout(wdog, wdog->timeout);
Xiubo Liaefbaf32014-09-22 18:00:52 +0800382 imx2_wdt_ping(wdog);
Xiubo Libbd59002014-10-16 11:44:15 +0800383 /*
384 * But the watchdog is not active, then start
385 * the timer again.
386 */
387 if (!watchdog_active(wdog))
388 mod_timer(&wdev->timer,
389 jiffies + wdog->timeout * HZ / 2);
Xiubo Liaefbaf32014-09-22 18:00:52 +0800390 }
391
392 return 0;
393}
394#endif
395
396static SIMPLE_DEV_PM_OPS(imx2_wdt_pm_ops, imx2_wdt_suspend,
397 imx2_wdt_resume);
398
Shawn Guof5a427e2011-07-18 11:15:21 +0800399static const struct of_device_id imx2_wdt_dt_ids[] = {
400 { .compatible = "fsl,imx21-wdt", },
401 { /* sentinel */ }
402};
Niels de Vos813296a2013-07-29 09:38:18 +0200403MODULE_DEVICE_TABLE(of, imx2_wdt_dt_ids);
Shawn Guof5a427e2011-07-18 11:15:21 +0800404
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200405static struct platform_driver imx2_wdt_driver = {
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200406 .remove = __exit_p(imx2_wdt_remove),
407 .shutdown = imx2_wdt_shutdown,
408 .driver = {
409 .name = DRIVER_NAME,
Xiubo Liaefbaf32014-09-22 18:00:52 +0800410 .pm = &imx2_wdt_pm_ops,
Shawn Guof5a427e2011-07-18 11:15:21 +0800411 .of_match_table = imx2_wdt_dt_ids,
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200412 },
413};
414
Fabio Porcedda1cb92042013-01-09 12:15:27 +0100415module_platform_driver_probe(imx2_wdt_driver, imx2_wdt_probe);
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200416
417MODULE_AUTHOR("Wolfram Sang");
418MODULE_DESCRIPTION("Watchdog driver for IMX2 and later");
419MODULE_LICENSE("GPL v2");
Wolfram Sangbb2fd8a2010-04-29 10:03:17 +0200420MODULE_ALIAS("platform:" DRIVER_NAME);