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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1997, 1998, 2001 by Ralf Baechle
  7.  */
  8. #include <linux/kernel.h>
  9. #include <linux/sched.h>
  10. #include <linux/notifier.h>
  11. #include <linux/timer.h>
  12. #include <asm/io.h>
  13. #include <asm/irq.h>
  14. #include <asm/system.h>
  15. #include <asm/reboot.h>
  16. #include <asm/sgialib.h>
  17. #include <asm/sgi/sgihpc.h>
  18. #include <asm/sgi/sgint23.h>
  19. /*
  20.  * Just powerdown if init hasn't done after POWERDOWN_TIMEOUT seconds.
  21.  * I'm not shure if this feature is a good idea, for now it's here just to
  22.  * make the power button make behave just like under IRIX.
  23.  */
  24. #define POWERDOWN_TIMEOUT 120
  25. /*
  26.  * Blink frequency during reboot grace period and when paniced.
  27.  */
  28. #define POWERDOWN_FREQ (HZ / 4)
  29. #define PANIC_FREQ (HZ / 8)
  30. static unsigned char sgi_volume;
  31. static struct timer_list power_timer, blink_timer, debounce_timer, volume_timer;
  32. static int shuting_down, has_paniced;
  33. static void sgi_machine_restart(char *command) __attribute__((noreturn));
  34. static void sgi_machine_halt(void) __attribute__((noreturn));
  35. static void sgi_machine_power_off(void) __attribute__((noreturn));
  36. /* XXX How to pass the reboot command to the firmware??? */
  37. static void sgi_machine_restart(char *command)
  38. {
  39. if (shuting_down)
  40. sgi_machine_power_off();
  41. prom_reboot();
  42. }
  43. static void sgi_machine_halt(void)
  44. {
  45. if (shuting_down)
  46. sgi_machine_power_off();
  47. ArcEnterInteractiveMode();
  48. }
  49. static void sgi_machine_power_off(void)
  50. {
  51. struct indy_clock *clock = (struct indy_clock *)INDY_CLOCK_REGS;
  52. cli();
  53. clock->cmd |= 0x08; /* Disable watchdog */
  54. clock->whsec = 0;
  55. clock->wsec = 0;
  56. while(1) {
  57. hpc3mregs->panel=0xfe;
  58. /* Good bye cruel world ...  */
  59. /* If we're still running, we probably got sent an alarm
  60.    interrupt.  Read the flag to clear it.  */
  61. clock->halarm;
  62. }
  63. }
  64. static void power_timeout(unsigned long data)
  65. {
  66. sgi_machine_power_off();
  67. }
  68. static void blink_timeout(unsigned long data)
  69. {
  70. /* XXX fix this for fullhouse  */
  71. sgi_hpc_write1 ^= (HPC3_WRITE1_LC0OFF|HPC3_WRITE1_LC1OFF);
  72. hpc3mregs->write1 = sgi_hpc_write1;
  73. mod_timer(&blink_timer, jiffies+data);
  74. }
  75. static void debounce(unsigned long data)
  76. {
  77. del_timer(&debounce_timer);
  78. if (ioc_icontrol->istat1 & 2) { /* Interrupt still being sent.  */
  79. debounce_timer.expires = jiffies + 5; /* 0.05s  */
  80. add_timer(&debounce_timer);
  81. hpc3mregs->panel = 0xf3;
  82. return;
  83. }
  84. if (has_paniced)
  85. prom_reboot();
  86. enable_irq(SGI_PANEL_IRQ);
  87. }
  88. static inline void power_button(void)
  89. {
  90. if (has_paniced)
  91. return;
  92. if (shuting_down || kill_proc(1, SIGINT, 1)) {
  93. /* No init process or button pressed twice.  */
  94. sgi_machine_power_off();
  95. }
  96. shuting_down = 1;
  97. blink_timer.data = POWERDOWN_FREQ;
  98. blink_timeout(POWERDOWN_FREQ);
  99. init_timer(&power_timer);
  100. power_timer.function = power_timeout;
  101. power_timer.expires = jiffies + POWERDOWN_TIMEOUT * HZ;
  102. add_timer(&power_timer);
  103. }
  104. void inline sgi_volume_set(unsigned char volume)
  105. {
  106. sgi_volume = volume;
  107. hpc3c0->pbus_extregs[2][0] = sgi_volume;
  108. hpc3c0->pbus_extregs[2][1] = sgi_volume;
  109. }
  110. void inline sgi_volume_get(unsigned char *volume)
  111. {
  112. *volume = sgi_volume;
  113. }
  114. static inline void volume_up_button(unsigned long data)
  115. {
  116. del_timer(&volume_timer);
  117. if (sgi_volume < 0xff)
  118. sgi_volume++;
  119. hpc3c0->pbus_extregs[2][0] = sgi_volume;
  120. hpc3c0->pbus_extregs[2][1] = sgi_volume;
  121. if (ioc_icontrol->istat1 & 2) {
  122. volume_timer.expires = jiffies + 1;
  123. add_timer(&volume_timer);
  124. }
  125. }
  126. static inline void volume_down_button(unsigned long data)
  127. {
  128. del_timer(&volume_timer);
  129. if (sgi_volume > 0)
  130. sgi_volume--;
  131. hpc3c0->pbus_extregs[2][0] = sgi_volume;
  132. hpc3c0->pbus_extregs[2][1] = sgi_volume;
  133. if (ioc_icontrol->istat1 & 2) {
  134. volume_timer.expires = jiffies + 1;
  135. add_timer(&volume_timer);
  136. }
  137. }
  138. static void panel_int(int irq, void *dev_id, struct pt_regs *regs)
  139. {
  140. unsigned int buttons;
  141. buttons = hpc3mregs->panel;
  142. hpc3mregs->panel = 3; /* power_interrupt | power_supply_on */
  143. if (ioc_icontrol->istat1 & 2) { /* Wait until interrupt goes away */
  144. disable_irq(SGI_PANEL_IRQ);
  145. init_timer(&debounce_timer);
  146. debounce_timer.function = debounce;
  147. debounce_timer.expires = jiffies + 5;
  148. add_timer(&debounce_timer);
  149. }
  150. if (!(buttons & 2)) /* Power button was pressed */
  151. power_button();
  152. if (!(buttons & 0x40)) { /* Volume up button was pressed */
  153. init_timer(&volume_timer);
  154. volume_timer.function = volume_up_button;
  155. volume_timer.expires = jiffies + 1;
  156. add_timer(&volume_timer);
  157. }
  158. if (!(buttons & 0x10)) { /* Volume down button was pressed */
  159. init_timer(&volume_timer);
  160. volume_timer.function = volume_down_button;
  161. volume_timer.expires = jiffies + 1;
  162. add_timer(&volume_timer);
  163. }
  164. }
  165. static int panic_event(struct notifier_block *this, unsigned long event,
  166.                       void *ptr)
  167. {
  168. if (has_paniced)
  169. return NOTIFY_DONE;
  170. has_paniced = 1;
  171. blink_timer.data = PANIC_FREQ;
  172. blink_timeout(PANIC_FREQ);
  173. return NOTIFY_DONE;
  174. }
  175. static struct notifier_block panic_block = {
  176. panic_event,
  177. NULL,
  178. 0
  179. };
  180. void indy_reboot_setup(void)
  181. {
  182. static int setup_done;
  183. if (setup_done)
  184. return;
  185. setup_done = 1;
  186. _machine_restart = sgi_machine_restart;
  187. _machine_halt = sgi_machine_halt;
  188. _machine_power_off = sgi_machine_power_off;
  189. request_irq(SGI_PANEL_IRQ, panel_int, 0, "Front Panel", NULL);
  190. init_timer(&blink_timer);
  191. blink_timer.function = blink_timeout;
  192. notifier_chain_register(&panic_notifier_list, &panic_block);
  193. }