blob: 954becdf9cf55fadcb80a95e200507cbe8c29fbd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Vlad Drukker0e94f2e2007-03-25 17:34:39 +02002 * w83627hf/thf WDT driver
3 *
Guenter Roeck30a836952013-10-28 19:43:57 -07004 * (c) Copyright 2013 Guenter Roeck
5 * converted to watchdog infrastructure
6 *
Vlad Drukker0e94f2e2007-03-25 17:34:39 +02007 * (c) Copyright 2007 Vlad Drukker <vlad@storewiz.com>
8 * added support for W83627THF.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
Al Virod36b6912011-12-29 17:09:01 -050010 * (c) Copyright 2003,2007 Pádraig Brady <P@draigBrady.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * Based on advantechwdt.c which is based on wdt.c.
13 * Original copyright messages:
14 *
15 * (c) Copyright 2000-2001 Marek Michalkiewicz <marekm@linux.org.pl>
16 *
Alan Cox29fa0582008-10-27 15:17:56 +000017 * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>,
18 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 *
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.
24 *
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.
28 *
Alan Cox29fa0582008-10-27 15:17:56 +000029 * (c) Copyright 1995 Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 */
31
Joe Perches27c766a2012-02-15 15:06:19 -080032#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/module.h>
35#include <linux/moduleparam.h>
36#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/watchdog.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/ioport.h>
39#include <linux/notifier.h>
40#include <linux/reboot.h>
41#include <linux/init.h>
Alan Cox46a39492008-05-19 14:09:18 +010042#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Benny Loenstrup Ammitzboell9c67bea2010-11-11 16:08:41 +010044#define WATCHDOG_NAME "w83627hf/thf/hg/dhg WDT"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */
46
Guenter Roeck962c04f2013-08-17 13:58:43 -070047static int wdt_io;
48
49enum chips { w83627hf, w83627s, w83637hf, w83627thf, w83687thf,
50 w83627ehf, w83627dhg, w83627uhg, w83667hg, w83627dhg_p, w83667hg_b,
51 nct6775, nct6776, nct6779 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Guenter Roeck30a836952013-10-28 19:43:57 -070053static int timeout; /* in seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054module_param(timeout, int, 0);
Alan Cox46a39492008-05-19 14:09:18 +010055MODULE_PARM_DESC(timeout,
56 "Watchdog timeout in seconds. 1 <= timeout <= 255, default="
57 __MODULE_STRING(WATCHDOG_TIMEOUT) ".");
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010059static bool nowayout = WATCHDOG_NOWAYOUT;
60module_param(nowayout, bool, 0);
Alan Cox46a39492008-05-19 14:09:18 +010061MODULE_PARM_DESC(nowayout,
62 "Watchdog cannot be stopped once started (default="
63 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/*
66 * Kernel methods.
67 */
68
69#define WDT_EFER (wdt_io+0) /* Extended Function Enable Registers */
Alan Cox46a39492008-05-19 14:09:18 +010070#define WDT_EFIR (wdt_io+0) /* Extended Function Index Register
71 (same as EFER) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#define WDT_EFDR (WDT_EFIR+1) /* Extended Function Data Register */
73
Guenter Roeckef0c1a62013-08-17 13:58:42 -070074#define W83627HF_LD_WDT 0x08
75
Guenter Roeck962c04f2013-08-17 13:58:43 -070076#define W83627HF_ID 0x52
77#define W83627S_ID 0x59
78#define W83637HF_ID 0x70
79#define W83627THF_ID 0x82
80#define W83687THF_ID 0x85
81#define W83627EHF_ID 0x88
82#define W83627DHG_ID 0xa0
83#define W83627UHG_ID 0xa2
84#define W83667HG_ID 0xa5
85#define W83627DHG_P_ID 0xb0
86#define W83667HG_B_ID 0xb3
87#define NCT6775_ID 0xb4
88#define NCT6776_ID 0xc3
89#define NCT6779_ID 0xc5
90
Guenter Roeckef0c1a62013-08-17 13:58:42 -070091static void superio_outb(int reg, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Guenter Roeckef0c1a62013-08-17 13:58:42 -070093 outb(reg, WDT_EFER);
94 outb(val, WDT_EFDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Guenter Roeckef0c1a62013-08-17 13:58:42 -070097static inline int superio_inb(int reg)
98{
99 outb(reg, WDT_EFER);
100 return inb(WDT_EFDR);
101}
102
103static int superio_enter(void)
104{
105 if (!request_muxed_region(wdt_io, 2, WATCHDOG_NAME))
106 return -EBUSY;
107
108 outb_p(0x87, WDT_EFER); /* Enter extended function mode */
109 outb_p(0x87, WDT_EFER); /* Again according to manual */
110
111 return 0;
112}
113
114static void superio_select(int ld)
115{
116 superio_outb(0x07, ld);
117}
118
119static void superio_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 outb_p(0xAA, WDT_EFER); /* Leave extended function mode */
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700122 release_region(wdt_io, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
Guenter Roeck962c04f2013-08-17 13:58:43 -0700125static int w83627hf_init(struct watchdog_device *wdog, enum chips chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700127 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 unsigned char t;
129
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700130 ret = superio_enter();
131 if (ret)
132 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700134 superio_select(W83627HF_LD_WDT);
Guenter Roeck8f526382013-08-17 13:58:40 -0700135
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700136 /* set CR30 bit 0 to activate GPIO2 */
137 t = superio_inb(0x30);
Guenter Roeckac461102013-08-17 13:58:41 -0700138 if (!(t & 0x01))
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700139 superio_outb(0x30, t | 0x01);
Guenter Roeck8f526382013-08-17 13:58:40 -0700140
Guenter Roeck962c04f2013-08-17 13:58:43 -0700141 switch (chip) {
142 case w83627hf:
143 case w83627s:
144 t = superio_inb(0x2B) & ~0x10;
145 superio_outb(0x2B, t); /* set GPIO24 to WDT0 */
146 break;
147 case w83627thf:
148 t = (superio_inb(0x2B) & ~0x08) | 0x04;
149 superio_outb(0x2B, t); /* set GPIO3 to WDT0 */
150 break;
151 case w83627dhg:
152 case w83627dhg_p:
153 t = superio_inb(0x2D) & ~0x01; /* PIN77 -> WDT0# */
154 superio_outb(0x2D, t); /* set GPIO5 to WDT0 */
155 t = superio_inb(0xF5);
156 t |= 0x02; /* enable the WDTO# output low pulse
157 * to the KBRST# pin */
158 superio_outb(0xF5, t);
159 break;
160 case w83637hf:
161 break;
162 case w83687thf:
163 t = superio_inb(0x2C) & ~0x80; /* PIN47 -> WDT0# */
164 superio_outb(0x2C, t);
165 break;
166 case w83627ehf:
167 case w83627uhg:
168 case w83667hg:
169 case w83667hg_b:
170 case nct6775:
171 case nct6776:
172 case nct6779:
173 /*
174 * These chips have a fixed WDTO# output pin (W83627UHG),
175 * or support more than one WDTO# output pin.
176 * Don't touch its configuration, and hope the BIOS
177 * does the right thing.
178 */
179 t = superio_inb(0xF5);
180 t |= 0x02; /* enable the WDTO# output low pulse
181 * to the KBRST# pin */
182 superio_outb(0xF5, t);
183 break;
184 default:
185 break;
186 }
187
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700188 t = superio_inb(0xF6);
P@Draig Brady93642ec2005-08-17 09:06:07 +0200189 if (t != 0) {
Joe Perches27c766a2012-02-15 15:06:19 -0800190 pr_info("Watchdog already running. Resetting timeout to %d sec\n",
Guenter Roeck30a836952013-10-28 19:43:57 -0700191 wdog->timeout);
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700192 superio_outb(0xF6, wdog->timeout);
P@Draig Brady93642ec2005-08-17 09:06:07 +0200193 }
Pádraig Brady28dd1b02007-07-24 11:49:27 +0100194
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700195 /* set second mode & disable keyboard turning off watchdog */
196 t = superio_inb(0xF5) & ~0x0C;
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700197 superio_outb(0xF5, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700199 /* disable keyboard & mouse turning off watchdog */
200 t = superio_inb(0xF7) & ~0xC0;
201 superio_outb(0xF7, t);
Pádraig Brady28dd1b02007-07-24 11:49:27 +0100202
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700203 superio_exit();
204
205 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Guenter Roeck30a836952013-10-28 19:43:57 -0700208static int wdt_set_time(unsigned int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700210 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700212 ret = superio_enter();
213 if (ret)
214 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700216 superio_select(W83627HF_LD_WDT);
217 superio_outb(0xF6, timeout);
218 superio_exit();
Wim Van Sebroeckab9d4412006-09-02 18:50:20 +0200219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return 0;
221}
222
Guenter Roeck30a836952013-10-28 19:43:57 -0700223static int wdt_start(struct watchdog_device *wdog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Guenter Roeck30a836952013-10-28 19:43:57 -0700225 return wdt_set_time(wdog->timeout);
226}
227
228static int wdt_stop(struct watchdog_device *wdog)
229{
230 return wdt_set_time(0);
231}
232
233static int wdt_set_timeout(struct watchdog_device *wdog, unsigned int timeout)
234{
235 wdog->timeout = timeout;
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return 0;
238}
239
Guenter Roeck30a836952013-10-28 19:43:57 -0700240static unsigned int wdt_get_time(struct watchdog_device *wdog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Guenter Roeck30a836952013-10-28 19:43:57 -0700242 unsigned int timeleft;
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700243 int ret;
Greg Leec63b6d02011-09-12 20:28:46 -0400244
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700245 ret = superio_enter();
246 if (ret)
247 return 0;
Greg Leec63b6d02011-09-12 20:28:46 -0400248
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700249 superio_select(W83627HF_LD_WDT);
250 timeleft = superio_inb(0xF6);
251 superio_exit();
Greg Leec63b6d02011-09-12 20:28:46 -0400252
Greg Leec63b6d02011-09-12 20:28:46 -0400253 return timeleft;
254}
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256/*
257 * Notifier for system down
258 */
Alan Cox46a39492008-05-19 14:09:18 +0100259static int wdt_notify_sys(struct notifier_block *this, unsigned long code,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 void *unused)
261{
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000262 if (code == SYS_DOWN || code == SYS_HALT)
Guenter Roeck30a836952013-10-28 19:43:57 -0700263 wdt_set_time(0); /* Turn the WDT off */
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return NOTIFY_DONE;
266}
267
268/*
269 * Kernel Interfaces
270 */
271
Guenter Roeck30a836952013-10-28 19:43:57 -0700272static struct watchdog_info wdt_info = {
273 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
274 .identity = "W83627HF Watchdog",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275};
276
Guenter Roeck30a836952013-10-28 19:43:57 -0700277static struct watchdog_ops wdt_ops = {
278 .owner = THIS_MODULE,
279 .start = wdt_start,
280 .stop = wdt_stop,
281 .set_timeout = wdt_set_timeout,
282 .get_timeleft = wdt_get_time,
283};
284
285static struct watchdog_device wdt_dev = {
286 .info = &wdt_info,
287 .ops = &wdt_ops,
288 .timeout = WATCHDOG_TIMEOUT,
289 .min_timeout = 1,
290 .max_timeout = 255,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291};
292
293/*
294 * The WDT needs to learn about soft shutdowns in order to
295 * turn the timebomb registers off.
296 */
297
298static struct notifier_block wdt_notifier = {
299 .notifier_call = wdt_notify_sys,
300};
301
Guenter Roeck962c04f2013-08-17 13:58:43 -0700302static int wdt_find(int addr)
303{
304 u8 val;
305 int ret;
306
307 ret = superio_enter();
308 if (ret)
309 return ret;
310 superio_select(W83627HF_LD_WDT);
311 val = superio_inb(0x20);
312 switch (val) {
313 case W83627HF_ID:
314 ret = w83627hf;
315 break;
316 case W83627S_ID:
317 ret = w83627s;
318 break;
319 case W83637HF_ID:
320 ret = w83637hf;
321 break;
322 case W83627THF_ID:
323 ret = w83627thf;
324 break;
325 case W83687THF_ID:
326 ret = w83687thf;
327 break;
328 case W83627EHF_ID:
329 ret = w83627ehf;
330 break;
331 case W83627DHG_ID:
332 ret = w83627dhg;
333 break;
334 case W83627DHG_P_ID:
335 ret = w83627dhg_p;
336 break;
337 case W83627UHG_ID:
338 ret = w83627uhg;
339 break;
340 case W83667HG_ID:
341 ret = w83667hg;
342 break;
343 case W83667HG_B_ID:
344 ret = w83667hg_b;
345 break;
346 case NCT6775_ID:
347 ret = nct6775;
348 break;
349 case NCT6776_ID:
350 ret = nct6776;
351 break;
352 case NCT6779_ID:
353 ret = nct6779;
354 break;
355 case 0xff:
356 ret = -ENODEV;
357 break;
358 default:
359 ret = -ENODEV;
360 pr_err("Unsupported chip ID: 0x%02x\n", val);
361 break;
362 }
363 superio_exit();
364 return ret;
365}
366
Alan Cox46a39492008-05-19 14:09:18 +0100367static int __init wdt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
369 int ret;
Guenter Roeck962c04f2013-08-17 13:58:43 -0700370 int chip;
371 const char * const chip_name[] = {
372 "W83627HF",
373 "W83627S",
374 "W83637HF",
375 "W83627THF",
376 "W83687THF",
377 "W83627EHF",
378 "W83627DHG",
379 "W83627UHG",
380 "W83667HG",
381 "W83667DHG-P",
382 "W83667HG-B",
383 "NCT6775",
384 "NCT6776",
385 "NCT6779",
386 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Guenter Roeck962c04f2013-08-17 13:58:43 -0700388 wdt_io = 0x2e;
389 chip = wdt_find(0x2e);
390 if (chip < 0) {
391 wdt_io = 0x4e;
392 chip = wdt_find(0x4e);
393 if (chip < 0)
394 return chip;
395 }
396
397 pr_info("WDT driver for %s Super I/O chip initialising\n",
398 chip_name[chip]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Guenter Roeck30a836952013-10-28 19:43:57 -0700400 watchdog_init_timeout(&wdt_dev, timeout, NULL);
401 watchdog_set_nowayout(&wdt_dev, nowayout);
402
Guenter Roeck962c04f2013-08-17 13:58:43 -0700403 ret = w83627hf_init(&wdt_dev, chip);
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700404 if (ret) {
405 pr_err("failed to initialize watchdog (err=%d)\n", ret);
406 return ret;
407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 ret = register_reboot_notifier(&wdt_notifier);
410 if (ret != 0) {
Joe Perches27c766a2012-02-15 15:06:19 -0800411 pr_err("cannot register reboot notifier (err=%d)\n", ret);
Guenter Roeckef0c1a62013-08-17 13:58:42 -0700412 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414
Guenter Roeck30a836952013-10-28 19:43:57 -0700415 ret = watchdog_register_device(&wdt_dev);
416 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 goto unreg_reboot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Joe Perches27c766a2012-02-15 15:06:19 -0800419 pr_info("initialized. timeout=%d sec (nowayout=%d)\n",
Guenter Roeck30a836952013-10-28 19:43:57 -0700420 wdt_dev.timeout, nowayout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return ret;
Guenter Roeck30a836952013-10-28 19:43:57 -0700423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424unreg_reboot:
425 unregister_reboot_notifier(&wdt_notifier);
Guenter Roeck30a836952013-10-28 19:43:57 -0700426 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Alan Cox46a39492008-05-19 14:09:18 +0100429static void __exit wdt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Guenter Roeck30a836952013-10-28 19:43:57 -0700431 watchdog_unregister_device(&wdt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 unregister_reboot_notifier(&wdt_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
435module_init(wdt_init);
436module_exit(wdt_exit);
437
438MODULE_LICENSE("GPL");
Al Virod36b6912011-12-29 17:09:01 -0500439MODULE_AUTHOR("Pádraig Brady <P@draigBrady.com>");
Vlad Drukker0e94f2e2007-03-25 17:34:39 +0200440MODULE_DESCRIPTION("w83627hf/thf WDT driver");