blob: 04e5a6de47d72743b7010758f1c78230d416f221 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* linux/drivers/char/watchdog/s3c2410_wdt.c
2 *
3 * Copyright (c) 2004 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
5 *
6 * S3C2410 Watchdog Timer Support
7 *
8 * Based on, softdog.c by Alan Cox,
Alan Cox29fa0582008-10-27 15:17:56 +00009 * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
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.
15 *
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.
20 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070024*/
25
Joe Perches27c766a2012-02-15 15:06:19 -080026#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/types.h>
31#include <linux/timer.h>
Wolfram Sang25dc46e2011-09-26 15:40:14 +020032#include <linux/miscdevice.h> /* for MODULE_ALIAS_MISCDEV */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/watchdog.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/init.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010035#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/interrupt.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000037#include <linux/clk.h>
Alan Cox41dc8b72008-08-04 17:54:46 +010038#include <linux/uaccess.h>
39#include <linux/io.h>
Ben Dookse02f8382009-10-30 00:30:25 +000040#include <linux/cpufreq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Wolfram Sang25dc46e2011-09-26 15:40:14 +020042#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Russell Kinga09e64f2008-08-05 16:14:15 +010044#include <mach/map.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Ben Dooksb4307082007-07-24 13:28:01 +010046#undef S3C_VA_WATCHDOG
47#define S3C_VA_WATCHDOG (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Ben Dooks180ee702008-10-30 10:14:32 +000049#include <plat/regs-watchdog.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define CONFIG_S3C2410_WATCHDOG_ATBOOT (0)
52#define CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME (15)
53
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010054static bool nowayout = WATCHDOG_NOWAYOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static int tmr_margin = CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME;
56static int tmr_atboot = CONFIG_S3C2410_WATCHDOG_ATBOOT;
Alan Cox41dc8b72008-08-04 17:54:46 +010057static int soft_noboot;
58static int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60module_param(tmr_margin, int, 0);
61module_param(tmr_atboot, int, 0);
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010062module_param(nowayout, bool, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063module_param(soft_noboot, int, 0);
64module_param(debug, int, 0);
65
Randy Dunlap76550d32010-05-01 09:46:15 -070066MODULE_PARM_DESC(tmr_margin, "Watchdog tmr_margin in seconds. (default="
Alan Cox41dc8b72008-08-04 17:54:46 +010067 __MODULE_STRING(CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME) ")");
68MODULE_PARM_DESC(tmr_atboot,
69 "Watchdog is started at boot time if set to 1, default="
70 __MODULE_STRING(CONFIG_S3C2410_WATCHDOG_ATBOOT));
71MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
72 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Wim Van Sebroecka77dba72009-04-14 20:20:07 +000073MODULE_PARM_DESC(soft_noboot, "Watchdog action, set to 1 to ignore reboots, "
Randy Dunlap76550d32010-05-01 09:46:15 -070074 "0 to reboot (default 0)");
75MODULE_PARM_DESC(debug, "Watchdog debug, set to >1 for debug (default 0)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Ben Dookse8ef92b2007-06-14 12:08:55 +010077static struct device *wdt_dev; /* platform device attached to */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static struct resource *wdt_mem;
79static struct resource *wdt_irq;
80static struct clk *wdt_clock;
81static void __iomem *wdt_base;
82static unsigned int wdt_count;
Alan Cox41dc8b72008-08-04 17:54:46 +010083static DEFINE_SPINLOCK(wdt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85/* watchdog control routines */
86
Joe Perches27c766a2012-02-15 15:06:19 -080087#define DBG(fmt, ...) \
88do { \
89 if (debug) \
90 pr_info(fmt, ##__VA_ARGS__); \
91} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/* functions */
94
Wolfram Sang25dc46e2011-09-26 15:40:14 +020095static int s3c2410wdt_keepalive(struct watchdog_device *wdd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Alan Cox41dc8b72008-08-04 17:54:46 +010097 spin_lock(&wdt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 writel(wdt_count, wdt_base + S3C2410_WTCNT);
Alan Cox41dc8b72008-08-04 17:54:46 +010099 spin_unlock(&wdt_lock);
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200100
101 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Alan Cox41dc8b72008-08-04 17:54:46 +0100104static void __s3c2410wdt_stop(void)
105{
106 unsigned long wtcon;
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 wtcon = readl(wdt_base + S3C2410_WTCON);
109 wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN);
110 writel(wtcon, wdt_base + S3C2410_WTCON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200113static int s3c2410wdt_stop(struct watchdog_device *wdd)
Alan Cox41dc8b72008-08-04 17:54:46 +0100114{
115 spin_lock(&wdt_lock);
116 __s3c2410wdt_stop();
117 spin_unlock(&wdt_lock);
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200118
119 return 0;
Alan Cox41dc8b72008-08-04 17:54:46 +0100120}
121
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200122static int s3c2410wdt_start(struct watchdog_device *wdd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 unsigned long wtcon;
125
Alan Cox41dc8b72008-08-04 17:54:46 +0100126 spin_lock(&wdt_lock);
127
128 __s3c2410wdt_stop();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 wtcon = readl(wdt_base + S3C2410_WTCON);
131 wtcon |= S3C2410_WTCON_ENABLE | S3C2410_WTCON_DIV128;
132
133 if (soft_noboot) {
134 wtcon |= S3C2410_WTCON_INTEN;
135 wtcon &= ~S3C2410_WTCON_RSTEN;
136 } else {
137 wtcon &= ~S3C2410_WTCON_INTEN;
138 wtcon |= S3C2410_WTCON_RSTEN;
139 }
140
141 DBG("%s: wdt_count=0x%08x, wtcon=%08lx\n",
Harvey Harrisonfa9363c2008-03-05 18:24:58 -0800142 __func__, wdt_count, wtcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 writel(wdt_count, wdt_base + S3C2410_WTDAT);
145 writel(wdt_count, wdt_base + S3C2410_WTCNT);
146 writel(wtcon, wdt_base + S3C2410_WTCON);
Alan Cox41dc8b72008-08-04 17:54:46 +0100147 spin_unlock(&wdt_lock);
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200148
149 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Ben Dookse02f8382009-10-30 00:30:25 +0000152static inline int s3c2410wdt_is_running(void)
153{
154 return readl(wdt_base + S3C2410_WTCON) & S3C2410_WTCON_ENABLE;
155}
156
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200157static int s3c2410wdt_set_heartbeat(struct watchdog_device *wdd, unsigned timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Ben Dookse02f8382009-10-30 00:30:25 +0000159 unsigned long freq = clk_get_rate(wdt_clock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 unsigned int count;
161 unsigned int divisor = 1;
162 unsigned long wtcon;
163
164 if (timeout < 1)
165 return -EINVAL;
166
167 freq /= 128;
168 count = timeout * freq;
169
Ben Dookse02f8382009-10-30 00:30:25 +0000170 DBG("%s: count=%d, timeout=%d, freq=%lu\n",
Harvey Harrisonfa9363c2008-03-05 18:24:58 -0800171 __func__, count, timeout, freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
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
176 */
177
178 if (count >= 0x10000) {
179 for (divisor = 1; divisor <= 0x100; divisor++) {
180 if ((count / divisor) < 0x10000)
181 break;
182 }
183
184 if ((count / divisor) >= 0x10000) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100185 dev_err(wdt_dev, "timeout %d too big\n", timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return -EINVAL;
187 }
188 }
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 DBG("%s: timeout=%d, divisor=%d, count=%d (%08x)\n",
Harvey Harrisonfa9363c2008-03-05 18:24:58 -0800191 __func__, timeout, divisor, count, count/divisor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 count /= divisor;
194 wdt_count = count;
195
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);
200
201 writel(count, wdt_base + S3C2410_WTDAT);
202 writel(wtcon, wdt_base + S3C2410_WTCON);
203
Wim Van Sebroeck0197c1c2012-02-29 20:20:58 +0100204 wdd->timeout = timeout;
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return 0;
207}
208
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000209#define OPTIONS (WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Alan Cox41dc8b72008-08-04 17:54:46 +0100211static const struct watchdog_info s3c2410_wdt_ident = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 .options = OPTIONS,
213 .firmware_version = 0,
214 .identity = "S3C2410 Watchdog",
215};
216
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200217static 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,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223};
224
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200225static struct watchdog_device s3c2410_wdd = {
226 .info = &s3c2410_wdt_ident,
227 .ops = &s3c2410wdt_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228};
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230/* interrupt handler code */
231
David Howells7d12e782006-10-05 14:55:46 +0100232static irqreturn_t s3c2410wdt_irq(int irqno, void *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Ben Dookse8ef92b2007-06-14 12:08:55 +0100234 dev_info(wdt_dev, "watchdog timer expired (irq)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200236 s3c2410wdt_keepalive(&s3c2410_wdd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return IRQ_HANDLED;
238}
Ben Dookse02f8382009-10-30 00:30:25 +0000239
240
241#ifdef CONFIG_CPU_FREQ
242
243static int s3c2410wdt_cpufreq_transition(struct notifier_block *nb,
244 unsigned long val, void *data)
245{
246 int ret;
247
248 if (!s3c2410wdt_is_running())
249 goto done;
250
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.
255 */
256
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200257 s3c2410wdt_keepalive(&s3c2410_wdd);
Ben Dookse02f8382009-10-30 00:30:25 +0000258 } else if (val == CPUFREQ_POSTCHANGE) {
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200259 s3c2410wdt_stop(&s3c2410_wdd);
Ben Dookse02f8382009-10-30 00:30:25 +0000260
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200261 ret = s3c2410wdt_set_heartbeat(&s3c2410_wdd, s3c2410_wdd.timeout);
Ben Dookse02f8382009-10-30 00:30:25 +0000262
263 if (ret >= 0)
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200264 s3c2410wdt_start(&s3c2410_wdd);
Ben Dookse02f8382009-10-30 00:30:25 +0000265 else
266 goto err;
267 }
268
269done:
270 return 0;
271
272 err:
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200273 dev_err(wdt_dev, "cannot set new value for timeout %d\n",
274 s3c2410_wdd.timeout);
Ben Dookse02f8382009-10-30 00:30:25 +0000275 return ret;
276}
277
278static struct notifier_block s3c2410wdt_cpufreq_transition_nb = {
279 .notifier_call = s3c2410wdt_cpufreq_transition,
280};
281
282static inline int s3c2410wdt_cpufreq_register(void)
283{
284 return cpufreq_register_notifier(&s3c2410wdt_cpufreq_transition_nb,
285 CPUFREQ_TRANSITION_NOTIFIER);
286}
287
288static inline void s3c2410wdt_cpufreq_deregister(void)
289{
290 cpufreq_unregister_notifier(&s3c2410wdt_cpufreq_transition_nb,
291 CPUFREQ_TRANSITION_NOTIFIER);
292}
293
294#else
295static inline int s3c2410wdt_cpufreq_register(void)
296{
297 return 0;
298}
299
300static inline void s3c2410wdt_cpufreq_deregister(void)
301{
302}
303#endif
304
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000305static int __devinit s3c2410wdt_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Ben Dookse8ef92b2007-06-14 12:08:55 +0100307 struct device *dev;
Ben Dooks46b814d2007-06-14 12:08:54 +0100308 unsigned int wtcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 int started = 0;
310 int ret;
311 int size;
312
Harvey Harrisonfa9363c2008-03-05 18:24:58 -0800313 DBG("%s: probe=%p\n", __func__, pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Ben Dookse8ef92b2007-06-14 12:08:55 +0100315 dev = &pdev->dev;
316 wdt_dev = &pdev->dev;
317
Julia Lawallf72401e2011-02-26 17:34:38 +0100318 wdt_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
319 if (wdt_mem == NULL) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100320 dev_err(dev, "no memory resource specified\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return -ENOENT;
322 }
323
MyungJoo Ham78d3e002012-01-13 14:14:23 +0900324 wdt_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
325 if (wdt_irq == NULL) {
326 dev_err(dev, "no irq resource specified\n");
327 ret = -ENOENT;
328 goto err;
329 }
330
331 /* get the memory region for the watchdog timer */
332
Julia Lawallf72401e2011-02-26 17:34:38 +0100333 size = resource_size(wdt_mem);
334 if (!request_mem_region(wdt_mem->start, size, pdev->name)) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100335 dev_err(dev, "failed to get memory region\n");
MyungJoo Ham78d3e002012-01-13 14:14:23 +0900336 ret = -EBUSY;
337 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
339
Julia Lawallf72401e2011-02-26 17:34:38 +0100340 wdt_base = ioremap(wdt_mem->start, size);
Ben Dooksb4253f82008-06-22 22:36:49 +0100341 if (wdt_base == NULL) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100342 dev_err(dev, "failed to ioremap() region\n");
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000343 ret = -EINVAL;
344 goto err_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346
347 DBG("probe: mapped wdt_base=%p\n", wdt_base);
348
Russell King3ae5eae2005-11-09 22:32:44 +0000349 wdt_clock = clk_get(&pdev->dev, "watchdog");
Akinobu Mita9cd44612006-12-19 17:51:44 +0900350 if (IS_ERR(wdt_clock)) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100351 dev_err(dev, "failed to find watchdog clock source\n");
Akinobu Mita9cd44612006-12-19 17:51:44 +0900352 ret = PTR_ERR(wdt_clock);
MyungJoo Ham78d3e002012-01-13 14:14:23 +0900353 goto err_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 clk_enable(wdt_clock);
357
MyungJoo Ham78d3e002012-01-13 14:14:23 +0900358 ret = s3c2410wdt_cpufreq_register();
359 if (ret < 0) {
Joe Perches27c766a2012-02-15 15:06:19 -0800360 pr_err("failed to register cpufreq\n");
Ben Dookse02f8382009-10-30 00:30:25 +0000361 goto err_clk;
362 }
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 /* see if we can actually set the requested timer margin, and if
365 * not, try the default value */
366
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200367 if (s3c2410wdt_set_heartbeat(&s3c2410_wdd, tmr_margin)) {
368 started = s3c2410wdt_set_heartbeat(&s3c2410_wdd,
Alan Cox41dc8b72008-08-04 17:54:46 +0100369 CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Alan Cox41dc8b72008-08-04 17:54:46 +0100371 if (started == 0)
372 dev_info(dev,
373 "tmr_margin value out of range, default %d used\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
Alan Cox41dc8b72008-08-04 17:54:46 +0100375 else
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000376 dev_info(dev, "default timer value is out of range, "
377 "cannot start\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
379
MyungJoo Ham78d3e002012-01-13 14:14:23 +0900380 ret = request_irq(wdt_irq->start, s3c2410wdt_irq, 0, pdev->name, pdev);
381 if (ret != 0) {
382 dev_err(dev, "failed to install irq (%d)\n", ret);
383 goto err_cpufreq;
384 }
385
Wim Van Sebroeckff0b3cd2011-11-29 16:24:16 +0100386 watchdog_set_nowayout(&s3c2410_wdd, nowayout);
387
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200388 ret = watchdog_register_device(&s3c2410_wdd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (ret) {
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200390 dev_err(dev, "cannot register watchdog (%d)\n", ret);
MyungJoo Ham78d3e002012-01-13 14:14:23 +0900391 goto err_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
393
394 if (tmr_atboot && started == 0) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100395 dev_info(dev, "starting watchdog timer\n");
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200396 s3c2410wdt_start(&s3c2410_wdd);
Ben Dooks655516c2006-04-19 23:02:56 +0100397 } 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
400 * or other source */
401
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200402 s3c2410wdt_stop(&s3c2410_wdd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404
Ben Dooks46b814d2007-06-14 12:08:54 +0100405 /* print out a statement of readiness */
406
407 wtcon = readl(wdt_base + S3C2410_WTCON);
408
Ben Dookse8ef92b2007-06-14 12:08:55 +0100409 dev_info(dev, "watchdog %sactive, reset %sabled, irq %sabled\n",
Ben Dooks46b814d2007-06-14 12:08:54 +0100410 (wtcon & S3C2410_WTCON_ENABLE) ? "" : "in",
Dmitry Artamonow20403e82011-11-16 12:46:13 +0400411 (wtcon & S3C2410_WTCON_RSTEN) ? "en" : "dis",
412 (wtcon & S3C2410_WTCON_INTEN) ? "en" : "dis");
Alan Cox41dc8b72008-08-04 17:54:46 +0100413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return 0;
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000415
MyungJoo Ham78d3e002012-01-13 14:14:23 +0900416 err_irq:
417 free_irq(wdt_irq->start, pdev);
418
Ben Dookse02f8382009-10-30 00:30:25 +0000419 err_cpufreq:
420 s3c2410wdt_cpufreq_deregister();
421
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000422 err_clk:
423 clk_disable(wdt_clock);
424 clk_put(wdt_clock);
MyungJoo Ham78d3e002012-01-13 14:14:23 +0900425 wdt_clock = NULL;
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000426
427 err_map:
428 iounmap(wdt_base);
429
430 err_req:
Julia Lawallf72401e2011-02-26 17:34:38 +0100431 release_mem_region(wdt_mem->start, size);
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000432
MyungJoo Ham78d3e002012-01-13 14:14:23 +0900433 err:
434 wdt_irq = NULL;
435 wdt_mem = NULL;
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000436 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000439static int __devexit s3c2410wdt_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200441 watchdog_unregister_device(&s3c2410_wdd);
Wim Van Sebroeck9a372562010-05-21 08:11:42 +0000442
MyungJoo Ham78d3e002012-01-13 14:14:23 +0900443 free_irq(wdt_irq->start, dev);
444
Ben Dookse02f8382009-10-30 00:30:25 +0000445 s3c2410wdt_cpufreq_deregister();
446
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000447 clk_disable(wdt_clock);
448 clk_put(wdt_clock);
449 wdt_clock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Amol Lade34477e2006-10-06 13:41:12 -0700451 iounmap(wdt_base);
Wim Van Sebroeck9a372562010-05-21 08:11:42 +0000452
Julia Lawallf72401e2011-02-26 17:34:38 +0100453 release_mem_region(wdt_mem->start, resource_size(wdt_mem));
MyungJoo Ham78d3e002012-01-13 14:14:23 +0900454 wdt_irq = NULL;
Wim Van Sebroeck9a372562010-05-21 08:11:42 +0000455 wdt_mem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return 0;
457}
458
Russell King3ae5eae2005-11-09 22:32:44 +0000459static void s3c2410wdt_shutdown(struct platform_device *dev)
Ben Dooks94f1e9f2005-08-17 09:04:52 +0200460{
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200461 s3c2410wdt_stop(&s3c2410_wdd);
Ben Dooks94f1e9f2005-08-17 09:04:52 +0200462}
463
Ben Dooksaf4bb822005-08-17 09:03:23 +0200464#ifdef CONFIG_PM
465
466static unsigned long wtcon_save;
467static unsigned long wtdat_save;
468
Russell King3ae5eae2005-11-09 22:32:44 +0000469static int s3c2410wdt_suspend(struct platform_device *dev, pm_message_t state)
Ben Dooksaf4bb822005-08-17 09:03:23 +0200470{
Russell King9480e302005-10-28 09:52:56 -0700471 /* Save watchdog state, and turn it off. */
472 wtcon_save = readl(wdt_base + S3C2410_WTCON);
473 wtdat_save = readl(wdt_base + S3C2410_WTDAT);
Ben Dooksaf4bb822005-08-17 09:03:23 +0200474
Russell King9480e302005-10-28 09:52:56 -0700475 /* Note that WTCNT doesn't need to be saved. */
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200476 s3c2410wdt_stop(&s3c2410_wdd);
Ben Dooksaf4bb822005-08-17 09:03:23 +0200477
478 return 0;
479}
480
Russell King3ae5eae2005-11-09 22:32:44 +0000481static int s3c2410wdt_resume(struct platform_device *dev)
Ben Dooksaf4bb822005-08-17 09:03:23 +0200482{
Russell King9480e302005-10-28 09:52:56 -0700483 /* Restore watchdog state. */
Ben Dooksaf4bb822005-08-17 09:03:23 +0200484
Russell King9480e302005-10-28 09:52:56 -0700485 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);
Ben Dooksaf4bb822005-08-17 09:03:23 +0200488
Joe Perches27c766a2012-02-15 15:06:19 -0800489 pr_info("watchdog %sabled\n",
490 (wtcon_save & S3C2410_WTCON_ENABLE) ? "en" : "dis");
Ben Dooksaf4bb822005-08-17 09:03:23 +0200491
492 return 0;
493}
494
495#else
496#define s3c2410wdt_suspend NULL
497#define s3c2410wdt_resume NULL
498#endif /* CONFIG_PM */
499
Thomas Abraham9487a9c2011-06-22 15:24:32 +0530500#ifdef CONFIG_OF
501static const struct of_device_id s3c2410_wdt_match[] = {
502 { .compatible = "samsung,s3c2410-wdt" },
503 {},
504};
505MODULE_DEVICE_TABLE(of, s3c2410_wdt_match);
506#else
507#define s3c2410_wdt_match NULL
508#endif
Ben Dooksaf4bb822005-08-17 09:03:23 +0200509
Russell King3ae5eae2005-11-09 22:32:44 +0000510static struct platform_driver s3c2410wdt_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 .probe = s3c2410wdt_probe,
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000512 .remove = __devexit_p(s3c2410wdt_remove),
Ben Dooks94f1e9f2005-08-17 09:04:52 +0200513 .shutdown = s3c2410wdt_shutdown,
Ben Dooksaf4bb822005-08-17 09:03:23 +0200514 .suspend = s3c2410wdt_suspend,
515 .resume = s3c2410wdt_resume,
Russell King3ae5eae2005-11-09 22:32:44 +0000516 .driver = {
517 .owner = THIS_MODULE,
518 .name = "s3c2410-wdt",
Thomas Abraham9487a9c2011-06-22 15:24:32 +0530519 .of_match_table = s3c2410_wdt_match,
Russell King3ae5eae2005-11-09 22:32:44 +0000520 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521};
522
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524static int __init watchdog_init(void)
525{
Jaehoon Chungccd41442012-03-16 15:27:21 +0900526 pr_info("S3C2410 Watchdog Timer, (c) 2004 Simtec Electronics\n");
Joe Perches27c766a2012-02-15 15:06:19 -0800527
Russell King3ae5eae2005-11-09 22:32:44 +0000528 return platform_driver_register(&s3c2410wdt_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
531static void __exit watchdog_exit(void)
532{
Russell King3ae5eae2005-11-09 22:32:44 +0000533 platform_driver_unregister(&s3c2410wdt_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
536module_init(watchdog_init);
537module_exit(watchdog_exit);
538
Ben Dooksaf4bb822005-08-17 09:03:23 +0200539MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>, "
540 "Dimitry Andric <dimitry.andric@tomtom.com>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541MODULE_DESCRIPTION("S3C2410 Watchdog Device Driver");
542MODULE_LICENSE("GPL");
543MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
Kay Sieversf37d1932008-04-10 21:29:23 -0700544MODULE_ALIAS("platform:s3c2410-wdt");