sys_power_off.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file system power off
  8. */
  9. #include <os_common_api.h>
  10. #include <app_manager.h>
  11. #include <msg_manager.h>
  12. #include <power_manager.h>
  13. #include <property_manager.h>
  14. #include <esd_manager.h>
  15. #include <tts_manager.h>
  16. #include <string.h>
  17. #include <sys_event.h>
  18. #include <sys_manager.h>
  19. #include <sys_monitor.h>
  20. #include <audio_hal.h>
  21. #ifdef CONFIG_INPUT_MANAGER
  22. #include <input_manager.h>
  23. #endif
  24. #ifdef CONFIG_TTS_MANAGER
  25. #include <tts_manager.h>
  26. #endif
  27. #ifdef CONFIG_BLUETOOTH
  28. #include <bt_manager.h>
  29. #endif
  30. #if defined(CONFIG_SYS_LOG)
  31. #define SYS_LOG_NO_NEWLINE
  32. #ifdef SYS_LOG_DOMAIN
  33. #undef SYS_LOG_DOMAIN
  34. #endif
  35. #define SYS_LOG_DOMAIN "sys_monitor"
  36. #endif
  37. #ifndef CONFIG_SIMULATOR
  38. #include <soc.h>
  39. #endif
  40. void system_power_off(void)
  41. {
  42. #ifdef CONFIG_INPUT_MANAGER
  43. input_manager_lock();
  44. #endif
  45. app_manager_active_app(APP_ID_ILLEGAL);
  46. #ifdef CONFIG_BT_MANAGER
  47. bt_manager_deinit();
  48. #endif
  49. #ifndef CONFIG_SIMULATOR
  50. power_manager_save_last_voltage(0);
  51. #endif
  52. sys_monitor_stop();
  53. #ifdef CONFIG_PROPERTY
  54. property_flush(NULL);
  55. #endif
  56. system_deinit();
  57. #ifdef CONFIG_AUDIO
  58. hal_aout_close_pa();
  59. #endif
  60. #ifndef CONFIG_SIMULATOR
  61. if (!power_manager_get_dc5v_status()) {
  62. #ifdef BOARD_POWER_LOCK_GPIO
  63. board_power_lock_enable(false);
  64. #endif
  65. SYS_LOG_DBG("poweroff");
  66. power_manager_set_before_poweroff();
  67. sys_pm_poweroff();
  68. } else {
  69. SYS_LOG_DBG("reboot");
  70. sys_pm_reboot(REBOOT_TYPE_GOTO_SYSTEM | REBOOT_REASON_NORMAL);
  71. }
  72. #endif
  73. }
  74. void system_power_reboot(int reason)
  75. {
  76. #if 0
  77. #ifndef CONFIG_SIMULATOR
  78. u32_t bat_vol_saved = power_manager_get_battery_vol()/1000;
  79. soc_pstore_set(SOC_PSTORE_TAG_CAPACITY, bat_vol_saved);
  80. soc_pstore_set(SOC_PSTORE_TAG_FLAG_CAP, 1);
  81. SYS_LOG_INF("bat_vol_saved: %d\n", bat_vol_saved);
  82. #endif
  83. #endif
  84. #ifdef CONFIG_INPUT_MANAGER
  85. input_manager_lock();
  86. #endif
  87. #ifdef CONFIG_TTS_MANAGER
  88. tts_manager_lock();
  89. #endif
  90. app_manager_active_app(APP_ID_ILLEGAL);
  91. #ifdef CONFIG_BT_MANAGER
  92. bt_manager_deinit();
  93. #endif
  94. #ifndef CONFIG_SIMULATOR
  95. power_manager_save_last_voltage(0);
  96. #endif
  97. sys_monitor_stop();
  98. #ifdef CONFIG_PROPERTY
  99. property_flush(NULL);
  100. #endif
  101. system_deinit();
  102. #ifndef CONFIG_SIMULATOR
  103. sys_pm_reboot(reason);
  104. #endif
  105. }
  106. void system_power_get_reboot_reason(uint16_t *reboot_type, uint8_t *reason)
  107. {
  108. #ifndef CONFIG_SIMULATOR
  109. union sys_pm_wakeup_src src = {0};
  110. if (!sys_pm_get_wakeup_source(&src)) {
  111. *reason = 0;
  112. if (src.t.alarm) {
  113. *reboot_type = REBOOT_TYPE_ALARM;
  114. } else if (src.t.watchdog) {
  115. *reboot_type = REBOOT_TYPE_WATCHDOG;
  116. } else if (src.t.onoff_reset) {
  117. *reboot_type = REBOOT_TYPE_ONOFF_RESET;
  118. } else if (sys_pm_get_reboot_reason(reboot_type, reason) == 0) {
  119. *reboot_type = REBOOT_TYPE_SF_RESET;
  120. } else {
  121. *reboot_type = REBOOT_TYPE_HW_RESET;
  122. if (src.t.short_onoff) {
  123. *reason = HW_RESET_REASON_ONOFF_SHORT;
  124. } else if (src.t.long_onoff) {
  125. *reason = HW_RESET_REASON_ONOFF_LONG;
  126. } else if (src.t.wio) {
  127. *reason = HW_RESET_REASON_WIO;
  128. } else if (src.t.remote) {
  129. *reason = HW_RESET_REASON_REMOTE;
  130. } else if (src.t.dc5vin) {
  131. *reason = HW_RESET_REASON_DC5V;
  132. } else {
  133. *reason = HW_RESET_REASON_BAT;
  134. }
  135. }
  136. }
  137. SYS_LOG_INF("reboot_type: 0x%x, reason %d\n", *reboot_type, *reason);
  138. #endif
  139. return;
  140. }