1 // SPDX-License-Identifier: GPL-2.0+
3 * w83627hf/thf WDT driver
5 * (c) Copyright 2013 Guenter Roeck
6 * converted to watchdog infrastructure
8 * (c) Copyright 2007 Vlad Drukker <vlad@storewiz.com>
9 * added support for W83627THF.
11 * (c) Copyright 2003,2007 Pádraig Brady <P@draigBrady.com>
13 * Based on advantechwdt.c which is based on wdt.c.
14 * Original copyright messages:
16 * (c) Copyright 2000-2001 Marek Michalkiewicz <marekm@linux.org.pl>
18 * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>,
19 * All Rights Reserved.
21 * Neither Alan Cox nor CymruNet Ltd. admit liability nor provide
22 * warranty for any of this software. This material is provided
23 * "AS-IS" and at no charge.
25 * (c) Copyright 1995 Alan Cox <alan@lxorguk.ukuu.org.uk>
28 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30 #include <linux/module.h>
31 #include <linux/moduleparam.h>
32 #include <linux/types.h>
33 #include <linux/watchdog.h>
34 #include <linux/ioport.h>
35 #include <linux/init.h>
37 #include <linux/dmi.h>
39 #define WATCHDOG_NAME "w83627hf/thf/hg/dhg WDT"
40 #define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */
43 static int cr_wdt_timeout; /* WDT timeout register */
44 static int cr_wdt_control; /* WDT control register */
45 static int cr_wdt_csr; /* WDT control & status register */
46 static int wdt_cfg_enter = 0x87;/* key to unlock configuration space */
47 static int wdt_cfg_leave = 0xAA;/* key to lock configuration space */
49 enum chips { w83627hf, w83627s, w83697hf, w83697ug, w83637hf, w83627thf,
50 w83687thf, w83627ehf, w83627dhg, w83627uhg, w83667hg, w83627dhg_p,
51 w83667hg_b, nct6775, nct6776, nct6779, nct6791, nct6792, nct6793,
52 nct6795, nct6796, nct6102, nct6116 };
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 NCT6116_ID 0xd2
98 #define NCT6779_ID 0xc5
99 #define NCT6791_ID 0xc8
100 #define NCT6792_ID 0xc9
101 #define NCT6793_ID 0xd1
102 #define NCT6795_ID 0xd3
103 #define NCT6796_ID 0xd4 /* also NCT9697D, NCT9698D */
105 #define W83627HF_WDT_TIMEOUT 0xf6
106 #define W83697HF_WDT_TIMEOUT 0xf4
107 #define NCT6102D_WDT_TIMEOUT 0xf1
109 #define W83627HF_WDT_CONTROL 0xf5
110 #define W83697HF_WDT_CONTROL 0xf3
111 #define NCT6102D_WDT_CONTROL 0xf0
113 #define W836X7HF_WDT_CSR 0xf7
114 #define NCT6102D_WDT_CSR 0xf2
116 static void superio_outb(int reg, int val)
122 static inline int superio_inb(int reg)
125 return inb(WDT_EFDR);
128 static int superio_enter(void)
130 if (!request_muxed_region(wdt_io, 2, WATCHDOG_NAME))
133 outb_p(wdt_cfg_enter, WDT_EFER); /* Enter extended function mode */
134 outb_p(wdt_cfg_enter, WDT_EFER); /* Again according to manual */
139 static void superio_select(int ld)
141 superio_outb(0x07, ld);
144 static void superio_exit(void)
146 outb_p(wdt_cfg_leave, WDT_EFER); /* Leave extended function mode */
147 release_region(wdt_io, 2);
150 static int w83627hf_init(struct watchdog_device *wdog, enum chips chip)
155 ret = superio_enter();
159 superio_select(W83627HF_LD_WDT);
161 /* set CR30 bit 0 to activate GPIO2 */
162 t = superio_inb(0x30);
164 superio_outb(0x30, t | 0x01);
169 t = superio_inb(0x2B) & ~0x10;
170 superio_outb(0x2B, t); /* set GPIO24 to WDT0 */
173 /* Set pin 119 to WDTO# mode (= CR29, WDT0) */
174 t = superio_inb(0x29) & ~0x60;
176 superio_outb(0x29, t);
179 /* Set pin 118 to WDTO# mode */
180 t = superio_inb(0x2b) & ~0x04;
181 superio_outb(0x2b, t);
184 t = (superio_inb(0x2B) & ~0x08) | 0x04;
185 superio_outb(0x2B, t); /* set GPIO3 to WDT0 */
189 t = superio_inb(0x2D) & ~0x01; /* PIN77 -> WDT0# */
190 superio_outb(0x2D, t); /* set GPIO5 to WDT0 */
191 t = superio_inb(cr_wdt_control);
192 t |= 0x02; /* enable the WDTO# output low pulse
193 * to the KBRST# pin */
194 superio_outb(cr_wdt_control, t);
199 t = superio_inb(0x2C) & ~0x80; /* PIN47 -> WDT0# */
200 superio_outb(0x2C, t);
217 * These chips have a fixed WDTO# output pin (W83627UHG),
218 * or support more than one WDTO# output pin.
219 * Don't touch its configuration, and hope the BIOS
220 * does the right thing.
222 t = superio_inb(cr_wdt_control);
223 t |= 0x02; /* enable the WDTO# output low pulse
224 * to the KBRST# pin */
225 superio_outb(cr_wdt_control, t);
231 t = superio_inb(cr_wdt_timeout);
234 pr_warn("Stopping previously enabled watchdog until userland kicks in\n");
235 superio_outb(cr_wdt_timeout, 0);
237 pr_info("Watchdog already running. Resetting timeout to %d sec\n",
239 superio_outb(cr_wdt_timeout, wdog->timeout);
243 /* set second mode & disable keyboard turning off watchdog */
244 t = superio_inb(cr_wdt_control) & ~0x0C;
245 superio_outb(cr_wdt_control, t);
247 /* reset trigger, disable keyboard & mouse turning off watchdog */
248 t = superio_inb(cr_wdt_csr) & ~0xD0;
249 superio_outb(cr_wdt_csr, t);
256 static int wdt_set_time(unsigned int timeout)
260 ret = superio_enter();
264 superio_select(W83627HF_LD_WDT);
265 superio_outb(cr_wdt_timeout, timeout);
271 static int wdt_start(struct watchdog_device *wdog)
273 return wdt_set_time(wdog->timeout);
276 static int wdt_stop(struct watchdog_device *wdog)
278 return wdt_set_time(0);
281 static int wdt_set_timeout(struct watchdog_device *wdog, unsigned int timeout)
283 wdog->timeout = timeout;
288 static unsigned int wdt_get_time(struct watchdog_device *wdog)
290 unsigned int timeleft;
293 ret = superio_enter();
297 superio_select(W83627HF_LD_WDT);
298 timeleft = superio_inb(cr_wdt_timeout);
308 static const struct watchdog_info wdt_info = {
309 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
310 .identity = "W83627HF Watchdog",
313 static const struct watchdog_ops wdt_ops = {
314 .owner = THIS_MODULE,
317 .set_timeout = wdt_set_timeout,
318 .get_timeleft = wdt_get_time,
321 static struct watchdog_device wdt_dev = {
324 .timeout = WATCHDOG_TIMEOUT,
330 * The WDT needs to learn about soft shutdowns in order to
331 * turn the timebomb registers off.
334 static int wdt_find(int addr)
339 cr_wdt_timeout = W83627HF_WDT_TIMEOUT;
340 cr_wdt_control = W83627HF_WDT_CONTROL;
341 cr_wdt_csr = W836X7HF_WDT_CSR;
343 ret = superio_enter();
346 superio_select(W83627HF_LD_WDT);
347 val = superio_inb(0x20);
357 cr_wdt_timeout = W83697HF_WDT_TIMEOUT;
358 cr_wdt_control = W83697HF_WDT_CONTROL;
362 cr_wdt_timeout = W83697HF_WDT_TIMEOUT;
363 cr_wdt_control = W83697HF_WDT_CONTROL;
418 cr_wdt_timeout = NCT6102D_WDT_TIMEOUT;
419 cr_wdt_control = NCT6102D_WDT_CONTROL;
420 cr_wdt_csr = NCT6102D_WDT_CSR;
424 cr_wdt_timeout = NCT6102D_WDT_TIMEOUT;
425 cr_wdt_control = NCT6102D_WDT_CONTROL;
426 cr_wdt_csr = NCT6102D_WDT_CSR;
433 pr_err("Unsupported chip ID: 0x%02x\n", val);
441 * On some systems, the NCT6791D comes with a companion chip and the
442 * watchdog function is in this companion chip. We must use a different
443 * unlocking sequence to access the companion chip.
445 static int __init wdt_use_alt_key(const struct dmi_system_id *d)
447 wdt_cfg_enter = 0x88;
448 wdt_cfg_leave = 0xBB;
453 static const struct dmi_system_id wdt_dmi_table[] __initconst = {
456 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "INVES"),
457 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "CTS"),
458 DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "INVES"),
459 DMI_EXACT_MATCH(DMI_BOARD_NAME, "SHARKBAY"),
461 .callback = wdt_use_alt_key,
466 static int __init wdt_init(void)
470 static const char * const chip_name[] = {
496 /* Apply system-specific quirks */
497 dmi_check_system(wdt_dmi_table);
500 chip = wdt_find(0x2e);
503 chip = wdt_find(0x4e);
508 pr_info("WDT driver for %s Super I/O chip initialising\n",
511 watchdog_init_timeout(&wdt_dev, timeout, NULL);
512 watchdog_set_nowayout(&wdt_dev, nowayout);
513 watchdog_stop_on_reboot(&wdt_dev);
515 ret = w83627hf_init(&wdt_dev, chip);
517 pr_err("failed to initialize watchdog (err=%d)\n", ret);
521 ret = watchdog_register_device(&wdt_dev);
525 pr_info("initialized. timeout=%d sec (nowayout=%d)\n",
526 wdt_dev.timeout, nowayout);
531 static void __exit wdt_exit(void)
533 watchdog_unregister_device(&wdt_dev);
536 module_init(wdt_init);
537 module_exit(wdt_exit);
539 MODULE_LICENSE("GPL");
540 MODULE_AUTHOR("Pádraig Brady <P@draigBrady.com>");
541 MODULE_DESCRIPTION("w83627hf/thf WDT driver");