sys_monitor.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file system monitor
  8. */
  9. #include <os_common_api.h>
  10. #include <msg_manager.h>
  11. #include <power_manager.h>
  12. #include <property_manager.h>
  13. #include <esd_manager.h>
  14. #include <tts_manager.h>
  15. #include <string.h>
  16. #include <sys_event.h>
  17. #include <sys_monitor.h>
  18. #ifdef CONFIG_WATCHDOG
  19. #include <watchdog_hal.h>
  20. #endif
  21. #define SYS_LOG_NO_NEWLINE
  22. #ifdef SYS_LOG_DOMAIN
  23. #undef SYS_LOG_DOMAIN
  24. #endif
  25. #define SYS_LOG_DOMAIN "sys_monitor"
  26. #define CONFIG_MONITOR_PERIOD 100
  27. static struct sys_monitor_t g_monitor;
  28. struct sys_monitor_t *sys_monitor_get_instance(void)
  29. {
  30. return &g_monitor;
  31. }
  32. #ifdef CONFIG_THREAD_TIMER
  33. static void _sys_monitor_timer_handle(struct thread_timer *ttimer, void *expiry_fn_arg)
  34. {
  35. int system_event = SYS_EVENT_NONE;
  36. struct sys_monitor_t *sys_monitor =
  37. CONTAINER_OF(ttimer, struct sys_monitor_t, sys_monitor_timer);
  38. /**clear watchdog */
  39. #ifdef CONFIG_WATCHDOG
  40. watchdog_clear();
  41. #endif
  42. if (!sys_monitor || sys_monitor->monitor_stoped)
  43. return;
  44. for (int i = 0 ; i < MAX_MONITOR_WORK_NUM; i++) {
  45. if (!sys_monitor->monitor_work[i]) {
  46. continue;
  47. }
  48. system_event = sys_monitor->monitor_work[i]();
  49. if (system_event != SYS_EVENT_NONE) {
  50. sys_event_notify(system_event);
  51. }
  52. }
  53. }
  54. #else
  55. static void _sys_monitor_timer_work(os_work *work)
  56. {
  57. int system_event = SYS_EVENT_NONE;
  58. struct sys_monitor_t *sys_monitor =
  59. CONTAINER_OF(work, struct sys_monitor_t, sys_monitor_work);
  60. if (!sys_monitor || sys_monitor->monitor_stoped)
  61. return;
  62. for (int i = 0 ; i < MAX_MONITOR_WORK_NUM; i++) {
  63. if (!sys_monitor->monitor_work[i]) {
  64. continue;
  65. }
  66. system_event = sys_monitor->monitor_work[i]();
  67. if (system_event != SYS_EVENT_NONE) {
  68. sys_event_notify(system_event);
  69. }
  70. }
  71. os_delayed_work_submit(&sys_monitor->sys_monitor_work, CONFIG_MONITOR_PERIOD);
  72. }
  73. #endif
  74. extern int sys_standby_init(void);
  75. void sys_monitor_init(void)
  76. {
  77. struct sys_monitor_t *sys_monitor = sys_monitor_get_instance();
  78. memset(sys_monitor, 0, sizeof(struct sys_monitor_t));
  79. sys_monitor->monitor_stoped = 0;
  80. #ifdef CONFIG_THREAD_TIMER
  81. thread_timer_init(&sys_monitor->sys_monitor_timer, _sys_monitor_timer_handle, NULL);
  82. #else
  83. os_delayed_work_init(&sys_monitor->sys_monitor_work, _sys_monitor_timer_work);
  84. #endif
  85. #ifdef CONFIG_SYS_STANDBY
  86. sys_standby_init();
  87. #endif
  88. }
  89. int sys_monitor_add_work(monitor_work_handle monitor_work)
  90. {
  91. int ret = -ESRCH;
  92. struct sys_monitor_t *sys_monitor = sys_monitor_get_instance();
  93. for (int i = 0 ; i < MAX_MONITOR_WORK_NUM; i++) {
  94. if (!sys_monitor->monitor_work[i]) {
  95. sys_monitor->monitor_work[i] = monitor_work;
  96. ret = 0;
  97. break;
  98. }
  99. }
  100. if (ret) {
  101. SYS_LOG_ERR(" err %d\n", ret);
  102. }
  103. return ret;
  104. }
  105. void sys_monitor_start(void)
  106. {
  107. struct sys_monitor_t *sys_monitor = sys_monitor_get_instance();
  108. #ifdef CONFIG_THREAD_TIMER
  109. thread_timer_start(&sys_monitor->sys_monitor_timer, CONFIG_MONITOR_PERIOD, CONFIG_MONITOR_PERIOD);
  110. #else
  111. os_delayed_work_submit(&sys_monitor->sys_monitor_work, CONFIG_MONITOR_PERIOD);
  112. #endif
  113. #ifdef CONFIG_WATCHDOG
  114. watchdog_start(CONFIG_WDT_ACTS_OVERFLOW_TIME);
  115. #endif
  116. }
  117. void sys_monitor_stop(void)
  118. {
  119. struct sys_monitor_t *sys_monitor = sys_monitor_get_instance();
  120. sys_monitor->monitor_stoped = 1;
  121. #ifdef CONFIG_THREAD_TIMER
  122. thread_timer_stop(&sys_monitor->sys_monitor_timer);
  123. #else
  124. os_delayed_work_cancel(&sys_monitor->sys_monitor_work);
  125. #endif
  126. #ifdef CONFIG_WATCHDOG
  127. watchdog_stop();
  128. #endif
  129. }
  130. void sys_monitor_deinit(void)
  131. {
  132. }