#------------------------------------------------------------------------------- # 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) include(../../../deployment.cmake REQUIRED) #------------------------------------------------------------------------------- # The CMakeLists.txt for building the protected-storage deployment for opteesp # # Builds the secure storage 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(protected-storage) target_include_directories(protected-storage PRIVATE "${TOP_LEVEL_INCLUDE_DIRS}") set(SP_BIN_UUID_CANON "751bf801-3dde-4768-a514-0f10aeed1790") set(SP_FFA_UUID_CANON "${TS_RPC_UUID_CANON}") set(SP_HEAP_SIZE "32 * 1024" CACHE STRING "SP heap size in bytes") set(TRACE_PREFIX "PS" CACHE STRING "Trace prefix") target_include_directories(protected-storage PRIVATE ${CMAKE_CURRENT_LIST_DIR} ) #------------------------------------------------------------------------------- # Add components - this deployment uses an infrastructure that provides # ram backed storage for SFS. # #------------------------------------------------------------------------------- add_components(TARGET "protected-storage" BASE_DIR ${TS_ROOT} COMPONENTS environments/opteesp ) include(../../env/commonsp/ps_sp.cmake REQUIRED) include(../../protected-storage.cmake REQUIRED) include(../../infra/sfs-ram.cmake REQUIRED) #------------------------------------------------------------------------------- # Deployment specific build options # #------------------------------------------------------------------------------- target_compile_definitions(protected-storage PRIVATE ARM64=1 ) if(CMAKE_C_COMPILER_ID STREQUAL "GNU") target_compile_options(protected-storage 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() install(TARGETS protected-storage PUBLIC_HEADER DESTINATION ${TS_ENV}/include RUNTIME DESTINATION ${TS_ENV}/bin ) 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_NAME "protected-storage" MK_IN ${TS_ROOT}/environments/opteesp/sp.mk.in DTS_IN ${CMAKE_CURRENT_LIST_DIR}/default_protected-storage.dts.in JSON_IN ${TS_ROOT}/environments/opteesp/sp_pkg.json.in )