2018-01-19 04:47:49 +00:00
|
|
|
# Set some global esptool.py variables
|
2018-01-23 06:08:28 +00:00
|
|
|
#
|
|
|
|
# Many of these are read when generating flash_app_args & flash_project_args
|
2019-05-10 02:53:08 +00:00
|
|
|
idf_build_get_property(python PYTHON)
|
|
|
|
set(ESPTOOLPY ${python} "${CMAKE_CURRENT_LIST_DIR}/esptool/esptool.py" --chip esp32)
|
|
|
|
set(ESPSECUREPY ${python} "${CMAKE_CURRENT_LIST_DIR}/esptool/espsecure.py")
|
|
|
|
set(ESPEFUSEPY ${python} "${CMAKE_CURRENT_LIST_DIR}/esptool/espefuse.py")
|
2018-01-19 04:47:49 +00:00
|
|
|
|
|
|
|
set(ESPFLASHMODE ${CONFIG_ESPTOOLPY_FLASHMODE})
|
|
|
|
set(ESPFLASHFREQ ${CONFIG_ESPTOOLPY_FLASHFREQ})
|
|
|
|
set(ESPFLASHSIZE ${CONFIG_ESPTOOLPY_FLASHSIZE})
|
|
|
|
|
2018-10-19 19:02:55 +00:00
|
|
|
set(ESPTOOLPY_BEFORE "${CONFIG_ESPTOOLPY_BEFORE}")
|
|
|
|
set(ESPTOOLPY_AFTER "${CONFIG_ESPTOOLPY_AFTER}")
|
|
|
|
|
2019-05-09 12:10:35 +00:00
|
|
|
if(CONFIG_SECURE_BOOT_ENABLED OR CONFIG_SECURE_FLASH_ENC_ENABLED)
|
2018-10-19 19:02:55 +00:00
|
|
|
# If security enabled then override post flash option
|
|
|
|
set(ESPTOOLPY_AFTER "no_reset")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(ESPTOOLPY_SERIAL "${ESPTOOLPY}"
|
|
|
|
--port "${ESPPORT}"
|
|
|
|
--baud ${ESPBAUD}
|
|
|
|
--before "${ESPTOOLPY_BEFORE}"
|
|
|
|
--after "${ESPTOOLPY_AFTER}"
|
|
|
|
)
|
|
|
|
|
|
|
|
if(CONFIG_ESPTOOLPY_COMPRESSED)
|
|
|
|
set(ESPTOOLPY_COMPRESSED_OPT -z)
|
|
|
|
else()
|
|
|
|
set(ESPTOOLPY_COMPRESSED_OPT -u)
|
|
|
|
endif()
|
2018-01-19 04:47:49 +00:00
|
|
|
|
2018-02-27 04:45:30 +00:00
|
|
|
set(ESPTOOLPY_ELF2IMAGE_FLASH_OPTIONS
|
|
|
|
--flash_mode ${ESPFLASHMODE}
|
|
|
|
--flash_freq ${ESPFLASHFREQ}
|
|
|
|
--flash_size ${ESPFLASHSIZE}
|
|
|
|
)
|
2018-01-19 04:47:49 +00:00
|
|
|
|
2018-10-19 19:02:55 +00:00
|
|
|
# String for printing flash command
|
|
|
|
string(REPLACE ";" " " ESPTOOLPY_WRITE_FLASH_STR
|
|
|
|
"${ESPTOOLPY} --port (PORT) --baud (BAUD) --before ${ESPTOOLPY_BEFORE} --after ${ESPTOOLPY_AFTER} "
|
|
|
|
"write_flash ${ESPTOOLPY_ELF2IMAGE_FLASH_OPTIONS} ${ESPTOOLPY_EXTRA_FLASH_OPTIONS} ${ESPTOOLPY_COMPRESSED_OPT}")
|
|
|
|
|
|
|
|
if(CONFIG_SECURE_BOOT_ENABLED AND
|
|
|
|
NOT CONFIG_SECURE_BOOT_ALLOW_SHORT_APP_PARTITION AND
|
|
|
|
NOT BOOTLOADER_BUILD)
|
|
|
|
set(ESPTOOLPY_ELF2IMAGE_FLASH_OPTIONS
|
|
|
|
${ESPTOOLPY_ELF2IMAGE_FLASH_OPTIONS} --secure-pad)
|
|
|
|
endif()
|
|
|
|
|
2019-03-15 12:02:16 +00:00
|
|
|
if(NOT BOOTLOADER_BUILD)
|
|
|
|
set(ESPTOOLPY_ELF2IMAGE_OPTIONS --elf-sha256-offset 0xb0)
|
|
|
|
endif()
|
2019-01-09 12:06:01 +00:00
|
|
|
|
2018-01-23 06:08:28 +00:00
|
|
|
if(CONFIG_ESPTOOLPY_FLASHSIZE_DETECT)
|
2018-02-27 04:45:30 +00:00
|
|
|
# Set ESPFLASHSIZE to 'detect' *after* elf2image options are generated,
|
|
|
|
# as elf2image can't have 'detect' as an option...
|
|
|
|
set(ESPFLASHSIZE detect)
|
2018-01-23 06:08:28 +00:00
|
|
|
endif()
|
2018-01-19 04:47:49 +00:00
|
|
|
|
2019-05-10 02:53:08 +00: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)
|
|
|
|
|
2018-10-19 19:02:55 +00:00
|
|
|
if(CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES AND NOT BOOTLOADER_BUILD)
|
2019-05-10 02:53:08 +00:00
|
|
|
set(unsigned_project_binary "${elf_name}-unsigned.bin")
|
2018-10-19 19:02:55 +00:00
|
|
|
else()
|
2019-05-10 02:53:08 +00:00
|
|
|
set(unsigned_project_binary "${elf_name}.bin")
|
2018-10-19 19:02:55 +00:00
|
|
|
endif()
|
|
|
|
|
2019-05-10 02:53:08 +00:00
|
|
|
set(PROJECT_BIN "${elf_name}.bin")
|
|
|
|
|
2018-01-19 04:47:49 +00:00
|
|
|
#
|
2018-01-23 06:08:28 +00:00
|
|
|
# Add 'app.bin' target - generates with elf2image
|
2018-01-19 04:47:49 +00:00
|
|
|
#
|
2019-06-17 04:20:12 +00:00
|
|
|
add_custom_command(OUTPUT "${build_dir}/.bin_timestamp"
|
2019-01-09 12:06:01 +00:00
|
|
|
COMMAND ${ESPTOOLPY} elf2image ${ESPTOOLPY_ELF2IMAGE_FLASH_OPTIONS} ${ESPTOOLPY_ELF2IMAGE_OPTIONS}
|
2019-05-10 02:53:08 +00:00
|
|
|
-o "${build_dir}/${unsigned_project_binary}" "${elf}"
|
2019-06-17 04:20:12 +00: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"
|
2019-05-10 02:53:08 +00:00
|
|
|
DEPENDS ${elf}
|
2018-02-27 04:45:30 +00:00
|
|
|
VERBATIM
|
2019-05-10 02:53:08 +00:00
|
|
|
WORKING_DIRECTORY ${build_dir}
|
2019-06-17 04:20:12 +00:00
|
|
|
COMMENT "Generating binary image from built executable"
|
2018-02-27 04:45:30 +00:00
|
|
|
)
|
2019-06-17 04:20:12 +00:00
|
|
|
add_custom_target(gen_project_binary DEPENDS "${build_dir}/.bin_timestamp")
|
2018-11-11 07:36:10 +00:00
|
|
|
|
2018-10-19 19:02:55 +00:00
|
|
|
if(NOT BOOTLOADER_BUILD AND
|
|
|
|
CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES)
|
2018-11-11 07:36:10 +00:00
|
|
|
|
2018-10-19 19:02:55 +00:00
|
|
|
# for locally signed secure boot image, add a signing step to get from unsigned app to signed app
|
2019-06-17 04:20:12 +00:00
|
|
|
add_custom_command(OUTPUT "${build_dir}/.signed_bin_timestamp"
|
2018-10-19 19:02:55 +00:00
|
|
|
COMMAND ${ESPSECUREPY} sign_data --keyfile ${secure_boot_signing_key}
|
2019-05-10 02:53:08 +00:00
|
|
|
-o "${build_dir}/${PROJECT_BIN}" "${build_dir}/${unsigned_project_binary}"
|
2019-06-17 04:20:12 +00:00
|
|
|
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"
|
2018-10-19 19:02:55 +00:00
|
|
|
VERBATIM
|
2019-06-17 04:20:12 +00:00
|
|
|
COMMENT "Generating signed binary image"
|
2018-10-19 19:02:55 +00:00
|
|
|
)
|
2019-06-17 04:20:12 +00:00
|
|
|
add_custom_target(gen_signed_project_binary DEPENDS "${build_dir}/.signed_bin_timestamp")
|
2019-05-10 02:53:08 +00:00
|
|
|
add_dependencies(gen_project_binary gen_signed_project_binary)
|
2018-10-19 19:02:55 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT BOOTLOADER_BUILD)
|
2019-05-10 02:53:08 +00:00
|
|
|
add_custom_target(app ALL DEPENDS gen_project_binary)
|
2018-10-19 19:02:55 +00:00
|
|
|
else()
|
2019-05-10 02:53:08 +00:00
|
|
|
add_custom_target(bootloader ALL DEPENDS gen_project_binary)
|
2018-10-19 19:02:55 +00:00
|
|
|
endif()
|
|
|
|
|
2019-06-17 04:20:12 +00:00
|
|
|
|
2018-10-19 19:02:55 +00:00
|
|
|
if(NOT BOOTLOADER_BUILD AND
|
|
|
|
CONFIG_SECURE_BOOT_ENABLED AND
|
|
|
|
NOT CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES)
|
|
|
|
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
|
2019-05-10 02:53:08 +00:00
|
|
|
"\t${ESPSECUREPY} sign_data --keyfile KEYFILE ${build_dir}/${elf_bin}"
|
2018-10-19 19:02:55 +00:00
|
|
|
VERBATIM)
|
|
|
|
endif()
|
2018-01-19 04:47:49 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Add 'flash' target - not all build systems can run this directly
|
|
|
|
#
|
2018-01-23 06:08:28 +00:00
|
|
|
function(esptool_py_custom_target target_name flasher_filename dependencies)
|
2019-05-10 02:53:08 +00:00
|
|
|
idf_build_get_property(idf_path IDF_PATH)
|
2018-02-27 04:45:30 +00:00
|
|
|
add_custom_target(${target_name} DEPENDS ${dependencies}
|
2018-09-13 04:13:20 +00:00
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2019-05-10 02:53:08 +00:00
|
|
|
-D IDF_PATH="${idf_path}"
|
2018-09-13 04:13:20 +00:00
|
|
|
-D ESPTOOLPY="${ESPTOOLPY}"
|
|
|
|
-D ESPTOOL_ARGS="write_flash;@flash_${flasher_filename}_args"
|
2019-05-10 02:53:08 +00:00
|
|
|
-D ESPTOOL_WORKING_DIR="${build_dir}"
|
2018-09-13 04:13:20 +00:00
|
|
|
-P run_esptool.cmake
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
|
|
|
|
USES_TERMINAL
|
2018-02-27 04:45:30 +00:00
|
|
|
)
|
2018-01-23 06:08:28 +00:00
|
|
|
endfunction()
|
|
|
|
|
|
|
|
esptool_py_custom_target(flash project "app;partition_table;bootloader")
|
|
|
|
esptool_py_custom_target(app-flash app "app")
|
|
|
|
esptool_py_custom_target(bootloader-flash bootloader "bootloader")
|
2019-01-22 03:45:45 +00:00
|
|
|
|
2019-01-21 14:14:56 +00:00
|
|
|
if(CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT)
|
|
|
|
esptool_py_custom_target(encrypted-flash encrypted_project "app;partition_table;bootloader")
|
|
|
|
esptool_py_custom_target(encrypted-app-flash encrypted_app "app")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
2019-01-22 03:45:45 +00:00
|
|
|
add_custom_target(flash_project_args_target)
|
|
|
|
|
|
|
|
# esptool_py_flash_project_args
|
|
|
|
#
|
2019-06-21 11:48:41 +00:00
|
|
|
# Add file to the flasher args list, to be flashed at a particular offset.
|
|
|
|
#
|
|
|
|
# When a template FLASH_FILE_TEMPLATE is given, the variables OFFSET and IMAGE
|
|
|
|
# hold the value of arguments offset and image, respectively.
|
2019-01-22 03:45:45 +00:00
|
|
|
function(esptool_py_flash_project_args entry offset image)
|
|
|
|
set(options FLASH_IN_PROJECT) # flash the image when flashing the project
|
|
|
|
set(single_value FLASH_FILE_TEMPLATE) # template file to use to be able to
|
|
|
|
# flash the image individually using esptool
|
2019-05-10 02:53:08 +00:00
|
|
|
cmake_parse_arguments(_ "${options}" "${single_value}" "" "${ARGN}")
|
2019-01-22 03:45:45 +00:00
|
|
|
|
2019-05-10 02:53:08 +00:00
|
|
|
idf_build_get_property(build_dir BUILD_DIR)
|
2019-01-22 03:45:45 +00:00
|
|
|
get_property(flash_project_entries TARGET flash_project_args_target PROPERTY FLASH_PROJECT_ENTRIES)
|
|
|
|
|
|
|
|
if(${entry} IN_LIST flash_project_entries)
|
|
|
|
message(FATAL_ERROR "entry '${entry}' has already been added to flash project entries")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
list(APPEND flash_project_entries "${entry}")
|
|
|
|
set_property(TARGET flash_project_args_target PROPERTY FLASH_PROJECT_ENTRIES "${flash_project_entries}")
|
|
|
|
|
|
|
|
file(RELATIVE_PATH image ${CMAKE_BINARY_DIR} ${image})
|
|
|
|
|
|
|
|
# Generate the standalone flash file to flash the image individually using esptool
|
2019-05-10 02:53:08 +00:00
|
|
|
set(entry_flash_args ${build_dir}/flash_${entry}_args)
|
|
|
|
if(NOT __FLASH_FILE_TEMPLATE)
|
2019-01-22 03:45:45 +00:00
|
|
|
file(GENERATE OUTPUT ${entry_flash_args} CONTENT "${offset} ${image}")
|
|
|
|
else()
|
2019-06-21 11:48:41 +00:00
|
|
|
set(OFFSET ${offset})
|
|
|
|
set(IMAGE ${image})
|
2019-05-10 02:53:08 +00:00
|
|
|
get_filename_component(template "${__FLASH_FILE_TEMPLATE}" ABSOLUTE)
|
2019-06-21 11:48:41 +00:00
|
|
|
configure_file(${template} ${CMAKE_CURRENT_BINARY_DIR}/${template}.in2)
|
|
|
|
file(GENERATE OUTPUT ${entry_flash_args} INPUT ${CMAKE_CURRENT_BINARY_DIR}/${template}.in2)
|
|
|
|
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
APPEND PROPERTY
|
|
|
|
ADDITIONAL_MAKE_CLEAN_FILES ${CMAKE_CURRENT_BINARY_DIR}/${template}.in2})
|
|
|
|
unset(OFFSET)
|
|
|
|
unset(IMAGE)
|
2019-01-22 03:45:45 +00:00
|
|
|
endif()
|
|
|
|
|
2019-05-10 02:53:08 +00:00
|
|
|
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
APPEND PROPERTY ADDITIONAL_MAKE_CLEAN_FILES ${entry_flash_args})
|
2019-01-22 03:45:45 +00:00
|
|
|
|
|
|
|
# Generate standalone entries in the flasher args json file
|
|
|
|
get_property(flash_project_args_entry_json TARGET
|
|
|
|
flash_project_args_target PROPERTY FLASH_PROJECT_ARGS_ENTRY_JSON)
|
|
|
|
list(APPEND flash_project_args_entry_json
|
|
|
|
"\"${entry}\" : { \"offset\" : \"${offset}\", \"file\" : \"${image}\" }")
|
|
|
|
set_property(TARGET flash_project_args_target
|
|
|
|
PROPERTY FLASH_PROJECT_ARGS_ENTRY_JSON "${flash_project_args_entry_json}")
|
|
|
|
|
|
|
|
# Generate entries in the flasher args json file
|
2019-05-10 02:53:08 +00:00
|
|
|
if(__FLASH_IN_PROJECT)
|
2019-01-22 03:45:45 +00:00
|
|
|
get_property(flash_project_args TARGET flash_project_args_target PROPERTY FLASH_PROJECT_ARGS)
|
|
|
|
list(APPEND flash_project_args "${offset} ${image}")
|
|
|
|
set_property(TARGET flash_project_args_target PROPERTY FLASH_PROJECT_ARGS "${flash_project_args}")
|
|
|
|
|
|
|
|
get_property(flash_project_args_json TARGET flash_project_args_target PROPERTY FLASH_PROJECT_ARGS_JSON)
|
|
|
|
list(APPEND flash_project_args_json "\"${offset}\" : \"${image}\"")
|
|
|
|
set_property(TARGET flash_project_args_target PROPERTY FLASH_PROJECT_ARGS_JSON "${flash_project_args_json}")
|
|
|
|
endif()
|
2019-05-09 12:10:35 +00:00
|
|
|
endfunction()
|