| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * MixCom Watchdog: A Simple Hardware Watchdog Device | 
|  | 3 | * Based on Softdog driver by Alan Cox and PC Watchdog driver by Ken Hollis | 
|  | 4 | * | 
|  | 5 | * Author: Gergely Madarasz <gorgo@itc.hu> | 
|  | 6 | * | 
|  | 7 | * Copyright (c) 1999 ITConsult-Pro Co. <info@itc.hu> | 
|  | 8 | * | 
|  | 9 | * This program is free software; you can redistribute it and/or | 
|  | 10 | * modify it under the terms of the GNU General Public License | 
|  | 11 | * as published by the Free Software Foundation; either version | 
|  | 12 | * 2 of the License, or (at your option) any later version. | 
|  | 13 | * | 
|  | 14 | * Version 0.1 (99/04/15): | 
|  | 15 | *		- first version | 
|  | 16 | * | 
|  | 17 | * Version 0.2 (99/06/16): | 
|  | 18 | *		- added kernel timer watchdog ping after close | 
|  | 19 | *		  since the hardware does not support watchdog shutdown | 
|  | 20 | * | 
|  | 21 | * Version 0.3 (99/06/21): | 
|  | 22 | *		- added WDIOC_GETSTATUS and WDIOC_GETSUPPORT ioctl calls | 
|  | 23 | * | 
|  | 24 | * Version 0.3.1 (99/06/22): | 
|  | 25 | *		- allow module removal while internal timer is active, | 
|  | 26 | *		  print warning about probable reset | 
|  | 27 | * | 
|  | 28 | * Version 0.4 (99/11/15): | 
|  | 29 | *		- support for one more type board | 
|  | 30 | * | 
|  | 31 | * Version 0.5 (2001/12/14) Matt Domsch <Matt_Domsch@dell.com> | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 32 | *		- added nowayout module option to override | 
|  | 33 | *		  CONFIG_WATCHDOG_NOWAYOUT | 
| Wim Van Sebroeck | b10958d | 2007-06-03 15:22:32 +0000 | [diff] [blame] | 34 | * | 
|  | 35 | * Version 0.6 (2002/04/12): Rob Radez <rob@osinvestor.com> | 
|  | 36 | *		- make mixcomwd_opened unsigned, | 
|  | 37 | *		  removed lock_kernel/unlock_kernel from mixcomwd_release, | 
|  | 38 | *		  modified ioctl a bit to conform to API | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | * | 
|  | 40 | */ | 
|  | 41 |  | 
| Wim Van Sebroeck | b10958d | 2007-06-03 15:22:32 +0000 | [diff] [blame] | 42 | #define VERSION "0.6" | 
| Wim Van Sebroeck | 1c06731 | 2007-06-04 18:35:41 +0000 | [diff] [blame] | 43 | #define WATCHDOG_NAME "mixcomwd" | 
|  | 44 | #define PFX WATCHDOG_NAME ": " | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 |  | 
|  | 46 | #include <linux/module.h> | 
|  | 47 | #include <linux/moduleparam.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #include <linux/types.h> | 
|  | 49 | #include <linux/miscdevice.h> | 
|  | 50 | #include <linux/ioport.h> | 
|  | 51 | #include <linux/watchdog.h> | 
|  | 52 | #include <linux/fs.h> | 
|  | 53 | #include <linux/reboot.h> | 
|  | 54 | #include <linux/init.h> | 
| Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 55 | #include <linux/jiffies.h> | 
|  | 56 | #include <linux/timer.h> | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 57 | #include <linux/uaccess.h> | 
|  | 58 | #include <linux/io.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 |  | 
| Wim Van Sebroeck | 63e6e17 | 2007-06-03 15:39:25 +0000 | [diff] [blame] | 60 | /* | 
|  | 61 | * We have two types of cards that can be probed: | 
|  | 62 | * 1) The Mixcom cards: these cards can be found at addresses | 
|  | 63 | *    0x180, 0x280, 0x380 with an additional offset of 0xc10. | 
|  | 64 | *    (Or 0xd90, 0xe90, 0xf90). | 
|  | 65 | * 2) The FlashCOM cards: these cards can be set up at | 
|  | 66 | *    0x300 -> 0x378, in 0x8 jumps with an offset of 0x04. | 
|  | 67 | *    (Or 0x304 -> 0x37c in 0x8 jumps). | 
|  | 68 | *    Each card has it's own ID. | 
|  | 69 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | #define MIXCOM_ID 0x11 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | #define FLASHCOM_ID 0x18 | 
| Wim Van Sebroeck | 21baf3c | 2007-06-03 20:46:05 +0000 | [diff] [blame] | 72 | static struct { | 
|  | 73 | int ioport; | 
|  | 74 | int id; | 
|  | 75 | } mixcomwd_io_info[] __devinitdata = { | 
|  | 76 | /* The Mixcom cards */ | 
|  | 77 | {0x0d90, MIXCOM_ID}, | 
|  | 78 | {0x0e90, MIXCOM_ID}, | 
|  | 79 | {0x0f90, MIXCOM_ID}, | 
|  | 80 | /* The FlashCOM cards */ | 
|  | 81 | {0x0304, FLASHCOM_ID}, | 
|  | 82 | {0x030c, FLASHCOM_ID}, | 
|  | 83 | {0x0314, FLASHCOM_ID}, | 
|  | 84 | {0x031c, FLASHCOM_ID}, | 
|  | 85 | {0x0324, FLASHCOM_ID}, | 
|  | 86 | {0x032c, FLASHCOM_ID}, | 
|  | 87 | {0x0334, FLASHCOM_ID}, | 
|  | 88 | {0x033c, FLASHCOM_ID}, | 
|  | 89 | {0x0344, FLASHCOM_ID}, | 
|  | 90 | {0x034c, FLASHCOM_ID}, | 
|  | 91 | {0x0354, FLASHCOM_ID}, | 
|  | 92 | {0x035c, FLASHCOM_ID}, | 
|  | 93 | {0x0364, FLASHCOM_ID}, | 
|  | 94 | {0x036c, FLASHCOM_ID}, | 
|  | 95 | {0x0374, FLASHCOM_ID}, | 
|  | 96 | {0x037c, FLASHCOM_ID}, | 
|  | 97 | /* The end of the list */ | 
|  | 98 | {0x0000, 0}, | 
|  | 99 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 |  | 
| Jiri Slaby | 82eb7c5 | 2007-02-08 18:39:36 +0100 | [diff] [blame] | 101 | static void mixcomwd_timerfun(unsigned long d); | 
|  | 102 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | static unsigned long mixcomwd_opened; /* long req'd for setbit --RR */ | 
|  | 104 |  | 
|  | 105 | static int watchdog_port; | 
|  | 106 | static int mixcomwd_timer_alive; | 
| Jiri Slaby | 82eb7c5 | 2007-02-08 18:39:36 +0100 | [diff] [blame] | 107 | static DEFINE_TIMER(mixcomwd_timer, mixcomwd_timerfun, 0, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | static char expect_close; | 
|  | 109 |  | 
| Andrey Panin | 4bfdf37 | 2005-07-27 11:43:58 -0700 | [diff] [blame] | 110 | static int nowayout = WATCHDOG_NOWAYOUT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | module_param(nowayout, int, 0); | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 112 | MODULE_PARM_DESC(nowayout, | 
|  | 113 | "Watchdog cannot be stopped once started (default=" | 
|  | 114 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 |  | 
|  | 116 | static void mixcomwd_ping(void) | 
|  | 117 | { | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 118 | outb_p(55, watchdog_port); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | return; | 
|  | 120 | } | 
|  | 121 |  | 
|  | 122 | static void mixcomwd_timerfun(unsigned long d) | 
|  | 123 | { | 
|  | 124 | mixcomwd_ping(); | 
| Jiri Slaby | 82eb7c5 | 2007-02-08 18:39:36 +0100 | [diff] [blame] | 125 | mod_timer(&mixcomwd_timer, jiffies + 5 * HZ); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | } | 
|  | 127 |  | 
|  | 128 | /* | 
|  | 129 | *	Allow only one person to hold it open | 
|  | 130 | */ | 
|  | 131 |  | 
|  | 132 | static int mixcomwd_open(struct inode *inode, struct file *file) | 
|  | 133 | { | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 134 | if (test_and_set_bit(0, &mixcomwd_opened)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | return -EBUSY; | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 136 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | mixcomwd_ping(); | 
|  | 138 |  | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 139 | if (nowayout) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | /* | 
|  | 141 | * fops_get() code via open() has already done | 
|  | 142 | * a try_module_get() so it is safe to do the | 
|  | 143 | * __module_get(). | 
|  | 144 | */ | 
|  | 145 | __module_get(THIS_MODULE); | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 146 | else { | 
|  | 147 | if (mixcomwd_timer_alive) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | del_timer(&mixcomwd_timer); | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 149 | mixcomwd_timer_alive = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | } | 
|  | 151 | } | 
|  | 152 | return nonseekable_open(inode, file); | 
|  | 153 | } | 
|  | 154 |  | 
|  | 155 | static int mixcomwd_release(struct inode *inode, struct file *file) | 
|  | 156 | { | 
|  | 157 | if (expect_close == 42) { | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 158 | if (mixcomwd_timer_alive) { | 
|  | 159 | printk(KERN_ERR PFX | 
|  | 160 | "release called while internal timer alive"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | return -EBUSY; | 
|  | 162 | } | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 163 | mixcomwd_timer_alive = 1; | 
| Jiri Slaby | 82eb7c5 | 2007-02-08 18:39:36 +0100 | [diff] [blame] | 164 | mod_timer(&mixcomwd_timer, jiffies + 5 * HZ); | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 165 | } else | 
|  | 166 | printk(KERN_CRIT PFX | 
|  | 167 | "WDT device closed unexpectedly.  WDT will not stop!\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 |  | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 169 | clear_bit(0, &mixcomwd_opened); | 
|  | 170 | expect_close = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | return 0; | 
|  | 172 | } | 
|  | 173 |  | 
|  | 174 |  | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 175 | static ssize_t mixcomwd_write(struct file *file, const char __user *data, | 
|  | 176 | size_t len, loff_t *ppos) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | { | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 178 | if (len) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | if (!nowayout) { | 
|  | 180 | size_t i; | 
|  | 181 |  | 
|  | 182 | /* In case it was set long ago */ | 
|  | 183 | expect_close = 0; | 
|  | 184 |  | 
|  | 185 | for (i = 0; i != len; i++) { | 
|  | 186 | char c; | 
|  | 187 | if (get_user(c, data + i)) | 
|  | 188 | return -EFAULT; | 
|  | 189 | if (c == 'V') | 
|  | 190 | expect_close = 42; | 
|  | 191 | } | 
|  | 192 | } | 
|  | 193 | mixcomwd_ping(); | 
|  | 194 | } | 
|  | 195 | return len; | 
|  | 196 | } | 
|  | 197 |  | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 198 | static long mixcomwd_ioctl(struct file *file, | 
|  | 199 | unsigned int cmd, unsigned long arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | { | 
|  | 201 | void __user *argp = (void __user *)arg; | 
|  | 202 | int __user *p = argp; | 
|  | 203 | int status; | 
| Wim Van Sebroeck | 42747d7 | 2009-12-26 18:55:22 +0000 | [diff] [blame] | 204 | static const struct watchdog_info ident = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | .options = WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE, | 
|  | 206 | .firmware_version = 1, | 
|  | 207 | .identity = "MixCOM watchdog", | 
|  | 208 | }; | 
|  | 209 |  | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 210 | switch (cmd) { | 
| Wim Van Sebroeck | 0c06090 | 2008-07-18 11:41:17 +0000 | [diff] [blame] | 211 | case WDIOC_GETSUPPORT: | 
|  | 212 | if (copy_to_user(argp, &ident, sizeof(ident))) | 
|  | 213 | return -EFAULT; | 
|  | 214 | break; | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 215 | case WDIOC_GETSTATUS: | 
|  | 216 | status = mixcomwd_opened; | 
|  | 217 | if (!nowayout) | 
|  | 218 | status |= mixcomwd_timer_alive; | 
|  | 219 | return put_user(status, p); | 
|  | 220 | case WDIOC_GETBOOTSTATUS: | 
|  | 221 | return put_user(0, p); | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 222 | case WDIOC_KEEPALIVE: | 
|  | 223 | mixcomwd_ping(); | 
|  | 224 | break; | 
|  | 225 | default: | 
|  | 226 | return -ENOTTY; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | } | 
|  | 228 | return 0; | 
|  | 229 | } | 
|  | 230 |  | 
| Wim Van Sebroeck | 10a2930 | 2007-06-04 19:13:28 +0000 | [diff] [blame] | 231 | static const struct file_operations mixcomwd_fops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | .owner		= THIS_MODULE, | 
|  | 233 | .llseek		= no_llseek, | 
|  | 234 | .write		= mixcomwd_write, | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 235 | .unlocked_ioctl	= mixcomwd_ioctl, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | .open		= mixcomwd_open, | 
|  | 237 | .release	= mixcomwd_release, | 
|  | 238 | }; | 
|  | 239 |  | 
| Wim Van Sebroeck | 10a2930 | 2007-06-04 19:13:28 +0000 | [diff] [blame] | 240 | static struct miscdevice mixcomwd_miscdev = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | .minor	= WATCHDOG_MINOR, | 
|  | 242 | .name	= "watchdog", | 
|  | 243 | .fops	= &mixcomwd_fops, | 
|  | 244 | }; | 
|  | 245 |  | 
| Wim Van Sebroeck | 4194db1 | 2007-06-03 19:01:38 +0000 | [diff] [blame] | 246 | static int __init checkcard(int port, int card_id) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | { | 
|  | 248 | int id; | 
|  | 249 |  | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 250 | if (!request_region(port, 1, "MixCOM watchdog")) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 |  | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 253 | id = inb_p(port); | 
|  | 254 | if (card_id == MIXCOM_ID) | 
| Wim Van Sebroeck | 4194db1 | 2007-06-03 19:01:38 +0000 | [diff] [blame] | 255 | id &= 0x3f; | 
|  | 256 |  | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 257 | if (id != card_id) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | release_region(port, 1); | 
|  | 259 | return 0; | 
|  | 260 | } | 
| Wim Van Sebroeck | 4194db1 | 2007-06-03 19:01:38 +0000 | [diff] [blame] | 261 | return 1; | 
|  | 262 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 |  | 
|  | 264 | static int __init mixcomwd_init(void) | 
|  | 265 | { | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 266 | int i, ret, found = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 |  | 
| Wim Van Sebroeck | 21baf3c | 2007-06-03 20:46:05 +0000 | [diff] [blame] | 268 | for (i = 0; !found && mixcomwd_io_info[i].ioport != 0; i++) { | 
|  | 269 | if (checkcard(mixcomwd_io_info[i].ioport, | 
|  | 270 | mixcomwd_io_info[i].id)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | found = 1; | 
| Wim Van Sebroeck | 21baf3c | 2007-06-03 20:46:05 +0000 | [diff] [blame] | 272 | watchdog_port = mixcomwd_io_info[i].ioport; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | } | 
|  | 274 | } | 
|  | 275 |  | 
|  | 276 | if (!found) { | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 277 | printk(KERN_ERR PFX | 
|  | 278 | "No card detected, or port not available.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | return -ENODEV; | 
|  | 280 | } | 
|  | 281 |  | 
|  | 282 | ret = misc_register(&mixcomwd_miscdev); | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 283 | if (ret) { | 
|  | 284 | printk(KERN_ERR PFX | 
|  | 285 | "cannot register miscdev on minor=%d (err=%d)\n", | 
|  | 286 | WATCHDOG_MINOR, ret); | 
| Wim Van Sebroeck | 27c7742 | 2007-06-04 18:35:41 +0000 | [diff] [blame] | 287 | goto error_misc_register_watchdog; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | } | 
|  | 289 |  | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 290 | printk(KERN_INFO | 
|  | 291 | "MixCOM watchdog driver v%s, watchdog port at 0x%3x\n", | 
|  | 292 | VERSION, watchdog_port); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 |  | 
|  | 294 | return 0; | 
| Wim Van Sebroeck | 27c7742 | 2007-06-04 18:35:41 +0000 | [diff] [blame] | 295 |  | 
|  | 296 | error_misc_register_watchdog: | 
|  | 297 | release_region(watchdog_port, 1); | 
|  | 298 | watchdog_port = 0x0000; | 
|  | 299 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | } | 
|  | 301 |  | 
|  | 302 | static void __exit mixcomwd_exit(void) | 
|  | 303 | { | 
|  | 304 | if (!nowayout) { | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 305 | if (mixcomwd_timer_alive) { | 
| Wim Van Sebroeck | 1c06731 | 2007-06-04 18:35:41 +0000 | [diff] [blame] | 306 | printk(KERN_WARNING PFX "I quit now, hardware will" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | " probably reboot!\n"); | 
| Jiri Slaby | 82eb7c5 | 2007-02-08 18:39:36 +0100 | [diff] [blame] | 308 | del_timer_sync(&mixcomwd_timer); | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 309 | mixcomwd_timer_alive = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | } | 
|  | 311 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | misc_deregister(&mixcomwd_miscdev); | 
| Alan Cox | 3930964 | 2008-05-19 14:07:04 +0100 | [diff] [blame] | 313 | release_region(watchdog_port, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | } | 
|  | 315 |  | 
|  | 316 | module_init(mixcomwd_init); | 
|  | 317 | module_exit(mixcomwd_exit); | 
|  | 318 |  | 
|  | 319 | MODULE_AUTHOR("Gergely Madarasz <gorgo@itc.hu>"); | 
|  | 320 | MODULE_DESCRIPTION("MixCom Watchdog driver"); | 
| Wim Van Sebroeck | 1c06731 | 2007-06-04 18:35:41 +0000 | [diff] [blame] | 321 | MODULE_VERSION(VERSION); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | MODULE_LICENSE("GPL"); | 
|  | 323 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); |