esp_partition.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. // Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. // http://www.apache.org/licenses/LICENSE-2.0
  7. //
  8. // Unless required by applicable law or agreed to in writing, software
  9. // distributed under the License is distributed on an "AS IS" BASIS,
  10. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. // See the License for the specific language governing permissions and
  12. // limitations under the License.
  13. #ifndef __ESP_PARTITION_H__
  14. #define __ESP_PARTITION_H__
  15. #include <stdint.h>
  16. #include <stdbool.h>
  17. #include <stddef.h>
  18. #include "esp_err.h"
  19. #include "esp_spi_flash.h"
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. /**
  24. * @file esp_partition.h
  25. * @brief Partition APIs
  26. */
  27. /**
  28. * @brief Partition type
  29. * @note Keep this enum in sync with PartitionDefinition class gen_esp32part.py
  30. */
  31. typedef enum {
  32. ESP_PARTITION_TYPE_APP = 0x00, //!< Application partition type
  33. ESP_PARTITION_TYPE_DATA = 0x01, //!< Data partition type
  34. } esp_partition_type_t;
  35. /**
  36. * @brief Partition subtype
  37. * @note Keep this enum in sync with PartitionDefinition class gen_esp32part.py
  38. */
  39. typedef enum {
  40. ESP_PARTITION_SUBTYPE_APP_FACTORY = 0x00, //!< Factory application partition
  41. ESP_PARTITION_SUBTYPE_APP_OTA_MIN = 0x10, //!< Base for OTA partition subtypes
  42. ESP_PARTITION_SUBTYPE_APP_OTA_0 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 0, //!< OTA partition 0
  43. ESP_PARTITION_SUBTYPE_APP_OTA_1 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 1, //!< OTA partition 1
  44. ESP_PARTITION_SUBTYPE_APP_OTA_2 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 2, //!< OTA partition 2
  45. ESP_PARTITION_SUBTYPE_APP_OTA_3 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 3, //!< OTA partition 3
  46. ESP_PARTITION_SUBTYPE_APP_OTA_4 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 4, //!< OTA partition 4
  47. ESP_PARTITION_SUBTYPE_APP_OTA_5 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 5, //!< OTA partition 5
  48. ESP_PARTITION_SUBTYPE_APP_OTA_6 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 6, //!< OTA partition 6
  49. ESP_PARTITION_SUBTYPE_APP_OTA_7 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 7, //!< OTA partition 7
  50. ESP_PARTITION_SUBTYPE_APP_OTA_8 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 8, //!< OTA partition 8
  51. ESP_PARTITION_SUBTYPE_APP_OTA_9 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 9, //!< OTA partition 9
  52. ESP_PARTITION_SUBTYPE_APP_OTA_10 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 10,//!< OTA partition 10
  53. ESP_PARTITION_SUBTYPE_APP_OTA_11 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 11,//!< OTA partition 11
  54. ESP_PARTITION_SUBTYPE_APP_OTA_12 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 12,//!< OTA partition 12
  55. ESP_PARTITION_SUBTYPE_APP_OTA_13 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 13,//!< OTA partition 13
  56. ESP_PARTITION_SUBTYPE_APP_OTA_14 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 14,//!< OTA partition 14
  57. ESP_PARTITION_SUBTYPE_APP_OTA_15 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 15,//!< OTA partition 15
  58. ESP_PARTITION_SUBTYPE_APP_OTA_MAX = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 16,//!< Max subtype of OTA partition
  59. ESP_PARTITION_SUBTYPE_APP_TEST = 0x20, //!< Test application partition
  60. ESP_PARTITION_SUBTYPE_DATA_OTA = 0x00, //!< OTA selection partition
  61. ESP_PARTITION_SUBTYPE_DATA_PHY = 0x01, //!< PHY init data partition
  62. ESP_PARTITION_SUBTYPE_DATA_NVS = 0x02, //!< NVS partition
  63. ESP_PARTITION_SUBTYPE_DATA_COREDUMP = 0x03, //!< COREDUMP partition
  64. ESP_PARTITION_SUBTYPE_DATA_NVS_KEYS = 0x04, //!< Partition for NVS keys
  65. ESP_PARTITION_SUBTYPE_DATA_EFUSE_EM = 0x05, //!< Partition for emulate eFuse bits
  66. ESP_PARTITION_SUBTYPE_DATA_ESPHTTPD = 0x80, //!< ESPHTTPD partition
  67. ESP_PARTITION_SUBTYPE_DATA_FAT = 0x81, //!< FAT partition
  68. ESP_PARTITION_SUBTYPE_DATA_SPIFFS = 0x82, //!< SPIFFS partition
  69. ESP_PARTITION_SUBTYPE_ANY = 0xff, //!< Used to search for partitions with any subtype
  70. } esp_partition_subtype_t;
  71. /**
  72. * @brief Convenience macro to get esp_partition_subtype_t value for the i-th OTA partition
  73. */
  74. #define ESP_PARTITION_SUBTYPE_OTA(i) ((esp_partition_subtype_t)(ESP_PARTITION_SUBTYPE_APP_OTA_MIN + ((i) & 0xf)))
  75. /**
  76. * @brief Opaque partition iterator type
  77. */
  78. typedef struct esp_partition_iterator_opaque_* esp_partition_iterator_t;
  79. /**
  80. * @brief partition information structure
  81. *
  82. * This is not the format in flash, that format is esp_partition_info_t.
  83. *
  84. * However, this is the format used by this API.
  85. */
  86. typedef struct {
  87. esp_partition_type_t type; /*!< partition type (app/data) */
  88. esp_partition_subtype_t subtype; /*!< partition subtype */
  89. uint32_t address; /*!< starting address of the partition in flash */
  90. uint32_t size; /*!< size of the partition, in bytes */
  91. char label[17]; /*!< partition label, zero-terminated ASCII string */
  92. bool encrypted; /*!< flag is set to true if partition is encrypted */
  93. } esp_partition_t;
  94. /**
  95. * @brief Find partition based on one or more parameters
  96. *
  97. * @param type Partition type, one of esp_partition_type_t values
  98. * @param subtype Partition subtype, one of esp_partition_subtype_t values.
  99. * To find all partitions of given type, use
  100. * ESP_PARTITION_SUBTYPE_ANY.
  101. * @param label (optional) Partition label. Set this value if looking
  102. * for partition with a specific name. Pass NULL otherwise.
  103. *
  104. * @return iterator which can be used to enumerate all the partitions found,
  105. * or NULL if no partitions were found.
  106. * Iterator obtained through this function has to be released
  107. * using esp_partition_iterator_release when not used any more.
  108. */
  109. esp_partition_iterator_t esp_partition_find(esp_partition_type_t type, esp_partition_subtype_t subtype, const char* label);
  110. /**
  111. * @brief Find first partition based on one or more parameters
  112. *
  113. * @param type Partition type, one of esp_partition_type_t values
  114. * @param subtype Partition subtype, one of esp_partition_subtype_t values.
  115. * To find all partitions of given type, use
  116. * ESP_PARTITION_SUBTYPE_ANY.
  117. * @param label (optional) Partition label. Set this value if looking
  118. * for partition with a specific name. Pass NULL otherwise.
  119. *
  120. * @return pointer to esp_partition_t structure, or NULL if no partition is found.
  121. * This pointer is valid for the lifetime of the application.
  122. */
  123. const esp_partition_t* esp_partition_find_first(esp_partition_type_t type, esp_partition_subtype_t subtype, const char* label);
  124. /**
  125. * @brief Get esp_partition_t structure for given partition
  126. *
  127. * @param iterator Iterator obtained using esp_partition_find. Must be non-NULL.
  128. *
  129. * @return pointer to esp_partition_t structure. This pointer is valid for the lifetime
  130. * of the application.
  131. */
  132. const esp_partition_t* esp_partition_get(esp_partition_iterator_t iterator);
  133. /**
  134. * @brief Move partition iterator to the next partition found
  135. *
  136. * Any copies of the iterator will be invalid after this call.
  137. *
  138. * @param iterator Iterator obtained using esp_partition_find. Must be non-NULL.
  139. *
  140. * @return NULL if no partition was found, valid esp_partition_iterator_t otherwise.
  141. */
  142. esp_partition_iterator_t esp_partition_next(esp_partition_iterator_t iterator);
  143. /**
  144. * @brief Release partition iterator
  145. *
  146. * @param iterator Iterator obtained using esp_partition_find. Must be non-NULL.
  147. *
  148. */
  149. void esp_partition_iterator_release(esp_partition_iterator_t iterator);
  150. /**
  151. * @brief Verify partition data
  152. *
  153. * Given a pointer to partition data, verify this partition exists in the partition table (all fields match.)
  154. *
  155. * This function is also useful to take partition data which may be in a RAM buffer and convert it to a pointer to the
  156. * permanent partition data stored in flash.
  157. *
  158. * Pointers returned from this function can be compared directly to the address of any pointer returned from
  159. * esp_partition_get(), as a test for equality.
  160. *
  161. * @param partition Pointer to partition data to verify. Must be non-NULL. All fields of this structure must match the
  162. * partition table entry in flash for this function to return a successful match.
  163. *
  164. * @return
  165. * - If partition not found, returns NULL.
  166. * - If found, returns a pointer to the esp_partition_t structure in flash. This pointer is always valid for the lifetime of the application.
  167. */
  168. const esp_partition_t *esp_partition_verify(const esp_partition_t *partition);
  169. /**
  170. * @brief Read data from the partition
  171. *
  172. * @param partition Pointer to partition structure obtained using
  173. * esp_partition_find_first or esp_partition_get.
  174. * Must be non-NULL.
  175. * @param dst Pointer to the buffer where data should be stored.
  176. * Pointer must be non-NULL and buffer must be at least 'size' bytes long.
  177. * @param src_offset Address of the data to be read, relative to the
  178. * beginning of the partition.
  179. * @param size Size of data to be read, in bytes.
  180. *
  181. * @return ESP_OK, if data was read successfully;
  182. * ESP_ERR_INVALID_ARG, if src_offset exceeds partition size;
  183. * ESP_ERR_INVALID_SIZE, if read would go out of bounds of the partition;
  184. * or one of error codes from lower-level flash driver.
  185. */
  186. esp_err_t esp_partition_read(const esp_partition_t* partition,
  187. size_t src_offset, void* dst, size_t size);
  188. /**
  189. * @brief Write data to the partition
  190. *
  191. * Before writing data to flash, corresponding region of flash needs to be erased.
  192. * This can be done using esp_partition_erase_range function.
  193. *
  194. * Partitions marked with an encryption flag will automatically be
  195. * written via the spi_flash_write_encrypted() function. If writing to
  196. * an encrypted partition, all write offsets and lengths must be
  197. * multiples of 16 bytes. See the spi_flash_write_encrypted() function
  198. * for more details. Unencrypted partitions do not have this
  199. * restriction.
  200. *
  201. * @param partition Pointer to partition structure obtained using
  202. * esp_partition_find_first or esp_partition_get.
  203. * Must be non-NULL.
  204. * @param dst_offset Address where the data should be written, relative to the
  205. * beginning of the partition.
  206. * @param src Pointer to the source buffer. Pointer must be non-NULL and
  207. * buffer must be at least 'size' bytes long.
  208. * @param size Size of data to be written, in bytes.
  209. *
  210. * @note Prior to writing to flash memory, make sure it has been erased with
  211. * esp_partition_erase_range call.
  212. *
  213. * @return ESP_OK, if data was written successfully;
  214. * ESP_ERR_INVALID_ARG, if dst_offset exceeds partition size;
  215. * ESP_ERR_INVALID_SIZE, if write would go out of bounds of the partition;
  216. * or one of error codes from lower-level flash driver.
  217. */
  218. esp_err_t esp_partition_write(const esp_partition_t* partition,
  219. size_t dst_offset, const void* src, size_t size);
  220. /**
  221. * @brief Erase part of the partition
  222. *
  223. * @param partition Pointer to partition structure obtained using
  224. * esp_partition_find_first or esp_partition_get.
  225. * Must be non-NULL.
  226. * @param start_addr Address where erase operation should start. Must be aligned
  227. * to 4 kilobytes.
  228. * @param size Size of the range which should be erased, in bytes.
  229. * Must be divisible by 4 kilobytes.
  230. *
  231. * @return ESP_OK, if the range was erased successfully;
  232. * ESP_ERR_INVALID_ARG, if iterator or dst are NULL;
  233. * ESP_ERR_INVALID_SIZE, if erase would go out of bounds of the partition;
  234. * or one of error codes from lower-level flash driver.
  235. */
  236. esp_err_t esp_partition_erase_range(const esp_partition_t* partition,
  237. uint32_t start_addr, uint32_t size);
  238. /**
  239. * @brief Configure MMU to map partition into data memory
  240. *
  241. * Unlike spi_flash_mmap function, which requires a 64kB aligned base address,
  242. * this function doesn't impose such a requirement.
  243. * If offset results in a flash address which is not aligned to 64kB boundary,
  244. * address will be rounded to the lower 64kB boundary, so that mapped region
  245. * includes requested range.
  246. * Pointer returned via out_ptr argument will be adjusted to point to the
  247. * requested offset (not necessarily to the beginning of mmap-ed region).
  248. *
  249. * To release mapped memory, pass handle returned via out_handle argument to
  250. * spi_flash_munmap function.
  251. *
  252. * @param partition Pointer to partition structure obtained using
  253. * esp_partition_find_first or esp_partition_get.
  254. * Must be non-NULL.
  255. * @param offset Offset from the beginning of partition where mapping should start.
  256. * @param size Size of the area to be mapped.
  257. * @param memory Memory space where the region should be mapped
  258. * @param out_ptr Output, pointer to the mapped memory region
  259. * @param out_handle Output, handle which should be used for spi_flash_munmap call
  260. *
  261. * @return ESP_OK, if successful
  262. */
  263. esp_err_t esp_partition_mmap(const esp_partition_t* partition, uint32_t offset, uint32_t size,
  264. spi_flash_mmap_memory_t memory,
  265. const void** out_ptr, spi_flash_mmap_handle_t* out_handle);
  266. /**
  267. * @brief Get SHA-256 digest for required partition.
  268. *
  269. * For apps with SHA-256 appended to the app image, the result is the appended SHA-256 value for the app image content.
  270. * The hash is verified before returning, if app content is invalid then the function returns ESP_ERR_IMAGE_INVALID.
  271. * For apps without SHA-256 appended to the image, the result is the SHA-256 of all bytes in the app image.
  272. * For other partition types, the result is the SHA-256 of the entire partition.
  273. *
  274. * @param[in] partition Pointer to info for partition containing app or data. (fields: address, size and type, are required to be filled).
  275. * @param[out] sha_256 Returned SHA-256 digest for a given partition.
  276. *
  277. * @return
  278. * - ESP_OK: In case of successful operation.
  279. * - ESP_ERR_INVALID_ARG: The size was 0 or the sha_256 was NULL.
  280. * - ESP_ERR_NO_MEM: Cannot allocate memory for sha256 operation.
  281. * - ESP_ERR_IMAGE_INVALID: App partition doesn't contain a valid app image.
  282. * - ESP_FAIL: An allocation error occurred.
  283. */
  284. esp_err_t esp_partition_get_sha256(const esp_partition_t *partition, uint8_t *sha_256);
  285. /**
  286. * @brief Check for the identity of two partitions by SHA-256 digest.
  287. *
  288. * @param[in] partition_1 Pointer to info for partition 1 containing app or data. (fields: address, size and type, are required to be filled).
  289. * @param[in] partition_2 Pointer to info for partition 2 containing app or data. (fields: address, size and type, are required to be filled).
  290. *
  291. * @return
  292. * - True: In case of the two firmware is equal.
  293. * - False: Otherwise
  294. */
  295. bool esp_partition_check_identity(const esp_partition_t *partition_1, const esp_partition_t *partition_2);
  296. #ifdef __cplusplus
  297. }
  298. #endif
  299. #endif /* __ESP_PARTITION_H__ */