| #------------------------------------------------------------------------------- |
| # Copyright (c) 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.") |
| include(../../../deployment.cmake REQUIRED) |
| |
| #------------------------------------------------------------------------------- |
| # The CMakeLists.txt for building the default fwu deployment for opteesp |
| # |
| # Builds the fwu 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(fwu) |
| target_include_directories(fwu PRIVATE "${TOP_LEVEL_INCLUDE_DIRS}") |
| set(SP_BIN_UUID_CANON "6823a838-1b06-470e-9774-0cce8bfb53fd") |
| set(SP_FFA_UUID_CANON "${TS_RPC_UUID_CANON}") |
| set(SP_HEAP_SIZE "32 * 1024" CACHE STRING "SP heap size in bytes") |
| |
| target_include_directories(fwu PRIVATE |
| ${CMAKE_CURRENT_LIST_DIR} |
| ) |
| |
| #------------------------------------------------------------------------------- |
| # Configure trace output |
| # |
| #------------------------------------------------------------------------------- |
| set(TRACE_PREFIX "FWU" CACHE STRING "Trace prefix") |
| set(TRACE_LEVEL "TRACE_LEVEL_DEBUG" CACHE STRING "Trace level") |
| |
| #------------------------------------------------------------------------------- |
| # Deployment specific components |
| # |
| #------------------------------------------------------------------------------- |
| |
| add_components(TARGET "fwu" |
| BASE_DIR ${TS_ROOT} |
| COMPONENTS |
| "environments/opteesp" |
| ) |
| |
| include(../../env/commonsp/fwu_sp.cmake REQUIRED) |
| include(../../infra/semihosted-block-store.cmake REQUIRED) |
| include(../../fwu.cmake REQUIRED) |
| |
| #------------------------------------------------------------------------------- |
| # Set target platform to provide drivers needed by the deployment |
| # |
| #------------------------------------------------------------------------------- |
| add_platform(TARGET "fwu") |
| |
| #------------------------------------------------------------------------------- |
| # Deployment specific build options |
| #------------------------------------------------------------------------------- |
| target_compile_definitions(fwu PRIVATE |
| ARM64=1 |
| ) |
| |
| if(CMAKE_C_COMPILER_ID STREQUAL "GNU") |
| target_compile_options(fwu 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 fwu |
| PUBLIC_HEADER DESTINATION ${TS_ENV}/include |
| RUNTIME DESTINATION ${TS_ENV}/bin |
| ) |
| |
| get_property(_PROTO_FILES TARGET fwu 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_NAME "fwu" |
| DTS_IN ${CMAKE_CURRENT_LIST_DIR}/default_fwu.dts.in |
| JSON_IN ${TS_ROOT}/environments/opteesp/sp_pkg.json.in |
| ) |