|
|
@@ -19,58 +19,75 @@ set(ESPTOOLPY ${python} "$ENV{ESPTOOL_WRAPPER}" "${CMAKE_CURRENT_LIST_DIR}/espto
|
|
|
set(ESPSECUREPY ${python} "${CMAKE_CURRENT_LIST_DIR}/esptool/espsecure.py")
|
|
|
set(ESPEFUSEPY ${python} "${CMAKE_CURRENT_LIST_DIR}/esptool/espefuse.py")
|
|
|
set(ESPMONITOR ${python} "${idf_path}/tools/idf_monitor.py")
|
|
|
+set(ESPTOOLPY_CHIP "${chip_model}")
|
|
|
|
|
|
-if(CONFIG_SPI_FLASH_HPM_ENABLE)
|
|
|
-# When set flash frequency to 120M, must keep 1st bootloader work under ``DOUT`` mode
|
|
|
-# because on some flash chips, 120M will modify the status register,
|
|
|
-# which will make ROM won't work.
|
|
|
-# This change intends to be for esptool only and the bootloader should keep use
|
|
|
-# ``DOUT`` mode.
|
|
|
- set(ESPFLASHMODE "dout")
|
|
|
- message("Note: HPM is enabled for the flash, force the ROM bootloader into DOUT mode for stable boot on")
|
|
|
-else()
|
|
|
- set(ESPFLASHMODE ${CONFIG_ESPTOOLPY_FLASHMODE})
|
|
|
-endif()
|
|
|
-set(ESPFLASHFREQ ${CONFIG_ESPTOOLPY_FLASHFREQ})
|
|
|
-set(ESPFLASHSIZE ${CONFIG_ESPTOOLPY_FLASHSIZE})
|
|
|
+if(NOT CONFIG_APP_BUILD_TYPE_RAM AND CONFIG_APP_BUILD_GENERATE_BINARIES)
|
|
|
+ if(CONFIG_SPI_FLASH_HPM_ENABLE)
|
|
|
+ # When set flash frequency to 120M, must keep 1st bootloader work under ``DOUT`` mode
|
|
|
+ # because on some flash chips, 120M will modify the status register,
|
|
|
+ # which will make ROM won't work.
|
|
|
+ # This change intends to be for esptool only and the bootloader should keep use
|
|
|
+ # ``DOUT`` mode.
|
|
|
+ set(ESPFLASHMODE "dout")
|
|
|
+ message("Note: HPM is enabled for the flash, force the ROM bootloader into DOUT mode for stable boot on")
|
|
|
+ else()
|
|
|
+ set(ESPFLASHMODE ${CONFIG_ESPTOOLPY_FLASHMODE})
|
|
|
+ endif()
|
|
|
+ set(ESPFLASHFREQ ${CONFIG_ESPTOOLPY_FLASHFREQ})
|
|
|
+ set(ESPFLASHSIZE ${CONFIG_ESPTOOLPY_FLASHSIZE})
|
|
|
|
|
|
-set(ESPTOOLPY_CHIP "${chip_model}")
|
|
|
|
|
|
-set(esptool_elf2image_args
|
|
|
- --flash_mode ${ESPFLASHMODE}
|
|
|
- --flash_freq ${ESPFLASHFREQ}
|
|
|
- --flash_size ${ESPFLASHSIZE}
|
|
|
- )
|
|
|
+ set(esptool_elf2image_args
|
|
|
+ --flash_mode ${ESPFLASHMODE}
|
|
|
+ --flash_freq ${ESPFLASHFREQ}
|
|
|
+ --flash_size ${ESPFLASHSIZE}
|
|
|
+ )
|
|
|
|
|
|
-if(BOOTLOADER_BUILD AND CONFIG_SECURE_BOOT_V2_ENABLED)
|
|
|
- # The bootloader binary needs to be 4KB aligned in order to append a secure boot V2 signature block.
|
|
|
- # If CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES is NOT set, the bootloader
|
|
|
- # image generated is not 4KB aligned for external HSM to sign it readily.
|
|
|
- # Following esptool option --pad-to-size 4KB generates a 4K aligned bootloader image.
|
|
|
- # In case of signing during build, espsecure.py "sign_data" operation handles the 4K alignment of the image.
|
|
|
- if(NOT CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES)
|
|
|
- list(APPEND esptool_elf2image_args --pad-to-size 4KB)
|
|
|
+ if(BOOTLOADER_BUILD AND CONFIG_SECURE_BOOT_V2_ENABLED)
|
|
|
+ # The bootloader binary needs to be 4KB aligned in order to append a secure boot V2 signature block.
|
|
|
+ # If CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES is NOT set, the bootloader
|
|
|
+ # image generated is not 4KB aligned for external HSM to sign it readily.
|
|
|
+ # Following esptool option --pad-to-size 4KB generates a 4K aligned bootloader image.
|
|
|
+ # In case of signing during build, espsecure.py "sign_data" operation handles the 4K alignment of the image.
|
|
|
+ if(NOT CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES)
|
|
|
+ list(APPEND esptool_elf2image_args --pad-to-size 4KB)
|
|
|
+ endif()
|
|
|
endif()
|
|
|
-endif()
|
|
|
|
|
|
-set(MMU_PAGE_SIZE ${CONFIG_MMU_PAGE_MODE})
|
|
|
+ set(MMU_PAGE_SIZE ${CONFIG_MMU_PAGE_MODE})
|
|
|
|
|
|
-if(NOT BOOTLOADER_BUILD)
|
|
|
- list(APPEND esptool_elf2image_args --elf-sha256-offset 0xb0)
|
|
|
- # For chips that support configurable MMU page size feature
|
|
|
- # If page size is configured to values other than the default "64KB" in menuconfig,
|
|
|
- # then we need to pass the actual size to flash-mmu-page-size arg
|
|
|
- if(NOT MMU_PAGE_SIZE STREQUAL "64KB")
|
|
|
- list(APPEND esptool_elf2image_args --flash-mmu-page-size ${MMU_PAGE_SIZE})
|
|
|
+ if(NOT BOOTLOADER_BUILD)
|
|
|
+ list(APPEND esptool_elf2image_args --elf-sha256-offset 0xb0)
|
|
|
+ # For chips that support configurable MMU page size feature
|
|
|
+ # If page size is configured to values other than the default "64KB" in menuconfig,
|
|
|
+ # then we need to pass the actual size to flash-mmu-page-size arg
|
|
|
+ if(NOT MMU_PAGE_SIZE STREQUAL "64KB")
|
|
|
+ list(APPEND esptool_elf2image_args --flash-mmu-page-size ${MMU_PAGE_SIZE})
|
|
|
+ endif()
|
|
|
+ endif()
|
|
|
+
|
|
|
+ if(NOT CONFIG_SECURE_BOOT_ALLOW_SHORT_APP_PARTITION AND
|
|
|
+ NOT BOOTLOADER_BUILD)
|
|
|
+ if(CONFIG_SECURE_SIGNED_APPS_ECDSA_SCHEME)
|
|
|
+ list(APPEND esptool_elf2image_args --secure-pad)
|
|
|
+ elseif(CONFIG_SECURE_SIGNED_APPS_RSA_SCHEME OR CONFIG_SECURE_SIGNED_APPS_ECDSA_V2_SCHEME)
|
|
|
+ list(APPEND esptool_elf2image_args --secure-pad-v2)
|
|
|
+ endif()
|
|
|
endif()
|
|
|
-endif()
|
|
|
|
|
|
-if(NOT CONFIG_SECURE_BOOT_ALLOW_SHORT_APP_PARTITION AND
|
|
|
- NOT BOOTLOADER_BUILD)
|
|
|
- if(CONFIG_SECURE_SIGNED_APPS_ECDSA_SCHEME)
|
|
|
- list(APPEND esptool_elf2image_args --secure-pad)
|
|
|
- elseif(CONFIG_SECURE_SIGNED_APPS_RSA_SCHEME OR CONFIG_SECURE_SIGNED_APPS_ECDSA_V2_SCHEME)
|
|
|
- list(APPEND esptool_elf2image_args --secure-pad-v2)
|
|
|
+ if(CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE)
|
|
|
+ # Set ESPFLASHSIZE to 'detect' *after* esptool_elf2image_args are generated,
|
|
|
+ # as elf2image can't have 'detect' as an option...
|
|
|
+ set(ESPFLASHSIZE detect)
|
|
|
+
|
|
|
+ # Flash size detection updates the image header which would invalidate the appended
|
|
|
+ # SHA256 digest. Therefore, a digest is not appended in that case.
|
|
|
+ # This argument requires esptool>=4.1.
|
|
|
+ list(APPEND esptool_elf2image_args --dont-append-digest)
|
|
|
+ endif()
|
|
|
+
|
|
|
+ if(CONFIG_SECURE_SIGNED_APPS_RSA_SCHEME)
|
|
|
+ set(ESPFLASHSIZE keep)
|
|
|
endif()
|
|
|
endif()
|
|
|
|
|
|
@@ -482,7 +499,11 @@ function(esptool_py_custom_target target_name flasher_filename dependencies)
|
|
|
endfunction()
|
|
|
|
|
|
if(NOT BOOTLOADER_BUILD)
|
|
|
- set(flash_deps "partition_table_bin")
|
|
|
+ set(flash_deps "")
|
|
|
+
|
|
|
+ if(CONFIG_APP_BUILD_TYPE_APP_2NDBOOT)
|
|
|
+ list(APPEND flash_deps "partition_table_bin")
|
|
|
+ endif()
|
|
|
|
|
|
if(CONFIG_APP_BUILD_GENERATE_BINARIES)
|
|
|
list(APPEND flash_deps "app")
|