esp_partition.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. /*
  2. * SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef __ESP_PARTITION_H__
  7. #define __ESP_PARTITION_H__
  8. #include <stdint.h>
  9. #include <stdbool.h>
  10. #include <stddef.h>
  11. #include "esp_err.h"
  12. #include "esp_flash.h"
  13. #include "esp_spi_flash.h"
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /**
  18. * @file esp_partition.h
  19. * @brief Partition APIs
  20. */
  21. /**
  22. * @brief Partition type
  23. *
  24. * @note Partition types with integer value 0x00-0x3F are reserved for partition types defined by ESP-IDF.
  25. * Any other integer value 0x40-0xFE can be used by individual applications, without restriction.
  26. *
  27. * @internal Keep this enum in sync with PartitionDefinition class gen_esp32part.py @endinternal
  28. *
  29. */
  30. typedef enum {
  31. ESP_PARTITION_TYPE_APP = 0x00, //!< Application partition type
  32. ESP_PARTITION_TYPE_DATA = 0x01, //!< Data partition type
  33. ESP_PARTITION_TYPE_ANY = 0xff, //!< Used to search for partitions with any type
  34. } esp_partition_type_t;
  35. /**
  36. * @brief Partition subtype
  37. *
  38. * @note These ESP-IDF-defined partition subtypes apply to partitions of type ESP_PARTITION_TYPE_APP
  39. * and ESP_PARTITION_TYPE_DATA.
  40. *
  41. * Application-defined partition types (0x40-0xFE) can set any numeric subtype value.
  42. *
  43. * @internal Keep this enum in sync with PartitionDefinition class gen_esp32part.py @endinternal
  44. */
  45. typedef enum {
  46. ESP_PARTITION_SUBTYPE_APP_FACTORY = 0x00, //!< Factory application partition
  47. ESP_PARTITION_SUBTYPE_APP_OTA_MIN = 0x10, //!< Base for OTA partition subtypes
  48. ESP_PARTITION_SUBTYPE_APP_OTA_0 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 0, //!< OTA partition 0
  49. ESP_PARTITION_SUBTYPE_APP_OTA_1 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 1, //!< OTA partition 1
  50. ESP_PARTITION_SUBTYPE_APP_OTA_2 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 2, //!< OTA partition 2
  51. ESP_PARTITION_SUBTYPE_APP_OTA_3 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 3, //!< OTA partition 3
  52. ESP_PARTITION_SUBTYPE_APP_OTA_4 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 4, //!< OTA partition 4
  53. ESP_PARTITION_SUBTYPE_APP_OTA_5 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 5, //!< OTA partition 5
  54. ESP_PARTITION_SUBTYPE_APP_OTA_6 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 6, //!< OTA partition 6
  55. ESP_PARTITION_SUBTYPE_APP_OTA_7 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 7, //!< OTA partition 7
  56. ESP_PARTITION_SUBTYPE_APP_OTA_8 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 8, //!< OTA partition 8
  57. ESP_PARTITION_SUBTYPE_APP_OTA_9 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 9, //!< OTA partition 9
  58. ESP_PARTITION_SUBTYPE_APP_OTA_10 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 10,//!< OTA partition 10
  59. ESP_PARTITION_SUBTYPE_APP_OTA_11 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 11,//!< OTA partition 11
  60. ESP_PARTITION_SUBTYPE_APP_OTA_12 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 12,//!< OTA partition 12
  61. ESP_PARTITION_SUBTYPE_APP_OTA_13 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 13,//!< OTA partition 13
  62. ESP_PARTITION_SUBTYPE_APP_OTA_14 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 14,//!< OTA partition 14
  63. ESP_PARTITION_SUBTYPE_APP_OTA_15 = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 15,//!< OTA partition 15
  64. ESP_PARTITION_SUBTYPE_APP_OTA_MAX = ESP_PARTITION_SUBTYPE_APP_OTA_MIN + 16,//!< Max subtype of OTA partition
  65. ESP_PARTITION_SUBTYPE_APP_TEST = 0x20, //!< Test application partition
  66. ESP_PARTITION_SUBTYPE_DATA_OTA = 0x00, //!< OTA selection partition
  67. ESP_PARTITION_SUBTYPE_DATA_PHY = 0x01, //!< PHY init data partition
  68. ESP_PARTITION_SUBTYPE_DATA_NVS = 0x02, //!< NVS partition
  69. ESP_PARTITION_SUBTYPE_DATA_COREDUMP = 0x03, //!< COREDUMP partition
  70. ESP_PARTITION_SUBTYPE_DATA_NVS_KEYS = 0x04, //!< Partition for NVS keys
  71. ESP_PARTITION_SUBTYPE_DATA_EFUSE_EM = 0x05, //!< Partition for emulate eFuse bits
  72. ESP_PARTITION_SUBTYPE_DATA_UNDEFINED = 0x06, //!< Undefined (or unspecified) data partition
  73. ESP_PARTITION_SUBTYPE_DATA_ESPHTTPD = 0x80, //!< ESPHTTPD partition
  74. ESP_PARTITION_SUBTYPE_DATA_FAT = 0x81, //!< FAT partition
  75. ESP_PARTITION_SUBTYPE_DATA_SPIFFS = 0x82, //!< SPIFFS partition
  76. ESP_PARTITION_SUBTYPE_ANY = 0xff, //!< Used to search for partitions with any subtype
  77. } esp_partition_subtype_t;
  78. /**
  79. * @brief Convenience macro to get esp_partition_subtype_t value for the i-th OTA partition
  80. */
  81. #define ESP_PARTITION_SUBTYPE_OTA(i) ((esp_partition_subtype_t)(ESP_PARTITION_SUBTYPE_APP_OTA_MIN + ((i) & 0xf)))
  82. /**
  83. * @brief Opaque partition iterator type
  84. */
  85. typedef struct esp_partition_iterator_opaque_* esp_partition_iterator_t;
  86. /**
  87. * @brief partition information structure
  88. *
  89. * This is not the format in flash, that format is esp_partition_info_t.
  90. *
  91. * However, this is the format used by this API.
  92. */
  93. typedef struct {
  94. esp_flash_t* flash_chip; /*!< SPI flash chip on which the partition resides */
  95. esp_partition_type_t type; /*!< partition type (app/data) */
  96. esp_partition_subtype_t subtype; /*!< partition subtype */
  97. uint32_t address; /*!< starting address of the partition in flash */
  98. uint32_t size; /*!< size of the partition, in bytes */
  99. char label[17]; /*!< partition label, zero-terminated ASCII string */
  100. bool encrypted; /*!< flag is set to true if partition is encrypted */
  101. } esp_partition_t;
  102. /**
  103. * @brief Find partition based on one or more parameters
  104. *
  105. * @param type Partition type, one of esp_partition_type_t values or an 8-bit unsigned integer.
  106. * To find all partitions, no matter the type, use ESP_PARTITION_TYPE_ANY, and set
  107. * subtype argument to ESP_PARTITION_SUBTYPE_ANY.
  108. * @param subtype Partition subtype, one of esp_partition_subtype_t values or an 8-bit unsigned integer.
  109. * To find all partitions of given type, use ESP_PARTITION_SUBTYPE_ANY.
  110. * @param label (optional) Partition label. Set this value if looking
  111. * for partition with a specific name. Pass NULL otherwise.
  112. *
  113. * @return iterator which can be used to enumerate all the partitions found,
  114. * or NULL if no partitions were found.
  115. * Iterator obtained through this function has to be released
  116. * using esp_partition_iterator_release when not used any more.
  117. */
  118. esp_partition_iterator_t esp_partition_find(esp_partition_type_t type, esp_partition_subtype_t subtype, const char* label);
  119. /**
  120. * @brief Find first partition based on one or more parameters
  121. *
  122. * @param type Partition type, one of esp_partition_type_t values or an 8-bit unsigned integer.
  123. * To find all partitions, no matter the type, use ESP_PARTITION_TYPE_ANY, and set
  124. * subtype argument to ESP_PARTITION_SUBTYPE_ANY.
  125. * @param subtype Partition subtype, one of esp_partition_subtype_t values or an 8-bit unsigned integer
  126. * To find all partitions of given type, use ESP_PARTITION_SUBTYPE_ANY.
  127. * @param label (optional) Partition label. Set this value if looking
  128. * for partition with a specific name. Pass NULL otherwise.
  129. *
  130. * @return pointer to esp_partition_t structure, or NULL if no partition is found.
  131. * This pointer is valid for the lifetime of the application.
  132. */
  133. const esp_partition_t* esp_partition_find_first(esp_partition_type_t type, esp_partition_subtype_t subtype, const char* label);
  134. /**
  135. * @brief Get esp_partition_t structure for given partition
  136. *
  137. * @param iterator Iterator obtained using esp_partition_find. Must be non-NULL.
  138. *
  139. * @return pointer to esp_partition_t structure. This pointer is valid for the lifetime
  140. * of the application.
  141. */
  142. const esp_partition_t* esp_partition_get(esp_partition_iterator_t iterator);
  143. /**
  144. * @brief Move partition iterator to the next partition found
  145. *
  146. * Any copies of the iterator will be invalid after this call.
  147. *
  148. * @param iterator Iterator obtained using esp_partition_find. Must be non-NULL.
  149. *
  150. * @return NULL if no partition was found, valid esp_partition_iterator_t otherwise.
  151. */
  152. esp_partition_iterator_t esp_partition_next(esp_partition_iterator_t iterator);
  153. /**
  154. * @brief Release partition iterator
  155. *
  156. * @param iterator Iterator obtained using esp_partition_find.
  157. * The iterator is allowed to be NULL, so it is not necessary to check its value
  158. * before calling this function.
  159. *
  160. */
  161. void esp_partition_iterator_release(esp_partition_iterator_t iterator);
  162. /**
  163. * @brief Verify partition data
  164. *
  165. * Given a pointer to partition data, verify this partition exists in the partition table (all fields match.)
  166. *
  167. * This function is also useful to take partition data which may be in a RAM buffer and convert it to a pointer to the
  168. * permanent partition data stored in flash.
  169. *
  170. * Pointers returned from this function can be compared directly to the address of any pointer returned from
  171. * esp_partition_get(), as a test for equality.
  172. *
  173. * @param partition Pointer to partition data to verify. Must be non-NULL. All fields of this structure must match the
  174. * partition table entry in flash for this function to return a successful match.
  175. *
  176. * @return
  177. * - If partition not found, returns NULL.
  178. * - If found, returns a pointer to the esp_partition_t structure in flash. This pointer is always valid for the lifetime of the application.
  179. */
  180. const esp_partition_t* esp_partition_verify(const esp_partition_t* partition);
  181. /**
  182. * @brief Read data from the partition
  183. *
  184. * Partitions marked with an encryption flag will automatically be
  185. * be read and decrypted via a cache mapping.
  186. *
  187. * @param partition Pointer to partition structure obtained using
  188. * esp_partition_find_first or esp_partition_get.
  189. * Must be non-NULL.
  190. * @param dst Pointer to the buffer where data should be stored.
  191. * Pointer must be non-NULL and buffer must be at least 'size' bytes long.
  192. * @param src_offset Address of the data to be read, relative to the
  193. * beginning of the partition.
  194. * @param size Size of data to be read, in bytes.
  195. *
  196. * @return ESP_OK, if data was read successfully;
  197. * ESP_ERR_INVALID_ARG, if src_offset exceeds partition size;
  198. * ESP_ERR_INVALID_SIZE, if read would go out of bounds of the partition;
  199. * or one of error codes from lower-level flash driver.
  200. */
  201. esp_err_t esp_partition_read(const esp_partition_t* partition,
  202. size_t src_offset, void* dst, size_t size);
  203. /**
  204. * @brief Write data to the partition
  205. *
  206. * Before writing data to flash, corresponding region of flash needs to be erased.
  207. * This can be done using esp_partition_erase_range function.
  208. *
  209. * Partitions marked with an encryption flag will automatically be
  210. * written via the spi_flash_write_encrypted() function. If writing to
  211. * an encrypted partition, all write offsets and lengths must be
  212. * multiples of 16 bytes. See the spi_flash_write_encrypted() function
  213. * for more details. Unencrypted partitions do not have this
  214. * restriction.
  215. *
  216. * @param partition Pointer to partition structure obtained using
  217. * esp_partition_find_first or esp_partition_get.
  218. * Must be non-NULL.
  219. * @param dst_offset Address where the data should be written, relative to the
  220. * beginning of the partition.
  221. * @param src Pointer to the source buffer. Pointer must be non-NULL and
  222. * buffer must be at least 'size' bytes long.
  223. * @param size Size of data to be written, in bytes.
  224. *
  225. * @note Prior to writing to flash memory, make sure it has been erased with
  226. * esp_partition_erase_range call.
  227. *
  228. * @return ESP_OK, if data was written successfully;
  229. * ESP_ERR_INVALID_ARG, if dst_offset exceeds partition size;
  230. * ESP_ERR_INVALID_SIZE, if write would go out of bounds of the partition;
  231. * or one of error codes from lower-level flash driver.
  232. */
  233. esp_err_t esp_partition_write(const esp_partition_t* partition,
  234. size_t dst_offset, const void* src, size_t size);
  235. /**
  236. * @brief Read data from the partition without any transformation/decryption.
  237. *
  238. * @note This function is essentially the same as \c esp_partition_read() above.
  239. * It just never decrypts data but returns it as is.
  240. *
  241. * @param partition Pointer to partition structure obtained using
  242. * esp_partition_find_first or esp_partition_get.
  243. * Must be non-NULL.
  244. * @param dst Pointer to the buffer where data should be stored.
  245. * Pointer must be non-NULL and buffer must be at least 'size' bytes long.
  246. * @param src_offset Address of the data to be read, relative to the
  247. * beginning of the partition.
  248. * @param size Size of data to be read, in bytes.
  249. *
  250. * @return ESP_OK, if data was read successfully;
  251. * ESP_ERR_INVALID_ARG, if src_offset exceeds partition size;
  252. * ESP_ERR_INVALID_SIZE, if read would go out of bounds of the partition;
  253. * or one of error codes from lower-level flash driver.
  254. */
  255. esp_err_t esp_partition_read_raw(const esp_partition_t* partition,
  256. size_t src_offset, void* dst, size_t size);
  257. /**
  258. * @brief Write data to the partition without any transformation/encryption.
  259. *
  260. * @note This function is essentially the same as \c esp_partition_write() above.
  261. * It just never encrypts data but writes it as is.
  262. *
  263. * Before writing data to flash, corresponding region of flash needs to be erased.
  264. * This can be done using esp_partition_erase_range function.
  265. *
  266. * @param partition Pointer to partition structure obtained using
  267. * esp_partition_find_first or esp_partition_get.
  268. * Must be non-NULL.
  269. * @param dst_offset Address where the data should be written, relative to the
  270. * beginning of the partition.
  271. * @param src Pointer to the source buffer. Pointer must be non-NULL and
  272. * buffer must be at least 'size' bytes long.
  273. * @param size Size of data to be written, in bytes.
  274. *
  275. * @note Prior to writing to flash memory, make sure it has been erased with
  276. * esp_partition_erase_range call.
  277. *
  278. * @return ESP_OK, if data was written successfully;
  279. * ESP_ERR_INVALID_ARG, if dst_offset exceeds partition size;
  280. * ESP_ERR_INVALID_SIZE, if write would go out of bounds of the partition;
  281. * or one of the error codes from lower-level flash driver.
  282. */
  283. esp_err_t esp_partition_write_raw(const esp_partition_t* partition,
  284. size_t dst_offset, const void* src, size_t size);
  285. /**
  286. * @brief Erase part of the partition
  287. *
  288. * @param partition Pointer to partition structure obtained using
  289. * esp_partition_find_first or esp_partition_get.
  290. * Must be non-NULL.
  291. * @param offset Offset from the beginning of partition where erase operation
  292. * should start. Must be aligned to 4 kilobytes.
  293. * @param size Size of the range which should be erased, in bytes.
  294. * Must be divisible by 4 kilobytes.
  295. *
  296. * @return ESP_OK, if the range was erased successfully;
  297. * ESP_ERR_INVALID_ARG, if iterator or dst are NULL;
  298. * ESP_ERR_INVALID_SIZE, if erase would go out of bounds of the partition;
  299. * or one of error codes from lower-level flash driver.
  300. */
  301. esp_err_t esp_partition_erase_range(const esp_partition_t* partition,
  302. size_t offset, size_t size);
  303. /**
  304. * @brief Configure MMU to map partition into data memory
  305. *
  306. * Unlike spi_flash_mmap function, which requires a 64kB aligned base address,
  307. * this function doesn't impose such a requirement.
  308. * If offset results in a flash address which is not aligned to 64kB boundary,
  309. * address will be rounded to the lower 64kB boundary, so that mapped region
  310. * includes requested range.
  311. * Pointer returned via out_ptr argument will be adjusted to point to the
  312. * requested offset (not necessarily to the beginning of mmap-ed region).
  313. *
  314. * To release mapped memory, pass handle returned via out_handle argument to
  315. * spi_flash_munmap function.
  316. *
  317. * @param partition Pointer to partition structure obtained using
  318. * esp_partition_find_first or esp_partition_get.
  319. * Must be non-NULL.
  320. * @param offset Offset from the beginning of partition where mapping should start.
  321. * @param size Size of the area to be mapped.
  322. * @param memory Memory space where the region should be mapped
  323. * @param out_ptr Output, pointer to the mapped memory region
  324. * @param out_handle Output, handle which should be used for spi_flash_munmap call
  325. *
  326. * @return ESP_OK, if successful
  327. */
  328. esp_err_t esp_partition_mmap(const esp_partition_t* partition, size_t offset, size_t size,
  329. spi_flash_mmap_memory_t memory,
  330. const void** out_ptr, spi_flash_mmap_handle_t* out_handle);
  331. /**
  332. * @brief Get SHA-256 digest for required partition.
  333. *
  334. * For apps with SHA-256 appended to the app image, the result is the appended SHA-256 value for the app image content.
  335. * The hash is verified before returning, if app content is invalid then the function returns ESP_ERR_IMAGE_INVALID.
  336. * For apps without SHA-256 appended to the image, the result is the SHA-256 of all bytes in the app image.
  337. * For other partition types, the result is the SHA-256 of the entire partition.
  338. *
  339. * @param[in] partition Pointer to info for partition containing app or data. (fields: address, size and type, are required to be filled).
  340. * @param[out] sha_256 Returned SHA-256 digest for a given partition.
  341. *
  342. * @return
  343. * - ESP_OK: In case of successful operation.
  344. * - ESP_ERR_INVALID_ARG: The size was 0 or the sha_256 was NULL.
  345. * - ESP_ERR_NO_MEM: Cannot allocate memory for sha256 operation.
  346. * - ESP_ERR_IMAGE_INVALID: App partition doesn't contain a valid app image.
  347. * - ESP_FAIL: An allocation error occurred.
  348. */
  349. esp_err_t esp_partition_get_sha256(const esp_partition_t* partition, uint8_t* sha_256);
  350. /**
  351. * @brief Check for the identity of two partitions by SHA-256 digest.
  352. *
  353. * @param[in] partition_1 Pointer to info for partition 1 containing app or data. (fields: address, size and type, are required to be filled).
  354. * @param[in] partition_2 Pointer to info for partition 2 containing app or data. (fields: address, size and type, are required to be filled).
  355. *
  356. * @return
  357. * - True: In case of the two firmware is equal.
  358. * - False: Otherwise
  359. */
  360. bool esp_partition_check_identity(const esp_partition_t* partition_1, const esp_partition_t* partition_2);
  361. /**
  362. * @brief Register a partition on an external flash chip
  363. *
  364. * This API allows designating certain areas of external flash chips (identified by the esp_flash_t structure)
  365. * as partitions. This allows using them with components which access SPI flash through the esp_partition API.
  366. *
  367. * @param flash_chip Pointer to the structure identifying the flash chip
  368. * @param offset Address in bytes, where the partition starts
  369. * @param size Size of the partition in bytes
  370. * @param label Partition name
  371. * @param type One of the partition types (ESP_PARTITION_TYPE_*), or an integer. Note that applications can not be booted from external flash
  372. * chips, so using ESP_PARTITION_TYPE_APP is not supported.
  373. * @param subtype One of the partition subtypes (ESP_PARTITION_SUBTYPE_*), or an integer.
  374. * @param[out] out_partition Output, if non-NULL, receives the pointer to the resulting esp_partition_t structure
  375. * @return
  376. * - ESP_OK on success
  377. * - ESP_ERR_NOT_SUPPORTED if CONFIG_CONFIG_SPI_FLASH_USE_LEGACY_IMPL is enabled
  378. * - ESP_ERR_NO_MEM if memory allocation has failed
  379. * - ESP_ERR_INVALID_ARG if the new partition overlaps another partition on the same flash chip
  380. * - ESP_ERR_INVALID_SIZE if the partition doesn't fit into the flash chip size
  381. */
  382. esp_err_t esp_partition_register_external(esp_flash_t* flash_chip, size_t offset, size_t size,
  383. const char* label, esp_partition_type_t type, esp_partition_subtype_t subtype,
  384. const esp_partition_t** out_partition);
  385. /**
  386. * @brief Deregister the partition previously registered using esp_partition_register_external
  387. * @param partition pointer to the partition structure obtained from esp_partition_register_external,
  388. * @return
  389. * - ESP_OK on success
  390. * - ESP_ERR_NOT_FOUND if the partition pointer is not found
  391. * - ESP_ERR_INVALID_ARG if the partition comes from the partition table
  392. * - ESP_ERR_INVALID_ARG if the partition was not registered using
  393. * esp_partition_register_external function.
  394. */
  395. esp_err_t esp_partition_deregister_external(const esp_partition_t* partition);
  396. #ifdef __cplusplus
  397. }
  398. #endif
  399. #endif /* __ESP_PARTITION_H__ */