| 
									
										
										
										
											2018-01-19 15:47:49 +11:00
										 |  |  | # Set some global esptool.py variables
 | 
					
						
							| 
									
										
										
										
											2018-01-23 17:08:28 +11:00
										 |  |  | #
 | 
					
						
							|  |  |  | # Many of these are read when generating flash_app_args & flash_project_args
 | 
					
						
							| 
									
										
										
										
											2019-11-28 21:09:45 +08:00
										 |  |  | idf_build_get_property(target IDF_TARGET)
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  | idf_build_get_property(python PYTHON)
 | 
					
						
							| 
									
										
										
										
											2020-05-18 22:11:11 +02:00
										 |  |  | idf_build_get_property(idf_path IDF_PATH)
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-07 14:12:07 +08:00
										 |  |  | set(chip_model ${target})
 | 
					
						
							| 
									
										
										
										
											2021-10-18 17:02:19 +08:00
										 |  |  | # TODO: remove this if block when esp32h2 beta1 is no longer supported
 | 
					
						
							|  |  |  | if(target STREQUAL "esp32h2")
 | 
					
						
							|  |  |  |     if(CONFIG_IDF_TARGET_ESP32H2_BETA_VERSION_1)
 | 
					
						
							|  |  |  |         set(chip_model esp32h2beta1)
 | 
					
						
							|  |  |  |     elseif(CONFIG_IDF_TARGET_ESP32H2_BETA_VERSION_2)
 | 
					
						
							|  |  |  |         set(chip_model esp32h2beta2)
 | 
					
						
							|  |  |  |     endif()
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2020-09-07 14:12:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-15 16:19:25 +02:00
										 |  |  | set(ESPTOOLPY ${python} "$ENV{ESPTOOL_WRAPPER}" "${CMAKE_CURRENT_LIST_DIR}/esptool/esptool.py" --chip ${chip_model})
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  | set(ESPSECUREPY ${python} "${CMAKE_CURRENT_LIST_DIR}/esptool/espsecure.py")
 | 
					
						
							|  |  |  | set(ESPEFUSEPY ${python} "${CMAKE_CURRENT_LIST_DIR}/esptool/espefuse.py")
 | 
					
						
							| 
									
										
										
										
											2020-05-18 22:11:11 +02:00
										 |  |  | set(ESPMONITOR ${python} "${idf_path}/tools/idf_monitor.py")
 | 
					
						
							| 
									
										
										
										
											2018-01-19 15:47:49 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-23 15:19:56 +08:00
										 |  |  | 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()
 | 
					
						
							| 
									
										
										
										
											2020-01-22 17:40:10 +01:00
										 |  |  | set(ESPFLASHFREQ ${CONFIG_ESPTOOLPY_FLASHFREQ})
 | 
					
						
							|  |  |  | set(ESPFLASHSIZE ${CONFIG_ESPTOOLPY_FLASHSIZE})
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-30 20:12:08 +08:00
										 |  |  | set(ESPTOOLPY_CHIP "${chip_model}")
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-25 11:33:50 +02:00
										 |  |  | set(esptool_elf2image_args | 
					
						
							| 
									
										
										
										
											2020-01-22 17:40:10 +01:00
										 |  |  |     --flash_mode ${ESPFLASHMODE}
 | 
					
						
							|  |  |  |     --flash_freq ${ESPFLASHFREQ}
 | 
					
						
							|  |  |  |     --flash_size ${ESPFLASHSIZE}
 | 
					
						
							|  |  |  |     )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-01 10:14:48 +08:00
										 |  |  | set(MMU_PAGE_SIZE ${CONFIG_MMU_PAGE_MODE})
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-15 20:02:16 +08:00
										 |  |  | if(NOT BOOTLOADER_BUILD)
 | 
					
						
							| 
									
										
										
										
											2022-05-25 11:33:50 +02:00
										 |  |  |     list(APPEND esptool_elf2image_args --elf-sha256-offset 0xb0)
 | 
					
						
							| 
									
										
										
										
											2022-06-01 10:14:48 +08:00
										 |  |  |     if(CONFIG_IDF_TARGET_ESP32C2)
 | 
					
						
							|  |  |  |         list(APPEND esptool_elf2image_args --flash-mmu-page-size ${MMU_PAGE_SIZE})
 | 
					
						
							|  |  |  |     endif()
 | 
					
						
							| 
									
										
										
										
											2019-03-15 20:02:16 +08:00
										 |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2019-01-09 20:06:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-25 01:21:41 +05:30
										 |  |  | 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)
 | 
					
						
							| 
									
										
										
										
											2022-03-10 10:53:15 +05:30
										 |  |  |     elseif(CONFIG_SECURE_SIGNED_APPS_RSA_SCHEME OR CONFIG_SECURE_SIGNED_APPS_ECDSA_V2_SCHEME)
 | 
					
						
							| 
									
										
										
										
											2020-02-25 01:21:41 +05:30
										 |  |  |         list(APPEND esptool_elf2image_args --secure-pad-v2)
 | 
					
						
							|  |  |  |     endif()
 | 
					
						
							| 
									
										
										
										
											2019-05-10 18:40:46 +08:00
										 |  |  | endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-16 11:47:23 +08:00
										 |  |  | if(CONFIG_ESP32_REV_MIN)
 | 
					
						
							| 
									
										
										
										
											2021-02-23 17:40:38 +11:00
										 |  |  |     set(min_rev ${CONFIG_ESP32_REV_MIN})
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							|  |  |  | if(CONFIG_ESP32C3_REV_MIN)
 | 
					
						
							|  |  |  |     set(min_rev ${CONFIG_ESP32C3_REV_MIN})
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2022-06-22 13:24:10 +02:00
										 |  |  | if(CONFIG_IDF_TARGET_ESP32C2)
 | 
					
						
							|  |  |  |     set(min_rev 1)
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2021-02-23 17:40:38 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | if(min_rev)
 | 
					
						
							|  |  |  |     list(APPEND esptool_elf2image_args --min-rev ${min_rev})
 | 
					
						
							| 
									
										
										
										
											2021-04-28 11:19:50 +02:00
										 |  |  |     set(monitor_rev_args "--revision;${min_rev}")
 | 
					
						
							| 
									
										
										
										
											2021-02-23 17:40:38 +11:00
										 |  |  |     unset(min_rev)
 | 
					
						
							| 
									
										
										
										
											2019-09-16 11:47:23 +08:00
										 |  |  | endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-14 13:39:50 +02:00
										 |  |  | if(CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE)
 | 
					
						
							| 
									
										
										
										
											2022-05-25 11:33:50 +02:00
										 |  |  |     # Set ESPFLASHSIZE to 'detect' *after* esptool_elf2image_args are generated,
 | 
					
						
							| 
									
										
										
										
											2018-02-27 15:45:30 +11:00
										 |  |  |     # as elf2image can't have 'detect' as an option...
 | 
					
						
							|  |  |  |     set(ESPFLASHSIZE detect)
 | 
					
						
							| 
									
										
										
										
											2022-05-25 11:33:50 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # 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.
 | 
					
						
							| 
									
										
										
										
											2022-06-09 12:14:14 +05:30
										 |  |  |     list(APPEND esptool_elf2image_args --dont-append-digest)
 | 
					
						
							| 
									
										
										
										
											2018-01-23 17:08:28 +11:00
										 |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2018-01-19 15:47:49 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-25 01:21:41 +05:30
										 |  |  | if(CONFIG_SECURE_SIGNED_APPS_RSA_SCHEME)
 | 
					
						
							|  |  |  |     set(ESPFLASHSIZE keep)
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  | idf_build_get_property(build_dir BUILD_DIR)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | idf_build_get_property(elf_name EXECUTABLE_NAME GENERATOR_EXPRESSION)
 | 
					
						
							|  |  |  | idf_build_get_property(elf EXECUTABLE GENERATOR_EXPRESSION)
 | 
					
						
							| 
									
										
										
										
											2020-03-30 10:01:39 +08:00
										 |  |  | idf_build_get_property(elf_dir EXECUTABLE_DIR GENERATOR_EXPRESSION)
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-20 00:32:55 +05:30
										 |  |  | if(CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES AND NOT BOOTLOADER_BUILD)
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  |     set(unsigned_project_binary "${elf_name}-unsigned.bin")
 | 
					
						
							| 
									
										
										
										
											2018-10-20 00:32:55 +05:30
										 |  |  | else()
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  |     set(unsigned_project_binary "${elf_name}.bin")
 | 
					
						
							| 
									
										
										
										
											2018-10-20 00:32:55 +05:30
										 |  |  | endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  | set(PROJECT_BIN "${elf_name}.bin")
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-19 15:47:49 +11:00
										 |  |  | #
 | 
					
						
							| 
									
										
										
										
											2018-01-23 17:08:28 +11:00
										 |  |  | # Add 'app.bin' target - generates with elf2image
 | 
					
						
							| 
									
										
										
										
											2018-01-19 15:47:49 +11:00
										 |  |  | #
 | 
					
						
							| 
									
										
										
										
											2019-07-22 16:04:03 +02:00
										 |  |  | if(CONFIG_APP_BUILD_GENERATE_BINARIES)
 | 
					
						
							|  |  |  |     add_custom_command(OUTPUT "${build_dir}/.bin_timestamp" | 
					
						
							| 
									
										
										
										
											2022-05-25 11:33:50 +02:00
										 |  |  |         COMMAND ${ESPTOOLPY} elf2image ${esptool_elf2image_args}
 | 
					
						
							| 
									
										
										
										
											2020-03-30 10:01:39 +08:00
										 |  |  |             -o "${build_dir}/${unsigned_project_binary}" "${elf_dir}/${elf}"
 | 
					
						
							| 
									
										
										
										
											2019-07-22 16:04:03 +02:00
										 |  |  |         COMMAND ${CMAKE_COMMAND} -E echo "Generated ${build_dir}/${unsigned_project_binary}"
 | 
					
						
							|  |  |  |         COMMAND ${CMAKE_COMMAND} -E md5sum "${build_dir}/${unsigned_project_binary}" > "${build_dir}/.bin_timestamp"
 | 
					
						
							|  |  |  |         DEPENDS ${elf}
 | 
					
						
							|  |  |  |         VERBATIM
 | 
					
						
							|  |  |  |         WORKING_DIRECTORY ${build_dir}
 | 
					
						
							|  |  |  |         COMMENT "Generating binary image from built executable"
 | 
					
						
							|  |  |  |         )
 | 
					
						
							|  |  |  |     add_custom_target(gen_project_binary DEPENDS "${build_dir}/.bin_timestamp")
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2018-10-20 00:32:55 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 18:40:46 +08:00
										 |  |  | set_property(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" | 
					
						
							|  |  |  |     APPEND PROPERTY ADDITIONAL_MAKE_CLEAN_FILES
 | 
					
						
							|  |  |  |     "${build_dir}/${unsigned_project_binary}"
 | 
					
						
							|  |  |  |     )
 | 
					
						
							| 
									
										
										
										
											2018-10-20 00:32:55 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-22 16:04:03 +02:00
										 |  |  | if(CONFIG_APP_BUILD_GENERATE_BINARIES)
 | 
					
						
							|  |  |  |     add_custom_target(app ALL DEPENDS gen_project_binary)
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2019-06-17 12:20:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-25 01:21:41 +05:30
										 |  |  | if(CONFIG_SECURE_SIGNED_APPS_ECDSA_SCHEME)
 | 
					
						
							|  |  |  |     set(secure_boot_version "1")
 | 
					
						
							| 
									
										
										
										
											2022-03-10 10:53:15 +05:30
										 |  |  | elseif(CONFIG_SECURE_SIGNED_APPS_RSA_SCHEME OR CONFIG_SECURE_SIGNED_APPS_ECDSA_V2_SCHEME)
 | 
					
						
							| 
									
										
										
										
											2020-02-25 01:21:41 +05:30
										 |  |  |     set(secure_boot_version "2")
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 15:25:25 +08:00
										 |  |  | if(NOT BOOTLOADER_BUILD AND CONFIG_SECURE_SIGNED_APPS)
 | 
					
						
							|  |  |  |     if(CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES)
 | 
					
						
							|  |  |  |         # for locally signed secure boot image, add a signing step to get from unsigned app to signed app
 | 
					
						
							| 
									
										
										
										
											2022-09-19 11:43:34 +05:30
										 |  |  |         get_filename_component(secure_boot_signing_key "${CONFIG_SECURE_BOOT_SIGNING_KEY}" | 
					
						
							|  |  |  |             ABSOLUTE BASE_DIR "${project_dir}")
 | 
					
						
							| 
									
										
										
										
											2019-05-10 15:25:25 +08:00
										 |  |  |         add_custom_command(OUTPUT "${build_dir}/.signed_bin_timestamp" | 
					
						
							| 
									
										
										
										
											2020-02-25 01:21:41 +05:30
										 |  |  |             COMMAND ${ESPSECUREPY} sign_data --version ${secure_boot_version} --keyfile ${secure_boot_signing_key}
 | 
					
						
							| 
									
										
										
										
											2019-05-10 15:25:25 +08:00
										 |  |  |                 -o "${build_dir}/${PROJECT_BIN}" "${build_dir}/${unsigned_project_binary}"
 | 
					
						
							|  |  |  |             COMMAND ${CMAKE_COMMAND} -E echo "Generated signed binary image ${build_dir}/${PROJECT_BIN}"
 | 
					
						
							|  |  |  |                                     "from ${build_dir}/${unsigned_project_binary}"
 | 
					
						
							|  |  |  |             COMMAND ${CMAKE_COMMAND} -E md5sum "${build_dir}/${PROJECT_BIN}" > "${build_dir}/.signed_bin_timestamp"
 | 
					
						
							|  |  |  |             DEPENDS "${build_dir}/.bin_timestamp"
 | 
					
						
							|  |  |  |             VERBATIM
 | 
					
						
							|  |  |  |             COMMENT "Generating signed binary image"
 | 
					
						
							|  |  |  |             )
 | 
					
						
							|  |  |  |         add_custom_target(gen_signed_project_binary DEPENDS "${build_dir}/.signed_bin_timestamp")
 | 
					
						
							|  |  |  |         add_dependencies(gen_project_binary gen_signed_project_binary)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         set_property(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" | 
					
						
							|  |  |  |             APPEND PROPERTY ADDITIONAL_MAKE_CLEAN_FILES
 | 
					
						
							|  |  |  |             "${build_dir}/${PROJECT_BIN}"
 | 
					
						
							|  |  |  |             )
 | 
					
						
							|  |  |  |     else()
 | 
					
						
							|  |  |  |         string(REPLACE ";" " " espsecurepy "${ESPSECUREPY}")
 | 
					
						
							|  |  |  |         add_custom_command(TARGET app POST_BUILD | 
					
						
							|  |  |  |             COMMAND ${CMAKE_COMMAND} -E echo
 | 
					
						
							|  |  |  |                 "App built but not signed. Sign app before flashing"
 | 
					
						
							|  |  |  |             COMMAND ${CMAKE_COMMAND} -E echo
 | 
					
						
							| 
									
										
										
										
											2020-02-25 01:21:41 +05:30
										 |  |  |                 "\t${espsecurepy} sign_data --keyfile KEYFILE --version ${secure_boot_version} \
 | 
					
						
							|  |  |  |                 ${build_dir}/${PROJECT_BIN}"
 | 
					
						
							| 
									
										
										
										
											2019-05-10 15:25:25 +08:00
										 |  |  |             VERBATIM)
 | 
					
						
							|  |  |  |     endif()
 | 
					
						
							| 
									
										
										
										
											2018-10-20 00:32:55 +05:30
										 |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2018-01-19 15:47:49 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-20 16:09:24 +08:00
										 |  |  | add_custom_target(erase_flash | 
					
						
							|  |  |  |     COMMAND ${CMAKE_COMMAND}
 | 
					
						
							| 
									
										
										
										
											2020-10-09 17:01:01 +02:00
										 |  |  |     -D "IDF_PATH=${idf_path}"
 | 
					
						
							|  |  |  |     -D "SERIAL_TOOL=${ESPTOOLPY}"
 | 
					
						
							|  |  |  |     -D "SERIAL_TOOL_ARGS=erase_flash"
 | 
					
						
							| 
									
										
										
										
											2020-10-12 21:59:20 +08:00
										 |  |  |     -P run_serial_tool.cmake
 | 
					
						
							| 
									
										
										
										
											2019-08-20 16:09:24 +08:00
										 |  |  |     WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
 | 
					
						
							|  |  |  |     USES_TERMINAL
 | 
					
						
							| 
									
										
										
										
											2020-10-09 17:01:01 +02:00
										 |  |  |     VERBATIM
 | 
					
						
							| 
									
										
										
										
											2019-08-20 16:09:24 +08:00
										 |  |  |     )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | add_custom_target(monitor | 
					
						
							|  |  |  |     COMMAND ${CMAKE_COMMAND}
 | 
					
						
							| 
									
										
										
										
											2020-10-09 17:01:01 +02:00
										 |  |  |     -D "IDF_PATH=${idf_path}"
 | 
					
						
							|  |  |  |     -D "SERIAL_TOOL=${ESPMONITOR}"
 | 
					
						
							|  |  |  |     -D "SERIAL_TOOL_ARGS=--target;${target};${monitor_rev_args};${elf_dir}/${elf}"
 | 
					
						
							|  |  |  |     -D "WORKING_DIRECTORY=${build_dir}"
 | 
					
						
							| 
									
										
										
										
											2020-10-12 22:15:40 +08:00
										 |  |  |     -P run_serial_tool.cmake
 | 
					
						
							| 
									
										
										
										
											2019-08-20 16:09:24 +08:00
										 |  |  |     WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
 | 
					
						
							|  |  |  |     USES_TERMINAL
 | 
					
						
							| 
									
										
										
										
											2020-10-09 17:01:01 +02:00
										 |  |  |     VERBATIM
 | 
					
						
							| 
									
										
										
										
											2019-08-20 16:09:24 +08:00
										 |  |  |     )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  | set(esptool_flash_main_args "--before=${CONFIG_ESPTOOLPY_BEFORE}")
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-25 01:21:41 +05:30
										 |  |  | if(CONFIG_SECURE_BOOT OR CONFIG_SECURE_FLASH_ENC_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |     # If security enabled then override post flash option
 | 
					
						
							|  |  |  |     list(APPEND esptool_flash_main_args "--after=no_reset")
 | 
					
						
							|  |  |  | else()
 | 
					
						
							|  |  |  |     list(APPEND esptool_flash_main_args "--after=${CONFIG_ESPTOOLPY_AFTER}")
 | 
					
						
							| 
									
										
										
										
											2019-01-21 22:14:56 +08:00
										 |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-21 04:28:05 +03:00
										 |  |  | if(CONFIG_ESPTOOLPY_NO_STUB)
 | 
					
						
							| 
									
										
										
										
											2020-04-25 16:44:27 +10:00
										 |  |  |     list(APPEND esptool_flash_main_args "--no-stub")
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | idf_component_set_property(esptool_py FLASH_ARGS "${esptool_flash_main_args}")
 | 
					
						
							| 
									
										
										
										
											2022-05-13 16:39:57 +02:00
										 |  |  | idf_component_set_property(esptool_py FLASH_SUB_ARGS "--flash_mode ${ESPFLASHMODE} --flash_freq ${ESPFLASHFREQ} \ | 
					
						
							|  |  |  | --flash_size ${ESPFLASHSIZE}")
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  | function(esptool_py_partition_needs_encryption retencrypted partition_name)
 | 
					
						
							| 
									
										
										
										
											2020-11-26 12:19:41 +08:00
										 |  |  |     # Check if encryption is enabled
 | 
					
						
							|  |  |  |     if(CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT)
 | 
					
						
							|  |  |  |         # Encryption is enabled, get partition type, subtype and encrypted flag
 | 
					
						
							|  |  |  |         # to determine whether it needs encryption or not.
 | 
					
						
							|  |  |  |         partition_table_get_partition_info(type "--partition-name ${partition_name}" "type")
 | 
					
						
							|  |  |  |         partition_table_get_partition_info(subtype "--partition-name ${partition_name}" "subtype")
 | 
					
						
							|  |  |  |         partition_table_get_partition_info(encrypted "--partition-name ${partition_name}" "encrypted")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # As defined in gen_esp32part.py file:
 | 
					
						
							|  |  |  |         # Types:
 | 
					
						
							|  |  |  |         #   - APP  0x00
 | 
					
						
							|  |  |  |         #   - DATA 0x01
 | 
					
						
							|  |  |  |         # Subtypes:
 | 
					
						
							|  |  |  |         #   - ota      0x00
 | 
					
						
							|  |  |  |         #   - nvs      0x02
 | 
					
						
							|  |  |  |         # If the partition is an app, an OTA or an NVS partition, then it should
 | 
					
						
							|  |  |  |         # be encrypted
 | 
					
						
							|  |  |  |         if( | 
					
						
							|  |  |  |                 (${type} EQUAL 0) OR
 | 
					
						
							|  |  |  |                 (${type} EQUAL 1 AND ${subtype} EQUAL 0) OR
 | 
					
						
							|  |  |  |                 (${type} EQUAL 1 AND ${subtype} EQUAL 2)
 | 
					
						
							|  |  |  |           )
 | 
					
						
							|  |  |  |             set(encrypted TRUE)
 | 
					
						
							|  |  |  |         endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Return 'encrypted' value to the caller
 | 
					
						
							|  |  |  |         set(${retencrypted} ${encrypted} PARENT_SCOPE)
 | 
					
						
							|  |  |  |     else()
 | 
					
						
							|  |  |  |         # Encryption not enabled, return false
 | 
					
						
							|  |  |  |         set(${retencrypted} FALSE PARENT_SCOPE)
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  |     endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | endfunction()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function(esptool_py_flash_to_partition target_name partition_name binary_path)
 | 
					
						
							| 
									
										
										
										
											2020-11-26 12:19:41 +08:00
										 |  |  |     # Retrieve the offset for the partition to flash the image on
 | 
					
						
							|  |  |  |     partition_table_get_partition_info(offset "--partition-name ${partition_name}" "offset")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if(NOT offset)
 | 
					
						
							|  |  |  |         message(FATAL_ERROR "Could not find offset of partition ${partition_name}")
 | 
					
						
							|  |  |  |     endif()
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-26 12:19:41 +08:00
										 |  |  |     # Check whether the partition needs encryption or not
 | 
					
						
							|  |  |  |     esptool_py_partition_needs_encryption(encrypted ${partition_name})
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-26 12:19:41 +08:00
										 |  |  |     # If the image should not be encrypted, we pass the option
 | 
					
						
							|  |  |  |     # ALWAYS_PLAINTEXT to the function esptool_py_flash_target_image
 | 
					
						
							|  |  |  |     if(NOT ${encrypted})
 | 
					
						
							|  |  |  |         set(option ALWAYS_PLAINTEXT)
 | 
					
						
							|  |  |  |     endif()
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-26 12:19:41 +08:00
										 |  |  |     # The image name is also the partition name
 | 
					
						
							|  |  |  |     esptool_py_flash_target_image(${target_name} ${partition_name} ${offset} | 
					
						
							|  |  |  |                                   ${binary_path} ${option})
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  | endfunction()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-26 12:19:41 +08:00
										 |  |  | # This function takes a fifth optional named parameter: "ALWAYS_PLAINTEXT". As
 | 
					
						
							|  |  |  | # its name states, it marks whether the image should be flashed as plain text or
 | 
					
						
							|  |  |  | # not. If build macro CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT is set and
 | 
					
						
							|  |  |  | # this parameter is provided, then the image will be flahsed as plain text
 | 
					
						
							|  |  |  | # (not encrypted) on the target. This parameter will be ignored if build macro
 | 
					
						
							|  |  |  | # CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT is not set.
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  | function(esptool_py_flash_target_image target_name image_name offset image)
 | 
					
						
							| 
									
										
										
										
											2020-11-26 12:19:41 +08:00
										 |  |  |     set(options ALWAYS_PLAINTEXT)
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |     idf_build_get_property(build_dir BUILD_DIR)
 | 
					
						
							|  |  |  |     file(RELATIVE_PATH image ${build_dir} ${image})
 | 
					
						
							| 
									
										
										
										
											2020-11-26 12:19:41 +08:00
										 |  |  |     cmake_parse_arguments(arg "${options}" "" "" "${ARGN}")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Check if the image has to be plain text or not, depending on the macro
 | 
					
						
							|  |  |  |     # CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT and the parameter
 | 
					
						
							|  |  |  |     # ALWAYS_PLAINTEXT
 | 
					
						
							|  |  |  |     set(encrypted false)
 | 
					
						
							|  |  |  |     if(CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT AND | 
					
						
							|  |  |  |        NOT arg_ALWAYS_PLAINTEXT)
 | 
					
						
							|  |  |  |         set(encrypted true)
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  |     endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # In the following snippet of code, some properties are defined for our
 | 
					
						
							|  |  |  |     # current target. These properties will be used to generate the actual
 | 
					
						
							|  |  |  |     # target_name_args files using the target_name_args.in files.
 | 
					
						
							|  |  |  |     # Please see function esptool_py_flash_target above for more information
 | 
					
						
							|  |  |  |     # about these properties and how they are used.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Add the image file, with its offset, to the list of files to
 | 
					
						
							|  |  |  |     # flash to the target. No matter whether flash encryption is
 | 
					
						
							|  |  |  |     # enabled or not, plain binaries (non-encrypted) need to be
 | 
					
						
							|  |  |  |     # generated
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |     set_property(TARGET ${target_name} APPEND PROPERTY FLASH_FILE | 
					
						
							|  |  |  |                 "\"${offset}\" : \"${image}\"")
 | 
					
						
							|  |  |  |     set_property(TARGET ${target_name} APPEND PROPERTY FLASH_ENTRY | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  |                 "\"${image_name}\" : { \"offset\" : \"${offset}\", \"file\" : \"${image}\",\
 | 
					
						
							| 
									
										
										
										
											2020-11-26 12:19:41 +08:00
										 |  |  |  \"encrypted\" : \"${encrypted}\" }")
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |     set_property(TARGET ${target_name} APPEND PROPERTY IMAGES "${offset} ${image}")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if(CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT)
 | 
					
						
							| 
									
										
										
										
											2020-11-26 12:19:41 +08:00
										 |  |  |         # When flash encryption mode is enabled, if the current binary needs to
 | 
					
						
							|  |  |  |         # be encrypted, do the same as previously but prefixing target names
 | 
					
						
							|  |  |  |         # with "encrypted-".
 | 
					
						
							|  |  |  |         if(encrypted)
 | 
					
						
							|  |  |  |             set_property(TARGET encrypted-${target_name} APPEND PROPERTY FLASH_FILE | 
					
						
							|  |  |  |                          "\"${offset}\" : \"${image}\"")
 | 
					
						
							|  |  |  |             set_property(TARGET encrypted-${target_name} APPEND PROPERTY FLASH_ENTRY | 
					
						
							|  |  |  |                          "\"${image_name}\" : { \"offset\" : \"${offset}\", \"file\" : \"${image}\" , \
 | 
					
						
							|  |  |  | \"encrypted\" : \"${encrypted}\"  }")
 | 
					
						
							|  |  |  |             set_property(TARGET encrypted-${target_name} APPEND PROPERTY ENCRYPTED_IMAGES "${offset} ${image}")
 | 
					
						
							|  |  |  |         else()
 | 
					
						
							|  |  |  |             # The target doesn't need to be encrypted, thus, add the current
 | 
					
						
							|  |  |  |             # file to the NON_ENCRYPTED_IMAGES property
 | 
					
						
							|  |  |  |             set_property(TARGET encrypted-${target_name} APPEND PROPERTY NON_ENCRYPTED_IMAGES "${offset} ${image}")
 | 
					
						
							|  |  |  |         endif()
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  |     endif()
 | 
					
						
							| 
									
										
										
										
											2020-11-24 12:24:39 +08:00
										 |  |  | endfunction()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Use this function to generate a ternary expression that will be evaluated.
 | 
					
						
							|  |  |  | # - retexpr is the expression returned by the function
 | 
					
						
							|  |  |  | # - condition is the expression evaluated to a boolean
 | 
					
						
							|  |  |  | # - condtrue is the expression to evaluate if condition is true
 | 
					
						
							|  |  |  | # - condfalse is the expression to evaluate if condition is false
 | 
					
						
							|  |  |  | # This function can be summarized as:
 | 
					
						
							|  |  |  | #   retexpr = condition ? condtrue : condfalse
 | 
					
						
							|  |  |  | function(if_expr_generator retexpr condition condtrue condfalse)
 | 
					
						
							| 
									
										
										
										
											2020-11-26 12:19:41 +08:00
										 |  |  |     # CMake version 3.8 and above provide a ternary operator for expression
 | 
					
						
							|  |  |  |     # generator. For version under, we must simulate this behaviour
 | 
					
						
							|  |  |  |     if(${CMAKE_VERSION} VERSION_LESS "3.8.0")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # If condtrue is not empty, then we have to do something in case the
 | 
					
						
							|  |  |  |         # condition is true. Generate the expression that will be used in that
 | 
					
						
							|  |  |  |         # case
 | 
					
						
							|  |  |  |         if(condtrue)
 | 
					
						
							|  |  |  |             set(iftrue "$<${condition}:${condtrue}>")
 | 
					
						
							|  |  |  |         endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Same for condfalse. If it is empty, it is useless to create an
 | 
					
						
							|  |  |  |         # expression that will be evaluated later
 | 
					
						
							|  |  |  |         if(condfalse)
 | 
					
						
							|  |  |  |             set(iffalse "$<$<NOT:${condition}>:${condfalse}>")
 | 
					
						
							|  |  |  |         endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Concatenate the previously generated expressions. If one of them was
 | 
					
						
							|  |  |  |         # not initialized (because of empty condtrue/condfalse) it will be
 | 
					
						
							|  |  |  |         # replaced by an empty string
 | 
					
						
							|  |  |  |         set(${retexpr} "${iftrue}${iffalse}" PARENT_SCOPE)
 | 
					
						
							| 
									
										
										
										
											2020-11-24 12:24:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-26 12:19:41 +08:00
										 |  |  |     else()
 | 
					
						
							|  |  |  |         # CMake 3.8 and above implement what we want, making the expression
 | 
					
						
							|  |  |  |         # simpler
 | 
					
						
							|  |  |  |         set(${retexpr} "$<IF:${condition},${condtrue},${condfalse}>" PARENT_SCOPE)
 | 
					
						
							| 
									
										
										
										
											2020-11-24 12:24:39 +08:00
										 |  |  |     endif()
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  | endfunction()
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-24 12:24:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  | function(esptool_py_flash_target target_name main_args sub_args)
 | 
					
						
							|  |  |  |     set(single_value OFFSET IMAGE) # template file to use to be able to
 | 
					
						
							| 
									
										
										
										
											2020-11-26 12:19:41 +08:00
										 |  |  |                                    # flash the image individually using esptool
 | 
					
						
							|  |  |  |     set(options ALWAYS_PLAINTEXT)
 | 
					
						
							|  |  |  |     cmake_parse_arguments(_ "${options}" "${single_value}" "" "${ARGN}")
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |     idf_build_get_property(idf_path IDF_PATH)
 | 
					
						
							| 
									
										
										
										
											2019-06-21 12:18:29 +08:00
										 |  |  |     idf_build_get_property(build_dir BUILD_DIR)
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |     idf_component_get_property(esptool_py_dir esptool_py COMPONENT_DIR)
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |     add_custom_target(${target_name} | 
					
						
							|  |  |  |         COMMAND ${CMAKE_COMMAND}
 | 
					
						
							| 
									
										
										
										
											2020-10-09 17:01:01 +02:00
										 |  |  |         -D "IDF_PATH=${idf_path}"
 | 
					
						
							|  |  |  |         -D "SERIAL_TOOL=${ESPTOOLPY}"
 | 
					
						
							|  |  |  |         -D "SERIAL_TOOL_ARGS=${main_args};write_flash;@${target_name}_args"
 | 
					
						
							|  |  |  |         -D "WORKING_DIRECTORY=${build_dir}"
 | 
					
						
							| 
									
										
										
										
											2020-10-12 21:59:20 +08:00
										 |  |  |         -P ${esptool_py_dir}/run_serial_tool.cmake
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |         WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
 | 
					
						
							|  |  |  |         USES_TERMINAL
 | 
					
						
							| 
									
										
										
										
											2020-10-09 17:01:01 +02:00
										 |  |  |         VERBATIM
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |         )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     set_target_properties(${target_name} PROPERTIES SUB_ARGS "${sub_args}")
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  |     # Create the expression that contains the list of file names to pass
 | 
					
						
							|  |  |  |     # to esptool script
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |     set(flash_args_content "$<JOIN:$<TARGET_PROPERTY:${target_name},SUB_ARGS>, >\n\ | 
					
						
							|  |  |  | $<JOIN:$<TARGET_PROPERTY:${target_name},IMAGES>,\n>")
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  |     # Write the previous expression to the target_name_args.in file
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |     file(GENERATE OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${target_name}_args.in" | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  |          CONTENT "${flash_args_content}")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Generate the actual expression value from the content of the file
 | 
					
						
							|  |  |  |     # we just wrote
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |     file(GENERATE OUTPUT "${build_dir}/${target_name}_args" | 
					
						
							|  |  |  |                 INPUT "${CMAKE_CURRENT_BINARY_DIR}/${target_name}_args.in")
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-26 12:19:41 +08:00
										 |  |  |     # Check if the target has to be plain text or not, depending on the macro
 | 
					
						
							|  |  |  |     # CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT and the parameter
 | 
					
						
							|  |  |  |     # ALWAYS_PLAINTEXT
 | 
					
						
							|  |  |  |     set(encrypted FALSE)
 | 
					
						
							|  |  |  |     if(CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT AND | 
					
						
							|  |  |  |        NOT __ALWAYS_PLAINTEXT)
 | 
					
						
							|  |  |  |         set(encrypted TRUE)
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  |     endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # If the file needs to be encrypted, create a target file that lets the user
 | 
					
						
							|  |  |  |     # flash this partition independently from other files.
 | 
					
						
							|  |  |  |     # For example, if 'target_name' is app-flash and 'encrypted' is TRUE,
 | 
					
						
							|  |  |  |     # 'build' directory will contain a file name 'encrypted_app-flash_args'
 | 
					
						
							|  |  |  |     if(${encrypted})
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |         add_custom_target(encrypted-${target_name} | 
					
						
							|  |  |  |             COMMAND ${CMAKE_COMMAND}
 | 
					
						
							| 
									
										
										
										
											2020-10-09 17:01:01 +02:00
										 |  |  |             -D "IDF_PATH=${idf_path}"
 | 
					
						
							|  |  |  |             -D "SERIAL_TOOL=${ESPTOOLPY}"
 | 
					
						
							|  |  |  |             -D "SERIAL_TOOL_ARGS=${main_args};write_flash;@encrypted_${target_name}_args"
 | 
					
						
							|  |  |  |             -D "WORKING_DIRECTORY=${build_dir}"
 | 
					
						
							| 
									
										
										
										
											2020-10-12 21:59:20 +08:00
										 |  |  |             -P ${esptool_py_dir}/run_serial_tool.cmake
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |             WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
 | 
					
						
							|  |  |  |             USES_TERMINAL
 | 
					
						
							| 
									
										
										
										
											2020-10-09 17:01:01 +02:00
										 |  |  |             VERBATIM
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |             )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  |         # Generate the parameters for esptool.py command
 | 
					
						
							|  |  |  |         # In case we have both non encrypted and encrypted files to flash, we
 | 
					
						
							|  |  |  |         # can use --encrypt-files parameter to specify which ones should be
 | 
					
						
							|  |  |  |         # encrypted.
 | 
					
						
							|  |  |  |         # If we only have encrypted images to flash, we must use legacy
 | 
					
						
							|  |  |  |         # --encrypt parameter.
 | 
					
						
							|  |  |  |         # As the properties ENCRYPTED_IMAGES and NON_ENCRYPTED_IMAGES have not
 | 
					
						
							|  |  |  |         # been geenrated yet, we must use CMake expression generator to test
 | 
					
						
							|  |  |  |         # which esptool.py options we can use.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # The variable has_non_encrypted_image will be evaluated to "1" if some
 | 
					
						
							|  |  |  |         # images must not be encrypted. This variable will be used in the next
 | 
					
						
							|  |  |  |         # expression
 | 
					
						
							| 
									
										
										
										
											2020-11-24 12:24:39 +08:00
										 |  |  |         set(has_non_encrypted_images "$<BOOL:$<TARGET_PROPERTY:\ | 
					
						
							|  |  |  | encrypted-${target_name},NON_ENCRYPTED_IMAGES>>")
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Prepare esptool arguments (--encrypt or --encrypt-files)
 | 
					
						
							| 
									
										
										
										
											2020-11-24 12:24:39 +08:00
										 |  |  |         if_expr_generator(if_non_enc_expr ${has_non_encrypted_images} | 
					
						
							|  |  |  |                           "" "--encrypt")
 | 
					
						
							|  |  |  |         set_target_properties(encrypted-${target_name} PROPERTIES SUB_ARGS | 
					
						
							|  |  |  |                              "${sub_args}; ${if_non_enc_expr}")
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Generate the list of files to pass to esptool
 | 
					
						
							| 
									
										
										
										
											2020-11-24 12:24:39 +08:00
										 |  |  |         set(encrypted_files "$<JOIN:$<TARGET_PROPERTY\ | 
					
						
							|  |  |  | :encrypted-${target_name},ENCRYPTED_IMAGES>,\n>")
 | 
					
						
							|  |  |  |         set(non_encrypted_files "$<JOIN:$<TARGET_PROPERTY:\ | 
					
						
							|  |  |  | encrypted-${target_name},NON_ENCRYPTED_IMAGES>,\n>")
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Put both lists together, use --encrypted-files if we do also have
 | 
					
						
							|  |  |  |         # plain images to flash
 | 
					
						
							| 
									
										
										
										
											2020-11-24 12:24:39 +08:00
										 |  |  |         if_expr_generator(if_enc_expr ${has_non_encrypted_images} | 
					
						
							|  |  |  |                           "--encrypt-files\n" "")
 | 
					
						
							|  |  |  |         set(flash_args_content "$<JOIN:$<TARGET_PROPERTY:\ | 
					
						
							|  |  |  | encrypted-${target_name},SUB_ARGS>, >\
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  | ${non_encrypted_files}\n\
 | 
					
						
							| 
									
										
										
										
											2020-11-24 12:24:39 +08:00
										 |  |  | ${if_enc_expr}\
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  | ${encrypted_files}")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # The expression is ready to be geenrated, write it to the file which
 | 
					
						
							|  |  |  |         # extension is .in
 | 
					
						
							| 
									
										
										
										
											2020-11-26 12:19:41 +08:00
										 |  |  |         file_generate("${CMAKE_CURRENT_BINARY_DIR}/encrypted_${target_name}_args.in" | 
					
						
							|  |  |  |                       CONTENT "${flash_args_content}")
 | 
					
						
							| 
									
										
										
										
											2020-11-18 17:47:36 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Generate the actual string from the content of the file we just wrote
 | 
					
						
							| 
									
										
										
										
											2020-11-26 12:19:41 +08:00
										 |  |  |         file_generate("${build_dir}/encrypted_${target_name}_args" | 
					
						
							|  |  |  |                       INPUT "${CMAKE_CURRENT_BINARY_DIR}/encrypted_${target_name}_args.in")
 | 
					
						
							| 
									
										
										
										
											2020-02-14 11:13:47 +05:00
										 |  |  |     else()
 | 
					
						
							|  |  |  |         fail_target(encrypted-${target_name} "Error: The target encrypted-${target_name} requires" | 
					
						
							|  |  |  |                     "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled.")
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  |     endif()
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  | endfunction()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function(esptool_py_custom_target target_name flasher_filename dependencies)
 | 
					
						
							|  |  |  |     idf_component_get_property(main_args esptool_py FLASH_ARGS)
 | 
					
						
							|  |  |  |     idf_component_get_property(sub_args esptool_py FLASH_SUB_ARGS)
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |     idf_build_get_property(build_dir BUILD_DIR)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     esptool_py_flash_target(${target_name} "${main_args}" "${sub_args}")
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |     # Copy the file to flash_xxx_args for compatibility for select target
 | 
					
						
							|  |  |  |     file_generate("${build_dir}/flash_${flasher_filename}_args" | 
					
						
							|  |  |  |                 INPUT "${build_dir}/${target_name}_args")
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |     add_dependencies(${target_name} ${dependencies})
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  |     if(CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT)
 | 
					
						
							|  |  |  |         file_generate("${build_dir}/flash_encrypted_${flasher_filename}_args" | 
					
						
							|  |  |  |                     INPUT "${build_dir}/encrypted_${target_name}_args")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         add_dependencies(encrypted-${target_name} ${dependencies})
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  |     endif()
 | 
					
						
							| 
									
										
										
										
											2019-05-09 14:10:35 +02:00
										 |  |  | endfunction()
 | 
					
						
							| 
									
										
										
										
											2019-12-20 09:55:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-06 14:17:00 +08:00
										 |  |  | if(NOT BOOTLOADER_BUILD)
 | 
					
						
							| 
									
										
										
										
											2020-04-08 11:37:02 +08:00
										 |  |  |     set(flash_deps "partition_table_bin")
 | 
					
						
							| 
									
										
										
										
											2020-01-06 14:17:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if(CONFIG_APP_BUILD_GENERATE_BINARIES)
 | 
					
						
							|  |  |  |         list(APPEND flash_deps "app")
 | 
					
						
							|  |  |  |     endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if(CONFIG_APP_BUILD_BOOTLOADER)
 | 
					
						
							|  |  |  |         list(APPEND flash_deps "bootloader")
 | 
					
						
							|  |  |  |     endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     esptool_py_custom_target(flash project "${flash_deps}")
 | 
					
						
							| 
									
										
										
										
											2020-11-10 18:40:01 +11:00
										 |  |  | endif()
 |