| #------------------------------------------------------------------------------- |
| # Copyright (c) 2020-2022, Arm Limited. All rights reserved. |
| # Copyright (c) 2022 Cypress Semiconductor Corporation (an Infineon company) |
| # or an affiliate of Cypress Semiconductor Corporation. All rights reserved. |
| # |
| # SPDX-License-Identifier: BSD-3-Clause |
| # |
| #------------------------------------------------------------------------------- |
| |
| cmake_minimum_required(VERSION 3.13) |
| project(tfm_ns LANGUAGES ASM C) |
| |
| # For multi-core projects, the NS app can be run on a different CPU to the |
| # Secure code. To facilitate this, we once again reload the compiler to load the |
| # setting for the NS CPU. Cmake settings are directory scoped so this affects |
| # anything loaded from or declared in this dir. |
| if (EXISTS ${CMAKE_SOURCE_DIR}/platform/ext/target/${TFM_PLATFORM}/preload_ns.cmake) |
| include(${CMAKE_SOURCE_DIR}/platform/ext/target/${TFM_PLATFORM}/preload_ns.cmake) |
| tfm_toolchain_reload_compiler() |
| endif() |
| |
| if (TFM_MULTI_CORE_TOPOLOGY) |
| # Enable TFM_MULTI_CORE_NS_OS when building with tf-m-tests NS App. |
| set(TFM_MULTI_CORE_NS_OS ON CACHE BOOL "Enable NS RTOS support in NS mailbox") |
| endif() |
| |
| # In actual NS integration, NS side build should include the source files |
| # exported by TF-M build. |
| # Directly include interface folder to simplify the NS build in this demo, since |
| # install always occurs at the end of build. |
| set(INTERFACE_SRC_DIR ${CMAKE_SOURCE_DIR}/interface/src) |
| set(INTERFACE_INC_DIR ${CMAKE_SOURCE_DIR}/interface/include) |
| |
| # NS interface implemented by NSPE |
| set(NS_INTERFACE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../ns_interface) |
| |
| # nsid_manager |
| set(NSID_MGR_DIR ${NS_INTERFACE_DIR}/ns_client_ext) |
| |
| #################### TF-M NS interface (header only) ########################### |
| |
| add_library(tfm_ns_interface INTERFACE) |
| |
| # Include interface headers exported by TF-M |
| target_include_directories(tfm_ns_interface |
| INTERFACE |
| ${INTERFACE_INC_DIR} |
| ${CMAKE_BINARY_DIR}/generated/interface/include |
| $<$<BOOL:${TFM_PARTITION_NS_AGENT_MAILBOX}>:${INTERFACE_INC_DIR}/multi_core> |
| ) |
| |
| # Include NS local interface headers |
| target_include_directories(tfm_ns_interface |
| INTERFACE |
| ${NS_INTERFACE_DIR} |
| ${NSID_MGR_DIR} |
| ) |
| |
| # PSA interface files are generated from a template |
| add_dependencies(tfm_ns_interface |
| tfm_generated_files |
| ) |
| |
| # Include selection of Secure Partitions from TF-M build. |
| # It can be replaced by NS side configurations later. |
| target_link_libraries(tfm_ns_interface |
| INTERFACE |
| tfm_partition_defs |
| ) |
| |
| target_compile_definitions(tfm_ns_interface |
| INTERFACE |
| $<$<BOOL:${TFM_PSA_API}>:TFM_PSA_API> |
| $<$<STREQUAL:${TEST_PSA_API},IPC>:PSA_API_TEST_IPC> |
| $<$<BOOL:${TFM_NS_MANAGE_NSID}>:TFM_NS_MANAGE_NSID> |
| $<$<BOOL:${TEST_NS_MANAGE_NSID}>:TEST_NS_MANAGE_NSID> |
| $<$<BOOL:${CONFIG_TFM_USE_TRUSTZONE}>:CONFIG_TFM_USE_TRUSTZONE> |
| $<$<BOOL:${TFM_MULTI_CORE_TOPOLOGY}>:TFM_MULTI_CORE_TOPOLOGY> |
| $<$<BOOL:${TFM_MULTI_CORE_NS_OS}>:TFM_MULTI_CORE_NS_OS> |
| $<$<AND:$<BOOL:${TFM_MULTI_CORE_NS_OS_MAILBOX_THREAD}>,$<BOOL:${TFM_MULTI_CORE_NS_OS}>>:TFM_MULTI_CORE_NS_OS_MAILBOX_THREAD> |
| $<$<BOOL:${FORWARD_PROT_MSG}>:FORWARD_PROT_MSG> |
| ) |
| |
| target_compile_options(tfm_ns_interface |
| INTERFACE |
| ${COMPILER_CP_FLAG} |
| ) |
| |
| ###################### TF-M NS interface api (NS lib) ########################## |
| |
| add_library(tfm_api_ns STATIC) |
| |
| target_sources(tfm_api_ns |
| PRIVATE |
| $<$<BOOL:${TFM_NS_MANAGE_NSID}>:${NSID_MGR_DIR}/tfm_nsid_manager.c> |
| ) |
| |
| if (TFM_PSA_API) |
| target_sources(tfm_api_ns PRIVATE |
| $<$<OR:$<BOOL:${FORWARD_PROT_MSG}>,$<BOOL:${TFM_PARTITION_PLATFORM}>>:${INTERFACE_SRC_DIR}/tfm_platform_ipc_api.c> |
| $<$<OR:$<BOOL:${FORWARD_PROT_MSG}>,$<BOOL:${TFM_PARTITION_PROTECTED_STORAGE}>>:${INTERFACE_SRC_DIR}/tfm_ps_ipc_api.c> |
| $<$<OR:$<BOOL:${FORWARD_PROT_MSG}>,$<BOOL:${TFM_PARTITION_INTERNAL_TRUSTED_STORAGE}>>:${INTERFACE_SRC_DIR}/tfm_its_ipc_api.c> |
| $<$<OR:$<BOOL:${FORWARD_PROT_MSG}>,$<BOOL:${TFM_PARTITION_CRYPTO}>>:${INTERFACE_SRC_DIR}/tfm_crypto_ipc_api.c> |
| $<$<OR:$<BOOL:${FORWARD_PROT_MSG}>,$<BOOL:${TFM_PARTITION_INITIAL_ATTESTATION}>>:${INTERFACE_SRC_DIR}/tfm_initial_attestation_ipc_api.c> |
| $<$<BOOL:${TFM_PARTITION_FIRMWARE_UPDATE}>:${INTERFACE_SRC_DIR}/tfm_firmware_update_ipc_api.c> |
| ) |
| |
| if (TFM_PARTITION_NS_AGENT_MAILBOX) |
| target_sources(tfm_api_ns PRIVATE |
| ${INTERFACE_SRC_DIR}/multi_core/tfm_multi_core_ns_api.c |
| ${INTERFACE_SRC_DIR}/multi_core/tfm_multi_core_psa_ns_api.c |
| $<$<NOT:$<BOOL:${TFM_MULTI_CORE_NS_OS_MAILBOX_THREAD}>>:${INTERFACE_SRC_DIR}/multi_core/tfm_ns_mailbox.c> |
| $<$<AND:$<BOOL:${TFM_MULTI_CORE_NS_OS}>,$<BOOL:${TFM_MULTI_CORE_NS_OS_MAILBOX_THREAD}>>:${INTERFACE_SRC_DIR}/multi_core/tfm_ns_mailbox_thread.c> |
| ) |
| |
| # NS RTOS specific implementation of NS mailbox |
| target_sources(tfm_api_ns PRIVATE |
| $<$<BOOL:${TFM_MULTI_CORE_NS_OS}>:${NS_INTERFACE_DIR}/multi_core/tfm_ns_mailbox_rtos_api.c> |
| $<$<BOOL:${TEST_NS_MULTI_CORE}>:${NS_INTERFACE_DIR}/multi_core/tfm_ns_mailbox_test.c> |
| ) |
| endif() |
| else() |
| target_sources(tfm_api_ns PRIVATE |
| $<$<BOOL:${TFM_PARTITION_PLATFORM}>:${INTERFACE_SRC_DIR}/tfm_platform_func_api.c> |
| $<$<BOOL:${TFM_PARTITION_AUDIT_LOG}>:${INTERFACE_SRC_DIR}/tfm_audit_func_api.c> |
| $<$<BOOL:${TFM_PARTITION_PROTECTED_STORAGE}>:${INTERFACE_SRC_DIR}/tfm_ps_func_api.c> |
| $<$<BOOL:${TFM_PARTITION_INTERNAL_TRUSTED_STORAGE}>:${INTERFACE_SRC_DIR}/tfm_its_func_api.c> |
| $<$<BOOL:${TFM_PARTITION_CRYPTO}>:${INTERFACE_SRC_DIR}/tfm_crypto_func_api.c> |
| $<$<BOOL:${TFM_PARTITION_INITIAL_ATTESTATION}>:${INTERFACE_SRC_DIR}/tfm_initial_attestation_func_api.c> |
| $<$<BOOL:${TFM_PARTITION_FIRMWARE_UPDATE}>:${INTERFACE_SRC_DIR}/tfm_firmware_update_func_api.c> |
| ) |
| endif() |
| |
| target_sources(tfm_api_ns PRIVATE |
| $<$<AND:$<BOOL:${TFM_PSA_API}>,$<BOOL:${CONFIG_TFM_USE_TRUSTZONE}>>:${INTERFACE_SRC_DIR}/tfm_psa_ns_api.c> |
| # NS specific implementation of NS interface dispacther |
| $<$<BOOL:${CONFIG_TFM_USE_TRUSTZONE}>:${CMAKE_CURRENT_SOURCE_DIR}/tfm_ns_interface.c> |
| ) |
| |
| target_link_libraries(tfm_api_ns |
| PUBLIC |
| tfm_ns_interface |
| PRIVATE |
| $<$<BOOL:${CONFIG_TFM_USE_TRUSTZONE}>:tfm_s_veneers> |
| platform_ns |
| ) |
| |
| ############################# PSA test integration ############################# |
| |
| if(TEST_PSA_API AND NOT PSA_ARCH_TESTS_BINARY_PATH) |
| if(NOT SUITE) |
| set(SUITE ${TEST_PSA_API}) |
| endif() |
| |
| if (NOT DEFINED PSA_API_TEST_TARGET) |
| string(REGEX REPLACE ".*/" "" PSA_API_TEST_TARGET ${TFM_PLATFORM}) |
| endif() |
| |
| if(NOT TARGET) |
| if (NOT "${TEST_PSA_API}" STREQUAL "IPC") |
| set(TARGET tgt_dev_apis_tfm_${PSA_API_TEST_TARGET}) |
| else() |
| set(TARGET tgt_ff_tfm_${PSA_API_TEST_TARGET}) |
| endif() |
| endif() |
| |
| |
| if(NOT PSA_INCLUDE_PATHS) |
| set(PSA_INCLUDE_PATHS ${INTERFACE_INC_DIR}/ |
| ${CMAKE_BINARY_DIR}/generated/api-tests/platform/manifests/ |
| ${CMAKE_BINARY_DIR}/generated/interface/include |
| ) |
| endif() |
| |
| if(NOT SP_HEAP_MEM_SUPP) |
| set(SP_HEAP_MEM_SUPP 0) |
| endif() |
| if(NOT PLATFORM_PSA_ISOLATION_LEVEL) |
| set(PLATFORM_PSA_ISOLATION_LEVEL ${TFM_ISOLATION_LEVEL}) |
| endif() |
| |
| if (NOT TOOLCHAIN) |
| if (${CMAKE_C_COMPILER_ID} STREQUAL GNU) |
| set(TOOLCHAIN GNUARM) |
| elseif (${CMAKE_C_COMPILER_ID} STREQUAL ARMClang) |
| set(TOOLCHAIN ARMCLANG) |
| endif() |
| endif() |
| |
| if (NOT CPU_ARCH) |
| if (${TFM_SYSTEM_ARCHITECTURE} STREQUAL armv8-m.main) |
| set(CPU_ARCH armv8m_ml) |
| elseif (${TFM_SYSTEM_ARCHITECTURE} STREQUAL armv8-m.base) |
| set(CPU_ARCH armv8m_bl) |
| elseif (${TFM_SYSTEM_ARCHITECTURE} STREQUAL armv7-m) |
| set(CPU_ARCH armv7m) |
| endif() |
| endif() |
| |
| add_subdirectory(${PSA_ARCH_TESTS_PATH}/api-tests ${CMAKE_CURRENT_BINARY_DIR}/psa_api_tests) |
| |
| if (TEST_PSA_API STREQUAL IPC) |
| target_include_directories(tfm_partitions |
| INTERFACE |
| ${CMAKE_BINARY_DIR}/generated/api-tests/platform/manifests |
| ) |
| |
| target_sources(tfm_psa_rot_partition_driver_partition |
| PRIVATE |
| ${CMAKE_BINARY_DIR}/generated/api-tests/platform/manifests/auto_generated/intermedia_driver_partition_psa.c |
| ) |
| target_link_libraries(tfm_psa_rot_partition_driver_partition |
| PRIVATE |
| psa_interface |
| platform_s |
| ) |
| target_compile_definitions(tfm_psa_rot_partition_driver_partition |
| PRIVATE |
| CONFIG_TFM_BUILDING_SPE=1 |
| TFM_LVL=${TFM_ISOLATION_LEVEL} |
| ) |
| |
| target_sources(tfm_app_rot_partition_client_partition |
| PRIVATE |
| ${CMAKE_BINARY_DIR}/generated/api-tests/platform/manifests/auto_generated/intermedia_client_partition_psa.c |
| ) |
| target_link_libraries(tfm_app_rot_partition_client_partition |
| PRIVATE |
| psa_interface |
| platform_s |
| ) |
| target_compile_definitions(tfm_app_rot_partition_client_partition |
| PRIVATE |
| CONFIG_TFM_BUILDING_SPE=1 |
| TFM_LVL=${TFM_ISOLATION_LEVEL} |
| ) |
| |
| target_sources(tfm_app_rot_partition_server_partition |
| PRIVATE |
| ${CMAKE_BINARY_DIR}/generated/api-tests/platform/manifests/auto_generated/intermedia_server_partition_psa.c |
| ) |
| target_link_libraries(tfm_app_rot_partition_server_partition |
| PRIVATE |
| psa_interface |
| platform_s |
| ) |
| target_compile_definitions(tfm_app_rot_partition_server_partition |
| PRIVATE |
| CONFIG_TFM_BUILDING_SPE=1 |
| TFM_LVL=${TFM_ISOLATION_LEVEL} |
| ) |
| |
| target_sources(tfm_partitions |
| INTERFACE |
| ${CMAKE_BINARY_DIR}/generated/api-tests/platform/manifests/auto_generated/load_info_driver_partition_psa.c |
| ${CMAKE_BINARY_DIR}/generated/api-tests/platform/manifests/auto_generated/load_info_client_partition_psa.c |
| ${CMAKE_BINARY_DIR}/generated/api-tests/platform/manifests/auto_generated/load_info_server_partition_psa.c |
| ) |
| |
| target_link_libraries(tfm_partitions |
| INTERFACE |
| tfm_psa_rot_partition_driver_partition |
| tfm_app_rot_partition_client_partition |
| tfm_app_rot_partition_server_partition |
| ) |
| endif() |
| endif() |
| |
| ############################# Test integration ################################# |
| |
| add_library(tfm_test_app STATIC EXCLUDE_FROM_ALL) |
| |
| target_sources(tfm_test_app |
| PRIVATE |
| test_app.c |
| ) |
| |
| target_include_directories(tfm_test_app |
| PUBLIC |
| . |
| ) |
| |
| target_link_libraries(tfm_test_app |
| PRIVATE |
| $<$<BOOL:${TEST_FRAMEWORK_NS}>:tfm_ns_tests> |
| $<$<BOOL:${TEST_PSA_API}>:val_nspe> |
| $<$<BOOL:${TEST_PSA_API}>:pal_nspe> |
| $<$<BOOL:${TEST_PSA_API}>:test_combine> |
| tfm_api_ns |
| tfm_log |
| ) |
| |
| target_compile_definitions(tfm_test_app |
| PRIVATE |
| $<$<BOOL:${TEST_FRAMEWORK_NS}>:TEST_FRAMEWORK_NS> |
| $<$<BOOL:${TEST_FRAMEWORK_S}>:TEST_FRAMEWORK_S> |
| $<$<BOOL:${TFM_LIB_MODEL}>:TFM_LIB_MODEL> |
| $<$<BOOL:${TEST_PSA_API}>:PSA_API_TEST_NS> |
| ) |
| |
| ############################# TFM NS app ####################################### |
| |
| add_executable(tfm_ns) |
| |
| target_sources(tfm_ns |
| PRIVATE |
| main_ns.c |
| ) |
| |
| target_link_libraries(tfm_ns |
| PRIVATE |
| platform_ns |
| CMSIS_5_tfm_ns |
| tfm_test_app |
| tfm_log |
| ) |
| |
| set_target_properties(tfm_ns PROPERTIES |
| SUFFIX ".axf" |
| RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin" |
| ) |
| |
| target_link_options(tfm_ns |
| PRIVATE |
| $<$<C_COMPILER_ID:GNU>:-Wl,-Map=${CMAKE_BINARY_DIR}/bin/tfm_ns.map> |
| $<$<C_COMPILER_ID:ARMClang>:--map> |
| $<$<C_COMPILER_ID:IAR>:--map\;${CMAKE_BINARY_DIR}/bin/tfm_ns.map> |
| ) |
| |
| add_convert_to_bin_target(tfm_ns) |
| |
| ############################# CMSIS ############################################ |
| |
| include(FetchContent) |
| |
| set(FETCHCONTENT_QUIET FALSE) |
| cmake_policy(SET CMP0079 NEW) |
| |
| add_library(CMSIS_5_tfm_ns INTERFACE) |
| |
| target_sources(CMSIS_5_tfm_ns |
| INTERFACE |
| ${NSID_MGR_DIR}/tz_shim_layer.c |
| ${CMSIS_5_PATH}/RTOS2/RTX/Config/RTX_Config.c |
| ${CMSIS_5_PATH}/RTOS2/RTX/Source/rtx_lib.c |
| ${CMAKE_CURRENT_SOURCE_DIR}/os_wrapper_cmsis_rtos_v2.c |
| $<$<BOOL:${TFM_NS_MANAGE_NSID}>:${CMAKE_CURRENT_SOURCE_DIR}/tfm_nsid_map_table.c> |
| ) |
| |
| target_include_directories(CMSIS_5_tfm_ns |
| INTERFACE |
| ${CMSIS_5_PATH}/Core/Include |
| ${CMSIS_5_PATH}/RTOS2/Include |
| ${CMSIS_5_PATH}/RTOS2/RTX/Include |
| ${CMSIS_5_PATH}/RTOS2/RTX/Config |
| $<$<BOOL:${TFM_NS_MANAGE_NSID}>:${CMAKE_CURRENT_SOURCE_DIR}> |
| ) |
| |
| target_link_libraries(CMSIS_5_tfm_ns |
| INTERFACE |
| platform_ns |
| ) |
| |
| target_compile_definitions(CMSIS_5_tfm_ns |
| INTERFACE |
| $<$<BOOL:${TFM_NS_MANAGE_NSID}>:TFM_NS_MANAGE_NSID> |
| ) |