Linux Audio

Check our new training course

Loading...
v3.1
  1/* 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,
  9 *     (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>
 10 *
 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
 24*/
 25
 
 
 26#include <linux/module.h>
 27#include <linux/moduleparam.h>
 28#include <linux/types.h>
 29#include <linux/timer.h>
 30#include <linux/miscdevice.h>
 31#include <linux/watchdog.h>
 32#include <linux/fs.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>
 38#include <linux/io.h>
 39#include <linux/cpufreq.h>
 40#include <linux/slab.h>
 41
 42#include <mach/map.h>
 43
 44#undef S3C_VA_WATCHDOG
 45#define S3C_VA_WATCHDOG (0)
 46
 47#include <plat/regs-watchdog.h>
 48
 49#define PFX "s3c2410-wdt: "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 50
 51#define CONFIG_S3C2410_WATCHDOG_ATBOOT		(0)
 52#define CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME	(15)
 53
 54static int nowayout	= WATCHDOG_NOWAYOUT;
 55static int tmr_margin	= CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME;
 
 
 
 
 
 
 
 
 
 
 
 56static int tmr_atboot	= CONFIG_S3C2410_WATCHDOG_ATBOOT;
 57static int soft_noboot;
 58static int debug;
 59
 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
 66MODULE_PARM_DESC(tmr_margin, "Watchdog tmr_margin in seconds. (default="
 67		__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) ")");
 73MODULE_PARM_DESC(soft_noboot, "Watchdog action, set to 1 to ignore reboots, "
 74			"0 to reboot (default 0)");
 75MODULE_PARM_DESC(debug, "Watchdog debug, set to >1 for debug (default 0)");
 76
 77static unsigned long open_lock;
 78static struct device    *wdt_dev;	/* platform device attached to */
 79static struct resource	*wdt_mem;
 80static struct resource	*wdt_irq;
 81static struct clk	*wdt_clock;
 82static void __iomem	*wdt_base;
 83static unsigned int	 wdt_count;
 84static char		 expect_close;
 85static DEFINE_SPINLOCK(wdt_lock);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 86
 87/* watchdog control routines */
 88
 89#define DBG(msg...) do { \
 90	if (debug) \
 91		printk(KERN_INFO msg); \
 92	} while (0)
 
 93
 94/* functions */
 95
 96static void s3c2410wdt_keepalive(void)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 97{
 98	spin_lock(&wdt_lock);
 99	writel(wdt_count, wdt_base + S3C2410_WTCNT);
100	spin_unlock(&wdt_lock);
 
 
 
 
101}
102
103static void __s3c2410wdt_stop(void)
104{
105	unsigned long wtcon;
106
107	wtcon = readl(wdt_base + S3C2410_WTCON);
108	wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN);
109	writel(wtcon, wdt_base + S3C2410_WTCON);
110}
111
112static 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)
120{
121	unsigned long wtcon;
 
122
123	spin_lock(&wdt_lock);
124
125	__s3c2410wdt_stop();
126
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",
139	    __func__, wdt_count, wtcon);
 
 
 
 
 
140
141	writel(wdt_count, wdt_base + S3C2410_WTDAT);
142	writel(wdt_count, wdt_base + S3C2410_WTCNT);
143	writel(wtcon, wdt_base + S3C2410_WTCON);
144	spin_unlock(&wdt_lock);
145}
146
147static inline int s3c2410wdt_is_running(void)
148{
149	return readl(wdt_base + S3C2410_WTCON) & S3C2410_WTCON_ENABLE;
150}
151
152static int s3c2410wdt_set_heartbeat(int timeout)
153{
154	unsigned long freq = clk_get_rate(wdt_clock);
 
155	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
165	DBG("%s: count=%d, timeout=%d, freq=%lu\n",
166	    __func__, count, timeout, freq);
167
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) {
180			dev_err(wdt_dev, "timeout %d too big\n", timeout);
181			return -EINVAL;
182		}
183	}
184
185	tmr_margin = timeout;
186
187	DBG("%s: timeout=%d, divisor=%d, count=%d (%08x)\n",
188	    __func__, timeout, divisor, count, count/divisor);
189
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{
210	if (test_and_set_bit(0, &open_lock))
211		return -EBUSY;
212
213	if (nowayout)
214		__module_get(THIS_MODULE);
215
216	expect_close = 0;
 
 
 
 
 
 
 
217
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.
227	 *	Lock it in if it's a module and we set nowayout
228	 */
229
230	if (expect_close == 42)
231		s3c2410wdt_stop();
232	else {
233		dev_err(wdt_dev, "Unexpected close, not stopping watchdog\n");
234		s3c2410wdt_keepalive();
235	}
236	expect_close = 0;
237	clear_bit(0, &open_lock);
238	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	 */
247	if (len) {
248		if (!nowayout) {
249			size_t i;
250
251			/* In case it was set long ago */
252			expect_close = 0;
253
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')
260					expect_close = 42;
261			}
262		}
263		s3c2410wdt_keepalive();
264	}
265	return len;
266}
267
268#define OPTIONS (WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE)
269
270static const struct watchdog_info s3c2410_wdt_ident = {
271	.options          =     OPTIONS,
272	.firmware_version =	0,
273	.identity         =	"S3C2410 Watchdog",
274};
275
 
 
 
 
 
 
 
 
276
277static long s3c2410wdt_ioctl(struct file *file,	unsigned int cmd,
278							unsigned long arg)
279{
280	void __user *argp = (void __user *)arg;
281	int __user *p = argp;
282	int new_margin;
283
284	switch (cmd) {
285	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);
303	default:
304		return -ENOTTY;
305	}
306}
307
308/* kernel interface */
309
310static const struct file_operations s3c2410wdt_fops = {
311	.owner		= THIS_MODULE,
312	.llseek		= no_llseek,
313	.write		= s3c2410wdt_write,
314	.unlocked_ioctl	= s3c2410wdt_ioctl,
315	.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
325/* interrupt handler code */
326
327static irqreturn_t s3c2410wdt_irq(int irqno, void *param)
328{
329	dev_info(wdt_dev, "watchdog timer expired (irq)\n");
 
 
 
 
 
 
 
330
331	s3c2410wdt_keepalive();
332	return IRQ_HANDLED;
333}
334
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
401/* device interface */
 
 
 
 
 
 
 
 
 
 
 
 
402
403static int __devinit s3c2410wdt_probe(struct platform_device *pdev)
404{
405	struct device *dev;
 
 
 
406	unsigned int wtcon;
407	int started = 0;
408	int ret;
409	int size;
410
411	DBG("%s: probe=%p\n", __func__, pdev);
412
413	dev = &pdev->dev;
414	wdt_dev = &pdev->dev;
415
416	/* get the memory region for the watchdog timer */
417
418	wdt_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
419	if (wdt_mem == NULL) {
420		dev_err(dev, "no memory resource specified\n");
421		return -ENOENT;
422	}
423
424	size = resource_size(wdt_mem);
425	if (!request_mem_region(wdt_mem->start, size, pdev->name)) {
426		dev_err(dev, "failed to get memory region\n");
427		return -EBUSY;
428	}
429
430	wdt_base = ioremap(wdt_mem->start, size);
431	if (wdt_base == NULL) {
432		dev_err(dev, "failed to ioremap() region\n");
433		ret = -EINVAL;
434		goto err_req;
 
 
 
 
 
 
 
 
 
 
 
435	}
436
437	DBG("probe: mapped wdt_base=%p\n", wdt_base);
438
439	wdt_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
440	if (wdt_irq == NULL) {
441		dev_err(dev, "no irq resource specified\n");
442		ret = -ENOENT;
443		goto err_map;
444	}
445
446	ret = request_irq(wdt_irq->start, s3c2410wdt_irq, 0, pdev->name, pdev);
447	if (ret != 0) {
448		dev_err(dev, "failed to install irq (%d)\n", ret);
449		goto err_map;
 
 
450	}
451
452	wdt_clock = clk_get(&pdev->dev, "watchdog");
453	if (IS_ERR(wdt_clock)) {
 
 
454		dev_err(dev, "failed to find watchdog clock source\n");
455		ret = PTR_ERR(wdt_clock);
456		goto err_irq;
 
 
 
 
 
 
457	}
458
459	clk_enable(wdt_clock);
 
460
461	if (s3c2410wdt_cpufreq_register() < 0) {
462		printk(KERN_ERR PFX "failed to register cpufreq\n");
 
463		goto err_clk;
464	}
465
 
 
466	/* 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)) {
470		started = s3c2410wdt_set_heartbeat(
 
 
 
471					CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
472
473		if (started == 0)
474			dev_info(dev,
475			   "tmr_margin value out of range, default %d used\n",
476			       CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
477		else
478			dev_info(dev, "default timer value is out of range, "
479							"cannot start\n");
480	}
481
482	ret = misc_register(&s3c2410wdt_miscdev);
 
 
 
 
 
 
 
 
 
 
 
 
 
483	if (ret) {
484		dev_err(dev, "cannot register miscdev on minor=%d (%d)\n",
485			WATCHDOG_MINOR, ret);
486		goto err_cpufreq;
487	}
488
 
 
 
 
489	if (tmr_atboot && started == 0) {
490		dev_info(dev, "starting watchdog timer\n");
491		s3c2410wdt_start();
492	} 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();
498	}
499
 
 
500	/* print out a statement of readiness */
501
502	wtcon = readl(wdt_base + S3C2410_WTCON);
503
504	dev_info(dev, "watchdog %sactive, reset %sabled, irq %sabled\n",
505		 (wtcon & S3C2410_WTCON_ENABLE) ?  "" : "in",
506		 (wtcon & S3C2410_WTCON_RSTEN) ? "" : "dis",
507		 (wtcon & S3C2410_WTCON_INTEN) ? "" : "en");
508
509	return 0;
510
 
 
 
511 err_cpufreq:
512	s3c2410wdt_cpufreq_deregister();
513
514 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:
525	release_mem_region(wdt_mem->start, size);
526	wdt_mem = NULL;
527
 
528	return ret;
529}
530
531static int __devexit s3c2410wdt_remove(struct platform_device *dev)
532{
533	misc_deregister(&s3c2410wdt_miscdev);
 
534
535	s3c2410wdt_cpufreq_deregister();
 
 
536
537	clk_disable(wdt_clock);
538	clk_put(wdt_clock);
539	wdt_clock = NULL;
540
541	free_irq(wdt_irq->start, dev);
542	wdt_irq = NULL;
543
544	iounmap(wdt_base);
545
546	release_mem_region(wdt_mem->start, resource_size(wdt_mem));
547	wdt_mem = NULL;
548	return 0;
549}
550
551static void s3c2410wdt_shutdown(struct platform_device *dev)
552{
553	s3c2410wdt_stop();
554}
555
556#ifdef CONFIG_PM
 
 
 
557
558static unsigned long wtcon_save;
559static unsigned long wtdat_save;
560
561static int s3c2410wdt_suspend(struct platform_device *dev, pm_message_t state)
562{
 
 
 
563	/* Save watchdog state, and turn it off. */
564	wtcon_save = readl(wdt_base + S3C2410_WTCON);
565	wtdat_save = readl(wdt_base + S3C2410_WTDAT);
 
 
 
 
566
567	/* Note that WTCNT doesn't need to be saved. */
568	s3c2410wdt_stop();
569
570	return 0;
571}
572
573static int s3c2410wdt_resume(struct platform_device *dev)
574{
575	/* Restore watchdog state. */
 
576
577	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);
 
 
 
 
 
580
581	printk(KERN_INFO PFX "watchdog %sabled\n",
582	       (wtcon_save & S3C2410_WTCON_ENABLE) ? "en" : "dis");
583
584	return 0;
585}
586
587#else
588#define s3c2410wdt_suspend NULL
589#define s3c2410wdt_resume  NULL
590#endif /* CONFIG_PM */
591
592#ifdef CONFIG_OF
593static const struct of_device_id s3c2410_wdt_match[] = {
594	{ .compatible = "samsung,s3c2410-wdt" },
595	{},
596};
597MODULE_DEVICE_TABLE(of, s3c2410_wdt_match);
598#else
599#define s3c2410_wdt_match NULL
600#endif
601
 
 
 
602static struct platform_driver s3c2410wdt_driver = {
603	.probe		= s3c2410wdt_probe,
604	.remove		= __devexit_p(s3c2410wdt_remove),
605	.shutdown	= s3c2410wdt_shutdown,
606	.suspend	= s3c2410wdt_suspend,
607	.resume		= s3c2410wdt_resume,
608	.driver		= {
609		.owner	= THIS_MODULE,
610		.name	= "s3c2410-wdt",
611		.of_match_table	= s3c2410_wdt_match,
 
612	},
613};
614
615
616static char banner[] __initdata =
617	KERN_INFO "S3C2410 Watchdog Timer, (c) 2004 Simtec Electronics\n";
618
619static int __init watchdog_init(void)
620{
621	printk(banner);
622	return platform_driver_register(&s3c2410wdt_driver);
623}
624
625static void __exit watchdog_exit(void)
626{
627	platform_driver_unregister(&s3c2410wdt_driver);
628}
629
630module_init(watchdog_init);
631module_exit(watchdog_exit);
632
633MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>, "
634	      "Dimitry Andric <dimitry.andric@tomtom.com>");
635MODULE_DESCRIPTION("S3C2410 Watchdog Device Driver");
636MODULE_LICENSE("GPL");
637MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
638MODULE_ALIAS("platform:s3c2410-wdt");
v4.10.11
  1/* 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,
  9 *     (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>
 10 *
 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
 24*/
 25
 26#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 27
 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/platform_device.h>
 34#include <linux/interrupt.h>
 35#include <linux/clk.h>
 36#include <linux/uaccess.h>
 37#include <linux/io.h>
 38#include <linux/cpufreq.h>
 39#include <linux/slab.h>
 40#include <linux/err.h>
 41#include <linux/of.h>
 42#include <linux/mfd/syscon.h>
 43#include <linux/regmap.h>
 44#include <linux/delay.h>
 45
 46#define S3C2410_WTCON		0x00
 47#define S3C2410_WTDAT		0x04
 48#define S3C2410_WTCNT		0x08
 49#define S3C2410_WTCLRINT	0x0c
 50
 51#define S3C2410_WTCNT_MAXCNT	0xffff
 52
 53#define S3C2410_WTCON_RSTEN	(1 << 0)
 54#define S3C2410_WTCON_INTEN	(1 << 2)
 55#define S3C2410_WTCON_ENABLE	(1 << 5)
 56
 57#define S3C2410_WTCON_DIV16	(0 << 3)
 58#define S3C2410_WTCON_DIV32	(1 << 3)
 59#define S3C2410_WTCON_DIV64	(2 << 3)
 60#define S3C2410_WTCON_DIV128	(3 << 3)
 61
 62#define S3C2410_WTCON_MAXDIV	0x80
 63
 64#define S3C2410_WTCON_PRESCALE(x)	((x) << 8)
 65#define S3C2410_WTCON_PRESCALE_MASK	(0xff << 8)
 66#define S3C2410_WTCON_PRESCALE_MAX	0xff
 67
 68#define CONFIG_S3C2410_WATCHDOG_ATBOOT		(0)
 69#define CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME	(15)
 70
 71#define EXYNOS5_RST_STAT_REG_OFFSET		0x0404
 72#define EXYNOS5_WDT_DISABLE_REG_OFFSET		0x0408
 73#define EXYNOS5_WDT_MASK_RESET_REG_OFFSET	0x040c
 74#define QUIRK_HAS_PMU_CONFIG			(1 << 0)
 75#define QUIRK_HAS_RST_STAT			(1 << 1)
 76#define QUIRK_HAS_WTCLRINT_REG			(1 << 2)
 77
 78/* These quirks require that we have a PMU register map */
 79#define QUIRKS_HAVE_PMUREG			(QUIRK_HAS_PMU_CONFIG | \
 80						 QUIRK_HAS_RST_STAT)
 81
 82static bool nowayout	= WATCHDOG_NOWAYOUT;
 83static int tmr_margin;
 84static int tmr_atboot	= CONFIG_S3C2410_WATCHDOG_ATBOOT;
 85static int soft_noboot;
 86static int debug;
 87
 88module_param(tmr_margin,  int, 0);
 89module_param(tmr_atboot,  int, 0);
 90module_param(nowayout,   bool, 0);
 91module_param(soft_noboot, int, 0);
 92module_param(debug,	  int, 0);
 93
 94MODULE_PARM_DESC(tmr_margin, "Watchdog tmr_margin in seconds. (default="
 95		__MODULE_STRING(CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME) ")");
 96MODULE_PARM_DESC(tmr_atboot,
 97		"Watchdog is started at boot time if set to 1, default="
 98			__MODULE_STRING(CONFIG_S3C2410_WATCHDOG_ATBOOT));
 99MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
100			__MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
101MODULE_PARM_DESC(soft_noboot, "Watchdog action, set to 1 to ignore reboots, "
102			"0 to reboot (default 0)");
103MODULE_PARM_DESC(debug, "Watchdog debug, set to >1 for debug (default 0)");
104
105/**
106 * struct s3c2410_wdt_variant - Per-variant config data
107 *
108 * @disable_reg: Offset in pmureg for the register that disables the watchdog
109 * timer reset functionality.
110 * @mask_reset_reg: Offset in pmureg for the register that masks the watchdog
111 * timer reset functionality.
112 * @mask_bit: Bit number for the watchdog timer in the disable register and the
113 * mask reset register.
114 * @rst_stat_reg: Offset in pmureg for the register that has the reset status.
115 * @rst_stat_bit: Bit number in the rst_stat register indicating a watchdog
116 * reset.
117 * @quirks: A bitfield of quirks.
118 */
119
120struct s3c2410_wdt_variant {
121	int disable_reg;
122	int mask_reset_reg;
123	int mask_bit;
124	int rst_stat_reg;
125	int rst_stat_bit;
126	u32 quirks;
127};
128
129struct s3c2410_wdt {
130	struct device		*dev;
131	struct clk		*clock;
132	void __iomem		*reg_base;
133	unsigned int		count;
134	spinlock_t		lock;
135	unsigned long		wtcon_save;
136	unsigned long		wtdat_save;
137	struct watchdog_device	wdt_device;
138	struct notifier_block	freq_transition;
139	struct s3c2410_wdt_variant *drv_data;
140	struct regmap *pmureg;
141};
142
143static const struct s3c2410_wdt_variant drv_data_s3c2410 = {
144	.quirks = 0
145};
146
147#ifdef CONFIG_OF
148static const struct s3c2410_wdt_variant drv_data_s3c6410 = {
149	.quirks = QUIRK_HAS_WTCLRINT_REG,
150};
151
152static const struct s3c2410_wdt_variant drv_data_exynos5250  = {
153	.disable_reg = EXYNOS5_WDT_DISABLE_REG_OFFSET,
154	.mask_reset_reg = EXYNOS5_WDT_MASK_RESET_REG_OFFSET,
155	.mask_bit = 20,
156	.rst_stat_reg = EXYNOS5_RST_STAT_REG_OFFSET,
157	.rst_stat_bit = 20,
158	.quirks = QUIRK_HAS_PMU_CONFIG | QUIRK_HAS_RST_STAT \
159		  | QUIRK_HAS_WTCLRINT_REG,
160};
161
162static const struct s3c2410_wdt_variant drv_data_exynos5420 = {
163	.disable_reg = EXYNOS5_WDT_DISABLE_REG_OFFSET,
164	.mask_reset_reg = EXYNOS5_WDT_MASK_RESET_REG_OFFSET,
165	.mask_bit = 0,
166	.rst_stat_reg = EXYNOS5_RST_STAT_REG_OFFSET,
167	.rst_stat_bit = 9,
168	.quirks = QUIRK_HAS_PMU_CONFIG | QUIRK_HAS_RST_STAT \
169		  | QUIRK_HAS_WTCLRINT_REG,
170};
171
172static const struct s3c2410_wdt_variant drv_data_exynos7 = {
173	.disable_reg = EXYNOS5_WDT_DISABLE_REG_OFFSET,
174	.mask_reset_reg = EXYNOS5_WDT_MASK_RESET_REG_OFFSET,
175	.mask_bit = 23,
176	.rst_stat_reg = EXYNOS5_RST_STAT_REG_OFFSET,
177	.rst_stat_bit = 23,	/* A57 WDTRESET */
178	.quirks = QUIRK_HAS_PMU_CONFIG | QUIRK_HAS_RST_STAT \
179		  | QUIRK_HAS_WTCLRINT_REG,
180};
181
182static const struct of_device_id s3c2410_wdt_match[] = {
183	{ .compatible = "samsung,s3c2410-wdt",
184	  .data = &drv_data_s3c2410 },
185	{ .compatible = "samsung,s3c6410-wdt",
186	  .data = &drv_data_s3c6410 },
187	{ .compatible = "samsung,exynos5250-wdt",
188	  .data = &drv_data_exynos5250 },
189	{ .compatible = "samsung,exynos5420-wdt",
190	  .data = &drv_data_exynos5420 },
191	{ .compatible = "samsung,exynos7-wdt",
192	  .data = &drv_data_exynos7 },
193	{},
194};
195MODULE_DEVICE_TABLE(of, s3c2410_wdt_match);
196#endif
197
198static const struct platform_device_id s3c2410_wdt_ids[] = {
199	{
200		.name = "s3c2410-wdt",
201		.driver_data = (unsigned long)&drv_data_s3c2410,
202	},
203	{}
204};
205MODULE_DEVICE_TABLE(platform, s3c2410_wdt_ids);
206
207/* watchdog control routines */
208
209#define DBG(fmt, ...)					\
210do {							\
211	if (debug)					\
212		pr_info(fmt, ##__VA_ARGS__);		\
213} while (0)
214
215/* functions */
216
217static inline unsigned int s3c2410wdt_max_timeout(struct clk *clock)
218{
219	unsigned long freq = clk_get_rate(clock);
220
221	return S3C2410_WTCNT_MAXCNT / (freq / (S3C2410_WTCON_PRESCALE_MAX + 1)
222				       / S3C2410_WTCON_MAXDIV);
223}
224
225static inline struct s3c2410_wdt *freq_to_wdt(struct notifier_block *nb)
226{
227	return container_of(nb, struct s3c2410_wdt, freq_transition);
228}
229
230static int s3c2410wdt_mask_and_disable_reset(struct s3c2410_wdt *wdt, bool mask)
231{
232	int ret;
233	u32 mask_val = 1 << wdt->drv_data->mask_bit;
234	u32 val = 0;
235
236	/* No need to do anything if no PMU CONFIG needed */
237	if (!(wdt->drv_data->quirks & QUIRK_HAS_PMU_CONFIG))
238		return 0;
239
240	if (mask)
241		val = mask_val;
242
243	ret = regmap_update_bits(wdt->pmureg,
244			wdt->drv_data->disable_reg,
245			mask_val, val);
246	if (ret < 0)
247		goto error;
248
249	ret = regmap_update_bits(wdt->pmureg,
250			wdt->drv_data->mask_reset_reg,
251			mask_val, val);
252 error:
253	if (ret < 0)
254		dev_err(wdt->dev, "failed to update reg(%d)\n", ret);
255
256	return ret;
257}
258
259static int s3c2410wdt_keepalive(struct watchdog_device *wdd)
260{
261	struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
262
263	spin_lock(&wdt->lock);
264	writel(wdt->count, wdt->reg_base + S3C2410_WTCNT);
265	spin_unlock(&wdt->lock);
266
267	return 0;
268}
269
270static void __s3c2410wdt_stop(struct s3c2410_wdt *wdt)
271{
272	unsigned long wtcon;
273
274	wtcon = readl(wdt->reg_base + S3C2410_WTCON);
275	wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN);
276	writel(wtcon, wdt->reg_base + S3C2410_WTCON);
277}
278
279static int s3c2410wdt_stop(struct watchdog_device *wdd)
280{
281	struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
282
283	spin_lock(&wdt->lock);
284	__s3c2410wdt_stop(wdt);
285	spin_unlock(&wdt->lock);
286
287	return 0;
288}
289
290static int s3c2410wdt_start(struct watchdog_device *wdd)
291{
292	unsigned long wtcon;
293	struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
294
295	spin_lock(&wdt->lock);
296
297	__s3c2410wdt_stop(wdt);
298
299	wtcon = readl(wdt->reg_base + S3C2410_WTCON);
300	wtcon |= S3C2410_WTCON_ENABLE | S3C2410_WTCON_DIV128;
301
302	if (soft_noboot) {
303		wtcon |= S3C2410_WTCON_INTEN;
304		wtcon &= ~S3C2410_WTCON_RSTEN;
305	} else {
306		wtcon &= ~S3C2410_WTCON_INTEN;
307		wtcon |= S3C2410_WTCON_RSTEN;
308	}
309
310	DBG("%s: count=0x%08x, wtcon=%08lx\n",
311	    __func__, wdt->count, wtcon);
312
313	writel(wdt->count, wdt->reg_base + S3C2410_WTDAT);
314	writel(wdt->count, wdt->reg_base + S3C2410_WTCNT);
315	writel(wtcon, wdt->reg_base + S3C2410_WTCON);
316	spin_unlock(&wdt->lock);
317
318	return 0;
 
 
 
319}
320
321static inline int s3c2410wdt_is_running(struct s3c2410_wdt *wdt)
322{
323	return readl(wdt->reg_base + S3C2410_WTCON) & S3C2410_WTCON_ENABLE;
324}
325
326static int s3c2410wdt_set_heartbeat(struct watchdog_device *wdd, unsigned timeout)
327{
328	struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
329	unsigned long freq = clk_get_rate(wdt->clock);
330	unsigned int count;
331	unsigned int divisor = 1;
332	unsigned long wtcon;
333
334	if (timeout < 1)
335		return -EINVAL;
336
337	freq = DIV_ROUND_UP(freq, 128);
338	count = timeout * freq;
339
340	DBG("%s: count=%d, timeout=%d, freq=%lu\n",
341	    __func__, count, timeout, freq);
342
343	/* if the count is bigger than the watchdog register,
344	   then work out what we need to do (and if) we can
345	   actually make this value
346	*/
347
348	if (count >= 0x10000) {
349		divisor = DIV_ROUND_UP(count, 0xffff);
 
 
 
350
351		if (divisor > 0x100) {
352			dev_err(wdt->dev, "timeout %d too big\n", timeout);
353			return -EINVAL;
354		}
355	}
356
 
 
357	DBG("%s: timeout=%d, divisor=%d, count=%d (%08x)\n",
358	    __func__, timeout, divisor, count, DIV_ROUND_UP(count, divisor));
359
360	count = DIV_ROUND_UP(count, divisor);
361	wdt->count = count;
362
363	/* update the pre-scaler */
364	wtcon = readl(wdt->reg_base + S3C2410_WTCON);
365	wtcon &= ~S3C2410_WTCON_PRESCALE_MASK;
366	wtcon |= S3C2410_WTCON_PRESCALE(divisor-1);
367
368	writel(count, wdt->reg_base + S3C2410_WTDAT);
369	writel(wtcon, wdt->reg_base + S3C2410_WTCON);
370
371	wdd->timeout = (count * divisor) / freq;
372
373	return 0;
374}
375
376static int s3c2410wdt_restart(struct watchdog_device *wdd, unsigned long action,
377			      void *data)
 
 
 
378{
379	struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
380	void __iomem *wdt_base = wdt->reg_base;
381
382	/* disable watchdog, to be safe  */
383	writel(0, wdt_base + S3C2410_WTCON);
384
385	/* put initial values into count and data */
386	writel(0x80, wdt_base + S3C2410_WTCNT);
387	writel(0x80, wdt_base + S3C2410_WTDAT);
388
389	/* set the watchdog to go and reset... */
390	writel(S3C2410_WTCON_ENABLE | S3C2410_WTCON_DIV16 |
391		S3C2410_WTCON_RSTEN | S3C2410_WTCON_PRESCALE(0x20),
392		wdt_base + S3C2410_WTCON);
393
394	/* wait for reset to assert... */
395	mdelay(500);
 
 
396
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
397	return 0;
398}
399
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
400#define OPTIONS (WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE)
401
402static const struct watchdog_info s3c2410_wdt_ident = {
403	.options          =     OPTIONS,
404	.firmware_version =	0,
405	.identity         =	"S3C2410 Watchdog",
406};
407
408static struct watchdog_ops s3c2410wdt_ops = {
409	.owner = THIS_MODULE,
410	.start = s3c2410wdt_start,
411	.stop = s3c2410wdt_stop,
412	.ping = s3c2410wdt_keepalive,
413	.set_timeout = s3c2410wdt_set_heartbeat,
414	.restart = s3c2410wdt_restart,
415};
416
417static struct watchdog_device s3c2410_wdd = {
418	.info = &s3c2410_wdt_ident,
419	.ops = &s3c2410wdt_ops,
420	.timeout = CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
421};
422
423/* interrupt handler code */
424
425static irqreturn_t s3c2410wdt_irq(int irqno, void *param)
426{
427	struct s3c2410_wdt *wdt = platform_get_drvdata(param);
428
429	dev_info(wdt->dev, "watchdog timer expired (irq)\n");
430
431	s3c2410wdt_keepalive(&wdt->wdt_device);
432
433	if (wdt->drv_data->quirks & QUIRK_HAS_WTCLRINT_REG)
434		writel(0x1, wdt->reg_base + S3C2410_WTCLRINT);
435
 
436	return IRQ_HANDLED;
437}
438
439#ifdef CONFIG_ARM_S3C24XX_CPUFREQ
 
440
441static int s3c2410wdt_cpufreq_transition(struct notifier_block *nb,
442					  unsigned long val, void *data)
443{
444	int ret;
445	struct s3c2410_wdt *wdt = freq_to_wdt(nb);
446
447	if (!s3c2410wdt_is_running(wdt))
448		goto done;
449
450	if (val == CPUFREQ_PRECHANGE) {
451		/* To ensure that over the change we don't cause the
452		 * watchdog to trigger, we perform an keep-alive if
453		 * the watchdog is running.
454		 */
455
456		s3c2410wdt_keepalive(&wdt->wdt_device);
457	} else if (val == CPUFREQ_POSTCHANGE) {
458		s3c2410wdt_stop(&wdt->wdt_device);
459
460		ret = s3c2410wdt_set_heartbeat(&wdt->wdt_device,
461						wdt->wdt_device.timeout);
462
463		if (ret >= 0)
464			s3c2410wdt_start(&wdt->wdt_device);
465		else
466			goto err;
467	}
468
469done:
470	return 0;
471
472 err:
473	dev_err(wdt->dev, "cannot set new value for timeout %d\n",
474				wdt->wdt_device.timeout);
475	return ret;
476}
477
478static inline int s3c2410wdt_cpufreq_register(struct s3c2410_wdt *wdt)
 
 
 
 
479{
480	wdt->freq_transition.notifier_call = s3c2410wdt_cpufreq_transition;
481
482	return cpufreq_register_notifier(&wdt->freq_transition,
483					 CPUFREQ_TRANSITION_NOTIFIER);
484}
485
486static inline void s3c2410wdt_cpufreq_deregister(struct s3c2410_wdt *wdt)
487{
488	wdt->freq_transition.notifier_call = s3c2410wdt_cpufreq_transition;
489
490	cpufreq_unregister_notifier(&wdt->freq_transition,
491				    CPUFREQ_TRANSITION_NOTIFIER);
492}
493
494#else
495
496static inline int s3c2410wdt_cpufreq_register(struct s3c2410_wdt *wdt)
497{
498	return 0;
499}
500
501static inline void s3c2410wdt_cpufreq_deregister(struct s3c2410_wdt *wdt)
502{
503}
504#endif
505
506static inline unsigned int s3c2410wdt_get_bootstatus(struct s3c2410_wdt *wdt)
507{
508	unsigned int rst_stat;
509	int ret;
510
511	if (!(wdt->drv_data->quirks & QUIRK_HAS_RST_STAT))
512		return 0;
513
514	ret = regmap_read(wdt->pmureg, wdt->drv_data->rst_stat_reg, &rst_stat);
515	if (ret)
516		dev_warn(wdt->dev, "Couldn't get RST_STAT register\n");
517	else if (rst_stat & BIT(wdt->drv_data->rst_stat_bit))
518		return WDIOF_CARDRESET;
519
520	return 0;
521}
522
523/* s3c2410_get_wdt_driver_data */
524static inline struct s3c2410_wdt_variant *
525get_wdt_drv_data(struct platform_device *pdev)
526{
527	if (pdev->dev.of_node) {
528		const struct of_device_id *match;
529		match = of_match_node(s3c2410_wdt_match, pdev->dev.of_node);
530		return (struct s3c2410_wdt_variant *)match->data;
531	} else {
532		return (struct s3c2410_wdt_variant *)
533			platform_get_device_id(pdev)->driver_data;
534	}
535}
536
537static int s3c2410wdt_probe(struct platform_device *pdev)
538{
539	struct device *dev;
540	struct s3c2410_wdt *wdt;
541	struct resource *wdt_mem;
542	struct resource *wdt_irq;
543	unsigned int wtcon;
544	int started = 0;
545	int ret;
 
546
547	DBG("%s: probe=%p\n", __func__, pdev);
548
549	dev = &pdev->dev;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
550
551	wdt = devm_kzalloc(dev, sizeof(*wdt), GFP_KERNEL);
552	if (!wdt)
553		return -ENOMEM;
554
555	wdt->dev = &pdev->dev;
556	spin_lock_init(&wdt->lock);
557	wdt->wdt_device = s3c2410_wdd;
558
559	wdt->drv_data = get_wdt_drv_data(pdev);
560	if (wdt->drv_data->quirks & QUIRKS_HAVE_PMUREG) {
561		wdt->pmureg = syscon_regmap_lookup_by_phandle(dev->of_node,
562						"samsung,syscon-phandle");
563		if (IS_ERR(wdt->pmureg)) {
564			dev_err(dev, "syscon regmap lookup failed.\n");
565			return PTR_ERR(wdt->pmureg);
566		}
567	}
568
 
 
569	wdt_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
570	if (wdt_irq == NULL) {
571		dev_err(dev, "no irq resource specified\n");
572		ret = -ENOENT;
573		goto err;
574	}
575
576	/* get the memory region for the watchdog timer */
577	wdt_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
578	wdt->reg_base = devm_ioremap_resource(dev, wdt_mem);
579	if (IS_ERR(wdt->reg_base)) {
580		ret = PTR_ERR(wdt->reg_base);
581		goto err;
582	}
583
584	DBG("probe: mapped reg_base=%p\n", wdt->reg_base);
585
586	wdt->clock = devm_clk_get(dev, "watchdog");
587	if (IS_ERR(wdt->clock)) {
588		dev_err(dev, "failed to find watchdog clock source\n");
589		ret = PTR_ERR(wdt->clock);
590		goto err;
591	}
592
593	ret = clk_prepare_enable(wdt->clock);
594	if (ret < 0) {
595		dev_err(dev, "failed to enable clock\n");
596		return ret;
597	}
598
599	wdt->wdt_device.min_timeout = 1;
600	wdt->wdt_device.max_timeout = s3c2410wdt_max_timeout(wdt->clock);
601
602	ret = s3c2410wdt_cpufreq_register(wdt);
603	if (ret < 0) {
604		dev_err(dev, "failed to register cpufreq\n");
605		goto err_clk;
606	}
607
608	watchdog_set_drvdata(&wdt->wdt_device, wdt);
609
610	/* see if we can actually set the requested timer margin, and if
611	 * not, try the default value */
612
613	watchdog_init_timeout(&wdt->wdt_device, tmr_margin, &pdev->dev);
614	ret = s3c2410wdt_set_heartbeat(&wdt->wdt_device,
615					wdt->wdt_device.timeout);
616	if (ret) {
617		started = s3c2410wdt_set_heartbeat(&wdt->wdt_device,
618					CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
619
620		if (started == 0)
621			dev_info(dev,
622			   "tmr_margin value out of range, default %d used\n",
623			       CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
624		else
625			dev_info(dev, "default timer value is out of range, "
626							"cannot start\n");
627	}
628
629	ret = devm_request_irq(dev, wdt_irq->start, s3c2410wdt_irq, 0,
630				pdev->name, pdev);
631	if (ret != 0) {
632		dev_err(dev, "failed to install irq (%d)\n", ret);
633		goto err_cpufreq;
634	}
635
636	watchdog_set_nowayout(&wdt->wdt_device, nowayout);
637	watchdog_set_restart_priority(&wdt->wdt_device, 128);
638
639	wdt->wdt_device.bootstatus = s3c2410wdt_get_bootstatus(wdt);
640	wdt->wdt_device.parent = &pdev->dev;
641
642	ret = watchdog_register_device(&wdt->wdt_device);
643	if (ret) {
644		dev_err(dev, "cannot register watchdog (%d)\n", ret);
 
645		goto err_cpufreq;
646	}
647
648	ret = s3c2410wdt_mask_and_disable_reset(wdt, false);
649	if (ret < 0)
650		goto err_unregister;
651
652	if (tmr_atboot && started == 0) {
653		dev_info(dev, "starting watchdog timer\n");
654		s3c2410wdt_start(&wdt->wdt_device);
655	} else if (!tmr_atboot) {
656		/* if we're not enabling the watchdog, then ensure it is
657		 * disabled if it has been left running from the bootloader
658		 * or other source */
659
660		s3c2410wdt_stop(&wdt->wdt_device);
661	}
662
663	platform_set_drvdata(pdev, wdt);
664
665	/* print out a statement of readiness */
666
667	wtcon = readl(wdt->reg_base + S3C2410_WTCON);
668
669	dev_info(dev, "watchdog %sactive, reset %sabled, irq %sabled\n",
670		 (wtcon & S3C2410_WTCON_ENABLE) ?  "" : "in",
671		 (wtcon & S3C2410_WTCON_RSTEN) ? "en" : "dis",
672		 (wtcon & S3C2410_WTCON_INTEN) ? "en" : "dis");
673
674	return 0;
675
676 err_unregister:
677	watchdog_unregister_device(&wdt->wdt_device);
678
679 err_cpufreq:
680	s3c2410wdt_cpufreq_deregister(wdt);
681
682 err_clk:
683	clk_disable_unprepare(wdt->clock);
 
 
 
 
 
 
 
 
 
 
 
684
685 err:
686	return ret;
687}
688
689static int s3c2410wdt_remove(struct platform_device *dev)
690{
691	int ret;
692	struct s3c2410_wdt *wdt = platform_get_drvdata(dev);
693
694	ret = s3c2410wdt_mask_and_disable_reset(wdt, true);
695	if (ret < 0)
696		return ret;
697
698	watchdog_unregister_device(&wdt->wdt_device);
 
 
699
700	s3c2410wdt_cpufreq_deregister(wdt);
 
701
702	clk_disable_unprepare(wdt->clock);
703
 
 
704	return 0;
705}
706
707static void s3c2410wdt_shutdown(struct platform_device *dev)
708{
709	struct s3c2410_wdt *wdt = platform_get_drvdata(dev);
 
710
711	s3c2410wdt_mask_and_disable_reset(wdt, true);
712
713	s3c2410wdt_stop(&wdt->wdt_device);
714}
715
716#ifdef CONFIG_PM_SLEEP
 
717
718static int s3c2410wdt_suspend(struct device *dev)
719{
720	int ret;
721	struct s3c2410_wdt *wdt = dev_get_drvdata(dev);
722
723	/* Save watchdog state, and turn it off. */
724	wdt->wtcon_save = readl(wdt->reg_base + S3C2410_WTCON);
725	wdt->wtdat_save = readl(wdt->reg_base + S3C2410_WTDAT);
726
727	ret = s3c2410wdt_mask_and_disable_reset(wdt, true);
728	if (ret < 0)
729		return ret;
730
731	/* Note that WTCNT doesn't need to be saved. */
732	s3c2410wdt_stop(&wdt->wdt_device);
733
734	return 0;
735}
736
737static int s3c2410wdt_resume(struct device *dev)
738{
739	int ret;
740	struct s3c2410_wdt *wdt = dev_get_drvdata(dev);
741
742	/* Restore watchdog state. */
743	writel(wdt->wtdat_save, wdt->reg_base + S3C2410_WTDAT);
744	writel(wdt->wtdat_save, wdt->reg_base + S3C2410_WTCNT);/* Reset count */
745	writel(wdt->wtcon_save, wdt->reg_base + S3C2410_WTCON);
746
747	ret = s3c2410wdt_mask_and_disable_reset(wdt, false);
748	if (ret < 0)
749		return ret;
750
751	dev_info(dev, "watchdog %sabled\n",
752		(wdt->wtcon_save & S3C2410_WTCON_ENABLE) ? "en" : "dis");
753
754	return 0;
755}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
756#endif
757
758static SIMPLE_DEV_PM_OPS(s3c2410wdt_pm_ops, s3c2410wdt_suspend,
759			s3c2410wdt_resume);
760
761static struct platform_driver s3c2410wdt_driver = {
762	.probe		= s3c2410wdt_probe,
763	.remove		= s3c2410wdt_remove,
764	.shutdown	= s3c2410wdt_shutdown,
765	.id_table	= s3c2410_wdt_ids,
 
766	.driver		= {
 
767		.name	= "s3c2410-wdt",
768		.pm	= &s3c2410wdt_pm_ops,
769		.of_match_table	= of_match_ptr(s3c2410_wdt_match),
770	},
771};
772
773module_platform_driver(s3c2410wdt_driver);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
774
775MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>, "
776	      "Dimitry Andric <dimitry.andric@tomtom.com>");
777MODULE_DESCRIPTION("S3C2410 Watchdog Device Driver");
778MODULE_LICENSE("GPL");