2 * mpc83xx_wdt.c - MPC83xx watchdog userspace interface
4 * Authors: Dave Updegraff <dave@cray.org>
5 * Kumar Gala <galak@kernel.crashing.org>
6 * Attribution: from 83xx_wst: Florian Schirmer <jolt@tuxbox.org>
9 * Note: it appears that you can only actually ENABLE or DISABLE the thing
10 * once after POR. Once enabled, you cannot disable, and vice versa.
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
18 #include <linux/config.h>
20 #include <linux/init.h>
21 #include <linux/kernel.h>
22 #include <linux/miscdevice.h>
23 #include <linux/platform_device.h>
24 #include <linux/module.h>
25 #include <linux/watchdog.h>
27 #include <asm/uaccess.h>
31 __be32 swcrr; /* System watchdog control register */
32 #define SWCRR_SWTC 0xFFFF0000 /* Software Watchdog Time Count. */
33 #define SWCRR_SWEN 0x00000004 /* Watchdog Enable bit. */
34 #define SWCRR_SWRI 0x00000002 /* Software Watchdog Reset/Interrupt Select bit.*/
35 #define SWCRR_SWPR 0x00000001 /* Software Watchdog Counter Prescale bit. */
36 __be32 swcnr; /* System watchdog count register */
38 __be16 swsrr; /* System watchdog service register */
42 static struct mpc83xx_wdt __iomem *wd_base;
44 static u16 timeout = 0xffff;
45 module_param(timeout, ushort, 0);
46 MODULE_PARM_DESC(timeout, "Watchdog timeout in ticks. (0<timeout<65536, default=65535");
49 module_param(reset, bool, 0);
50 MODULE_PARM_DESC(reset, "Watchdog Interrupt/Reset Mode. 0 = interrupt, 1 = reset");
53 * We always prescale, but if someone really doesn't want to they can set this
56 static int prescale = 1;
57 static unsigned int timeout_sec;
59 static unsigned long wdt_is_open;
60 static spinlock_t wdt_spinlock;
62 static void mpc83xx_wdt_keepalive(void)
65 spin_lock(&wdt_spinlock);
66 out_be16(&wd_base->swsrr, 0x556c);
67 out_be16(&wd_base->swsrr, 0xaa39);
68 spin_unlock(&wdt_spinlock);
71 static ssize_t mpc83xx_wdt_write(struct file *file, const char __user *buf,
72 size_t count, loff_t *ppos)
75 mpc83xx_wdt_keepalive();
79 static int mpc83xx_wdt_open(struct inode *inode, struct file *file)
82 if (test_and_set_bit(0, &wdt_is_open))
85 /* Once we start the watchdog we can't stop it */
86 __module_get(THIS_MODULE);
88 /* Good, fire up the show */
96 out_be32(&wd_base->swcrr, tmp);
98 return nonseekable_open(inode, file);
101 static int mpc83xx_wdt_release(struct inode *inode, struct file *file)
103 printk(KERN_CRIT "Unexpected close, not stopping watchdog!\n");
104 mpc83xx_wdt_keepalive();
105 clear_bit(0, &wdt_is_open);
109 static int mpc83xx_wdt_ioctl(struct inode *inode, struct file *file,
110 unsigned int cmd, unsigned long arg)
112 void __user *argp = (void __user *)arg;
113 int __user *p = argp;
114 static struct watchdog_info ident = {
115 .options = WDIOF_KEEPALIVEPING,
116 .firmware_version = 1,
117 .identity = "MPC83xx",
121 case WDIOC_GETSUPPORT:
122 return copy_to_user(argp, &ident, sizeof(ident)) ? -EFAULT : 0;
123 case WDIOC_KEEPALIVE:
124 mpc83xx_wdt_keepalive();
126 case WDIOC_GETTIMEOUT:
127 return put_user(timeout_sec, p);
133 static struct file_operations mpc83xx_wdt_fops = {
134 .owner = THIS_MODULE,
136 .write = mpc83xx_wdt_write,
137 .ioctl = mpc83xx_wdt_ioctl,
138 .open = mpc83xx_wdt_open,
139 .release = mpc83xx_wdt_release,
142 static struct miscdevice mpc83xx_wdt_miscdev = {
143 .minor = WATCHDOG_MINOR,
145 .fops = &mpc83xx_wdt_fops,
148 static int __devinit mpc83xx_wdt_probe(struct platform_device *dev)
152 unsigned int *freq = dev->dev.platform_data;
154 /* get a pointer to the register memory */
155 r = platform_get_resource(dev, IORESOURCE_MEM, 0);
162 wd_base = ioremap(r->start, sizeof (struct mpc83xx_wdt));
164 if (wd_base == NULL) {
169 ret = misc_register(&mpc83xx_wdt_miscdev);
171 printk(KERN_ERR "cannot register miscdev on minor=%d "
173 WATCHDOG_MINOR, ret);
177 /* Calculate the timeout in seconds */
179 timeout_sec = (timeout * 0x10000) / (*freq);
181 timeout_sec = timeout / (*freq);
183 printk(KERN_INFO "WDT driver for MPC83xx initialized. "
184 "mode:%s timeout=%d (%d seconds)\n",
185 reset ? "reset":"interrupt", timeout, timeout_sec);
187 spin_lock_init(&wdt_spinlock);
197 static int __devexit mpc83xx_wdt_remove(struct platform_device *dev)
199 misc_deregister(&mpc83xx_wdt_miscdev);
205 static struct platform_driver mpc83xx_wdt_driver = {
206 .probe = mpc83xx_wdt_probe,
207 .remove = __devexit_p(mpc83xx_wdt_remove),
209 .name = "mpc83xx_wdt",
213 static int __init mpc83xx_wdt_init(void)
215 return platform_driver_register(&mpc83xx_wdt_driver);
218 static void __exit mpc83xx_wdt_exit(void)
220 platform_driver_unregister(&mpc83xx_wdt_driver);
223 module_init(mpc83xx_wdt_init);
224 module_exit(mpc83xx_wdt_exit);
226 MODULE_AUTHOR("Dave Updegraff, Kumar Gala");
227 MODULE_DESCRIPTION("Driver for watchdog timer in MPC83xx uProcessor");
228 MODULE_LICENSE("GPL");
229 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);