Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * National Semiconductor PC87307/PC97307 (ala SC1200) WDT driver |
| 4 | * (c) Copyright 2002 Zwane Mwaikambo <zwane@commfireservices.com>, |
| 5 | * All Rights Reserved. |
| 6 | * Based on wdt.c and wdt977.c by Alan Cox and Woody Suwalski respectively. |
| 7 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * The author(s) of this software shall not be held liable for damages |
| 9 | * of any nature resulting due to the use of this software. This |
| 10 | * software is provided AS-IS with no warranties. |
| 11 | * |
| 12 | * Changelog: |
| 13 | * 20020220 Zwane Mwaikambo Code based on datasheet, no hardware. |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 14 | * 20020221 Zwane Mwaikambo Cleanups as suggested by Jeff Garzik |
| 15 | * and Alan Cox. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | * 20020222 Zwane Mwaikambo Added probing. |
| 17 | * 20020225 Zwane Mwaikambo Added ISAPNP support. |
| 18 | * 20020412 Rob Radez Broke out start/stop functions |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 19 | * <rob@osinvestor.com> Return proper status instead of |
| 20 | * temperature warning |
| 21 | * Add WDIOC_GETBOOTSTATUS and |
| 22 | * WDIOC_SETOPTIONS ioctls |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | * Fix CONFIG_WATCHDOG_NOWAYOUT |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 24 | * 20020530 Joel Becker Add Matt Domsch's nowayout module |
| 25 | * option |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | * 20030116 Adam Belay Updated to the latest pnp code |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | */ |
| 28 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 29 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/module.h> |
| 32 | #include <linux/moduleparam.h> |
| 33 | #include <linux/miscdevice.h> |
| 34 | #include <linux/watchdog.h> |
| 35 | #include <linux/ioport.h> |
| 36 | #include <linux/spinlock.h> |
| 37 | #include <linux/notifier.h> |
| 38 | #include <linux/reboot.h> |
| 39 | #include <linux/init.h> |
| 40 | #include <linux/pnp.h> |
| 41 | #include <linux/fs.h> |
Matthew Wilcox | 6188e10 | 2008-04-18 22:21:05 -0400 | [diff] [blame] | 42 | #include <linux/semaphore.h> |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 43 | #include <linux/io.h> |
| 44 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | #define SC1200_MODULE_VER "build 20020303" |
| 47 | #define SC1200_MODULE_NAME "sc1200wdt" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | #define MAX_TIMEOUT 255 /* 255 minutes */ |
| 50 | #define PMIR (io) /* Power Management Index Register */ |
| 51 | #define PMDR (io+1) /* Power Management Data Register */ |
| 52 | |
| 53 | /* Data Register indexes */ |
| 54 | #define FER1 0x00 /* Function enable register 1 */ |
| 55 | #define FER2 0x01 /* Function enable register 2 */ |
| 56 | #define PMC1 0x02 /* Power Management Ctrl 1 */ |
| 57 | #define PMC2 0x03 /* Power Management Ctrl 2 */ |
| 58 | #define PMC3 0x04 /* Power Management Ctrl 3 */ |
| 59 | #define WDTO 0x05 /* Watchdog timeout register */ |
| 60 | #define WDCF 0x06 /* Watchdog config register */ |
| 61 | #define WDST 0x07 /* Watchdog status register */ |
| 62 | |
| 63 | /* WDCF bitfields - which devices assert WDO */ |
| 64 | #define KBC_IRQ 0x01 /* Keyboard Controller */ |
| 65 | #define MSE_IRQ 0x02 /* Mouse */ |
| 66 | #define UART1_IRQ 0x03 /* Serial0 */ |
| 67 | #define UART2_IRQ 0x04 /* Serial1 */ |
| 68 | /* 5 -7 are reserved */ |
| 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | static int timeout = 1; |
| 71 | static int io = -1; |
| 72 | static int io_len = 2; /* for non plug and play */ |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 73 | static unsigned long open_flag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | static char expect_close; |
Alexey Dobriyan | c7dfd0c | 2007-11-01 16:27:08 -0700 | [diff] [blame] | 75 | static DEFINE_SPINLOCK(sc1200wdt_lock); /* io port access serialisation */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
| 77 | #if defined CONFIG_PNP |
| 78 | static int isapnp = 1; |
| 79 | static struct pnp_dev *wdt_dev; |
| 80 | |
| 81 | module_param(isapnp, int, 0); |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 82 | MODULE_PARM_DESC(isapnp, |
| 83 | "When set to 0 driver ISA PnP support will be disabled"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | #endif |
| 85 | |
David Howells | 5d1c93c | 2017-04-04 16:54:29 +0100 | [diff] [blame] | 86 | module_param_hw(io, int, ioport, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | MODULE_PARM_DESC(io, "io port"); |
| 88 | module_param(timeout, int, 0); |
| 89 | MODULE_PARM_DESC(timeout, "range is 0-255 minutes, default is 1"); |
| 90 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 91 | static bool nowayout = WATCHDOG_NOWAYOUT; |
| 92 | module_param(nowayout, bool, 0); |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 93 | MODULE_PARM_DESC(nowayout, |
| 94 | "Watchdog cannot be stopped once started (default=" |
| 95 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
| 97 | |
| 98 | |
| 99 | /* Read from Data Register */ |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 100 | static inline void __sc1200wdt_read_data(unsigned char index, |
| 101 | unsigned char *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | outb_p(index, PMIR); |
| 104 | *data = inb(PMDR); |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | static void sc1200wdt_read_data(unsigned char index, unsigned char *data) |
| 108 | { |
| 109 | spin_lock(&sc1200wdt_lock); |
| 110 | __sc1200wdt_read_data(index, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | spin_unlock(&sc1200wdt_lock); |
| 112 | } |
| 113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | /* Write to Data Register */ |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 115 | static inline void __sc1200wdt_write_data(unsigned char index, |
| 116 | unsigned char data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | outb_p(index, PMIR); |
| 119 | outb(data, PMDR); |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | static inline void sc1200wdt_write_data(unsigned char index, |
| 123 | unsigned char data) |
| 124 | { |
| 125 | spin_lock(&sc1200wdt_lock); |
| 126 | __sc1200wdt_write_data(index, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | spin_unlock(&sc1200wdt_lock); |
| 128 | } |
| 129 | |
| 130 | |
| 131 | static void sc1200wdt_start(void) |
| 132 | { |
| 133 | unsigned char reg; |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 134 | spin_lock(&sc1200wdt_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 136 | __sc1200wdt_read_data(WDCF, ®); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | /* assert WDO when any of the following interrupts are triggered too */ |
| 138 | reg |= (KBC_IRQ | MSE_IRQ | UART1_IRQ | UART2_IRQ); |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 139 | __sc1200wdt_write_data(WDCF, reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | /* set the timeout and get the ball rolling */ |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 141 | __sc1200wdt_write_data(WDTO, timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 143 | spin_unlock(&sc1200wdt_lock); |
| 144 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
| 146 | static void sc1200wdt_stop(void) |
| 147 | { |
| 148 | sc1200wdt_write_data(WDTO, 0); |
| 149 | } |
| 150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | /* This returns the status of the WDO signal, inactive high. */ |
| 152 | static inline int sc1200wdt_status(void) |
| 153 | { |
| 154 | unsigned char ret; |
| 155 | |
| 156 | sc1200wdt_read_data(WDST, &ret); |
| 157 | /* If the bit is inactive, the watchdog is enabled, so return |
| 158 | * KEEPALIVEPING which is a bit of a kludge because there's nothing |
| 159 | * else for enabled/disabled status |
| 160 | */ |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 161 | return (ret & 0x01) ? 0 : WDIOF_KEEPALIVEPING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | } |
| 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | static int sc1200wdt_open(struct inode *inode, struct file *file) |
| 165 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | /* allow one at a time */ |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 167 | if (test_and_set_bit(0, &open_flag)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | return -EBUSY; |
| 169 | |
| 170 | if (timeout > MAX_TIMEOUT) |
| 171 | timeout = MAX_TIMEOUT; |
| 172 | |
| 173 | sc1200wdt_start(); |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 174 | pr_info("Watchdog enabled, timeout = %d min(s)", timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
Kirill Smelkov | c5bf68f | 2019-03-26 23:51:19 +0300 | [diff] [blame] | 176 | return stream_open(inode, file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 180 | static long sc1200wdt_ioctl(struct file *file, unsigned int cmd, |
| 181 | unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | { |
| 183 | int new_timeout; |
| 184 | void __user *argp = (void __user *)arg; |
| 185 | int __user *p = argp; |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 186 | static const struct watchdog_info ident = { |
| 187 | .options = WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT | |
| 188 | WDIOF_MAGICCLOSE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | .firmware_version = 0, |
| 190 | .identity = "PC87307/PC97307", |
| 191 | }; |
| 192 | |
| 193 | switch (cmd) { |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 194 | case WDIOC_GETSUPPORT: |
Wim Van Sebroeck | e04ab95 | 2009-09-02 09:10:07 +0000 | [diff] [blame] | 195 | if (copy_to_user(argp, &ident, sizeof(ident))) |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 196 | return -EFAULT; |
| 197 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 199 | case WDIOC_GETSTATUS: |
| 200 | return put_user(sc1200wdt_status(), p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 202 | case WDIOC_GETBOOTSTATUS: |
| 203 | return put_user(0, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 205 | case WDIOC_SETOPTIONS: |
| 206 | { |
| 207 | int options, retval = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 209 | if (get_user(options, p)) |
| 210 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 212 | if (options & WDIOS_DISABLECARD) { |
| 213 | sc1200wdt_stop(); |
| 214 | retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | } |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 216 | |
| 217 | if (options & WDIOS_ENABLECARD) { |
| 218 | sc1200wdt_start(); |
| 219 | retval = 0; |
| 220 | } |
| 221 | |
| 222 | return retval; |
| 223 | } |
Wim Van Sebroeck | 0c06090 | 2008-07-18 11:41:17 +0000 | [diff] [blame] | 224 | case WDIOC_KEEPALIVE: |
| 225 | sc1200wdt_write_data(WDTO, timeout); |
| 226 | return 0; |
| 227 | |
| 228 | case WDIOC_SETTIMEOUT: |
| 229 | if (get_user(new_timeout, p)) |
| 230 | return -EFAULT; |
| 231 | /* the API states this is given in secs */ |
| 232 | new_timeout /= 60; |
| 233 | if (new_timeout < 0 || new_timeout > MAX_TIMEOUT) |
| 234 | return -EINVAL; |
| 235 | timeout = new_timeout; |
| 236 | sc1200wdt_write_data(WDTO, timeout); |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 237 | fallthrough; /* and return the new timeout */ |
Wim Van Sebroeck | 0c06090 | 2008-07-18 11:41:17 +0000 | [diff] [blame] | 238 | |
| 239 | case WDIOC_GETTIMEOUT: |
| 240 | return put_user(timeout * 60, p); |
| 241 | |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 242 | default: |
| 243 | return -ENOTTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | } |
| 245 | } |
| 246 | |
| 247 | |
| 248 | static int sc1200wdt_release(struct inode *inode, struct file *file) |
| 249 | { |
| 250 | if (expect_close == 42) { |
| 251 | sc1200wdt_stop(); |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 252 | pr_info("Watchdog disabled\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | } else { |
| 254 | sc1200wdt_write_data(WDTO, timeout); |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 255 | pr_crit("Unexpected close!, timeout = %d min(s)\n", timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | } |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 257 | clear_bit(0, &open_flag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | expect_close = 0; |
| 259 | |
| 260 | return 0; |
| 261 | } |
| 262 | |
| 263 | |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 264 | static ssize_t sc1200wdt_write(struct file *file, const char __user *data, |
| 265 | size_t len, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | { |
| 267 | if (len) { |
| 268 | if (!nowayout) { |
| 269 | size_t i; |
| 270 | |
| 271 | expect_close = 0; |
| 272 | |
| 273 | for (i = 0; i != len; i++) { |
| 274 | char c; |
| 275 | |
Wim Van Sebroeck | 7944d3a | 2008-08-06 20:19:41 +0000 | [diff] [blame] | 276 | if (get_user(c, data + i)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | return -EFAULT; |
| 278 | if (c == 'V') |
| 279 | expect_close = 42; |
| 280 | } |
| 281 | } |
| 282 | |
| 283 | sc1200wdt_write_data(WDTO, timeout); |
| 284 | return len; |
| 285 | } |
| 286 | |
| 287 | return 0; |
| 288 | } |
| 289 | |
| 290 | |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 291 | static int sc1200wdt_notify_sys(struct notifier_block *this, |
| 292 | unsigned long code, void *unused) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | { |
| 294 | if (code == SYS_DOWN || code == SYS_HALT) |
| 295 | sc1200wdt_stop(); |
| 296 | |
| 297 | return NOTIFY_DONE; |
| 298 | } |
| 299 | |
| 300 | |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 301 | static struct notifier_block sc1200wdt_notifier = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | .notifier_call = sc1200wdt_notify_sys, |
| 303 | }; |
| 304 | |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 305 | static const struct file_operations sc1200wdt_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | .owner = THIS_MODULE, |
| 307 | .llseek = no_llseek, |
| 308 | .write = sc1200wdt_write, |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 309 | .unlocked_ioctl = sc1200wdt_ioctl, |
Arnd Bergmann | b6dfb24 | 2019-06-03 14:23:09 +0200 | [diff] [blame] | 310 | .compat_ioctl = compat_ptr_ioctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | .open = sc1200wdt_open, |
| 312 | .release = sc1200wdt_release, |
| 313 | }; |
| 314 | |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 315 | static struct miscdevice sc1200wdt_miscdev = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | .minor = WATCHDOG_MINOR, |
| 317 | .name = "watchdog", |
| 318 | .fops = &sc1200wdt_fops, |
| 319 | }; |
| 320 | |
| 321 | |
| 322 | static int __init sc1200wdt_probe(void) |
| 323 | { |
| 324 | /* The probe works by reading the PMC3 register's default value of 0x0e |
| 325 | * there is one caveat, if the device disables the parallel port or any |
| 326 | * of the UARTs we won't be able to detect it. |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 327 | * NB. This could be done with accuracy by reading the SID registers, |
| 328 | * but we don't have access to those io regions. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | */ |
| 330 | |
| 331 | unsigned char reg; |
| 332 | |
| 333 | sc1200wdt_read_data(PMC3, ®); |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 334 | reg &= 0x0f; /* we don't want the UART busy bits */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | return (reg == 0x0e) ? 0 : -ENODEV; |
| 336 | } |
| 337 | |
| 338 | |
| 339 | #if defined CONFIG_PNP |
| 340 | |
Arvind Yadav | 39ad808 | 2017-08-16 10:27:03 +0530 | [diff] [blame] | 341 | static const struct pnp_device_id scl200wdt_pnp_devices[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | /* National Semiconductor PC87307/PC97307 watchdog component */ |
| 343 | {.id = "NSC0800", .driver_data = 0}, |
| 344 | {.id = ""}, |
| 345 | }; |
| 346 | |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 347 | static int scl200wdt_pnp_probe(struct pnp_dev *dev, |
| 348 | const struct pnp_device_id *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | { |
| 350 | /* this driver only supports one card at a time */ |
| 351 | if (wdt_dev || !isapnp) |
| 352 | return -EBUSY; |
| 353 | |
| 354 | wdt_dev = dev; |
| 355 | io = pnp_port_start(wdt_dev, 0); |
| 356 | io_len = pnp_port_len(wdt_dev, 0); |
| 357 | |
| 358 | if (!request_region(io, io_len, SC1200_MODULE_NAME)) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 359 | pr_err("Unable to register IO port %#x\n", io); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | return -EBUSY; |
| 361 | } |
| 362 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 363 | pr_info("PnP device found at io port %#x/%d\n", io, io_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | return 0; |
| 365 | } |
| 366 | |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 367 | static void scl200wdt_pnp_remove(struct pnp_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | { |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 369 | if (wdt_dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | release_region(io, io_len); |
| 371 | wdt_dev = NULL; |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | static struct pnp_driver scl200wdt_pnp_driver = { |
| 376 | .name = "scl200wdt", |
| 377 | .id_table = scl200wdt_pnp_devices, |
| 378 | .probe = scl200wdt_pnp_probe, |
| 379 | .remove = scl200wdt_pnp_remove, |
| 380 | }; |
| 381 | |
| 382 | #endif /* CONFIG_PNP */ |
| 383 | |
| 384 | |
| 385 | static int __init sc1200wdt_init(void) |
| 386 | { |
| 387 | int ret; |
| 388 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 389 | pr_info("%s\n", SC1200_MODULE_VER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | #if defined CONFIG_PNP |
| 392 | if (isapnp) { |
| 393 | ret = pnp_register_driver(&scl200wdt_pnp_driver); |
| 394 | if (ret) |
| 395 | goto out_clean; |
| 396 | } |
| 397 | #endif |
| 398 | |
| 399 | if (io == -1) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 400 | pr_err("io parameter must be specified\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | ret = -EINVAL; |
Akinobu Mita | 150ed8e | 2006-10-29 03:43:19 +0900 | [diff] [blame] | 402 | goto out_pnp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | #if defined CONFIG_PNP |
| 406 | /* now that the user has specified an IO port and we haven't detected |
| 407 | * any devices, disable pnp support */ |
Alan | dace8bb | 2013-12-04 15:31:52 +0000 | [diff] [blame] | 408 | if (isapnp) |
| 409 | pnp_unregister_driver(&scl200wdt_pnp_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | isapnp = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | #endif |
| 412 | |
| 413 | if (!request_region(io, io_len, SC1200_MODULE_NAME)) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 414 | pr_err("Unable to register IO port %#x\n", io); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | ret = -EBUSY; |
Akinobu Mita | 150ed8e | 2006-10-29 03:43:19 +0900 | [diff] [blame] | 416 | goto out_pnp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | } |
| 418 | |
| 419 | ret = sc1200wdt_probe(); |
| 420 | if (ret) |
| 421 | goto out_io; |
| 422 | |
| 423 | ret = register_reboot_notifier(&sc1200wdt_notifier); |
| 424 | if (ret) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 425 | pr_err("Unable to register reboot notifier err = %d\n", ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | goto out_io; |
| 427 | } |
| 428 | |
| 429 | ret = misc_register(&sc1200wdt_miscdev); |
| 430 | if (ret) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 431 | pr_err("Unable to register miscdev on minor %d\n", |
| 432 | WATCHDOG_MINOR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | goto out_rbt; |
| 434 | } |
| 435 | |
| 436 | /* ret = 0 */ |
| 437 | |
| 438 | out_clean: |
| 439 | return ret; |
| 440 | |
| 441 | out_rbt: |
| 442 | unregister_reboot_notifier(&sc1200wdt_notifier); |
| 443 | |
| 444 | out_io: |
| 445 | release_region(io, io_len); |
| 446 | |
Akinobu Mita | 150ed8e | 2006-10-29 03:43:19 +0900 | [diff] [blame] | 447 | out_pnp: |
| 448 | #if defined CONFIG_PNP |
| 449 | if (isapnp) |
| 450 | pnp_unregister_driver(&scl200wdt_pnp_driver); |
| 451 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | goto out_clean; |
| 453 | } |
| 454 | |
| 455 | |
| 456 | static void __exit sc1200wdt_exit(void) |
| 457 | { |
| 458 | misc_deregister(&sc1200wdt_miscdev); |
| 459 | unregister_reboot_notifier(&sc1200wdt_notifier); |
| 460 | |
| 461 | #if defined CONFIG_PNP |
Alan Cox | 103a1d5 | 2008-08-04 17:56:28 +0100 | [diff] [blame] | 462 | if (isapnp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | pnp_unregister_driver(&scl200wdt_pnp_driver); |
| 464 | else |
| 465 | #endif |
| 466 | release_region(io, io_len); |
| 467 | } |
| 468 | |
| 469 | module_init(sc1200wdt_init); |
| 470 | module_exit(sc1200wdt_exit); |
| 471 | |
| 472 | MODULE_AUTHOR("Zwane Mwaikambo <zwane@commfireservices.com>"); |
Wim Van Sebroeck | 143a2e5 | 2009-03-18 08:35:09 +0000 | [diff] [blame] | 473 | MODULE_DESCRIPTION( |
| 474 | "Driver for National Semiconductor PC87307/PC97307 watchdog component"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | MODULE_LICENSE("GPL"); |