aboutsummaryrefslogtreecommitdiff
path: root/secure_fw/partitions/psa_proxy/CMakeLists.txt
blob: 5db47e9b139e1ddb7216549d3aceb7657f94a8a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#-------------------------------------------------------------------------------
# Copyright (c) 2020-2021, Arm Limited. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
#-------------------------------------------------------------------------------

if(NOT TFM_PARTITION_PSA_PROXY)
    return()
endif()

cmake_minimum_required(VERSION 3.15)
cmake_policy(SET CMP0079 NEW)

add_library(tfm_psa_rot_partition_psa_proxy STATIC)

target_include_directories(tfm_psa_rot_partition_psa_proxy
    INTERFACE
        $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
        ${CMAKE_BINARY_DIR}/generated/secure_fw/partitions/psa_proxy
    PUBLIC
        # Required for spm_ipc.h
        $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>/../../spm/cmsis_psa
)

target_sources(tfm_psa_rot_partition_psa_proxy
    PRIVATE
        psa_proxy.c
        psa_proxy_shared_mem_mngr.c
        ../../../interface/src/multi_core/tfm_ns_mailbox.c
)

# The generated sources
target_sources(tfm_psa_rot_partition_psa_proxy
    PRIVATE
        ${CMAKE_BINARY_DIR}/generated/secure_fw/partitions/psa_proxy/auto_generated/intermedia_tfm_psa_proxy.c
)

target_link_libraries(tfm_psa_rot_partition_psa_proxy
    PRIVATE
        tfm_secure_api
        psa_interface
        secure_fw
        platform_s
)

############################ Secure API ########################################

target_sources(tfm_sprt
    PRIVATE
        ../crypto/tfm_crypto_secure_api.c
        ../initial_attestation/tfm_attest_secure_api.c
        ../internal_trusted_storage/tfm_its_secure_api.c
        ../platform/tfm_platform_secure_api.c
        ../protected_storage/tfm_ps_secure_api.c
)

# The veneers give warnings about not being properly declared so they get hidden
# to not overshadow _real_ warnings.
set_source_files_properties(tfm_ps_secure_api.c
    PROPERTIES
        COMPILE_FLAGS -Wno-implicit-function-declaration
)

############################ Partition Defs ####################################

target_link_libraries(tfm_partitions
    INTERFACE
        tfm_psa_rot_partition_psa_proxy
)

target_compile_definitions(tfm_partition_defs
    INTERFACE
        TFM_PARTITION_PSA_PROXY
)