blob: 1336425acf20cf3ea50b0b322419b255954a1309 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mpc8xx_wdt.c - MPC8xx watchdog userspace interface
3 *
4 * Author: Florian Schirmer <jolt@tuxbox.org>
5 *
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
9 * or implied.
10 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/fs.h>
13#include <linux/init.h>
14#include <linux/kernel.h>
15#include <linux/miscdevice.h>
16#include <linux/module.h>
17#include <linux/watchdog.h>
18#include <asm/8xx_immap.h>
Alan Coxf26ef3d2008-05-19 14:07:09 +010019#include <linux/uaccess.h>
20#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <syslib/m8xx_wdt.h>
22
23static unsigned long wdt_opened;
24static int wdt_status;
Alan Coxf26ef3d2008-05-19 14:07:09 +010025static spinlock_t wdt_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27static void mpc8xx_wdt_handler_disable(void)
28{
Marcelo Tosatti398f6852005-12-05 19:31:36 -020029 volatile uint __iomem *piscr;
Alan Coxf26ef3d2008-05-19 14:07:09 +010030 piscr = (uint *)&((immap_t *)IMAP_ADDR)->im_sit.sit_piscr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Marcelo Tosattifb64c242005-11-24 11:32:09 -020032 if (!m8xx_has_internal_rtc)
33 m8xx_wdt_stop_timer();
34 else
Marcelo Tosatti398f6852005-12-05 19:31:36 -020035 out_be32(piscr, in_be32(piscr) & ~(PISCR_PIE | PISCR_PTE));
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 printk(KERN_NOTICE "mpc8xx_wdt: keep-alive handler deactivated\n");
37}
38
39static void mpc8xx_wdt_handler_enable(void)
40{
Marcelo Tosatti398f6852005-12-05 19:31:36 -020041 volatile uint __iomem *piscr;
Alan Coxf26ef3d2008-05-19 14:07:09 +010042 piscr = (uint *)&((immap_t *)IMAP_ADDR)->im_sit.sit_piscr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Marcelo Tosattifb64c242005-11-24 11:32:09 -020044 if (!m8xx_has_internal_rtc)
45 m8xx_wdt_install_timer();
46 else
Marcelo Tosatti398f6852005-12-05 19:31:36 -020047 out_be32(piscr, in_be32(piscr) | PISCR_PIE | PISCR_PTE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 printk(KERN_NOTICE "mpc8xx_wdt: keep-alive handler activated\n");
49}
50
51static int mpc8xx_wdt_open(struct inode *inode, struct file *file)
52{
53 if (test_and_set_bit(0, &wdt_opened))
54 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 m8xx_wdt_reset();
56 mpc8xx_wdt_handler_disable();
Wim Van Sebroeckec9505a2007-07-20 20:41:37 +000057 return nonseekable_open(inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
60static int mpc8xx_wdt_release(struct inode *inode, struct file *file)
61{
62 m8xx_wdt_reset();
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#if !defined(CONFIG_WATCHDOG_NOWAYOUT)
64 mpc8xx_wdt_handler_enable();
65#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 clear_bit(0, &wdt_opened);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 return 0;
68}
69
Alan Coxf26ef3d2008-05-19 14:07:09 +010070static ssize_t mpc8xx_wdt_write(struct file *file, const char *data,
71 size_t len, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Alan Coxf26ef3d2008-05-19 14:07:09 +010073 if (len) {
74 spin_lock(&wdt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 m8xx_wdt_reset();
Alan Coxf26ef3d2008-05-19 14:07:09 +010076 spin_unlock(&wdt_lock);
77 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return len;
79}
80
Alan Coxf26ef3d2008-05-19 14:07:09 +010081static long mpc8xx_wdt_ioctl(struct file *file,
82 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84 int timeout;
85 static struct watchdog_info info = {
86 .options = WDIOF_KEEPALIVEPING,
87 .firmware_version = 0,
88 .identity = "MPC8xx watchdog",
89 };
90
91 switch (cmd) {
92 case WDIOC_GETSUPPORT:
93 if (copy_to_user((void *)arg, &info, sizeof(info)))
94 return -EFAULT;
95 break;
96
97 case WDIOC_GETSTATUS:
98 case WDIOC_GETBOOTSTATUS:
99 if (put_user(wdt_status, (int *)arg))
100 return -EFAULT;
101 wdt_status &= ~WDIOF_KEEPALIVEPING;
102 break;
103
104 case WDIOC_GETTEMP:
105 return -EOPNOTSUPP;
106
107 case WDIOC_SETOPTIONS:
108 return -EOPNOTSUPP;
109
110 case WDIOC_KEEPALIVE:
Alan Coxf26ef3d2008-05-19 14:07:09 +0100111 spin_lock(&wdt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 m8xx_wdt_reset();
113 wdt_status |= WDIOF_KEEPALIVEPING;
Alan Coxf26ef3d2008-05-19 14:07:09 +0100114 spin_unlock(&wdt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 break;
116
117 case WDIOC_SETTIMEOUT:
118 return -EOPNOTSUPP;
119
120 case WDIOC_GETTIMEOUT:
Alan Coxf26ef3d2008-05-19 14:07:09 +0100121 spin_lock(&wdt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 timeout = m8xx_wdt_get_timeout();
Alan Coxf26ef3d2008-05-19 14:07:09 +0100123 spin_unlock(&wdt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (put_user(timeout, (int *)arg))
125 return -EFAULT;
126 break;
127
128 default:
Samuel Tardieu795b89d2006-09-09 17:34:31 +0200129 return -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131
132 return 0;
133}
134
Arjan van de Ven62322d22006-07-03 00:24:21 -0700135static const struct file_operations mpc8xx_wdt_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .owner = THIS_MODULE,
137 .llseek = no_llseek,
138 .write = mpc8xx_wdt_write,
Alan Coxf26ef3d2008-05-19 14:07:09 +0100139 .unlocked_ioctl = mpc8xx_wdt_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 .open = mpc8xx_wdt_open,
141 .release = mpc8xx_wdt_release,
142};
143
144static struct miscdevice mpc8xx_wdt_miscdev = {
145 .minor = WATCHDOG_MINOR,
146 .name = "watchdog",
147 .fops = &mpc8xx_wdt_fops,
148};
149
150static int __init mpc8xx_wdt_init(void)
151{
Alan Coxf26ef3d2008-05-19 14:07:09 +0100152 spin_lock_init(&wdt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return misc_register(&mpc8xx_wdt_miscdev);
154}
155
156static void __exit mpc8xx_wdt_exit(void)
157{
158 misc_deregister(&mpc8xx_wdt_miscdev);
159
160 m8xx_wdt_reset();
161 mpc8xx_wdt_handler_enable();
162}
163
164module_init(mpc8xx_wdt_init);
165module_exit(mpc8xx_wdt_exit);
166
167MODULE_AUTHOR("Florian Schirmer <jolt@tuxbox.org>");
168MODULE_DESCRIPTION("MPC8xx watchdog driver");
169MODULE_LICENSE("GPL");
170MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);