shutdown.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*
  2. * Copyright (c) 2017 Richard Braun.
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include <stdio.h>
  18. #include <kern/init.h>
  19. #include <kern/plist.h>
  20. #include <kern/shell.h>
  21. #include <kern/shutdown.h>
  22. #include <machine/boot.h>
  23. #include <machine/cpu.h>
  24. static struct plist shutdown_ops_list;
  25. #ifdef CONFIG_SHELL
  26. static void
  27. shutdown_shell_halt(struct shell *shell, int argc, char **argv)
  28. {
  29. (void)shell;
  30. (void)argc;
  31. (void)argv;
  32. shutdown_halt();
  33. }
  34. static void
  35. shutdown_shell_reboot(struct shell *shell, int argc, char **argv)
  36. {
  37. (void)shell;
  38. (void)argc;
  39. (void)argv;
  40. shutdown_reboot();
  41. }
  42. static struct shell_cmd shutdown_shell_cmds[] = {
  43. SHELL_CMD_INITIALIZER("shutdown_halt", shutdown_shell_halt,
  44. "shutdown_halt",
  45. "halt the system"),
  46. SHELL_CMD_INITIALIZER("shutdown_reboot", shutdown_shell_reboot,
  47. "shutdown_reboot",
  48. "reboot the system"),
  49. };
  50. static int __init
  51. shutdown_setup_shell(void)
  52. {
  53. SHELL_REGISTER_CMDS(shutdown_shell_cmds, shell_get_main_cmd_set());
  54. return 0;
  55. }
  56. INIT_OP_DEFINE(shutdown_setup_shell,
  57. INIT_OP_DEP(shell_setup, true),
  58. INIT_OP_DEP(shutdown_setup, true));
  59. #endif /* CONFIG_SHELL */
  60. static int __init
  61. shutdown_bootstrap(void)
  62. {
  63. plist_init(&shutdown_ops_list);
  64. return 0;
  65. }
  66. INIT_OP_DEFINE(shutdown_bootstrap);
  67. static int __init
  68. shutdown_setup(void)
  69. {
  70. return 0;
  71. }
  72. INIT_OP_DEFINE(shutdown_setup,
  73. INIT_OP_DEP(boot_setup_shutdown, true),
  74. INIT_OP_DEP(cpu_setup, true),
  75. INIT_OP_DEP(printf_setup, true),
  76. INIT_OP_DEP(shutdown_bootstrap, true));
  77. void __init
  78. shutdown_register(struct shutdown_ops *ops, unsigned int priority)
  79. {
  80. plist_node_init(&ops->node, priority);
  81. plist_add(&shutdown_ops_list, &ops->node);
  82. }
  83. static void
  84. shutdown_halt_other_cpus(void)
  85. {
  86. cpu_intr_disable();
  87. cpu_halt_broadcast();
  88. }
  89. void
  90. shutdown_halt(void)
  91. {
  92. shutdown_halt_other_cpus();
  93. printf("shutdown: system halted\n");
  94. cpu_halt();
  95. }
  96. void
  97. shutdown_reboot(void)
  98. {
  99. struct shutdown_ops *ops;
  100. if (plist_empty(&shutdown_ops_list)) {
  101. printf("shutdown: no reset operation available, halting\n");
  102. shutdown_halt();
  103. }
  104. shutdown_halt_other_cpus();
  105. printf("shutdown: rebooting...\n");
  106. plist_for_each_entry_reverse(&shutdown_ops_list, ops, node) {
  107. ops->reset();
  108. }
  109. cpu_halt();
  110. }