RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / drivers / char / watchdog / wdrtas.c
blob1d64e277567dc487a3ab1f098afe0b38c227d5d4
1 /*
2 * FIXME: add wdrtas_get_status and wdrtas_get_boot_status as soon as
3 * RTAS calls are available
4 */
6 /*
7 * RTAS watchdog driver
9 * (C) Copyright IBM Corp. 2005
10 * device driver to exploit watchdog RTAS functions
12 * Authors : Utz Bacher <utz.bacher@de.ibm.com>
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2, or (at your option)
17 * any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #include <linux/fs.h>
30 #include <linux/init.h>
31 #include <linux/kernel.h>
32 #include <linux/miscdevice.h>
33 #include <linux/module.h>
34 #include <linux/notifier.h>
35 #include <linux/reboot.h>
36 #include <linux/types.h>
37 #include <linux/watchdog.h>
39 #include <asm/rtas.h>
40 #include <asm/uaccess.h>
42 #define WDRTAS_MAGIC_CHAR 42
43 #define WDRTAS_SUPPORTED_MASK (WDIOF_SETTIMEOUT | \
44 WDIOF_MAGICCLOSE)
46 MODULE_AUTHOR("Utz Bacher <utz.bacher@de.ibm.com>");
47 MODULE_DESCRIPTION("RTAS watchdog driver");
48 MODULE_LICENSE("GPL");
49 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
50 MODULE_ALIAS_MISCDEV(TEMP_MINOR);
52 #ifdef CONFIG_WATCHDOG_NOWAYOUT
53 static int wdrtas_nowayout = 1;
54 #else
55 static int wdrtas_nowayout = 0;
56 #endif
58 static atomic_t wdrtas_miscdev_open = ATOMIC_INIT(0);
59 static char wdrtas_expect_close = 0;
61 static int wdrtas_interval;
63 #define WDRTAS_THERMAL_SENSOR 3
64 static int wdrtas_token_get_sensor_state;
65 #define WDRTAS_SURVEILLANCE_IND 9000
66 static int wdrtas_token_set_indicator;
67 #define WDRTAS_SP_SPI 28
68 static int wdrtas_token_get_sp;
69 static int wdrtas_token_event_scan;
71 #define WDRTAS_DEFAULT_INTERVAL 300
73 #define WDRTAS_LOGBUFFER_LEN 128
74 static char wdrtas_logbuffer[WDRTAS_LOGBUFFER_LEN];
77 /*** watchdog access functions */
79 /**
80 * wdrtas_set_interval - sets the watchdog interval
81 * @interval: new interval
83 * returns 0 on success, <0 on failures
85 * wdrtas_set_interval sets the watchdog keepalive interval by calling the
86 * RTAS function set-indicator (surveillance). The unit of interval is
87 * seconds.
89 static int
90 wdrtas_set_interval(int interval)
92 long result;
93 static int print_msg = 10;
95 /* rtas uses minutes */
96 interval = (interval + 59) / 60;
98 result = rtas_call(wdrtas_token_set_indicator, 3, 1, NULL,
99 WDRTAS_SURVEILLANCE_IND, 0, interval);
100 if ( (result < 0) && (print_msg) ) {
101 printk(KERN_ERR "wdrtas: setting the watchdog to %i "
102 "timeout failed: %li\n", interval, result);
103 print_msg--;
106 return result;
110 * wdrtas_get_interval - returns the current watchdog interval
111 * @fallback_value: value (in seconds) to use, if the RTAS call fails
113 * returns the interval
115 * wdrtas_get_interval returns the current watchdog keepalive interval
116 * as reported by the RTAS function ibm,get-system-parameter. The unit
117 * of the return value is seconds.
119 static int
120 wdrtas_get_interval(int fallback_value)
122 long result;
123 char value[4];
125 result = rtas_call(wdrtas_token_get_sp, 3, 1, NULL,
126 WDRTAS_SP_SPI, (void *)__pa(&value), 4);
127 if ( (value[0] != 0) || (value[1] != 2) || (value[3] != 0) ||
128 (result < 0) ) {
129 printk(KERN_WARNING "wdrtas: could not get sp_spi watchdog "
130 "timeout (%li). Continuing\n", result);
131 return fallback_value;
134 /* rtas uses minutes */
135 return ((int)value[2]) * 60;
139 * wdrtas_timer_start - starts watchdog
141 * wdrtas_timer_start starts the watchdog by calling the RTAS function
142 * set-interval (surveillance)
144 static void
145 wdrtas_timer_start(void)
147 wdrtas_set_interval(wdrtas_interval);
151 * wdrtas_timer_stop - stops watchdog
153 * wdrtas_timer_stop stops the watchdog timer by calling the RTAS function
154 * set-interval (surveillance)
156 static void
157 wdrtas_timer_stop(void)
159 wdrtas_set_interval(0);
163 * wdrtas_log_scanned_event - logs an event we received during keepalive
165 * wdrtas_log_scanned_event prints a message to the log buffer dumping
166 * the results of the last event-scan call
168 static void
169 wdrtas_log_scanned_event(void)
171 int i;
173 for (i = 0; i < WDRTAS_LOGBUFFER_LEN; i += 16)
174 printk(KERN_INFO "wdrtas: dumping event (line %i/%i), data = "
175 "%02x %02x %02x %02x %02x %02x %02x %02x "
176 "%02x %02x %02x %02x %02x %02x %02x %02x\n",
177 (i / 16) + 1, (WDRTAS_LOGBUFFER_LEN / 16),
178 wdrtas_logbuffer[i + 0], wdrtas_logbuffer[i + 1],
179 wdrtas_logbuffer[i + 2], wdrtas_logbuffer[i + 3],
180 wdrtas_logbuffer[i + 4], wdrtas_logbuffer[i + 5],
181 wdrtas_logbuffer[i + 6], wdrtas_logbuffer[i + 7],
182 wdrtas_logbuffer[i + 8], wdrtas_logbuffer[i + 9],
183 wdrtas_logbuffer[i + 10], wdrtas_logbuffer[i + 11],
184 wdrtas_logbuffer[i + 12], wdrtas_logbuffer[i + 13],
185 wdrtas_logbuffer[i + 14], wdrtas_logbuffer[i + 15]);
189 * wdrtas_timer_keepalive - resets watchdog timer to keep system alive
191 * wdrtas_timer_keepalive restarts the watchdog timer by calling the
192 * RTAS function event-scan and repeats these calls as long as there are
193 * events available. All events will be dumped.
195 static void
196 wdrtas_timer_keepalive(void)
198 long result;
200 do {
201 result = rtas_call(wdrtas_token_event_scan, 4, 1, NULL,
202 RTAS_EVENT_SCAN_ALL_EVENTS, 0,
203 (void *)__pa(wdrtas_logbuffer),
204 WDRTAS_LOGBUFFER_LEN);
205 if (result < 0)
206 printk(KERN_ERR "wdrtas: event-scan failed: %li\n",
207 result);
208 if (result == 0)
209 wdrtas_log_scanned_event();
210 } while (result == 0);
214 * wdrtas_get_temperature - returns current temperature
216 * returns temperature or <0 on failures
218 * wdrtas_get_temperature returns the current temperature in Fahrenheit. It
219 * uses the RTAS call get-sensor-state, token 3 to do so
221 static int
222 wdrtas_get_temperature(void)
224 long result;
225 int temperature = 0;
227 result = rtas_call(wdrtas_token_get_sensor_state, 2, 2,
228 (void *)__pa(&temperature),
229 WDRTAS_THERMAL_SENSOR, 0);
231 if (result < 0)
232 printk(KERN_WARNING "wdrtas: reading the thermal sensor "
233 "faild: %li\n", result);
234 else
235 temperature = ((temperature * 9) / 5) + 32; /* fahrenheit */
237 return temperature;
241 * wdrtas_get_status - returns the status of the watchdog
243 * returns a bitmask of defines WDIOF_... as defined in
244 * include/linux/watchdog.h
246 static int
247 wdrtas_get_status(void)
249 return 0; /* TODO */
253 * wdrtas_get_boot_status - returns the reason for the last boot
255 * returns a bitmask of defines WDIOF_... as defined in
256 * include/linux/watchdog.h, indicating why the watchdog rebooted the system
258 static int
259 wdrtas_get_boot_status(void)
261 return 0; /* TODO */
264 /*** watchdog API and operations stuff */
266 /* wdrtas_write - called when watchdog device is written to
267 * @file: file structure
268 * @buf: user buffer with data
269 * @len: amount to data written
270 * @ppos: position in file
272 * returns the number of successfully processed characters, which is always
273 * the number of bytes passed to this function
275 * wdrtas_write processes all the data given to it and looks for the magic
276 * character 'V'. This character allows the watchdog device to be closed
277 * properly.
279 static ssize_t
280 wdrtas_write(struct file *file, const char __user *buf,
281 size_t len, loff_t *ppos)
283 int i;
284 char c;
286 if (!len)
287 goto out;
289 if (!wdrtas_nowayout) {
290 wdrtas_expect_close = 0;
291 /* look for 'V' */
292 for (i = 0; i < len; i++) {
293 if (get_user(c, buf + i))
294 return -EFAULT;
295 /* allow to close device */
296 if (c == 'V')
297 wdrtas_expect_close = WDRTAS_MAGIC_CHAR;
301 wdrtas_timer_keepalive();
303 out:
304 return len;
308 * wdrtas_ioctl - ioctl function for the watchdog device
309 * @inode: inode structure
310 * @file: file structure
311 * @cmd: command for ioctl
312 * @arg: argument pointer
314 * returns 0 on success, <0 on failure
316 * wdrtas_ioctl implements the watchdog API ioctls
318 static int
319 wdrtas_ioctl(struct inode *inode, struct file *file,
320 unsigned int cmd, unsigned long arg)
322 int __user *argp = (void __user *)arg;
323 int i;
324 static struct watchdog_info wdinfo = {
325 .options = WDRTAS_SUPPORTED_MASK,
326 .firmware_version = 0,
327 .identity = "wdrtas"
330 switch (cmd) {
331 case WDIOC_GETSUPPORT:
332 if (copy_to_user(argp, &wdinfo, sizeof(wdinfo)))
333 return -EFAULT;
334 return 0;
336 case WDIOC_GETSTATUS:
337 i = wdrtas_get_status();
338 return put_user(i, argp);
340 case WDIOC_GETBOOTSTATUS:
341 i = wdrtas_get_boot_status();
342 return put_user(i, argp);
344 case WDIOC_GETTEMP:
345 if (wdrtas_token_get_sensor_state == RTAS_UNKNOWN_SERVICE)
346 return -EOPNOTSUPP;
348 i = wdrtas_get_temperature();
349 return put_user(i, argp);
351 case WDIOC_SETOPTIONS:
352 if (get_user(i, argp))
353 return -EFAULT;
354 if (i & WDIOS_DISABLECARD)
355 wdrtas_timer_stop();
356 if (i & WDIOS_ENABLECARD) {
357 wdrtas_timer_keepalive();
358 wdrtas_timer_start();
360 if (i & WDIOS_TEMPPANIC) {
361 /* not implemented. Done by H8 */
363 return 0;
365 case WDIOC_KEEPALIVE:
366 wdrtas_timer_keepalive();
367 return 0;
369 case WDIOC_SETTIMEOUT:
370 if (get_user(i, argp))
371 return -EFAULT;
373 if (wdrtas_set_interval(i))
374 return -EINVAL;
376 wdrtas_timer_keepalive();
378 if (wdrtas_token_get_sp == RTAS_UNKNOWN_SERVICE)
379 wdrtas_interval = i;
380 else
381 wdrtas_interval = wdrtas_get_interval(i);
382 /* fallthrough */
384 case WDIOC_GETTIMEOUT:
385 return put_user(wdrtas_interval, argp);
387 default:
388 return -ENOTTY;
393 * wdrtas_open - open function of watchdog device
394 * @inode: inode structure
395 * @file: file structure
397 * returns 0 on success, -EBUSY if the file has been opened already, <0 on
398 * other failures
400 * function called when watchdog device is opened
402 static int
403 wdrtas_open(struct inode *inode, struct file *file)
405 /* only open once */
406 if (atomic_inc_return(&wdrtas_miscdev_open) > 1) {
407 atomic_dec(&wdrtas_miscdev_open);
408 return -EBUSY;
411 wdrtas_timer_start();
412 wdrtas_timer_keepalive();
414 return nonseekable_open(inode, file);
418 * wdrtas_close - close function of watchdog device
419 * @inode: inode structure
420 * @file: file structure
422 * returns 0 on success
424 * close function. Always succeeds
426 static int
427 wdrtas_close(struct inode *inode, struct file *file)
429 /* only stop watchdog, if this was announced using 'V' before */
430 if (wdrtas_expect_close == WDRTAS_MAGIC_CHAR)
431 wdrtas_timer_stop();
432 else {
433 printk(KERN_WARNING "wdrtas: got unexpected close. Watchdog "
434 "not stopped.\n");
435 wdrtas_timer_keepalive();
438 wdrtas_expect_close = 0;
439 atomic_dec(&wdrtas_miscdev_open);
440 return 0;
444 * wdrtas_temp_read - gives back the temperature in fahrenheit
445 * @file: file structure
446 * @buf: user buffer
447 * @count: number of bytes to be read
448 * @ppos: position in file
450 * returns always 1 or -EFAULT in case of user space copy failures, <0 on
451 * other failures
453 * wdrtas_temp_read gives the temperature to the users by copying this
454 * value as one byte into the user space buffer. The unit is Fahrenheit...
456 static ssize_t
457 wdrtas_temp_read(struct file *file, char __user *buf,
458 size_t count, loff_t *ppos)
460 int temperature = 0;
462 temperature = wdrtas_get_temperature();
463 if (temperature < 0)
464 return temperature;
466 if (copy_to_user(buf, &temperature, 1))
467 return -EFAULT;
469 return 1;
473 * wdrtas_temp_open - open function of temperature device
474 * @inode: inode structure
475 * @file: file structure
477 * returns 0 on success, <0 on failure
479 * function called when temperature device is opened
481 static int
482 wdrtas_temp_open(struct inode *inode, struct file *file)
484 return nonseekable_open(inode, file);
488 * wdrtas_temp_close - close function of temperature device
489 * @inode: inode structure
490 * @file: file structure
492 * returns 0 on success
494 * close function. Always succeeds
496 static int
497 wdrtas_temp_close(struct inode *inode, struct file *file)
499 return 0;
503 * wdrtas_reboot - reboot notifier function
504 * @nb: notifier block structure
505 * @code: reboot code
506 * @ptr: unused
508 * returns NOTIFY_DONE
510 * wdrtas_reboot stops the watchdog in case of a reboot
512 static int
513 wdrtas_reboot(struct notifier_block *this, unsigned long code, void *ptr)
515 if ( (code==SYS_DOWN) || (code==SYS_HALT) )
516 wdrtas_timer_stop();
518 return NOTIFY_DONE;
521 /*** initialization stuff */
523 static const struct file_operations wdrtas_fops = {
524 .owner = THIS_MODULE,
525 .llseek = no_llseek,
526 .write = wdrtas_write,
527 .ioctl = wdrtas_ioctl,
528 .open = wdrtas_open,
529 .release = wdrtas_close,
532 static struct miscdevice wdrtas_miscdev = {
533 .minor = WATCHDOG_MINOR,
534 .name = "watchdog",
535 .fops = &wdrtas_fops,
538 static const struct file_operations wdrtas_temp_fops = {
539 .owner = THIS_MODULE,
540 .llseek = no_llseek,
541 .read = wdrtas_temp_read,
542 .open = wdrtas_temp_open,
543 .release = wdrtas_temp_close,
546 static struct miscdevice wdrtas_tempdev = {
547 .minor = TEMP_MINOR,
548 .name = "temperature",
549 .fops = &wdrtas_temp_fops,
552 static struct notifier_block wdrtas_notifier = {
553 .notifier_call = wdrtas_reboot,
557 * wdrtas_get_tokens - reads in RTAS tokens
559 * returns 0 on succes, <0 on failure
561 * wdrtas_get_tokens reads in the tokens for the RTAS calls used in
562 * this watchdog driver. It tolerates, if "get-sensor-state" and
563 * "ibm,get-system-parameter" are not available.
565 static int
566 wdrtas_get_tokens(void)
568 wdrtas_token_get_sensor_state = rtas_token("get-sensor-state");
569 if (wdrtas_token_get_sensor_state == RTAS_UNKNOWN_SERVICE) {
570 printk(KERN_WARNING "wdrtas: couldn't get token for "
571 "get-sensor-state. Trying to continue without "
572 "temperature support.\n");
575 wdrtas_token_get_sp = rtas_token("ibm,get-system-parameter");
576 if (wdrtas_token_get_sp == RTAS_UNKNOWN_SERVICE) {
577 printk(KERN_WARNING "wdrtas: couldn't get token for "
578 "ibm,get-system-parameter. Trying to continue with "
579 "a default timeout value of %i seconds.\n",
580 WDRTAS_DEFAULT_INTERVAL);
583 wdrtas_token_set_indicator = rtas_token("set-indicator");
584 if (wdrtas_token_set_indicator == RTAS_UNKNOWN_SERVICE) {
585 printk(KERN_ERR "wdrtas: couldn't get token for "
586 "set-indicator. Terminating watchdog code.\n");
587 return -EIO;
590 wdrtas_token_event_scan = rtas_token("event-scan");
591 if (wdrtas_token_event_scan == RTAS_UNKNOWN_SERVICE) {
592 printk(KERN_ERR "wdrtas: couldn't get token for event-scan. "
593 "Terminating watchdog code.\n");
594 return -EIO;
597 return 0;
601 * wdrtas_unregister_devs - unregisters the misc dev handlers
603 * wdrtas_register_devs unregisters the watchdog and temperature watchdog
604 * misc devs
606 static void
607 wdrtas_unregister_devs(void)
609 misc_deregister(&wdrtas_miscdev);
610 if (wdrtas_token_get_sensor_state != RTAS_UNKNOWN_SERVICE)
611 misc_deregister(&wdrtas_tempdev);
615 * wdrtas_register_devs - registers the misc dev handlers
617 * returns 0 on succes, <0 on failure
619 * wdrtas_register_devs registers the watchdog and temperature watchdog
620 * misc devs
622 static int
623 wdrtas_register_devs(void)
625 int result;
627 result = misc_register(&wdrtas_miscdev);
628 if (result) {
629 printk(KERN_ERR "wdrtas: couldn't register watchdog misc "
630 "device. Terminating watchdog code.\n");
631 return result;
634 if (wdrtas_token_get_sensor_state != RTAS_UNKNOWN_SERVICE) {
635 result = misc_register(&wdrtas_tempdev);
636 if (result) {
637 printk(KERN_WARNING "wdrtas: couldn't register "
638 "watchdog temperature misc device. Continuing "
639 "without temperature support.\n");
640 wdrtas_token_get_sensor_state = RTAS_UNKNOWN_SERVICE;
644 return 0;
648 * wdrtas_init - init function of the watchdog driver
650 * returns 0 on succes, <0 on failure
652 * registers the file handlers and the reboot notifier
654 static int __init
655 wdrtas_init(void)
657 if (wdrtas_get_tokens())
658 return -ENODEV;
660 if (wdrtas_register_devs())
661 return -ENODEV;
663 if (register_reboot_notifier(&wdrtas_notifier)) {
664 printk(KERN_ERR "wdrtas: could not register reboot notifier. "
665 "Terminating watchdog code.\n");
666 wdrtas_unregister_devs();
667 return -ENODEV;
670 if (wdrtas_token_get_sp == RTAS_UNKNOWN_SERVICE)
671 wdrtas_interval = WDRTAS_DEFAULT_INTERVAL;
672 else
673 wdrtas_interval = wdrtas_get_interval(WDRTAS_DEFAULT_INTERVAL);
675 return 0;
679 * wdrtas_exit - exit function of the watchdog driver
681 * unregisters the file handlers and the reboot notifier
683 static void __exit
684 wdrtas_exit(void)
686 if (!wdrtas_nowayout)
687 wdrtas_timer_stop();
689 wdrtas_unregister_devs();
691 unregister_reboot_notifier(&wdrtas_notifier);
694 module_init(wdrtas_init);
695 module_exit(wdrtas_exit);