blob: 41b3979a9d87068c3cbf3ad5ce9cb430d122ae5a [file] [log] [blame]
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +01001/*
2 * IT8712F "Smart Guardian" Watchdog support
3 *
4 * Copyright (c) 2006-2007 Jorge Boncompte - DTI2 <jorge@dti2.net>
5 *
6 * Based on info and code taken from:
7 *
8 * drivers/char/watchdog/scx200_wdt.c
9 * drivers/hwmon/it87.c
Andrew Paprocki5e699602008-02-10 22:11:15 -050010 * IT8712F EC-LPC I/O Preliminary Specification 0.8.2
11 * IT8712F EC-LPC I/O Preliminary Specification 0.9.3
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +010012 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of the
16 * License, or (at your option) any later version.
17 *
18 * The author(s) of this software shall not be held liable for damages
19 * of any nature resulting due to the use of this software. This
20 * software is provided AS-IS with no warranties.
21 */
22
Joe Perches27c766a2012-02-15 15:06:19 -080023#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +010025#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/init.h>
28#include <linux/miscdevice.h>
29#include <linux/watchdog.h>
30#include <linux/notifier.h>
31#include <linux/reboot.h>
32#include <linux/fs.h>
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +010033#include <linux/spinlock.h>
Alan Coxd6547372008-08-04 17:54:01 +010034#include <linux/uaccess.h>
35#include <linux/io.h>
Wim Van Sebroeck22602862011-07-25 18:53:00 +000036#include <linux/ioport.h>
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +010037
Joe Perches27c766a2012-02-15 15:06:19 -080038#define DEBUG
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +010039#define NAME "it8712f_wdt"
40
41MODULE_AUTHOR("Jorge Boncompte - DTI2 <jorge@dti2.net>");
42MODULE_DESCRIPTION("IT8712F Watchdog Driver");
43MODULE_LICENSE("GPL");
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +010044
Andrew Paprocki5e699602008-02-10 22:11:15 -050045static int max_units = 255;
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +010046static int margin = 60; /* in seconds */
47module_param(margin, int, 0);
48MODULE_PARM_DESC(margin, "Watchdog margin in seconds");
49
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010050static bool nowayout = WATCHDOG_NOWAYOUT;
51module_param(nowayout, bool, 0);
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +010052MODULE_PARM_DESC(nowayout, "Disable watchdog shutdown on close");
53
Alan Coxd6547372008-08-04 17:54:01 +010054static unsigned long wdt_open;
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +010055static unsigned expect_close;
Andrew Paprocki5e699602008-02-10 22:11:15 -050056static unsigned char revision;
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +010057
58/* Dog Food address - We use the game port address */
59static unsigned short address;
60
61#define REG 0x2e /* The register to read/write */
62#define VAL 0x2f /* The value to read/write */
63
64#define LDN 0x07 /* Register: Logical device select */
65#define DEVID 0x20 /* Register: Device ID */
66#define DEVREV 0x22 /* Register: Device Revision */
67#define ACT_REG 0x30 /* LDN Register: Activation */
68#define BASE_REG 0x60 /* LDN Register: Base address */
69
70#define IT8712F_DEVID 0x8712
71
72#define LDN_GPIO 0x07 /* GPIO and Watch Dog Timer */
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +000073#define LDN_GAME 0x09 /* Game Port */
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +010074
75#define WDT_CONTROL 0x71 /* WDT Register: Control */
76#define WDT_CONFIG 0x72 /* WDT Register: Configuration */
77#define WDT_TIMEOUT 0x73 /* WDT Register: Timeout Value */
78
Timo Juhani Lindforsf0fc1072010-09-30 17:08:03 +030079#define WDT_RESET_GAME 0x10 /* Reset timer on read or write to game port */
80#define WDT_RESET_KBD 0x20 /* Reset timer on keyboard interrupt */
81#define WDT_RESET_MOUSE 0x40 /* Reset timer on mouse interrupt */
82#define WDT_RESET_CIR 0x80 /* Reset timer on consumer IR interrupt */
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +010083
84#define WDT_UNIT_SEC 0x80 /* If 0 in MINUTES */
85
Timo Juhani Lindforsf0fc1072010-09-30 17:08:03 +030086#define WDT_OUT_PWROK 0x10 /* Pulse PWROK on timeout */
87#define WDT_OUT_KRST 0x40 /* Pulse reset on timeout */
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +010088
Timo Juhani Lindforsa4220882010-09-30 17:08:04 +030089static int wdt_control_reg = WDT_RESET_GAME;
90module_param(wdt_control_reg, int, 0);
91MODULE_PARM_DESC(wdt_control_reg, "Value to write to watchdog control "
92 "register. The default WDT_RESET_GAME resets the timer on "
93 "game port reads that this driver generates. You can also "
94 "use KBD, MOUSE or CIR if you have some external way to "
95 "generate those interrupts.");
96
Alan Coxd6547372008-08-04 17:54:01 +010097static int superio_inb(int reg)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +010098{
99 outb(reg, REG);
100 return inb(VAL);
101}
102
Alan Coxd6547372008-08-04 17:54:01 +0100103static void superio_outb(int val, int reg)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100104{
105 outb(reg, REG);
106 outb(val, VAL);
107}
108
Alan Coxd6547372008-08-04 17:54:01 +0100109static int superio_inw(int reg)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100110{
111 int val;
112 outb(reg++, REG);
113 val = inb(VAL) << 8;
114 outb(reg, REG);
115 val |= inb(VAL);
116 return val;
117}
118
Alan Coxd6547372008-08-04 17:54:01 +0100119static inline void superio_select(int ldn)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100120{
121 outb(LDN, REG);
122 outb(ldn, VAL);
123}
124
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700125static inline int superio_enter(void)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100126{
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700127 /*
128 * Try to reserve REG and REG + 1 for exclusive access.
129 */
130 if (!request_muxed_region(REG, 2, NAME))
131 return -EBUSY;
132
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100133 outb(0x87, REG);
134 outb(0x01, REG);
135 outb(0x55, REG);
136 outb(0x55, REG);
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700137 return 0;
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100138}
139
Alan Coxd6547372008-08-04 17:54:01 +0100140static inline void superio_exit(void)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100141{
142 outb(0x02, REG);
143 outb(0x02, VAL);
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700144 release_region(REG, 2);
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100145}
146
Alan Coxd6547372008-08-04 17:54:01 +0100147static inline void it8712f_wdt_ping(void)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100148{
Timo Juhani Lindforsa4220882010-09-30 17:08:04 +0300149 if (wdt_control_reg & WDT_RESET_GAME)
150 inb(address);
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100151}
152
Alan Coxd6547372008-08-04 17:54:01 +0100153static void it8712f_wdt_update_margin(void)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100154{
155 int config = WDT_OUT_KRST | WDT_OUT_PWROK;
Andrew Paprocki5e699602008-02-10 22:11:15 -0500156 int units = margin;
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100157
Andrew Paprocki5e699602008-02-10 22:11:15 -0500158 /* Switch to minutes precision if the configured margin
159 * value does not fit within the register width.
160 */
161 if (units <= max_units) {
162 config |= WDT_UNIT_SEC; /* else UNIT is MINUTES */
Joe Perches27c766a2012-02-15 15:06:19 -0800163 pr_info("timer margin %d seconds\n", units);
Andrew Paprocki5e699602008-02-10 22:11:15 -0500164 } else {
165 units /= 60;
Joe Perches27c766a2012-02-15 15:06:19 -0800166 pr_info("timer margin %d minutes\n", units);
Andrew Paprocki5e699602008-02-10 22:11:15 -0500167 }
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100168 superio_outb(config, WDT_CONFIG);
169
Andrew Paprocki5e699602008-02-10 22:11:15 -0500170 if (revision >= 0x08)
Oliver Schuster0e45adb2008-04-01 17:06:21 +0200171 superio_outb(units >> 8, WDT_TIMEOUT + 1);
172 superio_outb(units, WDT_TIMEOUT);
Andrew Paprocki5e699602008-02-10 22:11:15 -0500173}
174
Alan Coxd6547372008-08-04 17:54:01 +0100175static int it8712f_wdt_get_status(void)
Andrew Paprocki5e699602008-02-10 22:11:15 -0500176{
177 if (superio_inb(WDT_CONTROL) & 0x01)
178 return WDIOF_CARDRESET;
179 else
180 return 0;
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100181}
182
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700183static int it8712f_wdt_enable(void)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100184{
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700185 int ret = superio_enter();
186 if (ret)
187 return ret;
188
Joe Perches27c766a2012-02-15 15:06:19 -0800189 pr_debug("enabling watchdog timer\n");
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100190 superio_select(LDN_GPIO);
191
Timo Juhani Lindforsa4220882010-09-30 17:08:04 +0300192 superio_outb(wdt_control_reg, WDT_CONTROL);
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100193
194 it8712f_wdt_update_margin();
195
196 superio_exit();
197
198 it8712f_wdt_ping();
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700199
200 return 0;
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100201}
202
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700203static int it8712f_wdt_disable(void)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100204{
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700205 int ret = superio_enter();
206 if (ret)
207 return ret;
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100208
Joe Perches27c766a2012-02-15 15:06:19 -0800209 pr_debug("disabling watchdog timer\n");
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100210 superio_select(LDN_GPIO);
211
212 superio_outb(0, WDT_CONFIG);
213 superio_outb(0, WDT_CONTROL);
Andrew Paprockicc1020f2008-04-02 02:43:19 -0400214 if (revision >= 0x08)
215 superio_outb(0, WDT_TIMEOUT + 1);
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100216 superio_outb(0, WDT_TIMEOUT);
217
218 superio_exit();
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700219 return 0;
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100220}
221
Alan Coxd6547372008-08-04 17:54:01 +0100222static int it8712f_wdt_notify(struct notifier_block *this,
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100223 unsigned long code, void *unused)
224{
225 if (code == SYS_HALT || code == SYS_POWER_OFF)
226 if (!nowayout)
227 it8712f_wdt_disable();
228
229 return NOTIFY_DONE;
230}
231
232static struct notifier_block it8712f_wdt_notifier = {
233 .notifier_call = it8712f_wdt_notify,
234};
235
Alan Coxd6547372008-08-04 17:54:01 +0100236static ssize_t it8712f_wdt_write(struct file *file, const char __user *data,
237 size_t len, loff_t *ppos)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100238{
239 /* check for a magic close character */
240 if (len) {
241 size_t i;
242
243 it8712f_wdt_ping();
244
245 expect_close = 0;
246 for (i = 0; i < len; ++i) {
247 char c;
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000248 if (get_user(c, data + i))
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100249 return -EFAULT;
250 if (c == 'V')
251 expect_close = 42;
252 }
253 }
254
255 return len;
256}
257
Alan Coxd6547372008-08-04 17:54:01 +0100258static long it8712f_wdt_ioctl(struct file *file, unsigned int cmd,
259 unsigned long arg)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100260{
261 void __user *argp = (void __user *)arg;
262 int __user *p = argp;
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000263 static const struct watchdog_info ident = {
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100264 .identity = "IT8712F Watchdog",
265 .firmware_version = 1,
Wim Van Sebroecke73a7802009-05-11 18:33:00 +0000266 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING |
267 WDIOF_MAGICCLOSE,
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100268 };
Andrew Paprocki5e699602008-02-10 22:11:15 -0500269 int value;
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700270 int ret;
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100271
272 switch (cmd) {
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100273 case WDIOC_GETSUPPORT:
274 if (copy_to_user(argp, &ident, sizeof(ident)))
275 return -EFAULT;
276 return 0;
277 case WDIOC_GETSTATUS:
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700278 ret = superio_enter();
279 if (ret)
280 return ret;
Andrew Paprocki5e699602008-02-10 22:11:15 -0500281 superio_select(LDN_GPIO);
282
283 value = it8712f_wdt_get_status();
284
285 superio_exit();
286
287 return put_user(value, p);
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100288 case WDIOC_GETBOOTSTATUS:
289 return put_user(0, p);
290 case WDIOC_KEEPALIVE:
291 it8712f_wdt_ping();
292 return 0;
293 case WDIOC_SETTIMEOUT:
Andrew Paprocki5e699602008-02-10 22:11:15 -0500294 if (get_user(value, p))
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100295 return -EFAULT;
Andrew Paprocki5e699602008-02-10 22:11:15 -0500296 if (value < 1)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100297 return -EINVAL;
Andrew Paprocki5e699602008-02-10 22:11:15 -0500298 if (value > (max_units * 60))
299 return -EINVAL;
300 margin = value;
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700301 ret = superio_enter();
302 if (ret)
303 return ret;
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100304 superio_select(LDN_GPIO);
305
306 it8712f_wdt_update_margin();
307
308 superio_exit();
309 it8712f_wdt_ping();
Andrew Paprocki5e699602008-02-10 22:11:15 -0500310 /* Fall through */
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100311 case WDIOC_GETTIMEOUT:
312 if (put_user(margin, p))
313 return -EFAULT;
314 return 0;
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000315 default:
316 return -ENOTTY;
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100317 }
318}
319
Alan Coxd6547372008-08-04 17:54:01 +0100320static int it8712f_wdt_open(struct inode *inode, struct file *file)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100321{
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700322 int ret;
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100323 /* only allow one at a time */
Alan Coxd6547372008-08-04 17:54:01 +0100324 if (test_and_set_bit(0, &wdt_open))
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100325 return -EBUSY;
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700326
327 ret = it8712f_wdt_enable();
328 if (ret)
329 return ret;
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100330 return nonseekable_open(inode, file);
331}
332
Alan Coxd6547372008-08-04 17:54:01 +0100333static int it8712f_wdt_release(struct inode *inode, struct file *file)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100334{
335 if (expect_close != 42) {
Joe Perches27c766a2012-02-15 15:06:19 -0800336 pr_warn("watchdog device closed unexpectedly, will not disable the watchdog timer\n");
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100337 } else if (!nowayout) {
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700338 if (it8712f_wdt_disable())
Joe Perches27c766a2012-02-15 15:06:19 -0800339 pr_warn("Watchdog disable failed\n");
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100340 }
341 expect_close = 0;
Alan Coxd6547372008-08-04 17:54:01 +0100342 clear_bit(0, &wdt_open);
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100343
344 return 0;
345}
346
Jan Engelhardtb47a1662008-01-22 20:48:10 +0100347static const struct file_operations it8712f_wdt_fops = {
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100348 .owner = THIS_MODULE,
349 .llseek = no_llseek,
350 .write = it8712f_wdt_write,
Alan Coxd6547372008-08-04 17:54:01 +0100351 .unlocked_ioctl = it8712f_wdt_ioctl,
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100352 .open = it8712f_wdt_open,
353 .release = it8712f_wdt_release,
354};
355
356static struct miscdevice it8712f_wdt_miscdev = {
357 .minor = WATCHDOG_MINOR,
358 .name = "watchdog",
359 .fops = &it8712f_wdt_fops,
360};
361
Alan Coxd6547372008-08-04 17:54:01 +0100362static int __init it8712f_wdt_find(unsigned short *address)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100363{
364 int err = -ENODEV;
365 int chip_type;
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700366 int ret = superio_enter();
367 if (ret)
368 return ret;
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100369
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100370 chip_type = superio_inw(DEVID);
371 if (chip_type != IT8712F_DEVID)
372 goto exit;
373
374 superio_select(LDN_GAME);
375 superio_outb(1, ACT_REG);
376 if (!(superio_inb(ACT_REG) & 0x01)) {
Joe Perches27c766a2012-02-15 15:06:19 -0800377 pr_err("Device not activated, skipping\n");
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100378 goto exit;
379 }
380
381 *address = superio_inw(BASE_REG);
382 if (*address == 0) {
Joe Perches27c766a2012-02-15 15:06:19 -0800383 pr_err("Base address not set, skipping\n");
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100384 goto exit;
385 }
386
387 err = 0;
Andrew Paprocki5e699602008-02-10 22:11:15 -0500388 revision = superio_inb(DEVREV) & 0x0f;
389
390 /* Later revisions have 16-bit values per datasheet 0.9.1 */
391 if (revision >= 0x08)
392 max_units = 65535;
393
394 if (margin > (max_units * 60))
395 margin = (max_units * 60);
396
Joe Perches27c766a2012-02-15 15:06:19 -0800397 pr_info("Found IT%04xF chip revision %d - using DogFood address 0x%x\n",
Andrew Paprocki5e699602008-02-10 22:11:15 -0500398 chip_type, revision, *address);
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100399
400exit:
401 superio_exit();
402 return err;
403}
404
Alan Coxd6547372008-08-04 17:54:01 +0100405static int __init it8712f_wdt_init(void)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100406{
407 int err = 0;
408
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100409 if (it8712f_wdt_find(&address))
410 return -ENODEV;
411
412 if (!request_region(address, 1, "IT8712F Watchdog")) {
Joe Perches27c766a2012-02-15 15:06:19 -0800413 pr_warn("watchdog I/O region busy\n");
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100414 return -EBUSY;
415 }
416
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700417 err = it8712f_wdt_disable();
418 if (err) {
Joe Perches27c766a2012-02-15 15:06:19 -0800419 pr_err("unable to disable watchdog timer\n");
Nat Gurumoorthya134b822011-05-09 11:45:07 -0700420 goto out;
421 }
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100422
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100423 err = register_reboot_notifier(&it8712f_wdt_notifier);
424 if (err) {
Joe Perches27c766a2012-02-15 15:06:19 -0800425 pr_err("unable to register reboot notifier\n");
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100426 goto out;
427 }
428
429 err = misc_register(&it8712f_wdt_miscdev);
430 if (err) {
Joe Perches27c766a2012-02-15 15:06:19 -0800431 pr_err("cannot register miscdev on minor=%d (err=%d)\n",
432 WATCHDOG_MINOR, err);
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100433 goto reboot_out;
434 }
435
436 return 0;
437
438
439reboot_out:
440 unregister_reboot_notifier(&it8712f_wdt_notifier);
441out:
442 release_region(address, 1);
443 return err;
444}
445
Alan Coxd6547372008-08-04 17:54:01 +0100446static void __exit it8712f_wdt_exit(void)
Jorge Boncompte [DTI2]38ff6fd2007-11-19 15:09:21 +0100447{
448 misc_deregister(&it8712f_wdt_miscdev);
449 unregister_reboot_notifier(&it8712f_wdt_notifier);
450 release_region(address, 1);
451}
452
453module_init(it8712f_wdt_init);
454module_exit(it8712f_wdt_exit);