123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- /*
- * Copyright (c) 2017 Nordic Semiconductor ASA
- * Copyright (c) 2016 Linaro Limited
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #ifndef ZEPHYR_INCLUDE_DFU_MCUBOOT_H_
- #define ZEPHYR_INCLUDE_DFU_MCUBOOT_H_
- #include <stdbool.h>
- #include <stddef.h>
- #include <zephyr/types.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifdef BOOT_SWAP_TYPE_NONE
- #if BOOT_SWAP_TYPE_NONE != 1 /*ensure the same definition in MCUboot */
- #error "definition incompatible"
- #endif
- #else
- /** Attempt to boot the contents of slot 0. */
- #define BOOT_SWAP_TYPE_NONE 1
- #endif
- #ifdef BOOT_SWAP_TYPE_TEST
- #if BOOT_SWAP_TYPE_TEST != 2 /*ensure the same definition in MCUboot */
- #error "definition incompatible"
- #endif
- #else
- /** Swap to slot 1. Absent a confirm command, revert back on next boot. */
- #define BOOT_SWAP_TYPE_TEST 2
- #endif
- #ifdef BOOT_SWAP_TYPE_PERM
- #if BOOT_SWAP_TYPE_PERM != 3 /*ensure the same definition in MCUboot */
- #error "definition incompatible"
- #endif
- #else
- /** Swap to slot 1, and permanently switch to booting its contents. */
- #define BOOT_SWAP_TYPE_PERM 3
- #endif
- #ifdef BOOT_SWAP_TYPE_REVERT
- #if BOOT_SWAP_TYPE_REVERT != 4 /*ensure the same definition in MCUboot */
- #error "definition incompatible"
- #endif
- #else
- /** Swap back to alternate slot. A confirm changes this state to NONE. */
- #define BOOT_SWAP_TYPE_REVERT 4
- #endif
- #ifdef BOOT_SWAP_TYPE_FAIL
- #if BOOT_SWAP_TYPE_FAIL != 5 /*ensure the same definition in MCUboot */
- #error "definition incompatible"
- #endif
- #else
- /** Swap failed because image to be run is not valid */
- #define BOOT_SWAP_TYPE_FAIL 5
- #endif
- #define BOOT_IMG_VER_STRLEN_MAX 25 /* 255.255.65535.4294967295\0 */
- /* Trailer: */
- #define BOOT_MAX_ALIGN 8
- #ifndef BOOT_MAGIC_SZ
- #define BOOT_MAGIC_SZ 16
- #endif
- #define BOOT_TRAILER_IMG_STATUS_OFFS(bank_area) ((bank_area)->fa_size -\
- BOOT_MAGIC_SZ -\
- BOOT_MAX_ALIGN * 2)
- /**
- * @brief MCUboot image header representation for image version
- *
- * The header for an MCUboot firmware image contains an embedded
- * version number, in semantic versioning format. This structure
- * represents the information it contains.
- */
- struct mcuboot_img_sem_ver {
- uint8_t major;
- uint8_t minor;
- uint16_t revision;
- uint32_t build_num;
- };
- /**
- * @brief Model for the MCUboot image header as of version 1
- *
- * This represents the data present in the image header, in version 1
- * of the header format.
- *
- * Some information present in the header but not currently relevant
- * to applications is omitted.
- */
- struct mcuboot_img_header_v1 {
- /** The size of the image, in bytes. */
- uint32_t image_size;
- /** The image version. */
- struct mcuboot_img_sem_ver sem_ver;
- };
- /**
- * @brief Model for the MCUBoot image header
- *
- * This contains the decoded image header, along with the major
- * version of MCUboot that the header was built for.
- *
- * (The MCUboot project guarantees that incompatible changes to the
- * image header will result in major version changes to the bootloader
- * itself, and will be detectable in the persistent representation of
- * the header.)
- */
- struct mcuboot_img_header {
- /**
- * The version of MCUboot the header is built for.
- *
- * The value 1 corresponds to MCUboot versions 1.x.y.
- */
- uint32_t mcuboot_version;
- /**
- * The header information. It is only valid to access fields
- * in the union member corresponding to the mcuboot_version
- * field above.
- */
- union {
- /** Header information for MCUboot version 1. */
- struct mcuboot_img_header_v1 v1;
- } h;
- };
- /**
- * @brief Read the MCUboot image header information from an image bank.
- *
- * This attempts to parse the image header,
- * From the start of the @a area_id image.
- *
- * @param area_id flash_area ID of image bank which stores the image.
- * @param header On success, the returned header information is available
- * in this structure.
- * @param header_size Size of the header structure passed by the caller.
- * If this is not large enough to contain all of the
- * necessary information, an error is returned.
- * @return Zero on success, a negative value on error.
- */
- int boot_read_bank_header(uint8_t area_id,
- struct mcuboot_img_header *header,
- size_t header_size);
- /**
- * @brief Check if the currently running image is confirmed as OK.
- *
- * MCUboot can perform "test" upgrades. When these occur, a new
- * firmware image is installed and booted, but the old version will be
- * reverted at the next reset unless the new image explicitly marks
- * itself OK.
- *
- * This routine can be used to check if the currently running image
- * has been marked as OK.
- *
- * @return True if the image is confirmed as OK, false otherwise.
- * @see boot_write_img_confirmed()
- */
- bool boot_is_img_confirmed(void);
- /**
- * @brief Marks the currently running image as confirmed.
- *
- * This routine attempts to mark the currently running firmware image
- * as OK, which will install it permanently, preventing MCUboot from
- * reverting it for an older image at the next reset.
- *
- * This routine is safe to call if the current image has already been
- * confirmed. It will return a successful result in this case.
- *
- * @return 0 on success, negative errno code on fail.
- */
- int boot_write_img_confirmed(void);
- /**
- * @brief Marks the image with the given index in the primary slot as confirmed.
- *
- * This routine attempts to mark the firmware image in the primary slot
- * as OK, which will install it permanently, preventing MCUboot from
- * reverting it for an older image at the next reset.
- *
- * This routine is safe to call if the current image has already been
- * confirmed. It will return a successful result in this case.
- *
- * @param image_index Image pair index.
- *
- * @return 0 on success, negative errno code on fail.
- */
- int boot_write_img_confirmed_multi(int image_index);
- /**
- * @brief Determines the action, if any, that mcuboot will take on the next
- * reboot.
- * @return a BOOT_SWAP_TYPE_[...] constant on success, negative errno code on
- * fail.
- */
- int mcuboot_swap_type(void);
- /**
- * @brief Determines the action, if any, that mcuboot will take on the next
- * reboot.
- *
- * @param image_index Image pair index.
- *
- * @return a BOOT_SWAP_TYPE_[...] constant on success, negative errno code on
- * fail.
- */
- int mcuboot_swap_type_multi(int image_index);
- /** Boot upgrade request modes */
- #define BOOT_UPGRADE_TEST 0
- #define BOOT_UPGRADE_PERMANENT 1
- /**
- * @brief Marks the image in slot 1 as pending. On the next reboot, the system
- * will perform a boot of the slot 1 image.
- *
- * @param permanent Whether the image should be used permanently or
- * only tested once:
- * BOOT_UPGRADE_TEST=run image once, then confirm or revert.
- * BOOT_UPGRADE_PERMANENT=run image forever.
- * @return 0 on success, negative errno code on fail.
- */
- int boot_request_upgrade(int permanent);
- /**
- * @brief Marks the image with the given index in the secondary slot as pending.
- * On the next reboot, the system will perform a boot of the secondary slot
- * image.
- *
- * @param image_index Image pair index.
- * @param permanent Whether the image should be used permanently or
- * only tested once:
- * BOOT_UPGRADE_TEST=run image once, then confirm or revert.
- * BOOT_UPGRADE_PERMANENT=run image forever.
- * @return 0 on success, negative errno code on fail.
- */
- int boot_request_upgrade_multi(int image_index, int permanent);
- /**
- * @brief Erase the image Bank.
- *
- * @param area_id flash_area ID of image bank to be erased.
- * @return 0 on success, negative errno code on fail.
- */
- int boot_erase_img_bank(uint8_t area_id);
- #ifdef __cplusplus
- }
- #endif
- #endif /* ZEPHYR_INCLUDE_DFU_MCUBOOT_H_ */
|