Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Vlad Drukker | 0e94f2e | 2007-03-25 17:34:39 +0200 | [diff] [blame] | 2 | * w83627hf/thf WDT driver |
| 3 | * |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 4 | * (c) Copyright 2013 Guenter Roeck |
| 5 | * converted to watchdog infrastructure |
| 6 | * |
Vlad Drukker | 0e94f2e | 2007-03-25 17:34:39 +0200 | [diff] [blame] | 7 | * (c) Copyright 2007 Vlad Drukker <vlad@storewiz.com> |
| 8 | * added support for W83627THF. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * |
Al Viro | d36b691 | 2011-12-29 17:09:01 -0500 | [diff] [blame] | 10 | * (c) Copyright 2003,2007 Pádraig Brady <P@draigBrady.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * |
| 12 | * Based on advantechwdt.c which is based on wdt.c. |
| 13 | * Original copyright messages: |
| 14 | * |
| 15 | * (c) Copyright 2000-2001 Marek Michalkiewicz <marekm@linux.org.pl> |
| 16 | * |
Alan Cox | 29fa058 | 2008-10-27 15:17:56 +0000 | [diff] [blame] | 17 | * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>, |
| 18 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | * |
| 20 | * This program is free software; you can redistribute it and/or |
| 21 | * modify it under the terms of the GNU General Public License |
| 22 | * as published by the Free Software Foundation; either version |
| 23 | * 2 of the License, or (at your option) any later version. |
| 24 | * |
| 25 | * Neither Alan Cox nor CymruNet Ltd. admit liability nor provide |
| 26 | * warranty for any of this software. This material is provided |
| 27 | * "AS-IS" and at no charge. |
| 28 | * |
Alan Cox | 29fa058 | 2008-10-27 15:17:56 +0000 | [diff] [blame] | 29 | * (c) Copyright 1995 Alan Cox <alan@lxorguk.ukuu.org.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | */ |
| 31 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 32 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/module.h> |
| 35 | #include <linux/moduleparam.h> |
| 36 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/watchdog.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/ioport.h> |
| 39 | #include <linux/notifier.h> |
| 40 | #include <linux/reboot.h> |
| 41 | #include <linux/init.h> |
Alan Cox | 46a3949 | 2008-05-19 14:09:18 +0100 | [diff] [blame] | 42 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Benny Loenstrup Ammitzboell | 9c67bea | 2010-11-11 16:08:41 +0100 | [diff] [blame] | 44 | #define WATCHDOG_NAME "w83627hf/thf/hg/dhg WDT" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */ |
| 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | /* You must set this - there is no sane way to probe for this board. */ |
| 48 | static int wdt_io = 0x2E; |
| 49 | module_param(wdt_io, int, 0); |
Vlad Drukker | 0e94f2e | 2007-03-25 17:34:39 +0200 | [diff] [blame] | 50 | MODULE_PARM_DESC(wdt_io, "w83627hf/thf WDT io port (default 0x2E)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 52 | static int timeout; /* in seconds */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | module_param(timeout, int, 0); |
Alan Cox | 46a3949 | 2008-05-19 14:09:18 +0100 | [diff] [blame] | 54 | MODULE_PARM_DESC(timeout, |
| 55 | "Watchdog timeout in seconds. 1 <= timeout <= 255, default=" |
| 56 | __MODULE_STRING(WATCHDOG_TIMEOUT) "."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 58 | static bool nowayout = WATCHDOG_NOWAYOUT; |
| 59 | module_param(nowayout, bool, 0); |
Alan Cox | 46a3949 | 2008-05-19 14:09:18 +0100 | [diff] [blame] | 60 | MODULE_PARM_DESC(nowayout, |
| 61 | "Watchdog cannot be stopped once started (default=" |
| 62 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
| 64 | /* |
| 65 | * Kernel methods. |
| 66 | */ |
| 67 | |
| 68 | #define WDT_EFER (wdt_io+0) /* Extended Function Enable Registers */ |
Alan Cox | 46a3949 | 2008-05-19 14:09:18 +0100 | [diff] [blame] | 69 | #define WDT_EFIR (wdt_io+0) /* Extended Function Index Register |
| 70 | (same as EFER) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | #define WDT_EFDR (WDT_EFIR+1) /* Extended Function Data Register */ |
| 72 | |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 73 | #define W83627HF_LD_WDT 0x08 |
| 74 | |
| 75 | static void superio_outb(int reg, int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | { |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 77 | outb(reg, WDT_EFER); |
| 78 | outb(val, WDT_EFDR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 81 | static inline int superio_inb(int reg) |
| 82 | { |
| 83 | outb(reg, WDT_EFER); |
| 84 | return inb(WDT_EFDR); |
| 85 | } |
| 86 | |
| 87 | static int superio_enter(void) |
| 88 | { |
| 89 | if (!request_muxed_region(wdt_io, 2, WATCHDOG_NAME)) |
| 90 | return -EBUSY; |
| 91 | |
| 92 | outb_p(0x87, WDT_EFER); /* Enter extended function mode */ |
| 93 | outb_p(0x87, WDT_EFER); /* Again according to manual */ |
| 94 | |
| 95 | return 0; |
| 96 | } |
| 97 | |
| 98 | static void superio_select(int ld) |
| 99 | { |
| 100 | superio_outb(0x07, ld); |
| 101 | } |
| 102 | |
| 103 | static void superio_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | { |
| 105 | outb_p(0xAA, WDT_EFER); /* Leave extended function mode */ |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 106 | release_region(wdt_io, 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | /* tyan motherboards seem to set F5 to 0x4C ? |
| 110 | * So explicitly init to appropriate value. */ |
Alan Cox | 46a3949 | 2008-05-19 14:09:18 +0100 | [diff] [blame] | 111 | |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 112 | static int w83627hf_init(struct watchdog_device *wdog) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | { |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 114 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | unsigned char t; |
| 116 | |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 117 | ret = superio_enter(); |
| 118 | if (ret) |
| 119 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 121 | superio_select(W83627HF_LD_WDT); |
| 122 | t = superio_inb(0x20); /* check chip version */ |
Guenter Roeck | 8f52638 | 2013-08-17 13:58:40 -0700 | [diff] [blame] | 123 | if (t == 0x82) { /* W83627THF */ |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 124 | t = (superio_inb(0x2b) & 0xf7); |
| 125 | superio_outb(0x2b, t | 0x04); /* set GPIO3 to WDT0 */ |
Guenter Roeck | 8f52638 | 2013-08-17 13:58:40 -0700 | [diff] [blame] | 126 | } else if (t == 0x88 || t == 0xa0) { /* W83627EHF / W83627DHG */ |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 127 | t = superio_inb(0x2d); |
| 128 | superio_outb(0x2d, t & ~0x01); /* set GPIO5 to WDT0 */ |
Guenter Roeck | 8f52638 | 2013-08-17 13:58:40 -0700 | [diff] [blame] | 129 | } |
| 130 | |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 131 | /* set CR30 bit 0 to activate GPIO2 */ |
| 132 | t = superio_inb(0x30); |
Guenter Roeck | ac46110 | 2013-08-17 13:58:41 -0700 | [diff] [blame] | 133 | if (!(t & 0x01)) |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 134 | superio_outb(0x30, t | 0x01); |
Guenter Roeck | 8f52638 | 2013-08-17 13:58:40 -0700 | [diff] [blame] | 135 | |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 136 | t = superio_inb(0xF6); |
P@Draig Brady | 93642ec | 2005-08-17 09:06:07 +0200 | [diff] [blame] | 137 | if (t != 0) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 138 | pr_info("Watchdog already running. Resetting timeout to %d sec\n", |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 139 | wdog->timeout); |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 140 | superio_outb(0xF6, wdog->timeout); |
P@Draig Brady | 93642ec | 2005-08-17 09:06:07 +0200 | [diff] [blame] | 141 | } |
Pádraig Brady | 28dd1b0 | 2007-07-24 11:49:27 +0100 | [diff] [blame] | 142 | |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 143 | /* set second mode & disable keyboard turning off watchdog */ |
| 144 | t = superio_inb(0xF5) & ~0x0C; |
| 145 | /* enable the WDTO# output low pulse to the KBRST# pin */ |
| 146 | t |= 0x02; |
| 147 | superio_outb(0xF5, t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 149 | /* disable keyboard & mouse turning off watchdog */ |
| 150 | t = superio_inb(0xF7) & ~0xC0; |
| 151 | superio_outb(0xF7, t); |
Pádraig Brady | 28dd1b0 | 2007-07-24 11:49:27 +0100 | [diff] [blame] | 152 | |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 153 | superio_exit(); |
| 154 | |
| 155 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | } |
| 157 | |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 158 | static int wdt_set_time(unsigned int timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | { |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 160 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 162 | ret = superio_enter(); |
| 163 | if (ret) |
| 164 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 166 | superio_select(W83627HF_LD_WDT); |
| 167 | superio_outb(0xF6, timeout); |
| 168 | superio_exit(); |
Wim Van Sebroeck | ab9d441 | 2006-09-02 18:50:20 +0200 | [diff] [blame] | 169 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | return 0; |
| 171 | } |
| 172 | |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 173 | static int wdt_start(struct watchdog_device *wdog) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | { |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 175 | return wdt_set_time(wdog->timeout); |
| 176 | } |
| 177 | |
| 178 | static int wdt_stop(struct watchdog_device *wdog) |
| 179 | { |
| 180 | return wdt_set_time(0); |
| 181 | } |
| 182 | |
| 183 | static int wdt_set_timeout(struct watchdog_device *wdog, unsigned int timeout) |
| 184 | { |
| 185 | wdog->timeout = timeout; |
| 186 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | return 0; |
| 188 | } |
| 189 | |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 190 | static unsigned int wdt_get_time(struct watchdog_device *wdog) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | { |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 192 | unsigned int timeleft; |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 193 | int ret; |
Greg Lee | c63b6d0 | 2011-09-12 20:28:46 -0400 | [diff] [blame] | 194 | |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 195 | ret = superio_enter(); |
| 196 | if (ret) |
| 197 | return 0; |
Greg Lee | c63b6d0 | 2011-09-12 20:28:46 -0400 | [diff] [blame] | 198 | |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 199 | superio_select(W83627HF_LD_WDT); |
| 200 | timeleft = superio_inb(0xF6); |
| 201 | superio_exit(); |
Greg Lee | c63b6d0 | 2011-09-12 20:28:46 -0400 | [diff] [blame] | 202 | |
Greg Lee | c63b6d0 | 2011-09-12 20:28:46 -0400 | [diff] [blame] | 203 | return timeleft; |
| 204 | } |
| 205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | /* |
| 207 | * Notifier for system down |
| 208 | */ |
Alan Cox | 46a3949 | 2008-05-19 14:09:18 +0100 | [diff] [blame] | 209 | static int wdt_notify_sys(struct notifier_block *this, unsigned long code, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | void *unused) |
| 211 | { |
Wim Van Sebroeck | 7944d3a | 2008-08-06 20:19:41 +0000 | [diff] [blame] | 212 | if (code == SYS_DOWN || code == SYS_HALT) |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 213 | wdt_set_time(0); /* Turn the WDT off */ |
Wim Van Sebroeck | 7944d3a | 2008-08-06 20:19:41 +0000 | [diff] [blame] | 214 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | return NOTIFY_DONE; |
| 216 | } |
| 217 | |
| 218 | /* |
| 219 | * Kernel Interfaces |
| 220 | */ |
| 221 | |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 222 | static struct watchdog_info wdt_info = { |
| 223 | .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE, |
| 224 | .identity = "W83627HF Watchdog", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | }; |
| 226 | |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 227 | static struct watchdog_ops wdt_ops = { |
| 228 | .owner = THIS_MODULE, |
| 229 | .start = wdt_start, |
| 230 | .stop = wdt_stop, |
| 231 | .set_timeout = wdt_set_timeout, |
| 232 | .get_timeleft = wdt_get_time, |
| 233 | }; |
| 234 | |
| 235 | static struct watchdog_device wdt_dev = { |
| 236 | .info = &wdt_info, |
| 237 | .ops = &wdt_ops, |
| 238 | .timeout = WATCHDOG_TIMEOUT, |
| 239 | .min_timeout = 1, |
| 240 | .max_timeout = 255, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | }; |
| 242 | |
| 243 | /* |
| 244 | * The WDT needs to learn about soft shutdowns in order to |
| 245 | * turn the timebomb registers off. |
| 246 | */ |
| 247 | |
| 248 | static struct notifier_block wdt_notifier = { |
| 249 | .notifier_call = wdt_notify_sys, |
| 250 | }; |
| 251 | |
Alan Cox | 46a3949 | 2008-05-19 14:09:18 +0100 | [diff] [blame] | 252 | static int __init wdt_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | { |
| 254 | int ret; |
| 255 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 256 | pr_info("WDT driver for the Winbond(TM) W83627HF/THF/HG/DHG Super I/O chip initialising\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 258 | watchdog_init_timeout(&wdt_dev, timeout, NULL); |
| 259 | watchdog_set_nowayout(&wdt_dev, nowayout); |
| 260 | |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 261 | ret = w83627hf_init(&wdt_dev); |
| 262 | if (ret) { |
| 263 | pr_err("failed to initialize watchdog (err=%d)\n", ret); |
| 264 | return ret; |
| 265 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
| 267 | ret = register_reboot_notifier(&wdt_notifier); |
| 268 | if (ret != 0) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 269 | pr_err("cannot register reboot notifier (err=%d)\n", ret); |
Guenter Roeck | ef0c1a6 | 2013-08-17 13:58:42 -0700 | [diff] [blame] | 270 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | } |
| 272 | |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 273 | ret = watchdog_register_device(&wdt_dev); |
| 274 | if (ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | goto unreg_reboot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 277 | pr_info("initialized. timeout=%d sec (nowayout=%d)\n", |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 278 | wdt_dev.timeout, nowayout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | return ret; |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 281 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | unreg_reboot: |
| 283 | unregister_reboot_notifier(&wdt_notifier); |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 284 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | } |
| 286 | |
Alan Cox | 46a3949 | 2008-05-19 14:09:18 +0100 | [diff] [blame] | 287 | static void __exit wdt_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | { |
Guenter Roeck | 30a83695 | 2013-10-28 19:43:57 -0700 | [diff] [blame] | 289 | watchdog_unregister_device(&wdt_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | unregister_reboot_notifier(&wdt_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | module_init(wdt_init); |
| 294 | module_exit(wdt_exit); |
| 295 | |
| 296 | MODULE_LICENSE("GPL"); |
Al Viro | d36b691 | 2011-12-29 17:09:01 -0500 | [diff] [blame] | 297 | MODULE_AUTHOR("Pádraig Brady <P@draigBrady.com>"); |
Vlad Drukker | 0e94f2e | 2007-03-25 17:34:39 +0200 | [diff] [blame] | 298 | MODULE_DESCRIPTION("w83627hf/thf WDT driver"); |