blob: 78b6540e8747789839b962c63fe75ebcc6051aac [file] [log] [blame]
Marcus Junkerf9a8c892006-08-24 17:11:50 +02001/*
Samuel Tardieude710d62006-09-07 11:57:00 +02002 * w83697hf/hg WDT driver
Marcus Junkerf9a8c892006-08-24 17:11:50 +02003 *
4 * (c) Copyright 2006 Marcus Junker <junker@anduras.de>
5 *
Samuel Tardieude710d62006-09-07 11:57:00 +02006 * Based on w83627hf_wdt.c which is based on advantechwdt.c
7 * which is based on wdt.c.
Marcus Junkerf9a8c892006-08-24 17:11:50 +02008 * Original copyright messages:
9 *
Samuel Tardieudb165252006-09-07 11:57:00 +020010 * (c) Copyright 2003 Pádraig Brady <P@draigBrady.com>
Marcus Junkerf9a8c892006-08-24 17:11:50 +020011 *
12 * (c) Copyright 2000-2001 Marek Michalkiewicz <marekm@linux.org.pl>
13 *
14 * (c) Copyright 1996 Alan Cox <alan@redhat.com>, All Rights Reserved.
15 * http://www.redhat.com
16 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License
19 * as published by the Free Software Foundation; either version
20 * 2 of the License, or (at your option) any later version.
21 *
22 * Neither Marcus Junker nor ANDURAS AG admit liability nor provide
23 * warranty for any of this software. This material is provided
24 * "AS-IS" and at no charge.
25 */
26
27#include <linux/module.h>
28#include <linux/moduleparam.h>
29#include <linux/types.h>
30#include <linux/miscdevice.h>
31#include <linux/watchdog.h>
32#include <linux/fs.h>
33#include <linux/ioport.h>
34#include <linux/notifier.h>
35#include <linux/reboot.h>
36#include <linux/init.h>
Wim Van Sebroeckab9d4412006-09-02 18:50:20 +020037#include <linux/spinlock.h>
Marcus Junkerf9a8c892006-08-24 17:11:50 +020038
39#include <asm/io.h>
40#include <asm/uaccess.h>
41#include <asm/system.h>
42
Samuel Tardieude710d62006-09-07 11:57:00 +020043#define WATCHDOG_NAME "w83697hf/hg WDT"
Marcus Junkerf9a8c892006-08-24 17:11:50 +020044#define PFX WATCHDOG_NAME ": "
45#define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */
46
47static unsigned long wdt_is_open;
48static char expect_close;
Wim Van Sebroeckab9d4412006-09-02 18:50:20 +020049static spinlock_t io_lock;
Marcus Junkerf9a8c892006-08-24 17:11:50 +020050
51/* You must set this - there is no sane way to probe for this board. */
Samuel Tardieuc81b2992006-09-07 11:57:00 +020052static int wdt_io = 0x2e;
Marcus Junkerf9a8c892006-08-24 17:11:50 +020053module_param(wdt_io, int, 0);
Samuel Tardieuc81b2992006-09-07 11:57:00 +020054MODULE_PARM_DESC(wdt_io, "w83697hf/hg WDT io port (default 0x2e, 0 = autodetect)");
Marcus Junkerf9a8c892006-08-24 17:11:50 +020055
56static int timeout = WATCHDOG_TIMEOUT; /* in seconds */
57module_param(timeout, int, 0);
Samuel Tardieueb644192006-09-07 11:57:00 +020058MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds. 1<= timeout <=255, default=" __MODULE_STRING(WATCHDOG_TIMEOUT) ".");
Marcus Junkerf9a8c892006-08-24 17:11:50 +020059
60static int nowayout = WATCHDOG_NOWAYOUT;
61module_param(nowayout, int, 0);
62MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=CONFIG_WATCHDOG_NOWAYOUT)");
63
64/*
65 * Kernel methods.
66 */
67
Samuel Tardieu44d7d322006-09-07 11:57:00 +020068#define W83697HF_EFER (wdt_io+0) /* Extended Function Enable Register */
69#define W83697HF_EFIR (wdt_io+0) /* Extended Function Index Register (same as EFER) */
70#define W83697HF_EFDR (wdt_io+1) /* Extended Function Data Register */
Marcus Junkerf9a8c892006-08-24 17:11:50 +020071
Samuel Tardieuf7be3322006-09-07 11:57:00 +020072static inline void
73w83697hf_unlock(void)
Marcus Junkerf9a8c892006-08-24 17:11:50 +020074{
Samuel Tardieu44d7d322006-09-07 11:57:00 +020075 outb_p(0x87, W83697HF_EFER); /* Enter extended function mode */
76 outb_p(0x87, W83697HF_EFER); /* Again according to manual */
Samuel Tardieuf7be3322006-09-07 11:57:00 +020077}
78
Samuel Tardieufe851eb2006-09-07 11:57:00 +020079static inline void
80w83697hf_lock(void)
81{
82 outb_p(0xAA, W83697HF_EFER); /* Leave extended function mode */
83}
84
Samuel Tardieu0cd54472006-09-07 11:57:00 +020085/*
Samuel Tardieud46ab592006-09-07 11:57:00 +020086 * The three functions w83697hf_get_reg(), w83697hf_set_reg() and
87 * w83697hf_write_timeout() must be called with the device unlocked.
Samuel Tardieu0cd54472006-09-07 11:57:00 +020088 */
89
90static unsigned char
91w83697hf_get_reg(unsigned char reg)
92{
93 outb_p(reg, W83697HF_EFIR);
94 return inb_p(W83697HF_EFDR);
95}
96
97static void
98w83697hf_set_reg(unsigned char reg, unsigned char data)
99{
100 outb_p(reg, W83697HF_EFIR);
101 outb_p(data, W83697HF_EFDR);
102}
103
Samuel Tardieuf7be3322006-09-07 11:57:00 +0200104static void
Samuel Tardieud46ab592006-09-07 11:57:00 +0200105w83697hf_write_timeout(int timeout)
106{
107 w83697hf_set_reg(0xF4, timeout); /* Write Timeout counter to CRF4 */
108}
109
110static void
Samuel Tardieua7933e02006-09-07 11:57:00 +0200111w83697hf_select_wdt(void)
112{
113 w83697hf_unlock();
114 w83697hf_set_reg(0x07, 0x08); /* Switch to logic device 8 (GPIO2) */
115}
116
117static inline void
118w83697hf_deselect_wdt(void)
119{
120 w83697hf_lock();
121}
122
123static void
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200124w83697hf_init(void)
125{
Samuel Tardieub7b98682006-09-07 11:57:00 +0200126 unsigned char bbuf;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200127
Samuel Tardieufa69afd2006-09-07 11:57:00 +0200128 w83697hf_select_wdt();
129
Samuel Tardieub7b98682006-09-07 11:57:00 +0200130 bbuf = w83697hf_get_reg(0x29);
131 bbuf &= ~0x60;
132 bbuf |= 0x20;
133 w83697hf_set_reg(0x29, bbuf); /* Set pin 119 to WDTO# mode (= CR29, WDT0) */
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200134
Samuel Tardieub7b98682006-09-07 11:57:00 +0200135 bbuf = w83697hf_get_reg(0xF3);
136 bbuf &= ~0x04;
137 w83697hf_set_reg(0xF3, bbuf); /* Count mode is seconds */
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200138
Samuel Tardieufa69afd2006-09-07 11:57:00 +0200139 w83697hf_deselect_wdt();
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200140}
141
Samuel Tardieu089d8132006-09-07 11:57:00 +0200142static int
143wdt_ping(void)
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200144{
Wim Van Sebroeckab9d4412006-09-02 18:50:20 +0200145 spin_lock(&io_lock);
Samuel Tardieua7933e02006-09-07 11:57:00 +0200146 w83697hf_select_wdt();
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200147
Samuel Tardieud46ab592006-09-07 11:57:00 +0200148 w83697hf_write_timeout(timeout);
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200149
Samuel Tardieua7933e02006-09-07 11:57:00 +0200150 w83697hf_deselect_wdt();
Wim Van Sebroeckab9d4412006-09-02 18:50:20 +0200151 spin_unlock(&io_lock);
Samuel Tardieu089d8132006-09-07 11:57:00 +0200152 return 0;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200153}
154
155static int
Samuel Tardieu089d8132006-09-07 11:57:00 +0200156wdt_enable(void)
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200157{
Samuel Tardieu089d8132006-09-07 11:57:00 +0200158 spin_lock(&io_lock);
159 w83697hf_select_wdt();
160
161 w83697hf_write_timeout(timeout);
162 w83697hf_set_reg(0x30, 1); /* Enable timer */
163
164 w83697hf_deselect_wdt();
165 spin_unlock(&io_lock);
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200166 return 0;
167}
168
169static int
170wdt_disable(void)
171{
Samuel Tardieu089d8132006-09-07 11:57:00 +0200172 spin_lock(&io_lock);
173 w83697hf_select_wdt();
174
175 w83697hf_set_reg(0x30, 0); /* Disable timer */
176 w83697hf_write_timeout(0);
177
178 w83697hf_deselect_wdt();
179 spin_unlock(&io_lock);
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200180 return 0;
181}
182
183static int
184wdt_set_heartbeat(int t)
185{
Samuel Tardieueb644192006-09-07 11:57:00 +0200186 if ((t < 1) || (t > 255))
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200187 return -EINVAL;
188
189 timeout = t;
190 return 0;
191}
192
193static ssize_t
194wdt_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
195{
196 if (count) {
197 if (!nowayout) {
198 size_t i;
199
200 expect_close = 0;
201
202 for (i = 0; i != count; i++) {
203 char c;
204 if (get_user(c, buf+i))
205 return -EFAULT;
206 if (c == 'V')
207 expect_close = 42;
208 }
209 }
210 wdt_ping();
211 }
212 return count;
213}
214
215static int
216wdt_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
217 unsigned long arg)
218{
219 void __user *argp = (void __user *)arg;
220 int __user *p = argp;
221 int new_timeout;
222 static struct watchdog_info ident = {
223 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE,
224 .firmware_version = 1,
225 .identity = "W83697HF WDT",
226 };
227
228 switch (cmd) {
229 case WDIOC_GETSUPPORT:
Samuel Tardieudb165252006-09-07 11:57:00 +0200230 if (copy_to_user(argp, &ident, sizeof(ident)))
231 return -EFAULT;
232 break;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200233
234 case WDIOC_GETSTATUS:
235 case WDIOC_GETBOOTSTATUS:
Samuel Tardieudb165252006-09-07 11:57:00 +0200236 return put_user(0, p);
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200237
238 case WDIOC_KEEPALIVE:
Samuel Tardieudb165252006-09-07 11:57:00 +0200239 wdt_ping();
240 break;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200241
242 case WDIOC_SETTIMEOUT:
Samuel Tardieudb165252006-09-07 11:57:00 +0200243 if (get_user(new_timeout, p))
244 return -EFAULT;
245 if (wdt_set_heartbeat(new_timeout))
246 return -EINVAL;
247 wdt_ping();
248 /* Fall */
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200249
250 case WDIOC_GETTIMEOUT:
Samuel Tardieudb165252006-09-07 11:57:00 +0200251 return put_user(timeout, p);
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200252
253 case WDIOC_SETOPTIONS:
254 {
Samuel Tardieudb165252006-09-07 11:57:00 +0200255 int options, retval = -EINVAL;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200256
Samuel Tardieudb165252006-09-07 11:57:00 +0200257 if (get_user(options, p))
258 return -EFAULT;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200259
Samuel Tardieudb165252006-09-07 11:57:00 +0200260 if (options & WDIOS_DISABLECARD) {
261 wdt_disable();
262 retval = 0;
263 }
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200264
Samuel Tardieudb165252006-09-07 11:57:00 +0200265 if (options & WDIOS_ENABLECARD) {
Samuel Tardieu089d8132006-09-07 11:57:00 +0200266 wdt_enable();
Samuel Tardieudb165252006-09-07 11:57:00 +0200267 retval = 0;
268 }
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200269
Samuel Tardieudb165252006-09-07 11:57:00 +0200270 return retval;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200271 }
272
273 default:
Samuel Tardieudb165252006-09-07 11:57:00 +0200274 return -ENOTTY;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200275 }
276 return 0;
277}
278
279static int
280wdt_open(struct inode *inode, struct file *file)
281{
282 if (test_and_set_bit(0, &wdt_is_open))
283 return -EBUSY;
284 /*
285 * Activate
286 */
287
Samuel Tardieu089d8132006-09-07 11:57:00 +0200288 wdt_enable();
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200289 return nonseekable_open(inode, file);
290}
291
292static int
293wdt_close(struct inode *inode, struct file *file)
294{
295 if (expect_close == 42) {
296 wdt_disable();
297 } else {
Samuel Tardieudb165252006-09-07 11:57:00 +0200298 printk (KERN_CRIT PFX "Unexpected close, not stopping watchdog!\n");
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200299 wdt_ping();
300 }
301 expect_close = 0;
302 clear_bit(0, &wdt_is_open);
303 return 0;
304}
305
306/*
307 * Notifier for system down
308 */
309
310static int
311wdt_notify_sys(struct notifier_block *this, unsigned long code,
312 void *unused)
313{
314 if (code == SYS_DOWN || code == SYS_HALT) {
315 /* Turn the WDT off */
316 wdt_disable();
317 }
318 return NOTIFY_DONE;
319}
320
321/*
322 * Kernel Interfaces
323 */
324
325static struct file_operations wdt_fops = {
326 .owner = THIS_MODULE,
327 .llseek = no_llseek,
328 .write = wdt_write,
329 .ioctl = wdt_ioctl,
330 .open = wdt_open,
331 .release = wdt_close,
332};
333
334static struct miscdevice wdt_miscdev = {
335 .minor = WATCHDOG_MINOR,
336 .name = "watchdog",
337 .fops = &wdt_fops,
338};
339
340/*
341 * The WDT needs to learn about soft shutdowns in order to
342 * turn the timebomb registers off.
343 */
344
345static struct notifier_block wdt_notifier = {
346 .notifier_call = wdt_notify_sys,
347};
348
Samuel Tardieuc81b2992006-09-07 11:57:00 +0200349static int
350w83697hf_check_wdt(void)
351{
352 if (!request_region(wdt_io, 2, WATCHDOG_NAME)) {
353 printk (KERN_ERR PFX "I/O address 0x%x already in use\n", wdt_io);
354 return -EIO;
355 }
356
357 printk (KERN_DEBUG PFX "Looking for watchdog at address 0x%x\n", wdt_io);
358 w83697hf_unlock();
359 if (w83697hf_get_reg(0x20) == 0x60) {
360 printk (KERN_INFO PFX "watchdog found at address 0x%x\n", wdt_io);
361 w83697hf_lock();
362 return 0;
363 }
364 w83697hf_lock(); /* Reprotect in case it was a compatible device */
365
366 printk (KERN_INFO PFX "watchdog not found at address 0x%x\n", wdt_io);
367 release_region(wdt_io, 2);
368 return -EIO;
369}
370
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200371static int __init
372wdt_init(void)
373{
Samuel Tardieuc81b2992006-09-07 11:57:00 +0200374 int ret, autodetect;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200375
Wim Van Sebroeckab9d4412006-09-02 18:50:20 +0200376 spin_lock_init(&io_lock);
377
Samuel Tardieude710d62006-09-07 11:57:00 +0200378 printk (KERN_INFO PFX "WDT driver for W83697HF/HG initializing\n");
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200379
Samuel Tardieuc81b2992006-09-07 11:57:00 +0200380 autodetect = wdt_io == 0;
381 if (autodetect)
382 wdt_io = 0x2e;
383
384 if (!w83697hf_check_wdt())
385 goto found;
386
387 if (autodetect) {
388 wdt_io = 0x4e;
389 if (!w83697hf_check_wdt())
390 goto found;
391 }
392
393 printk (KERN_ERR PFX "No W83697HF/HG could be found\n");
394 ret = -EIO;
395 goto out;
396
397found:
Samuel Tardieufa69afd2006-09-07 11:57:00 +0200398 w83697hf_init();
399 wdt_disable(); /* Disable watchdog until first use */
Samuel Tardieuc81b2992006-09-07 11:57:00 +0200400
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200401 if (wdt_set_heartbeat(timeout)) {
402 wdt_set_heartbeat(WATCHDOG_TIMEOUT);
Samuel Tardieueb644192006-09-07 11:57:00 +0200403 printk (KERN_INFO PFX "timeout value must be 1<=timeout<=255, using %d\n",
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200404 WATCHDOG_TIMEOUT);
405 }
406
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200407 ret = register_reboot_notifier(&wdt_notifier);
408 if (ret != 0) {
409 printk (KERN_ERR PFX "cannot register reboot notifier (err=%d)\n",
410 ret);
411 goto unreg_regions;
412 }
413
414 ret = misc_register(&wdt_miscdev);
415 if (ret != 0) {
416 printk (KERN_ERR PFX "cannot register miscdev on minor=%d (err=%d)\n",
417 WATCHDOG_MINOR, ret);
418 goto unreg_reboot;
419 }
420
421 printk (KERN_INFO PFX "initialized. timeout=%d sec (nowayout=%d)\n",
422 timeout, nowayout);
423
424out:
425 return ret;
426unreg_reboot:
427 unregister_reboot_notifier(&wdt_notifier);
428unreg_regions:
Samuel Tardieub41a9f52006-09-07 11:57:00 +0200429 release_region(wdt_io, 2);
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200430 goto out;
431}
432
433static void __exit
434wdt_exit(void)
435{
436 misc_deregister(&wdt_miscdev);
437 unregister_reboot_notifier(&wdt_notifier);
Samuel Tardieub41a9f52006-09-07 11:57:00 +0200438 release_region(wdt_io, 2);
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200439}
440
441module_init(wdt_init);
442module_exit(wdt_exit);
443
444MODULE_LICENSE("GPL");
445MODULE_AUTHOR("Marcus Junker <junker@anduras.de>");
Samuel Tardieude710d62006-09-07 11:57:00 +0200446MODULE_DESCRIPTION("w83697hf/hg WDT driver");
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200447MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);