wdt977.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Wdt977 0.01: A Watchdog Device for Netwinder W83977AF chip
  3.  *
  4.  * (c) Copyright 1998 Rebel.com (Woody Suwalski <woody@netwinder.org>)
  5.  *
  6.  * -----------------------
  7.  *
  8.  * This program is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU General Public License
  10.  * as published by the Free Software Foundation; either version
  11.  * 2 of the License, or (at your option) any later version.
  12.  *
  13.  * -----------------------
  14.  */
  15.  
  16. #include <linux/module.h>
  17. #include <linux/config.h>
  18. #include <linux/types.h>
  19. #include <linux/kernel.h>
  20. #include <linux/fs.h>
  21. #include <linux/miscdevice.h>
  22. #include <linux/init.h>
  23. #include <linux/smp_lock.h>
  24. #include <asm/io.h>
  25. #include <asm/system.h>
  26. #include <asm/mach-types.h>
  27. #define WATCHDOG_MINOR 130
  28. static int timeout = 3;
  29. static int timer_alive;
  30. static int testmode;
  31. /*
  32.  * Allow only one person to hold it open
  33.  */
  34.  
  35. static int wdt977_open(struct inode *inode, struct file *file)
  36. {
  37. if(timer_alive)
  38. return -EBUSY;
  39. #ifdef CONFIG_WATCHDOG_NOWAYOUT
  40. MOD_INC_USE_COUNT;
  41. #endif
  42. timer_alive++;
  43. //max timeout value = 255 minutes (0xFF). Write 0 to disable WatchDog.
  44. if (timeout>255)
  45.     timeout = 255;
  46. printk(KERN_INFO "Watchdog: active, current timeout %d min.n",timeout);
  47. // unlock the SuperIO chip
  48. outb(0x87,0x370); 
  49. outb(0x87,0x370); 
  50. //select device Aux2 (device=8) and set watchdog regs F2, F3 and F4
  51. //F2 has the timeout in minutes
  52. //F3 could be set to the POWER LED blink (with GP17 set to PowerLed)
  53. //   at timeout, and to reset timer on kbd/mouse activity (not now)
  54. //F4 is used to just clear the TIMEOUT'ed state (bit 0)
  55. outb(0x07,0x370);
  56. outb(0x08,0x371);
  57. outb(0xF2,0x370);
  58. outb(timeout,0x371);
  59. outb(0xF3,0x370);
  60. outb(0x00,0x371); //another setting is 0E for kbd/mouse/LED
  61. outb(0xF4,0x370);
  62. outb(0x00,0x371);
  63. //at last select device Aux1 (dev=7) and set GP16 as a watchdog output
  64. if (!testmode)
  65. {
  66. outb(0x07,0x370);
  67. outb(0x07,0x371);
  68. outb(0xE6,0x370);
  69. outb(0x08,0x371);
  70. }
  71. // lock the SuperIO chip
  72. outb(0xAA,0x370); 
  73. return 0;
  74. }
  75. static int wdt977_release(struct inode *inode, struct file *file)
  76. {
  77. /*
  78.  * Shut off the timer.
  79.  *  Lock it in if it's a module and we defined ...NOWAYOUT
  80.  */
  81. #ifndef CONFIG_WATCHDOG_NOWAYOUT
  82. lock_kernel();
  83. // unlock the SuperIO chip
  84. outb(0x87,0x370); 
  85. outb(0x87,0x370); 
  86. //select device Aux2 (device=8) and set watchdog regs F2,F3 and F4
  87. //F3 is reset to its default state
  88. //F4 can clear the TIMEOUT'ed state (bit 0) - back to default
  89. //We can not use GP17 as a PowerLed, as we use its usage as a RedLed
  90. outb(0x07,0x370);
  91. outb(0x08,0x371);
  92. outb(0xF2,0x370);
  93. outb(0xFF,0x371);
  94. outb(0xF3,0x370);
  95. outb(0x00,0x371);
  96. outb(0xF4,0x370);
  97. outb(0x00,0x371);
  98. outb(0xF2,0x370);
  99. outb(0x00,0x371);
  100. //at last select device Aux1 (dev=7) and set GP16 as a watchdog output
  101. outb(0x07,0x370);
  102. outb(0x07,0x371);
  103. outb(0xE6,0x370);
  104. outb(0x08,0x371);
  105. // lock the SuperIO chip
  106. outb(0xAA,0x370);
  107. timer_alive=0;
  108. unlock_kernel();
  109. printk(KERN_INFO "Watchdog: shutdown.n");
  110. #endif
  111. return 0;
  112. }
  113. static ssize_t wdt977_write(struct file *file, const char *data, size_t len, loff_t *ppos)
  114. {
  115. //max timeout value = 255 minutes (0xFF). Write 0 to disable WatchDog.
  116. if (timeout>255)
  117.     timeout = 255;
  118. /*
  119.  * Refresh the timer.
  120.  */
  121. //we have a hw bug somewhere, so each 977 minute is actually only 30sec
  122. //as such limit the max timeout to half of max of 255 minutes...
  123. // if (timeout>126)
  124. //     timeout = 126;
  125. // unlock the SuperIO chip
  126. outb(0x87,0x370); 
  127. outb(0x87,0x370); 
  128. //select device Aux2 (device=8) and kicks watchdog reg F2
  129. //F2 has the timeout in minutes
  130. outb(0x07,0x370);
  131. outb(0x08,0x371);
  132. outb(0xF2,0x370);
  133. outb(timeout,0x371);
  134. // lock the SuperIO chip
  135. outb(0xAA,0x370); 
  136. return 1;
  137. }
  138. static struct file_operations wdt977_fops=
  139. {
  140. owner: THIS_MODULE,
  141. write: wdt977_write,
  142. open: wdt977_open,
  143. release: wdt977_release,
  144. };
  145. static struct miscdevice wdt977_miscdev=
  146. {
  147. WATCHDOG_MINOR,
  148. "watchdog",
  149. &wdt977_fops
  150. };
  151. static int __init nwwatchdog_init(void)
  152. {
  153. if (!machine_is_netwinder())
  154. return -ENODEV;
  155. misc_register(&wdt977_miscdev);
  156. printk(KERN_INFO "NetWinder Watchdog sleeping.n");
  157. return 0;
  158. }
  159. static void __exit nwwatchdog_exit(void)
  160. {
  161. misc_deregister(&wdt977_miscdev);
  162. }
  163. EXPORT_NO_SYMBOLS;
  164. module_init(nwwatchdog_init);
  165. module_exit(nwwatchdog_exit);
  166. MODULE_LICENSE("GPL");