blob: 5c12af84720df891625fbfa727ca40c35d41acab [file] [log] [blame]
#-------------------------------------------------------------------------------
# Copyright (c) 2020-2023, Arm Limited and Contributors. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
#-------------------------------------------------------------------------------
cmake_minimum_required(VERSION 3.18 FATAL_ERROR)
# Set default platform.
set(TS_PLATFORM "arm/fvp/fvp_base_revc-2xaemv8a" CACHE STRING "Target platform location.")
# Te crypto SP is big. Set default build type to MinSizWithDebInfo to avoid running ouf of
# secure memory on low resource IoT platforms.
if (NOT DEFINED CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "MinSizWithDebInfo" CACHE STRING "Build type.")
endif()
include(../../../deployment.cmake REQUIRED)
#-------------------------------------------------------------------------------
# The CMakeLists.txt for building the crypto deployment for opteesp
#
# Builds the Crypto service provider for running in an SEL0 secure partition
# hosted by OPTEE in the role of SPM.
#-------------------------------------------------------------------------------
include(${TS_ROOT}/environments/opteesp/env.cmake)
project(trusted-services LANGUAGES C ASM)
add_executable(crypto)
target_include_directories(crypto PRIVATE "${TOP_LEVEL_INCLUDE_DIRS}")
set(SP_BIN_UUID_CANON "d9df52d5-16a2-4bb2-9aa4-d26d3b84e8c0")
set(SP_FFA_UUID_CANON "${TS_RPC_UUID_CANON}")
set(SP_HEAP_SIZE "490 * 1024" CACHE STRING "SP heap size in bytes")
set(SP_BOOT_ORDER "4" CACHE STRING "Boot order of the SP")
set(TRACE_PREFIX "CRYPTO" CACHE STRING "Trace prefix")
target_include_directories(crypto PRIVATE
${CMAKE_CURRENT_LIST_DIR}
)
#-------------------------------------------------------------------------------
# Deployment specific components
#
#-------------------------------------------------------------------------------
add_components(TARGET "crypto"
BASE_DIR ${TS_ROOT}
COMPONENTS
"environments/opteesp"
)
include(../../env/commonsp/crypto_sp.cmake REQUIRED)
include(../../crypto.cmake REQUIRED)
include(../../infra/baremetal-psa.cmake REQUIRED)
#-------------------------------------------------------------------------------
# Set target platform to provide drivers needed by the deployment
#
#-------------------------------------------------------------------------------
add_platform(TARGET "crypto")
#-------------------------------------------------------------------------------
# Deployment specific build options
#-------------------------------------------------------------------------------
target_compile_definitions(crypto PRIVATE
ARM64=1
)
if(CMAKE_C_COMPILER_ID STREQUAL "GNU")
target_compile_options(crypto PRIVATE
-std=c99
)
endif()
#-------------------------------------------------------------------------------
# Deployment specific install options
#-------------------------------------------------------------------------------
if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
set(CMAKE_INSTALL_PREFIX ${CMAKE_BINARY_DIR}/install CACHE PATH "location to install build output to." FORCE)
endif()
#TODO: api headers
install(TARGETS crypto
RUNTIME DESTINATION ${TS_ENV}/bin
)
get_property(_PROTO_FILES TARGET crypto PROPERTY PROTOBUF_FILES)
install(FILES ${_PROTO_FILES} DESTINATION ${TS_ENV}/lib/protobuf)
include(${TS_ROOT}/tools/cmake/common/ExportSp.cmake)
export_sp(
SP_FFA_UUID_CANON ${SP_FFA_UUID_CANON}
SP_BIN_UUID_CANON ${SP_BIN_UUID_CANON}
SP_BOOT_ORDER ${SP_BOOT_ORDER}
SP_NAME "crypto"
MK_IN ${TS_ROOT}/environments/opteesp/sp.mk.in
DTS_IN ${CMAKE_CURRENT_LIST_DIR}/default_crypto.dts.in
JSON_IN ${TS_ROOT}/environments/opteesp/sp_pkg.json.in
)