Anton Komlev | aee4b61 | 2023-05-14 17:38:36 +0100 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
| 2 | # Copyright (c) 2023, Arm Limited. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | #------------------------------------------------------------------------------- |
| 7 | |
| 8 | # This CMake script template contains the set of options settled on secure side |
| 9 | # build but necessary for building the non-secure side too. |
| 10 | |
Kevin Peng | ef255d7 | 2023-10-27 17:03:55 +0800 | [diff] [blame] | 11 | # TF-M Profile |
| 12 | set(TFM_PROFILE @TFM_PROFILE@ CACHE STRING "The TF-M profile") |
| 13 | |
Anton Komlev | aee4b61 | 2023-05-14 17:38:36 +0100 | [diff] [blame] | 14 | set(TFM_PARTITION_INTERNAL_TRUSTED_STORAGE @TFM_PARTITION_INTERNAL_TRUSTED_STORAGE@ CACHE BOOL "Enable Internal Trusted Storage partition") |
| 15 | set(TFM_PARTITION_CRYPTO @TFM_PARTITION_CRYPTO@ CACHE BOOL "Enable Crypto partition") |
| 16 | set(TFM_PARTITION_INITIAL_ATTESTATION @TFM_PARTITION_INITIAL_ATTESTATION@ CACHE BOOL "Enable Initial Attestation partition") |
| 17 | set(TFM_PARTITION_PROTECTED_STORAGE @TFM_PARTITION_PROTECTED_STORAGE@ CACHE BOOL "Enable Protected Storage partition") |
| 18 | set(TFM_PARTITION_PLATFORM @TFM_PARTITION_PLATFORM@ CACHE BOOL "Enable Platform partition") |
| 19 | set(TFM_PARTITION_FIRMWARE_UPDATE @TFM_PARTITION_FIRMWARE_UPDATE@ CACHE BOOL "Enable firmware update partition") |
| 20 | |
| 21 | # The options necessary for signing the final image |
| 22 | set(BL2 @BL2@) |
| 23 | set(BL2_HEADER_SIZE @BL2_HEADER_SIZE@) |
| 24 | set(BL2_TRAILER_SIZE @BL2_TRAILER_SIZE@) |
| 25 | set(MCUBOOT_IMAGE_NUMBER @MCUBOOT_IMAGE_NUMBER@) |
| 26 | set(MCUBOOT_CONFIRM_IMAGE @MCUBOOT_CONFIRM_IMAGE@) |
| 27 | set(MCUBOOT_ENC_IMAGES @MCUBOOT_ENC_IMAGES@) |
| 28 | set(MCUBOOT_ENC_KEY_LEN @MCUBOOT_ENC_KEY_LEN@) |
Michel JAOUEN | e3acae8 | 2023-10-31 11:49:03 +0100 | [diff] [blame] | 29 | set(MCUBOOT_KEY_ENC @MCUBOOT_KEY_ENC@) |
Anton Komlev | aee4b61 | 2023-05-14 17:38:36 +0100 | [diff] [blame] | 30 | set(MCUBOOT_MEASURED_BOOT @MCUBOOT_MEASURED_BOOT@) |
| 31 | set(MCUBOOT_ALIGN_VAL @MCUBOOT_ALIGN_VAL@) |
| 32 | set(MCUBOOT_UPGRADE_STRATEGY @MCUBOOT_UPGRADE_STRATEGY@) |
| 33 | set(MCUBOOT_S_IMAGE_MIN_VER @MCUBOOT_S_IMAGE_MIN_VER@) |
| 34 | |
| 35 | set(MCUBOOT_MEASURED_BOOT @MCUBOOT_MEASURED_BOOT@) |
| 36 | set(MCUBOOT_HW_KEY @MCUBOOT_HW_KEY@) |
| 37 | |
| 38 | set(MCUBOOT_SECURITY_COUNTER_S @MCUBOOT_SECURITY_COUNTER_S@) |
| 39 | set(MCUBOOT_IMAGE_VERSION_S @MCUBOOT_IMAGE_VERSION_S@) |
| 40 | set(MCUBOOT_KEY_S ${CONFIG_SPE_PATH}/image_signing/keys/root-RSA-3072.pem) |
| 41 | |
| 42 | set(MCUBOOT_SECURITY_COUNTER_NS @MCUBOOT_SECURITY_COUNTER_NS@) |
| 43 | set(MCUBOOT_IMAGE_VERSION_NS @MCUBOOT_IMAGE_VERSION_NS@) |
| 44 | set(MCUBOOT_KEY_NS ${CONFIG_SPE_PATH}/image_signing/keys/root-RSA-3072_1.pem) |
Dávid Házi | 34cf9b9 | 2023-10-11 11:10:41 +0200 | [diff] [blame] | 45 | set(PLATFORM_DEFAULT_IMAGE_SIGNING @PLATFORM_DEFAULT_IMAGE_SIGNING@) |
Anton Komlev | aee4b61 | 2023-05-14 17:38:36 +0100 | [diff] [blame] | 46 | |
Jianliang Shen | bd624ed | 2023-10-24 15:42:59 +0800 | [diff] [blame] | 47 | # The common options describing a platform configuration |
Anton Komlev | aee4b61 | 2023-05-14 17:38:36 +0100 | [diff] [blame] | 48 | |
| 49 | set(TFM_PLATFORM @TFM_PLATFORM@ CACHE STRING "Platform to build TF-M for. Must be either a relative path from [TF-M]/platform/ext/target, or an absolute path.") |
| 50 | set(CONFIG_TFM_USE_TRUSTZONE @CONFIG_TFM_USE_TRUSTZONE@ CACHE BOOL "Use TrustZone") |
| 51 | set(CONFIG_TFM_SPM_BACKEND @CONFIG_TFM_SPM_BACKEND@ CACHE STRING "The SPM backend") |
| 52 | set(TFM_MULTI_CORE_TOPOLOGY @TFM_MULTI_CORE_TOPOLOGY@ CACHE BOOL "Platform has multi core") |
| 53 | set(TFM_PARTITION_NS_AGENT_MAILBOX @TFM_PARTITION_NS_AGENT_MAILBOX@ CACHE BOOL "Enable the Mailbox agents") |
Anton Komlev | aee4b61 | 2023-05-14 17:38:36 +0100 | [diff] [blame] | 54 | set(PSA_FRAMEWORK_HAS_MM_IOVEC @PSA_FRAMEWORK_HAS_MM_IOVEC@ CACHE BOOL "Enable the MM-IOVEC feature") |
| 55 | set(TFM_ISOLATION_LEVEL @TFM_ISOLATION_LEVEL@ CACHE STRING "The TFM isolation level") |
| 56 | |
| 57 | #set(TFM_MULTI_CORE_NS_OS @TFM_MULTI_CORE_NS_OS@) |
| 58 | #set(TFM_MULTI_CORE_NS_OS_MAILBOX_THREAD @TFM_MULTI_CORE_NS_OS_MAILBOX_THREAD@) |
| 59 | |
David Hu | b27a663 | 2023-10-23 22:38:39 +0800 | [diff] [blame] | 60 | set(PLATFORM_DEFAULT_CRYPTO_KEYS @PLATFORM_DEFAULT_CRYPTO_KEYS@ CACHE BOOL "Use the default crypto keys") |
| 61 | set(PLATFORM_DEFAULT_UART_STDOUT @PLATFORM_DEFAULT_UART_STDOUT@ CACHE BOOL "Use default uart stdout implementation.") |
| 62 | |
Anton Komlev | aee4b61 | 2023-05-14 17:38:36 +0100 | [diff] [blame] | 63 | # Testing related options. |
| 64 | |
Kevin Peng | 27cf4de | 2023-10-26 16:04:46 +0800 | [diff] [blame] | 65 | set(TEST_PSA_API @TEST_PSA_API@ CACHE STRING "Which (if any) of the PSA API tests should be compiled") |
| 66 | set(PSA_ARCH_TESTS_PATH @PSA_ARCH_TESTS_PATH@ CACHE PATH "Path to PSA arch test repository if it was give to SPE build") |
| 67 | set(INCLUDE_PANIC_TESTS @INCLUDE_PANIC_TESTS@ CACHE BOOL "Include panic tests") |
Anton Komlev | aee4b61 | 2023-05-14 17:38:36 +0100 | [diff] [blame] | 68 | |
Summer Qin | 7068e94 | 2023-11-14 14:11:48 +0800 | [diff] [blame] | 69 | set(ATTEST_KEY_BITS @ATTEST_KEY_BITS@ CACHE STRING "The size of the initial attestation key in bits") |
| 70 | set(SYMMETRIC_INITIAL_ATTESTATION @SYMMETRIC_INITIAL_ATTESTATION@ CACHE BOOL "Use symmetric crypto for inital attestation") |
| 71 | set(ATTEST_INCLUDE_TEST_CODE @ATTEST_INCLUDE_TEST_CODE@ CACHE BOOL "Include minimal development tests in the initial attestation regression test suite") |
| 72 | set(TFM_MBEDCRYPTO_PSA_CRYPTO_CONFIG_PATH @TFM_MBEDCRYPTO_PSA_CRYPTO_CONFIG_PATH@ CACHE STRING "Config to use psa crypto setting for Mbed Crypto") |
| 73 | set(CC312_LEGACY_DRIVER_API_ENABLED @CC312_LEGACY_DRIVER_API_ENABLED@ CACHE BOOL "This variable controls whether the legacy driver interface is used for CC-312") |
Jianliang Shen | bd624ed | 2023-10-24 15:42:59 +0800 | [diff] [blame] | 74 | |
Anton Komlev | aee4b61 | 2023-05-14 17:38:36 +0100 | [diff] [blame] | 75 | # Other common options |
Jianliang Shen | bd624ed | 2023-10-24 15:42:59 +0800 | [diff] [blame] | 76 | set(CONFIG_TFM_ENABLE_FP @CONFIG_TFM_ENABLE_FP@ CACHE BOOL "Enable/disable FP usage") |
Anton Komlev | aee4b61 | 2023-05-14 17:38:36 +0100 | [diff] [blame] | 77 | |
| 78 | set(TFM_VERSION @TFM_VERSION@) |
| 79 | set(TFM_NS_MANAGE_NSID @TFM_NS_MANAGE_NSID@) |