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> |
Wim Van Sebroeck | b10958d | 2007-06-03 15:22:32 +0000 | [diff] [blame] | 32 | * - added nowayout module option to override CONFIG_WATCHDOG_NOWAYOUT |
| 33 | * |
| 34 | * Version 0.6 (2002/04/12): Rob Radez <rob@osinvestor.com> |
| 35 | * - make mixcomwd_opened unsigned, |
| 36 | * removed lock_kernel/unlock_kernel from mixcomwd_release, |
| 37 | * modified ioctl a bit to conform to API |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | * |
| 39 | */ |
| 40 | |
Wim Van Sebroeck | b10958d | 2007-06-03 15:22:32 +0000 | [diff] [blame] | 41 | #define VERSION "0.6" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | #include <linux/module.h> |
| 44 | #include <linux/moduleparam.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <linux/types.h> |
| 46 | #include <linux/miscdevice.h> |
| 47 | #include <linux/ioport.h> |
| 48 | #include <linux/watchdog.h> |
| 49 | #include <linux/fs.h> |
| 50 | #include <linux/reboot.h> |
| 51 | #include <linux/init.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 52 | #include <linux/jiffies.h> |
| 53 | #include <linux/timer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #include <asm/uaccess.h> |
| 55 | #include <asm/io.h> |
| 56 | |
Wim Van Sebroeck | 63e6e17 | 2007-06-03 15:39:25 +0000 | [diff] [blame] | 57 | /* |
| 58 | * We have two types of cards that can be probed: |
| 59 | * 1) The Mixcom cards: these cards can be found at addresses |
| 60 | * 0x180, 0x280, 0x380 with an additional offset of 0xc10. |
| 61 | * (Or 0xd90, 0xe90, 0xf90). |
| 62 | * 2) The FlashCOM cards: these cards can be set up at |
| 63 | * 0x300 -> 0x378, in 0x8 jumps with an offset of 0x04. |
| 64 | * (Or 0x304 -> 0x37c in 0x8 jumps). |
| 65 | * Each card has it's own ID. |
| 66 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | #define MIXCOM_ID 0x11 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #define FLASHCOM_ID 0x18 |
Wim Van Sebroeck | 63e6e17 | 2007-06-03 15:39:25 +0000 | [diff] [blame] | 69 | static int mixcomwd_ioports[] = { 0xd90, 0xe90, 0xf90, 0x000 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
Jiri Slaby | 82eb7c5 | 2007-02-08 18:39:36 +0100 | [diff] [blame] | 71 | static void mixcomwd_timerfun(unsigned long d); |
| 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | static unsigned long mixcomwd_opened; /* long req'd for setbit --RR */ |
| 74 | |
| 75 | static int watchdog_port; |
| 76 | static int mixcomwd_timer_alive; |
Jiri Slaby | 82eb7c5 | 2007-02-08 18:39:36 +0100 | [diff] [blame] | 77 | static DEFINE_TIMER(mixcomwd_timer, mixcomwd_timerfun, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | static char expect_close; |
| 79 | |
Andrey Panin | 4bfdf37 | 2005-07-27 11:43:58 -0700 | [diff] [blame] | 80 | static int nowayout = WATCHDOG_NOWAYOUT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | module_param(nowayout, int, 0); |
Wim Van Sebroeck | bffda5c | 2007-01-27 20:54:24 +0100 | [diff] [blame] | 82 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
| 84 | static void mixcomwd_ping(void) |
| 85 | { |
| 86 | outb_p(55,watchdog_port); |
| 87 | return; |
| 88 | } |
| 89 | |
| 90 | static void mixcomwd_timerfun(unsigned long d) |
| 91 | { |
| 92 | mixcomwd_ping(); |
| 93 | |
Jiri Slaby | 82eb7c5 | 2007-02-08 18:39:36 +0100 | [diff] [blame] | 94 | mod_timer(&mixcomwd_timer, jiffies + 5 * HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | /* |
| 98 | * Allow only one person to hold it open |
| 99 | */ |
| 100 | |
| 101 | static int mixcomwd_open(struct inode *inode, struct file *file) |
| 102 | { |
| 103 | if(test_and_set_bit(0,&mixcomwd_opened)) { |
| 104 | return -EBUSY; |
| 105 | } |
| 106 | mixcomwd_ping(); |
| 107 | |
| 108 | if (nowayout) { |
| 109 | /* |
| 110 | * fops_get() code via open() has already done |
| 111 | * a try_module_get() so it is safe to do the |
| 112 | * __module_get(). |
| 113 | */ |
| 114 | __module_get(THIS_MODULE); |
| 115 | } else { |
| 116 | if(mixcomwd_timer_alive) { |
| 117 | del_timer(&mixcomwd_timer); |
| 118 | mixcomwd_timer_alive=0; |
| 119 | } |
| 120 | } |
| 121 | return nonseekable_open(inode, file); |
| 122 | } |
| 123 | |
| 124 | static int mixcomwd_release(struct inode *inode, struct file *file) |
| 125 | { |
| 126 | if (expect_close == 42) { |
| 127 | if(mixcomwd_timer_alive) { |
| 128 | printk(KERN_ERR "mixcomwd: release called while internal timer alive"); |
| 129 | return -EBUSY; |
| 130 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | mixcomwd_timer_alive=1; |
Jiri Slaby | 82eb7c5 | 2007-02-08 18:39:36 +0100 | [diff] [blame] | 132 | mod_timer(&mixcomwd_timer, jiffies + 5 * HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | } else { |
| 134 | printk(KERN_CRIT "mixcomwd: WDT device closed unexpectedly. WDT will not stop!\n"); |
| 135 | } |
| 136 | |
| 137 | clear_bit(0,&mixcomwd_opened); |
| 138 | expect_close=0; |
| 139 | return 0; |
| 140 | } |
| 141 | |
| 142 | |
| 143 | static ssize_t mixcomwd_write(struct file *file, const char __user *data, size_t len, loff_t *ppos) |
| 144 | { |
| 145 | if(len) |
| 146 | { |
| 147 | if (!nowayout) { |
| 148 | size_t i; |
| 149 | |
| 150 | /* In case it was set long ago */ |
| 151 | expect_close = 0; |
| 152 | |
| 153 | for (i = 0; i != len; i++) { |
| 154 | char c; |
| 155 | if (get_user(c, data + i)) |
| 156 | return -EFAULT; |
| 157 | if (c == 'V') |
| 158 | expect_close = 42; |
| 159 | } |
| 160 | } |
| 161 | mixcomwd_ping(); |
| 162 | } |
| 163 | return len; |
| 164 | } |
| 165 | |
| 166 | static int mixcomwd_ioctl(struct inode *inode, struct file *file, |
| 167 | unsigned int cmd, unsigned long arg) |
| 168 | { |
| 169 | void __user *argp = (void __user *)arg; |
| 170 | int __user *p = argp; |
| 171 | int status; |
| 172 | static struct watchdog_info ident = { |
| 173 | .options = WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE, |
| 174 | .firmware_version = 1, |
| 175 | .identity = "MixCOM watchdog", |
| 176 | }; |
| 177 | |
| 178 | switch(cmd) |
| 179 | { |
| 180 | case WDIOC_GETSTATUS: |
| 181 | status=mixcomwd_opened; |
| 182 | if (!nowayout) { |
| 183 | status|=mixcomwd_timer_alive; |
| 184 | } |
| 185 | if (copy_to_user(p, &status, sizeof(int))) { |
| 186 | return -EFAULT; |
| 187 | } |
| 188 | break; |
| 189 | case WDIOC_GETSUPPORT: |
| 190 | if (copy_to_user(argp, &ident, sizeof(ident))) { |
| 191 | return -EFAULT; |
| 192 | } |
| 193 | break; |
| 194 | case WDIOC_KEEPALIVE: |
| 195 | mixcomwd_ping(); |
| 196 | break; |
| 197 | default: |
Samuel Tardieu | 795b89d | 2006-09-09 17:34:31 +0200 | [diff] [blame] | 198 | return -ENOTTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | } |
| 200 | return 0; |
| 201 | } |
| 202 | |
Arjan van de Ven | 62322d2 | 2006-07-03 00:24:21 -0700 | [diff] [blame] | 203 | static const struct file_operations mixcomwd_fops= |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | { |
| 205 | .owner = THIS_MODULE, |
| 206 | .llseek = no_llseek, |
| 207 | .write = mixcomwd_write, |
| 208 | .ioctl = mixcomwd_ioctl, |
| 209 | .open = mixcomwd_open, |
| 210 | .release = mixcomwd_release, |
| 211 | }; |
| 212 | |
| 213 | static struct miscdevice mixcomwd_miscdev= |
| 214 | { |
| 215 | .minor = WATCHDOG_MINOR, |
| 216 | .name = "watchdog", |
| 217 | .fops = &mixcomwd_fops, |
| 218 | }; |
| 219 | |
Wim Van Sebroeck | 4194db1 | 2007-06-03 19:01:38 +0000 | [diff] [blame^] | 220 | static int __init checkcard(int port, int card_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | { |
| 222 | int id; |
| 223 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | if (!request_region(port, 1, "MixCOM watchdog")) { |
| 225 | return 0; |
| 226 | } |
| 227 | |
| 228 | id=inb_p(port); |
Wim Van Sebroeck | 4194db1 | 2007-06-03 19:01:38 +0000 | [diff] [blame^] | 229 | if (card_id==MIXCOM_ID) |
| 230 | id &= 0x3f; |
| 231 | |
| 232 | if (id!=card_id) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | release_region(port, 1); |
| 234 | return 0; |
| 235 | } |
Wim Van Sebroeck | 4194db1 | 2007-06-03 19:01:38 +0000 | [diff] [blame^] | 236 | return 1; |
| 237 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
| 239 | static int __init mixcomwd_init(void) |
| 240 | { |
| 241 | int i; |
| 242 | int ret; |
| 243 | int found=0; |
| 244 | |
| 245 | for (i = 0; !found && mixcomwd_ioports[i] != 0; i++) { |
Wim Van Sebroeck | 4194db1 | 2007-06-03 19:01:38 +0000 | [diff] [blame^] | 246 | if (checkcard(mixcomwd_ioports[i], MIXCOM_ID)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | found = 1; |
Wim Van Sebroeck | 4194db1 | 2007-06-03 19:01:38 +0000 | [diff] [blame^] | 248 | watchdog_port = mixcomwd_ioports[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | } |
| 250 | } |
| 251 | |
Wim Van Sebroeck | 63e6e17 | 2007-06-03 15:39:25 +0000 | [diff] [blame] | 252 | /* The FlashCOM card can be set up at 0x304 -> 0x37c, in 0x8 jumps */ |
| 253 | for (i = 0x304; !found && i < 0x380; i+=0x8) { |
Wim Van Sebroeck | 4194db1 | 2007-06-03 19:01:38 +0000 | [diff] [blame^] | 254 | if (checkcard(i, FLASHCOM_ID)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | found = 1; |
Wim Van Sebroeck | 4194db1 | 2007-06-03 19:01:38 +0000 | [diff] [blame^] | 256 | watchdog_port = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | } |
| 258 | } |
| 259 | |
| 260 | if (!found) { |
| 261 | printk("mixcomwd: No card detected, or port not available.\n"); |
| 262 | return -ENODEV; |
| 263 | } |
| 264 | |
| 265 | ret = misc_register(&mixcomwd_miscdev); |
| 266 | if (ret) |
| 267 | { |
| 268 | release_region(watchdog_port, 1); |
| 269 | return ret; |
| 270 | } |
| 271 | |
| 272 | printk(KERN_INFO "MixCOM watchdog driver v%s, watchdog port at 0x%3x\n",VERSION,watchdog_port); |
| 273 | |
| 274 | return 0; |
| 275 | } |
| 276 | |
| 277 | static void __exit mixcomwd_exit(void) |
| 278 | { |
| 279 | if (!nowayout) { |
| 280 | if(mixcomwd_timer_alive) { |
| 281 | printk(KERN_WARNING "mixcomwd: I quit now, hardware will" |
| 282 | " probably reboot!\n"); |
Jiri Slaby | 82eb7c5 | 2007-02-08 18:39:36 +0100 | [diff] [blame] | 283 | del_timer_sync(&mixcomwd_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | mixcomwd_timer_alive=0; |
| 285 | } |
| 286 | } |
| 287 | release_region(watchdog_port,1); |
| 288 | misc_deregister(&mixcomwd_miscdev); |
| 289 | } |
| 290 | |
| 291 | module_init(mixcomwd_init); |
| 292 | module_exit(mixcomwd_exit); |
| 293 | |
| 294 | MODULE_AUTHOR("Gergely Madarasz <gorgo@itc.hu>"); |
| 295 | MODULE_DESCRIPTION("MixCom Watchdog driver"); |
| 296 | MODULE_LICENSE("GPL"); |
| 297 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); |