blob: c43406c48613c85865a29681ba03e6bea648667c [file] [log] [blame]
matthieu castet90074dc2009-06-05 18:57:18 +02001/*
2 * Watchdog driver for Broadcom BCM47XX
3 *
4 * Copyright (C) 2008 Aleksandar Radovanovic <biblbroks@sezampro.rs>
5 * Copyright (C) 2009 Matthieu CASTET <castet.matthieu@free.fr>
6 *
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.
11 */
12
13#include <linux/bitops.h>
14#include <linux/errno.h>
15#include <linux/fs.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>
29
30#define DRV_NAME "bcm47xx_wdt"
31
32#define WDT_DEFAULT_TIME 30 /* seconds */
33#define WDT_MAX_TIME 255 /* seconds */
34
35static int wdt_time = WDT_DEFAULT_TIME;
36static int nowayout = WATCHDOG_NOWAYOUT;
37
38module_param(wdt_time, int, 0);
39MODULE_PARM_DESC(wdt_time, "Watchdog time in seconds. (default="
40 __MODULE_STRING(WDT_DEFAULT_TIME) ")");
41
42#ifdef CONFIG_WATCHDOG_NOWAYOUT
43module_param(nowayout, int, 0);
44MODULE_PARM_DESC(nowayout,
45 "Watchdog cannot be stopped once started (default="
46 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
47#endif
48
49static unsigned long bcm47xx_wdt_busy;
50static char expect_release;
51static struct timer_list wdt_timer;
52static atomic_t ticks;
53
54static inline void bcm47xx_wdt_hw_start(void)
55{
56 /* this is 2,5s on 100Mhz clock and 2s on 133 Mhz */
Hauke Mehrtens08ccf5722011-07-23 01:20:12 +020057 switch (bcm47xx_bus_type) {
58 case BCM47XX_BUS_TYPE_SSB:
59 ssb_watchdog_timer_set(&bcm47xx_bus.ssb, 0xfffffff);
60 break;
61 }
matthieu castet90074dc2009-06-05 18:57:18 +020062}
63
64static inline int bcm47xx_wdt_hw_stop(void)
65{
Hauke Mehrtens08ccf5722011-07-23 01:20:12 +020066 switch (bcm47xx_bus_type) {
67 case BCM47XX_BUS_TYPE_SSB:
68 return ssb_watchdog_timer_set(&bcm47xx_bus.ssb, 0);
69 }
70 return -EINVAL;
matthieu castet90074dc2009-06-05 18:57:18 +020071}
72
73static void bcm47xx_timer_tick(unsigned long unused)
74{
75 if (!atomic_dec_and_test(&ticks)) {
76 bcm47xx_wdt_hw_start();
77 mod_timer(&wdt_timer, jiffies + HZ);
78 } else {
79 printk(KERN_CRIT DRV_NAME "Watchdog will fire soon!!!\n");
80 }
81}
82
83static inline void bcm47xx_wdt_pet(void)
84{
85 atomic_set(&ticks, wdt_time);
86}
87
88static void bcm47xx_wdt_start(void)
89{
90 bcm47xx_wdt_pet();
91 bcm47xx_timer_tick(0);
92}
93
94static void bcm47xx_wdt_pause(void)
95{
96 del_timer_sync(&wdt_timer);
97 bcm47xx_wdt_hw_stop();
98}
99
100static void bcm47xx_wdt_stop(void)
101{
102 bcm47xx_wdt_pause();
103}
104
105static int bcm47xx_wdt_settimeout(int new_time)
106{
107 if ((new_time <= 0) || (new_time > WDT_MAX_TIME))
108 return -EINVAL;
109
110 wdt_time = new_time;
111 return 0;
112}
113
114static int bcm47xx_wdt_open(struct inode *inode, struct file *file)
115{
116 if (test_and_set_bit(0, &bcm47xx_wdt_busy))
117 return -EBUSY;
118
119 bcm47xx_wdt_start();
120 return nonseekable_open(inode, file);
121}
122
123static int bcm47xx_wdt_release(struct inode *inode, struct file *file)
124{
125 if (expect_release == 42) {
126 bcm47xx_wdt_stop();
127 } else {
128 printk(KERN_CRIT DRV_NAME
129 ": Unexpected close, not stopping watchdog!\n");
130 bcm47xx_wdt_start();
131 }
132
133 clear_bit(0, &bcm47xx_wdt_busy);
134 expect_release = 0;
135 return 0;
136}
137
138static ssize_t bcm47xx_wdt_write(struct file *file, const char __user *data,
139 size_t len, loff_t *ppos)
140{
141 if (len) {
142 if (!nowayout) {
143 size_t i;
144
145 expect_release = 0;
146
147 for (i = 0; i != len; i++) {
148 char c;
149 if (get_user(c, data + i))
150 return -EFAULT;
151 if (c == 'V')
152 expect_release = 42;
153 }
154 }
155 bcm47xx_wdt_pet();
156 }
157 return len;
158}
159
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000160static const struct watchdog_info bcm47xx_wdt_info = {
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +0000161 .identity = DRV_NAME,
162 .options = WDIOF_SETTIMEOUT |
matthieu castet90074dc2009-06-05 18:57:18 +0200163 WDIOF_KEEPALIVEPING |
164 WDIOF_MAGICCLOSE,
165};
166
167static long bcm47xx_wdt_ioctl(struct file *file,
168 unsigned int cmd, unsigned long arg)
169{
170 void __user *argp = (void __user *)arg;
171 int __user *p = argp;
Joe Perchesb86a6c62009-06-28 09:26:57 -0700172 int new_value, retval = -EINVAL;
matthieu castet90074dc2009-06-05 18:57:18 +0200173
174 switch (cmd) {
175 case WDIOC_GETSUPPORT:
176 return copy_to_user(argp, &bcm47xx_wdt_info,
177 sizeof(bcm47xx_wdt_info)) ? -EFAULT : 0;
178
179 case WDIOC_GETSTATUS:
180 case WDIOC_GETBOOTSTATUS:
181 return put_user(0, p);
182
183 case WDIOC_SETOPTIONS:
184 if (get_user(new_value, p))
185 return -EFAULT;
186
187 if (new_value & WDIOS_DISABLECARD) {
188 bcm47xx_wdt_stop();
189 retval = 0;
190 }
191
192 if (new_value & WDIOS_ENABLECARD) {
193 bcm47xx_wdt_start();
194 retval = 0;
195 }
196
197 return retval;
198
199 case WDIOC_KEEPALIVE:
200 bcm47xx_wdt_pet();
201 return 0;
202
203 case WDIOC_SETTIMEOUT:
204 if (get_user(new_value, p))
205 return -EFAULT;
206
207 if (bcm47xx_wdt_settimeout(new_value))
208 return -EINVAL;
209
210 bcm47xx_wdt_pet();
211
212 case WDIOC_GETTIMEOUT:
213 return put_user(wdt_time, p);
214
215 default:
216 return -ENOTTY;
217 }
218}
219
220static int bcm47xx_wdt_notify_sys(struct notifier_block *this,
221 unsigned long code, void *unused)
222{
223 if (code == SYS_DOWN || code == SYS_HALT)
224 bcm47xx_wdt_stop();
225 return NOTIFY_DONE;
226}
227
228static const struct file_operations bcm47xx_wdt_fops = {
229 .owner = THIS_MODULE,
230 .llseek = no_llseek,
231 .unlocked_ioctl = bcm47xx_wdt_ioctl,
232 .open = bcm47xx_wdt_open,
233 .release = bcm47xx_wdt_release,
234 .write = bcm47xx_wdt_write,
235};
236
237static struct miscdevice bcm47xx_wdt_miscdev = {
238 .minor = WATCHDOG_MINOR,
239 .name = "watchdog",
240 .fops = &bcm47xx_wdt_fops,
241};
242
243static struct notifier_block bcm47xx_wdt_notifier = {
244 .notifier_call = bcm47xx_wdt_notify_sys,
245};
246
247static int __init bcm47xx_wdt_init(void)
248{
249 int ret;
250
251 if (bcm47xx_wdt_hw_stop() < 0)
252 return -ENODEV;
253
254 setup_timer(&wdt_timer, bcm47xx_timer_tick, 0L);
255
256 if (bcm47xx_wdt_settimeout(wdt_time)) {
257 bcm47xx_wdt_settimeout(WDT_DEFAULT_TIME);
258 printk(KERN_INFO DRV_NAME ": "
259 "wdt_time value must be 0 < wdt_time < %d, using %d\n",
260 (WDT_MAX_TIME + 1), wdt_time);
261 }
262
263 ret = register_reboot_notifier(&bcm47xx_wdt_notifier);
264 if (ret)
265 return ret;
266
267 ret = misc_register(&bcm47xx_wdt_miscdev);
268 if (ret) {
269 unregister_reboot_notifier(&bcm47xx_wdt_notifier);
270 return ret;
271 }
272
273 printk(KERN_INFO "BCM47xx Watchdog Timer enabled (%d seconds%s)\n",
274 wdt_time, nowayout ? ", nowayout" : "");
275 return 0;
276}
277
278static void __exit bcm47xx_wdt_exit(void)
279{
280 if (!nowayout)
281 bcm47xx_wdt_stop();
282
283 misc_deregister(&bcm47xx_wdt_miscdev);
284
285 unregister_reboot_notifier(&bcm47xx_wdt_notifier);
286}
287
288module_init(bcm47xx_wdt_init);
289module_exit(bcm47xx_wdt_exit);
290
291MODULE_AUTHOR("Aleksandar Radovanovic");
292MODULE_DESCRIPTION("Watchdog driver for Broadcom BCM47xx");
293MODULE_LICENSE("GPL");
294MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);