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/miscdevice.h> /* for MODULE_ALIAS_MISCDEV */
33 #include <linux/watchdog.h>
34 #include <linux/init.h>
35 #include <linux/platform_device.h>
36 #include <linux/interrupt.h>
37 #include <linux/clk.h>
38 #include <linux/uaccess.h>
40 #include <linux/cpufreq.h>
41 #include <linux/slab.h>
42 #include <linux/err.h>
46 #undef S3C_VA_WATCHDOG
47 #define S3C_VA_WATCHDOG (0)
49 #include <plat/regs-watchdog.h>
51 #define CONFIG_S3C2410_WATCHDOG_ATBOOT (0)
52 #define CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME (15)
54 static bool nowayout = WATCHDOG_NOWAYOUT;
55 static int tmr_margin = CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME;
56 static int tmr_atboot = CONFIG_S3C2410_WATCHDOG_ATBOOT;
57 static int soft_noboot;
60 module_param(tmr_margin, int, 0);
61 module_param(tmr_atboot, int, 0);
62 module_param(nowayout, bool, 0);
63 module_param(soft_noboot, int, 0);
64 module_param(debug, int, 0);
66 MODULE_PARM_DESC(tmr_margin, "Watchdog tmr_margin in seconds. (default="
67 __MODULE_STRING(CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME) ")");
68 MODULE_PARM_DESC(tmr_atboot,
69 "Watchdog is started at boot time if set to 1, default="
70 __MODULE_STRING(CONFIG_S3C2410_WATCHDOG_ATBOOT));
71 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
72 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
73 MODULE_PARM_DESC(soft_noboot, "Watchdog action, set to 1 to ignore reboots, "
74 "0 to reboot (default 0)");
75 MODULE_PARM_DESC(debug, "Watchdog debug, set to >1 for debug (default 0)");
77 static struct device *wdt_dev; /* platform device attached to */
78 static struct resource *wdt_mem;
79 static struct resource *wdt_irq;
80 static struct clk *wdt_clock;
81 static void __iomem *wdt_base;
82 static unsigned int wdt_count;
83 static DEFINE_SPINLOCK(wdt_lock);
85 /* watchdog control routines */
87 #define DBG(fmt, ...) \
90 pr_info(fmt, ##__VA_ARGS__); \
95 static int s3c2410wdt_keepalive(struct watchdog_device *wdd)
98 writel(wdt_count, wdt_base + S3C2410_WTCNT);
99 spin_unlock(&wdt_lock);
104 static void __s3c2410wdt_stop(void)
108 wtcon = readl(wdt_base + S3C2410_WTCON);
109 wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN);
110 writel(wtcon, wdt_base + S3C2410_WTCON);
113 static int s3c2410wdt_stop(struct watchdog_device *wdd)
115 spin_lock(&wdt_lock);
117 spin_unlock(&wdt_lock);
122 static int s3c2410wdt_start(struct watchdog_device *wdd)
126 spin_lock(&wdt_lock);
130 wtcon = readl(wdt_base + S3C2410_WTCON);
131 wtcon |= S3C2410_WTCON_ENABLE | S3C2410_WTCON_DIV128;
134 wtcon |= S3C2410_WTCON_INTEN;
135 wtcon &= ~S3C2410_WTCON_RSTEN;
137 wtcon &= ~S3C2410_WTCON_INTEN;
138 wtcon |= S3C2410_WTCON_RSTEN;
141 DBG("%s: wdt_count=0x%08x, wtcon=%08lx\n",
142 __func__, wdt_count, wtcon);
144 writel(wdt_count, wdt_base + S3C2410_WTDAT);
145 writel(wdt_count, wdt_base + S3C2410_WTCNT);
146 writel(wtcon, wdt_base + S3C2410_WTCON);
147 spin_unlock(&wdt_lock);
152 static inline int s3c2410wdt_is_running(void)
154 return readl(wdt_base + S3C2410_WTCON) & S3C2410_WTCON_ENABLE;
157 static int s3c2410wdt_set_heartbeat(struct watchdog_device *wdd, unsigned timeout)
159 unsigned long freq = clk_get_rate(wdt_clock);
161 unsigned int divisor = 1;
168 count = timeout * freq;
170 DBG("%s: count=%d, timeout=%d, freq=%lu\n",
171 __func__, count, timeout, freq);
173 /* if the count is bigger than the watchdog register,
174 then work out what we need to do (and if) we can
175 actually make this value
178 if (count >= 0x10000) {
179 for (divisor = 1; divisor <= 0x100; divisor++) {
180 if ((count / divisor) < 0x10000)
184 if ((count / divisor) >= 0x10000) {
185 dev_err(wdt_dev, "timeout %d too big\n", timeout);
190 DBG("%s: timeout=%d, divisor=%d, count=%d (%08x)\n",
191 __func__, timeout, divisor, count, count/divisor);
196 /* update the pre-scaler */
197 wtcon = readl(wdt_base + S3C2410_WTCON);
198 wtcon &= ~S3C2410_WTCON_PRESCALE_MASK;
199 wtcon |= S3C2410_WTCON_PRESCALE(divisor-1);
201 writel(count, wdt_base + S3C2410_WTDAT);
202 writel(wtcon, wdt_base + S3C2410_WTCON);
204 wdd->timeout = timeout;
209 #define OPTIONS (WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE)
211 static const struct watchdog_info s3c2410_wdt_ident = {
213 .firmware_version = 0,
214 .identity = "S3C2410 Watchdog",
217 static struct watchdog_ops s3c2410wdt_ops = {
218 .owner = THIS_MODULE,
219 .start = s3c2410wdt_start,
220 .stop = s3c2410wdt_stop,
221 .ping = s3c2410wdt_keepalive,
222 .set_timeout = s3c2410wdt_set_heartbeat,
225 static struct watchdog_device s3c2410_wdd = {
226 .info = &s3c2410_wdt_ident,
227 .ops = &s3c2410wdt_ops,
230 /* interrupt handler code */
232 static irqreturn_t s3c2410wdt_irq(int irqno, void *param)
234 dev_info(wdt_dev, "watchdog timer expired (irq)\n");
236 s3c2410wdt_keepalive(&s3c2410_wdd);
241 #ifdef CONFIG_CPU_FREQ
243 static int s3c2410wdt_cpufreq_transition(struct notifier_block *nb,
244 unsigned long val, void *data)
248 if (!s3c2410wdt_is_running())
251 if (val == CPUFREQ_PRECHANGE) {
252 /* To ensure that over the change we don't cause the
253 * watchdog to trigger, we perform an keep-alive if
254 * the watchdog is running.
257 s3c2410wdt_keepalive(&s3c2410_wdd);
258 } else if (val == CPUFREQ_POSTCHANGE) {
259 s3c2410wdt_stop(&s3c2410_wdd);
261 ret = s3c2410wdt_set_heartbeat(&s3c2410_wdd, s3c2410_wdd.timeout);
264 s3c2410wdt_start(&s3c2410_wdd);
273 dev_err(wdt_dev, "cannot set new value for timeout %d\n",
274 s3c2410_wdd.timeout);
278 static struct notifier_block s3c2410wdt_cpufreq_transition_nb = {
279 .notifier_call = s3c2410wdt_cpufreq_transition,
282 static inline int s3c2410wdt_cpufreq_register(void)
284 return cpufreq_register_notifier(&s3c2410wdt_cpufreq_transition_nb,
285 CPUFREQ_TRANSITION_NOTIFIER);
288 static inline void s3c2410wdt_cpufreq_deregister(void)
290 cpufreq_unregister_notifier(&s3c2410wdt_cpufreq_transition_nb,
291 CPUFREQ_TRANSITION_NOTIFIER);
295 static inline int s3c2410wdt_cpufreq_register(void)
300 static inline void s3c2410wdt_cpufreq_deregister(void)
305 static int __devinit s3c2410wdt_probe(struct platform_device *pdev)
313 DBG("%s: probe=%p\n", __func__, pdev);
316 wdt_dev = &pdev->dev;
318 wdt_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
319 if (wdt_mem == NULL) {
320 dev_err(dev, "no memory resource specified\n");
324 wdt_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
325 if (wdt_irq == NULL) {
326 dev_err(dev, "no irq resource specified\n");
331 /* get the memory region for the watchdog timer */
333 size = resource_size(wdt_mem);
334 if (!request_mem_region(wdt_mem->start, size, pdev->name)) {
335 dev_err(dev, "failed to get memory region\n");
340 wdt_base = ioremap(wdt_mem->start, size);
341 if (wdt_base == NULL) {
342 dev_err(dev, "failed to ioremap() region\n");
347 DBG("probe: mapped wdt_base=%p\n", wdt_base);
349 wdt_clock = clk_get(&pdev->dev, "watchdog");
350 if (IS_ERR(wdt_clock)) {
351 dev_err(dev, "failed to find watchdog clock source\n");
352 ret = PTR_ERR(wdt_clock);
356 clk_enable(wdt_clock);
358 ret = s3c2410wdt_cpufreq_register();
360 pr_err("failed to register cpufreq\n");
364 /* see if we can actually set the requested timer margin, and if
365 * not, try the default value */
367 if (s3c2410wdt_set_heartbeat(&s3c2410_wdd, tmr_margin)) {
368 started = s3c2410wdt_set_heartbeat(&s3c2410_wdd,
369 CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
373 "tmr_margin value out of range, default %d used\n",
374 CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
376 dev_info(dev, "default timer value is out of range, "
380 ret = request_irq(wdt_irq->start, s3c2410wdt_irq, 0, pdev->name, pdev);
382 dev_err(dev, "failed to install irq (%d)\n", ret);
386 watchdog_set_nowayout(&s3c2410_wdd, nowayout);
388 ret = watchdog_register_device(&s3c2410_wdd);
390 dev_err(dev, "cannot register watchdog (%d)\n", ret);
394 if (tmr_atboot && started == 0) {
395 dev_info(dev, "starting watchdog timer\n");
396 s3c2410wdt_start(&s3c2410_wdd);
397 } else if (!tmr_atboot) {
398 /* if we're not enabling the watchdog, then ensure it is
399 * disabled if it has been left running from the bootloader
402 s3c2410wdt_stop(&s3c2410_wdd);
405 /* print out a statement of readiness */
407 wtcon = readl(wdt_base + S3C2410_WTCON);
409 dev_info(dev, "watchdog %sactive, reset %sabled, irq %sabled\n",
410 (wtcon & S3C2410_WTCON_ENABLE) ? "" : "in",
411 (wtcon & S3C2410_WTCON_RSTEN) ? "en" : "dis",
412 (wtcon & S3C2410_WTCON_INTEN) ? "en" : "dis");
417 free_irq(wdt_irq->start, pdev);
420 s3c2410wdt_cpufreq_deregister();
423 clk_disable(wdt_clock);
431 release_mem_region(wdt_mem->start, size);
439 static int __devexit s3c2410wdt_remove(struct platform_device *dev)
441 watchdog_unregister_device(&s3c2410_wdd);
443 free_irq(wdt_irq->start, dev);
445 s3c2410wdt_cpufreq_deregister();
447 clk_disable(wdt_clock);
453 release_mem_region(wdt_mem->start, resource_size(wdt_mem));
459 static void s3c2410wdt_shutdown(struct platform_device *dev)
461 s3c2410wdt_stop(&s3c2410_wdd);
466 static unsigned long wtcon_save;
467 static unsigned long wtdat_save;
469 static int s3c2410wdt_suspend(struct platform_device *dev, pm_message_t state)
471 /* Save watchdog state, and turn it off. */
472 wtcon_save = readl(wdt_base + S3C2410_WTCON);
473 wtdat_save = readl(wdt_base + S3C2410_WTDAT);
475 /* Note that WTCNT doesn't need to be saved. */
476 s3c2410wdt_stop(&s3c2410_wdd);
481 static int s3c2410wdt_resume(struct platform_device *dev)
483 /* Restore watchdog state. */
485 writel(wtdat_save, wdt_base + S3C2410_WTDAT);
486 writel(wtdat_save, wdt_base + S3C2410_WTCNT); /* Reset count */
487 writel(wtcon_save, wdt_base + S3C2410_WTCON);
489 pr_info("watchdog %sabled\n",
490 (wtcon_save & S3C2410_WTCON_ENABLE) ? "en" : "dis");
496 #define s3c2410wdt_suspend NULL
497 #define s3c2410wdt_resume NULL
498 #endif /* CONFIG_PM */
501 static const struct of_device_id s3c2410_wdt_match[] = {
502 { .compatible = "samsung,s3c2410-wdt" },
505 MODULE_DEVICE_TABLE(of, s3c2410_wdt_match);
507 #define s3c2410_wdt_match NULL
510 static struct platform_driver s3c2410wdt_driver = {
511 .probe = s3c2410wdt_probe,
512 .remove = __devexit_p(s3c2410wdt_remove),
513 .shutdown = s3c2410wdt_shutdown,
514 .suspend = s3c2410wdt_suspend,
515 .resume = s3c2410wdt_resume,
517 .owner = THIS_MODULE,
518 .name = "s3c2410-wdt",
519 .of_match_table = s3c2410_wdt_match,
524 static int __init watchdog_init(void)
526 pr_info("S3C2410 Watchdog Timer, (c) 2004 Simtec Electronics\n");
528 return platform_driver_register(&s3c2410wdt_driver);
531 static void __exit watchdog_exit(void)
533 platform_driver_unregister(&s3c2410wdt_driver);
536 module_init(watchdog_init);
537 module_exit(watchdog_exit);
539 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>, "
540 "Dimitry Andric <dimitry.andric@tomtom.com>");
541 MODULE_DESCRIPTION("S3C2410 Watchdog Device Driver");
542 MODULE_LICENSE("GPL");
543 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
544 MODULE_ALIAS("platform:s3c2410-wdt");