1 /* linux/drivers/char/watchdog/s3c2410_wdt.c
3 * Copyright (c) 2004 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
6 * S3C2410 Watchdog Timer Support
8 * Based on, softdog.c by Alan Cox,
9 * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
28 #include <linux/module.h>
29 #include <linux/moduleparam.h>
30 #include <linux/types.h>
31 #include <linux/timer.h>
32 #include <linux/watchdog.h>
33 #include <linux/init.h>
34 #include <linux/platform_device.h>
35 #include <linux/interrupt.h>
36 #include <linux/clk.h>
37 #include <linux/uaccess.h>
39 #include <linux/cpufreq.h>
40 #include <linux/slab.h>
41 #include <linux/err.h>
44 #define S3C2410_WTCON 0x00
45 #define S3C2410_WTDAT 0x04
46 #define S3C2410_WTCNT 0x08
48 #define S3C2410_WTCON_RSTEN (1 << 0)
49 #define S3C2410_WTCON_INTEN (1 << 2)
50 #define S3C2410_WTCON_ENABLE (1 << 5)
52 #define S3C2410_WTCON_DIV16 (0 << 3)
53 #define S3C2410_WTCON_DIV32 (1 << 3)
54 #define S3C2410_WTCON_DIV64 (2 << 3)
55 #define S3C2410_WTCON_DIV128 (3 << 3)
57 #define S3C2410_WTCON_PRESCALE(x) ((x) << 8)
58 #define S3C2410_WTCON_PRESCALE_MASK (0xff << 8)
60 #define CONFIG_S3C2410_WATCHDOG_ATBOOT (0)
61 #define CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME (15)
63 static bool nowayout = WATCHDOG_NOWAYOUT;
64 static int tmr_margin;
65 static int tmr_atboot = CONFIG_S3C2410_WATCHDOG_ATBOOT;
66 static int soft_noboot;
69 module_param(tmr_margin, int, 0);
70 module_param(tmr_atboot, int, 0);
71 module_param(nowayout, bool, 0);
72 module_param(soft_noboot, int, 0);
73 module_param(debug, int, 0);
75 MODULE_PARM_DESC(tmr_margin, "Watchdog tmr_margin in seconds. (default="
76 __MODULE_STRING(CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME) ")");
77 MODULE_PARM_DESC(tmr_atboot,
78 "Watchdog is started at boot time if set to 1, default="
79 __MODULE_STRING(CONFIG_S3C2410_WATCHDOG_ATBOOT));
80 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
81 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
82 MODULE_PARM_DESC(soft_noboot, "Watchdog action, set to 1 to ignore reboots, "
83 "0 to reboot (default 0)");
84 MODULE_PARM_DESC(debug, "Watchdog debug, set to >1 for debug (default 0)");
89 void __iomem *reg_base;
92 unsigned long wtcon_save;
93 unsigned long wtdat_save;
94 struct watchdog_device wdt_device;
95 struct notifier_block freq_transition;
98 /* watchdog control routines */
100 #define DBG(fmt, ...) \
103 pr_info(fmt, ##__VA_ARGS__); \
108 static inline struct s3c2410_wdt *freq_to_wdt(struct notifier_block *nb)
110 return container_of(nb, struct s3c2410_wdt, freq_transition);
113 static int s3c2410wdt_keepalive(struct watchdog_device *wdd)
115 struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
117 spin_lock(&wdt->lock);
118 writel(wdt->count, wdt->reg_base + S3C2410_WTCNT);
119 spin_unlock(&wdt->lock);
124 static void __s3c2410wdt_stop(struct s3c2410_wdt *wdt)
128 wtcon = readl(wdt->reg_base + S3C2410_WTCON);
129 wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN);
130 writel(wtcon, wdt->reg_base + S3C2410_WTCON);
133 static int s3c2410wdt_stop(struct watchdog_device *wdd)
135 struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
137 spin_lock(&wdt->lock);
138 __s3c2410wdt_stop(wdt);
139 spin_unlock(&wdt->lock);
144 static int s3c2410wdt_start(struct watchdog_device *wdd)
147 struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
149 spin_lock(&wdt->lock);
151 __s3c2410wdt_stop(wdt);
153 wtcon = readl(wdt->reg_base + S3C2410_WTCON);
154 wtcon |= S3C2410_WTCON_ENABLE | S3C2410_WTCON_DIV128;
157 wtcon |= S3C2410_WTCON_INTEN;
158 wtcon &= ~S3C2410_WTCON_RSTEN;
160 wtcon &= ~S3C2410_WTCON_INTEN;
161 wtcon |= S3C2410_WTCON_RSTEN;
164 DBG("%s: count=0x%08x, wtcon=%08lx\n",
165 __func__, wdt->count, wtcon);
167 writel(wdt->count, wdt->reg_base + S3C2410_WTDAT);
168 writel(wdt->count, wdt->reg_base + S3C2410_WTCNT);
169 writel(wtcon, wdt->reg_base + S3C2410_WTCON);
170 spin_unlock(&wdt->lock);
175 static inline int s3c2410wdt_is_running(struct s3c2410_wdt *wdt)
177 return readl(wdt->reg_base + S3C2410_WTCON) & S3C2410_WTCON_ENABLE;
180 static int s3c2410wdt_set_heartbeat(struct watchdog_device *wdd, unsigned timeout)
182 struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
183 unsigned long freq = clk_get_rate(wdt->clock);
185 unsigned int divisor = 1;
192 count = timeout * freq;
194 DBG("%s: count=%d, timeout=%d, freq=%lu\n",
195 __func__, count, timeout, freq);
197 /* if the count is bigger than the watchdog register,
198 then work out what we need to do (and if) we can
199 actually make this value
202 if (count >= 0x10000) {
203 for (divisor = 1; divisor <= 0x100; divisor++) {
204 if ((count / divisor) < 0x10000)
208 if ((count / divisor) >= 0x10000) {
209 dev_err(wdt->dev, "timeout %d too big\n", timeout);
214 DBG("%s: timeout=%d, divisor=%d, count=%d (%08x)\n",
215 __func__, timeout, divisor, count, count/divisor);
220 /* update the pre-scaler */
221 wtcon = readl(wdt->reg_base + S3C2410_WTCON);
222 wtcon &= ~S3C2410_WTCON_PRESCALE_MASK;
223 wtcon |= S3C2410_WTCON_PRESCALE(divisor-1);
225 writel(count, wdt->reg_base + S3C2410_WTDAT);
226 writel(wtcon, wdt->reg_base + S3C2410_WTCON);
228 wdd->timeout = (count * divisor) / freq;
233 #define OPTIONS (WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE)
235 static const struct watchdog_info s3c2410_wdt_ident = {
237 .firmware_version = 0,
238 .identity = "S3C2410 Watchdog",
241 static struct watchdog_ops s3c2410wdt_ops = {
242 .owner = THIS_MODULE,
243 .start = s3c2410wdt_start,
244 .stop = s3c2410wdt_stop,
245 .ping = s3c2410wdt_keepalive,
246 .set_timeout = s3c2410wdt_set_heartbeat,
249 static struct watchdog_device s3c2410_wdd = {
250 .info = &s3c2410_wdt_ident,
251 .ops = &s3c2410wdt_ops,
252 .timeout = CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME,
255 /* interrupt handler code */
257 static irqreturn_t s3c2410wdt_irq(int irqno, void *param)
259 struct s3c2410_wdt *wdt = platform_get_drvdata(param);
261 dev_info(wdt->dev, "watchdog timer expired (irq)\n");
263 s3c2410wdt_keepalive(&wdt->wdt_device);
267 #ifdef CONFIG_CPU_FREQ
269 static int s3c2410wdt_cpufreq_transition(struct notifier_block *nb,
270 unsigned long val, void *data)
273 struct s3c2410_wdt *wdt = freq_to_wdt(nb);
275 if (!s3c2410wdt_is_running(wdt))
278 if (val == CPUFREQ_PRECHANGE) {
279 /* To ensure that over the change we don't cause the
280 * watchdog to trigger, we perform an keep-alive if
281 * the watchdog is running.
284 s3c2410wdt_keepalive(&wdt->wdt_device);
285 } else if (val == CPUFREQ_POSTCHANGE) {
286 s3c2410wdt_stop(&wdt->wdt_device);
288 ret = s3c2410wdt_set_heartbeat(&wdt->wdt_device,
289 wdt->wdt_device.timeout);
292 s3c2410wdt_start(&wdt->wdt_device);
301 dev_err(wdt->dev, "cannot set new value for timeout %d\n",
302 wdt->wdt_device.timeout);
306 static inline int s3c2410wdt_cpufreq_register(struct s3c2410_wdt *wdt)
308 wdt->freq_transition.notifier_call = s3c2410wdt_cpufreq_transition;
310 return cpufreq_register_notifier(&wdt->freq_transition,
311 CPUFREQ_TRANSITION_NOTIFIER);
314 static inline void s3c2410wdt_cpufreq_deregister(struct s3c2410_wdt *wdt)
316 wdt->freq_transition.notifier_call = s3c2410wdt_cpufreq_transition;
318 cpufreq_unregister_notifier(&wdt->freq_transition,
319 CPUFREQ_TRANSITION_NOTIFIER);
324 static inline int s3c2410wdt_cpufreq_register(struct s3c2410_wdt *wdt)
329 static inline void s3c2410wdt_cpufreq_deregister(struct s3c2410_wdt *wdt)
334 static int s3c2410wdt_probe(struct platform_device *pdev)
337 struct s3c2410_wdt *wdt;
338 struct resource *wdt_mem;
339 struct resource *wdt_irq;
344 DBG("%s: probe=%p\n", __func__, pdev);
348 wdt = devm_kzalloc(dev, sizeof(*wdt), GFP_KERNEL);
352 wdt->dev = &pdev->dev;
353 spin_lock_init(&wdt->lock);
354 wdt->wdt_device = s3c2410_wdd;
356 wdt_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
357 if (wdt_irq == NULL) {
358 dev_err(dev, "no irq resource specified\n");
363 /* get the memory region for the watchdog timer */
364 wdt_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
365 wdt->reg_base = devm_ioremap_resource(dev, wdt_mem);
366 if (IS_ERR(wdt->reg_base)) {
367 ret = PTR_ERR(wdt->reg_base);
371 DBG("probe: mapped reg_base=%p\n", wdt->reg_base);
373 wdt->clock = devm_clk_get(dev, "watchdog");
374 if (IS_ERR(wdt->clock)) {
375 dev_err(dev, "failed to find watchdog clock source\n");
376 ret = PTR_ERR(wdt->clock);
380 clk_prepare_enable(wdt->clock);
382 ret = s3c2410wdt_cpufreq_register(wdt);
384 dev_err(dev, "failed to register cpufreq\n");
388 watchdog_set_drvdata(&wdt->wdt_device, wdt);
390 /* see if we can actually set the requested timer margin, and if
391 * not, try the default value */
393 watchdog_init_timeout(&wdt->wdt_device, tmr_margin, &pdev->dev);
394 ret = s3c2410wdt_set_heartbeat(&wdt->wdt_device,
395 wdt->wdt_device.timeout);
397 started = s3c2410wdt_set_heartbeat(&wdt->wdt_device,
398 CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
402 "tmr_margin value out of range, default %d used\n",
403 CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
405 dev_info(dev, "default timer value is out of range, "
409 ret = devm_request_irq(dev, wdt_irq->start, s3c2410wdt_irq, 0,
412 dev_err(dev, "failed to install irq (%d)\n", ret);
416 watchdog_set_nowayout(&wdt->wdt_device, nowayout);
418 ret = watchdog_register_device(&wdt->wdt_device);
420 dev_err(dev, "cannot register watchdog (%d)\n", ret);
424 if (tmr_atboot && started == 0) {
425 dev_info(dev, "starting watchdog timer\n");
426 s3c2410wdt_start(&wdt->wdt_device);
427 } else if (!tmr_atboot) {
428 /* if we're not enabling the watchdog, then ensure it is
429 * disabled if it has been left running from the bootloader
432 s3c2410wdt_stop(&wdt->wdt_device);
435 platform_set_drvdata(pdev, wdt);
437 /* print out a statement of readiness */
439 wtcon = readl(wdt->reg_base + S3C2410_WTCON);
441 dev_info(dev, "watchdog %sactive, reset %sabled, irq %sabled\n",
442 (wtcon & S3C2410_WTCON_ENABLE) ? "" : "in",
443 (wtcon & S3C2410_WTCON_RSTEN) ? "en" : "dis",
444 (wtcon & S3C2410_WTCON_INTEN) ? "en" : "dis");
449 s3c2410wdt_cpufreq_deregister(wdt);
452 clk_disable_unprepare(wdt->clock);
459 static int s3c2410wdt_remove(struct platform_device *dev)
461 struct s3c2410_wdt *wdt = platform_get_drvdata(dev);
463 watchdog_unregister_device(&wdt->wdt_device);
465 s3c2410wdt_cpufreq_deregister(wdt);
467 clk_disable_unprepare(wdt->clock);
473 static void s3c2410wdt_shutdown(struct platform_device *dev)
475 struct s3c2410_wdt *wdt = platform_get_drvdata(dev);
477 s3c2410wdt_stop(&wdt->wdt_device);
480 #ifdef CONFIG_PM_SLEEP
482 static int s3c2410wdt_suspend(struct device *dev)
484 struct s3c2410_wdt *wdt = dev_get_drvdata(dev);
486 /* Save watchdog state, and turn it off. */
487 wdt->wtcon_save = readl(wdt->reg_base + S3C2410_WTCON);
488 wdt->wtdat_save = readl(wdt->reg_base + S3C2410_WTDAT);
490 /* Note that WTCNT doesn't need to be saved. */
491 s3c2410wdt_stop(&wdt->wdt_device);
496 static int s3c2410wdt_resume(struct device *dev)
498 struct s3c2410_wdt *wdt = dev_get_drvdata(dev);
500 /* Restore watchdog state. */
501 writel(wdt->wtdat_save, wdt->reg_base + S3C2410_WTDAT);
502 writel(wdt->wtdat_save, wdt->reg_base + S3C2410_WTCNT);/* Reset count */
503 writel(wdt->wtcon_save, wdt->reg_base + S3C2410_WTCON);
505 dev_info(dev, "watchdog %sabled\n",
506 (wdt->wtcon_save & S3C2410_WTCON_ENABLE) ? "en" : "dis");
512 static SIMPLE_DEV_PM_OPS(s3c2410wdt_pm_ops, s3c2410wdt_suspend,
516 static const struct of_device_id s3c2410_wdt_match[] = {
517 { .compatible = "samsung,s3c2410-wdt" },
520 MODULE_DEVICE_TABLE(of, s3c2410_wdt_match);
523 static struct platform_driver s3c2410wdt_driver = {
524 .probe = s3c2410wdt_probe,
525 .remove = s3c2410wdt_remove,
526 .shutdown = s3c2410wdt_shutdown,
528 .owner = THIS_MODULE,
529 .name = "s3c2410-wdt",
530 .pm = &s3c2410wdt_pm_ops,
531 .of_match_table = of_match_ptr(s3c2410_wdt_match),
535 module_platform_driver(s3c2410wdt_driver);
537 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>, "
538 "Dimitry Andric <dimitry.andric@tomtom.com>");
539 MODULE_DESCRIPTION("S3C2410 Watchdog Device Driver");
540 MODULE_LICENSE("GPL");
541 MODULE_ALIAS("platform:s3c2410-wdt");