blob: 9693587328418bb645dad6077671e3ab5ca9f744 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Vlad Drukker0e94f2e2007-03-25 17:34:39 +02002 * w83627hf/thf WDT driver
3 *
4 * (c) Copyright 2007 Vlad Drukker <vlad@storewiz.com>
5 * added support for W83627THF.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Al Virod36b6912011-12-29 17:09:01 -05007 * (c) Copyright 2003,2007 Pádraig Brady <P@draigBrady.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Based on advantechwdt.c which is based on wdt.c.
10 * Original copyright messages:
11 *
12 * (c) Copyright 2000-2001 Marek Michalkiewicz <marekm@linux.org.pl>
13 *
Alan Cox29fa0582008-10-27 15:17:56 +000014 * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>,
15 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
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 Alan Cox nor CymruNet Ltd. admit liability nor provide
23 * warranty for any of this software. This material is provided
24 * "AS-IS" and at no charge.
25 *
Alan Cox29fa0582008-10-27 15:17:56 +000026 * (c) Copyright 1995 Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
28
Joe Perches27c766a2012-02-15 15:06:19 -080029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/module.h>
32#include <linux/moduleparam.h>
33#include <linux/types.h>
34#include <linux/miscdevice.h>
35#include <linux/watchdog.h>
36#include <linux/fs.h>
37#include <linux/ioport.h>
38#include <linux/notifier.h>
39#include <linux/reboot.h>
40#include <linux/init.h>
Wim Van Sebroeckab9d4412006-09-02 18:50:20 +020041#include <linux/spinlock.h>
Alan Cox46a39492008-05-19 14:09:18 +010042#include <linux/io.h>
43#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/system.h>
46
Benny Loenstrup Ammitzboell9c67bea2010-11-11 16:08:41 +010047#define WATCHDOG_NAME "w83627hf/thf/hg/dhg WDT"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */
49
50static unsigned long wdt_is_open;
51static char expect_close;
Alexey Dobriyanc7dfd0c2007-11-01 16:27:08 -070052static DEFINE_SPINLOCK(io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/* You must set this - there is no sane way to probe for this board. */
55static int wdt_io = 0x2E;
56module_param(wdt_io, int, 0);
Vlad Drukker0e94f2e2007-03-25 17:34:39 +020057MODULE_PARM_DESC(wdt_io, "w83627hf/thf WDT io port (default 0x2E)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59static int timeout = WATCHDOG_TIMEOUT; /* in seconds */
60module_param(timeout, int, 0);
Alan Cox46a39492008-05-19 14:09:18 +010061MODULE_PARM_DESC(timeout,
62 "Watchdog timeout in seconds. 1 <= timeout <= 255, default="
63 __MODULE_STRING(WATCHDOG_TIMEOUT) ".");
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Andrey Panin4bfdf372005-07-27 11:43:58 -070065static int nowayout = WATCHDOG_NOWAYOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066module_param(nowayout, int, 0);
Alan Cox46a39492008-05-19 14:09:18 +010067MODULE_PARM_DESC(nowayout,
68 "Watchdog cannot be stopped once started (default="
69 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71/*
72 * Kernel methods.
73 */
74
75#define WDT_EFER (wdt_io+0) /* Extended Function Enable Registers */
Alan Cox46a39492008-05-19 14:09:18 +010076#define WDT_EFIR (wdt_io+0) /* Extended Function Index Register
77 (same as EFER) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#define WDT_EFDR (WDT_EFIR+1) /* Extended Function Data Register */
79
Alan Cox46a39492008-05-19 14:09:18 +010080static void w83627hf_select_wd_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Vlad Drukker0e94f2e2007-03-25 17:34:39 +020082 unsigned char c;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 outb_p(0x87, WDT_EFER); /* Enter extended function mode */
84 outb_p(0x87, WDT_EFER); /* Again according to manual */
85
Pádraig Brady28dd1b02007-07-24 11:49:27 +010086 outb(0x20, WDT_EFER); /* check chip version */
Vlad Drukker0e94f2e2007-03-25 17:34:39 +020087 c = inb(WDT_EFDR);
Pádraig Brady28dd1b02007-07-24 11:49:27 +010088 if (c == 0x82) { /* W83627THF */
Vlad Drukker0e94f2e2007-03-25 17:34:39 +020089 outb_p(0x2b, WDT_EFER); /* select GPIO3 */
90 c = ((inb_p(WDT_EFDR) & 0xf7) | 0x04); /* select WDT0 */
91 outb_p(0x2b, WDT_EFER);
92 outb_p(c, WDT_EFDR); /* set GPIO3 to WDT0 */
Benny Loenstrup Ammitzboell9c67bea2010-11-11 16:08:41 +010093 } else if (c == 0x88 || c == 0xa0) { /* W83627EHF / W83627DHG */
Slobodan Tomićcf1eaab2009-06-28 21:20:36 +020094 outb_p(0x2d, WDT_EFER); /* select GPIO5 */
95 c = inb_p(WDT_EFDR) & ~0x01; /* PIN77 -> WDT0# */
96 outb_p(0x2d, WDT_EFER);
97 outb_p(c, WDT_EFDR); /* set GPIO5 to WDT0 */
Vlad Drukker0e94f2e2007-03-25 17:34:39 +020098 }
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 outb_p(0x07, WDT_EFER); /* point to logical device number reg */
101 outb_p(0x08, WDT_EFDR); /* select logical device 8 (GPIO2) */
102 outb_p(0x30, WDT_EFER); /* select CR30 */
103 outb_p(0x01, WDT_EFDR); /* set bit 0 to activate GPIO2 */
104}
105
Alan Cox46a39492008-05-19 14:09:18 +0100106static void w83627hf_unselect_wd_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 outb_p(0xAA, WDT_EFER); /* Leave extended function mode */
109}
110
111/* tyan motherboards seem to set F5 to 0x4C ?
112 * So explicitly init to appropriate value. */
Alan Cox46a39492008-05-19 14:09:18 +0100113
114static void w83627hf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 unsigned char t;
117
118 w83627hf_select_wd_register();
119
P@Draig Brady93642ec2005-08-17 09:06:07 +0200120 outb_p(0xF6, WDT_EFER); /* Select CRF6 */
Alan Cox46a39492008-05-19 14:09:18 +0100121 t = inb_p(WDT_EFDR); /* read CRF6 */
P@Draig Brady93642ec2005-08-17 09:06:07 +0200122 if (t != 0) {
Joe Perches27c766a2012-02-15 15:06:19 -0800123 pr_info("Watchdog already running. Resetting timeout to %d sec\n",
124 timeout);
P@Draig Brady93642ec2005-08-17 09:06:07 +0200125 outb_p(timeout, WDT_EFDR); /* Write back to CRF6 */
126 }
Pádraig Brady28dd1b02007-07-24 11:49:27 +0100127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 outb_p(0xF5, WDT_EFER); /* Select CRF5 */
Alan Cox46a39492008-05-19 14:09:18 +0100129 t = inb_p(WDT_EFDR); /* read CRF5 */
130 t &= ~0x0C; /* set second mode & disable keyboard
131 turning off watchdog */
Herman Morsink Vollenbroek6d106e02010-12-06 21:24:56 +0100132 t |= 0x02; /* enable the WDTO# output low pulse
133 to the KBRST# pin (PIN60) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 outb_p(t, WDT_EFDR); /* Write back to CRF5 */
135
Pádraig Brady28dd1b02007-07-24 11:49:27 +0100136 outb_p(0xF7, WDT_EFER); /* Select CRF7 */
Alan Cox46a39492008-05-19 14:09:18 +0100137 t = inb_p(WDT_EFDR); /* read CRF7 */
138 t &= ~0xC0; /* disable keyboard & mouse turning off
139 watchdog */
Pádraig Brady28dd1b02007-07-24 11:49:27 +0100140 outb_p(t, WDT_EFDR); /* Write back to CRF7 */
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 w83627hf_unselect_wd_register();
143}
144
Greg Leec63b6d02011-09-12 20:28:46 -0400145static void wdt_set_time(int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Wim Van Sebroeckab9d4412006-09-02 18:50:20 +0200147 spin_lock(&io_lock);
Pádraig Brady28dd1b02007-07-24 11:49:27 +0100148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 w83627hf_select_wd_register();
150
151 outb_p(0xF6, WDT_EFER); /* Select CRF6 */
152 outb_p(timeout, WDT_EFDR); /* Write Timeout counter to CRF6 */
153
154 w83627hf_unselect_wd_register();
Wim Van Sebroeckab9d4412006-09-02 18:50:20 +0200155
156 spin_unlock(&io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Alan Cox46a39492008-05-19 14:09:18 +0100159static int wdt_ping(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Greg Leec63b6d02011-09-12 20:28:46 -0400161 wdt_set_time(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 return 0;
163}
164
Alan Cox46a39492008-05-19 14:09:18 +0100165static int wdt_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Greg Leec63b6d02011-09-12 20:28:46 -0400167 wdt_set_time(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return 0;
169}
170
Alan Cox46a39492008-05-19 14:09:18 +0100171static int wdt_set_heartbeat(int t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Alan Cox46a39492008-05-19 14:09:18 +0100173 if (t < 1 || t > 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 timeout = t;
176 return 0;
177}
178
Greg Leec63b6d02011-09-12 20:28:46 -0400179static int wdt_get_time(void)
180{
181 int timeleft;
182
183 spin_lock(&io_lock);
184
185 w83627hf_select_wd_register();
186
187 outb_p(0xF6, WDT_EFER); /* Select CRF6 */
188 timeleft = inb_p(WDT_EFDR); /* Read Timeout counter to CRF6 */
189
190 w83627hf_unselect_wd_register();
191
192 spin_unlock(&io_lock);
193
194 return timeleft;
195}
196
Alan Cox46a39492008-05-19 14:09:18 +0100197static ssize_t wdt_write(struct file *file, const char __user *buf,
198 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 if (count) {
201 if (!nowayout) {
202 size_t i;
203
204 expect_close = 0;
205
206 for (i = 0; i != count; i++) {
207 char c;
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000208 if (get_user(c, buf + i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return -EFAULT;
210 if (c == 'V')
211 expect_close = 42;
212 }
213 }
214 wdt_ping();
215 }
216 return count;
217}
218
Alan Cox46a39492008-05-19 14:09:18 +0100219static long wdt_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 void __user *argp = (void __user *)arg;
222 int __user *p = argp;
Greg Leec63b6d02011-09-12 20:28:46 -0400223 int timeval;
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000224 static const struct watchdog_info ident = {
Alan Cox46a39492008-05-19 14:09:18 +0100225 .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT |
226 WDIOF_MAGICCLOSE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 .firmware_version = 1,
228 .identity = "W83627HF WDT",
229 };
230
231 switch (cmd) {
232 case WDIOC_GETSUPPORT:
Alan Cox46a39492008-05-19 14:09:18 +0100233 if (copy_to_user(argp, &ident, sizeof(ident)))
234 return -EFAULT;
235 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 case WDIOC_GETSTATUS:
237 case WDIOC_GETBOOTSTATUS:
Alan Cox46a39492008-05-19 14:09:18 +0100238 return put_user(0, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 case WDIOC_SETOPTIONS:
240 {
Alan Cox46a39492008-05-19 14:09:18 +0100241 int options, retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Alan Cox46a39492008-05-19 14:09:18 +0100243 if (get_user(options, p))
244 return -EFAULT;
245 if (options & WDIOS_DISABLECARD) {
246 wdt_disable();
247 retval = 0;
248 }
249 if (options & WDIOS_ENABLECARD) {
250 wdt_ping();
251 retval = 0;
252 }
253 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000255 case WDIOC_KEEPALIVE:
256 wdt_ping();
257 break;
258 case WDIOC_SETTIMEOUT:
Greg Leec63b6d02011-09-12 20:28:46 -0400259 if (get_user(timeval, p))
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000260 return -EFAULT;
Greg Leec63b6d02011-09-12 20:28:46 -0400261 if (wdt_set_heartbeat(timeval))
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000262 return -EINVAL;
263 wdt_ping();
264 /* Fall */
265 case WDIOC_GETTIMEOUT:
266 return put_user(timeout, p);
Greg Leec63b6d02011-09-12 20:28:46 -0400267 case WDIOC_GETTIMELEFT:
268 timeval = wdt_get_time();
269 return put_user(timeval, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 default:
Alan Cox46a39492008-05-19 14:09:18 +0100271 return -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
273 return 0;
274}
275
Alan Cox46a39492008-05-19 14:09:18 +0100276static int wdt_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278 if (test_and_set_bit(0, &wdt_is_open))
279 return -EBUSY;
280 /*
281 * Activate
282 */
283
284 wdt_ping();
285 return nonseekable_open(inode, file);
286}
287
Alan Cox46a39492008-05-19 14:09:18 +0100288static int wdt_close(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Alan Cox46a39492008-05-19 14:09:18 +0100290 if (expect_close == 42)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 wdt_disable();
Alan Cox46a39492008-05-19 14:09:18 +0100292 else {
Joe Perches27c766a2012-02-15 15:06:19 -0800293 pr_crit("Unexpected close, not stopping watchdog!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 wdt_ping();
295 }
296 expect_close = 0;
297 clear_bit(0, &wdt_is_open);
298 return 0;
299}
300
301/*
302 * Notifier for system down
303 */
304
Alan Cox46a39492008-05-19 14:09:18 +0100305static int wdt_notify_sys(struct notifier_block *this, unsigned long code,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 void *unused)
307{
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000308 if (code == SYS_DOWN || code == SYS_HALT)
309 wdt_disable(); /* Turn the WDT off */
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return NOTIFY_DONE;
312}
313
314/*
315 * Kernel Interfaces
316 */
317
Arjan van de Ven62322d22006-07-03 00:24:21 -0700318static const struct file_operations wdt_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 .owner = THIS_MODULE,
320 .llseek = no_llseek,
321 .write = wdt_write,
Alan Cox46a39492008-05-19 14:09:18 +0100322 .unlocked_ioctl = wdt_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 .open = wdt_open,
324 .release = wdt_close,
325};
326
327static struct miscdevice wdt_miscdev = {
328 .minor = WATCHDOG_MINOR,
329 .name = "watchdog",
330 .fops = &wdt_fops,
331};
332
333/*
334 * The WDT needs to learn about soft shutdowns in order to
335 * turn the timebomb registers off.
336 */
337
338static struct notifier_block wdt_notifier = {
339 .notifier_call = wdt_notify_sys,
340};
341
Alan Cox46a39492008-05-19 14:09:18 +0100342static int __init wdt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 int ret;
345
Joe Perches27c766a2012-02-15 15:06:19 -0800346 pr_info("WDT driver for the Winbond(TM) W83627HF/THF/HG/DHG Super I/O chip initialising\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 if (wdt_set_heartbeat(timeout)) {
349 wdt_set_heartbeat(WATCHDOG_TIMEOUT);
Joe Perches27c766a2012-02-15 15:06:19 -0800350 pr_info("timeout value must be 1 <= timeout <= 255, using %d\n",
351 WATCHDOG_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
353
354 if (!request_region(wdt_io, 1, WATCHDOG_NAME)) {
Joe Perches27c766a2012-02-15 15:06:19 -0800355 pr_err("I/O address 0x%04x already in use\n", wdt_io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 ret = -EIO;
357 goto out;
358 }
359
360 w83627hf_init();
361
362 ret = register_reboot_notifier(&wdt_notifier);
363 if (ret != 0) {
Joe Perches27c766a2012-02-15 15:06:19 -0800364 pr_err("cannot register reboot notifier (err=%d)\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 goto unreg_regions;
366 }
367
368 ret = misc_register(&wdt_miscdev);
369 if (ret != 0) {
Joe Perches27c766a2012-02-15 15:06:19 -0800370 pr_err("cannot register miscdev on minor=%d (err=%d)\n",
371 WATCHDOG_MINOR, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 goto unreg_reboot;
373 }
374
Joe Perches27c766a2012-02-15 15:06:19 -0800375 pr_info("initialized. timeout=%d sec (nowayout=%d)\n",
376 timeout, nowayout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378out:
379 return ret;
380unreg_reboot:
381 unregister_reboot_notifier(&wdt_notifier);
382unreg_regions:
383 release_region(wdt_io, 1);
384 goto out;
385}
386
Alan Cox46a39492008-05-19 14:09:18 +0100387static void __exit wdt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 misc_deregister(&wdt_miscdev);
390 unregister_reboot_notifier(&wdt_notifier);
Alan Cox46a39492008-05-19 14:09:18 +0100391 release_region(wdt_io, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
394module_init(wdt_init);
395module_exit(wdt_exit);
396
397MODULE_LICENSE("GPL");
Al Virod36b6912011-12-29 17:09:01 -0500398MODULE_AUTHOR("Pádraig Brady <P@draigBrady.com>");
Vlad Drukker0e94f2e2007-03-25 17:34:39 +0200399MODULE_DESCRIPTION("w83627hf/thf WDT driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);