blob: f7f5aa00df609e2a39ad328418ef1840ec3c7157 [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
26#include <linux/module.h>
27#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/types.h>
29#include <linux/timer.h>
30#include <linux/miscdevice.h>
31#include <linux/watchdog.h>
32#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/init.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010034#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/interrupt.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000036#include <linux/clk.h>
Alan Cox41dc8b72008-08-04 17:54:46 +010037#include <linux/uaccess.h>
38#include <linux/io.h>
Ben Dookse02f8382009-10-30 00:30:25 +000039#include <linux/cpufreq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Russell Kinga09e64f2008-08-05 16:14:15 +010042#include <mach/map.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Ben Dooksb4307082007-07-24 13:28:01 +010044#undef S3C_VA_WATCHDOG
45#define S3C_VA_WATCHDOG (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Ben Dooks180ee702008-10-30 10:14:32 +000047#include <plat/regs-watchdog.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#define PFX "s3c2410-wdt: "
50
51#define CONFIG_S3C2410_WATCHDOG_ATBOOT (0)
52#define CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME (15)
53
Ben Dooks25ff3782006-09-06 12:24:35 +010054static int 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);
62module_param(nowayout, int, 0);
63module_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
Alan Cox41dc8b72008-08-04 17:54:46 +010077static unsigned long open_lock;
Ben Dookse8ef92b2007-06-14 12:08:55 +010078static struct device *wdt_dev; /* platform device attached to */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static struct resource *wdt_mem;
80static struct resource *wdt_irq;
81static struct clk *wdt_clock;
82static void __iomem *wdt_base;
83static unsigned int wdt_count;
Wim Van Sebroecka77dba72009-04-14 20:20:07 +000084static char expect_close;
Alan Cox41dc8b72008-08-04 17:54:46 +010085static DEFINE_SPINLOCK(wdt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87/* watchdog control routines */
88
89#define DBG(msg...) do { \
90 if (debug) \
91 printk(KERN_INFO msg); \
Alan Cox41dc8b72008-08-04 17:54:46 +010092 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94/* functions */
95
Alan Cox41dc8b72008-08-04 17:54:46 +010096static void s3c2410wdt_keepalive(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Alan Cox41dc8b72008-08-04 17:54:46 +010098 spin_lock(&wdt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 writel(wdt_count, wdt_base + S3C2410_WTCNT);
Alan Cox41dc8b72008-08-04 17:54:46 +0100100 spin_unlock(&wdt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
Alan Cox41dc8b72008-08-04 17:54:46 +0100103static void __s3c2410wdt_stop(void)
104{
105 unsigned long wtcon;
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 wtcon = readl(wdt_base + S3C2410_WTCON);
108 wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN);
109 writel(wtcon, wdt_base + S3C2410_WTCON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
Alan Cox41dc8b72008-08-04 17:54:46 +0100112static void s3c2410wdt_stop(void)
113{
114 spin_lock(&wdt_lock);
115 __s3c2410wdt_stop();
116 spin_unlock(&wdt_lock);
117}
118
119static void s3c2410wdt_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 unsigned long wtcon;
122
Alan Cox41dc8b72008-08-04 17:54:46 +0100123 spin_lock(&wdt_lock);
124
125 __s3c2410wdt_stop();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 wtcon = readl(wdt_base + S3C2410_WTCON);
128 wtcon |= S3C2410_WTCON_ENABLE | S3C2410_WTCON_DIV128;
129
130 if (soft_noboot) {
131 wtcon |= S3C2410_WTCON_INTEN;
132 wtcon &= ~S3C2410_WTCON_RSTEN;
133 } else {
134 wtcon &= ~S3C2410_WTCON_INTEN;
135 wtcon |= S3C2410_WTCON_RSTEN;
136 }
137
138 DBG("%s: wdt_count=0x%08x, wtcon=%08lx\n",
Harvey Harrisonfa9363c2008-03-05 18:24:58 -0800139 __func__, wdt_count, wtcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 writel(wdt_count, wdt_base + S3C2410_WTDAT);
142 writel(wdt_count, wdt_base + S3C2410_WTCNT);
143 writel(wtcon, wdt_base + S3C2410_WTCON);
Alan Cox41dc8b72008-08-04 17:54:46 +0100144 spin_unlock(&wdt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Ben Dookse02f8382009-10-30 00:30:25 +0000147static inline int s3c2410wdt_is_running(void)
148{
149 return readl(wdt_base + S3C2410_WTCON) & S3C2410_WTCON_ENABLE;
150}
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static int s3c2410wdt_set_heartbeat(int timeout)
153{
Ben Dookse02f8382009-10-30 00:30:25 +0000154 unsigned long freq = clk_get_rate(wdt_clock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 unsigned int count;
156 unsigned int divisor = 1;
157 unsigned long wtcon;
158
159 if (timeout < 1)
160 return -EINVAL;
161
162 freq /= 128;
163 count = timeout * freq;
164
Ben Dookse02f8382009-10-30 00:30:25 +0000165 DBG("%s: count=%d, timeout=%d, freq=%lu\n",
Harvey Harrisonfa9363c2008-03-05 18:24:58 -0800166 __func__, count, timeout, freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 /* if the count is bigger than the watchdog register,
169 then work out what we need to do (and if) we can
170 actually make this value
171 */
172
173 if (count >= 0x10000) {
174 for (divisor = 1; divisor <= 0x100; divisor++) {
175 if ((count / divisor) < 0x10000)
176 break;
177 }
178
179 if ((count / divisor) >= 0x10000) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100180 dev_err(wdt_dev, "timeout %d too big\n", timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return -EINVAL;
182 }
183 }
184
185 tmr_margin = timeout;
186
187 DBG("%s: timeout=%d, divisor=%d, count=%d (%08x)\n",
Harvey Harrisonfa9363c2008-03-05 18:24:58 -0800188 __func__, timeout, divisor, count, count/divisor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 count /= divisor;
191 wdt_count = count;
192
193 /* update the pre-scaler */
194 wtcon = readl(wdt_base + S3C2410_WTCON);
195 wtcon &= ~S3C2410_WTCON_PRESCALE_MASK;
196 wtcon |= S3C2410_WTCON_PRESCALE(divisor-1);
197
198 writel(count, wdt_base + S3C2410_WTDAT);
199 writel(wtcon, wdt_base + S3C2410_WTCON);
200
201 return 0;
202}
203
204/*
205 * /dev/watchdog handling
206 */
207
208static int s3c2410wdt_open(struct inode *inode, struct file *file)
209{
Alan Cox41dc8b72008-08-04 17:54:46 +0100210 if (test_and_set_bit(0, &open_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return -EBUSY;
212
Ben Dooks25ff3782006-09-06 12:24:35 +0100213 if (nowayout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 __module_get(THIS_MODULE);
Ben Dooks25ff3782006-09-06 12:24:35 +0100215
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000216 expect_close = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 /* start the timer */
219 s3c2410wdt_start();
220 return nonseekable_open(inode, file);
221}
222
223static int s3c2410wdt_release(struct inode *inode, struct file *file)
224{
225 /*
226 * Shut off the timer.
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +0000227 * Lock it in if it's a module and we set nowayout
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 */
Ben Dooks25ff3782006-09-06 12:24:35 +0100229
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000230 if (expect_close == 42)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 s3c2410wdt_stop();
Alan Cox41dc8b72008-08-04 17:54:46 +0100232 else {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100233 dev_err(wdt_dev, "Unexpected close, not stopping watchdog\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 s3c2410wdt_keepalive();
235 }
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000236 expect_close = 0;
Alan Cox41dc8b72008-08-04 17:54:46 +0100237 clear_bit(0, &open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return 0;
239}
240
241static ssize_t s3c2410wdt_write(struct file *file, const char __user *data,
242 size_t len, loff_t *ppos)
243{
244 /*
245 * Refresh the timer.
246 */
Alan Cox41dc8b72008-08-04 17:54:46 +0100247 if (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (!nowayout) {
249 size_t i;
250
251 /* In case it was set long ago */
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000252 expect_close = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 for (i = 0; i != len; i++) {
255 char c;
256
257 if (get_user(c, data + i))
258 return -EFAULT;
259 if (c == 'V')
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000260 expect_close = 42;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 }
262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 s3c2410wdt_keepalive();
264 }
265 return len;
266}
267
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000268#define OPTIONS (WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Alan Cox41dc8b72008-08-04 17:54:46 +0100270static const struct watchdog_info s3c2410_wdt_ident = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 .options = OPTIONS,
272 .firmware_version = 0,
273 .identity = "S3C2410 Watchdog",
274};
275
276
Alan Cox41dc8b72008-08-04 17:54:46 +0100277static long s3c2410wdt_ioctl(struct file *file, unsigned int cmd,
278 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 void __user *argp = (void __user *)arg;
281 int __user *p = argp;
282 int new_margin;
283
284 switch (cmd) {
Alan Cox41dc8b72008-08-04 17:54:46 +0100285 case WDIOC_GETSUPPORT:
286 return copy_to_user(argp, &s3c2410_wdt_ident,
287 sizeof(s3c2410_wdt_ident)) ? -EFAULT : 0;
288 case WDIOC_GETSTATUS:
289 case WDIOC_GETBOOTSTATUS:
290 return put_user(0, p);
291 case WDIOC_KEEPALIVE:
292 s3c2410wdt_keepalive();
293 return 0;
294 case WDIOC_SETTIMEOUT:
295 if (get_user(new_margin, p))
296 return -EFAULT;
297 if (s3c2410wdt_set_heartbeat(new_margin))
298 return -EINVAL;
299 s3c2410wdt_keepalive();
300 return put_user(tmr_margin, p);
301 case WDIOC_GETTIMEOUT:
302 return put_user(tmr_margin, p);
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000303 default:
304 return -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
306}
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308/* kernel interface */
309
Arjan van de Ven62322d22006-07-03 00:24:21 -0700310static const struct file_operations s3c2410wdt_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 .owner = THIS_MODULE,
312 .llseek = no_llseek,
313 .write = s3c2410wdt_write,
Alan Cox41dc8b72008-08-04 17:54:46 +0100314 .unlocked_ioctl = s3c2410wdt_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 .open = s3c2410wdt_open,
316 .release = s3c2410wdt_release,
317};
318
319static struct miscdevice s3c2410wdt_miscdev = {
320 .minor = WATCHDOG_MINOR,
321 .name = "watchdog",
322 .fops = &s3c2410wdt_fops,
323};
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325/* interrupt handler code */
326
David Howells7d12e782006-10-05 14:55:46 +0100327static irqreturn_t s3c2410wdt_irq(int irqno, void *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Ben Dookse8ef92b2007-06-14 12:08:55 +0100329 dev_info(wdt_dev, "watchdog timer expired (irq)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 s3c2410wdt_keepalive();
332 return IRQ_HANDLED;
333}
Ben Dookse02f8382009-10-30 00:30:25 +0000334
335
336#ifdef CONFIG_CPU_FREQ
337
338static int s3c2410wdt_cpufreq_transition(struct notifier_block *nb,
339 unsigned long val, void *data)
340{
341 int ret;
342
343 if (!s3c2410wdt_is_running())
344 goto done;
345
346 if (val == CPUFREQ_PRECHANGE) {
347 /* To ensure that over the change we don't cause the
348 * watchdog to trigger, we perform an keep-alive if
349 * the watchdog is running.
350 */
351
352 s3c2410wdt_keepalive();
353 } else if (val == CPUFREQ_POSTCHANGE) {
354 s3c2410wdt_stop();
355
356 ret = s3c2410wdt_set_heartbeat(tmr_margin);
357
358 if (ret >= 0)
359 s3c2410wdt_start();
360 else
361 goto err;
362 }
363
364done:
365 return 0;
366
367 err:
368 dev_err(wdt_dev, "cannot set new value for timeout %d\n", tmr_margin);
369 return ret;
370}
371
372static struct notifier_block s3c2410wdt_cpufreq_transition_nb = {
373 .notifier_call = s3c2410wdt_cpufreq_transition,
374};
375
376static inline int s3c2410wdt_cpufreq_register(void)
377{
378 return cpufreq_register_notifier(&s3c2410wdt_cpufreq_transition_nb,
379 CPUFREQ_TRANSITION_NOTIFIER);
380}
381
382static inline void s3c2410wdt_cpufreq_deregister(void)
383{
384 cpufreq_unregister_notifier(&s3c2410wdt_cpufreq_transition_nb,
385 CPUFREQ_TRANSITION_NOTIFIER);
386}
387
388#else
389static inline int s3c2410wdt_cpufreq_register(void)
390{
391 return 0;
392}
393
394static inline void s3c2410wdt_cpufreq_deregister(void)
395{
396}
397#endif
398
399
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401/* device interface */
402
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000403static int __devinit s3c2410wdt_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
Ben Dookse8ef92b2007-06-14 12:08:55 +0100405 struct device *dev;
Ben Dooks46b814d2007-06-14 12:08:54 +0100406 unsigned int wtcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 int started = 0;
408 int ret;
409 int size;
410
Harvey Harrisonfa9363c2008-03-05 18:24:58 -0800411 DBG("%s: probe=%p\n", __func__, pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Ben Dookse8ef92b2007-06-14 12:08:55 +0100413 dev = &pdev->dev;
414 wdt_dev = &pdev->dev;
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 /* get the memory region for the watchdog timer */
417
Julia Lawallf72401e2011-02-26 17:34:38 +0100418 wdt_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
419 if (wdt_mem == NULL) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100420 dev_err(dev, "no memory resource specified\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 return -ENOENT;
422 }
423
Julia Lawallf72401e2011-02-26 17:34:38 +0100424 size = resource_size(wdt_mem);
425 if (!request_mem_region(wdt_mem->start, size, pdev->name)) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100426 dev_err(dev, "failed to get memory region\n");
Banajit Goswami100fb762010-05-20 11:58:25 +0100427 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429
Julia Lawallf72401e2011-02-26 17:34:38 +0100430 wdt_base = ioremap(wdt_mem->start, size);
Ben Dooksb4253f82008-06-22 22:36:49 +0100431 if (wdt_base == NULL) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100432 dev_err(dev, "failed to ioremap() region\n");
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000433 ret = -EINVAL;
434 goto err_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
436
437 DBG("probe: mapped wdt_base=%p\n", wdt_base);
438
Arnaud Patard62be07412007-05-05 15:53:15 +0200439 wdt_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
440 if (wdt_irq == NULL) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100441 dev_err(dev, "no irq resource specified\n");
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000442 ret = -ENOENT;
443 goto err_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445
Arnaud Patard62be07412007-05-05 15:53:15 +0200446 ret = request_irq(wdt_irq->start, s3c2410wdt_irq, 0, pdev->name, pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (ret != 0) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100448 dev_err(dev, "failed to install irq (%d)\n", ret);
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000449 goto err_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451
Russell King3ae5eae2005-11-09 22:32:44 +0000452 wdt_clock = clk_get(&pdev->dev, "watchdog");
Akinobu Mita9cd44612006-12-19 17:51:44 +0900453 if (IS_ERR(wdt_clock)) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100454 dev_err(dev, "failed to find watchdog clock source\n");
Akinobu Mita9cd44612006-12-19 17:51:44 +0900455 ret = PTR_ERR(wdt_clock);
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000456 goto err_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 clk_enable(wdt_clock);
460
Ben Dookse02f8382009-10-30 00:30:25 +0000461 if (s3c2410wdt_cpufreq_register() < 0) {
462 printk(KERN_ERR PFX "failed to register cpufreq\n");
463 goto err_clk;
464 }
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /* see if we can actually set the requested timer margin, and if
467 * not, try the default value */
468
469 if (s3c2410wdt_set_heartbeat(tmr_margin)) {
Alan Cox41dc8b72008-08-04 17:54:46 +0100470 started = s3c2410wdt_set_heartbeat(
471 CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Alan Cox41dc8b72008-08-04 17:54:46 +0100473 if (started == 0)
474 dev_info(dev,
475 "tmr_margin value out of range, default %d used\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
Alan Cox41dc8b72008-08-04 17:54:46 +0100477 else
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000478 dev_info(dev, "default timer value is out of range, "
479 "cannot start\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 ret = misc_register(&s3c2410wdt_miscdev);
483 if (ret) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100484 dev_err(dev, "cannot register miscdev on minor=%d (%d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 WATCHDOG_MINOR, ret);
Ben Dookse02f8382009-10-30 00:30:25 +0000486 goto err_cpufreq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
488
489 if (tmr_atboot && started == 0) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100490 dev_info(dev, "starting watchdog timer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 s3c2410wdt_start();
Ben Dooks655516c2006-04-19 23:02:56 +0100492 } else if (!tmr_atboot) {
493 /* if we're not enabling the watchdog, then ensure it is
494 * disabled if it has been left running from the bootloader
495 * or other source */
496
497 s3c2410wdt_stop();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 }
499
Ben Dooks46b814d2007-06-14 12:08:54 +0100500 /* print out a statement of readiness */
501
502 wtcon = readl(wdt_base + S3C2410_WTCON);
503
Ben Dookse8ef92b2007-06-14 12:08:55 +0100504 dev_info(dev, "watchdog %sactive, reset %sabled, irq %sabled\n",
Ben Dooks46b814d2007-06-14 12:08:54 +0100505 (wtcon & S3C2410_WTCON_ENABLE) ? "" : "in",
506 (wtcon & S3C2410_WTCON_RSTEN) ? "" : "dis",
507 (wtcon & S3C2410_WTCON_INTEN) ? "" : "en");
Alan Cox41dc8b72008-08-04 17:54:46 +0100508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return 0;
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000510
Ben Dookse02f8382009-10-30 00:30:25 +0000511 err_cpufreq:
512 s3c2410wdt_cpufreq_deregister();
513
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000514 err_clk:
515 clk_disable(wdt_clock);
516 clk_put(wdt_clock);
517
518 err_irq:
519 free_irq(wdt_irq->start, pdev);
520
521 err_map:
522 iounmap(wdt_base);
523
524 err_req:
Julia Lawallf72401e2011-02-26 17:34:38 +0100525 release_mem_region(wdt_mem->start, size);
526 wdt_mem = NULL;
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000527
528 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000531static int __devexit s3c2410wdt_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Wim Van Sebroeck9a372562010-05-21 08:11:42 +0000533 misc_deregister(&s3c2410wdt_miscdev);
534
Ben Dookse02f8382009-10-30 00:30:25 +0000535 s3c2410wdt_cpufreq_deregister();
536
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000537 clk_disable(wdt_clock);
538 clk_put(wdt_clock);
539 wdt_clock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Wim Van Sebroeck9a372562010-05-21 08:11:42 +0000541 free_irq(wdt_irq->start, dev);
542 wdt_irq = NULL;
543
Amol Lade34477e2006-10-06 13:41:12 -0700544 iounmap(wdt_base);
Wim Van Sebroeck9a372562010-05-21 08:11:42 +0000545
Julia Lawallf72401e2011-02-26 17:34:38 +0100546 release_mem_region(wdt_mem->start, resource_size(wdt_mem));
Wim Van Sebroeck9a372562010-05-21 08:11:42 +0000547 wdt_mem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return 0;
549}
550
Russell King3ae5eae2005-11-09 22:32:44 +0000551static void s3c2410wdt_shutdown(struct platform_device *dev)
Ben Dooks94f1e9f2005-08-17 09:04:52 +0200552{
Alan Cox41dc8b72008-08-04 17:54:46 +0100553 s3c2410wdt_stop();
Ben Dooks94f1e9f2005-08-17 09:04:52 +0200554}
555
Ben Dooksaf4bb822005-08-17 09:03:23 +0200556#ifdef CONFIG_PM
557
558static unsigned long wtcon_save;
559static unsigned long wtdat_save;
560
Russell King3ae5eae2005-11-09 22:32:44 +0000561static int s3c2410wdt_suspend(struct platform_device *dev, pm_message_t state)
Ben Dooksaf4bb822005-08-17 09:03:23 +0200562{
Russell King9480e302005-10-28 09:52:56 -0700563 /* Save watchdog state, and turn it off. */
564 wtcon_save = readl(wdt_base + S3C2410_WTCON);
565 wtdat_save = readl(wdt_base + S3C2410_WTDAT);
Ben Dooksaf4bb822005-08-17 09:03:23 +0200566
Russell King9480e302005-10-28 09:52:56 -0700567 /* Note that WTCNT doesn't need to be saved. */
568 s3c2410wdt_stop();
Ben Dooksaf4bb822005-08-17 09:03:23 +0200569
570 return 0;
571}
572
Russell King3ae5eae2005-11-09 22:32:44 +0000573static int s3c2410wdt_resume(struct platform_device *dev)
Ben Dooksaf4bb822005-08-17 09:03:23 +0200574{
Russell King9480e302005-10-28 09:52:56 -0700575 /* Restore watchdog state. */
Ben Dooksaf4bb822005-08-17 09:03:23 +0200576
Russell King9480e302005-10-28 09:52:56 -0700577 writel(wtdat_save, wdt_base + S3C2410_WTDAT);
578 writel(wtdat_save, wdt_base + S3C2410_WTCNT); /* Reset count */
579 writel(wtcon_save, wdt_base + S3C2410_WTCON);
Ben Dooksaf4bb822005-08-17 09:03:23 +0200580
Russell King9480e302005-10-28 09:52:56 -0700581 printk(KERN_INFO PFX "watchdog %sabled\n",
582 (wtcon_save & S3C2410_WTCON_ENABLE) ? "en" : "dis");
Ben Dooksaf4bb822005-08-17 09:03:23 +0200583
584 return 0;
585}
586
587#else
588#define s3c2410wdt_suspend NULL
589#define s3c2410wdt_resume NULL
590#endif /* CONFIG_PM */
591
592
Russell King3ae5eae2005-11-09 22:32:44 +0000593static struct platform_driver s3c2410wdt_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 .probe = s3c2410wdt_probe,
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000595 .remove = __devexit_p(s3c2410wdt_remove),
Ben Dooks94f1e9f2005-08-17 09:04:52 +0200596 .shutdown = s3c2410wdt_shutdown,
Ben Dooksaf4bb822005-08-17 09:03:23 +0200597 .suspend = s3c2410wdt_suspend,
598 .resume = s3c2410wdt_resume,
Russell King3ae5eae2005-11-09 22:32:44 +0000599 .driver = {
600 .owner = THIS_MODULE,
601 .name = "s3c2410-wdt",
602 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603};
604
605
Alan Cox41dc8b72008-08-04 17:54:46 +0100606static char banner[] __initdata =
607 KERN_INFO "S3C2410 Watchdog Timer, (c) 2004 Simtec Electronics\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609static int __init watchdog_init(void)
610{
611 printk(banner);
Russell King3ae5eae2005-11-09 22:32:44 +0000612 return platform_driver_register(&s3c2410wdt_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
615static void __exit watchdog_exit(void)
616{
Russell King3ae5eae2005-11-09 22:32:44 +0000617 platform_driver_unregister(&s3c2410wdt_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
620module_init(watchdog_init);
621module_exit(watchdog_exit);
622
Ben Dooksaf4bb822005-08-17 09:03:23 +0200623MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>, "
624 "Dimitry Andric <dimitry.andric@tomtom.com>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625MODULE_DESCRIPTION("S3C2410 Watchdog Device Driver");
626MODULE_LICENSE("GPL");
627MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
Kay Sieversf37d1932008-04-10 21:29:23 -0700628MODULE_ALIAS("platform:s3c2410-wdt");