2 * Watchdog driver for Broadcom BCM47XX
4 * Copyright (C) 2008 Aleksandar Radovanovic <biblbroks@sezampro.rs>
5 * Copyright (C) 2009 Matthieu CASTET <castet.matthieu@free.fr>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
13 #include <linux/bitops.h>
14 #include <linux/errno.h>
16 #include <linux/init.h>
17 #include <linux/kernel.h>
18 #include <linux/miscdevice.h>
19 #include <linux/module.h>
20 #include <linux/moduleparam.h>
21 #include <linux/reboot.h>
22 #include <linux/types.h>
23 #include <linux/uaccess.h>
24 #include <linux/watchdog.h>
25 #include <linux/timer.h>
26 #include <linux/jiffies.h>
27 #include <linux/ssb/ssb_embedded.h>
28 #include <asm/mach-bcm47xx/bcm47xx.h>
30 #define DRV_NAME "bcm47xx_wdt"
32 #define WDT_DEFAULT_TIME 30 /* seconds */
33 #define WDT_MAX_TIME 255 /* seconds */
35 static int wdt_time
= WDT_DEFAULT_TIME
;
36 static int nowayout
= WATCHDOG_NOWAYOUT
;
38 module_param(wdt_time
, int, 0);
39 MODULE_PARM_DESC(wdt_time
, "Watchdog time in seconds. (default="
40 __MODULE_STRING(WDT_DEFAULT_TIME
) ")");
42 #ifdef CONFIG_WATCHDOG_NOWAYOUT
43 module_param(nowayout
, int, 0);
44 MODULE_PARM_DESC(nowayout
,
45 "Watchdog cannot be stopped once started (default="
46 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
49 static unsigned long bcm47xx_wdt_busy
;
50 static char expect_release
;
51 static struct timer_list wdt_timer
;
52 static atomic_t ticks
;
54 static inline void bcm47xx_wdt_hw_start(void)
56 /* this is 2,5s on 100Mhz clock and 2s on 133 Mhz */
57 ssb_watchdog_timer_set(&ssb_bcm47xx
, 0xfffffff);
60 static inline int bcm47xx_wdt_hw_stop(void)
62 return ssb_watchdog_timer_set(&ssb_bcm47xx
, 0);
65 static void bcm47xx_timer_tick(unsigned long unused
)
67 if (!atomic_dec_and_test(&ticks
)) {
68 bcm47xx_wdt_hw_start();
69 mod_timer(&wdt_timer
, jiffies
+ HZ
);
71 printk(KERN_CRIT DRV_NAME
"Watchdog will fire soon!!!\n");
75 static inline void bcm47xx_wdt_pet(void)
77 atomic_set(&ticks
, wdt_time
);
80 static void bcm47xx_wdt_start(void)
83 bcm47xx_timer_tick(0);
86 static void bcm47xx_wdt_pause(void)
88 del_timer_sync(&wdt_timer
);
89 bcm47xx_wdt_hw_stop();
92 static void bcm47xx_wdt_stop(void)
97 static int bcm47xx_wdt_settimeout(int new_time
)
99 if ((new_time
<= 0) || (new_time
> WDT_MAX_TIME
))
106 static int bcm47xx_wdt_open(struct inode
*inode
, struct file
*file
)
108 if (test_and_set_bit(0, &bcm47xx_wdt_busy
))
112 return nonseekable_open(inode
, file
);
115 static int bcm47xx_wdt_release(struct inode
*inode
, struct file
*file
)
117 if (expect_release
== 42) {
120 printk(KERN_CRIT DRV_NAME
121 ": Unexpected close, not stopping watchdog!\n");
125 clear_bit(0, &bcm47xx_wdt_busy
);
130 static ssize_t
bcm47xx_wdt_write(struct file
*file
, const char __user
*data
,
131 size_t len
, loff_t
*ppos
)
139 for (i
= 0; i
!= len
; i
++) {
141 if (get_user(c
, data
+ i
))
152 static const struct watchdog_info bcm47xx_wdt_info
= {
153 .identity
= DRV_NAME
,
154 .options
= WDIOF_SETTIMEOUT
|
155 WDIOF_KEEPALIVEPING
|
159 static long bcm47xx_wdt_ioctl(struct file
*file
,
160 unsigned int cmd
, unsigned long arg
)
162 void __user
*argp
= (void __user
*)arg
;
163 int __user
*p
= argp
;
164 int new_value
, retval
= -EINVAL
;
167 case WDIOC_GETSUPPORT
:
168 return copy_to_user(argp
, &bcm47xx_wdt_info
,
169 sizeof(bcm47xx_wdt_info
)) ? -EFAULT
: 0;
171 case WDIOC_GETSTATUS
:
172 case WDIOC_GETBOOTSTATUS
:
173 return put_user(0, p
);
175 case WDIOC_SETOPTIONS
:
176 if (get_user(new_value
, p
))
179 if (new_value
& WDIOS_DISABLECARD
) {
184 if (new_value
& WDIOS_ENABLECARD
) {
191 case WDIOC_KEEPALIVE
:
195 case WDIOC_SETTIMEOUT
:
196 if (get_user(new_value
, p
))
199 if (bcm47xx_wdt_settimeout(new_value
))
204 case WDIOC_GETTIMEOUT
:
205 return put_user(wdt_time
, p
);
212 static int bcm47xx_wdt_notify_sys(struct notifier_block
*this,
213 unsigned long code
, void *unused
)
215 if (code
== SYS_DOWN
|| code
== SYS_HALT
)
220 static const struct file_operations bcm47xx_wdt_fops
= {
221 .owner
= THIS_MODULE
,
223 .unlocked_ioctl
= bcm47xx_wdt_ioctl
,
224 .open
= bcm47xx_wdt_open
,
225 .release
= bcm47xx_wdt_release
,
226 .write
= bcm47xx_wdt_write
,
229 static struct miscdevice bcm47xx_wdt_miscdev
= {
230 .minor
= WATCHDOG_MINOR
,
232 .fops
= &bcm47xx_wdt_fops
,
235 static struct notifier_block bcm47xx_wdt_notifier
= {
236 .notifier_call
= bcm47xx_wdt_notify_sys
,
239 static int __init
bcm47xx_wdt_init(void)
243 if (bcm47xx_wdt_hw_stop() < 0)
246 setup_timer(&wdt_timer
, bcm47xx_timer_tick
, 0L);
248 if (bcm47xx_wdt_settimeout(wdt_time
)) {
249 bcm47xx_wdt_settimeout(WDT_DEFAULT_TIME
);
250 printk(KERN_INFO DRV_NAME
": "
251 "wdt_time value must be 0 < wdt_time < %d, using %d\n",
252 (WDT_MAX_TIME
+ 1), wdt_time
);
255 ret
= register_reboot_notifier(&bcm47xx_wdt_notifier
);
259 ret
= misc_register(&bcm47xx_wdt_miscdev
);
261 unregister_reboot_notifier(&bcm47xx_wdt_notifier
);
265 printk(KERN_INFO
"BCM47xx Watchdog Timer enabled (%d seconds%s)\n",
266 wdt_time
, nowayout
? ", nowayout" : "");
270 static void __exit
bcm47xx_wdt_exit(void)
275 misc_deregister(&bcm47xx_wdt_miscdev
);
277 unregister_reboot_notifier(&bcm47xx_wdt_notifier
);
280 module_init(bcm47xx_wdt_init
);
281 module_exit(bcm47xx_wdt_exit
);
283 MODULE_AUTHOR("Aleksandar Radovanovic");
284 MODULE_DESCRIPTION("Watchdog driver for Broadcom BCM47xx");
285 MODULE_LICENSE("GPL");
286 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);