Merge branch 'x86-xsave-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / drivers / watchdog / w83627hf_wdt.c
CommitLineData
1da177e4 1/*
0e94f2ee
VD
2 * w83627hf/thf WDT driver
3 *
30a83695
GR
4 * (c) Copyright 2013 Guenter Roeck
5 * converted to watchdog infrastructure
6 *
0e94f2ee
VD
7 * (c) Copyright 2007 Vlad Drukker <vlad@storewiz.com>
8 * added support for W83627THF.
1da177e4 9 *
d36b6910 10 * (c) Copyright 2003,2007 Pádraig Brady <P@draigBrady.com>
1da177e4
LT
11 *
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 *
29fa0586
AC
17 * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>,
18 * All Rights Reserved.
1da177e4
LT
19 *
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 *
29fa0586 29 * (c) Copyright 1995 Alan Cox <alan@lxorguk.ukuu.org.uk>
1da177e4
LT
30 */
31
27c766aa
JP
32#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
33
1da177e4
LT
34#include <linux/module.h>
35#include <linux/moduleparam.h>
36#include <linux/types.h>
1da177e4 37#include <linux/watchdog.h>
1da177e4
LT
38#include <linux/ioport.h>
39#include <linux/notifier.h>
40#include <linux/reboot.h>
41#include <linux/init.h>
46a3949d 42#include <linux/io.h>
1da177e4 43
9c67bea4 44#define WATCHDOG_NAME "w83627hf/thf/hg/dhg WDT"
1da177e4
LT
45#define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */
46
962c04f5 47static int wdt_io;
7b6d0b6a
GR
48static int cr_wdt_timeout; /* WDT timeout register */
49static int cr_wdt_control; /* WDT control register */
962c04f5 50
7b6d0b6a
GR
51enum chips { w83627hf, w83627s, w83697hf, w83697ug, w83637hf, w83627thf,
52 w83687thf, w83627ehf, w83627dhg, w83627uhg, w83667hg, w83627dhg_p,
53 w83667hg_b, nct6775, nct6776, nct6779 };
1da177e4 54
30a83695 55static int timeout; /* in seconds */
1da177e4 56module_param(timeout, int, 0);
46a3949d
AC
57MODULE_PARM_DESC(timeout,
58 "Watchdog timeout in seconds. 1 <= timeout <= 255, default="
59 __MODULE_STRING(WATCHDOG_TIMEOUT) ".");
1da177e4 60
86a1e189
WVS
61static bool nowayout = WATCHDOG_NOWAYOUT;
62module_param(nowayout, bool, 0);
46a3949d
AC
63MODULE_PARM_DESC(nowayout,
64 "Watchdog cannot be stopped once started (default="
65 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
1da177e4 66
be281588
GR
67static int early_disable;
68module_param(early_disable, int, 0);
69MODULE_PARM_DESC(early_disable, "Disable watchdog at boot time (default=0)");
70
1da177e4
LT
71/*
72 * Kernel methods.
73 */
74
75#define WDT_EFER (wdt_io+0) /* Extended Function Enable Registers */
46a3949d
AC
76#define WDT_EFIR (wdt_io+0) /* Extended Function Index Register
77 (same as EFER) */
1da177e4
LT
78#define WDT_EFDR (WDT_EFIR+1) /* Extended Function Data Register */
79
ef0c1a6b
GR
80#define W83627HF_LD_WDT 0x08
81
962c04f5
GR
82#define W83627HF_ID 0x52
83#define W83627S_ID 0x59
7b6d0b6a
GR
84#define W83697HF_ID 0x60
85#define W83697UG_ID 0x68
962c04f5
GR
86#define W83637HF_ID 0x70
87#define W83627THF_ID 0x82
88#define W83687THF_ID 0x85
89#define W83627EHF_ID 0x88
90#define W83627DHG_ID 0xa0
91#define W83627UHG_ID 0xa2
92#define W83667HG_ID 0xa5
93#define W83627DHG_P_ID 0xb0
94#define W83667HG_B_ID 0xb3
95#define NCT6775_ID 0xb4
96#define NCT6776_ID 0xc3
97#define NCT6779_ID 0xc5
98
7b6d0b6a
GR
99#define W83627HF_WDT_TIMEOUT 0xf6
100#define W83697HF_WDT_TIMEOUT 0xf4
101
102#define W83627HF_WDT_CONTROL 0xf5
103#define W83697HF_WDT_CONTROL 0xf3
104
ef0c1a6b
GR
105static void superio_outb(int reg, int val)
106{
107 outb(reg, WDT_EFER);
108 outb(val, WDT_EFDR);
109}
110
111static inline int superio_inb(int reg)
112{
113 outb(reg, WDT_EFER);
114 return inb(WDT_EFDR);
115}
116
117static int superio_enter(void)
1da177e4 118{
ef0c1a6b
GR
119 if (!request_muxed_region(wdt_io, 2, WATCHDOG_NAME))
120 return -EBUSY;
121
1da177e4
LT
122 outb_p(0x87, WDT_EFER); /* Enter extended function mode */
123 outb_p(0x87, WDT_EFER); /* Again according to manual */
ef0c1a6b
GR
124
125 return 0;
1da177e4
LT
126}
127
ef0c1a6b
GR
128static void superio_select(int ld)
129{
130 superio_outb(0x07, ld);
131}
132
133static void superio_exit(void)
1da177e4
LT
134{
135 outb_p(0xAA, WDT_EFER); /* Leave extended function mode */
ef0c1a6b 136 release_region(wdt_io, 2);
1da177e4
LT
137}
138
962c04f5 139static int w83627hf_init(struct watchdog_device *wdog, enum chips chip)
1da177e4 140{
ef0c1a6b 141 int ret;
1da177e4
LT
142 unsigned char t;
143
ef0c1a6b
GR
144 ret = superio_enter();
145 if (ret)
146 return ret;
1da177e4 147
ef0c1a6b 148 superio_select(W83627HF_LD_WDT);
8f526389 149
ef0c1a6b
GR
150 /* set CR30 bit 0 to activate GPIO2 */
151 t = superio_inb(0x30);
ac461103 152 if (!(t & 0x01))
ef0c1a6b 153 superio_outb(0x30, t | 0x01);
8f526389 154
962c04f5
GR
155 switch (chip) {
156 case w83627hf:
157 case w83627s:
158 t = superio_inb(0x2B) & ~0x10;
159 superio_outb(0x2B, t); /* set GPIO24 to WDT0 */
160 break;
7b6d0b6a
GR
161 case w83697hf:
162 /* Set pin 119 to WDTO# mode (= CR29, WDT0) */
163 t = superio_inb(0x29) & ~0x60;
164 t |= 0x20;
165 superio_outb(0x29, t);
166 break;
167 case w83697ug:
168 /* Set pin 118 to WDTO# mode */
169 t = superio_inb(0x2b) & ~0x04;
170 superio_outb(0x2b, t);
171 break;
962c04f5
GR
172 case w83627thf:
173 t = (superio_inb(0x2B) & ~0x08) | 0x04;
174 superio_outb(0x2B, t); /* set GPIO3 to WDT0 */
175 break;
176 case w83627dhg:
177 case w83627dhg_p:
178 t = superio_inb(0x2D) & ~0x01; /* PIN77 -> WDT0# */
179 superio_outb(0x2D, t); /* set GPIO5 to WDT0 */
7b6d0b6a 180 t = superio_inb(cr_wdt_control);
962c04f5
GR
181 t |= 0x02; /* enable the WDTO# output low pulse
182 * to the KBRST# pin */
7b6d0b6a 183 superio_outb(cr_wdt_control, t);
962c04f5
GR
184 break;
185 case w83637hf:
186 break;
187 case w83687thf:
188 t = superio_inb(0x2C) & ~0x80; /* PIN47 -> WDT0# */
189 superio_outb(0x2C, t);
190 break;
191 case w83627ehf:
192 case w83627uhg:
193 case w83667hg:
194 case w83667hg_b:
195 case nct6775:
196 case nct6776:
197 case nct6779:
198 /*
199 * These chips have a fixed WDTO# output pin (W83627UHG),
200 * or support more than one WDTO# output pin.
201 * Don't touch its configuration, and hope the BIOS
202 * does the right thing.
203 */
7b6d0b6a 204 t = superio_inb(cr_wdt_control);
962c04f5
GR
205 t |= 0x02; /* enable the WDTO# output low pulse
206 * to the KBRST# pin */
7b6d0b6a 207 superio_outb(cr_wdt_control, t);
962c04f5
GR
208 break;
209 default:
210 break;
211 }
212
7b6d0b6a 213 t = superio_inb(cr_wdt_timeout);
93642ecd 214 if (t != 0) {
be281588
GR
215 if (early_disable) {
216 pr_warn("Stopping previously enabled watchdog until userland kicks in\n");
217 superio_outb(cr_wdt_timeout, 0);
218 } else {
219 pr_info("Watchdog already running. Resetting timeout to %d sec\n",
220 wdog->timeout);
221 superio_outb(cr_wdt_timeout, wdog->timeout);
222 }
93642ecd 223 }