2 * mpc8xx_wdt.c - MPC8xx watchdog userspace interface
4 * Author: Florian Schirmer <jolt@tuxbox.org>
6 * 2002 (c) Florian Schirmer <jolt@tuxbox.org> This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
12 #include <linux/config.h>
14 #include <linux/init.h>
15 #include <linux/kernel.h>
16 #include <linux/miscdevice.h>
17 #include <linux/module.h>
18 #include <linux/watchdog.h>
19 #include <asm/8xx_immap.h>
20 #include <asm/uaccess.h>
22 #include <syslib/m8xx_wdt.h>
24 static unsigned long wdt_opened;
25 static int wdt_status;
27 static void mpc8xx_wdt_handler_disable(void)
29 volatile uint __iomem *piscr;
30 piscr = (uint *)&((immap_t*)IMAP_ADDR)->im_sit.sit_piscr;
32 if (!m8xx_has_internal_rtc)
33 m8xx_wdt_stop_timer();
35 out_be32(piscr, in_be32(piscr) & ~(PISCR_PIE | PISCR_PTE));
37 printk(KERN_NOTICE "mpc8xx_wdt: keep-alive handler deactivated\n");
40 static void mpc8xx_wdt_handler_enable(void)
42 volatile uint __iomem *piscr;
43 piscr = (uint *)&((immap_t*)IMAP_ADDR)->im_sit.sit_piscr;
45 if (!m8xx_has_internal_rtc)
46 m8xx_wdt_install_timer();
48 out_be32(piscr, in_be32(piscr) | PISCR_PIE | PISCR_PTE);
50 printk(KERN_NOTICE "mpc8xx_wdt: keep-alive handler activated\n");
53 static int mpc8xx_wdt_open(struct inode *inode, struct file *file)
55 if (test_and_set_bit(0, &wdt_opened))
59 mpc8xx_wdt_handler_disable();
64 static int mpc8xx_wdt_release(struct inode *inode, struct file *file)
68 #if !defined(CONFIG_WATCHDOG_NOWAYOUT)
69 mpc8xx_wdt_handler_enable();
72 clear_bit(0, &wdt_opened);
77 static ssize_t mpc8xx_wdt_write(struct file *file, const char *data, size_t len,
86 static int mpc8xx_wdt_ioctl(struct inode *inode, struct file *file,
87 unsigned int cmd, unsigned long arg)
90 static struct watchdog_info info = {
91 .options = WDIOF_KEEPALIVEPING,
92 .firmware_version = 0,
93 .identity = "MPC8xx watchdog",
97 case WDIOC_GETSUPPORT:
98 if (copy_to_user((void *)arg, &info, sizeof(info)))
102 case WDIOC_GETSTATUS:
103 case WDIOC_GETBOOTSTATUS:
104 if (put_user(wdt_status, (int *)arg))
106 wdt_status &= ~WDIOF_KEEPALIVEPING;
112 case WDIOC_SETOPTIONS:
115 case WDIOC_KEEPALIVE:
117 wdt_status |= WDIOF_KEEPALIVEPING;
120 case WDIOC_SETTIMEOUT:
123 case WDIOC_GETTIMEOUT:
124 timeout = m8xx_wdt_get_timeout();
125 if (put_user(timeout, (int *)arg))
136 static struct file_operations mpc8xx_wdt_fops = {
137 .owner = THIS_MODULE,
139 .write = mpc8xx_wdt_write,
140 .ioctl = mpc8xx_wdt_ioctl,
141 .open = mpc8xx_wdt_open,
142 .release = mpc8xx_wdt_release,
145 static struct miscdevice mpc8xx_wdt_miscdev = {
146 .minor = WATCHDOG_MINOR,
148 .fops = &mpc8xx_wdt_fops,
151 static int __init mpc8xx_wdt_init(void)
153 return misc_register(&mpc8xx_wdt_miscdev);
156 static void __exit mpc8xx_wdt_exit(void)
158 misc_deregister(&mpc8xx_wdt_miscdev);
161 mpc8xx_wdt_handler_enable();
164 module_init(mpc8xx_wdt_init);
165 module_exit(mpc8xx_wdt_exit);
167 MODULE_AUTHOR("Florian Schirmer <jolt@tuxbox.org>");
168 MODULE_DESCRIPTION("MPC8xx watchdog driver");
169 MODULE_LICENSE("GPL");
170 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);