4 * Watchdog driver for the TI OMAP 16xx & 24xx/34xx 32KHz (non-secure) watchdog
6 * Author: MontaVista Software, Inc.
7 * <gdavis@mvista.com> or <source@mvista.com>
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
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>
19 * Based on SoftDog driver by Alan Cox <alan@lxorguk.ukuu.org.uk>
21 * Copyright (c) 2004 Texas Instruments.
22 * 1. Modified to support OMAP1610 32-KHz watchdog timer
23 * 2. Ported to 2.6 kernel
25 * Copyright (c) 2005 David Brownell
26 * Use the driver model and standard identifiers; handle bigger timeouts.
29 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31 #include <linux/module.h>
32 #include <linux/types.h>
33 #include <linux/kernel.h>
35 #include <linux/watchdog.h>
36 #include <linux/reboot.h>
37 #include <linux/init.h>
38 #include <linux/err.h>
39 #include <linux/platform_device.h>
40 #include <linux/moduleparam.h>
42 #include <linux/slab.h>
43 #include <linux/pm_runtime.h>
44 #include <linux/platform_data/omap-wd-timer.h>
48 static bool nowayout
= WATCHDOG_NOWAYOUT
;
49 module_param(nowayout
, bool, 0);
50 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started "
51 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
53 static unsigned timer_margin
;
54 module_param(timer_margin
, uint
, 0);
55 MODULE_PARM_DESC(timer_margin
, "initial watchdog timeout (in seconds)");
58 void __iomem
*base
; /* physical */
63 struct mutex lock
; /* to avoid races with PM */
66 static void omap_wdt_reload(struct omap_wdt_dev
*wdev
)
68 void __iomem
*base
= wdev
->base
;
70 /* wait for posted write to complete */
71 while ((__raw_readl(base
+ OMAP_WATCHDOG_WPS
)) & 0x08)
74 wdev
->wdt_trgr_pattern
= ~wdev
->wdt_trgr_pattern
;
75 __raw_writel(wdev
->wdt_trgr_pattern
, (base
+ OMAP_WATCHDOG_TGR
));
77 /* wait for posted write to complete */
78 while ((__raw_readl(base
+ OMAP_WATCHDOG_WPS
)) & 0x08)
80 /* reloaded WCRR from WLDR */
83 static void omap_wdt_enable(struct omap_wdt_dev
*wdev
)
85 void __iomem
*base
= wdev
->base
;
87 /* Sequence to enable the watchdog */
88 __raw_writel(0xBBBB, base
+ OMAP_WATCHDOG_SPR
);
89 while ((__raw_readl(base
+ OMAP_WATCHDOG_WPS
)) & 0x10)
92 __raw_writel(0x4444, base
+ OMAP_WATCHDOG_SPR
);
93 while ((__raw_readl(base
+ OMAP_WATCHDOG_WPS
)) & 0x10)
97 static void omap_wdt_disable(struct omap_wdt_dev
*wdev
)
99 void __iomem
*base
= wdev
->base
;
101 /* sequence required to disable watchdog */
102 __raw_writel(0xAAAA, base
+ OMAP_WATCHDOG_SPR
); /* TIMER_MODE */
103 while (__raw_readl(base
+ OMAP_WATCHDOG_WPS
) & 0x10)
106 __raw_writel(0x5555, base
+ OMAP_WATCHDOG_SPR
); /* TIMER_MODE */
107 while (__raw_readl(base
+ OMAP_WATCHDOG_WPS
) & 0x10)
111 static void omap_wdt_set_timer(struct omap_wdt_dev
*wdev
,
112 unsigned int timeout
)
114 u32 pre_margin
= GET_WLDR_VAL(timeout
);
115 void __iomem
*base
= wdev
->base
;
117 /* just count up at 32 KHz */
118 while (__raw_readl(base
+ OMAP_WATCHDOG_WPS
) & 0x04)
121 __raw_writel(pre_margin
, base
+ OMAP_WATCHDOG_LDR
);
122 while (__raw_readl(base
+ OMAP_WATCHDOG_WPS
) & 0x04)
126 static int omap_wdt_start(struct watchdog_device
*wdog
)
128 struct omap_wdt_dev
*wdev
= watchdog_get_drvdata(wdog
);
129 void __iomem
*base
= wdev
->base
;
131 mutex_lock(&wdev
->lock
);
133 wdev
->omap_wdt_users
= true;
135 pm_runtime_get_sync(wdev
->dev
);
138 * Make sure the watchdog is disabled. This is unfortunately required
139 * because writing to various registers with the watchdog running has no
142 omap_wdt_disable(wdev
);
144 /* initialize prescaler */
145 while (__raw_readl(base
+ OMAP_WATCHDOG_WPS
) & 0x01)
148 __raw_writel((1 << 5) | (PTV
<< 2), base
+ OMAP_WATCHDOG_CNTRL
);
149 while (__raw_readl(base
+ OMAP_WATCHDOG_WPS
) & 0x01)
152 omap_wdt_set_timer(wdev
, wdog
->timeout
);
153 omap_wdt_reload(wdev
); /* trigger loading of new timeout value */
154 omap_wdt_enable(wdev
);
156 mutex_unlock(&wdev
->lock
);
161 static int omap_wdt_stop(struct watchdog_device
*wdog
)
163 struct omap_wdt_dev
*wdev
= watchdog_get_drvdata(wdog
);
165 mutex_lock(&wdev
->lock
);
166 omap_wdt_disable(wdev
);
167 pm_runtime_put_sync(wdev
->dev
);
168 wdev
->omap_wdt_users
= false;
169 mutex_unlock(&wdev
->lock
);
173 static int omap_wdt_ping(struct watchdog_device
*wdog
)
175 struct omap_wdt_dev
*wdev
= watchdog_get_drvdata(wdog
);
177 mutex_lock(&wdev
->lock
);
178 omap_wdt_reload(wdev
);
179 mutex_unlock(&wdev
->lock
);
184 static int omap_wdt_set_timeout(struct watchdog_device
*wdog
,
185 unsigned int timeout
)
187 struct omap_wdt_dev
*wdev
= watchdog_get_drvdata(wdog
);
189 mutex_lock(&wdev
->lock
);
190 omap_wdt_disable(wdev
);
191 omap_wdt_set_timer(wdev
, timeout
);
192 omap_wdt_enable(wdev
);
193 omap_wdt_reload(wdev
);
194 wdog
->timeout
= timeout
;
195 mutex_unlock(&wdev
->lock
);
200 static const struct watchdog_info omap_wdt_info
= {
201 .options
= WDIOF_SETTIMEOUT
| WDIOF_KEEPALIVEPING
,
202 .identity
= "OMAP Watchdog",
205 static const struct watchdog_ops omap_wdt_ops
= {
206 .owner
= THIS_MODULE
,
207 .start
= omap_wdt_start
,
208 .stop
= omap_wdt_stop
,
209 .ping
= omap_wdt_ping
,
210 .set_timeout
= omap_wdt_set_timeout
,
213 static int omap_wdt_probe(struct platform_device
*pdev
)
215 struct omap_wd_timer_platform_data
*pdata
= pdev
->dev
.platform_data
;
216 struct watchdog_device
*omap_wdt
;
217 struct resource
*res
, *mem
;
218 struct omap_wdt_dev
*wdev
;
222 omap_wdt
= devm_kzalloc(&pdev
->dev
, sizeof(*omap_wdt
), GFP_KERNEL
);
226 /* reserve static register mappings */
227 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
231 mem
= devm_request_mem_region(&pdev
->dev
, res
->start
,
232 resource_size(res
), pdev
->name
);
236 wdev
= devm_kzalloc(&pdev
->dev
, sizeof(*wdev
), GFP_KERNEL
);
240 wdev
->omap_wdt_users
= false;
242 wdev
->dev
= &pdev
->dev
;
243 wdev
->wdt_trgr_pattern
= 0x1234;
244 mutex_init(&wdev
->lock
);
246 wdev
->base
= devm_ioremap(&pdev
->dev
, res
->start
, resource_size(res
));
250 omap_wdt
->info
= &omap_wdt_info
;
251 omap_wdt
->ops
= &omap_wdt_ops
;
252 omap_wdt
->min_timeout
= TIMER_MARGIN_MIN
;
253 omap_wdt
->max_timeout
= TIMER_MARGIN_MAX
;
255 if (timer_margin
>= TIMER_MARGIN_MIN
&&
256 timer_margin
<= TIMER_MARGIN_MAX
)
257 omap_wdt
->timeout
= timer_margin
;
259 omap_wdt
->timeout
= TIMER_MARGIN_DEFAULT
;
261 watchdog_set_drvdata(omap_wdt
, wdev
);
262 watchdog_set_nowayout(omap_wdt
, nowayout
);
264 platform_set_drvdata(pdev
, omap_wdt
);
266 pm_runtime_enable(wdev
->dev
);
267 pm_runtime_get_sync(wdev
->dev
);
269 if (pdata
&& pdata
->read_reset_sources
)
270 rs
= pdata
->read_reset_sources();
273 omap_wdt
->bootstatus
= (rs
& (1 << OMAP_MPU_WD_RST_SRC_ID_SHIFT
)) ?
276 omap_wdt_disable(wdev
);
278 ret
= watchdog_register_device(omap_wdt
);
280 pm_runtime_disable(wdev
->dev
);
284 pr_info("OMAP Watchdog Timer Rev 0x%02x: initial timeout %d sec\n",
285 __raw_readl(wdev
->base
+ OMAP_WATCHDOG_REV
) & 0xFF,
288 pm_runtime_put_sync(wdev
->dev
);
293 static void omap_wdt_shutdown(struct platform_device
*pdev
)
295 struct watchdog_device
*wdog
= platform_get_drvdata(pdev
);
296 struct omap_wdt_dev
*wdev
= watchdog_get_drvdata(wdog
);
298 mutex_lock(&wdev
->lock
);
299 if (wdev
->omap_wdt_users
) {
300 omap_wdt_disable(wdev
);
301 pm_runtime_put_sync(wdev
->dev
);
303 mutex_unlock(&wdev
->lock
);
306 static int omap_wdt_remove(struct platform_device
*pdev
)
308 struct watchdog_device
*wdog
= platform_get_drvdata(pdev
);
309 struct omap_wdt_dev
*wdev
= watchdog_get_drvdata(wdog
);
311 pm_runtime_disable(wdev
->dev
);
312 watchdog_unregister_device(wdog
);
319 /* REVISIT ... not clear this is the best way to handle system suspend; and
320 * it's very inappropriate for selective device suspend (e.g. suspending this
321 * through sysfs rather than by stopping the watchdog daemon). Also, this
322 * may not play well enough with NOWAYOUT...
325 static int omap_wdt_suspend(struct platform_device
*pdev
, pm_message_t state
)
327 struct watchdog_device
*wdog
= platform_get_drvdata(pdev
);
328 struct omap_wdt_dev
*wdev
= watchdog_get_drvdata(wdog
);
330 mutex_lock(&wdev
->lock
);
331 if (wdev
->omap_wdt_users
) {
332 omap_wdt_disable(wdev
);
333 pm_runtime_put_sync(wdev
->dev
);
335 mutex_unlock(&wdev
->lock
);
340 static int omap_wdt_resume(struct platform_device
*pdev
)
342 struct watchdog_device
*wdog
= platform_get_drvdata(pdev
);
343 struct omap_wdt_dev
*wdev
= watchdog_get_drvdata(wdog
);
345 mutex_lock(&wdev
->lock
);
346 if (wdev
->omap_wdt_users
) {
347 pm_runtime_get_sync(wdev
->dev
);
348 omap_wdt_enable(wdev
);
349 omap_wdt_reload(wdev
);
351 mutex_unlock(&wdev
->lock
);
357 #define omap_wdt_suspend NULL
358 #define omap_wdt_resume NULL
361 static const struct of_device_id omap_wdt_of_match
[] = {
362 { .compatible
= "ti,omap3-wdt", },
365 MODULE_DEVICE_TABLE(of
, omap_wdt_of_match
);
367 static struct platform_driver omap_wdt_driver
= {
368 .probe
= omap_wdt_probe
,
369 .remove
= omap_wdt_remove
,
370 .shutdown
= omap_wdt_shutdown
,
371 .suspend
= omap_wdt_suspend
,
372 .resume
= omap_wdt_resume
,
374 .owner
= THIS_MODULE
,
376 .of_match_table
= omap_wdt_of_match
,
380 module_platform_driver(omap_wdt_driver
);
382 MODULE_AUTHOR("George G. Davis");
383 MODULE_LICENSE("GPL");
384 MODULE_ALIAS("platform:omap_wdt");