2 * w83627hf/thf WDT driver
4 * (c) Copyright 2013 Guenter Roeck
5 * converted to watchdog infrastructure
7 * (c) Copyright 2007 Vlad Drukker <vlad@storewiz.com>
8 * added support for W83627THF.
10 * (c) Copyright 2003,2007 Pádraig Brady <P@draigBrady.com>
12 * Based on advantechwdt.c which is based on wdt.c.
13 * Original copyright messages:
15 * (c) Copyright 2000-2001 Marek Michalkiewicz <marekm@linux.org.pl>
17 * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>,
18 * All Rights Reserved.
20 * This program is free software; you can redistribute it and/or
21 * modify it under the terms of the GNU General Public License
22 * as published by the Free Software Foundation; either version
23 * 2 of the License, or (at your option) any later version.
25 * Neither Alan Cox nor CymruNet Ltd. admit liability nor provide
26 * warranty for any of this software. This material is provided
27 * "AS-IS" and at no charge.
29 * (c) Copyright 1995 Alan Cox <alan@lxorguk.ukuu.org.uk>
32 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
34 #include <linux/module.h>
35 #include <linux/moduleparam.h>
36 #include <linux/types.h>
37 #include <linux/watchdog.h>
38 #include <linux/ioport.h>
39 #include <linux/notifier.h>
40 #include <linux/reboot.h>
41 #include <linux/init.h>
44 #define WATCHDOG_NAME "w83627hf/thf/hg/dhg WDT"
45 #define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */
48 static int cr_wdt_timeout; /* WDT timeout register */
49 static int cr_wdt_control; /* WDT control register */
51 enum chips { w83627hf, w83627s, w83697hf, w83697ug, w83637hf, w83627thf,
52 w83687thf, w83627ehf, w83627dhg, w83627uhg, w83667hg, w83627dhg_p,
53 w83667hg_b, nct6775, nct6776, nct6779 };
55 static int timeout; /* in seconds */
56 module_param(timeout, int, 0);
57 MODULE_PARM_DESC(timeout,
58 "Watchdog timeout in seconds. 1 <= timeout <= 255, default="
59 __MODULE_STRING(WATCHDOG_TIMEOUT) ".");
61 static bool nowayout = WATCHDOG_NOWAYOUT;
62 module_param(nowayout, bool, 0);
63 MODULE_PARM_DESC(nowayout,
64 "Watchdog cannot be stopped once started (default="
65 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
71 #define WDT_EFER (wdt_io+0) /* Extended Function Enable Registers */
72 #define WDT_EFIR (wdt_io+0) /* Extended Function Index Register
74 #define WDT_EFDR (WDT_EFIR+1) /* Extended Function Data Register */
76 #define W83627HF_LD_WDT 0x08
78 #define W83627HF_ID 0x52
79 #define W83627S_ID 0x59
80 #define W83697HF_ID 0x60
81 #define W83697UG_ID 0x68
82 #define W83637HF_ID 0x70
83 #define W83627THF_ID 0x82
84 #define W83687THF_ID 0x85
85 #define W83627EHF_ID 0x88
86 #define W83627DHG_ID 0xa0
87 #define W83627UHG_ID 0xa2
88 #define W83667HG_ID 0xa5
89 #define W83627DHG_P_ID 0xb0
90 #define W83667HG_B_ID 0xb3
91 #define NCT6775_ID 0xb4
92 #define NCT6776_ID 0xc3
93 #define NCT6779_ID 0xc5
95 #define W83627HF_WDT_TIMEOUT 0xf6
96 #define W83697HF_WDT_TIMEOUT 0xf4
98 #define W83627HF_WDT_CONTROL 0xf5
99 #define W83697HF_WDT_CONTROL 0xf3
101 static void superio_outb(int reg, int val)
107 static inline int superio_inb(int reg)
110 return inb(WDT_EFDR);
113 static int superio_enter(void)
115 if (!request_muxed_region(wdt_io, 2, WATCHDOG_NAME))
118 outb_p(0x87, WDT_EFER); /* Enter extended function mode */
119 outb_p(0x87, WDT_EFER); /* Again according to manual */
124 static void superio_select(int ld)
126 superio_outb(0x07, ld);
129 static void superio_exit(void)
131 outb_p(0xAA, WDT_EFER); /* Leave extended function mode */
132 release_region(wdt_io, 2);
135 static int w83627hf_init(struct watchdog_device *wdog, enum chips chip)
140 ret = superio_enter();
144 superio_select(W83627HF_LD_WDT);
146 /* set CR30 bit 0 to activate GPIO2 */
147 t = superio_inb(0x30);
149 superio_outb(0x30, t | 0x01);
154 t = superio_inb(0x2B) & ~0x10;
155 superio_outb(0x2B, t); /* set GPIO24 to WDT0 */
158 /* Set pin 119 to WDTO# mode (= CR29, WDT0) */
159 t = superio_inb(0x29) & ~0x60;
161 superio_outb(0x29, t);
164 /* Set pin 118 to WDTO# mode */
165 t = superio_inb(0x2b) & ~0x04;
166 superio_outb(0x2b, t);
169 t = (superio_inb(0x2B) & ~0x08) | 0x04;
170 superio_outb(0x2B, t); /* set GPIO3 to WDT0 */
174 t = superio_inb(0x2D) & ~0x01; /* PIN77 -> WDT0# */
175 superio_outb(0x2D, t); /* set GPIO5 to WDT0 */
176 t = superio_inb(cr_wdt_control);
177 t |= 0x02; /* enable the WDTO# output low pulse
178 * to the KBRST# pin */
179 superio_outb(cr_wdt_control, t);
184 t = superio_inb(0x2C) & ~0x80; /* PIN47 -> WDT0# */
185 superio_outb(0x2C, t);
195 * These chips have a fixed WDTO# output pin (W83627UHG),
196 * or support more than one WDTO# output pin.
197 * Don't touch its configuration, and hope the BIOS
198 * does the right thing.
200 t = superio_inb(cr_wdt_control);
201 t |= 0x02; /* enable the WDTO# output low pulse
202 * to the KBRST# pin */
203 superio_outb(cr_wdt_control, t);
209 t = superio_inb(cr_wdt_timeout);
211 pr_info("Watchdog already running. Resetting timeout to %d sec\n",
213 superio_outb(cr_wdt_timeout, wdog->timeout);
216 /* set second mode & disable keyboard turning off watchdog */
217 t = superio_inb(cr_wdt_control) & ~0x0C;
218 superio_outb(cr_wdt_control, t);
220 /* reset trigger, disable keyboard & mouse turning off watchdog */
221 t = superio_inb(0xF7) & ~0xD0;
222 superio_outb(0xF7, t);
229 static int wdt_set_time(unsigned int timeout)
233 ret = superio_enter();
237 superio_select(W83627HF_LD_WDT);
238 superio_outb(cr_wdt_timeout, timeout);
244 static int wdt_start(struct watchdog_device *wdog)
246 return wdt_set_time(wdog->timeout);
249 static int wdt_stop(struct watchdog_device *wdog)
251 return wdt_set_time(0);
254 static int wdt_set_timeout(struct watchdog_device *wdog, unsigned int timeout)
256 wdog->timeout = timeout;
261 static unsigned int wdt_get_time(struct watchdog_device *wdog)
263 unsigned int timeleft;
266 ret = superio_enter();
270 superio_select(W83627HF_LD_WDT);
271 timeleft = superio_inb(cr_wdt_timeout);
278 * Notifier for system down
280 static int wdt_notify_sys(struct notifier_block *this, unsigned long code,
283 if (code == SYS_DOWN || code == SYS_HALT)
284 wdt_set_time(0); /* Turn the WDT off */
293 static struct watchdog_info wdt_info = {
294 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
295 .identity = "W83627HF Watchdog",
298 static struct watchdog_ops wdt_ops = {
299 .owner = THIS_MODULE,
302 .set_timeout = wdt_set_timeout,
303 .get_timeleft = wdt_get_time,
306 static struct watchdog_device wdt_dev = {
309 .timeout = WATCHDOG_TIMEOUT,
315 * The WDT needs to learn about soft shutdowns in order to
316 * turn the timebomb registers off.
319 static struct notifier_block wdt_notifier = {
320 .notifier_call = wdt_notify_sys,
323 static int wdt_find(int addr)
328 cr_wdt_timeout = W83627HF_WDT_TIMEOUT;
329 cr_wdt_control = W83627HF_WDT_CONTROL;
331 ret = superio_enter();
334 superio_select(W83627HF_LD_WDT);
335 val = superio_inb(0x20);
345 cr_wdt_timeout = W83697HF_WDT_TIMEOUT;
346 cr_wdt_control = W83697HF_WDT_CONTROL;
350 cr_wdt_timeout = W83697HF_WDT_TIMEOUT;
351 cr_wdt_control = W83697HF_WDT_CONTROL;
394 pr_err("Unsupported chip ID: 0x%02x\n", val);
401 static int __init wdt_init(void)
405 const char * const chip_name[] = {
425 chip = wdt_find(0x2e);
428 chip = wdt_find(0x4e);
433 pr_info("WDT driver for %s Super I/O chip initialising\n",
436 watchdog_init_timeout(&wdt_dev, timeout, NULL);
437 watchdog_set_nowayout(&wdt_dev, nowayout);
439 ret = w83627hf_init(&wdt_dev, chip);
441 pr_err("failed to initialize watchdog (err=%d)\n", ret);
445 ret = register_reboot_notifier(&wdt_notifier);
447 pr_err("cannot register reboot notifier (err=%d)\n", ret);
451 ret = watchdog_register_device(&wdt_dev);
455 pr_info("initialized. timeout=%d sec (nowayout=%d)\n",
456 wdt_dev.timeout, nowayout);
461 unregister_reboot_notifier(&wdt_notifier);
465 static void __exit wdt_exit(void)
467 watchdog_unregister_device(&wdt_dev);
468 unregister_reboot_notifier(&wdt_notifier);
471 module_init(wdt_init);
472 module_exit(wdt_exit);
474 MODULE_LICENSE("GPL");
475 MODULE_AUTHOR("Pádraig Brady <P@draigBrady.com>");
476 MODULE_DESCRIPTION("w83627hf/thf WDT driver");