2019-08-08 04:00:45 +00:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
2019-08-08 03:44:24 +00:00
|
|
|
|
2021-06-16 23:21:36 +00:00
|
|
|
if(CONFIG_EFUSE_VIRTUAL)
|
|
|
|
message(STATUS "Efuse virtual mode is enabled. If Secure boot or Flash encryption is on"
|
|
|
|
" it does not provide any security. FOR TESTING ONLY!")
|
|
|
|
endif()
|
|
|
|
|
2019-06-18 11:34:05 +00:00
|
|
|
if(EXISTS "${COMPONENT_DIR}/${target}")
|
|
|
|
include(${COMPONENT_DIR}/${target}/sources.cmake)
|
|
|
|
spaces2list(EFUSE_SOC_SRCS)
|
|
|
|
set(include_dirs include ${target}/include)
|
2021-01-25 20:27:03 +00:00
|
|
|
set(private_include private_include ${target}/private_include)
|
2019-06-18 11:34:05 +00:00
|
|
|
add_prefix(srcs "${target}/" ${EFUSE_SOC_SRCS})
|
|
|
|
endif()
|
2019-08-08 03:44:24 +00:00
|
|
|
|
2019-06-18 11:34:05 +00:00
|
|
|
list(APPEND srcs "src/esp_efuse_api.c"
|
|
|
|
"src/esp_efuse_fields.c"
|
|
|
|
"src/esp_efuse_utility.c")
|
2021-01-25 20:27:03 +00:00
|
|
|
if("esp32" STREQUAL "${target}")
|
|
|
|
list(APPEND srcs "src/esp_efuse_api_key_esp32.c")
|
|
|
|
else()
|
|
|
|
list(APPEND srcs "src/esp_efuse_api_key_esp32xx.c")
|
|
|
|
endif()
|
2018-11-19 03:46:21 +00:00
|
|
|
|
2019-04-28 07:38:23 +00:00
|
|
|
idf_component_register(SRCS "${srcs}"
|
2019-07-04 07:54:13 +00:00
|
|
|
PRIV_REQUIRES bootloader_support soc spi_flash
|
2019-06-18 11:34:05 +00:00
|
|
|
INCLUDE_DIRS "${include_dirs}"
|
2021-01-25 20:27:03 +00:00
|
|
|
PRIV_INCLUDE_DIRS "${private_include}")
|
2019-06-18 11:34:05 +00:00
|
|
|
|
|
|
|
if(target)
|
|
|
|
set(TOOL_TARGET -t ${target})
|
|
|
|
endif()
|
2018-11-19 03:46:21 +00:00
|
|
|
|
2019-06-18 11:34:05 +00:00
|
|
|
set(GEN_EFUSE_TABLE_ARG ${TOOL_TARGET} --max_blk_len ${CONFIG_EFUSE_MAX_BLK_LEN})
|
2018-11-21 08:09:36 +00:00
|
|
|
|
2019-05-10 02:53:08 +00:00
|
|
|
idf_build_get_property(python PYTHON)
|
|
|
|
|
2018-11-19 03:46:21 +00:00
|
|
|
###################
|
|
|
|
# Make common files esp_efuse_table.c and include/esp_efuse_table.h files.
|
2019-06-18 11:34:05 +00:00
|
|
|
set(EFUSE_COMMON_TABLE_CSV_PATH "${COMPONENT_DIR}/${target}/esp_efuse_table.csv")
|
2018-12-06 09:49:02 +00:00
|
|
|
|
2021-08-11 13:24:17 +00:00
|
|
|
add_custom_target(efuse-common-table COMMAND "${python}"
|
2020-11-10 06:51:08 +00:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/efuse_table_gen.py"
|
|
|
|
${EFUSE_COMMON_TABLE_CSV_PATH} ${GEN_EFUSE_TABLE_ARG})
|
2021-08-11 13:24:17 +00:00
|
|
|
add_deprecated_target_alias(efuse_common_table efuse-common-table)
|
2018-11-19 03:46:21 +00:00
|
|
|
|
2018-11-21 08:09:36 +00:00
|
|
|
###################
|
|
|
|
# Make custom files project/main/esp_efuse_custom_table.c and project/main/include/esp_efuse_custom_table.h files.
|
|
|
|
# Path to CSV file is relative to project path for custom CSV files.
|
2018-11-19 03:46:21 +00:00
|
|
|
if(${CONFIG_EFUSE_CUSTOM_TABLE})
|
|
|
|
# Custom filename expands any path relative to the project
|
2019-05-10 02:53:08 +00:00
|
|
|
idf_build_get_property(project_dir PROJECT_DIR)
|
2020-11-10 06:51:08 +00:00
|
|
|
get_filename_component(EFUSE_CUSTOM_TABLE_CSV_PATH "${CONFIG_EFUSE_CUSTOM_TABLE_FILENAME}"
|
|
|
|
ABSOLUTE BASE_DIR "${project_dir}")
|
2021-08-11 13:24:17 +00:00
|
|
|
add_custom_target(efuse-custom-table COMMAND "${python}" "${CMAKE_CURRENT_SOURCE_DIR}/efuse_table_gen.py"
|
2020-11-10 06:51:08 +00:00
|
|
|
${EFUSE_COMMON_TABLE_CSV_PATH} ${EFUSE_CUSTOM_TABLE_CSV_PATH} ${GEN_EFUSE_TABLE_ARG})
|
2021-08-11 13:24:17 +00:00
|
|
|
add_deprecated_target_alias(efuse_custom_table efuse-custom-table)
|
2018-12-06 09:49:02 +00:00
|
|
|
else()
|
2021-08-11 13:24:17 +00:00
|
|
|
add_custom_target(efuse-custom-table COMMAND)
|
|
|
|
add_deprecated_target_alias(efuse_custom_table efuse-custom-table)
|
2018-11-21 08:09:36 +00:00
|
|
|
endif()#if(${CONFIG_EFUSE_CUSTOM_TABLE})
|
2018-11-19 03:46:21 +00:00
|
|
|
|
2021-08-11 13:24:17 +00:00
|
|
|
add_custom_target(show-efuse-table COMMAND "${python}"
|
2020-11-10 06:51:08 +00:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/efuse_table_gen.py"
|
|
|
|
${EFUSE_COMMON_TABLE_CSV_PATH} ${EFUSE_CUSTOM_TABLE_CSV_PATH} ${GEN_EFUSE_TABLE_ARG} "--info")
|
2021-08-11 13:24:17 +00:00
|
|
|
add_deprecated_target_alias(show_efuse_table show-efuse-table)
|
2018-11-19 03:46:21 +00:00
|
|
|
|
|
|
|
###################
|
|
|
|
# Generates files for unit test. This command is run manually.
|
2019-05-10 02:53:08 +00:00
|
|
|
set(EFUSE_TEST_TABLE_CSV_PATH "${COMPONENT_DIR}/test/esp_efuse_test_table.csv")
|
2020-11-10 06:51:08 +00:00
|
|
|
add_custom_target(efuse_test_table COMMAND "${python}"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/efuse_table_gen.py"
|
|
|
|
${EFUSE_TEST_TABLE_CSV_PATH} ${GEN_EFUSE_TABLE_ARG})
|