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/init.h>
42 #define WATCHDOG_NAME "w83627hf/thf/hg/dhg WDT"
43 #define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */
46 static int cr_wdt_timeout; /* WDT timeout register */
47 static int cr_wdt_control; /* WDT control register */
48 static int cr_wdt_csr; /* WDT control & status register */
50 enum chips { w83627hf, w83627s, w83697hf, w83697ug, w83637hf, w83627thf,
51 w83687thf, w83627ehf, w83627dhg, w83627uhg, w83667hg, w83627dhg_p,
52 w83667hg_b, nct6775, nct6776, nct6779, nct6791, nct6792, nct6102 };
54 static int timeout; /* in seconds */
55 module_param(timeout, int, 0);
56 MODULE_PARM_DESC(timeout,
57 "Watchdog timeout in seconds. 1 <= timeout <= 255, default="
58 __MODULE_STRING(WATCHDOG_TIMEOUT) ".");
60 static bool nowayout = WATCHDOG_NOWAYOUT;
61 module_param(nowayout, bool, 0);
62 MODULE_PARM_DESC(nowayout,
63 "Watchdog cannot be stopped once started (default="
64 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
66 static int early_disable;
67 module_param(early_disable, int, 0);
68 MODULE_PARM_DESC(early_disable, "Disable watchdog at boot time (default=0)");
74 #define WDT_EFER (wdt_io+0) /* Extended Function Enable Registers */
75 #define WDT_EFIR (wdt_io+0) /* Extended Function Index Register
77 #define WDT_EFDR (WDT_EFIR+1) /* Extended Function Data Register */
79 #define W83627HF_LD_WDT 0x08
81 #define W83627HF_ID 0x52
82 #define W83627S_ID 0x59
83 #define W83697HF_ID 0x60
84 #define W83697UG_ID 0x68
85 #define W83637HF_ID 0x70
86 #define W83627THF_ID 0x82
87 #define W83687THF_ID 0x85
88 #define W83627EHF_ID 0x88
89 #define W83627DHG_ID 0xa0
90 #define W83627UHG_ID 0xa2
91 #define W83667HG_ID 0xa5
92 #define W83627DHG_P_ID 0xb0
93 #define W83667HG_B_ID 0xb3
94 #define NCT6775_ID 0xb4
95 #define NCT6776_ID 0xc3
96 #define NCT6102_ID 0xc4
97 #define NCT6779_ID 0xc5
98 #define NCT6791_ID 0xc8
99 #define NCT6792_ID 0xc9
101 #define W83627HF_WDT_TIMEOUT 0xf6
102 #define W83697HF_WDT_TIMEOUT 0xf4
103 #define NCT6102D_WDT_TIMEOUT 0xf1
105 #define W83627HF_WDT_CONTROL 0xf5
106 #define W83697HF_WDT_CONTROL 0xf3
107 #define NCT6102D_WDT_CONTROL 0xf0
109 #define W836X7HF_WDT_CSR 0xf7
110 #define NCT6102D_WDT_CSR 0xf2
112 static void superio_outb(int reg, int val)
118 static inline int superio_inb(int reg)
121 return inb(WDT_EFDR);
124 static int superio_enter(void)
126 if (!request_muxed_region(wdt_io, 2, WATCHDOG_NAME))
129 outb_p(0x87, WDT_EFER); /* Enter extended function mode */
130 outb_p(0x87, WDT_EFER); /* Again according to manual */
135 static void superio_select(int ld)
137 superio_outb(0x07, ld);
140 static void superio_exit(void)
142 outb_p(0xAA, WDT_EFER); /* Leave extended function mode */
143 release_region(wdt_io, 2);
146 static int w83627hf_init(struct watchdog_device *wdog, enum chips chip)
151 ret = superio_enter();
155 superio_select(W83627HF_LD_WDT);
157 /* set CR30 bit 0 to activate GPIO2 */
158 t = superio_inb(0x30);
160 superio_outb(0x30, t | 0x01);
165 t = superio_inb(0x2B) & ~0x10;
166 superio_outb(0x2B, t); /* set GPIO24 to WDT0 */
169 /* Set pin 119 to WDTO# mode (= CR29, WDT0) */
170 t = superio_inb(0x29) & ~0x60;
172 superio_outb(0x29, t);
175 /* Set pin 118 to WDTO# mode */
176 t = superio_inb(0x2b) & ~0x04;
177 superio_outb(0x2b, t);
180 t = (superio_inb(0x2B) & ~0x08) | 0x04;
181 superio_outb(0x2B, t); /* set GPIO3 to WDT0 */
185 t = superio_inb(0x2D) & ~0x01; /* PIN77 -> WDT0# */
186 superio_outb(0x2D, t); /* set GPIO5 to WDT0 */
187 t = superio_inb(cr_wdt_control);
188 t |= 0x02; /* enable the WDTO# output low pulse
189 * to the KBRST# pin */
190 superio_outb(cr_wdt_control, t);
195 t = superio_inb(0x2C) & ~0x80; /* PIN47 -> WDT0# */
196 superio_outb(0x2C, t);
209 * These chips have a fixed WDTO# output pin (W83627UHG),
210 * or support more than one WDTO# output pin.
211 * Don't touch its configuration, and hope the BIOS
212 * does the right thing.
214 t = superio_inb(cr_wdt_control);
215 t |= 0x02; /* enable the WDTO# output low pulse
216 * to the KBRST# pin */
217 superio_outb(cr_wdt_control, t);
223 t = superio_inb(cr_wdt_timeout);
226 pr_warn("Stopping previously enabled watchdog until userland kicks in\n");
227 superio_outb(cr_wdt_timeout, 0);
229 pr_info("Watchdog already running. Resetting timeout to %d sec\n",
231 superio_outb(cr_wdt_timeout, wdog->timeout);
235 /* set second mode & disable keyboard turning off watchdog */
236 t = superio_inb(cr_wdt_control) & ~0x0C;
237 superio_outb(cr_wdt_control, t);
239 /* reset trigger, disable keyboard & mouse turning off watchdog */
240 t = superio_inb(cr_wdt_csr) & ~0xD0;
241 superio_outb(cr_wdt_csr, t);
248 static int wdt_set_time(unsigned int timeout)
252 ret = superio_enter();
256 superio_select(W83627HF_LD_WDT);
257 superio_outb(cr_wdt_timeout, timeout);
263 static int wdt_start(struct watchdog_device *wdog)
265 return wdt_set_time(wdog->timeout);
268 static int wdt_stop(struct watchdog_device *wdog)
270 return wdt_set_time(0);
273 static int wdt_set_timeout(struct watchdog_device *wdog, unsigned int timeout)
275 wdog->timeout = timeout;
280 static unsigned int wdt_get_time(struct watchdog_device *wdog)
282 unsigned int timeleft;
285 ret = superio_enter();
289 superio_select(W83627HF_LD_WDT);
290 timeleft = superio_inb(cr_wdt_timeout);
300 static struct watchdog_info wdt_info = {
301 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
302 .identity = "W83627HF Watchdog",
305 static const struct watchdog_ops wdt_ops = {
306 .owner = THIS_MODULE,
309 .set_timeout = wdt_set_timeout,
310 .get_timeleft = wdt_get_time,
313 static struct watchdog_device wdt_dev = {
316 .timeout = WATCHDOG_TIMEOUT,
322 * The WDT needs to learn about soft shutdowns in order to
323 * turn the timebomb registers off.
326 static int wdt_find(int addr)
331 cr_wdt_timeout = W83627HF_WDT_TIMEOUT;
332 cr_wdt_control = W83627HF_WDT_CONTROL;
333 cr_wdt_csr = W836X7HF_WDT_CSR;
335 ret = superio_enter();
338 superio_select(W83627HF_LD_WDT);
339 val = superio_inb(0x20);
349 cr_wdt_timeout = W83697HF_WDT_TIMEOUT;
350 cr_wdt_control = W83697HF_WDT_CONTROL;
354 cr_wdt_timeout = W83697HF_WDT_TIMEOUT;
355 cr_wdt_control = W83697HF_WDT_CONTROL;
401 cr_wdt_timeout = NCT6102D_WDT_TIMEOUT;
402 cr_wdt_control = NCT6102D_WDT_CONTROL;
403 cr_wdt_csr = NCT6102D_WDT_CSR;
410 pr_err("Unsupported chip ID: 0x%02x\n", val);
417 static int __init wdt_init(void)
421 const char * const chip_name[] = {
444 chip = wdt_find(0x2e);
447 chip = wdt_find(0x4e);
452 pr_info("WDT driver for %s Super I/O chip initialising\n",
455 watchdog_init_timeout(&wdt_dev, timeout, NULL);
456 watchdog_set_nowayout(&wdt_dev, nowayout);
457 watchdog_stop_on_reboot(&wdt_dev);
459 ret = w83627hf_init(&wdt_dev, chip);
461 pr_err("failed to initialize watchdog (err=%d)\n", ret);
465 ret = watchdog_register_device(&wdt_dev);
469 pr_info("initialized. timeout=%d sec (nowayout=%d)\n",
470 wdt_dev.timeout, nowayout);
475 static void __exit wdt_exit(void)
477 watchdog_unregister_device(&wdt_dev);
480 module_init(wdt_init);
481 module_exit(wdt_exit);
483 MODULE_LICENSE("GPL");
484 MODULE_AUTHOR("Pádraig Brady <P@draigBrady.com>");
485 MODULE_DESCRIPTION("w83627hf/thf WDT driver");