[PATCH] I2C: m41t00: fix incorrect kfree
[linux-2.6/btrfs-unstable.git] / drivers / char / watchdog / wdt.c
blob5684aa37988611d4525824d5e6401ee70426a9f8
1 /*
2 * Industrial Computer Source WDT500/501 driver
4 * (c) Copyright 1996-1997 Alan Cox <alan@redhat.com>, All Rights Reserved.
5 * http://www.redhat.com
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.
12 * Neither Alan Cox nor CymruNet Ltd. admit liability nor provide
13 * warranty for any of this software. This material is provided
14 * "AS-IS" and at no charge.
16 * (c) Copyright 1995 Alan Cox <alan@lxorguk.ukuu.org.uk>
18 * Release 0.10.
20 * Fixes
21 * Dave Gregorich : Modularisation and minor bugs
22 * Alan Cox : Added the watchdog ioctl() stuff
23 * Alan Cox : Fixed the reboot problem (as noted by
24 * Matt Crocker).
25 * Alan Cox : Added wdt= boot option
26 * Alan Cox : Cleaned up copy/user stuff
27 * Tim Hockin : Added insmod parameters, comment cleanup
28 * Parameterized timeout
29 * Tigran Aivazian : Restructured wdt_init() to handle failures
30 * Joel Becker : Added WDIOC_GET/SETTIMEOUT
31 * Matt Domsch : Added nowayout module option
34 #include <linux/config.h>
35 #include <linux/interrupt.h>
36 #include <linux/module.h>
37 #include <linux/moduleparam.h>
38 #include <linux/types.h>
39 #include <linux/miscdevice.h>
40 #include <linux/watchdog.h>
41 #include <linux/fs.h>
42 #include <linux/ioport.h>
43 #include <linux/notifier.h>
44 #include <linux/reboot.h>
45 #include <linux/init.h>
47 #include <asm/io.h>
48 #include <asm/uaccess.h>
49 #include <asm/system.h>
50 #include "wd501p.h"
52 static unsigned long wdt_is_open;
53 static char expect_close;
56 * Module parameters
59 #define WD_TIMO 60 /* Default heartbeat = 60 seconds */
61 static int heartbeat = WD_TIMO;
62 static int wd_heartbeat;
63 module_param(heartbeat, int, 0);
64 MODULE_PARM_DESC(heartbeat, "Watchdog heartbeat in seconds. (0<heartbeat<65536, default=" __MODULE_STRING(WD_TIMO) ")");
66 #ifdef CONFIG_WATCHDOG_NOWAYOUT
67 static int nowayout = 1;
68 #else
69 static int nowayout = 0;
70 #endif
72 module_param(nowayout, int, 0);
73 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=CONFIG_WATCHDOG_NOWAYOUT)");
75 /* You must set these - there is no sane way to probe for this board. */
76 static int io=0x240;
77 static int irq=11;
79 module_param(io, int, 0);
80 MODULE_PARM_DESC(io, "WDT io port (default=0x240)");
81 module_param(irq, int, 0);
82 MODULE_PARM_DESC(irq, "WDT irq (default=11)");
84 #ifdef CONFIG_WDT_501
85 /* Support for the Fan Tachometer on the WDT501-P */
86 static int tachometer;
88 module_param(tachometer, int, 0);
89 MODULE_PARM_DESC(tachometer, "WDT501-P Fan Tachometer support (0=disable, default=0)");
90 #endif /* CONFIG_WDT_501 */
93 * Programming support
96 static void wdt_ctr_mode(int ctr, int mode)
98 ctr<<=6;
99 ctr|=0x30;
100 ctr|=(mode<<1);
101 outb_p(ctr, WDT_CR);
104 static void wdt_ctr_load(int ctr, int val)
106 outb_p(val&0xFF, WDT_COUNT0+ctr);
107 outb_p(val>>8, WDT_COUNT0+ctr);
111 * wdt_start:
113 * Start the watchdog driver.
116 static int wdt_start(void)
118 inb_p(WDT_DC); /* Disable watchdog */
119 wdt_ctr_mode(0,3); /* Program CTR0 for Mode 3: Square Wave Generator */
120 wdt_ctr_mode(1,2); /* Program CTR1 for Mode 2: Rate Generator */
121 wdt_ctr_mode(2,0); /* Program CTR2 for Mode 0: Pulse on Terminal Count */
122 wdt_ctr_load(0, 8948); /* Count at 100Hz */
123 wdt_ctr_load(1,wd_heartbeat); /* Heartbeat */
124 wdt_ctr_load(2,65535); /* Length of reset pulse */
125 outb_p(0, WDT_DC); /* Enable watchdog */
126 return 0;
130 * wdt_stop:
132 * Stop the watchdog driver.
135 static int wdt_stop (void)
137 /* Turn the card off */
138 inb_p(WDT_DC); /* Disable watchdog */
139 wdt_ctr_load(2,0); /* 0 length reset pulses now */
140 return 0;
144 * wdt_ping:
146 * Reload counter one with the watchdog heartbeat. We don't bother reloading
147 * the cascade counter.
150 static int wdt_ping(void)
152 /* Write a watchdog value */
153 inb_p(WDT_DC); /* Disable watchdog */
154 wdt_ctr_mode(1,2); /* Re-Program CTR1 for Mode 2: Rate Generator */
155 wdt_ctr_load(1,wd_heartbeat); /* Heartbeat */
156 outb_p(0, WDT_DC); /* Enable watchdog */
157 return 0;
161 * wdt_set_heartbeat:
162 * @t: the new heartbeat value that needs to be set.
164 * Set a new heartbeat value for the watchdog device. If the heartbeat value is
165 * incorrect we keep the old value and return -EINVAL. If successfull we
166 * return 0.
168 static int wdt_set_heartbeat(int t)
170 if ((t < 1) || (t > 65535))
171 return -EINVAL;
173 heartbeat = t;
174 wd_heartbeat = t * 100;
175 return 0;
179 * wdt_get_status:
180 * @status: the new status.
182 * Extract the status information from a WDT watchdog device. There are
183 * several board variants so we have to know which bits are valid. Some
184 * bits default to one and some to zero in order to be maximally painful.
186 * we then map the bits onto the status ioctl flags.
189 static int wdt_get_status(int *status)
191 unsigned char new_status=inb_p(WDT_SR);
193 *status=0;
194 if (new_status & WDC_SR_ISOI0)
195 *status |= WDIOF_EXTERN1;
196 if (new_status & WDC_SR_ISII1)
197 *status |= WDIOF_EXTERN2;
198 #ifdef CONFIG_WDT_501
199 if (!(new_status & WDC_SR_TGOOD))
200 *status |= WDIOF_OVERHEAT;
201 if (!(new_status & WDC_SR_PSUOVER))
202 *status |= WDIOF_POWEROVER;
203 if (!(new_status & WDC_SR_PSUUNDR))
204 *status |= WDIOF_POWERUNDER;
205 if (tachometer) {
206 if (!(new_status & WDC_SR_FANGOOD))
207 *status |= WDIOF_FANFAULT;
209 #endif /* CONFIG_WDT_501 */
210 return 0;
213 #ifdef CONFIG_WDT_501
215 * wdt_get_temperature:
217 * Reports the temperature in degrees Fahrenheit. The API is in
218 * farenheit. It was designed by an imperial measurement luddite.
221 static int wdt_get_temperature(int *temperature)
223 unsigned short c=inb_p(WDT_RT);
225 *temperature = (c * 11 / 15) + 7;
226 return 0;
228 #endif /* CONFIG_WDT_501 */
231 * wdt_interrupt:
232 * @irq: Interrupt number
233 * @dev_id: Unused as we don't allow multiple devices.
234 * @regs: Unused.
236 * Handle an interrupt from the board. These are raised when the status
237 * map changes in what the board considers an interesting way. That means
238 * a failure condition occurring.
241 static irqreturn_t wdt_interrupt(int irq, void *dev_id, struct pt_regs *regs)
244 * Read the status register see what is up and
245 * then printk it.
247 unsigned char status=inb_p(WDT_SR);
249 printk(KERN_CRIT "WDT status %d\n", status);
251 #ifdef CONFIG_WDT_501
252 if (!(status & WDC_SR_TGOOD))
253 printk(KERN_CRIT "Overheat alarm.(%d)\n",inb_p(WDT_RT));
254 if (!(status & WDC_SR_PSUOVER))
255 printk(KERN_CRIT "PSU over voltage.\n");
256 if (!(status & WDC_SR_PSUUNDR))
257 printk(KERN_CRIT "PSU under voltage.\n");
258 if (tachometer) {
259 if (!(status & WDC_SR_FANGOOD))
260 printk(KERN_CRIT "Possible fan fault.\n");
262 #endif /* CONFIG_WDT_501 */
263 if (!(status & WDC_SR_WCCR))
264 #ifdef SOFTWARE_REBOOT
265 #ifdef ONLY_TESTING
266 printk(KERN_CRIT "Would Reboot.\n");
267 #else
268 printk(KERN_CRIT "Initiating system reboot.\n");
269 machine_restart(NULL);
270 #endif
271 #else
272 printk(KERN_CRIT "Reset in 5ms.\n");
273 #endif
274 return IRQ_HANDLED;
279 * wdt_write:
280 * @file: file handle to the watchdog
281 * @buf: buffer to write (unused as data does not matter here
282 * @count: count of bytes
283 * @ppos: pointer to the position to write. No seeks allowed
285 * A write to a watchdog device is defined as a keepalive signal. Any
286 * write of data will do, as we we don't define content meaning.
289 static ssize_t wdt_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
291 if(count) {
292 if (!nowayout) {
293 size_t i;
295 /* In case it was set long ago */
296 expect_close = 0;
298 for (i = 0; i != count; i++) {
299 char c;
300 if (get_user(c, buf + i))
301 return -EFAULT;
302 if (c == 'V')
303 expect_close = 42;
306 wdt_ping();
308 return count;
312 * wdt_ioctl:
313 * @inode: inode of the device
314 * @file: file handle to the device
315 * @cmd: watchdog command
316 * @arg: argument pointer
318 * The watchdog API defines a common set of functions for all watchdogs
319 * according to their available features. We only actually usefully support
320 * querying capabilities and current status.
323 static int wdt_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
324 unsigned long arg)
326 void __user *argp = (void __user *)arg;
327 int __user *p = argp;
328 int new_heartbeat;
329 int status;
331 static struct watchdog_info ident = {
332 .options = WDIOF_SETTIMEOUT|
333 WDIOF_MAGICCLOSE|
334 WDIOF_KEEPALIVEPING,
335 .firmware_version = 1,
336 .identity = "WDT500/501",
339 /* Add options according to the card we have */
340 ident.options |= (WDIOF_EXTERN1|WDIOF_EXTERN2);
341 #ifdef CONFIG_WDT_501
342 ident.options |= (WDIOF_OVERHEAT|WDIOF_POWERUNDER|WDIOF_POWEROVER);
343 if (tachometer)
344 ident.options |= WDIOF_FANFAULT;
345 #endif /* CONFIG_WDT_501 */
347 switch(cmd)
349 default:
350 return -ENOIOCTLCMD;
351 case WDIOC_GETSUPPORT:
352 return copy_to_user(argp, &ident, sizeof(ident))?-EFAULT:0;
354 case WDIOC_GETSTATUS:
355 wdt_get_status(&status);
356 return put_user(status, p);
357 case WDIOC_GETBOOTSTATUS:
358 return put_user(0, p);
359 case WDIOC_KEEPALIVE:
360 wdt_ping();
361 return 0;
362 case WDIOC_SETTIMEOUT:
363 if (get_user(new_heartbeat, p))
364 return -EFAULT;
366 if (wdt_set_heartbeat(new_heartbeat))
367 return -EINVAL;
369 wdt_ping();
370 /* Fall */
371 case WDIOC_GETTIMEOUT:
372 return put_user(heartbeat, p);
377 * wdt_open:
378 * @inode: inode of device
379 * @file: file handle to device
381 * The watchdog device has been opened. The watchdog device is single
382 * open and on opening we load the counters. Counter zero is a 100Hz
383 * cascade, into counter 1 which downcounts to reboot. When the counter
384 * triggers counter 2 downcounts the length of the reset pulse which
385 * set set to be as long as possible.
388 static int wdt_open(struct inode *inode, struct file *file)
390 if(test_and_set_bit(0, &wdt_is_open))
391 return -EBUSY;
393 * Activate
395 wdt_start();
396 return nonseekable_open(inode, file);
400 * wdt_release:
401 * @inode: inode to board
402 * @file: file handle to board
404 * The watchdog has a configurable API. There is a religious dispute
405 * between people who want their watchdog to be able to shut down and
406 * those who want to be sure if the watchdog manager dies the machine
407 * reboots. In the former case we disable the counters, in the latter
408 * case you have to open it again very soon.
411 static int wdt_release(struct inode *inode, struct file *file)
413 if (expect_close == 42) {
414 wdt_stop();
415 clear_bit(0, &wdt_is_open);
416 } else {
417 printk(KERN_CRIT "wdt: WDT device closed unexpectedly. WDT will not stop!\n");
418 wdt_ping();
420 expect_close = 0;
421 return 0;
424 #ifdef CONFIG_WDT_501
426 * wdt_temp_read:
427 * @file: file handle to the watchdog board
428 * @buf: buffer to write 1 byte into
429 * @count: length of buffer
430 * @ptr: offset (no seek allowed)
432 * Temp_read reports the temperature in degrees Fahrenheit. The API is in
433 * farenheit. It was designed by an imperial measurement luddite.
436 static ssize_t wdt_temp_read(struct file *file, char __user *buf, size_t count, loff_t *ptr)
438 int temperature;
440 if (wdt_get_temperature(&temperature))
441 return -EFAULT;
443 if (copy_to_user (buf, &temperature, 1))
444 return -EFAULT;
446 return 1;
450 * wdt_temp_open:
451 * @inode: inode of device
452 * @file: file handle to device
454 * The temperature device has been opened.
457 static int wdt_temp_open(struct inode *inode, struct file *file)
459 return nonseekable_open(inode, file);
463 * wdt_temp_release:
464 * @inode: inode to board
465 * @file: file handle to board
467 * The temperature device has been closed.
470 static int wdt_temp_release(struct inode *inode, struct file *file)
472 return 0;
474 #endif /* CONFIG_WDT_501 */
477 * notify_sys:
478 * @this: our notifier block
479 * @code: the event being reported
480 * @unused: unused
482 * Our notifier is called on system shutdowns. We want to turn the card
483 * off at reboot otherwise the machine will reboot again during memory
484 * test or worse yet during the following fsck. This would suck, in fact
485 * trust me - if it happens it does suck.
488 static int wdt_notify_sys(struct notifier_block *this, unsigned long code,
489 void *unused)
491 if(code==SYS_DOWN || code==SYS_HALT) {
492 /* Turn the card off */
493 wdt_stop();
495 return NOTIFY_DONE;
499 * Kernel Interfaces
503 static struct file_operations wdt_fops = {
504 .owner = THIS_MODULE,
505 .llseek = no_llseek,
506 .write = wdt_write,
507 .ioctl = wdt_ioctl,
508 .open = wdt_open,
509 .release = wdt_release,
512 static struct miscdevice wdt_miscdev = {
513 .minor = WATCHDOG_MINOR,
514 .name = "watchdog",
515 .fops = &wdt_fops,
518 #ifdef CONFIG_WDT_501
519 static struct file_operations wdt_temp_fops = {
520 .owner = THIS_MODULE,
521 .llseek = no_llseek,
522 .read = wdt_temp_read,
523 .open = wdt_temp_open,
524 .release = wdt_temp_release,
527 static struct miscdevice temp_miscdev = {
528 .minor = TEMP_MINOR,
529 .name = "temperature",
530 .fops = &wdt_temp_fops,
532 #endif /* CONFIG_WDT_501 */
535 * The WDT card needs to learn about soft shutdowns in order to
536 * turn the timebomb registers off.
539 static struct notifier_block wdt_notifier = {
540 .notifier_call = wdt_notify_sys,
544 * cleanup_module:
546 * Unload the watchdog. You cannot do this with any file handles open.
547 * If your watchdog is set to continue ticking on close and you unload
548 * it, well it keeps ticking. We won't get the interrupt but the board
549 * will not touch PC memory so all is fine. You just have to load a new
550 * module in 60 seconds or reboot.
553 static void __exit wdt_exit(void)
555 misc_deregister(&wdt_miscdev);
556 #ifdef CONFIG_WDT_501
557 misc_deregister(&temp_miscdev);
558 #endif /* CONFIG_WDT_501 */
559 unregister_reboot_notifier(&wdt_notifier);
560 free_irq(irq, NULL);
561 release_region(io,8);
565 * wdt_init:
567 * Set up the WDT watchdog board. All we have to do is grab the
568 * resources we require and bitch if anyone beat us to them.
569 * The open() function will actually kick the board off.
572 static int __init wdt_init(void)
574 int ret;
576 /* Check that the heartbeat value is within it's range ; if not reset to the default */
577 if (wdt_set_heartbeat(heartbeat)) {
578 wdt_set_heartbeat(WD_TIMO);
579 printk(KERN_INFO "wdt: heartbeat value must be 0<heartbeat<65536, using %d\n",
580 WD_TIMO);
583 if (!request_region(io, 8, "wdt501p")) {
584 printk(KERN_ERR "wdt: I/O address 0x%04x already in use\n", io);
585 ret = -EBUSY;
586 goto out;
589 ret = request_irq(irq, wdt_interrupt, SA_INTERRUPT, "wdt501p", NULL);
590 if(ret) {
591 printk(KERN_ERR "wdt: IRQ %d is not free.\n", irq);
592 goto outreg;
595 ret = register_reboot_notifier(&wdt_notifier);
596 if(ret) {
597 printk(KERN_ERR "wdt: cannot register reboot notifier (err=%d)\n", ret);
598 goto outirq;
601 #ifdef CONFIG_WDT_501
602 ret = misc_register(&temp_miscdev);
603 if (ret) {
604 printk(KERN_ERR "wdt: cannot register miscdev on minor=%d (err=%d)\n",
605 TEMP_MINOR, ret);
606 goto outrbt;
608 #endif /* CONFIG_WDT_501 */
610 ret = misc_register(&wdt_miscdev);
611 if (ret) {
612 printk(KERN_ERR "wdt: cannot register miscdev on minor=%d (err=%d)\n",
613 WATCHDOG_MINOR, ret);
614 goto outmisc;
617 ret = 0;
618 printk(KERN_INFO "WDT500/501-P driver 0.10 at 0x%04x (Interrupt %d). heartbeat=%d sec (nowayout=%d)\n",
619 io, irq, heartbeat, nowayout);
620 #ifdef CONFIG_WDT_501
621 printk(KERN_INFO "wdt: Fan Tachometer is %s\n", (tachometer ? "Enabled" : "Disabled"));
622 #endif /* CONFIG_WDT_501 */
624 out:
625 return ret;
627 outmisc:
628 #ifdef CONFIG_WDT_501
629 misc_deregister(&temp_miscdev);
630 outrbt:
631 #endif /* CONFIG_WDT_501 */
632 unregister_reboot_notifier(&wdt_notifier);
633 outirq:
634 free_irq(irq, NULL);
635 outreg:
636 release_region(io,8);
637 goto out;
640 module_init(wdt_init);
641 module_exit(wdt_exit);
643 MODULE_AUTHOR("Alan Cox");
644 MODULE_DESCRIPTION("Driver for ISA ICS watchdog cards (WDT500/501)");
645 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
646 MODULE_ALIAS_MISCDEV(TEMP_MINOR);
647 MODULE_LICENSE("GPL");