aic_ctrl.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /**************************************************************************/
  2. /* */
  3. /* Copyright 2023 by AICXTEK TECHNOLOGIES CO.,LTD. All rights reserved. */
  4. /* */
  5. /**************************************************************************/
  6. /**
  7. * DESCRIPTION
  8. *
  9. * This file defines aic ctrl module apis.
  10. */
  11. #ifndef AIC_CTRL_H
  12. #define AIC_CTRL_H
  13. #include <aic_srv_bus.h>
  14. /*
  15. * aic boot reason define:
  16. * AIC_CTRL_NORMAL_BOOT: It is booted by call the poweron function
  17. * aic_ctrl_poweron.
  18. * AIC_CTRL_EXCEPTION_BOOT: any other boot, such as aic watch dog reboot.
  19. *
  20. * Don't warry about the boot reason, as long as the state of aic is alived.
  21. * It can work well.
  22. */
  23. typedef enum aic_ctrl_boot_reason {
  24. AIC_CTRL_NORMAL_BOOT = 0,
  25. AIC_CTRL_EXCEPTION_BOOT
  26. } aic_ctrl_boot_reason_t;
  27. /*
  28. * aic state defeine:
  29. * AIC_CTRL_STATE_SHUTDOWN: The default state or after poweroff aic succ.
  30. * AIC_CTRL_STATE_BOOTING: Once call the aic poweron function.
  31. * AIC_CTRL_STATE_BOOTED: After power on it, aic has been booted succ.
  32. * AIC_CTRL_STATE_AILVED The modem alived, can use modem funtion.
  33. * AIC_CTRL_STATE_CALI: Aic enter to calibration mode.
  34. * AIC_CTRL_STATE_FOTA: Aic enter to fota update mode.
  35. * AIC_CTRL_STATE_EXCEPTION: Aic occus exception.
  36. * AIC_CTRL_STATE_SHUTTING: Once call the aic poweroff function.
  37. * AIC_CTRL_STATE_POWERON_TIMEOUT: poweron aic timeout state.
  38. * AIC_CTRL_STATE_SHUTDOWN_TIMEOUT: shutdown aic timeout state.
  39. */
  40. typedef enum aic_state {
  41. AIC_CTRL_STATE_SHUTDOWN = 0,
  42. AIC_CTRL_STATE_BOOTING,
  43. AIC_CTRL_STATE_BOOTED,
  44. AIC_CTRL_STATE_AILVE,
  45. AIC_CTRL_STATE_CALI,
  46. AIC_CTRL_STATE_FOTA,
  47. AIC_CTRL_STATE_EXCEPTION,
  48. AIC_CTRL_STATE_SHUTTING,
  49. AIC_CTRL_STATE_POWERON_TIMEOUT,
  50. AIC_CTRL_STATE_SHUTDOWN_TIMEOUT
  51. } aic_ctrl_state_t;
  52. typedef struct aic_ctrl_cb {
  53. aic_ctrl_state_t state;
  54. aic_ctrl_boot_reason_t reason;
  55. } aic_ctrl_cb_t;
  56. typedef struct {
  57. char* p_module;
  58. void* p_cfg_data;
  59. uint32_t cfg_data_len;
  60. } aic_ctrl_cfg_info_t;
  61. /**
  62. * aic_ctrl_state_register - aic ctrl server register function.
  63. * @p_bus_info: [IN] bus info.
  64. * @_srv_callback: [IN] callback function client passed to servic.
  65. * the callback function param:
  66. * p_param for the struc aic_ctrl_cb_t pointer.
  67. * size: for the struct aic_ctrl_cb_t size.
  68. * Return: > 0 means handle of aic ctrl service, client,< 0 means error.
  69. */
  70. int aic_ctrl_state_register(aic_srv_bus_info_t *p_bus_info, srv_func_callback _srv_callback);
  71. /**
  72. * aic_ctrl_state_unregister - deregister inferface for aic ctrl service.
  73. * @client_handle: [IN] handle of aic ctrl service client.
  74. * Return: 0 means success, other means error.
  75. */
  76. int aic_ctrl_state_unregister(int client_handle);
  77. /**
  78. * aic_ctrl_poweronoff - poweon or power off the aic.
  79. *
  80. * @on: TRUE - power on, FALSE - power off
  81. * This func is executed asynchronously, the real state of aic can get by
  82. * register a aic state server callback function.
  83. *
  84. */
  85. int aic_ctrl_power_on(bool on);
  86. #define aic_ctrl_poweron() aic_ctrl_power_on(TRUE)
  87. #define aic_ctrl_poweroff() aic_ctrl_power_on(FALSE)
  88. /**
  89. * aic_ctrl_set_poweron_retry_times
  90. *
  91. * @retry_times: Set the poweron retry times.
  92. * the default retry time is 0xffff.
  93. *
  94. * After finished the setting times retry(about 12s at one time), still haven't
  95. * waited aic alive, will stop retry and report AIC_CTRL_STATE_POWERON_TIMOUT
  96. * state by state callback function.
  97. */
  98. void aic_ctrl_set_poweron_retry_times(unsigned short retry_times);
  99. /**
  100. * aic_ctrl_set_shutdown_retry_times
  101. *
  102. * @retry_times: Set the shutdown retry times.
  103. * the default retry time is 0xffff
  104. *
  105. * After finished the setting times retry(about 18s at one time), still haven't
  106. * waited aic shutdown, will stop retry and report AIC_CTRL_STATE_POWERON_TIMOUT
  107. * state by state callback function.
  108. */
  109. void aic_ctrl_set_shutdown_retry_times(unsigned short retry_times);
  110. /**
  111. * aic_ctrl_sync_power_onoff - poweon or power off the aic and will wait
  112. * .power on or poweroff complete.
  113. *
  114. * @on: TRUE - power on, FALSE - power off
  115. * This func is executed synchronously, it will be blocked until the
  116. * power on or poweroff action complete.
  117. * Return: 0 means success, other means error.
  118. *
  119. * Attention: It can't be called in init, irq and timer context,
  120. * It is task ontext safe.
  121. */
  122. int aic_ctrl_sync_power_onoff(bool on);
  123. #define aic_ctrl_sync_poweron() aic_ctrl_sync_power_onoff(TRUE)
  124. #define aic_ctrl_sync_poweroff() aic_ctrl_sync_power_onoff(FALSE)
  125. /**
  126. * aic_ctrl_reset
  127. *
  128. * This func will poweoff and wait aic power off complete,
  129. * And after aic power off complete will power on the aic,
  130. * This func will return until power on succ or timeout.
  131. * @timeout: how long will wait this api return,
  132. * the unit of the timeou is second, the minium timeout is 30S.
  133. * Return: 0 means success, other means error.
  134. */
  135. int aic_ctrl_reset(void);
  136. /**
  137. * aic_ctrl_assert - assert the aic, only can used for debug.
  138. */
  139. int aic_ctrl_assert(void);
  140. /**
  141. * aic_ctrl_srv_set_fota_mode
  142. * tell the aic ctrl module that will now enter or exit fota mode.
  143. * In fota mode, will not report the aic alive state to app.
  144. * The default state is not fota mode.
  145. *
  146. * @fota: TRUE - enter fota mode, FALSE: exit fota mode,
  147. */
  148. void aic_ctrl_srv_set_fota_mode(bool fota);
  149. /**
  150. * aic_ctrl_srv_is_fota_mode
  151. *
  152. * Return: TURE OR FALSE.
  153. */
  154. bool aic_ctrl_srv_is_fota_mode(void);
  155. /**
  156. * aic_ctrl_srv_get_state
  157. * get the state of aic.
  158. */
  159. aic_ctrl_state_t aic_ctrl_srv_get_state(void);
  160. /**
  161. * aic_ctrl_set_config
  162. * set config info to aic.
  163. */
  164. int aic_ctrl_set_config(aic_ctrl_cfg_info_t *p_cfg_info);
  165. /**
  166. * aic_ctrl_is_version_unmatch.
  167. */
  168. bool aic_ctrl_is_version_unmatch(void);
  169. #endif /* AIC_CTRL_H */