esp_partition.h 21 KB

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