esp_app_format.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. // Copyright 2015-2019 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. #pragma once
  14. /**
  15. * @brief ESP chip ID
  16. *
  17. */
  18. typedef enum {
  19. ESP_CHIP_ID_ESP32 = 0x0000, /*!< chip ID: ESP32 */
  20. ESP_CHIP_ID_ESP32S2 = 0x0002, /*!< chip ID: ESP32S2 */
  21. ESP_CHIP_ID_INVALID = 0xFFFF /*!< Invalid chip ID (we defined it to make sure the esp_chip_id_t is 2 bytes size) */
  22. } __attribute__((packed)) esp_chip_id_t;
  23. /** @cond */
  24. _Static_assert(sizeof(esp_chip_id_t) == 2, "esp_chip_id_t should be 16 bit");
  25. /** @endcond */
  26. /**
  27. * @brief SPI flash mode, used in esp_image_header_t
  28. */
  29. typedef enum {
  30. ESP_IMAGE_SPI_MODE_QIO, /*!< SPI mode QIO */
  31. ESP_IMAGE_SPI_MODE_QOUT, /*!< SPI mode QOUT */
  32. ESP_IMAGE_SPI_MODE_DIO, /*!< SPI mode DIO */
  33. ESP_IMAGE_SPI_MODE_DOUT, /*!< SPI mode DOUT */
  34. ESP_IMAGE_SPI_MODE_FAST_READ, /*!< SPI mode FAST_READ */
  35. ESP_IMAGE_SPI_MODE_SLOW_READ /*!< SPI mode SLOW_READ */
  36. } esp_image_spi_mode_t;
  37. /**
  38. * @brief SPI flash clock frequency
  39. */
  40. typedef enum {
  41. ESP_IMAGE_SPI_SPEED_40M, /*!< SPI clock frequency 40 MHz */
  42. ESP_IMAGE_SPI_SPEED_26M, /*!< SPI clock frequency 26 MHz */
  43. ESP_IMAGE_SPI_SPEED_20M, /*!< SPI clock frequency 20 MHz */
  44. ESP_IMAGE_SPI_SPEED_80M = 0xF /*!< SPI clock frequency 80 MHz */
  45. } esp_image_spi_freq_t;
  46. /**
  47. * @brief Supported SPI flash sizes
  48. */
  49. typedef enum {
  50. ESP_IMAGE_FLASH_SIZE_1MB = 0, /*!< SPI flash size 1 MB */
  51. ESP_IMAGE_FLASH_SIZE_2MB, /*!< SPI flash size 2 MB */
  52. ESP_IMAGE_FLASH_SIZE_4MB, /*!< SPI flash size 4 MB */
  53. ESP_IMAGE_FLASH_SIZE_8MB, /*!< SPI flash size 8 MB */
  54. ESP_IMAGE_FLASH_SIZE_16MB, /*!< SPI flash size 16 MB */
  55. ESP_IMAGE_FLASH_SIZE_MAX /*!< SPI flash size MAX */
  56. } esp_image_flash_size_t;
  57. #define ESP_IMAGE_HEADER_MAGIC 0xE9 /*!< The magic word for the esp_image_header_t structure. */
  58. /**
  59. * @brief Main header of binary image
  60. */
  61. typedef struct {
  62. uint8_t magic; /*!< Magic word ESP_IMAGE_HEADER_MAGIC */
  63. uint8_t segment_count; /*!< Count of memory segments */
  64. uint8_t spi_mode; /*!< flash read mode (esp_image_spi_mode_t as uint8_t) */
  65. uint8_t spi_speed: 4; /*!< flash frequency (esp_image_spi_freq_t as uint8_t) */
  66. uint8_t spi_size: 4; /*!< flash chip size (esp_image_flash_size_t as uint8_t) */
  67. uint32_t entry_addr; /*!< Entry address */
  68. uint8_t wp_pin; /*!< WP pin when SPI pins set via efuse (read by ROM bootloader,
  69. * the IDF bootloader uses software to configure the WP
  70. * pin and sets this field to 0xEE=disabled) */
  71. uint8_t spi_pin_drv[3]; /*!< Drive settings for the SPI flash pins (read by ROM bootloader) */
  72. esp_chip_id_t chip_id; /*!< Chip identification number */
  73. uint8_t min_chip_rev; /*!< Minimum chip revision supported by image */
  74. uint8_t reserved[8]; /*!< Reserved bytes in additional header space, currently unused */
  75. uint8_t hash_appended; /*!< If 1, a SHA256 digest "simple hash" (of the entire image) is appended after the checksum.
  76. * Included in image length. This digest
  77. * is separate to secure boot and only used for detecting corruption.
  78. * For secure boot signed images, the signature
  79. * is appended after this (and the simple hash is included in the signed data). */
  80. } __attribute__((packed)) esp_image_header_t;
  81. /** @cond */
  82. _Static_assert(sizeof(esp_image_header_t) == 24, "binary image header should be 24 bytes");
  83. /** @endcond */
  84. /**
  85. * @brief Header of binary image segment
  86. */
  87. typedef struct {
  88. uint32_t load_addr; /*!< Address of segment */
  89. uint32_t data_len; /*!< Length of data */
  90. } esp_image_segment_header_t;
  91. #define ESP_IMAGE_MAX_SEGMENTS 16 /*!< Max count of segments in the image. */
  92. #define ESP_APP_DESC_MAGIC_WORD 0xABCD5432 /*!< The magic word for the esp_app_desc structure that is in DROM. */
  93. /**
  94. * @brief Description about application.
  95. */
  96. typedef struct {
  97. uint32_t magic_word; /*!< Magic word ESP_APP_DESC_MAGIC_WORD */
  98. uint32_t secure_version; /*!< Secure version */
  99. uint32_t reserv1[2]; /*!< reserv1 */
  100. char version[32]; /*!< Application version */
  101. char project_name[32]; /*!< Project name */
  102. char time[16]; /*!< Compile time */
  103. char date[16]; /*!< Compile date*/
  104. char idf_ver[32]; /*!< Version IDF */
  105. uint8_t app_elf_sha256[32]; /*!< sha256 of elf file */
  106. uint32_t reserv2[20]; /*!< reserv2 */
  107. } esp_app_desc_t;
  108. /** @cond */
  109. _Static_assert(sizeof(esp_app_desc_t) == 256, "esp_app_desc_t should be 256 bytes");
  110. /** @endcond */