fota.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /**************************************************************************/
  2. /* */
  3. /* Copyright 2023 by AICXTEK TECHNOLOGIES CO.,LTD. All rights reserved. */
  4. /* */
  5. /**************************************************************************/
  6. /**
  7. * DESCRIPTION
  8. *
  9. * This file aic ctrl module source file.
  10. */
  11. #include <alog_api.h>
  12. #include <aic_osa.h>
  13. #include <aic_errno.h>
  14. #include <aic_ctrl.h>
  15. #include <aic_fota.h>
  16. #include <aic_posix.h>
  17. /*
  18. * CONF_FOTA_POWER_DOWN_RESTORE -
  19. * Enable it can save the fota update state to flash,
  20. * And if the device lost power during the fota upgrade process,
  21. * It can resume upgrades after the power restore.
  22. *
  23. * Open it may need to reimplemented the function aic_fota_test_load_update_result
  24. * and the function aic_fota_test_save_fupdate_result.
  25. */
  26. #define CONF_FOTA_POWER_DOWN_RESTORE 0
  27. #if CONF_FOTA_POWER_DOWN_RESTORE
  28. #include <user_cfg_id.h>
  29. #endif
  30. /*
  31. * if enable it will test the fota stop api in fota update flow.
  32. */
  33. #define CONFIG_TEST_AUTO_STOP 0
  34. #define AIC_FOTA_TEST_TASK_PRI 20
  35. #define AIC_FOTA_TEST_UPDATE_MAX_TIME 200
  36. #define ONCE_TRANS_SIZE 2048
  37. #define FTST_ERR(fmt, ...) alog_error("ftst: "fmt, ##__VA_ARGS__)
  38. #define AFOT_WARN(fmt, ...) alog_warn("ftst: "fmt, ##__VA_ARGS__)
  39. #define FTST_INFO(fmt, ...) alog_info("ftst: "fmt, ##__VA_ARGS__)
  40. #define FTST_DBG(fmt, ...) alog_debug("ftst: "fmt, ##__VA_ARGS__)
  41. typedef struct fota_update_cfg {
  42. aic_fota_update_result_t result;
  43. } fota_update_cfg_t;
  44. static pthread_t fota_test_task;
  45. #if CONF_FOTA_POWER_DOWN_RESTORE
  46. static fota_update_cfg_t fota_cfg;
  47. #endif
  48. u8 pac_sim_data[] = {
  49. #include "diff_pac.c"
  50. };
  51. int aic_fota_get_pac_by_version(int old_ver, int new_ver,
  52. u8 **pp_pac_data, u32 *p_pac_size)
  53. {
  54. FTST_INFO("get pac, old=%d, new=%d.\n", old_ver, new_ver);
  55. /*
  56. * TODO:
  57. * here just spcify the version data.
  58. * Customers need to implemt it acoording their own version
  59. * managemant method.
  60. */
  61. *pp_pac_data = pac_sim_data;
  62. *p_pac_size = sizeof(pac_sim_data);
  63. return AIC_SUCCESS;
  64. }
  65. #if CONF_FOTA_POWER_DOWN_RESTORE
  66. static void aic_fota_test_save_fupdate_result()
  67. {
  68. int ret = syscfg_write(VM_FOTA_UPDATE_CFG, &fota_cfg, sizeof(fota_cfg));
  69. FTST_INFO("save result=%d, ret=%d", fota_cfg.result, ret);
  70. AIC_ASSERT(ret == sizeof(fota_cfg));
  71. }
  72. static void aic_fota_test_load_update_result(void)
  73. {
  74. int ret = syscfg_read(VM_FOTA_UPDATE_CFG, &fota_cfg, sizeof(fota_cfg));
  75. FTST_INFO("load result=%d, ret=%d", fota_cfg.result, ret);
  76. }
  77. #endif
  78. void* aic_fota_test_task(void *p)
  79. {
  80. u32 pac_size, trans_size, trans_total;
  81. aic_fota_update_result_t ret;
  82. aic_ctrl_inter_msg_t msg;
  83. aic_ctrl_state_t state;
  84. int local_ver, remote_ver;
  85. u8 *pac_data;
  86. #if CONFIG_TEST_AUTO_STOP
  87. int retry = 0;
  88. #endif
  89. sleep(10);
  90. FTST_INFO("test task.\n");
  91. local_ver = aic_fota_get_aic_local_ver_num();
  92. remote_ver = aic_fota_get_aic_remote_ver_num();
  93. FTST_INFO("local_ver=%d, remote_ver=%d.\n", local_ver, remote_ver);
  94. if (remote_ver < 0) {
  95. FTST_ERR("Get remote ver err, exit fota.\n", local_ver, remote_ver);
  96. return NULL;
  97. }
  98. #if CONF_FOTA_POWER_DOWN_RESTORE
  99. /*
  100. * Only local_ver == remote_ver, and the fota_cfg is complete, can skip the
  101. * fota update flow. Because the aic software has 2 part: basic img + extend
  102. * img, and the aic version is stored in baisc image. if the sdk_ver == aic_ver
  103. * is just indicate that the basic image has update succ, but the extend image
  104. * may be old software.
  105. */
  106. if (local_ver == remote_ver) {
  107. /* get the update_result from flash. */
  108. aic_fota_test_load_update_result();
  109. /* result must is AIC_FOTA_UPDATE_COMPLETE. */
  110. if (fota_cfg.result == AIC_FOTA_UPDATE_COMPLETE) {
  111. FTST_INFO("aic is the latest version! .\n");
  112. return NULL;
  113. }
  114. /* continue to frimware update. */
  115. FTST_INFO("aic update continue! .\n");
  116. }
  117. #endif
  118. while (TRUE) {
  119. /* get the pac by version. */
  120. ret = aic_fota_get_pac_by_version(remote_ver, local_ver, &pac_data, &pac_size);
  121. AIC_ASSERT(ret == AIC_SUCCESS);
  122. /* start the fota update. */
  123. ret = aic_fota_start(pac_size);
  124. AIC_ASSERT(ret == AIC_SUCCESS);
  125. /* trans, fota data. */
  126. trans_total = 0;
  127. do {
  128. trans_size = MIN(pac_size, ONCE_TRANS_SIZE);
  129. ret = aic_fota_trans_data(pac_data + trans_total, trans_size);
  130. if (ret != AIC_SUCCESS)
  131. break;
  132. #if CONFIG_TEST_AUTO_STOP
  133. /* rety 3 times to test fota stop. */
  134. if (trans_total > ONCE_TRANS_SIZE * 4 && retry < 3) {
  135. retry++;
  136. break;
  137. }
  138. #endif
  139. pac_size -= trans_size;
  140. trans_total += trans_size;
  141. } while (pac_size > 0);
  142. /* rety 3 times to test fota stop. */
  143. if (pac_size > 0) {
  144. aic_fota_stop();
  145. sleep(10);
  146. continue;
  147. }
  148. /* wait fota update result. */
  149. #if CONF_FOTA_POWER_DOWN_RESTORE
  150. /* need save the int result fo flash. */
  151. fota_cfg.result = AIC_FOTA_UPDATE_INIT;
  152. aic_fota_test_save_fupdate_result();
  153. #endif
  154. ret = aic_fota_wait_update_result(AIC_FOTA_TEST_UPDATE_MAX_TIME);
  155. #if CONF_FOTA_POWER_DOWN_RESTORE
  156. /* need save the update result fo flash. */
  157. fota_cfg.result = ret;
  158. aic_fota_test_save_fupdate_result();
  159. #endif
  160. /* stop the fota update. */
  161. aic_fota_stop();
  162. if (ret == AIC_FOTA_UPDATE_COMPLETE) {
  163. FTST_INFO("update succ!\n");
  164. break;
  165. }
  166. if (ret == AIC_FOTA_PAC_VER_NOT_MATCH) {
  167. FTST_INFO("version not matched, please check!\n");
  168. break;
  169. }
  170. FTST_INFO("update failed(ret=%d), retry later!\n", ret);
  171. sleep(20);
  172. }
  173. return (void *)0;
  174. }
  175. void aic_fota_test_init(void)
  176. {
  177. pthread_attr_t attr = {0};
  178. struct sched_param param;
  179. int ret;
  180. FTST_INFO("test init.\n");
  181. pthread_attr_init(&attr);
  182. param.sched_priority = AIC_FOTA_TEST_TASK_PRI;
  183. pthread_attr_setschedparam(&attr, &param);
  184. ret = pthread_create(&fota_test_task, &attr, aic_fota_test_task, NULL);
  185. AIC_ASSERT(!ret);
  186. }