2 * RDC321x watchdog driver
4 * Copyright (C) 2007 Florian Fainelli <florian@openwrt.org>
6 * This driver is highly inspired from the cpu5_wdt driver
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include <linux/module.h>
25 #include <linux/moduleparam.h>
26 #include <linux/types.h>
27 #include <linux/errno.h>
28 #include <linux/miscdevice.h>
30 #include <linux/init.h>
31 #include <linux/ioport.h>
32 #include <linux/timer.h>
33 #include <linux/completion.h>
34 #include <linux/jiffies.h>
35 #include <linux/platform_device.h>
36 #include <linux/watchdog.h>
38 #include <linux/uaccess.h>
40 #include <asm/mach-rdc321x/rdc321x_defs.h>
42 #define RDC_WDT_MASK 0x80000000 /* Mask */
43 #define RDC_WDT_EN 0x00800000 /* Enable bit */
44 #define RDC_WDT_WTI 0x00200000 /* Generate CPU reset/NMI/WDT on timeout */
45 #define RDC_WDT_RST 0x00100000 /* Reset bit */
46 #define RDC_WDT_WIF 0x00040000 /* WDT IRQ Flag */
47 #define RDC_WDT_IRT 0x00000100 /* IRQ Routing table */
48 #define RDC_WDT_CNT 0x00000001 /* WDT count */
50 #define RDC_CLS_TMR 0x80003844 /* Clear timer */
52 #define RDC_WDT_INTERVAL (HZ/10+1)
54 int nowayout
= WATCHDOG_NOWAYOUT
;
55 module_param(nowayout
, int, 0);
56 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started (default=" __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
58 static int ticks
= 1000;
60 /* some device data */
63 struct completion stop
;
65 struct timer_list timer
;
71 /* generic helper functions */
73 static void rdc321x_wdt_trigger(unsigned long unused
)
75 if (rdc321x_wdt_device
.running
)
78 /* keep watchdog alive */
79 outl(RDC_WDT_EN
|inl(RDC3210_CFGREG_DATA
), RDC3210_CFGREG_DATA
);
82 if (rdc321x_wdt_device
.queue
&& ticks
)
83 mod_timer(&rdc321x_wdt_device
.timer
,
84 jiffies
+ RDC_WDT_INTERVAL
);
86 /* ticks doesn't matter anyway */
87 complete(&rdc321x_wdt_device
.stop
);
92 static void rdc321x_wdt_reset(void)
94 ticks
= rdc321x_wdt_device
.default_ticks
;
97 static void rdc321x_wdt_start(void)
99 if (!rdc321x_wdt_device
.queue
) {
100 rdc321x_wdt_device
.queue
= 1;
102 /* Clear the timer */
103 outl(RDC_CLS_TMR
, RDC3210_CFGREG_ADDR
);
105 /* Enable watchdog and set the timeout to 81.92 us */
106 outl(RDC_WDT_EN
|RDC_WDT_CNT
, RDC3210_CFGREG_DATA
);
108 mod_timer(&rdc321x_wdt_device
.timer
,
109 jiffies
+ RDC_WDT_INTERVAL
);
112 /* if process dies, counter is not decremented */
113 rdc321x_wdt_device
.running
++;
116 static int rdc321x_wdt_stop(void)
118 if (rdc321x_wdt_device
.running
)
119 rdc321x_wdt_device
.running
= 0;
121 ticks
= rdc321x_wdt_device
.default_ticks
;
126 /* filesystem operations */
128 static int rdc321x_wdt_open(struct inode
*inode
, struct file
*file
)
130 if (test_and_set_bit(0, &rdc321x_wdt_device
.inuse
))
133 return nonseekable_open(inode
, file
);
136 static int rdc321x_wdt_release(struct inode
*inode
, struct file
*file
)
138 clear_bit(0, &rdc321x_wdt_device
.inuse
);
142 static int rdc321x_wdt_ioctl(struct inode
*inode
, struct file
*file
,
143 unsigned int cmd
, unsigned long arg
)
145 void __user
*argp
= (void __user
*)arg
;
147 static struct watchdog_info ident
= {
148 .options
= WDIOF_CARDRESET
,
149 .identity
= "RDC321x WDT",
153 case WDIOC_KEEPALIVE
:
156 case WDIOC_GETSTATUS
:
157 /* Read the value from the DATA register */
158 value
= inl(RDC3210_CFGREG_DATA
);
159 if (copy_to_user(argp
, &value
, sizeof(int)))
162 case WDIOC_GETSUPPORT
:
163 if (copy_to_user(argp
, &ident
, sizeof(ident
)))
166 case WDIOC_SETOPTIONS
:
167 if (copy_from_user(&value
, argp
, sizeof(int)))
170 case WDIOS_ENABLECARD
:
173 case WDIOS_DISABLECARD
:
174 return rdc321x_wdt_stop();
185 static ssize_t
rdc321x_wdt_write(struct file
*file
, const char __user
*buf
,
186 size_t count
, loff_t
*ppos
)
196 static const struct file_operations rdc321x_wdt_fops
= {
197 .owner
= THIS_MODULE
,
199 .ioctl
= rdc321x_wdt_ioctl
,
200 .open
= rdc321x_wdt_open
,
201 .write
= rdc321x_wdt_write
,
202 .release
= rdc321x_wdt_release
,
205 static struct miscdevice rdc321x_wdt_misc
= {
206 .minor
= WATCHDOG_MINOR
,
208 .fops
= &rdc321x_wdt_fops
,
211 static int __devinit
rdc321x_wdt_probe(struct platform_device
*pdev
)
215 err
= misc_register(&rdc321x_wdt_misc
);
217 printk(KERN_ERR PFX
"watchdog misc_register failed\n");
221 /* Reset the watchdog */
222 outl(RDC_WDT_RST
, RDC3210_CFGREG_DATA
);
224 init_completion(&rdc321x_wdt_device
.stop
);
225 rdc321x_wdt_device
.queue
= 0;
227 clear_bit(0, &rdc321x_wdt_device
.inuse
);
229 setup_timer(&rdc321x_wdt_device
.timer
, rdc321x_wdt_trigger
, 0);
231 rdc321x_wdt_device
.default_ticks
= ticks
;
233 printk(KERN_INFO PFX
"watchdog init success\n");
238 static int rdc321x_wdt_remove(struct platform_device
*pdev
)
240 if (rdc321x_wdt_device
.queue
) {
241 rdc321x_wdt_device
.queue
= 0;
242 wait_for_completion(&rdc321x_wdt_device
.stop
);
245 misc_deregister(&rdc321x_wdt_misc
);
250 static struct platform_driver rdc321x_wdt_driver
= {
251 .probe
= rdc321x_wdt_probe
,
252 .remove
= rdc321x_wdt_remove
,
254 .owner
= THIS_MODULE
,
255 .name
= "rdc321x-wdt",
259 static int __init
rdc321x_wdt_init(void)
261 return platform_driver_register(&rdc321x_wdt_driver
);
264 static void __exit
rdc321x_wdt_exit(void)
266 platform_driver_unregister(&rdc321x_wdt_driver
);
269 module_init(rdc321x_wdt_init
);
270 module_exit(rdc321x_wdt_exit
);
272 MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
273 MODULE_DESCRIPTION("RDC321x watchdog driver");
274 MODULE_LICENSE("GPL");
275 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);