Merge tag 's390-4.20-2' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux
[linux-2.6-block.git] / drivers / watchdog / omap_wdt.c
CommitLineData
7768a13c 1/*
2817142f 2 * omap_wdt.c
7768a13c 3 *
2817142f 4 * Watchdog driver for the TI OMAP 16xx & 24xx/34xx 32KHz (non-secure) watchdog
7768a13c
KS
5 *
6 * Author: MontaVista Software, Inc.
7 * <gdavis@mvista.com> or <source@mvista.com>
8 *
9 * 2003 (c) MontaVista Software, Inc. This file is licensed under the
10 * terms of the GNU General Public License version 2. This program is
11 * licensed "as is" without any warranty of any kind, whether express
12 * or implied.
13 *
14 * History:
15 *
16 * 20030527: George G. Davis <gdavis@mvista.com>
17 * Initially based on linux-2.4.19-rmk7-pxa1/drivers/char/sa1100_wdt.c
18 * (c) Copyright 2000 Oleg Drokin <green@crimea.edu>
29fa0586 19 * Based on SoftDog driver by Alan Cox <alan@lxorguk.ukuu.org.uk>
7768a13c
KS
20 *
21 * Copyright (c) 2004 Texas Instruments.
22 * 1. Modified to support OMAP1610 32-KHz watchdog timer
23 * 2. Ported to 2.6 kernel
24 *
25 * Copyright (c) 2005 David Brownell
26 * Use the driver model and standard identifiers; handle bigger timeouts.
27 */
28
27c766aa
JP
29#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
7768a13c 31#include <linux/module.h>
ac316725 32#include <linux/mod_devicetable.h>
7768a13c
KS
33#include <linux/types.h>
34#include <linux/kernel.h>
7768a13c 35#include <linux/mm.h>
7768a13c
KS
36#include <linux/watchdog.h>
37#include <linux/reboot.h>
7768a13c
KS
38#include <linux/err.h>
39#include <linux/platform_device.h>
40#include <linux/moduleparam.h>
089ab079 41#include <linux/io.h>
5a0e3ad6 42#include <linux/slab.h>
7ec5ad0f 43#include <linux/pm_runtime.h>
129f5577 44#include <linux/platform_data/omap-wd-timer.h>
7768a13c
KS
45
46#include "omap_wdt.h"
47
2dd7b244
PR
48static bool nowayout = WATCHDOG_NOWAYOUT;
49module_param(nowayout, bool, 0);
50MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
51 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
52
7768a13c
KS
53static unsigned timer_margin;
54module_param(timer_margin, uint, 0);
55MODULE_PARM_DESC(timer_margin, "initial watchdog timeout (in seconds)");
56
d2f78268
UKK
57#define to_omap_wdt_dev(_wdog) container_of(_wdog, struct omap_wdt_dev, wdog)
58
b2102eb3
LP
59static bool early_enable;
60module_param(early_enable, bool, 0);
61MODULE_PARM_DESC(early_enable,
62 "Watchdog is started on module insertion (default=0)");
63
2817142f 64struct omap_wdt_dev {
d2f78268 65 struct watchdog_device wdog;
2817142f
FB
66 void __iomem *base; /* physical */
67 struct device *dev;
67c0f554 68 bool omap_wdt_users;
67c0f554
AK
69 int wdt_trgr_pattern;
70 struct mutex lock; /* to avoid races with PM */
2817142f
FB
71};
72
67c0f554 73static void omap_wdt_reload(struct omap_wdt_dev *wdev)
7768a13c 74{
2817142f 75 void __iomem *base = wdev->base;
b3112180 76
7768a13c 77 /* wait for posted write to complete */
4a7e94a0 78 while ((readl_relaxed(base + OMAP_WATCHDOG_WPS)) & 0x08)
7768a13c 79 cpu_relax();
b3112180 80
67c0f554 81 wdev->wdt_trgr_pattern = ~wdev->wdt_trgr_pattern;
4a7e94a0 82 writel_relaxed(wdev->wdt_trgr_pattern, (base + OMAP_WATCHDOG_TGR));
b3112180 83
7768a13c 84 /* wait for posted write to complete */
4a7e94a0 85 while ((readl_relaxed(base + OMAP_WATCHDOG_WPS)) & 0x08)
7768a13c
KS
86 cpu_relax();
87 /* reloaded WCRR from WLDR */
88}
89
2817142f 90static void omap_wdt_enable(struct omap_wdt_dev *wdev)
7768a13c 91{
b3112180
FB
92 void __iomem *base = wdev->base;
93
7768a13c 94 /* Sequence to enable the watchdog */
4a7e94a0
VK
95 writel_relaxed(0xBBBB, base + OMAP_WATCHDOG_SPR);
96 while ((readl_relaxed(base + OMAP_WATCHDOG_WPS)) & 0x10)
7768a13c 97 cpu_relax();
b3112180 98
4a7e94a0
VK
99 writel_relaxed(0x4444, base + OMAP_WATCHDOG_SPR);
100 while ((readl_relaxed(base + OMAP_WATCHDOG_WPS)) & 0x10)
7768a13c
KS
101 cpu_relax();
102}
103
2817142f 104static void omap_wdt_disable(struct omap_wdt_dev *wdev)
7768a13c 105{
b3112180
FB
106 void __iomem *base = wdev->base;
107
7768a13c 108 /* sequence required to disable watchdog */
4a7e94a0
VK
109 writel_relaxed(0xAAAA, base + OMAP_WATCHDOG_SPR); /* TIMER_MODE */
110 while (readl_relaxed(base + OMAP_WATCHDOG_WPS) & 0x10)
7768a13c 111 cpu_relax();
b3112180 112
4a7e94a0
VK
113 writel_relaxed(0x5555, base + OMAP_WATCHDOG_SPR); /* TIMER_MODE */
114 while (readl_relaxed(base + OMAP_WATCHDOG_WPS) & 0x10)
7768a13c
KS
115 cpu_relax();
116}
117
67c0f554
AK
118static void omap_wdt_set_timer(struct omap_wdt_dev *wdev,
119 unsigned int timeout)
7768a13c 120{
67c0f554 121 u32 pre_margin = GET_WLDR_VAL(timeout);
b3112180 122 void __iomem *base = wdev->base;
7768a13c
KS
123
124 /* just count up at 32 KHz */
4a7e94a0 125 while (readl_relaxed(base + OMAP_WATCHDOG_WPS) & 0x04)
7768a13c 126 cpu_relax();
b3112180 127
4a7e94a0
VK
128 writel_relaxed(pre_margin, base + OMAP_WATCHDOG_LDR);
129 while (readl_relaxed(base + OMAP_WATCHDOG_WPS) & 0x04)
7768a13c
KS
130 cpu_relax();
131}
132
67c0f554 133static int omap_wdt_start(struct watchdog_device *wdog)
7768a13c 134{
d2f78268 135 struct omap_wdt_dev *wdev = to_omap_wdt_dev(wdog);
b3112180
FB
136 void __iomem *base = wdev->base;
137
67c0f554
AK
138 mutex_lock(&wdev->lock);
139
140 wdev->omap_wdt_users = true;
7768a13c 141
7ec5ad0f 142 pm_runtime_get_sync(wdev->dev);
7768a13c 143
530c11d4
UKK
144 /*
145 * Make sure the watchdog is disabled. This is unfortunately required
146 * because writing to various registers with the watchdog running has no
147 * effect.
148 */
149 omap_wdt_disable(wdev);
150
7768a13c 151 /* initialize prescaler */
4a7e94a0 152 while (readl_relaxed(base + OMAP_WATCHDOG_WPS) & 0x01)
7768a13c 153 cpu_relax();
b3112180 154
4a7e94a0
VK
155 writel_relaxed((1 << 5) | (PTV << 2), base + OMAP_WATCHDOG_CNTRL);
156 while (readl_relaxed(base + OMAP_WATCHDOG_WPS) & 0x01)
7768a13c
KS
157 cpu_relax();
158
67c0f554
AK
159 omap_wdt_set_timer(wdev, wdog->timeout);
160 omap_wdt_reload(wdev); /* trigger loading of new timeout value */
2817142f 161 omap_wdt_enable(wdev);
b3112180 162
67c0f554
AK
163 mutex_unlock(&wdev->lock);
164
165 return 0;
7768a13c
KS
166}
167
67c0f554 168static int omap_wdt_stop(struct watchdog_device *wdog)
7768a13c 169{
d2f78268 170 struct omap_wdt_dev *wdev = to_omap_wdt_dev(wdog);
b3112180 171
67c0f554 172 mutex_lock(&wdev->lock);
2817142f 173 omap_wdt_disable(wdev);
7ec5ad0f 174 pm_runtime_put_sync(wdev->dev);
67c0f554
AK
175 wdev->omap_wdt_users = false;
176 mutex_unlock(&wdev->lock);
7768a13c
KS
177 return 0;
178}
179
67c0f554 180static int omap_wdt_ping(struct watchdog_device *wdog)
7768a13c 181{
d2f78268 182 struct omap_wdt_dev *wdev = to_omap_wdt_dev(wdog);
b3112180 183
67c0f554
AK
184 mutex_lock(&wdev->lock);
185 omap_wdt_reload(wdev);
186 mutex_unlock(&wdev->lock);
187
188 return 0;
7768a13c
KS
189}
190
67c0f554
AK
191static int omap_wdt_set_timeout(struct watchdog_device *wdog,
192 unsigned int timeout)
7768a13c 193{
d2f78268 194 struct omap_wdt_dev *wdev = to_omap_wdt_dev(wdog);
7768a13c 195
67c0f554
AK
196 mutex_lock(&wdev->lock);
197 omap_wdt_disable(wdev);
198 omap_wdt_set_timer(wdev, timeout);
199 omap_wdt_enable(wdev);
200 omap_wdt_reload(wdev);
201 wdog->timeout = timeout;
202 mutex_unlock(&wdev->lock);
203
204 return 0;
7768a13c
KS
205}
206
452fafed
LP
207static unsigned int omap_wdt_get_timeleft(struct watchdog_device *wdog)
208{
de55acd1 209 struct omap_wdt_dev *wdev = to_omap_wdt_dev(wdog);
452fafed
LP
210 void __iomem *base = wdev->base;
211 u32 value;
212
213 value = readl_relaxed(base + OMAP_WATCHDOG_CRR);
214 return GET_WCCR_SECS(value);
215}
216
67c0f554 217static const struct watchdog_info omap_wdt_info = {
fb1cbeae 218 .options = WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE | WDIOF_KEEPALIVEPING,
67c0f554
AK
219 .identity = "OMAP Watchdog",
220};
221
222static const struct watchdog_ops omap_wdt_ops = {
223 .owner = THIS_MODULE,
224 .start = omap_wdt_start,
225 .stop = omap_wdt_stop,
226 .ping = omap_wdt_ping,
227 .set_timeout = omap_wdt_set_timeout,
452fafed 228 .get_timeleft = omap_wdt_get_timeleft,
7768a13c
KS
229};
230
2d991a16 231static int omap_wdt_probe(struct platform_device *pdev)
7768a13c 232{
bc8fdfbe 233 struct omap_wd_timer_platform_data *pdata = dev_get_platdata(&pdev->dev);
6e272061 234 struct resource *res;
2817142f 235 struct omap_wdt_dev *wdev;
b3112180 236 int ret;
7768a13c 237
4f4753d9
AK
238 wdev = devm_kzalloc(&pdev->dev, sizeof(*wdev), GFP_KERNEL);
239 if (!wdev)
240 return -ENOMEM;
b3112180 241
67c0f554 242 wdev->omap_wdt_users = false;
67c0f554
AK
243 wdev->dev = &pdev->dev;
244 wdev->wdt_trgr_pattern = 0x1234;
245 mutex_init(&wdev->lock);
2817142f 246
6e272061
JH
247 /* reserve static register mappings */
248 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
249 wdev->base = devm_ioremap_resource(&pdev->dev, res);
250 if (IS_ERR(wdev->base))
251 return PTR_ERR(wdev->base);
9f69e3b0 252
d2f78268
UKK
253 wdev->wdog.info = &omap_wdt_info;
254 wdev->wdog.ops = &omap_wdt_ops;
255 wdev->wdog.min_timeout = TIMER_MARGIN_MIN;
256 wdev->wdog.max_timeout = TIMER_MARGIN_MAX;
1253730e 257 wdev->wdog.timeout = TIMER_MARGIN_DEFAULT;
6551881c 258 wdev->wdog.parent = &pdev->dev;
67c0f554 259
1253730e 260 watchdog_init_timeout(&wdev->wdog, timer_margin, &pdev->dev);
67c0f554 261
d2f78268 262 watchdog_set_nowayout(&wdev->wdog, nowayout);
67c0f554 263
d2f78268 264 platform_set_drvdata(pdev, wdev);
7768a13c 265
7ec5ad0f
VC
266 pm_runtime_enable(wdev->dev);
267 pm_runtime_get_sync(wdev->dev);
789cd470 268
0b3330f3
UKK
269 if (pdata && pdata->read_reset_sources) {
270 u32 rs = pdata->read_reset_sources();
271 if (rs & (1 << OMAP_MPU_WD_RST_SRC_ID_SHIFT))
272 wdev->wdog.bootstatus = WDIOF_CARDRESET;
273 }
7768a13c 274
8605fec1
UKK
275 if (!early_enable)
276 omap_wdt_disable(wdev);
2817142f 277
d2f78268 278 ret = watchdog_register_device(&wdev->wdog);
1ba85387
AK
279 if (ret) {
280 pm_runtime_disable(wdev->dev);
281 return ret;
282 }
7768a13c 283
2817142f 284 pr_info("OMAP Watchdog Timer Rev 0x%02x: initial timeout %d sec\n",
4a7e94a0 285 readl_relaxed(wdev->base + OMAP_WATCHDOG_REV) & 0xFF,
d2f78268 286 wdev->wdog.timeout);
7768a13c 287
b2102eb3
LP
288 if (early_enable)
289 omap_wdt_start(&wdev->wdog);
290
a6392490
UKK
291 pm_runtime_put(wdev->dev);
292
7768a13c 293 return 0;
7768a13c
KS
294}
295
296static void omap_wdt_shutdown(struct platform_device *pdev)
297{
d2f78268 298 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
2817142f 299
67c0f554 300 mutex_lock(&wdev->lock);
0503add9 301 if (wdev->omap_wdt_users) {
2817142f 302 omap_wdt_disable(wdev);
0503add9
PW
303 pm_runtime_put_sync(wdev->dev);
304 }
67c0f554 305 mutex_unlock(&wdev->lock);
7768a13c
KS
306}
307
4b12b896 308static int omap_wdt_remove(struct platform_device *pdev)
7768a13c 309{
d2f78268 310 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
2817142f 311
12c583d8 312 pm_runtime_disable(wdev->dev);
d2f78268 313 watchdog_unregister_device(&wdev->wdog);
b3112180 314
7768a13c
KS
315 return 0;
316}
317
318#ifdef CONFIG_PM
319
320/* REVISIT ... not clear this is the best way to handle system suspend; and
321 * it's very inappropriate for selective device suspend (e.g. suspending this
322 * through sysfs rather than by stopping the watchdog daemon). Also, this
323 * may not play well enough with NOWAYOUT...
324 */
325
326static int omap_wdt_suspend(struct platform_device *pdev, pm_message_t state)
327{
d2f78268 328 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
b3112180 329
67c0f554 330 mutex_lock(&wdev->lock);
0503add9 331 if (wdev->omap_wdt_users) {
2817142f 332 omap_wdt_disable(wdev);
0503add9
PW
333 pm_runtime_put_sync(wdev->dev);
334 }
67c0f554 335 mutex_unlock(&wdev->lock);
b3112180 336
7768a13c
KS
337 return 0;
338}
339
340static int omap_wdt_resume(struct platform_device *pdev)
341{
d2f78268 342 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
b3112180 343
67c0f554 344 mutex_lock(&wdev->lock);
2817142f 345 if (wdev->omap_wdt_users) {
0503add9 346 pm_runtime_get_sync(wdev->dev);
2817142f 347 omap_wdt_enable(wdev);
67c0f554 348 omap_wdt_reload(wdev);
7768a13c 349 }
67c0f554 350 mutex_unlock(&wdev->lock);
b3112180 351
7768a13c
KS
352 return 0;
353}
354
355#else
356#define omap_wdt_suspend NULL
357#define omap_wdt_resume NULL
358#endif
359
e6ca04ea
XJ
360static const struct of_device_id omap_wdt_of_match[] = {
361 { .compatible = "ti,omap3-wdt", },
362 {},
363};
364MODULE_DEVICE_TABLE(of, omap_wdt_of_match);
365
7768a13c
KS
366static struct platform_driver omap_wdt_driver = {
367 .probe = omap_wdt_probe,
82268714 368 .remove = omap_wdt_remove,
7768a13c
KS
369 .shutdown = omap_wdt_shutdown,
370 .suspend = omap_wdt_suspend,
371 .resume = omap_wdt_resume,
372 .driver = {
7768a13c 373 .name = "omap_wdt",
e6ca04ea 374 .of_match_table = omap_wdt_of_match,
7768a13c
KS
375 },
376};
377
b8ec6118 378module_platform_driver(omap_wdt_driver);
7768a13c
KS
379
380MODULE_AUTHOR("George G. Davis");
381MODULE_LICENSE("GPL");
f37d193c 382MODULE_ALIAS("platform:omap_wdt");