2016-11-02 10:41:58 +11:00
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2017-06-16 16:30:21 +10:00
# pragma once
2016-11-02 10:41:58 +11:00
# include <stdbool.h>
# include <esp_err.h>
2017-06-16 16:30:21 +10:00
# include "esp_flash_partitions.h"
2016-11-02 10:41:58 +11:00
# define ESP_ERR_IMAGE_BASE 0x2000
# define ESP_ERR_IMAGE_FLASH_FAIL (ESP_ERR_IMAGE_BASE + 1)
# define ESP_ERR_IMAGE_INVALID (ESP_ERR_IMAGE_BASE + 2)
/* Support for app/bootloader image parsing
Can be compiled as part of app or bootloader code.
*/
/* SPI flash mode, used in esp_image_header_t */
typedef enum {
ESP_IMAGE_SPI_MODE_QIO ,
ESP_IMAGE_SPI_MODE_QOUT ,
ESP_IMAGE_SPI_MODE_DIO ,
ESP_IMAGE_SPI_MODE_DOUT ,
ESP_IMAGE_SPI_MODE_FAST_READ ,
ESP_IMAGE_SPI_MODE_SLOW_READ
} esp_image_spi_mode_t ;
/* SPI flash clock frequency */
enum {
ESP_IMAGE_SPI_SPEED_40M ,
ESP_IMAGE_SPI_SPEED_26M ,
ESP_IMAGE_SPI_SPEED_20M ,
ESP_IMAGE_SPI_SPEED_80M = 0xF
} esp_image_spi_freq_t ;
/* Supported SPI flash sizes */
typedef enum {
ESP_IMAGE_FLASH_SIZE_1MB = 0 ,
ESP_IMAGE_FLASH_SIZE_2MB ,
ESP_IMAGE_FLASH_SIZE_4MB ,
ESP_IMAGE_FLASH_SIZE_8MB ,
ESP_IMAGE_FLASH_SIZE_16MB ,
ESP_IMAGE_FLASH_SIZE_MAX
} esp_image_flash_size_t ;
# define ESP_IMAGE_HEADER_MAGIC 0xE9
/* Main header of binary image */
typedef struct {
uint8_t magic ;
uint8_t segment_count ;
uint8_t spi_mode ; /* flash read mode (esp_image_spi_mode_t as uint8_t) */
uint8_t spi_speed : 4 ; /* flash frequency (esp_image_spi_freq_t as uint8_t) */
uint8_t spi_size : 4 ; /* flash chip size (esp_image_flash_size_t as uint8_t) */
uint32_t entry_addr ;
2017-06-27 17:25:44 +10:00
uint8_t extra_header [ 16 ] ; /* ESP32 additional header, unused by second bootloader */
2016-11-02 10:41:58 +11:00
} esp_image_header_t ;
/* Header of binary image segment */
typedef struct {
uint32_t load_addr ;
uint32_t data_len ;
} esp_image_segment_header_t ;
2017-06-16 16:30:21 +10:00
# define ESP_IMAGE_MAX_SEGMENTS 16
2016-11-02 10:41:58 +11:00
2017-06-16 16:30:21 +10:00
/* Structure to hold on-flash image metadata */
typedef struct {
uint32_t start_addr ; /* Start address of image */
esp_image_header_t image ; /* Header for entire image */
esp_image_segment_header_t segments [ ESP_IMAGE_MAX_SEGMENTS ] ; /* Per-segment header data */
uint32_t segment_data [ ESP_IMAGE_MAX_SEGMENTS ] ; /* Data offsets for each segment */
2017-06-27 17:25:30 +10:00
uint32_t image_len ; /* Length of image on flash, in bytes */
2017-06-16 16:30:21 +10:00
} esp_image_metadata_t ;
2016-11-02 10:41:58 +11:00
2017-06-16 16:30:21 +10:00
/* Mode selection for esp_image_load() */
typedef enum {
ESP_IMAGE_VERIFY , /* Verify image contents, load metadata. Print errorsors. */
ESP_IMAGE_VERIFY_SILENT , /* Verify image contents, load metadata. Don't print errors. */
# ifdef BOOTLOADER_BUILD
ESP_IMAGE_LOAD , /* Verify image contents, load to memory. Print errors. */
# endif
} esp_image_load_mode_t ;
2016-11-02 10:41:58 +11:00
/**
2017-06-16 16:30:21 +10:00
* @brief Verify and (optionally, in bootloader mode) load an app image.
2016-11-02 10:41:58 +11:00
*
2017-06-16 16:30:21 +10:00
* If encryption is enabled, data will be transparently decrypted.
*
* @param part Partition to load the app from.
* @param[out] data Pointer to the metadata structure to be filled in by this function. 'start_addr' member should be set (to the start address of the image.) Other fields will all be initialised by this function.
* @param log_errors Log errors reading the image.
2016-11-02 10:41:58 +11:00
*
* Image validation checks:
* - Magic byte
2017-06-16 16:30:21 +10:00
* - Partition smaller than 16MB
* - All segments & image fit in partition
2016-11-02 10:41:58 +11:00
* - 8 bit image checksum is valid
2017-06-16 16:30:21 +10:00
* - (Signature) if signature verification is enabled
2016-11-02 10:41:58 +11:00
*
2017-06-16 16:30:21 +10:00
* @return ESP_OK if image metadata was loaded successfully, ESP_ERR_IMAGE_FLASH_FAIL if a SPI flash error occurs, ESP_ERR_IMAGE_INVALID if the image appears invalid, ESP_ERR_INVALID_ARG if the data pointer is invalid.
*/
esp_err_t esp_image_load ( esp_image_load_mode_t mode , const esp_partition_pos_t * part , esp_image_metadata_t * data ) ;
/**
* @brief Verify the bootloader image.
2016-11-02 10:41:58 +11:00
*
2017-06-16 16:30:21 +10:00
* @param[out] If result is ESP_OK and this pointer is non-NULL, it
* will be set to the length of the bootloader image.
2016-11-02 10:41:58 +11:00
*
2017-06-16 16:30:21 +10:00
* @return As per esp_image_load_metadata().
2016-11-02 10:41:58 +11:00
*/
2017-06-16 16:30:21 +10:00
esp_err_t esp_image_verify_bootloader ( uint32_t * length ) ;
2016-11-02 10:41:58 +11:00
typedef struct {
uint32_t drom_addr ;
uint32_t drom_load_addr ;
uint32_t drom_size ;
uint32_t irom_addr ;
uint32_t irom_load_addr ;
uint32_t irom_size ;
} esp_image_flash_mapping_t ;