blob: 9b91882fe3c411dcac5c2f027cb0c54074828cc8 [file] [log] [blame]
Guenter Roeckd0173272019-06-20 09:28:46 -07001// SPDX-License-Identifier: GPL-2.0
Komal Shah7768a132006-09-29 01:59:18 -07002/*
Felipe Balbi28171422008-09-20 04:14:01 +03003 * omap_wdt.c
Komal Shah7768a132006-09-29 01:59:18 -07004 *
Felipe Balbi28171422008-09-20 04:14:01 +03005 * Watchdog driver for the TI OMAP 16xx & 24xx/34xx 32KHz (non-secure) watchdog
Komal Shah7768a132006-09-29 01:59:18 -07006 *
7 * Author: MontaVista Software, Inc.
8 * <gdavis@mvista.com> or <source@mvista.com>
9 *
Guenter Roeckd0173272019-06-20 09:28:46 -070010 * 2003 (c) MontaVista Software, Inc.
Komal Shah7768a132006-09-29 01:59:18 -070011 *
12 * History:
13 *
14 * 20030527: George G. Davis <gdavis@mvista.com>
15 * Initially based on linux-2.4.19-rmk7-pxa1/drivers/char/sa1100_wdt.c
16 * (c) Copyright 2000 Oleg Drokin <green@crimea.edu>
Alan Cox29fa0582008-10-27 15:17:56 +000017 * Based on SoftDog driver by Alan Cox <alan@lxorguk.ukuu.org.uk>
Komal Shah7768a132006-09-29 01:59:18 -070018 *
19 * Copyright (c) 2004 Texas Instruments.
20 * 1. Modified to support OMAP1610 32-KHz watchdog timer
21 * 2. Ported to 2.6 kernel
22 *
23 * Copyright (c) 2005 David Brownell
24 * Use the driver model and standard identifiers; handle bigger timeouts.
25 */
26
Joe Perches27c766a2012-02-15 15:06:19 -080027#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
28
Komal Shah7768a132006-09-29 01:59:18 -070029#include <linux/module.h>
Randy Dunlapac316722018-06-19 22:47:28 -070030#include <linux/mod_devicetable.h>
Komal Shah7768a132006-09-29 01:59:18 -070031#include <linux/types.h>
32#include <linux/kernel.h>
Komal Shah7768a132006-09-29 01:59:18 -070033#include <linux/mm.h>
Komal Shah7768a132006-09-29 01:59:18 -070034#include <linux/watchdog.h>
35#include <linux/reboot.h>
Komal Shah7768a132006-09-29 01:59:18 -070036#include <linux/err.h>
37#include <linux/platform_device.h>
38#include <linux/moduleparam.h>
Wim Van Sebroeck089ab072008-07-15 11:46:11 +000039#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Varadarajan, Charulatha7ec5ad02010-09-23 20:02:43 +053041#include <linux/pm_runtime.h>
Paul Walmsley129f5572012-10-29 20:49:44 -060042#include <linux/platform_data/omap-wd-timer.h>
Komal Shah7768a132006-09-29 01:59:18 -070043
44#include "omap_wdt.h"
45
Pali Rohár2dd7b242013-02-17 00:49:26 +010046static bool nowayout = WATCHDOG_NOWAYOUT;
47module_param(nowayout, bool, 0);
48MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
49 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
50
Komal Shah7768a132006-09-29 01:59:18 -070051static unsigned timer_margin;
52module_param(timer_margin, uint, 0);
53MODULE_PARM_DESC(timer_margin, "initial watchdog timeout (in seconds)");
54
Uwe Kleine-Königd2f78262015-04-27 11:23:00 +020055#define to_omap_wdt_dev(_wdog) container_of(_wdog, struct omap_wdt_dev, wdog)
56
Lars Poeschelb2102eb2015-06-25 12:21:51 +020057static bool early_enable;
58module_param(early_enable, bool, 0);
59MODULE_PARM_DESC(early_enable,
60 "Watchdog is started on module insertion (default=0)");
61
Felipe Balbi28171422008-09-20 04:14:01 +030062struct omap_wdt_dev {
Uwe Kleine-Königd2f78262015-04-27 11:23:00 +020063 struct watchdog_device wdog;
Felipe Balbi28171422008-09-20 04:14:01 +030064 void __iomem *base; /* physical */
65 struct device *dev;
Aaro Koskinen67c0f552012-10-10 23:23:32 +030066 bool omap_wdt_users;
Aaro Koskinen67c0f552012-10-10 23:23:32 +030067 int wdt_trgr_pattern;
68 struct mutex lock; /* to avoid races with PM */
Felipe Balbi28171422008-09-20 04:14:01 +030069};
70
Aaro Koskinen67c0f552012-10-10 23:23:32 +030071static void omap_wdt_reload(struct omap_wdt_dev *wdev)
Komal Shah7768a132006-09-29 01:59:18 -070072{
Felipe Balbi28171422008-09-20 04:14:01 +030073 void __iomem *base = wdev->base;
Felipe Balbib3112182008-09-20 04:14:03 +030074
Komal Shah7768a132006-09-29 01:59:18 -070075 /* wait for posted write to complete */
Victor Kamensky4a7e94a2013-11-16 02:01:05 +020076 while ((readl_relaxed(base + OMAP_WATCHDOG_WPS)) & 0x08)
Komal Shah7768a132006-09-29 01:59:18 -070077 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +030078
Aaro Koskinen67c0f552012-10-10 23:23:32 +030079 wdev->wdt_trgr_pattern = ~wdev->wdt_trgr_pattern;
Victor Kamensky4a7e94a2013-11-16 02:01:05 +020080 writel_relaxed(wdev->wdt_trgr_pattern, (base + OMAP_WATCHDOG_TGR));
Felipe Balbib3112182008-09-20 04:14:03 +030081
Komal Shah7768a132006-09-29 01:59:18 -070082 /* wait for posted write to complete */
Victor Kamensky4a7e94a2013-11-16 02:01:05 +020083 while ((readl_relaxed(base + OMAP_WATCHDOG_WPS)) & 0x08)
Komal Shah7768a132006-09-29 01:59:18 -070084 cpu_relax();
85 /* reloaded WCRR from WLDR */
86}
87
Felipe Balbi28171422008-09-20 04:14:01 +030088static void omap_wdt_enable(struct omap_wdt_dev *wdev)
Komal Shah7768a132006-09-29 01:59:18 -070089{
Felipe Balbib3112182008-09-20 04:14:03 +030090 void __iomem *base = wdev->base;
91
Komal Shah7768a132006-09-29 01:59:18 -070092 /* Sequence to enable the watchdog */
Victor Kamensky4a7e94a2013-11-16 02:01:05 +020093 writel_relaxed(0xBBBB, base + OMAP_WATCHDOG_SPR);
94 while ((readl_relaxed(base + OMAP_WATCHDOG_WPS)) & 0x10)
Komal Shah7768a132006-09-29 01:59:18 -070095 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +030096
Victor Kamensky4a7e94a2013-11-16 02:01:05 +020097 writel_relaxed(0x4444, base + OMAP_WATCHDOG_SPR);
98 while ((readl_relaxed(base + OMAP_WATCHDOG_WPS)) & 0x10)
Komal Shah7768a132006-09-29 01:59:18 -070099 cpu_relax();
100}
101
Felipe Balbi28171422008-09-20 04:14:01 +0300102static void omap_wdt_disable(struct omap_wdt_dev *wdev)
Komal Shah7768a132006-09-29 01:59:18 -0700103{
Felipe Balbib3112182008-09-20 04:14:03 +0300104 void __iomem *base = wdev->base;
105
Komal Shah7768a132006-09-29 01:59:18 -0700106 /* sequence required to disable watchdog */
Victor Kamensky4a7e94a2013-11-16 02:01:05 +0200107 writel_relaxed(0xAAAA, base + OMAP_WATCHDOG_SPR); /* TIMER_MODE */
108 while (readl_relaxed(base + OMAP_WATCHDOG_WPS) & 0x10)
Komal Shah7768a132006-09-29 01:59:18 -0700109 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +0300110
Victor Kamensky4a7e94a2013-11-16 02:01:05 +0200111 writel_relaxed(0x5555, base + OMAP_WATCHDOG_SPR); /* TIMER_MODE */
112 while (readl_relaxed(base + OMAP_WATCHDOG_WPS) & 0x10)
Komal Shah7768a132006-09-29 01:59:18 -0700113 cpu_relax();
114}
115
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300116static void omap_wdt_set_timer(struct omap_wdt_dev *wdev,
117 unsigned int timeout)
Komal Shah7768a132006-09-29 01:59:18 -0700118{
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300119 u32 pre_margin = GET_WLDR_VAL(timeout);
Felipe Balbib3112182008-09-20 04:14:03 +0300120 void __iomem *base = wdev->base;
Komal Shah7768a132006-09-29 01:59:18 -0700121
122 /* just count up at 32 KHz */
Victor Kamensky4a7e94a2013-11-16 02:01:05 +0200123 while (readl_relaxed(base + OMAP_WATCHDOG_WPS) & 0x04)
Komal Shah7768a132006-09-29 01:59:18 -0700124 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +0300125
Victor Kamensky4a7e94a2013-11-16 02:01:05 +0200126 writel_relaxed(pre_margin, base + OMAP_WATCHDOG_LDR);
127 while (readl_relaxed(base + OMAP_WATCHDOG_WPS) & 0x04)
Komal Shah7768a132006-09-29 01:59:18 -0700128 cpu_relax();
129}
130
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300131static int omap_wdt_start(struct watchdog_device *wdog)
Komal Shah7768a132006-09-29 01:59:18 -0700132{
Uwe Kleine-Königd2f78262015-04-27 11:23:00 +0200133 struct omap_wdt_dev *wdev = to_omap_wdt_dev(wdog);
Felipe Balbib3112182008-09-20 04:14:03 +0300134 void __iomem *base = wdev->base;
135
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300136 mutex_lock(&wdev->lock);
137
138 wdev->omap_wdt_users = true;
Komal Shah7768a132006-09-29 01:59:18 -0700139
Varadarajan, Charulatha7ec5ad02010-09-23 20:02:43 +0530140 pm_runtime_get_sync(wdev->dev);
Komal Shah7768a132006-09-29 01:59:18 -0700141
Uwe Kleine-König530c11d2015-04-29 20:38:46 +0200142 /*
143 * Make sure the watchdog is disabled. This is unfortunately required
144 * because writing to various registers with the watchdog running has no
145 * effect.
146 */
147 omap_wdt_disable(wdev);
148
Komal Shah7768a132006-09-29 01:59:18 -0700149 /* initialize prescaler */
Victor Kamensky4a7e94a2013-11-16 02:01:05 +0200150 while (readl_relaxed(base + OMAP_WATCHDOG_WPS) & 0x01)
Komal Shah7768a132006-09-29 01:59:18 -0700151 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +0300152
Victor Kamensky4a7e94a2013-11-16 02:01:05 +0200153 writel_relaxed((1 << 5) | (PTV << 2), base + OMAP_WATCHDOG_CNTRL);
154 while (readl_relaxed(base + OMAP_WATCHDOG_WPS) & 0x01)
Komal Shah7768a132006-09-29 01:59:18 -0700155 cpu_relax();
156
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300157 omap_wdt_set_timer(wdev, wdog->timeout);
158 omap_wdt_reload(wdev); /* trigger loading of new timeout value */
Felipe Balbi28171422008-09-20 04:14:01 +0300159 omap_wdt_enable(wdev);
Felipe Balbib3112182008-09-20 04:14:03 +0300160
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300161 mutex_unlock(&wdev->lock);
Felipe Balbib3112182008-09-20 04:14:03 +0300162
Komal Shah7768a132006-09-29 01:59:18 -0700163 return 0;
164}
165
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300166static int omap_wdt_stop(struct watchdog_device *wdog)
Komal Shah7768a132006-09-29 01:59:18 -0700167{
Uwe Kleine-Königd2f78262015-04-27 11:23:00 +0200168 struct omap_wdt_dev *wdev = to_omap_wdt_dev(wdog);
Felipe Balbib3112182008-09-20 04:14:03 +0300169
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300170 mutex_lock(&wdev->lock);
171 omap_wdt_disable(wdev);
172 pm_runtime_put_sync(wdev->dev);
173 wdev->omap_wdt_users = false;
174 mutex_unlock(&wdev->lock);
175 return 0;
Komal Shah7768a132006-09-29 01:59:18 -0700176}
177
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300178static int omap_wdt_ping(struct watchdog_device *wdog)
Komal Shah7768a132006-09-29 01:59:18 -0700179{
Uwe Kleine-Königd2f78262015-04-27 11:23:00 +0200180 struct omap_wdt_dev *wdev = to_omap_wdt_dev(wdog);
Felipe Balbib3112182008-09-20 04:14:03 +0300181
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300182 mutex_lock(&wdev->lock);
183 omap_wdt_reload(wdev);
184 mutex_unlock(&wdev->lock);
Komal Shah7768a132006-09-29 01:59:18 -0700185
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300186 return 0;
Komal Shah7768a132006-09-29 01:59:18 -0700187}
188
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300189static int omap_wdt_set_timeout(struct watchdog_device *wdog,
190 unsigned int timeout)
191{
Uwe Kleine-Königd2f78262015-04-27 11:23:00 +0200192 struct omap_wdt_dev *wdev = to_omap_wdt_dev(wdog);
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300193
194 mutex_lock(&wdev->lock);
195 omap_wdt_disable(wdev);
196 omap_wdt_set_timer(wdev, timeout);
197 omap_wdt_enable(wdev);
198 omap_wdt_reload(wdev);
199 wdog->timeout = timeout;
200 mutex_unlock(&wdev->lock);
201
202 return 0;
203}
204
Lars Poeschel452fafe2015-06-17 10:58:59 +0200205static unsigned int omap_wdt_get_timeleft(struct watchdog_device *wdog)
206{
Peter Robinsonde55acd2015-11-02 02:20:20 +0000207 struct omap_wdt_dev *wdev = to_omap_wdt_dev(wdog);
Lars Poeschel452fafe2015-06-17 10:58:59 +0200208 void __iomem *base = wdev->base;
209 u32 value;
210
211 value = readl_relaxed(base + OMAP_WATCHDOG_CRR);
212 return GET_WCCR_SECS(value);
213}
214
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300215static const struct watchdog_info omap_wdt_info = {
Tony Lindgrenfb1cbea2014-10-14 12:25:19 -0700216 .options = WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE | WDIOF_KEEPALIVEPING,
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300217 .identity = "OMAP Watchdog",
218};
219
220static const struct watchdog_ops omap_wdt_ops = {
221 .owner = THIS_MODULE,
222 .start = omap_wdt_start,
223 .stop = omap_wdt_stop,
224 .ping = omap_wdt_ping,
225 .set_timeout = omap_wdt_set_timeout,
Lars Poeschel452fafe2015-06-17 10:58:59 +0200226 .get_timeleft = omap_wdt_get_timeleft,
Komal Shah7768a132006-09-29 01:59:18 -0700227};
228
Bill Pemberton2d991a12012-11-19 13:21:41 -0500229static int omap_wdt_probe(struct platform_device *pdev)
Komal Shah7768a132006-09-29 01:59:18 -0700230{
Jingoo Hanbc8fdfb2013-07-30 19:58:51 +0900231 struct omap_wd_timer_platform_data *pdata = dev_get_platdata(&pdev->dev);
Felipe Balbi28171422008-09-20 04:14:01 +0300232 struct omap_wdt_dev *wdev;
Felipe Balbib3112182008-09-20 04:14:03 +0300233 int ret;
Komal Shah7768a132006-09-29 01:59:18 -0700234
Aaro Koskinen4f4753d2012-10-10 23:23:33 +0300235 wdev = devm_kzalloc(&pdev->dev, sizeof(*wdev), GFP_KERNEL);
236 if (!wdev)
237 return -ENOMEM;
Felipe Balbib3112182008-09-20 04:14:03 +0300238
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300239 wdev->omap_wdt_users = false;
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300240 wdev->dev = &pdev->dev;
241 wdev->wdt_trgr_pattern = 0x1234;
242 mutex_init(&wdev->lock);
Komal Shah7768a132006-09-29 01:59:18 -0700243
Jingoo Han6e272062014-02-11 21:44:12 +0900244 /* reserve static register mappings */
Guenter Roeck0f0a6a22019-04-02 12:01:53 -0700245 wdev->base = devm_platform_ioremap_resource(pdev, 0);
Jingoo Han6e272062014-02-11 21:44:12 +0900246 if (IS_ERR(wdev->base))
247 return PTR_ERR(wdev->base);
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300248
Uwe Kleine-Königd2f78262015-04-27 11:23:00 +0200249 wdev->wdog.info = &omap_wdt_info;
250 wdev->wdog.ops = &omap_wdt_ops;
251 wdev->wdog.min_timeout = TIMER_MARGIN_MIN;
252 wdev->wdog.max_timeout = TIMER_MARGIN_MAX;
Marcus Folkesson12537302018-02-10 21:36:21 +0100253 wdev->wdog.timeout = TIMER_MARGIN_DEFAULT;
Pratyush Anand65518812015-08-20 14:05:01 +0530254 wdev->wdog.parent = &pdev->dev;
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300255
Marcus Folkesson12537302018-02-10 21:36:21 +0100256 watchdog_init_timeout(&wdev->wdog, timer_margin, &pdev->dev);
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300257
Uwe Kleine-Königd2f78262015-04-27 11:23:00 +0200258 watchdog_set_nowayout(&wdev->wdog, nowayout);
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300259
Uwe Kleine-Königd2f78262015-04-27 11:23:00 +0200260 platform_set_drvdata(pdev, wdev);
Felipe Balbi28171422008-09-20 04:14:01 +0300261
Varadarajan, Charulatha7ec5ad02010-09-23 20:02:43 +0530262 pm_runtime_enable(wdev->dev);
263 pm_runtime_get_sync(wdev->dev);
Ulrik Bech Hald789cd472009-06-12 16:18:32 -0500264
Uwe Kleine-König0b3330f2015-04-27 11:23:01 +0200265 if (pdata && pdata->read_reset_sources) {
266 u32 rs = pdata->read_reset_sources();
267 if (rs & (1 << OMAP_MPU_WD_RST_SRC_ID_SHIFT))
268 wdev->wdog.bootstatus = WDIOF_CARDRESET;
269 }
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300270
Uwe Kleine-König8605fec2015-12-15 11:37:41 +0100271 if (!early_enable)
272 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700273
Uwe Kleine-Königd2f78262015-04-27 11:23:00 +0200274 ret = watchdog_register_device(&wdev->wdog);
Aaro Koskinen1ba85382012-10-10 23:23:37 +0300275 if (ret) {
276 pm_runtime_disable(wdev->dev);
277 return ret;
278 }
Komal Shah7768a132006-09-29 01:59:18 -0700279
Felipe Balbi28171422008-09-20 04:14:01 +0300280 pr_info("OMAP Watchdog Timer Rev 0x%02x: initial timeout %d sec\n",
Victor Kamensky4a7e94a2013-11-16 02:01:05 +0200281 readl_relaxed(wdev->base + OMAP_WATCHDOG_REV) & 0xFF,
Uwe Kleine-Königd2f78262015-04-27 11:23:00 +0200282 wdev->wdog.timeout);
Komal Shah7768a132006-09-29 01:59:18 -0700283
Lars Poeschelb2102eb2015-06-25 12:21:51 +0200284 if (early_enable)
285 omap_wdt_start(&wdev->wdog);
286
Uwe Kleine-Königa6392492015-12-15 11:37:40 +0100287 pm_runtime_put(wdev->dev);
288
Komal Shah7768a132006-09-29 01:59:18 -0700289 return 0;
Komal Shah7768a132006-09-29 01:59:18 -0700290}
291
292static void omap_wdt_shutdown(struct platform_device *pdev)
293{
Uwe Kleine-Königd2f78262015-04-27 11:23:00 +0200294 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
Felipe Balbi28171422008-09-20 04:14:01 +0300295
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300296 mutex_lock(&wdev->lock);
Paul Walmsley0503add2011-03-10 22:40:05 -0700297 if (wdev->omap_wdt_users) {
Felipe Balbi28171422008-09-20 04:14:01 +0300298 omap_wdt_disable(wdev);
Paul Walmsley0503add2011-03-10 22:40:05 -0700299 pm_runtime_put_sync(wdev->dev);
300 }
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300301 mutex_unlock(&wdev->lock);
Komal Shah7768a132006-09-29 01:59:18 -0700302}
303
Bill Pemberton4b12b892012-11-19 13:26:24 -0500304static int omap_wdt_remove(struct platform_device *pdev)
Komal Shah7768a132006-09-29 01:59:18 -0700305{
Uwe Kleine-Königd2f78262015-04-27 11:23:00 +0200306 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
Felipe Balbi28171422008-09-20 04:14:01 +0300307
Shubhrajyoti D12c583d2012-01-11 19:50:18 +0530308 pm_runtime_disable(wdev->dev);
Uwe Kleine-Königd2f78262015-04-27 11:23:00 +0200309 watchdog_unregister_device(&wdev->wdog);
Felipe Balbib3112182008-09-20 04:14:03 +0300310
Komal Shah7768a132006-09-29 01:59:18 -0700311 return 0;
312}
313
314#ifdef CONFIG_PM
315
316/* REVISIT ... not clear this is the best way to handle system suspend; and
317 * it's very inappropriate for selective device suspend (e.g. suspending this
318 * through sysfs rather than by stopping the watchdog daemon). Also, this
319 * may not play well enough with NOWAYOUT...
320 */
321
322static int omap_wdt_suspend(struct platform_device *pdev, pm_message_t state)
323{
Uwe Kleine-Königd2f78262015-04-27 11:23:00 +0200324 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
Felipe Balbib3112182008-09-20 04:14:03 +0300325
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300326 mutex_lock(&wdev->lock);
Paul Walmsley0503add2011-03-10 22:40:05 -0700327 if (wdev->omap_wdt_users) {
Felipe Balbi28171422008-09-20 04:14:01 +0300328 omap_wdt_disable(wdev);
Paul Walmsley0503add2011-03-10 22:40:05 -0700329 pm_runtime_put_sync(wdev->dev);
330 }
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300331 mutex_unlock(&wdev->lock);
Felipe Balbib3112182008-09-20 04:14:03 +0300332
Komal Shah7768a132006-09-29 01:59:18 -0700333 return 0;
334}
335
336static int omap_wdt_resume(struct platform_device *pdev)
337{
Uwe Kleine-Königd2f78262015-04-27 11:23:00 +0200338 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
Felipe Balbib3112182008-09-20 04:14:03 +0300339
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300340 mutex_lock(&wdev->lock);
Felipe Balbi28171422008-09-20 04:14:01 +0300341 if (wdev->omap_wdt_users) {
Paul Walmsley0503add2011-03-10 22:40:05 -0700342 pm_runtime_get_sync(wdev->dev);
Felipe Balbi28171422008-09-20 04:14:01 +0300343 omap_wdt_enable(wdev);
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300344 omap_wdt_reload(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700345 }
Aaro Koskinen67c0f552012-10-10 23:23:32 +0300346 mutex_unlock(&wdev->lock);
Felipe Balbib3112182008-09-20 04:14:03 +0300347
Komal Shah7768a132006-09-29 01:59:18 -0700348 return 0;
349}
350
351#else
352#define omap_wdt_suspend NULL
353#define omap_wdt_resume NULL
354#endif
355
Xiao Jiange6ca04e2012-06-01 12:44:16 +0800356static const struct of_device_id omap_wdt_of_match[] = {
357 { .compatible = "ti,omap3-wdt", },
358 {},
359};
360MODULE_DEVICE_TABLE(of, omap_wdt_of_match);
361
Komal Shah7768a132006-09-29 01:59:18 -0700362static struct platform_driver omap_wdt_driver = {
363 .probe = omap_wdt_probe,
Bill Pemberton82268712012-11-19 13:21:12 -0500364 .remove = omap_wdt_remove,
Komal Shah7768a132006-09-29 01:59:18 -0700365 .shutdown = omap_wdt_shutdown,
366 .suspend = omap_wdt_suspend,
367 .resume = omap_wdt_resume,
368 .driver = {
Komal Shah7768a132006-09-29 01:59:18 -0700369 .name = "omap_wdt",
Xiao Jiange6ca04e2012-06-01 12:44:16 +0800370 .of_match_table = omap_wdt_of_match,
Komal Shah7768a132006-09-29 01:59:18 -0700371 },
372};
373
Axel Linb8ec6112011-11-29 13:56:27 +0800374module_platform_driver(omap_wdt_driver);
Komal Shah7768a132006-09-29 01:59:18 -0700375
376MODULE_AUTHOR("George G. Davis");
377MODULE_LICENSE("GPL");
Kay Sieversf37d1932008-04-10 21:29:23 -0700378MODULE_ALIAS("platform:omap_wdt");