2 * IDT Interprise 79RC32434 watchdog driver
4 * Copyright (C) 2006, Ondrej Zajicek <santiago@crfreenet.org>
5 * Copyright (C) 2008, Florian Fainelli <florian@openwrt.org>
8 * SoftDog 0.05: A Software Watchdog Device
10 * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>,
11 * All Rights Reserved.
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version
16 * 2 of the License, or (at your option) any later version.
20 #include <linux/module.h>
21 #include <linux/types.h>
22 #include <linux/kernel.h>
25 #include <linux/miscdevice.h>
26 #include <linux/watchdog.h>
27 #include <linux/reboot.h>
28 #include <linux/smp_lock.h>
29 #include <linux/init.h>
30 #include <linux/platform_device.h>
31 #include <linux/uaccess.h>
33 #include <asm/bootinfo.h>
35 #include <asm/mach-rc32434/integ.h>
43 static struct integ __iomem
*wdt_reg
;
45 static int expect_close
;
47 /* Board internal clock speed in Hz,
48 * the watchdog timer ticks at. */
49 extern unsigned int idt_cpu_freq
;
51 /* translate wtcompare value to seconds and vice versa */
52 #define WTCOMP2SEC(x) (x / idt_cpu_freq)
53 #define SEC2WTCOMP(x) (x * idt_cpu_freq)
55 /* Use a default timeout of 20s. This should be
56 * safe for CPU clock speeds up to 400MHz, as
57 * ((2 ^ 32) - 1) / (400MHz / 2) = 21s. */
58 #define WATCHDOG_TIMEOUT 20
60 static int timeout
= WATCHDOG_TIMEOUT
;
62 static int nowayout
= WATCHDOG_NOWAYOUT
;
63 module_param(nowayout
, int, 0);
64 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started (default="
65 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
67 /* apply or and nand masks to data read from addr and write back */
68 #define SET_BITS(addr, or, nand) \
69 writel((readl(&addr) | or) & ~nand, &addr)
71 static void rc32434_wdt_start(void)
75 /* zero the counter before enabling */
76 writel(0, &wdt_reg
->wtcount
);
78 /* don't generate a non-maskable interrupt,
79 * do a warm reset instead */
80 nand
= 1 << RC32434_ERR_WNE
;
81 or = 1 << RC32434_ERR_WRE
;
83 /* reset the ERRCS timeout bit in case it's set */
84 nand
|= 1 << RC32434_ERR_WTO
;
86 SET_BITS(wdt_reg
->errcs
, or, nand
);
88 /* reset WTC timeout bit and enable WDT */
89 nand
= 1 << RC32434_WTC_TO
;
90 or = 1 << RC32434_WTC_EN
;
92 SET_BITS(wdt_reg
->wtc
, or, nand
);
95 static void rc32434_wdt_stop(void)
98 SET_BITS(wdt_reg
->wtc
, 0, 1 << RC32434_WTC_EN
);
101 static int rc32434_wdt_set(int new_timeout
)
103 int max_to
= WTCOMP2SEC((u32
)-1);
105 if (new_timeout
< 0 || new_timeout
> max_to
) {
106 printk(KERN_ERR KBUILD_MODNAME
107 ": timeout value must be between 0 and %d",
111 timeout
= new_timeout
;
112 writel(SEC2WTCOMP(timeout
), &wdt_reg
->wtcompare
);
117 static void rc32434_wdt_ping(void)
119 writel(0, &wdt_reg
->wtcount
);
122 static int rc32434_wdt_open(struct inode
*inode
, struct file
*file
)
124 if (test_and_set_bit(0, &rc32434_wdt_device
.inuse
))
128 __module_get(THIS_MODULE
);
133 return nonseekable_open(inode
, file
);
136 static int rc32434_wdt_release(struct inode
*inode
, struct file
*file
)
138 if (expect_close
== 42) {
140 printk(KERN_INFO KBUILD_MODNAME
": disabling watchdog timer\n");
141 module_put(THIS_MODULE
);
143 printk(KERN_CRIT KBUILD_MODNAME
144 ": device closed unexpectedly. WDT will not stop !\n");
147 clear_bit(0, &rc32434_wdt_device
.inuse
);
151 static ssize_t
rc32434_wdt_write(struct file
*file
, const char *data
,
152 size_t len
, loff_t
*ppos
)
158 /* In case it was set long ago */
161 for (i
= 0; i
!= len
; i
++) {
163 if (get_user(c
, data
+ i
))
175 static long rc32434_wdt_ioctl(struct file
*file
, unsigned int cmd
,
178 void __user
*argp
= (void __user
*)arg
;
181 static struct watchdog_info ident
= {
182 .options
= WDIOF_SETTIMEOUT
|
183 WDIOF_KEEPALIVEPING
|
185 .identity
= "RC32434_WDT Watchdog",
188 case WDIOC_KEEPALIVE
:
191 case WDIOC_GETSTATUS
:
192 case WDIOC_GETBOOTSTATUS
:
194 if (copy_to_user(argp
, &value
, sizeof(int)))
197 case WDIOC_GETSUPPORT
:
198 if (copy_to_user(argp
, &ident
, sizeof(ident
)))
201 case WDIOC_SETOPTIONS
:
202 if (copy_from_user(&value
, argp
, sizeof(int)))
205 case WDIOS_ENABLECARD
:
208 case WDIOS_DISABLECARD
:
215 case WDIOC_SETTIMEOUT
:
216 if (copy_from_user(&new_timeout
, argp
, sizeof(int)))
218 if (rc32434_wdt_set(new_timeout
))
221 case WDIOC_GETTIMEOUT
:
222 return copy_to_user(argp
, &timeout
, sizeof(int));
230 static struct file_operations rc32434_wdt_fops
= {
231 .owner
= THIS_MODULE
,
233 .write
= rc32434_wdt_write
,
234 .unlocked_ioctl
= rc32434_wdt_ioctl
,
235 .open
= rc32434_wdt_open
,
236 .release
= rc32434_wdt_release
,
239 static struct miscdevice rc32434_wdt_miscdev
= {
240 .minor
= WATCHDOG_MINOR
,
242 .fops
= &rc32434_wdt_fops
,
245 static char banner
[] __devinitdata
= KERN_INFO KBUILD_MODNAME
246 ": Watchdog Timer version " VERSION
", timer margin: %d sec\n";
248 static int __devinit
rc32434_wdt_probe(struct platform_device
*pdev
)
253 r
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "rb532_wdt_res");
255 printk(KERN_ERR KBUILD_MODNAME
256 "failed to retrieve resources\n");
260 wdt_reg
= ioremap_nocache(r
->start
, r
->end
- r
->start
);
262 printk(KERN_ERR KBUILD_MODNAME
263 "failed to remap I/O resources\n");
267 ret
= misc_register(&rc32434_wdt_miscdev
);
269 printk(KERN_ERR KBUILD_MODNAME
270 "failed to register watchdog device\n");
274 printk(banner
, timeout
);
283 static int __devexit
rc32434_wdt_remove(struct platform_device
*pdev
)
285 misc_deregister(&rc32434_wdt_miscdev
);
290 static struct platform_driver rc32434_wdt
= {
291 .probe
= rc32434_wdt_probe
,
292 .remove
= __devexit_p(rc32434_wdt_remove
),
294 .name
= "rc32434_wdt",
298 static int __init
rc32434_wdt_init(void)
300 return platform_driver_register(&rc32434_wdt
);
303 static void __exit
rc32434_wdt_exit(void)
305 platform_driver_unregister(&rc32434_wdt
);
308 module_init(rc32434_wdt_init
);
309 module_exit(rc32434_wdt_exit
);
311 MODULE_AUTHOR("Ondrej Zajicek <santiago@crfreenet.org>,"
312 "Florian Fainelli <florian@openwrt.org>");
313 MODULE_DESCRIPTION("Driver for the IDT RC32434 SoC watchdog");
314 MODULE_LICENSE("GPL");
315 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);