Merge branch 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.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 38#include <linux/ioport.h>
1da177e4 39#include <linux/init.h>
46a3949d 40#include <linux/io.h>
31eb42bd 41#include <linux/dmi.h>
1da177e4 42
9c67bea4 43#define WATCHDOG_NAME "w83627hf/thf/hg/dhg WDT"
1da177e4
LT
44#define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */
45
962c04f5 46static int wdt_io;
7b6d0b6a
GR
47static int cr_wdt_timeout; /* WDT timeout register */
48static int cr_wdt_control; /* WDT control register */
33f74b89 49static int cr_wdt_csr; /* WDT control & status register */
31eb42bd
JD
50static int wdt_cfg_enter = 0x87;/* key to unlock configuration space */
51static int wdt_cfg_leave = 0xAA;/* key to lock configuration space */
962c04f5 52
7b6d0b6a
GR
53enum chips { w83627hf, w83627s, w83697hf, w83697ug, w83637hf, w83627thf,
54 w83687thf, w83627ehf, w83627dhg, w83627uhg, w83667hg, w83627dhg_p,
3a9aedb2 55 w83667hg_b, nct6775, nct6776, nct6779, nct6791, nct6792, nct6793,
57cbf0e3 56 nct6795, nct6796, nct6102 };
1da177e4 57
30a83695 58static int timeout; /* in seconds */
1da177e4 59module_param(timeout, int, 0);
46a3949d
AC
60MODULE_PARM_DESC(timeout,
61 "Watchdog timeout in seconds. 1 <= timeout <= 255, default="
62 __MODULE_STRING(WATCHDOG_TIMEOUT) ".");
1da177e4 63
86a1e189
WVS
64static bool nowayout = WATCHDOG_NOWAYOUT;
65module_param(nowayout, bool, 0);
46a3949d
AC
66MODULE_PARM_DESC(nowayout,
67 "Watchdog cannot be stopped once started (default="
68 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
1da177e4 69
be281588
GR
70static int early_disable;
71module_param(early_disable, int, 0);
72MODULE_PARM_DESC(early_disable, "Disable watchdog at boot time (default=0)");
73
1da177e4
LT
74/*
75 * Kernel methods.
76 */
77
78#define WDT_EFER (wdt_io+0) /* Extended Function Enable Registers */
46a3949d
AC
79#define WDT_EFIR (wdt_io+0) /* Extended Function Index Register
80 (same as EFER) */
1da177e4
LT
81#define WDT_EFDR (WDT_EFIR+1) /* Extended Function Data Register */
82
ef0c1a6b
GR
83#define W83627HF_LD_WDT 0x08
84
962c04f5
GR
85#define W83627HF_ID 0x52
86#define W83627S_ID 0x59
7b6d0b6a
GR
87#define W83697HF_ID 0x60
88#define W83697UG_ID 0x68
962c04f5
GR
89#define W83637HF_ID 0x70
90#define W83627THF_ID 0x82
91#define W83687THF_ID 0x85
92#define W83627EHF_ID 0x88
93#define W83627DHG_ID 0xa0
94#define W83627UHG_ID 0xa2
95#define W83667HG_ID 0xa5
96#define W83627DHG_P_ID 0xb0
97#define W83667HG_B_ID 0xb3
98#define NCT6775_ID 0xb4
99#define NCT6776_ID 0xc3
33f74b89 100#define NCT6102_ID 0xc4
962c04f5 101#define NCT6779_ID 0xc5
a77841d5
GR
102#define NCT6791_ID 0xc8
103#define NCT6792_ID 0xc9
3a9aedb2
GR
104#define NCT6793_ID 0xd1
105#define NCT6795_ID 0xd3
57cbf0e3 106#define NCT6796_ID 0xd4 /* also NCT9697D, NCT9698D */
962c04f5 107
7b6d0b6a
GR
108#define W83627HF_WDT_TIMEOUT 0xf6
109#define W83697HF_WDT_TIMEOUT 0xf4
33f74b89 110#define NCT6102D_WDT_TIMEOUT 0xf1
7b6d0b6a
GR
111
112#define W83627HF_WDT_CONTROL 0xf5
113#define W83697HF_WDT_CONTROL 0xf3
33f74b89
RK
114#define NCT6102D_WDT_CONTROL 0xf0
115
116#define W836X7HF_WDT_CSR 0xf7
117#define NCT6102D_WDT_CSR 0xf2
7b6d0b6a 118
ef0c1a6b
GR
119static void superio_outb(int reg, int val)
120{
121 outb(reg, WDT_EFER);
122 outb(val, WDT_EFDR);
123}
124
125static inline int superio_inb(int reg)
126{
127 outb(reg, WDT_EFER);
128 return inb(WDT_EFDR);
129}
130
131static int superio_enter(void)
1da177e4 132{
ef0c1a6b
GR
133 if (!request_muxed_region(wdt_io, 2, WATCHDOG_NAME))
134 return -EBUSY;
135
31eb42bd
JD
136 outb_p(wdt_cfg_enter, WDT_EFER); /* Enter extended function mode */
137 outb_p(wdt_cfg_enter, WDT_EFER); /* Again according to manual */
ef0c1a6b
GR
138
139 return 0;
1da177e4
LT
140}
141
ef0c1a6b
GR
142static void superio_select(int ld)
143{
144 superio_outb(0x07, ld);
145}
146
147static void superio_exit(void)
1da177e4 148{
31eb42bd 149 outb_p(wdt_cfg_leave, WDT_EFER); /* Leave extended function mode */
ef0c1a6b 150 release_region(wdt_io, 2);
1da177e4
LT
151}
152
962c04f5 153static int w83627hf_init(struct watchdog_device *wdog, enum chips chip)
1da177e4 154{
ef0c1a6b 155 int ret;
1da177e4
LT
156 unsigned char t;
157
ef0c1a6b
GR
158 ret = superio_enter();
159 if (ret)
160 return ret;
1da177e4 161
ef0c1a6b 162 superio_select(W83627HF_LD_WDT);
8f526389 163
ef0c1a6b
GR
164 /* set CR30 bit 0 to activate GPIO2 */
165 t = superio_inb(0x30);
ac461103 166 if (!(t & 0x01))
ef0c1a6b 167 superio_outb(0x30, t | 0x01);
8f526389 168
962c04f5
GR
169 switch (chip) {
170 case w83627hf:
171 case w83627s:
172 t = superio_inb(0x2B) & ~0x10;
173 superio_outb(0x2B, t); /* set GPIO24 to WDT0 */
174 break;
7b6d0b6a
GR
175 case w83697hf:
176 /* Set pin 119 to WDTO# mode (= CR29, WDT0) */
177 t = superio_inb(0x29) & ~0x60;
178 t |= 0x20;
179 superio_outb(0x29, t);
180 break;
181 case w83697ug:
182 /* Set pin 118 to WDTO# mode */
183 t = superio_inb(0x2b) & ~0x04;
184 superio_outb(0x2b, t);
185 break;
962c04f5
GR
186 case w83627thf:
187 t = (superio_inb(0x2B) & ~0x08) | 0x04;
188 superio_outb(0x2B, t); /* set GPIO3 to WDT0 */
189 break;
190 case w83627dhg:
191 case w83627dhg_p:
192 t = superio_inb(0x2D) & ~0x01; /* PIN77 -> WDT0# */
193 superio_outb(0x2D, t); /* set GPIO5 to WDT0 */
7b6d0b6a 194 t = superio_inb(cr_wdt_control);
962c04f5
GR
195 t |= 0x02; /* enable the WDTO# output low pulse
196 * to the KBRST# pin */
7b6d0b6a 197 superio_outb(cr_wdt_control, t);
962c04f5
GR
198 break;
199 case w83637hf:
200 break;
201 case w83687thf:
202 t = superio_inb(0x2C) & ~0x80; /* PIN47 -> WDT0# */
203 superio_outb(0x2C, t);
204 break;
205 case w83627ehf:
206 case w83627uhg:
207 case w83667hg:
208 case w83667hg_b:
209 case nct6775:
210 case nct6776:
211 case nct6779:
a77841d5
GR
212 case nct6791:
213 case nct6792:
3a9aedb2
GR
214 case nct6793:
215 case nct6795:
57cbf0e3 216 case nct6796:
33f74b89 217 case nct6102:
962c04f5
GR
218 /*
219 * These chips have a fixed WDTO# output pin (W83627UHG),
220 * or support more than one WDTO# output pin.
221 * Don't touch its configuration, and hope the BIOS
222 * does the right thing.
223 */
7b6d0b6a 224 t = superio_inb(cr_wdt_control);
962c04f5
GR
225 t |= 0x02; /* enable the WDTO# output low pulse
226 * to the KBRST# pin */
7b6d0b6a 227 superio_outb(cr_wdt_control, t);
962c04f5
GR
228 break;
229 default:
230 break;
231 }
232
7b6d0b6a 233 t = superio_inb(cr_wdt_timeout);
93642ecd 234 if (t != 0) {
be281588
GR
235 if (early_disable) {
236 pr_warn("Stopping previously enabled watchdog until userland kicks in\n");
237 superio_outb(cr_wdt_timeout, 0);
238 } else {
239 pr_info("Watchdog already running. Resetting timeout to %d sec\n",
240 wdog->timeout);
241 superio_outb(cr_wdt_timeout, wdog->timeout);
242 }
93642ecd 243 }