Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 2 | /* |
| 3 | * IT8712F "Smart Guardian" Watchdog support |
| 4 | * |
| 5 | * Copyright (c) 2006-2007 Jorge Boncompte - DTI2 <jorge@dti2.net> |
| 6 | * |
| 7 | * Based on info and code taken from: |
| 8 | * |
| 9 | * drivers/char/watchdog/scx200_wdt.c |
| 10 | * drivers/hwmon/it87.c |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 11 | * IT8712F EC-LPC I/O Preliminary Specification 0.8.2 |
| 12 | * IT8712F EC-LPC I/O Preliminary Specification 0.9.3 |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 13 | * |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 14 | * The author(s) of this software shall not be held liable for damages |
| 15 | * of any nature resulting due to the use of this software. This |
| 16 | * software is provided AS-IS with no warranties. |
| 17 | */ |
| 18 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 19 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 20 | |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 21 | #include <linux/module.h> |
| 22 | #include <linux/moduleparam.h> |
| 23 | #include <linux/init.h> |
| 24 | #include <linux/miscdevice.h> |
| 25 | #include <linux/watchdog.h> |
| 26 | #include <linux/notifier.h> |
| 27 | #include <linux/reboot.h> |
| 28 | #include <linux/fs.h> |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 29 | #include <linux/spinlock.h> |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 30 | #include <linux/uaccess.h> |
| 31 | #include <linux/io.h> |
Wim Van Sebroeck | 2260286 | 2011-07-25 18:53:00 +0000 | [diff] [blame] | 32 | #include <linux/ioport.h> |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 33 | |
| 34 | #define NAME "it8712f_wdt" |
| 35 | |
| 36 | MODULE_AUTHOR("Jorge Boncompte - DTI2 <jorge@dti2.net>"); |
| 37 | MODULE_DESCRIPTION("IT8712F Watchdog Driver"); |
| 38 | MODULE_LICENSE("GPL"); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 39 | |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 40 | static int max_units = 255; |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 41 | static int margin = 60; /* in seconds */ |
| 42 | module_param(margin, int, 0); |
| 43 | MODULE_PARM_DESC(margin, "Watchdog margin in seconds"); |
| 44 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 45 | static bool nowayout = WATCHDOG_NOWAYOUT; |
| 46 | module_param(nowayout, bool, 0); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 47 | MODULE_PARM_DESC(nowayout, "Disable watchdog shutdown on close"); |
| 48 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 49 | static unsigned long wdt_open; |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 50 | static unsigned expect_close; |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 51 | static unsigned char revision; |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 52 | |
| 53 | /* Dog Food address - We use the game port address */ |
| 54 | static unsigned short address; |
| 55 | |
| 56 | #define REG 0x2e /* The register to read/write */ |
| 57 | #define VAL 0x2f /* The value to read/write */ |
| 58 | |
| 59 | #define LDN 0x07 /* Register: Logical device select */ |
| 60 | #define DEVID 0x20 /* Register: Device ID */ |
| 61 | #define DEVREV 0x22 /* Register: Device Revision */ |
| 62 | #define ACT_REG 0x30 /* LDN Register: Activation */ |
| 63 | #define BASE_REG 0x60 /* LDN Register: Base address */ |
| 64 | |
| 65 | #define IT8712F_DEVID 0x8712 |
| 66 | |
| 67 | #define LDN_GPIO 0x07 /* GPIO and Watch Dog Timer */ |
Wim Van Sebroeck | 5f3b275 | 2011-02-23 20:04:38 +0000 | [diff] [blame] | 68 | #define LDN_GAME 0x09 /* Game Port */ |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 69 | |
| 70 | #define WDT_CONTROL 0x71 /* WDT Register: Control */ |
| 71 | #define WDT_CONFIG 0x72 /* WDT Register: Configuration */ |
| 72 | #define WDT_TIMEOUT 0x73 /* WDT Register: Timeout Value */ |
| 73 | |
Timo Juhani Lindfors | f0fc107 | 2010-09-30 17:08:03 +0300 | [diff] [blame] | 74 | #define WDT_RESET_GAME 0x10 /* Reset timer on read or write to game port */ |
| 75 | #define WDT_RESET_KBD 0x20 /* Reset timer on keyboard interrupt */ |
| 76 | #define WDT_RESET_MOUSE 0x40 /* Reset timer on mouse interrupt */ |
| 77 | #define WDT_RESET_CIR 0x80 /* Reset timer on consumer IR interrupt */ |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 78 | |
| 79 | #define WDT_UNIT_SEC 0x80 /* If 0 in MINUTES */ |
| 80 | |
Timo Juhani Lindfors | f0fc107 | 2010-09-30 17:08:03 +0300 | [diff] [blame] | 81 | #define WDT_OUT_PWROK 0x10 /* Pulse PWROK on timeout */ |
| 82 | #define WDT_OUT_KRST 0x40 /* Pulse reset on timeout */ |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 83 | |
Timo Juhani Lindfors | a422088 | 2010-09-30 17:08:04 +0300 | [diff] [blame] | 84 | static int wdt_control_reg = WDT_RESET_GAME; |
| 85 | module_param(wdt_control_reg, int, 0); |
| 86 | MODULE_PARM_DESC(wdt_control_reg, "Value to write to watchdog control " |
| 87 | "register. The default WDT_RESET_GAME resets the timer on " |
| 88 | "game port reads that this driver generates. You can also " |
| 89 | "use KBD, MOUSE or CIR if you have some external way to " |
| 90 | "generate those interrupts."); |
| 91 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 92 | static int superio_inb(int reg) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 93 | { |
| 94 | outb(reg, REG); |
| 95 | return inb(VAL); |
| 96 | } |
| 97 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 98 | static void superio_outb(int val, int reg) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 99 | { |
| 100 | outb(reg, REG); |
| 101 | outb(val, VAL); |
| 102 | } |
| 103 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 104 | static int superio_inw(int reg) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 105 | { |
| 106 | int val; |
| 107 | outb(reg++, REG); |
| 108 | val = inb(VAL) << 8; |
| 109 | outb(reg, REG); |
| 110 | val |= inb(VAL); |
| 111 | return val; |
| 112 | } |
| 113 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 114 | static inline void superio_select(int ldn) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 115 | { |
| 116 | outb(LDN, REG); |
| 117 | outb(ldn, VAL); |
| 118 | } |
| 119 | |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 120 | static inline int superio_enter(void) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 121 | { |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 122 | /* |
| 123 | * Try to reserve REG and REG + 1 for exclusive access. |
| 124 | */ |
| 125 | if (!request_muxed_region(REG, 2, NAME)) |
| 126 | return -EBUSY; |
| 127 | |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 128 | outb(0x87, REG); |
| 129 | outb(0x01, REG); |
| 130 | outb(0x55, REG); |
| 131 | outb(0x55, REG); |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 132 | return 0; |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 133 | } |
| 134 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 135 | static inline void superio_exit(void) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 136 | { |
| 137 | outb(0x02, REG); |
| 138 | outb(0x02, VAL); |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 139 | release_region(REG, 2); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 140 | } |
| 141 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 142 | static inline void it8712f_wdt_ping(void) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 143 | { |
Timo Juhani Lindfors | a422088 | 2010-09-30 17:08:04 +0300 | [diff] [blame] | 144 | if (wdt_control_reg & WDT_RESET_GAME) |
| 145 | inb(address); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 146 | } |
| 147 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 148 | static void it8712f_wdt_update_margin(void) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 149 | { |
| 150 | int config = WDT_OUT_KRST | WDT_OUT_PWROK; |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 151 | int units = margin; |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 152 | |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 153 | /* Switch to minutes precision if the configured margin |
| 154 | * value does not fit within the register width. |
| 155 | */ |
| 156 | if (units <= max_units) { |
| 157 | config |= WDT_UNIT_SEC; /* else UNIT is MINUTES */ |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 158 | pr_info("timer margin %d seconds\n", units); |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 159 | } else { |
| 160 | units /= 60; |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 161 | pr_info("timer margin %d minutes\n", units); |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 162 | } |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 163 | superio_outb(config, WDT_CONFIG); |
| 164 | |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 165 | if (revision >= 0x08) |
Oliver Schuster | 0e45adb | 2008-04-01 17:06:21 +0200 | [diff] [blame] | 166 | superio_outb(units >> 8, WDT_TIMEOUT + 1); |
| 167 | superio_outb(units, WDT_TIMEOUT); |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 168 | } |
| 169 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 170 | static int it8712f_wdt_get_status(void) |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 171 | { |
| 172 | if (superio_inb(WDT_CONTROL) & 0x01) |
| 173 | return WDIOF_CARDRESET; |
| 174 | else |
| 175 | return 0; |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 176 | } |
| 177 | |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 178 | static int it8712f_wdt_enable(void) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 179 | { |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 180 | int ret = superio_enter(); |
| 181 | if (ret) |
| 182 | return ret; |
| 183 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 184 | pr_debug("enabling watchdog timer\n"); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 185 | superio_select(LDN_GPIO); |
| 186 | |
Timo Juhani Lindfors | a422088 | 2010-09-30 17:08:04 +0300 | [diff] [blame] | 187 | superio_outb(wdt_control_reg, WDT_CONTROL); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 188 | |
| 189 | it8712f_wdt_update_margin(); |
| 190 | |
| 191 | superio_exit(); |
| 192 | |
| 193 | it8712f_wdt_ping(); |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 194 | |
| 195 | return 0; |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 196 | } |
| 197 | |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 198 | static int it8712f_wdt_disable(void) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 199 | { |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 200 | int ret = superio_enter(); |
| 201 | if (ret) |
| 202 | return ret; |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 203 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 204 | pr_debug("disabling watchdog timer\n"); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 205 | superio_select(LDN_GPIO); |
| 206 | |
| 207 | superio_outb(0, WDT_CONFIG); |
| 208 | superio_outb(0, WDT_CONTROL); |
Andrew Paprocki | cc1020f | 2008-04-02 02:43:19 -0400 | [diff] [blame] | 209 | if (revision >= 0x08) |
| 210 | superio_outb(0, WDT_TIMEOUT + 1); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 211 | superio_outb(0, WDT_TIMEOUT); |
| 212 | |
| 213 | superio_exit(); |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 214 | return 0; |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 215 | } |
| 216 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 217 | static int it8712f_wdt_notify(struct notifier_block *this, |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 218 | unsigned long code, void *unused) |
| 219 | { |
| 220 | if (code == SYS_HALT || code == SYS_POWER_OFF) |
| 221 | if (!nowayout) |
| 222 | it8712f_wdt_disable(); |
| 223 | |
| 224 | return NOTIFY_DONE; |
| 225 | } |
| 226 | |
| 227 | static struct notifier_block it8712f_wdt_notifier = { |
| 228 | .notifier_call = it8712f_wdt_notify, |
| 229 | }; |
| 230 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 231 | static ssize_t it8712f_wdt_write(struct file *file, const char __user *data, |
| 232 | size_t len, loff_t *ppos) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 233 | { |
| 234 | /* check for a magic close character */ |
| 235 | if (len) { |
| 236 | size_t i; |
| 237 | |
| 238 | it8712f_wdt_ping(); |
| 239 | |
| 240 | expect_close = 0; |
| 241 | for (i = 0; i < len; ++i) { |
| 242 | char c; |
Wim Van Sebroeck | 7944d3a | 2008-08-06 20:19:41 +0000 | [diff] [blame] | 243 | if (get_user(c, data + i)) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 244 | return -EFAULT; |
| 245 | if (c == 'V') |
| 246 | expect_close = 42; |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | return len; |
| 251 | } |
| 252 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 253 | static long it8712f_wdt_ioctl(struct file *file, unsigned int cmd, |
| 254 | unsigned long arg) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 255 | { |
| 256 | void __user *argp = (void __user *)arg; |
| 257 | int __user *p = argp; |
Wim Van Sebroeck | 42747d7 | 2009-12-26 18:55:22 +0000 | [diff] [blame] | 258 | static const struct watchdog_info ident = { |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 259 | .identity = "IT8712F Watchdog", |
| 260 | .firmware_version = 1, |
Wim Van Sebroeck | e73a780 | 2009-05-11 18:33:00 +0000 | [diff] [blame] | 261 | .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | |
| 262 | WDIOF_MAGICCLOSE, |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 263 | }; |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 264 | int value; |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 265 | int ret; |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 266 | |
| 267 | switch (cmd) { |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 268 | case WDIOC_GETSUPPORT: |
| 269 | if (copy_to_user(argp, &ident, sizeof(ident))) |
| 270 | return -EFAULT; |
| 271 | return 0; |
| 272 | case WDIOC_GETSTATUS: |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 273 | ret = superio_enter(); |
| 274 | if (ret) |
| 275 | return ret; |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 276 | superio_select(LDN_GPIO); |
| 277 | |
| 278 | value = it8712f_wdt_get_status(); |
| 279 | |
| 280 | superio_exit(); |
| 281 | |
| 282 | return put_user(value, p); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 283 | case WDIOC_GETBOOTSTATUS: |
| 284 | return put_user(0, p); |
| 285 | case WDIOC_KEEPALIVE: |
| 286 | it8712f_wdt_ping(); |
| 287 | return 0; |
| 288 | case WDIOC_SETTIMEOUT: |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 289 | if (get_user(value, p)) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 290 | return -EFAULT; |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 291 | if (value < 1) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 292 | return -EINVAL; |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 293 | if (value > (max_units * 60)) |
| 294 | return -EINVAL; |
| 295 | margin = value; |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 296 | ret = superio_enter(); |
| 297 | if (ret) |
| 298 | return ret; |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 299 | superio_select(LDN_GPIO); |
| 300 | |
| 301 | it8712f_wdt_update_margin(); |
| 302 | |
| 303 | superio_exit(); |
| 304 | it8712f_wdt_ping(); |
Gustavo A. R. Silva | bd490f8 | 2020-07-07 12:11:21 -0500 | [diff] [blame] | 305 | fallthrough; |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 306 | case WDIOC_GETTIMEOUT: |
| 307 | if (put_user(margin, p)) |
| 308 | return -EFAULT; |
| 309 | return 0; |
Wim Van Sebroeck | 0c06090 | 2008-07-18 11:41:17 +0000 | [diff] [blame] | 310 | default: |
| 311 | return -ENOTTY; |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 312 | } |
| 313 | } |
| 314 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 315 | static int it8712f_wdt_open(struct inode *inode, struct file *file) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 316 | { |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 317 | int ret; |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 318 | /* only allow one at a time */ |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 319 | if (test_and_set_bit(0, &wdt_open)) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 320 | return -EBUSY; |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 321 | |
| 322 | ret = it8712f_wdt_enable(); |
| 323 | if (ret) |
| 324 | return ret; |
Kirill Smelkov | c5bf68f | 2019-03-26 23:51:19 +0300 | [diff] [blame] | 325 | return stream_open(inode, file); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 326 | } |
| 327 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 328 | static int it8712f_wdt_release(struct inode *inode, struct file *file) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 329 | { |
| 330 | if (expect_close != 42) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 331 | pr_warn("watchdog device closed unexpectedly, will not disable the watchdog timer\n"); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 332 | } else if (!nowayout) { |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 333 | if (it8712f_wdt_disable()) |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 334 | pr_warn("Watchdog disable failed\n"); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 335 | } |
| 336 | expect_close = 0; |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 337 | clear_bit(0, &wdt_open); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 338 | |
| 339 | return 0; |
| 340 | } |
| 341 | |
Jan Engelhardt | b47a166 | 2008-01-22 20:48:10 +0100 | [diff] [blame] | 342 | static const struct file_operations it8712f_wdt_fops = { |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 343 | .owner = THIS_MODULE, |
| 344 | .llseek = no_llseek, |
| 345 | .write = it8712f_wdt_write, |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 346 | .unlocked_ioctl = it8712f_wdt_ioctl, |
Arnd Bergmann | b6dfb24 | 2019-06-03 14:23:09 +0200 | [diff] [blame] | 347 | .compat_ioctl = compat_ptr_ioctl, |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 348 | .open = it8712f_wdt_open, |
| 349 | .release = it8712f_wdt_release, |
| 350 | }; |
| 351 | |
| 352 | static struct miscdevice it8712f_wdt_miscdev = { |
| 353 | .minor = WATCHDOG_MINOR, |
| 354 | .name = "watchdog", |
| 355 | .fops = &it8712f_wdt_fops, |
| 356 | }; |
| 357 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 358 | static int __init it8712f_wdt_find(unsigned short *address) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 359 | { |
| 360 | int err = -ENODEV; |
| 361 | int chip_type; |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 362 | int ret = superio_enter(); |
| 363 | if (ret) |
| 364 | return ret; |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 365 | |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 366 | chip_type = superio_inw(DEVID); |
| 367 | if (chip_type != IT8712F_DEVID) |
| 368 | goto exit; |
| 369 | |
| 370 | superio_select(LDN_GAME); |
| 371 | superio_outb(1, ACT_REG); |
| 372 | if (!(superio_inb(ACT_REG) & 0x01)) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 373 | pr_err("Device not activated, skipping\n"); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 374 | goto exit; |
| 375 | } |
| 376 | |
| 377 | *address = superio_inw(BASE_REG); |
| 378 | if (*address == 0) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 379 | pr_err("Base address not set, skipping\n"); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 380 | goto exit; |
| 381 | } |
| 382 | |
| 383 | err = 0; |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 384 | revision = superio_inb(DEVREV) & 0x0f; |
| 385 | |
| 386 | /* Later revisions have 16-bit values per datasheet 0.9.1 */ |
| 387 | if (revision >= 0x08) |
| 388 | max_units = 65535; |
| 389 | |
| 390 | if (margin > (max_units * 60)) |
| 391 | margin = (max_units * 60); |
| 392 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 393 | pr_info("Found IT%04xF chip revision %d - using DogFood address 0x%x\n", |
Andrew Paprocki | 5e69960 | 2008-02-10 22:11:15 -0500 | [diff] [blame] | 394 | chip_type, revision, *address); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 395 | |
| 396 | exit: |
| 397 | superio_exit(); |
| 398 | return err; |
| 399 | } |
| 400 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 401 | static int __init it8712f_wdt_init(void) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 402 | { |
| 403 | int err = 0; |
| 404 | |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 405 | if (it8712f_wdt_find(&address)) |
| 406 | return -ENODEV; |
| 407 | |
| 408 | if (!request_region(address, 1, "IT8712F Watchdog")) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 409 | pr_warn("watchdog I/O region busy\n"); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 410 | return -EBUSY; |
| 411 | } |
| 412 | |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 413 | err = it8712f_wdt_disable(); |
| 414 | if (err) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 415 | pr_err("unable to disable watchdog timer\n"); |
Nat Gurumoorthy | a134b82 | 2011-05-09 11:45:07 -0700 | [diff] [blame] | 416 | goto out; |
| 417 | } |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 418 | |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 419 | err = register_reboot_notifier(&it8712f_wdt_notifier); |
| 420 | if (err) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 421 | pr_err("unable to register reboot notifier\n"); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 422 | goto out; |
| 423 | } |
| 424 | |
| 425 | err = misc_register(&it8712f_wdt_miscdev); |
| 426 | if (err) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 427 | pr_err("cannot register miscdev on minor=%d (err=%d)\n", |
| 428 | WATCHDOG_MINOR, err); |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 429 | goto reboot_out; |
| 430 | } |
| 431 | |
| 432 | return 0; |
| 433 | |
| 434 | |
| 435 | reboot_out: |
| 436 | unregister_reboot_notifier(&it8712f_wdt_notifier); |
| 437 | out: |
| 438 | release_region(address, 1); |
| 439 | return err; |
| 440 | } |
| 441 | |
Alan Cox | d654737 | 2008-08-04 17:54:01 +0100 | [diff] [blame] | 442 | static void __exit it8712f_wdt_exit(void) |
Jorge Boncompte [DTI2] | 38ff6fd | 2007-11-19 15:09:21 +0100 | [diff] [blame] | 443 | { |
| 444 | misc_deregister(&it8712f_wdt_miscdev); |
| 445 | unregister_reboot_notifier(&it8712f_wdt_notifier); |
| 446 | release_region(address, 1); |
| 447 | } |
| 448 | |
| 449 | module_init(it8712f_wdt_init); |
| 450 | module_exit(it8712f_wdt_exit); |