1# Copyright (c) 2021-2024, Arm Limited. All rights reserved. 2# 3# SPDX-License-Identifier: BSD-3-Clause 4# 5 6include common/fdt_wrappers.mk 7 8TARGET_FLAVOUR := fvp 9# DPU with SCMI may not necessarily work, so allow its independence 10TC_DPU_USE_SCMI_CLK := 1 11# SCMI power domain control enable 12TC_SCMI_PD_CTRL_EN := 1 13# IOMMU: Enable the use of system or individual MMUs 14TC_IOMMU_EN := 1 15 16# System setup 17CSS_USE_SCMI_SDS_DRIVER := 1 18HW_ASSISTED_COHERENCY := 1 19USE_COHERENT_MEM := 0 20GIC_ENABLE_V4_EXTN := 1 21GICV3_SUPPORT_GIC600 := 1 22override NEED_BL2U := no 23override ARM_PLAT_MT := 1 24 25# CPU setup 26ARM_ARCH_MINOR := 7 27BRANCH_PROTECTION := 1 28ENABLE_FEAT_MPAM := 1 # default is 2, optimise 29ENABLE_SVE_FOR_NS := 2 # to show we use it 30ENABLE_SVE_FOR_SWD := 1 31ENABLE_TRBE_FOR_NS := 1 32ENABLE_SYS_REG_TRACE_FOR_NS := 1 33ENABLE_FEAT_AMU := 1 34ENABLE_AMU_FCONF := 1 35ENABLE_AMU_AUXILIARY_COUNTERS := 1 36ENABLE_MPMM := 1 37ENABLE_MPMM_FCONF := 1 38 39CTX_INCLUDE_AARCH32_REGS := 0 40 41ifeq (${SPD},spmd) 42 SPMD_SPM_AT_SEL2 := 1 43 ENABLE_FEAT_MTE2 := 1 44 CTX_INCLUDE_PAUTH_REGS := 1 45endif 46 47# TC RESOLUTION - LIST OF VALID OPTIONS (this impacts only FVP) 48TC_RESOLUTION_OPTIONS := 640x480p60 \ 49 1920x1080p60 50# Set default to the 640x480p60 resolution mode 51TC_RESOLUTION ?= $(firstword $(TC_RESOLUTION_OPTIONS)) 52 53# Check resolution option for FVP 54ifneq ($(filter ${TARGET_FLAVOUR}, fvp),) 55ifeq ($(filter ${TC_RESOLUTION}, ${TC_RESOLUTION_OPTIONS}),) 56 $(error TC_RESOLUTION is ${TC_RESOLUTION}, it must be: ${TC_RESOLUTION_OPTIONS}) 57endif 58endif 59 60ifneq ($(shell expr $(TARGET_PLATFORM) \<= 1), 0) 61 $(warning Platform ${PLAT}$(TARGET_PLATFORM) is deprecated. \ 62 Some of the features might not work as expected) 63endif 64 65ifeq ($(shell expr $(TARGET_PLATFORM) \<= 3), 0) 66 $(error TARGET_PLATFORM must be less than or equal to 3) 67endif 68 69ifeq ($(filter ${TARGET_FLAVOUR}, fvp fpga),) 70 $(error TARGET_FLAVOUR must be fvp or fpga) 71endif 72 73$(eval $(call add_defines, \ 74 TARGET_PLATFORM \ 75 TARGET_FLAVOUR_$(call uppercase,${TARGET_FLAVOUR}) \ 76 TC_RESOLUTION_$(call uppercase,${TC_RESOLUTION}) \ 77 TC_DPU_USE_SCMI_CLK \ 78 TC_SCMI_PD_CTRL_EN \ 79 TC_IOMMU_EN \ 80)) 81 82CSS_LOAD_SCP_IMAGES := 1 83 84# Save DSU PMU registers on cluster off and restore them on cluster on 85PRESERVE_DSU_PMU_REGS := 1 86 87# Specify MHU type based on platform 88ifneq ($(filter ${TARGET_PLATFORM}, 2),) 89 PLAT_MHU_VERSION := 2 90else 91 PLAT_MHU_VERSION := 3 92endif 93 94# Include GICv3 driver files 95include drivers/arm/gic/v3/gicv3.mk 96 97ENT_GIC_SOURCES := ${GICV3_SOURCES} \ 98 plat/common/plat_gicv3.c \ 99 plat/arm/common/arm_gicv3.c 100 101TC_BASE = plat/arm/board/tc 102 103PLAT_INCLUDES += -I${TC_BASE}/include/ \ 104 -I${TC_BASE}/fdts/ 105 106# CPU libraries for TARGET_PLATFORM=1 107ifeq (${TARGET_PLATFORM}, 1) 108TC_CPU_SOURCES += lib/cpus/aarch64/cortex_a510.S \ 109 lib/cpus/aarch64/cortex_a715.S \ 110 lib/cpus/aarch64/cortex_x3.S 111endif 112 113# CPU libraries for TARGET_PLATFORM=2 114ifeq (${TARGET_PLATFORM}, 2) 115TC_CPU_SOURCES += lib/cpus/aarch64/cortex_a520.S \ 116 lib/cpus/aarch64/cortex_a720.S \ 117 lib/cpus/aarch64/cortex_x4.S 118endif 119 120# CPU libraries for TARGET_PLATFORM=3 121ifeq (${TARGET_PLATFORM}, 3) 122TC_CPU_SOURCES += lib/cpus/aarch64/cortex_a520.S \ 123 lib/cpus/aarch64/cortex_a725.S \ 124 lib/cpus/aarch64/cortex_x925.S 125endif 126 127INTERCONNECT_SOURCES := ${TC_BASE}/tc_interconnect.c 128 129PLAT_BL_COMMON_SOURCES += ${TC_BASE}/tc_plat.c \ 130 ${TC_BASE}/include/tc_helpers.S 131 132BL1_SOURCES += ${INTERCONNECT_SOURCES} \ 133 ${TC_CPU_SOURCES} \ 134 ${TC_BASE}/tc_trusted_boot.c \ 135 ${TC_BASE}/tc_err.c \ 136 drivers/arm/sbsa/sbsa.c 137 138BL2_SOURCES += ${TC_BASE}/tc_security.c \ 139 ${TC_BASE}/tc_err.c \ 140 ${TC_BASE}/tc_trusted_boot.c \ 141 ${TC_BASE}/tc_bl2_setup.c \ 142 lib/utils/mem_region.c \ 143 drivers/arm/tzc/tzc400.c \ 144 plat/arm/common/arm_tzc400.c \ 145 plat/arm/common/arm_nor_psci_mem_protect.c 146 147BL31_SOURCES += ${INTERCONNECT_SOURCES} \ 148 ${TC_CPU_SOURCES} \ 149 ${ENT_GIC_SOURCES} \ 150 ${TC_BASE}/tc_bl31_setup.c \ 151 ${TC_BASE}/tc_topology.c \ 152 lib/fconf/fconf.c \ 153 lib/fconf/fconf_dyn_cfg_getter.c \ 154 drivers/arm/css/dsu/dsu.c \ 155 drivers/cfi/v2m/v2m_flash.c \ 156 lib/utils/mem_region.c \ 157 plat/arm/common/arm_nor_psci_mem_protect.c \ 158 drivers/arm/sbsa/sbsa.c 159 160BL31_SOURCES += ${FDT_WRAPPERS_SOURCES} 161 162# Add the FDT_SOURCES and options for Dynamic Config 163FDT_SOURCES += ${TC_BASE}/fdts/${PLAT}_fw_config.dts \ 164 ${TC_BASE}/fdts/${PLAT}_tb_fw_config.dts \ 165 ${TC_BASE}/fdts/${PLAT}_nt_fw_config.dts 166FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_fw_config.dtb 167TB_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb 168FVP_NT_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_nt_fw_config.dtb 169 170# Add the FW_CONFIG to FIP and specify the same to certtool 171$(eval $(call TOOL_ADD_PAYLOAD,${FW_CONFIG},--fw-config,${FW_CONFIG})) 172# Add the TB_FW_CONFIG to FIP and specify the same to certtool 173$(eval $(call TOOL_ADD_PAYLOAD,${TB_FW_CONFIG},--tb-fw-config,${TB_FW_CONFIG})) 174# Add the NT_FW_CONFIG to FIP and specify the same to certtool 175$(eval $(call TOOL_ADD_PAYLOAD,${FVP_NT_FW_CONFIG},--nt-fw-config,${FVP_NT_FW_CONFIG})) 176 177ifeq (${SPD},spmd) 178ifeq ($(ARM_SPMC_MANIFEST_DTS),) 179ARM_SPMC_MANIFEST_DTS := ${TC_BASE}/fdts/${PLAT}_spmc_test_manifest.dts 180endif 181 182FDT_SOURCES += ${ARM_SPMC_MANIFEST_DTS} 183TC_TOS_FW_CONFIG := ${BUILD_PLAT}/fdts/$(notdir $(basename ${ARM_SPMC_MANIFEST_DTS})).dtb 184 185# Add the TOS_FW_CONFIG to FIP and specify the same to certtool 186$(eval $(call TOOL_ADD_PAYLOAD,${TC_TOS_FW_CONFIG},--tos-fw-config,${TC_TOS_FW_CONFIG})) 187endif 188 189#Device tree 190TC_HW_CONFIG_DTS := fdts/${PLAT}${TARGET_PLATFORM}.dts 191TC_HW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}.dtb 192FDT_SOURCES += ${TC_HW_CONFIG_DTS} 193$(eval TC_HW_CONFIG := ${BUILD_PLAT}/$(patsubst %.dts,%.dtb,$(TC_HW_CONFIG_DTS))) 194 195# Add the HW_CONFIG to FIP and specify the same to certtool 196$(eval $(call TOOL_ADD_PAYLOAD,${TC_HW_CONFIG},--hw-config,${TC_HW_CONFIG})) 197 198# Include Measured Boot makefile before any Crypto library makefile. 199# Crypto library makefile may need default definitions of Measured Boot build 200# flags present in Measured Boot makefile. 201$(info Including rse_comms.mk) 202ifeq (${MEASURED_BOOT},1) 203 $(info Including rse_comms.mk) 204 include drivers/arm/rse/rse_comms.mk 205 206 BL1_SOURCES += ${RSE_COMMS_SOURCES} 207 BL2_SOURCES += ${RSE_COMMS_SOURCES} 208 PLAT_INCLUDES += -Iinclude/lib/psa 209 210 ifeq (${DICE_PROTECTION_ENVIRONMENT},1) 211 $(info Including qcbor.mk) 212 include drivers/measured_boot/rse/qcbor.mk 213 $(info Including dice_prot_env.mk) 214 include drivers/measured_boot/rse/dice_prot_env.mk 215 216 BL1_SOURCES += ${QCBOR_SOURCES} \ 217 ${DPE_SOURCES} \ 218 plat/arm/board/tc/tc_common_dpe.c \ 219 plat/arm/board/tc/tc_bl1_dpe.c \ 220 lib/psa/dice_protection_environment.c \ 221 drivers/arm/css/sds/sds.c \ 222 drivers/delay_timer/delay_timer.c \ 223 drivers/delay_timer/generic_delay_timer.c 224 225 BL2_SOURCES += ${QCBOR_SOURCES} \ 226 ${DPE_SOURCES} \ 227 plat/arm/board/tc/tc_common_dpe.c \ 228 plat/arm/board/tc/tc_bl2_dpe.c \ 229 lib/psa/dice_protection_environment.c 230 231 PLAT_INCLUDES += -I${QCBOR_INCLUDES} \ 232 -Iinclude/lib/dice 233 else 234 $(info Including rse_measured_boot.mk) 235 include drivers/measured_boot/rse/rse_measured_boot.mk 236 237 BL1_SOURCES += ${MEASURED_BOOT_SOURCES} \ 238 plat/arm/board/tc/tc_common_measured_boot.c \ 239 plat/arm/board/tc/tc_bl1_measured_boot.c \ 240 lib/psa/measured_boot.c 241 242 BL2_SOURCES += ${MEASURED_BOOT_SOURCES} \ 243 plat/arm/board/tc/tc_common_measured_boot.c \ 244 plat/arm/board/tc/tc_bl2_measured_boot.c \ 245 lib/psa/measured_boot.c 246 endif 247endif 248 249ifeq (${TRNG_SUPPORT},1) 250 BL31_SOURCES += plat/arm/board/tc/tc_trng.c 251endif 252 253ifneq (${PLATFORM_TEST},) 254 # Add this include as first, before arm_common.mk. This is necessary 255 # because arm_common.mk builds Mbed TLS, and platform_test.mk can 256 # change the list of Mbed TLS files that are to be compiled 257 # (LIBMBEDTLS_SRCS). 258 include plat/arm/board/tc/platform_test.mk 259endif 260 261 262include plat/arm/common/arm_common.mk 263include plat/arm/css/common/css_common.mk 264include plat/arm/soc/common/soc_css.mk 265include plat/arm/board/common/board_common.mk 266