blob: b9878c41598fa53e25d37264f5a2876948f69985 [file] [log] [blame]
Oliver Schustere1fee942008-03-05 16:48:45 +01001/*
2 * Watchdog Timer Driver
3 * for ITE IT87xx Environment Control - Low Pin Count Input / Output
4 *
5 * (c) Copyright 2007 Oliver Schuster <olivers137@aol.com>
6 *
7 * Based on softdog.c by Alan Cox,
8 * 83977f_wdt.c by Jose Goncalves,
9 * it87.c by Chris Gauthron, Jean Delvare
10 *
11 * Data-sheets: Publicly available at the ITE website
12 * http://www.ite.com.tw/
13 *
14 * Support of the watchdog timers, which are available on
Maciej S. Szmigiero06716122016-12-15 23:52:36 +010015 * IT8620, IT8702, IT8712, IT8716, IT8718, IT8720, IT8721, IT8726,
Paolo Tetif83918f2014-10-19 21:39:33 +020016 * IT8728 and IT8783.
Oliver Schustere1fee942008-03-05 16:48:45 +010017 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version
21 * 2 of the License, or (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
31 */
32
Joe Perches27c766a2012-02-15 15:06:19 -080033#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
34
Oliver Schustere1fee942008-03-05 16:48:45 +010035#include <linux/module.h>
36#include <linux/moduleparam.h>
37#include <linux/types.h>
38#include <linux/kernel.h>
39#include <linux/fs.h>
40#include <linux/miscdevice.h>
41#include <linux/init.h>
42#include <linux/ioport.h>
43#include <linux/watchdog.h>
44#include <linux/notifier.h>
45#include <linux/reboot.h>
46#include <linux/uaccess.h>
47#include <linux/io.h>
48
Oliver Schustere1fee942008-03-05 16:48:45 +010049
Huaro Tomita4bc30272011-01-21 07:37:51 +090050#define WATCHDOG_VERSION "1.14"
Oliver Schustere1fee942008-03-05 16:48:45 +010051#define WATCHDOG_NAME "IT87 WDT"
Oliver Schustere1fee942008-03-05 16:48:45 +010052#define DRIVER_VERSION WATCHDOG_NAME " driver, v" WATCHDOG_VERSION "\n"
53#define WD_MAGIC 'V'
54
55/* Defaults for Module Parameter */
56#define DEFAULT_NOGAMEPORT 0
Marc van der Wal0bcd0b62014-03-06 10:36:59 +010057#define DEFAULT_NOCIR 0
Oliver Schustere1fee942008-03-05 16:48:45 +010058#define DEFAULT_EXCLUSIVE 1
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +000059#define DEFAULT_TIMEOUT 60
Oliver Schustere1fee942008-03-05 16:48:45 +010060#define DEFAULT_TESTMODE 0
61#define DEFAULT_NOWAYOUT WATCHDOG_NOWAYOUT
62
63/* IO Ports */
64#define REG 0x2e
65#define VAL 0x2f
66
67/* Logical device Numbers LDN */
68#define GPIO 0x07
69#define GAMEPORT 0x09
70#define CIR 0x0a
71
72/* Configuration Registers and Functions */
73#define LDNREG 0x07
74#define CHIPID 0x20
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +000075#define CHIPREV 0x22
Oliver Schustere1fee942008-03-05 16:48:45 +010076#define ACTREG 0x30
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +000077#define BASEREG 0x60
Oliver Schustere1fee942008-03-05 16:48:45 +010078
79/* Chip Id numbers */
80#define NO_DEV_ID 0xffff
Maciej S. Szmigiero06716122016-12-15 23:52:36 +010081#define IT8620_ID 0x8620
Ondrej Zajicekdfb0b8e2010-09-14 02:54:16 +020082#define IT8702_ID 0x8702
Oliver Schustere1fee942008-03-05 16:48:45 +010083#define IT8705_ID 0x8705
84#define IT8712_ID 0x8712
85#define IT8716_ID 0x8716
86#define IT8718_ID 0x8718
Ondrej Zajicekee3e9652010-09-14 02:47:28 +020087#define IT8720_ID 0x8720
Huaro Tomita4bc30272011-01-21 07:37:51 +090088#define IT8721_ID 0x8721
Oliver Schustere1fee942008-03-05 16:48:45 +010089#define IT8726_ID 0x8726 /* the data sheet suggest wrongly 0x8716 */
Diego Elio Pettenò198ca012012-03-14 20:49:04 +010090#define IT8728_ID 0x8728
Paolo Tetif83918f2014-10-19 21:39:33 +020091#define IT8783_ID 0x8783
Oliver Schustere1fee942008-03-05 16:48:45 +010092
93/* GPIO Configuration Registers LDN=0x07 */
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +000094#define WDTCTRL 0x71
Oliver Schustere1fee942008-03-05 16:48:45 +010095#define WDTCFG 0x72
96#define WDTVALLSB 0x73
97#define WDTVALMSB 0x74
98
99/* GPIO Bits WDTCTRL */
100#define WDT_CIRINT 0x80
101#define WDT_MOUSEINT 0x40
102#define WDT_KYBINT 0x20
Diego Elio Pettenò198ca012012-03-14 20:49:04 +0100103#define WDT_GAMEPORT 0x10 /* not in it8718, it8720, it8721, it8728 */
Oliver Schustere1fee942008-03-05 16:48:45 +0100104#define WDT_FORCE 0x02
105#define WDT_ZERO 0x01
106
107/* GPIO Bits WDTCFG */
108#define WDT_TOV1 0x80
109#define WDT_KRST 0x40
110#define WDT_TOVE 0x20
Huaro Tomita4bc30272011-01-21 07:37:51 +0900111#define WDT_PWROK 0x10 /* not in it8721 */
Oliver Schustere1fee942008-03-05 16:48:45 +0100112#define WDT_INT_MASK 0x0f
113
114/* CIR Configuration Register LDN=0x0a */
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +0000115#define CIR_ILS 0x70
Oliver Schustere1fee942008-03-05 16:48:45 +0100116
117/* The default Base address is not always available, we use this */
118#define CIR_BASE 0x0208
119
120/* CIR Controller */
121#define CIR_DR(b) (b)
122#define CIR_IER(b) (b + 1)
123#define CIR_RCR(b) (b + 2)
124#define CIR_TCR1(b) (b + 3)
125#define CIR_TCR2(b) (b + 4)
126#define CIR_TSR(b) (b + 5)
127#define CIR_RSR(b) (b + 6)
128#define CIR_BDLR(b) (b + 5)
129#define CIR_BDHR(b) (b + 6)
130#define CIR_IIR(b) (b + 7)
131
132/* Default Base address of Game port */
133#define GP_BASE_DEFAULT 0x0201
134
135/* wdt_status */
136#define WDTS_TIMER_RUN 0
137#define WDTS_DEV_OPEN 1
138#define WDTS_KEEPALIVE 2
139#define WDTS_LOCKED 3
140#define WDTS_USE_GP 4
141#define WDTS_EXPECTED 5
Marc van der Wal0bcd0b62014-03-06 10:36:59 +0100142#define WDTS_USE_CIR 6
Oliver Schustere1fee942008-03-05 16:48:45 +0100143
Huaro Tomita4bc30272011-01-21 07:37:51 +0900144static unsigned int base, gpact, ciract, max_units, chip_type;
Oliver Schustere1fee942008-03-05 16:48:45 +0100145static unsigned long wdt_status;
Oliver Schustere1fee942008-03-05 16:48:45 +0100146
147static int nogameport = DEFAULT_NOGAMEPORT;
Marc van der Wal0bcd0b62014-03-06 10:36:59 +0100148static int nocir = DEFAULT_NOCIR;
Oliver Schustere1fee942008-03-05 16:48:45 +0100149static int exclusive = DEFAULT_EXCLUSIVE;
150static int timeout = DEFAULT_TIMEOUT;
151static int testmode = DEFAULT_TESTMODE;
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100152static bool nowayout = DEFAULT_NOWAYOUT;
Oliver Schustere1fee942008-03-05 16:48:45 +0100153
154module_param(nogameport, int, 0);
155MODULE_PARM_DESC(nogameport, "Forbid the activation of game port, default="
156 __MODULE_STRING(DEFAULT_NOGAMEPORT));
Marc van der Wal0bcd0b62014-03-06 10:36:59 +0100157module_param(nocir, int, 0);
158MODULE_PARM_DESC(nocir, "Forbid the use of Consumer IR interrupts to reset timer, default="
159 __MODULE_STRING(DEFAULT_NOCIR));
Oliver Schustere1fee942008-03-05 16:48:45 +0100160module_param(exclusive, int, 0);
161MODULE_PARM_DESC(exclusive, "Watchdog exclusive device open, default="
162 __MODULE_STRING(DEFAULT_EXCLUSIVE));
163module_param(timeout, int, 0);
164MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds, default="
165 __MODULE_STRING(DEFAULT_TIMEOUT));
166module_param(testmode, int, 0);
167MODULE_PARM_DESC(testmode, "Watchdog test mode (1 = no reboot), default="
168 __MODULE_STRING(DEFAULT_TESTMODE));
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100169module_param(nowayout, bool, 0);
Oliver Schustere1fee942008-03-05 16:48:45 +0100170MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started, default="
171 __MODULE_STRING(WATCHDOG_NOWAYOUT));
172
173/* Superio Chip */
174
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700175static inline int superio_enter(void)
Oliver Schustere1fee942008-03-05 16:48:45 +0100176{
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700177 /*
178 * Try to reserve REG and REG + 1 for exclusive access.
179 */
180 if (!request_muxed_region(REG, 2, WATCHDOG_NAME))
181 return -EBUSY;
182
Oliver Schustere1fee942008-03-05 16:48:45 +0100183 outb(0x87, REG);
184 outb(0x01, REG);
185 outb(0x55, REG);
186 outb(0x55, REG);
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700187 return 0;
Oliver Schustere1fee942008-03-05 16:48:45 +0100188}
189
190static inline void superio_exit(void)
191{
192 outb(0x02, REG);
193 outb(0x02, VAL);
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700194 release_region(REG, 2);
Oliver Schustere1fee942008-03-05 16:48:45 +0100195}
196
197static inline void superio_select(int ldn)
198{
199 outb(LDNREG, REG);
200 outb(ldn, VAL);
201}
202
203static inline int superio_inb(int reg)
204{
205 outb(reg, REG);
206 return inb(VAL);
207}
208
209static inline void superio_outb(int val, int reg)
210{
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000211 outb(reg, REG);
212 outb(val, VAL);
Oliver Schustere1fee942008-03-05 16:48:45 +0100213}
214
215static inline int superio_inw(int reg)
216{
217 int val;
218 outb(reg++, REG);
219 val = inb(VAL) << 8;
220 outb(reg, REG);
221 val |= inb(VAL);
222 return val;
223}
224
225static inline void superio_outw(int val, int reg)
226{
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000227 outb(reg++, REG);
228 outb(val >> 8, VAL);
229 outb(reg, REG);
230 outb(val, VAL);
Oliver Schustere1fee942008-03-05 16:48:45 +0100231}
232
Ondrej Zajicekdfb0b8e2010-09-14 02:54:16 +0200233/* Internal function, should be called after superio_select(GPIO) */
234static void wdt_update_timeout(void)
235{
Huaro Tomita4bc30272011-01-21 07:37:51 +0900236 unsigned char cfg = WDT_KRST;
Ondrej Zajicekdfb0b8e2010-09-14 02:54:16 +0200237 int tm = timeout;
238
239 if (testmode)
240 cfg = 0;
241
242 if (tm <= max_units)
243 cfg |= WDT_TOV1;
244 else
245 tm /= 60;
246
Huaro Tomita4bc30272011-01-21 07:37:51 +0900247 if (chip_type != IT8721_ID)
248 cfg |= WDT_PWROK;
249
Ondrej Zajicekdfb0b8e2010-09-14 02:54:16 +0200250 superio_outb(cfg, WDTCFG);
251 superio_outb(tm, WDTVALLSB);
252 if (max_units > 255)
253 superio_outb(tm>>8, WDTVALMSB);
254}
255
256static int wdt_round_time(int t)
257{
258 t += 59;
259 t -= t % 60;
260 return t;
261}
262
Oliver Schustere1fee942008-03-05 16:48:45 +0100263/* watchdog timer handling */
264
265static void wdt_keepalive(void)
266{
267 if (test_bit(WDTS_USE_GP, &wdt_status))
268 inb(base);
Marc van der Wal0bcd0b62014-03-06 10:36:59 +0100269 else if (test_bit(WDTS_USE_CIR, &wdt_status))
Oliver Schustere1fee942008-03-05 16:48:45 +0100270 /* The timer reloads with around 5 msec delay */
271 outb(0x55, CIR_DR(base));
Marc van der Wal0bcd0b62014-03-06 10:36:59 +0100272 else {
273 if (superio_enter())
274 return;
275
276 superio_select(GPIO);
277 wdt_update_timeout();
278 superio_exit();
279 }
Oliver Schustere1fee942008-03-05 16:48:45 +0100280 set_bit(WDTS_KEEPALIVE, &wdt_status);
281}
282
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700283static int wdt_start(void)
Oliver Schustere1fee942008-03-05 16:48:45 +0100284{
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700285 int ret = superio_enter();
286 if (ret)
287 return ret;
Oliver Schustere1fee942008-03-05 16:48:45 +0100288
289 superio_select(GPIO);
290 if (test_bit(WDTS_USE_GP, &wdt_status))
291 superio_outb(WDT_GAMEPORT, WDTCTRL);
Marc van der Wal0bcd0b62014-03-06 10:36:59 +0100292 else if (test_bit(WDTS_USE_CIR, &wdt_status))
Oliver Schustere1fee942008-03-05 16:48:45 +0100293 superio_outb(WDT_CIRINT, WDTCTRL);
Ondrej Zajicekdfb0b8e2010-09-14 02:54:16 +0200294 wdt_update_timeout();
Oliver Schustere1fee942008-03-05 16:48:45 +0100295
296 superio_exit();
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700297
298 return 0;
Oliver Schustere1fee942008-03-05 16:48:45 +0100299}
300
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700301static int wdt_stop(void)
Oliver Schustere1fee942008-03-05 16:48:45 +0100302{
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700303 int ret = superio_enter();
304 if (ret)
305 return ret;
Oliver Schustere1fee942008-03-05 16:48:45 +0100306
307 superio_select(GPIO);
308 superio_outb(0x00, WDTCTRL);
309 superio_outb(WDT_TOV1, WDTCFG);
Oliver Schustere1fee942008-03-05 16:48:45 +0100310 superio_outb(0x00, WDTVALLSB);
Ondrej Zajicekdfb0b8e2010-09-14 02:54:16 +0200311 if (max_units > 255)
312 superio_outb(0x00, WDTVALMSB);
Oliver Schustere1fee942008-03-05 16:48:45 +0100313
314 superio_exit();
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700315 return 0;
Oliver Schustere1fee942008-03-05 16:48:45 +0100316}
317
318/**
319 * wdt_set_timeout - set a new timeout value with watchdog ioctl
320 * @t: timeout value in seconds
321 *
Ondrej Zajicekdfb0b8e2010-09-14 02:54:16 +0200322 * The hardware device has a 8 or 16 bit watchdog timer (depends on
323 * chip version) that can be configured to count seconds or minutes.
Oliver Schustere1fee942008-03-05 16:48:45 +0100324 *
325 * Used within WDIOC_SETTIMEOUT watchdog device ioctl.
326 */
327
328static int wdt_set_timeout(int t)
329{
Ondrej Zajicekdfb0b8e2010-09-14 02:54:16 +0200330 if (t < 1 || t > max_units * 60)
Oliver Schustere1fee942008-03-05 16:48:45 +0100331 return -EINVAL;
332
Ondrej Zajicekdfb0b8e2010-09-14 02:54:16 +0200333 if (t > max_units)
334 timeout = wdt_round_time(t);
335 else
336 timeout = t;
Oliver Schustere1fee942008-03-05 16:48:45 +0100337
Oliver Schustere1fee942008-03-05 16:48:45 +0100338 if (test_bit(WDTS_TIMER_RUN, &wdt_status)) {
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700339 int ret = superio_enter();
340 if (ret)
341 return ret;
342
Oliver Schustere1fee942008-03-05 16:48:45 +0100343 superio_select(GPIO);
Ondrej Zajicekdfb0b8e2010-09-14 02:54:16 +0200344 wdt_update_timeout();
Oliver Schustere1fee942008-03-05 16:48:45 +0100345 superio_exit();
346 }
Oliver Schustere1fee942008-03-05 16:48:45 +0100347 return 0;
348}
349
350/**
351 * wdt_get_status - determines the status supported by watchdog ioctl
352 * @status: status returned to user space
353 *
354 * The status bit of the device does not allow to distinguish
355 * between a regular system reset and a watchdog forced reset.
356 * But, in test mode it is useful, so it is supported through
357 * WDIOC_GETSTATUS watchdog ioctl. Additionally the driver
358 * reports the keepalive signal and the acception of the magic.
359 *
360 * Used within WDIOC_GETSTATUS watchdog device ioctl.
361 */
362
363static int wdt_get_status(int *status)
364{
Oliver Schustere1fee942008-03-05 16:48:45 +0100365 *status = 0;
366 if (testmode) {
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700367 int ret = superio_enter();
368 if (ret)
369 return ret;
370
Oliver Schustere1fee942008-03-05 16:48:45 +0100371 superio_select(GPIO);
372 if (superio_inb(WDTCTRL) & WDT_ZERO) {
373 superio_outb(0x00, WDTCTRL);
374 clear_bit(WDTS_TIMER_RUN, &wdt_status);
375 *status |= WDIOF_CARDRESET;
376 }
377
378 superio_exit();
Oliver Schustere1fee942008-03-05 16:48:45 +0100379 }
380 if (test_and_clear_bit(WDTS_KEEPALIVE, &wdt_status))
381 *status |= WDIOF_KEEPALIVEPING;
382 if (test_bit(WDTS_EXPECTED, &wdt_status))
383 *status |= WDIOF_MAGICCLOSE;
384 return 0;
385}
386
387/* /dev/watchdog handling */
388
389/**
390 * wdt_open - watchdog file_operations .open
391 * @inode: inode of the device
392 * @file: file handle to the device
393 *
394 * The watchdog timer starts by opening the device.
395 *
396 * Used within the file operation of the watchdog device.
397 */
398
399static int wdt_open(struct inode *inode, struct file *file)
400{
401 if (exclusive && test_and_set_bit(WDTS_DEV_OPEN, &wdt_status))
402 return -EBUSY;
403 if (!test_and_set_bit(WDTS_TIMER_RUN, &wdt_status)) {
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700404 int ret;
Oliver Schustere1fee942008-03-05 16:48:45 +0100405 if (nowayout && !test_and_set_bit(WDTS_LOCKED, &wdt_status))
406 __module_get(THIS_MODULE);
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700407
408 ret = wdt_start();
409 if (ret) {
410 clear_bit(WDTS_LOCKED, &wdt_status);
411 clear_bit(WDTS_TIMER_RUN, &wdt_status);
412 clear_bit(WDTS_DEV_OPEN, &wdt_status);
413 return ret;
414 }
Oliver Schustere1fee942008-03-05 16:48:45 +0100415 }
416 return nonseekable_open(inode, file);
417}
418
419/**
420 * wdt_release - watchdog file_operations .release
421 * @inode: inode of the device
422 * @file: file handle to the device
423 *
424 * Closing the watchdog device either stops the watchdog timer
425 * or in the case, that nowayout is set or the magic character
426 * wasn't written, a critical warning about an running watchdog
427 * timer is given.
428 *
429 * Used within the file operation of the watchdog device.
430 */
431
432static int wdt_release(struct inode *inode, struct file *file)
433{
434 if (test_bit(WDTS_TIMER_RUN, &wdt_status)) {
435 if (test_and_clear_bit(WDTS_EXPECTED, &wdt_status)) {
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700436 int ret = wdt_stop();
437 if (ret) {
438 /*
439 * Stop failed. Just keep the watchdog alive
440 * and hope nothing bad happens.
441 */
442 set_bit(WDTS_EXPECTED, &wdt_status);
443 wdt_keepalive();
444 return ret;
445 }
Oliver Schustere1fee942008-03-05 16:48:45 +0100446 clear_bit(WDTS_TIMER_RUN, &wdt_status);
447 } else {
448 wdt_keepalive();
Joe Perches27c766a2012-02-15 15:06:19 -0800449 pr_crit("unexpected close, not stopping watchdog!\n");
Oliver Schustere1fee942008-03-05 16:48:45 +0100450 }
451 }
452 clear_bit(WDTS_DEV_OPEN, &wdt_status);
453 return 0;
454}
455
456/**
457 * wdt_write - watchdog file_operations .write
458 * @file: file handle to the watchdog
459 * @buf: buffer to write
460 * @count: count of bytes
461 * @ppos: pointer to the position to write. No seeks allowed
462 *
463 * A write to a watchdog device is defined as a keepalive signal. Any
464 * write of data will do, as we don't define content meaning.
465 *
466 * Used within the file operation of the watchdog device.
467 */
468
469static ssize_t wdt_write(struct file *file, const char __user *buf,
470 size_t count, loff_t *ppos)
471{
472 if (count) {
473 clear_bit(WDTS_EXPECTED, &wdt_status);
474 wdt_keepalive();
475 }
476 if (!nowayout) {
477 size_t ofs;
478
479 /* note: just in case someone wrote the magic character long ago */
480 for (ofs = 0; ofs != count; ofs++) {
481 char c;
482 if (get_user(c, buf + ofs))
483 return -EFAULT;
484 if (c == WD_MAGIC)
485 set_bit(WDTS_EXPECTED, &wdt_status);
486 }
487 }
488 return count;
489}
490
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000491static const struct watchdog_info ident = {
Oliver Schustere1fee942008-03-05 16:48:45 +0100492 .options = WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE | WDIOF_KEEPALIVEPING,
493 .firmware_version = 1,
494 .identity = WATCHDOG_NAME,
495};
496
497/**
498 * wdt_ioctl - watchdog file_operations .unlocked_ioctl
499 * @file: file handle to the device
500 * @cmd: watchdog command
501 * @arg: argument pointer
502 *
503 * The watchdog API defines a common set of functions for all watchdogs
504 * according to their available features.
505 *
506 * Used within the file operation of the watchdog device.
507 */
508
509static long wdt_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
510{
511 int rc = 0, status, new_options, new_timeout;
512 union {
513 struct watchdog_info __user *ident;
514 int __user *i;
515 } uarg;
516
517 uarg.i = (int __user *)arg;
518
519 switch (cmd) {
520 case WDIOC_GETSUPPORT:
521 return copy_to_user(uarg.ident,
522 &ident, sizeof(ident)) ? -EFAULT : 0;
523
524 case WDIOC_GETSTATUS:
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700525 rc = wdt_get_status(&status);
526 if (rc)
527 return rc;
Oliver Schustere1fee942008-03-05 16:48:45 +0100528 return put_user(status, uarg.i);
529
530 case WDIOC_GETBOOTSTATUS:
531 return put_user(0, uarg.i);
532
533 case WDIOC_KEEPALIVE:
534 wdt_keepalive();
535 return 0;
536
537 case WDIOC_SETOPTIONS:
538 if (get_user(new_options, uarg.i))
539 return -EFAULT;
540
541 switch (new_options) {
542 case WDIOS_DISABLECARD:
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700543 if (test_bit(WDTS_TIMER_RUN, &wdt_status)) {
544 rc = wdt_stop();
545 if (rc)
546 return rc;
547 }
Oliver Schustere1fee942008-03-05 16:48:45 +0100548 clear_bit(WDTS_TIMER_RUN, &wdt_status);
549 return 0;
550
551 case WDIOS_ENABLECARD:
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700552 if (!test_and_set_bit(WDTS_TIMER_RUN, &wdt_status)) {
553 rc = wdt_start();
554 if (rc) {
555 clear_bit(WDTS_TIMER_RUN, &wdt_status);
556 return rc;
557 }
558 }
Oliver Schustere1fee942008-03-05 16:48:45 +0100559 return 0;
560
561 default:
562 return -EFAULT;
563 }
564
565 case WDIOC_SETTIMEOUT:
566 if (get_user(new_timeout, uarg.i))
567 return -EFAULT;
568 rc = wdt_set_timeout(new_timeout);
569 case WDIOC_GETTIMEOUT:
570 if (put_user(timeout, uarg.i))
571 return -EFAULT;
572 return rc;
573
574 default:
575 return -ENOTTY;
576 }
577}
578
579static int wdt_notify_sys(struct notifier_block *this, unsigned long code,
580 void *unused)
581{
582 if (code == SYS_DOWN || code == SYS_HALT)
583 wdt_stop();
584 return NOTIFY_DONE;
585}
586
587static const struct file_operations wdt_fops = {
588 .owner = THIS_MODULE,
589 .llseek = no_llseek,
590 .write = wdt_write,
591 .unlocked_ioctl = wdt_ioctl,
592 .open = wdt_open,
593 .release = wdt_release,
594};
595
596static struct miscdevice wdt_miscdev = {
597 .minor = WATCHDOG_MINOR,
598 .name = "watchdog",
599 .fops = &wdt_fops,
600};
601
602static struct notifier_block wdt_notifier = {
603 .notifier_call = wdt_notify_sys,
604};
605
606static int __init it87_wdt_init(void)
607{
608 int rc = 0;
Ondrej Zajicekee3e9652010-09-14 02:47:28 +0200609 int try_gameport = !nogameport;
Oliver Schustere1fee942008-03-05 16:48:45 +0100610 u8 chip_rev;
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700611 int gp_rreq_fail = 0;
Oliver Schustere1fee942008-03-05 16:48:45 +0100612
Ondrej Zajicekdfb0b8e2010-09-14 02:54:16 +0200613 wdt_status = 0;
614
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700615 rc = superio_enter();
616 if (rc)
617 return rc;
618
Oliver Schustere1fee942008-03-05 16:48:45 +0100619 chip_type = superio_inw(CHIPID);
620 chip_rev = superio_inb(CHIPREV) & 0x0f;
621 superio_exit();
Oliver Schustere1fee942008-03-05 16:48:45 +0100622
623 switch (chip_type) {
Ondrej Zajicekdfb0b8e2010-09-14 02:54:16 +0200624 case IT8702_ID:
625 max_units = 255;
626 break;
627 case IT8712_ID:
628 max_units = (chip_rev < 8) ? 255 : 65535;
629 break;
Oliver Schustere1fee942008-03-05 16:48:45 +0100630 case IT8716_ID:
Oliver Schustere1fee942008-03-05 16:48:45 +0100631 case IT8726_ID:
Ondrej Zajicekdfb0b8e2010-09-14 02:54:16 +0200632 max_units = 65535;
Oliver Schustere1fee942008-03-05 16:48:45 +0100633 break;
Maciej S. Szmigiero06716122016-12-15 23:52:36 +0100634 case IT8620_ID:
Ondrej Zajicekee3e9652010-09-14 02:47:28 +0200635 case IT8718_ID:
636 case IT8720_ID:
Huaro Tomita4bc30272011-01-21 07:37:51 +0900637 case IT8721_ID:
Diego Elio Pettenò198ca012012-03-14 20:49:04 +0100638 case IT8728_ID:
Paolo Tetif83918f2014-10-19 21:39:33 +0200639 case IT8783_ID:
Ondrej Zajicekdfb0b8e2010-09-14 02:54:16 +0200640 max_units = 65535;
Ondrej Zajicekee3e9652010-09-14 02:47:28 +0200641 try_gameport = 0;
642 break;
Oliver Schustere1fee942008-03-05 16:48:45 +0100643 case IT8705_ID:
Joe Perches27c766a2012-02-15 15:06:19 -0800644 pr_err("Unsupported Chip found, Chip %04x Revision %02x\n",
Oliver Schustere1fee942008-03-05 16:48:45 +0100645 chip_type, chip_rev);
646 return -ENODEV;
647 case NO_DEV_ID:
Joe Perches27c766a2012-02-15 15:06:19 -0800648 pr_err("no device\n");
Oliver Schustere1fee942008-03-05 16:48:45 +0100649 return -ENODEV;
650 default:
Joe Perches27c766a2012-02-15 15:06:19 -0800651 pr_err("Unknown Chip found, Chip %04x Revision %04x\n",
Oliver Schustere1fee942008-03-05 16:48:45 +0100652 chip_type, chip_rev);
653 return -ENODEV;
654 }
655
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700656 rc = superio_enter();
657 if (rc)
658 return rc;
Oliver Schustere1fee942008-03-05 16:48:45 +0100659
660 superio_select(GPIO);
661 superio_outb(WDT_TOV1, WDTCFG);
662 superio_outb(0x00, WDTCTRL);
663
664 /* First try to get Gameport support */
Ondrej Zajicekee3e9652010-09-14 02:47:28 +0200665 if (try_gameport) {
Oliver Schustere1fee942008-03-05 16:48:45 +0100666 superio_select(GAMEPORT);
667 base = superio_inw(BASEREG);
668 if (!base) {
669 base = GP_BASE_DEFAULT;
670 superio_outw(base, BASEREG);
671 }
672 gpact = superio_inb(ACTREG);
673 superio_outb(0x01, ACTREG);
Oliver Schustere1fee942008-03-05 16:48:45 +0100674 if (request_region(base, 1, WATCHDOG_NAME))
675 set_bit(WDTS_USE_GP, &wdt_status);
676 else
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700677 gp_rreq_fail = 1;
Oliver Schustere1fee942008-03-05 16:48:45 +0100678 }
679
680 /* If we haven't Gameport support, try to get CIR support */
Marc van der Wal0bcd0b62014-03-06 10:36:59 +0100681 if (!nocir && !test_bit(WDTS_USE_GP, &wdt_status)) {
Oliver Schustere1fee942008-03-05 16:48:45 +0100682 if (!request_region(CIR_BASE, 8, WATCHDOG_NAME)) {
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700683 if (gp_rreq_fail)
Joe Perches27c766a2012-02-15 15:06:19 -0800684 pr_err("I/O Address 0x%04x and 0x%04x already in use\n",
685 base, CIR_BASE);
Oliver Schustere1fee942008-03-05 16:48:45 +0100686 else
Joe Perches27c766a2012-02-15 15:06:19 -0800687 pr_err("I/O Address 0x%04x already in use\n",
688 CIR_BASE);
Oliver Schustere1fee942008-03-05 16:48:45 +0100689 rc = -EIO;
690 goto err_out;
691 }
692 base = CIR_BASE;
Oliver Schustere1fee942008-03-05 16:48:45 +0100693
694 superio_select(CIR);
695 superio_outw(base, BASEREG);
696 superio_outb(0x00, CIR_ILS);
697 ciract = superio_inb(ACTREG);
698 superio_outb(0x01, ACTREG);
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700699 if (gp_rreq_fail) {
Oliver Schustere1fee942008-03-05 16:48:45 +0100700 superio_select(GAMEPORT);
701 superio_outb(gpact, ACTREG);
702 }
Marc van der Wal0bcd0b62014-03-06 10:36:59 +0100703 set_bit(WDTS_USE_CIR, &wdt_status);
Oliver Schustere1fee942008-03-05 16:48:45 +0100704 }
705
Ondrej Zajicekdfb0b8e2010-09-14 02:54:16 +0200706 if (timeout < 1 || timeout > max_units * 60) {
Oliver Schustere1fee942008-03-05 16:48:45 +0100707 timeout = DEFAULT_TIMEOUT;
Joe Perches27c766a2012-02-15 15:06:19 -0800708 pr_warn("Timeout value out of range, use default %d sec\n",
709 DEFAULT_TIMEOUT);
Oliver Schustere1fee942008-03-05 16:48:45 +0100710 }
711
Ondrej Zajicekdfb0b8e2010-09-14 02:54:16 +0200712 if (timeout > max_units)
713 timeout = wdt_round_time(timeout);
714
Oliver Schustere1fee942008-03-05 16:48:45 +0100715 rc = register_reboot_notifier(&wdt_notifier);
716 if (rc) {
Joe Perches27c766a2012-02-15 15:06:19 -0800717 pr_err("Cannot register reboot notifier (err=%d)\n", rc);
Oliver Schustere1fee942008-03-05 16:48:45 +0100718 goto err_out_region;
719 }
720
721 rc = misc_register(&wdt_miscdev);
722 if (rc) {
Joe Perches27c766a2012-02-15 15:06:19 -0800723 pr_err("Cannot register miscdev on minor=%d (err=%d)\n",
724 wdt_miscdev.minor, rc);
Oliver Schustere1fee942008-03-05 16:48:45 +0100725 goto err_out_reboot;
726 }
727
728 /* Initialize CIR to use it as keepalive source */
Marc van der Wal0bcd0b62014-03-06 10:36:59 +0100729 if (test_bit(WDTS_USE_CIR, &wdt_status)) {
Oliver Schustere1fee942008-03-05 16:48:45 +0100730 outb(0x00, CIR_RCR(base));
731 outb(0xc0, CIR_TCR1(base));
732 outb(0x5c, CIR_TCR2(base));
733 outb(0x10, CIR_IER(base));
734 outb(0x00, CIR_BDHR(base));
735 outb(0x01, CIR_BDLR(base));
736 outb(0x09, CIR_IER(base));
737 }
738
Marc van der Wal0bcd0b62014-03-06 10:36:59 +0100739 pr_info("Chip IT%04x revision %d initialized. timeout=%d sec (nowayout=%d testmode=%d exclusive=%d nogameport=%d nocir=%d)\n",
Joe Perches27c766a2012-02-15 15:06:19 -0800740 chip_type, chip_rev, timeout,
Marc van der Wal0bcd0b62014-03-06 10:36:59 +0100741 nowayout, testmode, exclusive, nogameport, nocir);
Oliver Schustere1fee942008-03-05 16:48:45 +0100742
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700743 superio_exit();
Oliver Schustere1fee942008-03-05 16:48:45 +0100744 return 0;
745
746err_out_reboot:
747 unregister_reboot_notifier(&wdt_notifier);
748err_out_region:
Marc van der Wal0bcd0b62014-03-06 10:36:59 +0100749 if (test_bit(WDTS_USE_GP, &wdt_status))
750 release_region(base, 1);
751 else if (test_bit(WDTS_USE_CIR, &wdt_status)) {
752 release_region(base, 8);
Oliver Schustere1fee942008-03-05 16:48:45 +0100753 superio_select(CIR);
754 superio_outb(ciract, ACTREG);
Oliver Schustere1fee942008-03-05 16:48:45 +0100755 }
756err_out:
Ondrej Zajicekee3e9652010-09-14 02:47:28 +0200757 if (try_gameport) {
Oliver Schustere1fee942008-03-05 16:48:45 +0100758 superio_select(GAMEPORT);
759 superio_outb(gpact, ACTREG);
Oliver Schustere1fee942008-03-05 16:48:45 +0100760 }
761
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700762 superio_exit();
Oliver Schustere1fee942008-03-05 16:48:45 +0100763 return rc;
764}
765
766static void __exit it87_wdt_exit(void)
767{
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700768 if (superio_enter() == 0) {
769 superio_select(GPIO);
770 superio_outb(0x00, WDTCTRL);
771 superio_outb(0x00, WDTCFG);
772 superio_outb(0x00, WDTVALLSB);
773 if (max_units > 255)
774 superio_outb(0x00, WDTVALMSB);
775 if (test_bit(WDTS_USE_GP, &wdt_status)) {
776 superio_select(GAMEPORT);
777 superio_outb(gpact, ACTREG);
Marc van der Wal0bcd0b62014-03-06 10:36:59 +0100778 } else if (test_bit(WDTS_USE_CIR, &wdt_status)) {
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700779 superio_select(CIR);
780 superio_outb(ciract, ACTREG);
781 }
782 superio_exit();
Oliver Schustere1fee942008-03-05 16:48:45 +0100783 }
Oliver Schustere1fee942008-03-05 16:48:45 +0100784
785 misc_deregister(&wdt_miscdev);
786 unregister_reboot_notifier(&wdt_notifier);
Marc van der Wal0bcd0b62014-03-06 10:36:59 +0100787
788 if (test_bit(WDTS_USE_GP, &wdt_status))
789 release_region(base, 1);
790 else if (test_bit(WDTS_USE_CIR, &wdt_status))
791 release_region(base, 8);
Oliver Schustere1fee942008-03-05 16:48:45 +0100792}
793
794module_init(it87_wdt_init);
795module_exit(it87_wdt_exit);
796
797MODULE_AUTHOR("Oliver Schuster");
798MODULE_DESCRIPTION("Hardware Watchdog Device Driver for IT87xx EC-LPC I/O");
799MODULE_LICENSE("GPL");