Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Advantech Single Board Computer WDT driver |
| 3 | * |
| 4 | * (c) Copyright 2000-2001 Marek Michalkiewicz <marekm@linux.org.pl> |
| 5 | * |
| 6 | * Based on acquirewdt.c which is based on wdt.c. |
| 7 | * Original copyright messages: |
| 8 | * |
Alan Cox | 29fa058 | 2008-10-27 15:17:56 +0000 | [diff] [blame] | 9 | * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>, |
| 10 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * |
| 12 | * This program is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU General Public License |
| 14 | * as published by the Free Software Foundation; either version |
| 15 | * 2 of the License, or (at your option) any later version. |
| 16 | * |
| 17 | * Neither Alan Cox nor CymruNet Ltd. admit liability nor provide |
| 18 | * warranty for any of this software. This material is provided |
| 19 | * "AS-IS" and at no charge. |
| 20 | * |
Alan Cox | 29fa058 | 2008-10-27 15:17:56 +0000 | [diff] [blame] | 21 | * (c) Copyright 1995 Alan Cox <alan@lxorguk.ukuu.org.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | * |
| 23 | * 14-Dec-2001 Matt Domsch <Matt_Domsch@dell.com> |
| 24 | * Added nowayout module option to override CONFIG_WATCHDOG_NOWAYOUT |
| 25 | * |
| 26 | * 16-Oct-2002 Rob Radez <rob@osinvestor.com> |
| 27 | * Clean up ioctls, clean up init + exit, add expect close support, |
| 28 | * add wdt_start and wdt_stop as parameters. |
| 29 | */ |
| 30 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 31 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/module.h> |
| 34 | #include <linux/moduleparam.h> |
| 35 | #include <linux/types.h> |
| 36 | #include <linux/miscdevice.h> |
| 37 | #include <linux/watchdog.h> |
| 38 | #include <linux/fs.h> |
| 39 | #include <linux/ioport.h> |
Wim Van Sebroeck | c2bd11c | 2007-01-11 22:35:40 +0100 | [diff] [blame] | 40 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <linux/init.h> |
Wim Van Sebroeck | 089ab07 | 2008-07-15 11:46:11 +0000 | [diff] [blame] | 42 | #include <linux/io.h> |
| 43 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <asm/system.h> |
| 46 | |
Wim Van Sebroeck | 1d747be | 2007-01-11 22:19:28 +0100 | [diff] [blame] | 47 | #define DRV_NAME "advantechwdt" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #define WATCHDOG_NAME "Advantech WDT" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */ |
| 50 | |
Wim Van Sebroeck | 7944d3a | 2008-08-06 20:19:41 +0000 | [diff] [blame] | 51 | /* the watchdog platform device */ |
| 52 | static struct platform_device *advwdt_platform_device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | static unsigned long advwdt_is_open; |
| 54 | static char adv_expect_close; |
| 55 | |
| 56 | /* |
| 57 | * You must set these - there is no sane way to probe for this board. |
| 58 | * |
| 59 | * To enable or restart, write the timeout value in seconds (1 to 63) |
| 60 | * to I/O port wdt_start. To disable, read I/O port wdt_stop. |
| 61 | * Both are 0x443 for most boards (tested on a PCA-6276VE-00B1), but |
| 62 | * check your manual (at least the PCA-6159 seems to be different - |
| 63 | * the manual says wdt_stop is 0x43, not 0x443). |
| 64 | * (0x43 is also a write-only control register for the 8254 timer!) |
| 65 | */ |
| 66 | |
| 67 | static int wdt_stop = 0x443; |
| 68 | module_param(wdt_stop, int, 0); |
| 69 | MODULE_PARM_DESC(wdt_stop, "Advantech WDT 'stop' io port (default 0x443)"); |
| 70 | |
| 71 | static int wdt_start = 0x443; |
| 72 | module_param(wdt_start, int, 0); |
| 73 | MODULE_PARM_DESC(wdt_start, "Advantech WDT 'start' io port (default 0x443)"); |
| 74 | |
| 75 | static int timeout = WATCHDOG_TIMEOUT; /* in seconds */ |
| 76 | module_param(timeout, int, 0); |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 77 | MODULE_PARM_DESC(timeout, |
| 78 | "Watchdog timeout in seconds. 1<= timeout <=63, default=" |
| 79 | __MODULE_STRING(WATCHDOG_TIMEOUT) "."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame^] | 81 | static bool nowayout = WATCHDOG_NOWAYOUT; |
| 82 | module_param(nowayout, bool, 0); |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 83 | MODULE_PARM_DESC(nowayout, |
| 84 | "Watchdog cannot be stopped once started (default=" |
| 85 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
| 87 | /* |
Wim Van Sebroeck | 1d747be | 2007-01-11 22:19:28 +0100 | [diff] [blame] | 88 | * Watchdog Operations |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | */ |
| 90 | |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 91 | static void advwdt_ping(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | { |
| 93 | /* Write a watchdog value */ |
| 94 | outb_p(timeout, wdt_start); |
| 95 | } |
| 96 | |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 97 | static void advwdt_disable(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | { |
| 99 | inb_p(wdt_stop); |
| 100 | } |
| 101 | |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 102 | static int advwdt_set_heartbeat(int t) |
Wim Van Sebroeck | 0349a36 | 2007-01-11 22:27:51 +0100 | [diff] [blame] | 103 | { |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 104 | if (t < 1 || t > 63) |
Wim Van Sebroeck | 0349a36 | 2007-01-11 22:27:51 +0100 | [diff] [blame] | 105 | return -EINVAL; |
Wim Van Sebroeck | 0349a36 | 2007-01-11 22:27:51 +0100 | [diff] [blame] | 106 | timeout = t; |
| 107 | return 0; |
| 108 | } |
| 109 | |
Wim Van Sebroeck | 1d747be | 2007-01-11 22:19:28 +0100 | [diff] [blame] | 110 | /* |
| 111 | * /dev/watchdog handling |
| 112 | */ |
| 113 | |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 114 | static ssize_t advwdt_write(struct file *file, const char __user *buf, |
| 115 | size_t count, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | { |
| 117 | if (count) { |
| 118 | if (!nowayout) { |
| 119 | size_t i; |
| 120 | |
| 121 | adv_expect_close = 0; |
| 122 | |
| 123 | for (i = 0; i != count; i++) { |
| 124 | char c; |
Wim Van Sebroeck | 7944d3a | 2008-08-06 20:19:41 +0000 | [diff] [blame] | 125 | if (get_user(c, buf + i)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | return -EFAULT; |
| 127 | if (c == 'V') |
| 128 | adv_expect_close = 42; |
| 129 | } |
| 130 | } |
| 131 | advwdt_ping(); |
| 132 | } |
| 133 | return count; |
| 134 | } |
| 135 | |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 136 | static long advwdt_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | { |
| 138 | int new_timeout; |
| 139 | void __user *argp = (void __user *)arg; |
| 140 | int __user *p = argp; |
Wim Van Sebroeck | 42747d7 | 2009-12-26 18:55:22 +0000 | [diff] [blame] | 141 | static const struct watchdog_info ident = { |
Wim Van Sebroeck | 143a2e5 | 2009-03-18 08:35:09 +0000 | [diff] [blame] | 142 | .options = WDIOF_KEEPALIVEPING | |
| 143 | WDIOF_SETTIMEOUT | |
| 144 | WDIOF_MAGICCLOSE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | .firmware_version = 1, |
Wim Van Sebroeck | 1d747be | 2007-01-11 22:19:28 +0100 | [diff] [blame] | 146 | .identity = WATCHDOG_NAME, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | }; |
| 148 | |
| 149 | switch (cmd) { |
| 150 | case WDIOC_GETSUPPORT: |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 151 | if (copy_to_user(argp, &ident, sizeof(ident))) |
| 152 | return -EFAULT; |
| 153 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
| 155 | case WDIOC_GETSTATUS: |
| 156 | case WDIOC_GETBOOTSTATUS: |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 157 | return put_user(0, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | case WDIOC_SETOPTIONS: |
| 160 | { |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 161 | int options, retval = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 163 | if (get_user(options, p)) |
| 164 | return -EFAULT; |
| 165 | if (options & WDIOS_DISABLECARD) { |
| 166 | advwdt_disable(); |
| 167 | retval = 0; |
| 168 | } |
| 169 | if (options & WDIOS_ENABLECARD) { |
| 170 | advwdt_ping(); |
| 171 | retval = 0; |
| 172 | } |
| 173 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | } |
Wim Van Sebroeck | 0c06090 | 2008-07-18 11:41:17 +0000 | [diff] [blame] | 175 | case WDIOC_KEEPALIVE: |
| 176 | advwdt_ping(); |
| 177 | break; |
| 178 | |
| 179 | case WDIOC_SETTIMEOUT: |
| 180 | if (get_user(new_timeout, p)) |
| 181 | return -EFAULT; |
| 182 | if (advwdt_set_heartbeat(new_timeout)) |
| 183 | return -EINVAL; |
| 184 | advwdt_ping(); |
| 185 | /* Fall */ |
| 186 | case WDIOC_GETTIMEOUT: |
| 187 | return put_user(timeout, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | default: |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 189 | return -ENOTTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | } |
| 191 | return 0; |
| 192 | } |
| 193 | |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 194 | static int advwdt_open(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | { |
| 196 | if (test_and_set_bit(0, &advwdt_is_open)) |
| 197 | return -EBUSY; |
| 198 | /* |
| 199 | * Activate |
| 200 | */ |
| 201 | |
| 202 | advwdt_ping(); |
| 203 | return nonseekable_open(inode, file); |
| 204 | } |
| 205 | |
Wim Van Sebroeck | 7944d3a | 2008-08-06 20:19:41 +0000 | [diff] [blame] | 206 | static int advwdt_close(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | { |
| 208 | if (adv_expect_close == 42) { |
| 209 | advwdt_disable(); |
| 210 | } else { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 211 | pr_crit("Unexpected close, not stopping watchdog!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | advwdt_ping(); |
| 213 | } |
| 214 | clear_bit(0, &advwdt_is_open); |
| 215 | adv_expect_close = 0; |
| 216 | return 0; |
| 217 | } |
| 218 | |
| 219 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | * Kernel Interfaces |
| 221 | */ |
| 222 | |
Arjan van de Ven | 62322d2 | 2006-07-03 00:24:21 -0700 | [diff] [blame] | 223 | static const struct file_operations advwdt_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | .owner = THIS_MODULE, |
| 225 | .llseek = no_llseek, |
| 226 | .write = advwdt_write, |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 227 | .unlocked_ioctl = advwdt_ioctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | .open = advwdt_open, |
| 229 | .release = advwdt_close, |
| 230 | }; |
| 231 | |
| 232 | static struct miscdevice advwdt_miscdev = { |
Wim Van Sebroeck | 1d747be | 2007-01-11 22:19:28 +0100 | [diff] [blame] | 233 | .minor = WATCHDOG_MINOR, |
| 234 | .name = "watchdog", |
| 235 | .fops = &advwdt_fops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | }; |
| 237 | |
| 238 | /* |
Wim Van Sebroeck | 1d747be | 2007-01-11 22:19:28 +0100 | [diff] [blame] | 239 | * Init & exit routines |
| 240 | */ |
| 241 | |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 242 | static int __devinit advwdt_probe(struct platform_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | { |
| 244 | int ret; |
| 245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | if (wdt_stop != wdt_start) { |
| 247 | if (!request_region(wdt_stop, 1, WATCHDOG_NAME)) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 248 | pr_err("I/O address 0x%04x already in use\n", |
| 249 | wdt_stop); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | ret = -EIO; |
| 251 | goto out; |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | if (!request_region(wdt_start, 1, WATCHDOG_NAME)) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 256 | pr_err("I/O address 0x%04x already in use\n", wdt_start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | ret = -EIO; |
| 258 | goto unreg_stop; |
| 259 | } |
| 260 | |
Wim Van Sebroeck | 143a2e5 | 2009-03-18 08:35:09 +0000 | [diff] [blame] | 261 | /* Check that the heartbeat value is within it's range ; |
| 262 | * if not reset to the default */ |
Wim Van Sebroeck | 0349a36 | 2007-01-11 22:27:51 +0100 | [diff] [blame] | 263 | if (advwdt_set_heartbeat(timeout)) { |
| 264 | advwdt_set_heartbeat(WATCHDOG_TIMEOUT); |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 265 | pr_info("timeout value must be 1<=x<=63, using %d\n", timeout); |
Wim Van Sebroeck | 0349a36 | 2007-01-11 22:27:51 +0100 | [diff] [blame] | 266 | } |
| 267 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | ret = misc_register(&advwdt_miscdev); |
| 269 | if (ret != 0) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 270 | pr_err("cannot register miscdev on minor=%d (err=%d)\n", |
| 271 | WATCHDOG_MINOR, ret); |
Wim Van Sebroeck | 2e9c9cf | 2007-01-11 22:42:41 +0100 | [diff] [blame] | 272 | goto unreg_regions; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | } |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 274 | pr_info("initialized. timeout=%d sec (nowayout=%d)\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | timeout, nowayout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | out: |
| 277 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | unreg_regions: |
| 279 | release_region(wdt_start, 1); |
| 280 | unreg_stop: |
| 281 | if (wdt_stop != wdt_start) |
| 282 | release_region(wdt_stop, 1); |
| 283 | goto out; |
| 284 | } |
| 285 | |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 286 | static int __devexit advwdt_remove(struct platform_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | { |
| 288 | misc_deregister(&advwdt_miscdev); |
Wim Van Sebroeck | 7944d3a | 2008-08-06 20:19:41 +0000 | [diff] [blame] | 289 | release_region(wdt_start, 1); |
| 290 | if (wdt_stop != wdt_start) |
| 291 | release_region(wdt_stop, 1); |
Wim Van Sebroeck | c2bd11c | 2007-01-11 22:35:40 +0100 | [diff] [blame] | 292 | |
| 293 | return 0; |
| 294 | } |
| 295 | |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 296 | static void advwdt_shutdown(struct platform_device *dev) |
Wim Van Sebroeck | 2e9c9cf | 2007-01-11 22:42:41 +0100 | [diff] [blame] | 297 | { |
| 298 | /* Turn the WDT off if we have a soft shutdown */ |
| 299 | advwdt_disable(); |
| 300 | } |
| 301 | |
Wim Van Sebroeck | c2bd11c | 2007-01-11 22:35:40 +0100 | [diff] [blame] | 302 | static struct platform_driver advwdt_driver = { |
| 303 | .probe = advwdt_probe, |
| 304 | .remove = __devexit_p(advwdt_remove), |
Wim Van Sebroeck | 2e9c9cf | 2007-01-11 22:42:41 +0100 | [diff] [blame] | 305 | .shutdown = advwdt_shutdown, |
Wim Van Sebroeck | c2bd11c | 2007-01-11 22:35:40 +0100 | [diff] [blame] | 306 | .driver = { |
| 307 | .owner = THIS_MODULE, |
| 308 | .name = DRV_NAME, |
| 309 | }, |
| 310 | }; |
| 311 | |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 312 | static int __init advwdt_init(void) |
Wim Van Sebroeck | c2bd11c | 2007-01-11 22:35:40 +0100 | [diff] [blame] | 313 | { |
| 314 | int err; |
| 315 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 316 | pr_info("WDT driver for Advantech single board computer initialising\n"); |
Wim Van Sebroeck | c2bd11c | 2007-01-11 22:35:40 +0100 | [diff] [blame] | 317 | |
| 318 | err = platform_driver_register(&advwdt_driver); |
| 319 | if (err) |
| 320 | return err; |
| 321 | |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 322 | advwdt_platform_device = platform_device_register_simple(DRV_NAME, |
| 323 | -1, NULL, 0); |
Wim Van Sebroeck | c2bd11c | 2007-01-11 22:35:40 +0100 | [diff] [blame] | 324 | if (IS_ERR(advwdt_platform_device)) { |
| 325 | err = PTR_ERR(advwdt_platform_device); |
| 326 | goto unreg_platform_driver; |
| 327 | } |
| 328 | |
| 329 | return 0; |
| 330 | |
| 331 | unreg_platform_driver: |
| 332 | platform_driver_unregister(&advwdt_driver); |
| 333 | return err; |
| 334 | } |
| 335 | |
Alan Cox | b6b4d9b | 2008-05-19 14:04:51 +0100 | [diff] [blame] | 336 | static void __exit advwdt_exit(void) |
Wim Van Sebroeck | c2bd11c | 2007-01-11 22:35:40 +0100 | [diff] [blame] | 337 | { |
| 338 | platform_device_unregister(advwdt_platform_device); |
| 339 | platform_driver_unregister(&advwdt_driver); |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 340 | pr_info("Watchdog Module Unloaded\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | module_init(advwdt_init); |
| 344 | module_exit(advwdt_exit); |
| 345 | |
| 346 | MODULE_LICENSE("GPL"); |
| 347 | MODULE_AUTHOR("Marek Michalkiewicz <marekm@linux.org.pl>"); |
| 348 | MODULE_DESCRIPTION("Advantech Single Board Computer WDT driver"); |
| 349 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); |