sys_standby.c 13 KB

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