sensor_sleep.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*******************************************************************************
  2. * @file sensor_sleep.c
  3. * @author MEMS Application Team
  4. * @version V1.0
  5. * @date 2020-08-12
  6. * @brief sensor testing
  7. *******************************************************************************/
  8. /******************************************************************************/
  9. //includes
  10. /******************************************************************************/
  11. #include <stdio.h>
  12. #include <string.h>
  13. #include <zephyr.h>
  14. #include <soc.h>
  15. #include <drivers/i2cmt.h>
  16. #include <sensor_hal.h>
  17. #include <sensor_bus.h>
  18. #include <sensor_algo.h>
  19. #include <sensor_devices.h>
  20. #include <hr_algo.h>
  21. #include <linker/linker-defs.h>
  22. #include "sensor_port.h"
  23. /******************************************************************************/
  24. //declarations
  25. /******************************************************************************/
  26. extern void algo_handler(int id, sensor_dat_t *dat);
  27. static enum WK_CB_RC sleep_wk_callback(enum S_WK_SRC_TYPE wk_src);
  28. static enum WK_RUN_TYPE sleep_wk_prepare(enum S_WK_SRC_TYPE wk_src);
  29. /******************************************************************************/
  30. //variables
  31. /******************************************************************************/
  32. static __act_s2_sleep_data int wakeup_system = 0;
  33. static __act_s2_sleep_data struct sleep_wk_fun_data sleep_fn =
  34. {
  35. .wk_cb = sleep_wk_callback,
  36. .wk_prep = sleep_wk_prepare,
  37. };
  38. __sleepfunc static enum WK_CB_RC sleep_wk_callback(enum S_WK_SRC_TYPE wk_src)
  39. {
  40. int len;
  41. uint8_t *buf;
  42. uint32_t pd_reg, int_stat;
  43. sensor_dat_t dat;
  44. printk("callback wk_src=%d\r\n", wk_src);
  45. switch ((int)wk_src) {
  46. case SLEEP_WK_SRC_IIC1MT:
  47. // acc sensor
  48. buf = i2c_task_get_data(1, 0, ACC_TRIG, &len);
  49. if (buf != NULL) {
  50. printk("ACC buf=0x%p, len=%d, time=%d\r\n", buf, len, (uint32_t)soc_sys_uptime_get());
  51. /* init data */
  52. sensor_hal_init_data(ID_ACC, &dat, buf, len);
  53. /* process data */
  54. algo_handler(ID_ACC, &dat);
  55. }
  56. break;
  57. case SLEEP_WK_SRC_GPIO:
  58. // check pending
  59. pd_reg = GPION_IRQ_PD(HR_ISR);
  60. int_stat = sys_read32(pd_reg);
  61. if(int_stat & GPIO_BIT(HR_ISR)){
  62. // clear pending
  63. sys_write32(GPIO_BIT(HR_ISR), pd_reg);
  64. // hr sensor
  65. printk("hr proc start\r\n");
  66. hr_algo_process();
  67. printk("hr proc end\r\n");
  68. }else{
  69. return WK_CB_CARELESS;
  70. }
  71. break;
  72. case SLEEP_WK_SRC_T3:
  73. sensor_hal_clear_tm_pending(TIMER3);
  74. /* process data */
  75. printk("time %d\r\n", (uint32_t)soc_sys_uptime_get());
  76. #if CONFIG_SENSOR_ALGO_MOTION_SILAN
  77. algo_handler(ID_ACC, NULL);
  78. #endif
  79. #if (CONFIG_SENSOR_ALGO_HR_HX3605 || CONFIG_SENSOR_ALGO_HR_HX3690)
  80. hr_algo_process();
  81. #endif
  82. break;
  83. }
  84. if (wakeup_system) {
  85. wakeup_system = 0;
  86. return WK_CB_RUN_SYSTEM;
  87. } else {
  88. return WK_CB_SLEEP_AGAIN;
  89. }
  90. }
  91. #ifdef __UVISION_VERSION
  92. __attribute__((no_stack_protector))
  93. #else
  94. __attribute__((optimize("no-stack-protector")))
  95. #endif
  96. __sleepfunc static enum WK_RUN_TYPE sleep_wk_prepare(enum S_WK_SRC_TYPE wk_src)
  97. {
  98. // printk("prepare wk_src=%d\r\n", wk_src);
  99. return WK_RUN_IN_NOR; // WK_RUN_IN_SYTEM for debug
  100. }
  101. /******************************************************************************/
  102. //functions
  103. /******************************************************************************/
  104. int sensor_sleep_init(void)
  105. {
  106. // acc wakeup
  107. sys_s3_wksrc_set(SLEEP_WK_SRC_IIC1MT);
  108. sys_s3_wksrc_set(SLEEP_WK_SRC_T3);
  109. sleep_register_wk_callback(SLEEP_WK_SRC_IIC1MT, &sleep_fn);
  110. sleep_register_wk_callback(SLEEP_WK_SRC_T3, &sleep_fn);
  111. // hr wakeup
  112. sys_s3_wksrc_set(SLEEP_WK_SRC_GPIO);
  113. sleep_register_wk_callback(SLEEP_WK_SRC_GPIO, &sleep_fn);
  114. return 0;
  115. }
  116. int sensor_sleep_suspend(void)
  117. {
  118. return sensor_hal_suspend();
  119. }
  120. int sensor_sleep_resume(void)
  121. {
  122. return sensor_hal_resume();
  123. }
  124. void sensor_sleep_wakeup(int wakeup)
  125. {
  126. wakeup_system = wakeup;
  127. }