ip27-reset.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

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.  * Reset an IP27.
  7.  *
  8.  * Copyright (C) 1997, 1998, 1999, 2000 by Ralf Baechle
  9.  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  10.  */
  11. #include <linux/config.h>
  12. #include <linux/kernel.h>
  13. #include <linux/sched.h>
  14. #include <linux/timer.h>
  15. #include <linux/smp.h>
  16. #include <linux/mmzone.h>
  17. #include <asm/io.h>
  18. #include <asm/irq.h>
  19. #include <asm/reboot.h>
  20. #include <asm/system.h>
  21. #include <asm/sgialib.h>
  22. #include <asm/sn/addrs.h>
  23. #include <asm/sn/arch.h>
  24. #include <asm/sn/gda.h>
  25. #include <asm/sn/sn0/hub.h>
  26. void machine_restart(char *command) __attribute__((noreturn));
  27. void machine_halt(void) __attribute__((noreturn));
  28. void machine_power_off(void) __attribute__((noreturn));
  29. #define noreturn while(1); /* Silence gcc.  */
  30. /* XXX How to pass the reboot command to the firmware??? */
  31. static void ip27_machine_restart(char *command)
  32. {
  33. #if 0
  34. int i;
  35. #endif
  36. printk("Reboot started from CPU %dn", smp_processor_id());
  37. #ifdef CONFIG_SMP
  38. smp_send_stop();
  39. #endif
  40. #if 0
  41. for (i = 0; i < numnodes; i++)
  42. REMOTE_HUB_S(COMPACT_TO_NASID_NODEID(i), PROMOP_REG,
  43. PROMOP_REBOOT);
  44. #else
  45. LOCAL_HUB_S(NI_PORT_RESET, NPR_PORTRESET | NPR_LOCALRESET);
  46. #endif
  47. noreturn;
  48. }
  49. static void ip27_machine_halt(void)
  50. {
  51. int i;
  52. #ifdef CONFIG_SMP
  53. smp_send_stop();
  54. #endif
  55. for (i = 0; i < numnodes; i++)
  56. REMOTE_HUB_S(COMPACT_TO_NASID_NODEID(i), PROMOP_REG,
  57. PROMOP_RESTART);
  58. LOCAL_HUB_S(NI_PORT_RESET, NPR_PORTRESET | NPR_LOCALRESET);
  59. noreturn;
  60. }
  61. static void ip27_machine_power_off(void)
  62. {
  63. /* To do ...  */
  64. noreturn;
  65. }
  66. void ip27_reboot_setup(void)
  67. {
  68. _machine_restart = ip27_machine_restart;
  69. _machine_halt = ip27_machine_halt;
  70. _machine_power_off = ip27_machine_power_off;
  71. }