sys_standby.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file system standby
  8. */
  9. #include <os_common_api.h>
  10. #include <app_manager.h>
  11. #include <msg_manager.h>
  12. #include <power_manager.h>
  13. #ifdef CONFIG_UI_MANAGER
  14. #include <ui_manager.h>
  15. #include <ui_mem.h>
  16. #endif
  17. #include <property_manager.h>
  18. #include <esd_manager.h>
  19. #include <tts_manager.h>
  20. #include <string.h>
  21. #include <sys_event.h>
  22. #include <sys_manager.h>
  23. #include <mem_manager.h>
  24. #include <sys_monitor.h>
  25. #include <srv_manager.h>
  26. #include <sys_wakelock.h>
  27. #ifdef CONFIG_RES_MANAGER
  28. #include <res_manager_api.h>
  29. #endif
  30. #ifndef CONFIG_SIMULATOR
  31. #include <kernel.h>
  32. #include <pm/pm.h>
  33. #include <device.h>
  34. #include <soc.h>
  35. #endif
  36. //#include <input_dev.h>
  37. #include <audio_hal.h>
  38. #ifdef CONFIG_BLUETOOTH
  39. #include "bt_manager.h"
  40. #endif
  41. #include <watchdog_hal.h>
  42. #ifdef CONFIG_DVFS
  43. #include <dvfs.h>
  44. #endif
  45. #if defined(CONFIG_SYS_LOG)
  46. #define SYS_LOG_NO_NEWLINE
  47. #ifdef SYS_LOG_DOMAIN
  48. #undef SYS_LOG_DOMAIN
  49. #endif
  50. #define SYS_LOG_DOMAIN "sys_standby"
  51. #endif
  52. /**
  53. * OTA app does not reponse MSG_APP_EARLY_SUSPEND/LATE_RESUME message during
  54. * upgrading, so donot send thess message to OTA app in case the system cannot
  55. * enter or exit STANDBY_S1.
  56. *
  57. * TAKE CARE:
  58. * The app name must be the same of the real OTA app name.
  59. */
  60. #ifndef APP_ID_OTA
  61. # define APP_ID_OTA "ota"
  62. #endif
  63. #define STANDBY_MIN_TIME_SEC (5)
  64. enum STANDBY_STATE_E {
  65. STANDBY_NORMAL,
  66. STANDBY_S1,
  67. STANDBY_S2,
  68. STANDBY_S3,
  69. };
  70. enum STANDBY_MODE_E {
  71. STANDBY_SLEEP,
  72. STANDBY_LIGHT_SLEEP,
  73. STANDBY_DEEP_SLEEP,
  74. };
  75. struct standby_context_t {
  76. uint32_t auto_standby_time;
  77. uint32_t auto_powerdown_time;
  78. uint8_t standby_state;
  79. uint8_t standby_mode;
  80. uint32_t wakeup_timestamp;
  81. uint32_t wakeup_flag:1;
  82. uint32_t force_standby:1;
  83. void * last_app;
  84. };
  85. struct standby_context_t *standby_context = NULL;
  86. extern void thread_usleep(uint32_t usec);
  87. extern int usb_hotplug_suspend(void);
  88. extern int usb_hotplug_resume(void);
  89. static os_sem wakeup_sem;
  90. static int _sys_standby_check_auto_powerdown(void)
  91. {
  92. int ret = 1;
  93. return ret; //返回1不进入休眠,返回0进入休眠
  94. }
  95. static int _sys_standby_enter_s1(void)
  96. {
  97. #ifndef CONFIG_AEM_WATCH_SUPPORT
  98. char *cur_app = app_manager_get_current_app();
  99. #endif
  100. standby_context->standby_state = STANDBY_S1;
  101. #ifdef CONFIG_AEM_WATCH_SUPPORT
  102. app_manager_notify_app("main", MSG_EARLY_SUSPEND_APP);
  103. #else
  104. if (!cur_app) {
  105. app_manager_notify_app("main", MSG_EARLY_SUSPEND_APP);
  106. }
  107. else if(strcmp(APP_ID_OTA, cur_app)) {
  108. app_manager_notify_app(cur_app, MSG_EARLY_SUSPEND_APP);
  109. }
  110. #endif
  111. #ifndef CONFIG_SIMULATOR
  112. pm_early_suspend();
  113. #endif
  114. standby_context->last_app = app_manager_get_current_app();
  115. if (standby_context->last_app) {
  116. app_manager_notify_app(standby_context->last_app, MSG_SUSPEND_APP);
  117. }
  118. srv_manager_notify_service(NULL, MSG_SUSPEND_APP);
  119. #ifdef CONFIG_ACTS_DVFS_DYNAMIC_LEVEL
  120. dvfs_unset_level(DVFS_LEVEL_NORMAL, "standby");
  121. #endif
  122. /**set ble state stanyby*/
  123. SYS_LOG_INF("Enter S1");
  124. return 0;
  125. }
  126. static int _sys_standby_exit_s1(void)
  127. {
  128. char *cur_app;
  129. standby_context->standby_state = STANDBY_NORMAL;
  130. standby_context->wakeup_timestamp = os_uptime_get_32();
  131. #ifdef CONFIG_ACTS_DVFS_DYNAMIC_LEVEL
  132. dvfs_set_level(DVFS_LEVEL_NORMAL, "standby");
  133. #endif
  134. srv_manager_notify_service(NULL, MSG_RESUME_APP);
  135. if (standby_context->last_app) {
  136. app_manager_notify_app(standby_context->last_app, MSG_RESUME_APP);
  137. }
  138. #ifndef CONFIG_SIMULATOR
  139. pm_late_resume();
  140. #endif
  141. cur_app = app_manager_get_current_app();
  142. #ifdef CONFIG_AEM_WATCH_SUPPORT
  143. app_manager_notify_app("main", MSG_LATE_RESUME_APP);
  144. #else
  145. if (!cur_app) {
  146. app_manager_notify_app("main", MSG_LATE_RESUME_APP);
  147. }
  148. else if (strcmp(APP_ID_OTA, cur_app)) {
  149. app_manager_notify_app(cur_app, MSG_LATE_RESUME_APP);
  150. }
  151. #endif
  152. /**clear ble state stanyby*/
  153. SYS_LOG_INF("Exit S1");
  154. return 0;
  155. }
  156. static int _sys_standby_exit_s2(void);
  157. static int _sys_standby_enter_s2(void)
  158. {
  159. standby_context->standby_state = STANDBY_S2;
  160. if (standby_context->standby_mode == STANDBY_DEEP_SLEEP) {
  161. if (sys_wakelocks_check(PARTIAL_WAKE_LOCK)
  162. || sys_wakelocks_check(FULL_WAKE_LOCK)) {
  163. standby_context->standby_state = STANDBY_S1;
  164. }
  165. }
  166. if (standby_context->standby_state == STANDBY_S2) {
  167. SYS_LOG_INF("Enter S2");
  168. //msg_manager_lock();
  169. } else if(standby_context->standby_state == STANDBY_S1){
  170. _sys_standby_exit_s2();
  171. }
  172. return 0;
  173. }
  174. static int _sys_standby_exit_s2(void)
  175. {
  176. standby_context->standby_state = STANDBY_S1;
  177. /**TODO: add registry notify*/
  178. //if (standby_context->standby_mode == STANDBY_DEEP_SLEEP) {
  179. //#if CONFIG_DISPLAY
  180. // ui_memory_init();
  181. //#endif
  182. //#ifdef CONFIG_RES_MANAGER
  183. // res_manager_init();
  184. //#endif
  185. //}
  186. SYS_LOG_INF("Exit S2");
  187. return 0;
  188. }
  189. static int _sys_standby_enter_s3(void)
  190. {
  191. standby_context->standby_state = STANDBY_S3;
  192. SYS_LOG_INF("Enter S3BT");
  193. standby_context->wakeup_flag = 0;
  194. sys_pm_enter_deep_sleep();
  195. /**wait for wake up*/
  196. os_sem_take(&wakeup_sem, OS_FOREVER);
  197. return 0;
  198. }
  199. static int _sys_standby_process_normal(void)
  200. {
  201. uint32_t wakelocks = sys_wakelocks_check(FULL_WAKE_LOCK);
  202. /**have sys wake lock*/
  203. if (wakelocks) {
  204. SYS_LOG_DBG("wakelocks: 0x%08x\n", wakelocks);
  205. return 0;
  206. }
  207. if (standby_context->force_standby
  208. || sys_wakelocks_get_free_time(FULL_WAKE_LOCK) > standby_context->auto_standby_time)
  209. _sys_standby_enter_s1();
  210. return 0;
  211. }
  212. static int _sys_standby_process_s1(void)
  213. {
  214. uint32_t wakelocks = sys_wakelocks_check(FULL_WAKE_LOCK);
  215. /**have sys wake lock*/
  216. if (wakelocks) {
  217. SYS_LOG_DBG("hold status: 0x%08x\n", wakelocks);
  218. _sys_standby_exit_s1();
  219. } else if (sys_wakelocks_get_free_time(FULL_WAKE_LOCK) < standby_context->auto_standby_time) {
  220. if (!standby_context->force_standby) {
  221. _sys_standby_exit_s1();
  222. }
  223. } else if (sys_wakelocks_get_free_time(PARTIAL_WAKE_LOCK) > 0) {
  224. if (!sys_wakelocks_check(PARTIAL_WAKE_LOCK)) {
  225. _sys_standby_enter_s2();
  226. }
  227. } else if (standby_context->force_standby){
  228. if (!sys_wakelocks_check(PARTIAL_WAKE_LOCK)) {
  229. _sys_standby_enter_s2();
  230. }
  231. }
  232. return 0;
  233. }
  234. static bool _sys_standby_wakeup_from_s2(void)
  235. {
  236. #if 0
  237. uint32_t wakelocks = sys_wakelocks_check(FULL_WAKE_LOCK);
  238. uint32_t pending = sys_pm_get_wakeup_pending();
  239. if (_sys_standby_check_auto_powerdown()) {
  240. return true;
  241. }
  242. if (pending & STANDBY_VALID_WAKEUP_PD) {
  243. sys_pm_clear_wakeup_pending();
  244. SYS_LOG_DBG("wakeup from S2: 0x%x", pending);
  245. return true;
  246. }
  247. if (power_manager_get_dc5v_status()) {
  248. SYS_LOG_DBG("wakeup from S2 because dc5v \n");
  249. return true;
  250. }
  251. if (wakelocks || sys_wakelocks_get_free_time(FULL_WAKE_LOCK) < standby_context->auto_standby_time) {
  252. SYS_LOG_DBG("wakelock: 0x%x\n", wakelocks);
  253. return true;
  254. }
  255. if (power_manager_check_is_no_power()) {
  256. SYS_LOG_INF("NO POWER\n");
  257. sys_pm_poweroff();
  258. return true;
  259. }
  260. /* FIXME: Here catch a hardware related issue.
  261. * There is no wakeup pending of on-off key during s3bt stage,
  262. * whereas the pending is happened at s1/s2 stage.
  263. */
  264. if (sys_read32(PMU_ONOFF_KEY) & 0x1) {
  265. /* wait until ON-OFF key bounce */
  266. while (sys_read32(PMU_ONOFF_KEY) & 0x1)
  267. ;
  268. SYS_LOG_INF("wakeup from ON-OFF key");
  269. return true;
  270. }
  271. #endif
  272. return true;
  273. }
  274. static int _sys_standby_process_s2(void)
  275. {
  276. #ifndef CONFIG_SIMULATOR
  277. SYS_LOG_INF("enter");
  278. /**clear watchdog */
  279. #ifdef CONFIG_WATCHDOG
  280. watchdog_clear();
  281. #endif
  282. standby_context->force_standby = 0;
  283. while(true) {
  284. if (sys_wakelocks_check(PARTIAL_WAKE_LOCK)
  285. || sys_wakelocks_check(FULL_WAKE_LOCK)) {
  286. _sys_standby_exit_s2();
  287. break;
  288. }
  289. /**raise priority before deep sleep*/
  290. os_thread_priority_set(os_current_get(), -2);
  291. _sys_standby_enter_s3();
  292. /**have sys wake lock*/
  293. if (_sys_standby_wakeup_from_s2()) {
  294. _sys_standby_exit_s2();
  295. break;
  296. }
  297. }
  298. if ((sys_s3_wksrc_get() != SLEEP_WK_SRC_BT)
  299. && (sys_s3_wksrc_get() != SLEEP_WK_SRC_T1)
  300. && !(soc_get_aod_mode() && sys_s3_wksrc_get() == SLEEP_WK_SRC_RTC)) {
  301. sys_wake_lock_ext(FULL_WAKE_LOCK, SYS_WAKE_LOCK_USER);
  302. _sys_standby_exit_s1();
  303. sys_wake_unlock_ext(FULL_WAKE_LOCK, SYS_WAKE_LOCK_USER);
  304. }
  305. /**restore priorpty after wake up*/
  306. if (os_thread_priority_get(os_current_get()) < 14) {
  307. os_thread_priority_set(os_current_get(), 14);
  308. }
  309. #endif
  310. return 0;
  311. }
  312. static int _sys_standby_work_handle(void)
  313. {
  314. int ret = _sys_standby_check_auto_powerdown();
  315. if (ret)
  316. return ret;
  317. if (standby_context->standby_state == STANDBY_NORMAL) {
  318. ret = _sys_standby_process_normal();
  319. }
  320. if (standby_context->standby_state == STANDBY_S1) {
  321. ret = _sys_standby_process_s1();
  322. }
  323. if (standby_context->standby_state == STANDBY_S2) {
  324. ret = _sys_standby_process_s2();
  325. }
  326. return ret;
  327. }
  328. #ifdef CONFIG_AUTO_POWEDOWN_TIME_SEC
  329. static bool _sys_standby_is_auto_powerdown(void)
  330. {
  331. bool auto_powerdown = true;
  332. char temp[16];
  333. int ret;
  334. memset(temp, 0, sizeof(temp));
  335. ret = property_get(CFG_AUTO_POWERDOWN, temp, 16);
  336. if (ret > 0) {
  337. if (strcmp(temp, "false") == 0) {
  338. auto_powerdown = false;
  339. }
  340. }
  341. return auto_powerdown;
  342. }
  343. #endif
  344. static void _sys_standby_entry_sleep(enum pm_state state)
  345. {
  346. SYS_LOG_INF("enter \n");
  347. }
  348. static void _sys_standby_exit_sleep(enum pm_state state)
  349. {
  350. SYS_LOG_INF("enter \n");
  351. sys_wakelocks_wake(PARTIAL_WAKE_LOCK);
  352. os_sem_give(&wakeup_sem);
  353. }
  354. #ifndef CONFIG_SIMULATOR
  355. static struct pm_notifier notifier = {
  356. .state_entry = _sys_standby_entry_sleep,
  357. .state_exit = _sys_standby_exit_sleep,
  358. };
  359. #endif
  360. static struct standby_context_t global_standby_context;
  361. #define CONFIG_STANDBY_STACKSIZE 1280
  362. static char __aligned(ARCH_STACK_PTR_ALIGN) __in_section_unique(noinit)
  363. standby_thread_stack[CONFIG_STANDBY_STACKSIZE];
  364. static os_tid_t standby_thread_data;
  365. static void standby_thread(void *p1, void *p2, void *p3)
  366. {
  367. #ifndef CONFIG_SIMULATOR
  368. ARG_UNUSED(p1);
  369. ARG_UNUSED(p2);
  370. ARG_UNUSED(p3);
  371. #endif
  372. SYS_LOG_INF("standby thread started");
  373. while (1) {
  374. sys_wakelocks_wait(PARTIAL_WAKE_LOCK);
  375. _sys_standby_work_handle();
  376. os_yield();
  377. }
  378. }
  379. static int _sys_standby_check_handle(void)
  380. {
  381. sys_wakelocks_wake(PARTIAL_WAKE_LOCK);
  382. return 0;
  383. }
  384. int sys_standby_init(void)
  385. {
  386. standby_context = &global_standby_context;
  387. memset(standby_context, 0, sizeof(struct standby_context_t));
  388. #ifdef CONFIG_AUTO_STANDBY_TIME_SEC
  389. if (0 == CONFIG_AUTO_STANDBY_TIME_SEC) {
  390. standby_context->auto_standby_time = (-1);
  391. } else if (CONFIG_AUTO_STANDBY_TIME_SEC < STANDBY_MIN_TIME_SEC) {
  392. SYS_LOG_WRN("too small, used default");
  393. standby_context->auto_standby_time = STANDBY_MIN_TIME_SEC * 1000;
  394. } else {
  395. standby_context->auto_standby_time = CONFIG_AUTO_STANDBY_TIME_SEC * 1000;
  396. }
  397. #else
  398. standby_context->auto_standby_time = (-1);
  399. #endif
  400. #ifdef CONFIG_AUTO_POWEDOWN_TIME_SEC
  401. if (_sys_standby_is_auto_powerdown()) {
  402. standby_context->auto_powerdown_time = CONFIG_AUTO_POWEDOWN_TIME_SEC * 1000;
  403. } else {
  404. SYS_LOG_WRN("Disable auto powerdown\n");
  405. standby_context->auto_powerdown_time = (-1);
  406. }
  407. #else
  408. standby_context->auto_powerdown_time = (-1);
  409. #endif
  410. standby_context->standby_state = STANDBY_NORMAL;
  411. standby_context->standby_mode = STANDBY_DEEP_SLEEP;
  412. standby_context->wakeup_timestamp = os_uptime_get_32();
  413. if (sys_monitor_add_work(_sys_standby_check_handle)) {
  414. SYS_LOG_ERR("add work failed\n");
  415. return -EFAULT;
  416. }
  417. #ifndef CONFIG_SIMULATOR
  418. pm_notifier_register(&notifier);
  419. #endif
  420. SYS_LOG_INF("standby time : %d", standby_context->auto_standby_time);
  421. os_sem_init(&wakeup_sem, 0, 1);
  422. standby_thread_data = (os_tid_t)os_thread_create((char*)standby_thread_stack,
  423. CONFIG_STANDBY_STACKSIZE,
  424. standby_thread, NULL, NULL, NULL,
  425. 14,
  426. 0, OS_NO_WAIT);
  427. os_thread_name_set(standby_thread_data, "standby");
  428. return 0;
  429. }
  430. uint32_t system_wakeup_time(void)
  431. {
  432. uint32_t wakeup_time = (-1);
  433. /** no need deal uint32_t overflow */
  434. if (standby_context->wakeup_timestamp) {
  435. wakeup_time = os_uptime_get_32() - standby_context->wakeup_timestamp;
  436. }
  437. SYS_LOG_INF("wakeup_time %d ms\n", wakeup_time);
  438. return wakeup_time;
  439. }
  440. uint32_t system_boot_time(void)
  441. {
  442. return os_uptime_get();
  443. }
  444. void system_set_standby_mode(uint8_t sleep_mode)
  445. {
  446. if (standby_context) {
  447. standby_context->standby_mode = sleep_mode;
  448. }
  449. }
  450. void system_set_auto_sleep_time(uint32_t timeout)
  451. {
  452. if (standby_context) {
  453. standby_context->auto_standby_time = timeout * 1000;
  454. }
  455. }
  456. void system_request_fast_standby(void)
  457. {
  458. if (standby_context) {
  459. standby_context->force_standby = 1;
  460. }
  461. }
  462. void system_clear_fast_standby(void)
  463. {
  464. if (standby_context) {
  465. standby_context->force_standby = 0;
  466. }
  467. }
  468. bool system_is_screen_on(void)
  469. {
  470. bool screen_on = false;
  471. if (standby_context) {
  472. screen_on = (standby_context->standby_state == STANDBY_NORMAL);
  473. }
  474. return screen_on;
  475. }