commented early_printk patch because of rejects.
[linux-flexiantxendom0-3.2.10.git] / drivers / char / watchdog / sa1100_wdt.c
1 /*
2  *      Watchdog driver for the SA11x0
3  *
4  *      (c) Copyright 2000 Oleg Drokin <green@crimea.edu>
5  *          Based on SoftDog driver by Alan Cox <alan@redhat.com>
6  *
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.
11  *
12  *      Neither Oleg Drokin nor iXcelerator.com admit liability nor provide
13  *      warranty for any of this software. This material is provided
14  *      "AS-IS" and at no charge.
15  *
16  *      (c) Copyright 2000           Oleg Drokin <green@crimea.edu>
17  *
18  *      27/11/2000 Initial release
19  */
20 #include <linux/config.h>
21 #include <linux/module.h>
22 #include <linux/moduleparam.h>
23 #include <linux/types.h>
24 #include <linux/kernel.h>
25 #include <linux/fs.h>
26 #include <linux/miscdevice.h>
27 #include <linux/watchdog.h>
28 #include <linux/init.h>
29
30 #include <asm/hardware.h>
31 #include <asm/bitops.h>
32 #include <asm/uaccess.h>
33
34 #define OSCR_FREQ               3686400
35 #define SA1100_CLOSE_MAGIC      (0x5afc4453)
36
37 static unsigned long sa1100wdt_users;
38 static int expect_close;
39 static int pre_margin;
40 static int boot_status;
41 #ifdef CONFIG_WATCHDOG_NOWAYOUT
42 static int nowayout = 1;
43 #else
44 static int nowayout = 0;
45 #endif
46
47 /*
48  *      Allow only one person to hold it open
49  */
50 static int sa1100dog_open(struct inode *inode, struct file *file)
51 {
52         if (test_and_set_bit(1,&sa1100wdt_users))
53                 return -EBUSY;
54
55         /* Activate SA1100 Watchdog timer */
56         OSMR3 = OSCR + pre_margin;
57         OSSR = OSSR_M3;
58         OWER = OWER_WME;
59         OIER |= OIER_E3;
60         return 0;
61 }
62
63 /*
64  *      Shut off the timer.
65  *      Lock it in if it's a module and we defined ...NOWAYOUT
66  *      Oddly, the watchdog can only be enabled, but we can turn off
67  *      the interrupt, which appears to prevent the watchdog timing out.
68  */
69 static int sa1100dog_release(struct inode *inode, struct file *file)
70 {
71         OSMR3 = OSCR + pre_margin;
72
73         if (expect_close == SA1100_CLOSE_MAGIC) {
74                 OIER &= ~OIER_E3;
75         } else {
76                 printk(KERN_CRIT "WATCHDOG: WDT device closed unexpectedly.  WDT will not stop!\n");
77         }
78
79         clear_bit(1, &sa1100wdt_users);
80
81         return 0;
82 }
83
84 static ssize_t sa1100dog_write(struct file *file, const char *data, size_t len, loff_t *ppos)
85 {
86         /* Can't seek (pwrite) on this device  */
87         if (ppos != &file->f_pos)
88                 return -ESPIPE;
89
90         if (len) {
91                 if (!nowayout) {
92                         size_t i;
93
94                         expect_close = 0;
95
96                         for (i = 0; i != len; i++) {
97                                 char c;
98
99                                 if (get_user(c, data + i))
100                                         return -EFAULT;
101                                 if (c == 'V')
102                                         expect_close = SA1100_CLOSE_MAGIC;
103                         }
104                 }
105                 /* Refresh OSMR3 timer. */
106                 OSMR3 = OSCR + pre_margin;
107         }
108
109         return len ? 1 : 0;
110 }
111
112 static struct watchdog_info ident = {
113         .options        = WDIOF_CARDRESET | WDIOF_MAGICCLOSE |
114                           WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
115         .identity       = "SA1100 Watchdog",
116 };
117
118 static int sa1100dog_ioctl(struct inode *inode, struct file *file,
119         unsigned int cmd, unsigned long arg)
120 {
121         int ret = -ENOIOCTLCMD;
122         int time;
123
124         switch (cmd) {
125         case WDIOC_GETSUPPORT:
126                 ret = copy_to_user((struct watchdog_info *)arg, &ident,
127                                    sizeof(ident)) ? -EFAULT : 0;
128                 break;
129
130         case WDIOC_GETSTATUS:
131                 ret = put_user(0, (int *)arg);
132                 break;
133
134         case WDIOC_GETBOOTSTATUS:
135                 ret = put_user(boot_status, (int *)arg);
136                 break;
137
138         case WDIOC_SETTIMEOUT:
139                 ret = get_user(time, (int *)arg);
140                 if (ret)
141                         break;
142
143                 if (time <= 0 || time > 255) {
144                         ret = -EINVAL;
145                         break;
146                 }
147
148                 pre_margin = OSCR_FREQ * time;
149                 OSMR3 = OSCR + pre_margin;
150                 /*fall through*/
151
152         case WDIOC_GETTIMEOUT:
153                 ret = put_user(pre_margin / OSCR_FREQ, (int *)arg);
154                 break;
155
156         case WDIOC_KEEPALIVE:
157                 OSMR3 = OSCR + pre_margin;
158                 ret = 0;
159                 break;
160         }
161         return ret;
162 }
163
164 static struct file_operations sa1100dog_fops =
165 {
166         .owner          = THIS_MODULE,
167         .write          = sa1100dog_write,
168         .ioctl          = sa1100dog_ioctl,
169         .open           = sa1100dog_open,
170         .release        = sa1100dog_release,
171 };
172
173 static struct miscdevice sa1100dog_miscdev =
174 {
175         .minor          = WATCHDOG_MINOR,
176         .name           = "SA1100 watchdog",
177         .fops           = &sa1100dog_fops,
178 };
179
180 static int margin __initdata = 60;              /* (secs) Default is 1 minute */
181
182 static int __init sa1100dog_init(void)
183 {
184         int ret;
185
186         /*
187          * Read the reset status, and save it for later.  If
188          * we suspend, RCSR will be cleared, and the watchdog
189          * reset reason will be lost.
190          */
191         boot_status = (RCSR & RCSR_WDR) ? WDIOF_CARDRESET : 0;
192         pre_margin = OSCR_FREQ * margin;
193
194         ret = misc_register(&sa1100dog_miscdev);
195         if (ret == 0)
196                 printk("SA1100 Watchdog Timer: timer margin %d sec\n",
197                        margin);
198
199         return ret;
200 }
201
202 static void __exit sa1100dog_exit(void)
203 {
204         misc_deregister(&sa1100dog_miscdev);
205 }
206
207 module_init(sa1100dog_init);
208 module_exit(sa1100dog_exit);
209
210 MODULE_AUTHOR("Oleg Drokin <green@crimea.edu>");
211 MODULE_DESCRIPTION("SA1100 Watchdog");
212
213 module_param(margin, int, 0);
214 MODULE_PARM_DESC(margin, "Watchdog margin in seconds (default 60s)");
215
216 module_param(nowayout, int, 0);
217 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started");
218
219 MODULE_LICENSE("GPL");