2 * sma cpu5 watchdog driver
4 * Copyright (C) 2003 Heiko Ronsdorf <hero@ihg.uni-duisburg.de>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24 #include <linux/module.h>
25 #include <linux/moduleparam.h>
26 #include <linux/types.h>
27 #include <linux/errno.h>
28 #include <linux/miscdevice.h>
30 #include <linux/init.h>
31 #include <linux/ioport.h>
32 #include <linux/timer.h>
33 #include <linux/completion.h>
34 #include <linux/jiffies.h>
36 #include <linux/uaccess.h>
37 #include <linux/watchdog.h>
39 /* adjustable parameters */
42 static int port
= 0x91;
43 static int ticks
= 10000;
44 static DEFINE_SPINLOCK(cpu5wdt_lock
);
46 #define PFX "cpu5wdt: "
48 #define CPU5WDT_EXTENT 0x0A
50 #define CPU5WDT_STATUS_REG 0x00
51 #define CPU5WDT_TIME_A_REG 0x02
52 #define CPU5WDT_TIME_B_REG 0x03
53 #define CPU5WDT_MODE_REG 0x04
54 #define CPU5WDT_TRIGGER_REG 0x07
55 #define CPU5WDT_ENABLE_REG 0x08
56 #define CPU5WDT_RESET_REG 0x09
58 #define CPU5WDT_INTERVAL (HZ/10+1)
60 /* some device data */
63 struct completion stop
;
65 struct timer_list timer
;
71 /* generic helper functions */
73 static void cpu5wdt_trigger(unsigned long unused
)
76 pr_debug("trigger at %i ticks\n", ticks
);
78 if (cpu5wdt_device
.running
)
81 spin_lock(&cpu5wdt_lock
);
82 /* keep watchdog alive */
83 outb(1, port
+ CPU5WDT_TRIGGER_REG
);
86 if (cpu5wdt_device
.queue
&& ticks
)
87 mod_timer(&cpu5wdt_device
.timer
, jiffies
+ CPU5WDT_INTERVAL
);
89 /* ticks doesn't matter anyway */
90 complete(&cpu5wdt_device
.stop
);
92 spin_unlock(&cpu5wdt_lock
);
96 static void cpu5wdt_reset(void)
98 ticks
= cpu5wdt_device
.default_ticks
;
101 pr_debug("reset (%i ticks)\n", (int) ticks
);
105 static void cpu5wdt_start(void)
109 spin_lock_irqsave(&cpu5wdt_lock
, flags
);
110 if (!cpu5wdt_device
.queue
) {
111 cpu5wdt_device
.queue
= 1;
112 outb(0, port
+ CPU5WDT_TIME_A_REG
);
113 outb(0, port
+ CPU5WDT_TIME_B_REG
);
114 outb(1, port
+ CPU5WDT_MODE_REG
);
115 outb(0, port
+ CPU5WDT_RESET_REG
);
116 outb(0, port
+ CPU5WDT_ENABLE_REG
);
117 mod_timer(&cpu5wdt_device
.timer
, jiffies
+ CPU5WDT_INTERVAL
);
119 /* if process dies, counter is not decremented */
120 cpu5wdt_device
.running
++;
121 spin_unlock_irqrestore(&cpu5wdt_lock
, flags
);
124 static int cpu5wdt_stop(void)
128 spin_lock_irqsave(&cpu5wdt_lock
, flags
);
129 if (cpu5wdt_device
.running
)
130 cpu5wdt_device
.running
= 0;
131 ticks
= cpu5wdt_device
.default_ticks
;
132 spin_unlock_irqrestore(&cpu5wdt_lock
, flags
);
134 pr_crit("stop not possible\n");
138 /* filesystem operations */
140 static int cpu5wdt_open(struct inode
*inode
, struct file
*file
)
142 if (test_and_set_bit(0, &cpu5wdt_device
.inuse
))
144 return nonseekable_open(inode
, file
);
147 static int cpu5wdt_release(struct inode
*inode
, struct file
*file
)
149 clear_bit(0, &cpu5wdt_device
.inuse
);
153 static long cpu5wdt_ioctl(struct file
*file
, unsigned int cmd
,
156 void __user
*argp
= (void __user
*)arg
;
157 int __user
*p
= argp
;
159 static const struct watchdog_info ident
= {
160 .options
= WDIOF_CARDRESET
,
161 .identity
= "CPU5 WDT",
165 case WDIOC_GETSUPPORT
:
166 if (copy_to_user(argp
, &ident
, sizeof(ident
)))
169 case WDIOC_GETSTATUS
:
170 value
= inb(port
+ CPU5WDT_STATUS_REG
);
171 value
= (value
>> 2) & 1;
172 return put_user(value
, p
);
173 case WDIOC_GETBOOTSTATUS
:
174 return put_user(0, p
);
175 case WDIOC_SETOPTIONS
:
176 if (get_user(value
, p
))
178 if (value
& WDIOS_ENABLECARD
)
180 if (value
& WDIOS_DISABLECARD
)
183 case WDIOC_KEEPALIVE
:
192 static ssize_t
cpu5wdt_write(struct file
*file
, const char __user
*buf
,
193 size_t count
, loff_t
*ppos
)
201 static const struct file_operations cpu5wdt_fops
= {
202 .owner
= THIS_MODULE
,
204 .unlocked_ioctl
= cpu5wdt_ioctl
,
205 .open
= cpu5wdt_open
,
206 .write
= cpu5wdt_write
,
207 .release
= cpu5wdt_release
,
210 static struct miscdevice cpu5wdt_misc
= {
211 .minor
= WATCHDOG_MINOR
,
213 .fops
= &cpu5wdt_fops
,
216 /* init/exit function */
218 static int __devinit
cpu5wdt_init(void)
224 pr_debug("port=0x%x, verbose=%i\n", port
, verbose
);
226 init_completion(&cpu5wdt_device
.stop
);
227 cpu5wdt_device
.queue
= 0;
228 setup_timer(&cpu5wdt_device
.timer
, cpu5wdt_trigger
, 0);
229 cpu5wdt_device
.default_ticks
= ticks
;
231 if (!request_region(port
, CPU5WDT_EXTENT
, PFX
)) {
232 pr_err("request_region failed\n");
237 /* watchdog reboot? */
238 val
= inb(port
+ CPU5WDT_STATUS_REG
);
239 val
= (val
>> 2) & 1;
241 pr_info("sorry, was my fault\n");
243 err
= misc_register(&cpu5wdt_misc
);
245 pr_err("misc_register failed\n");
250 pr_info("init success\n");
254 release_region(port
, CPU5WDT_EXTENT
);
259 static int __devinit
cpu5wdt_init_module(void)
261 return cpu5wdt_init();
264 static void __devexit
cpu5wdt_exit(void)
266 if (cpu5wdt_device
.queue
) {
267 cpu5wdt_device
.queue
= 0;
268 wait_for_completion(&cpu5wdt_device
.stop
);
271 misc_deregister(&cpu5wdt_misc
);
273 release_region(port
, CPU5WDT_EXTENT
);
277 static void __devexit
cpu5wdt_exit_module(void)
282 /* module entry points */
284 module_init(cpu5wdt_init_module
);
285 module_exit(cpu5wdt_exit_module
);
287 MODULE_AUTHOR("Heiko Ronsdorf <hero@ihg.uni-duisburg.de>");
288 MODULE_DESCRIPTION("sma cpu5 watchdog driver");
289 MODULE_SUPPORTED_DEVICE("sma cpu5 watchdog");
290 MODULE_LICENSE("GPL");
291 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);
293 module_param(port
, int, 0);
294 MODULE_PARM_DESC(port
, "base address of watchdog card, default is 0x91");
296 module_param(verbose
, int, 0);
297 MODULE_PARM_DESC(verbose
, "be verbose, default is 0 (no)");
299 module_param(ticks
, int, 0);
300 MODULE_PARM_DESC(ticks
, "count down ticks, default is 10000");