hv_comm_Ota.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. /**
  2. * @file hv_comm_Ota.h
  3. * @brief Header file of OTA Utilities module.
  4. *
  5. * @verbatim
  6. * ==============================================================================
  7. * ##### How to use #####
  8. * ==============================================================================
  9. *
  10. * @endverbatim
  11. *
  12. * @author HiView SoC Software Team
  13. * @version 1.0.0
  14. * @date 2022-08-22
  15. */
  16. #ifndef __SDK_COMMON_UTIL_UTILITIES_INC_OTA_H__
  17. #define __SDK_COMMON_UTIL_UTILITIES_INC_OTA_H__
  18. #include "hv_comm_DataType.h"
  19. #define ALIGN_4K(x) (((x) + 0xFFF) & ~0xFFF)
  20. #define STRING_SBLKPMSB "SBLKPMSB"
  21. #define STRING_SBLKBOOT "SBLKBOOT" //第一启动分区的Boot
  22. #define STRING_SBLKBOOTBAK "SBLKBTBK" //第二启动分区的Boot
  23. #define STRING_SBLKCODE "SBLKCODE"
  24. #define STRING_SBLKLOGO "SBLKLOGO"
  25. #define STRING_SBLKPQDA "SBLKPQDA"
  26. #define STRING_SBLKCFIG "SBLKCFIG"
  27. #define SBLK_MAGIC_STRING_LENGTH (8)
  28. #define VALID_LEN_OFFSET (0x08)
  29. #define START_ADDR_OFFSET (0x0C)
  30. #define CRC_OFFSET (0x1C)
  31. #define SBLK_PER_SIZE (32)
  32. /* PM51和SBLK分区的地址和长度是固定的,所以在这里用宏定义;
  33. 其余的Boot、Code分区的起始地址和长度则通过解析SBLK的信息来得到
  34. | PM51 | 51Data | SB | Boot1 | Boot2 | Code | ------
  35. Start(0x) 0 7000 8000 9000 x x
  36. Len | 7000 | 1000 | 1000 | x | x |
  37. */
  38. #define PM51_PARTATION_ADDR (0x00000000)
  39. #define PM51_DATA_ADDR (0x00007000)
  40. #define SBLK_PARTATION_ADDR (0x00008000)
  41. #define PM51_PARTATION_LEN (0x00007000)
  42. #define PM51_DATA_LEN (0x00001000)
  43. #define SBLK_PARTATION_LEN (0x00001000)
  44. /**
  45. * @brief 双分区中CodeBak分区起始地址 = Code分区起始地址 + 2M
  46. */
  47. #define USB_OTA_CODEBAK_OFFSET (0x200000)
  48. /**
  49. * @brief 定义SBLK分区中Code段的CRC长度
  50. */
  51. #define OTA_SBLK_CRC_LEN (4)
  52. /**
  53. * @brief 定义读取super block的字节数
  54. 每32个字节为一个分区的描述信息,这里读取512字节共预留16个分区
  55. */
  56. #define SBLK_READ_LEN (512)
  57. /**
  58. * @brief Enumeration definition of the boot partition
  59. */
  60. typedef enum _OtaPart
  61. {
  62. OTA_PART_A = 0,
  63. OTA_PART_B,
  64. OTA_PART_MAX,
  65. } OtaPartDef;
  66. /**
  67. * @brief 分区定义, bit mask,用以表征哪些分区需要升级;
  68. 0值:总是表示默认更新PM51, BOOT与CODE,
  69. 非0值:需要对应解析bit位,置1的分区需要被更新,且OTA_PART_CODE表示会更新BOOT与CODE.
  70. */
  71. typedef enum _OtaPartitionFlagDef
  72. {
  73. OTA_PART_NORMAL = 0, /*!< 默认只更新PM51, BOOT与CODE */
  74. OTA_PART_PM51 = 1 << 0,
  75. OTA_PART_APP = 1 << 1, /*!< BOOT与CODE总是同时更新,这里仅用1个bit来表示,统称为APP */
  76. OTA_PART_LOGO = 1 << 2,
  77. OTA_PART_PQ = 1 << 3,
  78. OTA_PART_CFG = 1 << 4,
  79. } OtaPartitionFlagDef;
  80. /**
  81. * @brief 描述Flash分区表信息
  82. */
  83. typedef struct _OtaPartInfo
  84. {
  85. UINT32 uiPMSBStartAddr;
  86. UINT32 uiPMSBTotalLen;
  87. UINT32 uiBootStartAddr;
  88. UINT32 uiBootBakStartAddr;
  89. UINT32 uiBootTotalLen;
  90. UINT32 uiCodeStartAddr;
  91. UINT32 uiCodeBakStartAddr;
  92. UINT32 uiCodeTotalLen;
  93. UINT32 uiCodeCrc;
  94. UINT32 uiLogoStartAddr;
  95. UINT32 uiLogoTotalLen;
  96. UINT32 uiPQStartAddr;
  97. UINT32 uiPQTotalLen;
  98. UINT32 uiConfigStartAddr;
  99. UINT32 uiConfigTotalLen;
  100. }PartitionInfo;
  101. /**
  102. * @brief OTA后更新OTA_Flag,和Code_CRC
  103. * @param[in] pucCodeCrc 指向Code CRC值的指针, 必须传递4个字节! 且值全为0时不写入!
  104. * @param[in] ucCrcLen 表示Code CRC的长度, 必须设为4
  105. * @return Status
  106. */
  107. Status Hv_Comm_OTA_UpdateParams(UCHAR8 *pucCodeCrc, UCHAR8 ucCrcLen);
  108. /**
  109. * @brief 把4个字节按照Big Endian顺序组成UINT32数据
  110. * @param[in] pucData 指向UCHAR8数据块的指针
  111. * @param[in] uiOffset 偏移值,表示取UCHAR8数据块中指定偏移位置后的4个字节
  112. * @return UINT32
  113. */
  114. UINT32 Hv_Comm_OTA_ConvertToUint32(const UCHAR8 *pucData, UINT32 uiOffset);
  115. /**
  116. * @brief 获取本次OTA要升级到哪个分区,返回与当前正运行分区相反的分区号
  117. * @return OtaPartDef 指示待更新的分区号
  118. */
  119. OtaPartDef Hv_Comm_OTA_GetUpgradePart(VOID);
  120. /**
  121. * @brief 解析分区表信息
  122. * @param[in] pucData 分区表数据块
  123. * @param[in] uiLen 待解析的分区表数据长度,建议设置成pucData的实际长度
  124. * @param[in] pstPartInfo 指向 PartitionInfo 结构体的指针,这里会返回解析后的数据
  125. * @return Status
  126. */
  127. Status Hv_Comm_OTA_ParsePartitionInfo(const UCHAR8 *pucData, UINT32 uiLen, PartitionInfo *pstPartInfo);
  128. /**
  129. * @brief 解析Flash中的分区表信息
  130. * @param[in] pstPartInfo 指向 PartitionInfo 结构体的指针
  131. * @return Status
  132. */
  133. Status Hv_Comm_OTA_ParsePartitionInfoFromFlash(PartitionInfo *pstPartInfo);
  134. #endif