David Hu | 9b6a1fe | 2020-12-21 15:16:09 +0800 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
Kevin Peng | 76c0c16 | 2022-02-09 22:49:06 +0800 | [diff] [blame] | 2 | # Copyright (c) 2020-2022, Arm Limited. All rights reserved. |
Chris Brand | fbf3f46 | 2022-06-23 15:27:20 -0700 | [diff] [blame] | 3 | # Copyright (c) 2022 Cypress Semiconductor Corporation (an Infineon company) |
| 4 | # or an affiliate of Cypress Semiconductor Corporation. All rights reserved. |
David Hu | 9b6a1fe | 2020-12-21 15:16:09 +0800 | [diff] [blame] | 5 | # |
| 6 | # SPDX-License-Identifier: BSD-3-Clause |
| 7 | # |
| 8 | #------------------------------------------------------------------------------- |
| 9 | |
| 10 | ############################ Partitions ######################################## |
| 11 | |
David Hu | 372b45c | 2022-11-16 10:06:28 +0800 | [diff] [blame] | 12 | set(CONFIG_TFM_SPM_BACKEND "IPC" CACHE STRING "The SPM backend [IPC, SFN]") |
Kevin Peng | 76c0c16 | 2022-02-09 22:49:06 +0800 | [diff] [blame] | 13 | set(CONFIG_TFM_SPM_BACKEND_IPC ON) |
| 14 | set(CONFIG_TFM_SPM_BACKEND_SFN OFF) |
Summer Qin | 596f555 | 2022-01-27 18:04:06 +0800 | [diff] [blame] | 15 | set(CONFIG_TFM_PARTITION_META ON) |
Chris Brand | fbf3f46 | 2022-06-23 15:27:20 -0700 | [diff] [blame] | 16 | # Derive ns_agent partitions |
| 17 | if (TFM_MULTI_CORE_TOPOLOGY) |
| 18 | set(TFM_PARTITION_NS_AGENT_MAILBOX ON CACHE BOOL "Enable Non-Secure Mailbox Agent partition") |
| 19 | else() |
| 20 | set(TFM_PARTITION_NS_AGENT_MAILBOX OFF CACHE BOOL "Enable Non-Secure Mailbox Agent partition") |
| 21 | endif() |
| 22 | if (CONFIG_TFM_USE_TRUSTZONE) |
| 23 | set(TFM_PARTITION_NS_AGENT_TZ ON CACHE BOOL "Enable Non-Secure TrustZone Agent partition") |
| 24 | else() |
| 25 | set(TFM_PARTITION_NS_AGENT_TZ OFF CACHE BOOL "Enable Non-Secure TrustZone Agent partition") |
| 26 | endif() |