mixcomwd.c 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  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>
  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
  38. *
  39. */
  40. #define VERSION "0.6"
  41. #include <linux/module.h>
  42. #include <linux/moduleparam.h>
  43. #include <linux/types.h>
  44. #include <linux/miscdevice.h>
  45. #include <linux/ioport.h>
  46. #include <linux/watchdog.h>
  47. #include <linux/fs.h>
  48. #include <linux/reboot.h>
  49. #include <linux/init.h>
  50. #include <linux/jiffies.h>
  51. #include <linux/timer.h>
  52. #include <asm/uaccess.h>
  53. #include <asm/io.h>
  54. static int mixcomwd_ioports[] = { 0x180, 0x280, 0x380, 0x000 };
  55. #define MIXCOM_WATCHDOG_OFFSET 0xc10
  56. #define MIXCOM_ID 0x11
  57. #define FLASHCOM_WATCHDOG_OFFSET 0x4
  58. #define FLASHCOM_ID 0x18
  59. static void mixcomwd_timerfun(unsigned long d);
  60. static unsigned long mixcomwd_opened; /* long req'd for setbit --RR */
  61. static int watchdog_port;
  62. static int mixcomwd_timer_alive;
  63. static DEFINE_TIMER(mixcomwd_timer, mixcomwd_timerfun, 0, 0);
  64. static char expect_close;
  65. static int nowayout = WATCHDOG_NOWAYOUT;
  66. module_param(nowayout, int, 0);
  67. MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
  68. static void mixcomwd_ping(void)
  69. {
  70. outb_p(55,watchdog_port);
  71. return;
  72. }
  73. static void mixcomwd_timerfun(unsigned long d)
  74. {
  75. mixcomwd_ping();
  76. mod_timer(&mixcomwd_timer, jiffies + 5 * HZ);
  77. }
  78. /*
  79. * Allow only one person to hold it open
  80. */
  81. static int mixcomwd_open(struct inode *inode, struct file *file)
  82. {
  83. if(test_and_set_bit(0,&mixcomwd_opened)) {
  84. return -EBUSY;
  85. }
  86. mixcomwd_ping();
  87. if (nowayout) {
  88. /*
  89. * fops_get() code via open() has already done
  90. * a try_module_get() so it is safe to do the
  91. * __module_get().
  92. */
  93. __module_get(THIS_MODULE);
  94. } else {
  95. if(mixcomwd_timer_alive) {
  96. del_timer(&mixcomwd_timer);
  97. mixcomwd_timer_alive=0;
  98. }
  99. }
  100. return nonseekable_open(inode, file);
  101. }
  102. static int mixcomwd_release(struct inode *inode, struct file *file)
  103. {
  104. if (expect_close == 42) {
  105. if(mixcomwd_timer_alive) {
  106. printk(KERN_ERR "mixcomwd: release called while internal timer alive");
  107. return -EBUSY;
  108. }
  109. mixcomwd_timer_alive=1;
  110. mod_timer(&mixcomwd_timer, jiffies + 5 * HZ);
  111. } else {
  112. printk(KERN_CRIT "mixcomwd: WDT device closed unexpectedly. WDT will not stop!\n");
  113. }
  114. clear_bit(0,&mixcomwd_opened);
  115. expect_close=0;
  116. return 0;
  117. }
  118. static ssize_t mixcomwd_write(struct file *file, const char __user *data, size_t len, loff_t *ppos)
  119. {
  120. if(len)
  121. {
  122. if (!nowayout) {
  123. size_t i;
  124. /* In case it was set long ago */
  125. expect_close = 0;
  126. for (i = 0; i != len; i++) {
  127. char c;
  128. if (get_user(c, data + i))
  129. return -EFAULT;
  130. if (c == 'V')
  131. expect_close = 42;
  132. }
  133. }
  134. mixcomwd_ping();
  135. }
  136. return len;
  137. }
  138. static int mixcomwd_ioctl(struct inode *inode, struct file *file,
  139. unsigned int cmd, unsigned long arg)
  140. {
  141. void __user *argp = (void __user *)arg;
  142. int __user *p = argp;
  143. int status;
  144. static struct watchdog_info ident = {
  145. .options = WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
  146. .firmware_version = 1,
  147. .identity = "MixCOM watchdog",
  148. };
  149. switch(cmd)
  150. {
  151. case WDIOC_GETSTATUS:
  152. status=mixcomwd_opened;
  153. if (!nowayout) {
  154. status|=mixcomwd_timer_alive;
  155. }
  156. if (copy_to_user(p, &status, sizeof(int))) {
  157. return -EFAULT;
  158. }
  159. break;
  160. case WDIOC_GETSUPPORT:
  161. if (copy_to_user(argp, &ident, sizeof(ident))) {
  162. return -EFAULT;
  163. }
  164. break;
  165. case WDIOC_KEEPALIVE:
  166. mixcomwd_ping();
  167. break;
  168. default:
  169. return -ENOTTY;
  170. }
  171. return 0;
  172. }
  173. static const struct file_operations mixcomwd_fops=
  174. {
  175. .owner = THIS_MODULE,
  176. .llseek = no_llseek,
  177. .write = mixcomwd_write,
  178. .ioctl = mixcomwd_ioctl,
  179. .open = mixcomwd_open,
  180. .release = mixcomwd_release,
  181. };
  182. static struct miscdevice mixcomwd_miscdev=
  183. {
  184. .minor = WATCHDOG_MINOR,
  185. .name = "watchdog",
  186. .fops = &mixcomwd_fops,
  187. };
  188. static int __init mixcomwd_checkcard(int port)
  189. {
  190. int id;
  191. port += MIXCOM_WATCHDOG_OFFSET;
  192. if (!request_region(port, 1, "MixCOM watchdog")) {
  193. return 0;
  194. }
  195. id=inb_p(port) & 0x3f;
  196. if(id!=MIXCOM_ID) {
  197. release_region(port, 1);
  198. return 0;
  199. }
  200. return port;
  201. }
  202. static int __init flashcom_checkcard(int port)
  203. {
  204. int id;
  205. port += FLASHCOM_WATCHDOG_OFFSET;
  206. if (!request_region(port, 1, "MixCOM watchdog")) {
  207. return 0;
  208. }
  209. id=inb_p(port);
  210. if(id!=FLASHCOM_ID) {
  211. release_region(port, 1);
  212. return 0;
  213. }
  214. return port;
  215. }
  216. static int __init mixcomwd_init(void)
  217. {
  218. int i;
  219. int ret;
  220. int found=0;
  221. for (i = 0; !found && mixcomwd_ioports[i] != 0; i++) {
  222. watchdog_port = mixcomwd_checkcard(mixcomwd_ioports[i]);
  223. if (watchdog_port) {
  224. found = 1;
  225. }
  226. }
  227. /* The FlashCOM card can be set up at 0x300 -> 0x378, in 0x8 jumps */
  228. for (i = 0x300; !found && i < 0x380; i+=0x8) {
  229. watchdog_port = flashcom_checkcard(i);
  230. if (watchdog_port) {
  231. found = 1;
  232. }
  233. }
  234. if (!found) {
  235. printk("mixcomwd: No card detected, or port not available.\n");
  236. return -ENODEV;
  237. }
  238. ret = misc_register(&mixcomwd_miscdev);
  239. if (ret)
  240. {
  241. release_region(watchdog_port, 1);
  242. return ret;
  243. }
  244. printk(KERN_INFO "MixCOM watchdog driver v%s, watchdog port at 0x%3x\n",VERSION,watchdog_port);
  245. return 0;
  246. }
  247. static void __exit mixcomwd_exit(void)
  248. {
  249. if (!nowayout) {
  250. if(mixcomwd_timer_alive) {
  251. printk(KERN_WARNING "mixcomwd: I quit now, hardware will"
  252. " probably reboot!\n");
  253. del_timer_sync(&mixcomwd_timer);
  254. mixcomwd_timer_alive=0;
  255. }
  256. }
  257. release_region(watchdog_port,1);
  258. misc_deregister(&mixcomwd_miscdev);
  259. }
  260. module_init(mixcomwd_init);
  261. module_exit(mixcomwd_exit);
  262. MODULE_AUTHOR("Gergely Madarasz <gorgo@itc.hu>");
  263. MODULE_DESCRIPTION("MixCom Watchdog driver");
  264. MODULE_LICENSE("GPL");
  265. MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);