mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 01:29:21 -04:00
62 lines
2.2 KiB
CMake
62 lines
2.2 KiB
CMake
idf_component_get_property(hal_dir hal COMPONENT_DIR)
|
|
idf_component_get_property(heap_dir heap COMPONENT_DIR)
|
|
|
|
set(priv_requires soc esp_hw_support)
|
|
set(include_dirs "${COMPONENT_DIR}/port/include"
|
|
"${COMPONENT_DIR}/mbedtls/include"
|
|
"${COMPONENT_DIR}/mbedtls/library")
|
|
|
|
# Shared GDMA layer for TEE
|
|
set(srcs "${COMPONENT_DIR}/esp_tee/esp_tee_crypto_shared_gdma.c")
|
|
|
|
# HAL for the AES/SHA peripherals
|
|
list(APPEND srcs "${hal_dir}/aes_hal.c"
|
|
"${hal_dir}/sha_hal.c")
|
|
|
|
list(APPEND include_dirs "${COMPONENT_DIR}/port/aes/include"
|
|
"${COMPONENT_DIR}/port/aes/dma/include"
|
|
"${COMPONENT_DIR}/port/sha/core/include")
|
|
|
|
list(APPEND srcs "${COMPONENT_DIR}/port/aes/esp_aes_common.c"
|
|
"${COMPONENT_DIR}/port/aes/dma/esp_aes.c"
|
|
"${COMPONENT_DIR}/port/aes/dma/esp_aes_dma_core.c")
|
|
|
|
list(APPEND srcs "${COMPONENT_DIR}/port/sha/core/sha.c"
|
|
"${COMPONENT_DIR}/port/sha/esp_sha.c")
|
|
|
|
# Supporting headers
|
|
list(APPEND include_dirs "${heap_dir}/include")
|
|
|
|
idf_component_register(INCLUDE_DIRS "${include_dirs}"
|
|
PRIV_REQUIRES "${priv_requires}"
|
|
SRCS "${srcs}")
|
|
|
|
# Only build mbedtls libraries
|
|
set(ENABLE_TESTING CACHE BOOL OFF)
|
|
set(ENABLE_PROGRAMS CACHE BOOL OFF)
|
|
|
|
# Use pre-generated source files in mbedtls repository
|
|
set(GEN_FILES CACHE BOOL OFF)
|
|
|
|
# Needed to for include_next includes to work from within mbedtls
|
|
include_directories("${COMPONENT_DIR}/port/include")
|
|
|
|
# Import mbedtls library targets
|
|
add_subdirectory(mbedtls)
|
|
|
|
set(mbedtls_targets mbedcrypto)
|
|
|
|
foreach(target ${mbedtls_targets})
|
|
target_compile_definitions(${target} PUBLIC
|
|
-DMBEDTLS_CONFIG_FILE="${COMPONENT_DIR}/esp_tee/esp_tee_mbedtls_config.h")
|
|
endforeach()
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE ${mbedtls_targets})
|
|
|
|
if(CONFIG_MBEDTLS_HARDWARE_SHA)
|
|
target_sources(mbedcrypto PRIVATE "${COMPONENT_DIR}/port/sha/core/esp_sha1.c"
|
|
"${COMPONENT_DIR}/port/sha/core/esp_sha256.c"
|
|
"${COMPONENT_DIR}/port/sha/core/esp_sha512.c"
|
|
)
|
|
endif()
|