blob: b5341741765a0c3cf33f75616dfb9b986c180853 [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 *
Samuel Tardieu3fdee8d2006-09-07 11:57:00 +02004 * (c) Copyright 2006 Samuel Tardieu <sam@rfc1149.net>
Marcus Junkerf9a8c892006-08-24 17:11:50 +02005 * (c) Copyright 2006 Marcus Junker <junker@anduras.de>
6 *
Samuel Tardieude710d62006-09-07 11:57:00 +02007 * Based on w83627hf_wdt.c which is based on advantechwdt.c
8 * which is based on wdt.c.
Marcus Junkerf9a8c892006-08-24 17:11:50 +02009 * Original copyright messages:
10 *
Jan Engelhardt96de0e22007-10-19 23:21:04 +020011 * (c) Copyright 2003 Pádraig Brady <P@draigBrady.com>
Marcus Junkerf9a8c892006-08-24 17:11:50 +020012 *
13 * (c) Copyright 2000-2001 Marek Michalkiewicz <marekm@linux.org.pl>
14 *
15 * (c) Copyright 1996 Alan Cox <alan@redhat.com>, All Rights Reserved.
16 * http://www.redhat.com
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version
21 * 2 of the License, or (at your option) any later version.
22 *
23 * Neither Marcus Junker nor ANDURAS AG admit liability nor provide
24 * warranty for any of this software. This material is provided
25 * "AS-IS" and at no charge.
26 */
27
28#include <linux/module.h>
29#include <linux/moduleparam.h>
30#include <linux/types.h>
31#include <linux/miscdevice.h>
32#include <linux/watchdog.h>
33#include <linux/fs.h>
34#include <linux/ioport.h>
35#include <linux/notifier.h>
36#include <linux/reboot.h>
37#include <linux/init.h>
Wim Van Sebroeckab9d4412006-09-02 18:50:20 +020038#include <linux/spinlock.h>
Marcus Junkerf9a8c892006-08-24 17:11:50 +020039
40#include <asm/io.h>
41#include <asm/uaccess.h>
42#include <asm/system.h>
43
Samuel Tardieude710d62006-09-07 11:57:00 +020044#define WATCHDOG_NAME "w83697hf/hg WDT"
Marcus Junkerf9a8c892006-08-24 17:11:50 +020045#define PFX WATCHDOG_NAME ": "
46#define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */
47
48static unsigned long wdt_is_open;
49static char expect_close;
Alexey Dobriyanc7dfd0c2007-11-01 16:27:08 -070050static DEFINE_SPINLOCK(io_lock);
Marcus Junkerf9a8c892006-08-24 17:11:50 +020051
52/* You must set this - there is no sane way to probe for this board. */
Samuel Tardieuc81b2992006-09-07 11:57:00 +020053static int wdt_io = 0x2e;
Marcus Junkerf9a8c892006-08-24 17:11:50 +020054module_param(wdt_io, int, 0);
Samuel Tardieuc81b2992006-09-07 11:57:00 +020055MODULE_PARM_DESC(wdt_io, "w83697hf/hg WDT io port (default 0x2e, 0 = autodetect)");
Marcus Junkerf9a8c892006-08-24 17:11:50 +020056
57static int timeout = WATCHDOG_TIMEOUT; /* in seconds */
58module_param(timeout, int, 0);
Samuel Tardieueb644192006-09-07 11:57:00 +020059MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds. 1<= timeout <=255, default=" __MODULE_STRING(WATCHDOG_TIMEOUT) ".");
Marcus Junkerf9a8c892006-08-24 17:11:50 +020060
61static int nowayout = WATCHDOG_NOWAYOUT;
62module_param(nowayout, int, 0);
Wim Van Sebroeckbffda5c2007-01-27 20:54:24 +010063MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Marcus Junkerf9a8c892006-08-24 17:11:50 +020064
65/*
66 * Kernel methods.
67 */
68
Samuel Tardieu44d7d322006-09-07 11:57:00 +020069#define W83697HF_EFER (wdt_io+0) /* Extended Function Enable Register */
70#define W83697HF_EFIR (wdt_io+0) /* Extended Function Index Register (same as EFER) */
71#define W83697HF_EFDR (wdt_io+1) /* Extended Function Data Register */
Marcus Junkerf9a8c892006-08-24 17:11:50 +020072
Samuel Tardieuf7be3322006-09-07 11:57:00 +020073static inline void
74w83697hf_unlock(void)
Marcus Junkerf9a8c892006-08-24 17:11:50 +020075{
Samuel Tardieu44d7d322006-09-07 11:57:00 +020076 outb_p(0x87, W83697HF_EFER); /* Enter extended function mode */
77 outb_p(0x87, W83697HF_EFER); /* Again according to manual */
Samuel Tardieuf7be3322006-09-07 11:57:00 +020078}
79
Samuel Tardieufe851eb2006-09-07 11:57:00 +020080static inline void
81w83697hf_lock(void)
82{
83 outb_p(0xAA, W83697HF_EFER); /* Leave extended function mode */
84}
85
Samuel Tardieu0cd54472006-09-07 11:57:00 +020086/*
Samuel Tardieud46ab592006-09-07 11:57:00 +020087 * The three functions w83697hf_get_reg(), w83697hf_set_reg() and
88 * w83697hf_write_timeout() must be called with the device unlocked.
Samuel Tardieu0cd54472006-09-07 11:57:00 +020089 */
90
91static unsigned char
92w83697hf_get_reg(unsigned char reg)
93{
94 outb_p(reg, W83697HF_EFIR);
95 return inb_p(W83697HF_EFDR);
96}
97
98static void
99w83697hf_set_reg(unsigned char reg, unsigned char data)
100{
101 outb_p(reg, W83697HF_EFIR);
102 outb_p(data, W83697HF_EFDR);
103}
104
Samuel Tardieuf7be3322006-09-07 11:57:00 +0200105static void
Samuel Tardieud46ab592006-09-07 11:57:00 +0200106w83697hf_write_timeout(int timeout)
107{
108 w83697hf_set_reg(0xF4, timeout); /* Write Timeout counter to CRF4 */
109}
110
111static void
Samuel Tardieua7933e02006-09-07 11:57:00 +0200112w83697hf_select_wdt(void)
113{
114 w83697hf_unlock();
115 w83697hf_set_reg(0x07, 0x08); /* Switch to logic device 8 (GPIO2) */
116}
117
118static inline void
119w83697hf_deselect_wdt(void)
120{
121 w83697hf_lock();
122}
123
124static void
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200125w83697hf_init(void)
126{
Samuel Tardieub7b98682006-09-07 11:57:00 +0200127 unsigned char bbuf;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200128
Samuel Tardieufa69afd2006-09-07 11:57:00 +0200129 w83697hf_select_wdt();
130
Samuel Tardieub7b98682006-09-07 11:57:00 +0200131 bbuf = w83697hf_get_reg(0x29);
132 bbuf &= ~0x60;
133 bbuf |= 0x20;
134 w83697hf_set_reg(0x29, bbuf); /* Set pin 119 to WDTO# mode (= CR29, WDT0) */
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200135
Samuel Tardieub7b98682006-09-07 11:57:00 +0200136 bbuf = w83697hf_get_reg(0xF3);
137 bbuf &= ~0x04;
138 w83697hf_set_reg(0xF3, bbuf); /* Count mode is seconds */
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200139
Samuel Tardieufa69afd2006-09-07 11:57:00 +0200140 w83697hf_deselect_wdt();
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200141}
142
Samuel Tardieu03315ad2008-03-12 14:28:01 +0100143static void
Samuel Tardieu089d8132006-09-07 11:57:00 +0200144wdt_ping(void)
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200145{
Wim Van Sebroeckab9d4412006-09-02 18:50:20 +0200146 spin_lock(&io_lock);
Samuel Tardieua7933e02006-09-07 11:57:00 +0200147 w83697hf_select_wdt();
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200148
Samuel Tardieud46ab592006-09-07 11:57:00 +0200149 w83697hf_write_timeout(timeout);
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200150
Samuel Tardieua7933e02006-09-07 11:57:00 +0200151 w83697hf_deselect_wdt();
Wim Van Sebroeckab9d4412006-09-02 18:50:20 +0200152 spin_unlock(&io_lock);
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200153}
154
Samuel Tardieu03315ad2008-03-12 14:28:01 +0100155static void
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}
167
Samuel Tardieu03315ad2008-03-12 14:28:01 +0100168static void
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200169wdt_disable(void)
170{
Samuel Tardieu089d8132006-09-07 11:57:00 +0200171 spin_lock(&io_lock);
172 w83697hf_select_wdt();
173
174 w83697hf_set_reg(0x30, 0); /* Disable timer */
175 w83697hf_write_timeout(0);
176
177 w83697hf_deselect_wdt();
178 spin_unlock(&io_lock);
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200179}
180
181static int
182wdt_set_heartbeat(int t)
183{
Samuel Tardieueb644192006-09-07 11:57:00 +0200184 if ((t < 1) || (t > 255))
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200185 return -EINVAL;
186
187 timeout = t;
188 return 0;
189}
190
191static ssize_t
192wdt_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
193{
194 if (count) {
195 if (!nowayout) {
196 size_t i;
197
198 expect_close = 0;
199
200 for (i = 0; i != count; i++) {
201 char c;
202 if (get_user(c, buf+i))
203 return -EFAULT;
204 if (c == 'V')
205 expect_close = 42;
206 }
207 }
208 wdt_ping();
209 }
210 return count;
211}
212
213static int
214wdt_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
215 unsigned long arg)
216{
217 void __user *argp = (void __user *)arg;
218 int __user *p = argp;
219 int new_timeout;
220 static struct watchdog_info ident = {
221 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE,
222 .firmware_version = 1,
223 .identity = "W83697HF WDT",
224 };
225
226 switch (cmd) {
227 case WDIOC_GETSUPPORT:
Samuel Tardieudb165252006-09-07 11:57:00 +0200228 if (copy_to_user(argp, &ident, sizeof(ident)))
229 return -EFAULT;
230 break;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200231
232 case WDIOC_GETSTATUS:
233 case WDIOC_GETBOOTSTATUS:
Samuel Tardieudb165252006-09-07 11:57:00 +0200234 return put_user(0, p);
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200235
236 case WDIOC_KEEPALIVE:
Samuel Tardieudb165252006-09-07 11:57:00 +0200237 wdt_ping();
238 break;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200239
240 case WDIOC_SETTIMEOUT:
Samuel Tardieudb165252006-09-07 11:57:00 +0200241 if (get_user(new_timeout, p))
242 return -EFAULT;
243 if (wdt_set_heartbeat(new_timeout))
244 return -EINVAL;
245 wdt_ping();
246 /* Fall */
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200247
248 case WDIOC_GETTIMEOUT:
Samuel Tardieudb165252006-09-07 11:57:00 +0200249 return put_user(timeout, p);
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200250
251 case WDIOC_SETOPTIONS:
252 {
Samuel Tardieudb165252006-09-07 11:57:00 +0200253 int options, retval = -EINVAL;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200254
Samuel Tardieudb165252006-09-07 11:57:00 +0200255 if (get_user(options, p))
256 return -EFAULT;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200257
Samuel Tardieudb165252006-09-07 11:57:00 +0200258 if (options & WDIOS_DISABLECARD) {
259 wdt_disable();
260 retval = 0;
261 }
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200262
Samuel Tardieudb165252006-09-07 11:57:00 +0200263 if (options & WDIOS_ENABLECARD) {
Samuel Tardieu089d8132006-09-07 11:57:00 +0200264 wdt_enable();
Samuel Tardieudb165252006-09-07 11:57:00 +0200265 retval = 0;
266 }
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200267
Samuel Tardieudb165252006-09-07 11:57:00 +0200268 return retval;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200269 }
270
271 default:
Samuel Tardieudb165252006-09-07 11:57:00 +0200272 return -ENOTTY;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200273 }
274 return 0;
275}
276
277static int
278wdt_open(struct inode *inode, struct file *file)
279{
280 if (test_and_set_bit(0, &wdt_is_open))
281 return -EBUSY;
282 /*
283 * Activate
284 */
285
Samuel Tardieu089d8132006-09-07 11:57:00 +0200286 wdt_enable();
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200287 return nonseekable_open(inode, file);
288}
289
290static int
291wdt_close(struct inode *inode, struct file *file)
292{
293 if (expect_close == 42) {
294 wdt_disable();
295 } else {
Samuel Tardieudb165252006-09-07 11:57:00 +0200296 printk (KERN_CRIT PFX "Unexpected close, not stopping watchdog!\n");
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200297 wdt_ping();
298 }
299 expect_close = 0;
300 clear_bit(0, &wdt_is_open);
301 return 0;
302}
303
304/*
305 * Notifier for system down
306 */
307
308static int
309wdt_notify_sys(struct notifier_block *this, unsigned long code,
310 void *unused)
311{
312 if (code == SYS_DOWN || code == SYS_HALT) {
313 /* Turn the WDT off */
314 wdt_disable();
315 }
316 return NOTIFY_DONE;
317}
318
319/*
320 * Kernel Interfaces
321 */
322
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800323static const struct file_operations wdt_fops = {
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200324 .owner = THIS_MODULE,
325 .llseek = no_llseek,
326 .write = wdt_write,
327 .ioctl = wdt_ioctl,
328 .open = wdt_open,
329 .release = wdt_close,
330};
331
332static struct miscdevice wdt_miscdev = {
333 .minor = WATCHDOG_MINOR,
334 .name = "watchdog",
335 .fops = &wdt_fops,
336};
337
338/*
339 * The WDT needs to learn about soft shutdowns in order to
340 * turn the timebomb registers off.
341 */
342
343static struct notifier_block wdt_notifier = {
344 .notifier_call = wdt_notify_sys,
345};
346
Samuel Tardieuc81b2992006-09-07 11:57:00 +0200347static int
348w83697hf_check_wdt(void)
349{
350 if (!request_region(wdt_io, 2, WATCHDOG_NAME)) {
351 printk (KERN_ERR PFX "I/O address 0x%x already in use\n", wdt_io);
352 return -EIO;
353 }
354
355 printk (KERN_DEBUG PFX "Looking for watchdog at address 0x%x\n", wdt_io);
356 w83697hf_unlock();
357 if (w83697hf_get_reg(0x20) == 0x60) {
358 printk (KERN_INFO PFX "watchdog found at address 0x%x\n", wdt_io);
359 w83697hf_lock();
360 return 0;
361 }
362 w83697hf_lock(); /* Reprotect in case it was a compatible device */
363
364 printk (KERN_INFO PFX "watchdog not found at address 0x%x\n", wdt_io);
365 release_region(wdt_io, 2);
366 return -EIO;
367}
368
Wim Van Sebroecke223f012006-09-15 17:59:07 +0200369static int w83697hf_ioports[] = { 0x2e, 0x4e, 0x00 };
370
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200371static int __init
372wdt_init(void)
373{
Wim Van Sebroecke223f012006-09-15 17:59:07 +0200374 int ret, i, found = 0;
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200375
Samuel Tardieude710d62006-09-07 11:57:00 +0200376 printk (KERN_INFO PFX "WDT driver for W83697HF/HG initializing\n");
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200377
Wim Van Sebroecke223f012006-09-15 17:59:07 +0200378 if (wdt_io == 0) {
379 /* we will autodetect the W83697HF/HG watchdog */
380 for (i = 0; ((!found) && (w83697hf_ioports[i] != 0)); i++) {
381 wdt_io = w83697hf_ioports[i];
Wim Van Sebroeckcde10ba2008-01-18 21:01:34 +0000382 if (!w83697hf_check_wdt())
Wim Van Sebroecke223f012006-09-15 17:59:07 +0200383 found++;
384 }
385 } else {
Samuel Tardieuc81b2992006-09-07 11:57:00 +0200386 if (!w83697hf_check_wdt())
Wim Van Sebroecke223f012006-09-15 17:59:07 +0200387 found++;
Samuel Tardieuc81b2992006-09-07 11:57:00 +0200388 }
389
Wim Van Sebroecke223f012006-09-15 17:59:07 +0200390 if (!found) {
391 printk (KERN_ERR PFX "No W83697HF/HG could be found\n");
392 ret = -EIO;
393 goto out;
394 }
Samuel Tardieuc81b2992006-09-07 11:57:00 +0200395
Samuel Tardieufa69afd2006-09-07 11:57:00 +0200396 w83697hf_init();
397 wdt_disable(); /* Disable watchdog until first use */
Samuel Tardieuc81b2992006-09-07 11:57:00 +0200398
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200399 if (wdt_set_heartbeat(timeout)) {
400 wdt_set_heartbeat(WATCHDOG_TIMEOUT);
Samuel Tardieueb644192006-09-07 11:57:00 +0200401 printk (KERN_INFO PFX "timeout value must be 1<=timeout<=255, using %d\n",
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200402 WATCHDOG_TIMEOUT);
403 }
404
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200405 ret = register_reboot_notifier(&wdt_notifier);
406 if (ret != 0) {
407 printk (KERN_ERR PFX "cannot register reboot notifier (err=%d)\n",
408 ret);
409 goto unreg_regions;
410 }
411
412 ret = misc_register(&wdt_miscdev);
413 if (ret != 0) {
414 printk (KERN_ERR PFX "cannot register miscdev on minor=%d (err=%d)\n",
415 WATCHDOG_MINOR, ret);
416 goto unreg_reboot;
417 }
418
419 printk (KERN_INFO PFX "initialized. timeout=%d sec (nowayout=%d)\n",
420 timeout, nowayout);
421
422out:
423 return ret;
424unreg_reboot:
425 unregister_reboot_notifier(&wdt_notifier);
426unreg_regions:
Samuel Tardieub41a9f52006-09-07 11:57:00 +0200427 release_region(wdt_io, 2);
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200428 goto out;
429}
430
431static void __exit
432wdt_exit(void)
433{
434 misc_deregister(&wdt_miscdev);
435 unregister_reboot_notifier(&wdt_notifier);
Samuel Tardieub41a9f52006-09-07 11:57:00 +0200436 release_region(wdt_io, 2);
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200437}
438
439module_init(wdt_init);
440module_exit(wdt_exit);
441
442MODULE_LICENSE("GPL");
Samuel Tardieu3fdee8d2006-09-07 11:57:00 +0200443MODULE_AUTHOR("Marcus Junker <junker@anduras.de>, Samuel Tardieu <sam@rfc1149.net>");
Samuel Tardieude710d62006-09-07 11:57:00 +0200444MODULE_DESCRIPTION("w83697hf/hg WDT driver");
Marcus Junkerf9a8c892006-08-24 17:11:50 +0200445MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);