1# 2# Copyright (c) 2013-2021, ARM Limited and Contributors. All rights reserved. 3# 4# SPDX-License-Identifier: BSD-3-Clause 5# 6 7# Use the GICv3 driver on the FVP by default 8FVP_USE_GIC_DRIVER := FVP_GICV3 9 10# Default cluster count for FVP 11FVP_CLUSTER_COUNT := 2 12 13# Default number of CPUs per cluster on FVP 14FVP_MAX_CPUS_PER_CLUSTER := 4 15 16# Default number of threads per CPU on FVP 17FVP_MAX_PE_PER_CPU := 1 18 19# Disable redistributor frame of inactive/fused CPU cores by marking it as read 20# only; enable redistributor frames of all CPU cores by default. 21FVP_GICR_REGION_PROTECTION := 0 22 23FVP_DT_PREFIX := fvp-base-gicv3-psci 24 25# The FVP platform depends on this macro to build with correct GIC driver. 26$(eval $(call add_define,FVP_USE_GIC_DRIVER)) 27 28# Pass FVP_CLUSTER_COUNT to the build system. 29$(eval $(call add_define,FVP_CLUSTER_COUNT)) 30 31# Pass FVP_MAX_CPUS_PER_CLUSTER to the build system. 32$(eval $(call add_define,FVP_MAX_CPUS_PER_CLUSTER)) 33 34# Pass FVP_MAX_PE_PER_CPU to the build system. 35$(eval $(call add_define,FVP_MAX_PE_PER_CPU)) 36 37# Pass FVP_GICR_REGION_PROTECTION to the build system. 38$(eval $(call add_define,FVP_GICR_REGION_PROTECTION)) 39 40# Sanity check the cluster count and if FVP_CLUSTER_COUNT <= 2, 41# choose the CCI driver , else the CCN driver 42ifeq ($(FVP_CLUSTER_COUNT), 0) 43$(error "Incorrect cluster count specified for FVP port") 44else ifeq ($(FVP_CLUSTER_COUNT),$(filter $(FVP_CLUSTER_COUNT),1 2)) 45FVP_INTERCONNECT_DRIVER := FVP_CCI 46else 47FVP_INTERCONNECT_DRIVER := FVP_CCN 48endif 49 50$(eval $(call add_define,FVP_INTERCONNECT_DRIVER)) 51 52# Choose the GIC sources depending upon the how the FVP will be invoked 53ifeq (${FVP_USE_GIC_DRIVER}, FVP_GICV3) 54 55# The GIC model (GIC-600 or GIC-500) will be detected at runtime 56GICV3_SUPPORT_GIC600 := 1 57GICV3_OVERRIDE_DISTIF_PWR_OPS := 1 58 59# Include GICv3 driver files 60include drivers/arm/gic/v3/gicv3.mk 61 62FVP_GIC_SOURCES := ${GICV3_SOURCES} \ 63 plat/common/plat_gicv3.c \ 64 plat/arm/common/arm_gicv3.c 65 66 ifeq ($(filter 1,${BL2_AT_EL3} ${RESET_TO_BL31} ${RESET_TO_SP_MIN}),) 67 FVP_GIC_SOURCES += plat/arm/board/fvp/fvp_gicv3.c 68 endif 69 70else ifeq (${FVP_USE_GIC_DRIVER}, FVP_GICV2) 71 72# No GICv4 extension 73GIC_ENABLE_V4_EXTN := 0 74$(eval $(call add_define,GIC_ENABLE_V4_EXTN)) 75 76# Include GICv2 driver files 77include drivers/arm/gic/v2/gicv2.mk 78 79FVP_GIC_SOURCES := ${GICV2_SOURCES} \ 80 plat/common/plat_gicv2.c \ 81 plat/arm/common/arm_gicv2.c 82 83FVP_DT_PREFIX := fvp-base-gicv2-psci 84else 85$(error "Incorrect GIC driver chosen on FVP port") 86endif 87 88ifeq (${FVP_INTERCONNECT_DRIVER}, FVP_CCI) 89FVP_INTERCONNECT_SOURCES := drivers/arm/cci/cci.c 90else ifeq (${FVP_INTERCONNECT_DRIVER}, FVP_CCN) 91FVP_INTERCONNECT_SOURCES := drivers/arm/ccn/ccn.c \ 92 plat/arm/common/arm_ccn.c 93else 94$(error "Incorrect CCN driver chosen on FVP port") 95endif 96 97FVP_SECURITY_SOURCES := drivers/arm/tzc/tzc400.c \ 98 plat/arm/board/fvp/fvp_security.c \ 99 plat/arm/common/arm_tzc400.c 100 101 102PLAT_INCLUDES := -Iplat/arm/board/fvp/include 103 104 105PLAT_BL_COMMON_SOURCES := plat/arm/board/fvp/fvp_common.c 106 107FVP_CPU_LIBS := lib/cpus/${ARCH}/aem_generic.S 108 109ifeq (${ARCH}, aarch64) 110 111# select a different set of CPU files, depending on whether we compile for 112# hardware assisted coherency cores or not 113ifeq (${HW_ASSISTED_COHERENCY}, 0) 114# Cores used without DSU 115 FVP_CPU_LIBS += lib/cpus/aarch64/cortex_a35.S \ 116 lib/cpus/aarch64/cortex_a53.S \ 117 lib/cpus/aarch64/cortex_a57.S \ 118 lib/cpus/aarch64/cortex_a72.S \ 119 lib/cpus/aarch64/cortex_a73.S 120else 121# Cores used with DSU only 122 ifeq (${CTX_INCLUDE_AARCH32_REGS}, 0) 123 # AArch64-only cores 124 FVP_CPU_LIBS += lib/cpus/aarch64/cortex_a76.S \ 125 lib/cpus/aarch64/cortex_a76ae.S \ 126 lib/cpus/aarch64/cortex_a77.S \ 127 lib/cpus/aarch64/cortex_a78.S \ 128 lib/cpus/aarch64/neoverse_n_common.S \ 129 lib/cpus/aarch64/neoverse_n1.S \ 130 lib/cpus/aarch64/neoverse_n2.S \ 131 lib/cpus/aarch64/neoverse_e1.S \ 132 lib/cpus/aarch64/neoverse_v1.S \ 133 lib/cpus/aarch64/cortex_a78_ae.S \ 134 lib/cpus/aarch64/cortex_klein.S \ 135 lib/cpus/aarch64/cortex_matterhorn.S \ 136 lib/cpus/aarch64/cortex_a65.S \ 137 lib/cpus/aarch64/cortex_a65ae.S 138 endif 139 # AArch64/AArch32 cores 140 FVP_CPU_LIBS += lib/cpus/aarch64/cortex_a55.S \ 141 lib/cpus/aarch64/cortex_a75.S 142endif 143 144else 145FVP_CPU_LIBS += lib/cpus/aarch32/cortex_a32.S 146endif 147 148BL1_SOURCES += drivers/arm/smmu/smmu_v3.c \ 149 drivers/arm/sp805/sp805.c \ 150 drivers/delay_timer/delay_timer.c \ 151 drivers/io/io_semihosting.c \ 152 lib/semihosting/semihosting.c \ 153 lib/semihosting/${ARCH}/semihosting_call.S \ 154 plat/arm/board/fvp/${ARCH}/fvp_helpers.S \ 155 plat/arm/board/fvp/fvp_bl1_setup.c \ 156 plat/arm/board/fvp/fvp_err.c \ 157 plat/arm/board/fvp/fvp_io_storage.c \ 158 ${FVP_CPU_LIBS} \ 159 ${FVP_INTERCONNECT_SOURCES} 160 161ifeq (${USE_SP804_TIMER},1) 162BL1_SOURCES += drivers/arm/sp804/sp804_delay_timer.c 163else 164BL1_SOURCES += drivers/delay_timer/generic_delay_timer.c 165endif 166 167 168BL2_SOURCES += drivers/arm/sp805/sp805.c \ 169 drivers/io/io_semihosting.c \ 170 lib/utils/mem_region.c \ 171 lib/semihosting/semihosting.c \ 172 lib/semihosting/${ARCH}/semihosting_call.S \ 173 plat/arm/board/fvp/fvp_bl2_setup.c \ 174 plat/arm/board/fvp/fvp_err.c \ 175 plat/arm/board/fvp/fvp_io_storage.c \ 176 plat/arm/common/arm_nor_psci_mem_protect.c \ 177 ${FVP_SECURITY_SOURCES} 178 179 180ifeq (${COT_DESC_IN_DTB},1) 181BL2_SOURCES += plat/arm/common/fconf/fconf_nv_cntr_getter.c 182endif 183 184ifeq (${BL2_AT_EL3},1) 185BL2_SOURCES += plat/arm/board/fvp/${ARCH}/fvp_helpers.S \ 186 plat/arm/board/fvp/fvp_bl2_el3_setup.c \ 187 ${FVP_CPU_LIBS} \ 188 ${FVP_INTERCONNECT_SOURCES} 189endif 190 191ifeq (${USE_SP804_TIMER},1) 192BL2_SOURCES += drivers/arm/sp804/sp804_delay_timer.c 193endif 194 195BL2U_SOURCES += plat/arm/board/fvp/fvp_bl2u_setup.c \ 196 ${FVP_SECURITY_SOURCES} 197 198ifeq (${USE_SP804_TIMER},1) 199BL2U_SOURCES += drivers/arm/sp804/sp804_delay_timer.c 200endif 201 202BL31_SOURCES += drivers/arm/fvp/fvp_pwrc.c \ 203 drivers/arm/smmu/smmu_v3.c \ 204 drivers/delay_timer/delay_timer.c \ 205 drivers/cfi/v2m/v2m_flash.c \ 206 lib/utils/mem_region.c \ 207 plat/arm/board/fvp/fvp_bl31_setup.c \ 208 plat/arm/board/fvp/fvp_console.c \ 209 plat/arm/board/fvp/fvp_pm.c \ 210 plat/arm/board/fvp/fvp_topology.c \ 211 plat/arm/board/fvp/aarch64/fvp_helpers.S \ 212 plat/arm/common/arm_nor_psci_mem_protect.c \ 213 ${FVP_CPU_LIBS} \ 214 ${FVP_GIC_SOURCES} \ 215 ${FVP_INTERCONNECT_SOURCES} \ 216 ${FVP_SECURITY_SOURCES} 217 218# Support for fconf in BL31 219# Added separately from the above list for better readability 220ifeq ($(filter 1,${BL2_AT_EL3} ${RESET_TO_BL31}),) 221BL31_SOURCES += common/fdt_wrappers.c \ 222 lib/fconf/fconf.c \ 223 lib/fconf/fconf_dyn_cfg_getter.c \ 224 plat/arm/board/fvp/fconf/fconf_hw_config_getter.c 225 226ifeq (${SEC_INT_DESC_IN_FCONF},1) 227BL31_SOURCES += plat/arm/common/fconf/fconf_sec_intr_config.c 228endif 229 230endif 231 232ifeq (${USE_SP804_TIMER},1) 233BL31_SOURCES += drivers/arm/sp804/sp804_delay_timer.c 234else 235BL31_SOURCES += drivers/delay_timer/generic_delay_timer.c 236endif 237 238# Add the FDT_SOURCES and options for Dynamic Config (only for Unix env) 239ifdef UNIX_MK 240FVP_HW_CONFIG_DTS := fdts/${FVP_DT_PREFIX}.dts 241FDT_SOURCES += $(addprefix plat/arm/board/fvp/fdts/, \ 242 ${PLAT}_fw_config.dts \ 243 ${PLAT}_tb_fw_config.dts \ 244 ${PLAT}_soc_fw_config.dts \ 245 ${PLAT}_nt_fw_config.dts \ 246 ) 247 248FVP_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_fw_config.dtb 249FVP_TB_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb 250FVP_SOC_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_soc_fw_config.dtb 251FVP_NT_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_nt_fw_config.dtb 252 253ifeq (${SPD},tspd) 254FDT_SOURCES += plat/arm/board/fvp/fdts/${PLAT}_tsp_fw_config.dts 255FVP_TOS_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_tsp_fw_config.dtb 256 257# Add the TOS_FW_CONFIG to FIP and specify the same to certtool 258$(eval $(call TOOL_ADD_PAYLOAD,${FVP_TOS_FW_CONFIG},--tos-fw-config,${FVP_TOS_FW_CONFIG})) 259endif 260 261ifeq (${SPD},spmd) 262 263ifeq ($(ARM_SPMC_MANIFEST_DTS),) 264ARM_SPMC_MANIFEST_DTS := plat/arm/board/fvp/fdts/${PLAT}_spmc_manifest.dts 265endif 266 267FDT_SOURCES += ${ARM_SPMC_MANIFEST_DTS} 268FVP_TOS_FW_CONFIG := ${BUILD_PLAT}/fdts/$(notdir $(basename ${ARM_SPMC_MANIFEST_DTS})).dtb 269 270# Add the TOS_FW_CONFIG to FIP and specify the same to certtool 271$(eval $(call TOOL_ADD_PAYLOAD,${FVP_TOS_FW_CONFIG},--tos-fw-config,${FVP_TOS_FW_CONFIG})) 272endif 273 274# Add the FW_CONFIG to FIP and specify the same to certtool 275$(eval $(call TOOL_ADD_PAYLOAD,${FVP_FW_CONFIG},--fw-config,${FVP_FW_CONFIG})) 276# Add the TB_FW_CONFIG to FIP and specify the same to certtool 277$(eval $(call TOOL_ADD_PAYLOAD,${FVP_TB_FW_CONFIG},--tb-fw-config,${FVP_TB_FW_CONFIG})) 278# Add the SOC_FW_CONFIG to FIP and specify the same to certtool 279$(eval $(call TOOL_ADD_PAYLOAD,${FVP_SOC_FW_CONFIG},--soc-fw-config,${FVP_SOC_FW_CONFIG})) 280# Add the NT_FW_CONFIG to FIP and specify the same to certtool 281$(eval $(call TOOL_ADD_PAYLOAD,${FVP_NT_FW_CONFIG},--nt-fw-config,${FVP_NT_FW_CONFIG})) 282 283FDT_SOURCES += ${FVP_HW_CONFIG_DTS} 284$(eval FVP_HW_CONFIG := ${BUILD_PLAT}/$(patsubst %.dts,%.dtb,$(FVP_HW_CONFIG_DTS))) 285 286# Add the HW_CONFIG to FIP and specify the same to certtool 287$(eval $(call TOOL_ADD_PAYLOAD,${FVP_HW_CONFIG},--hw-config,${FVP_HW_CONFIG})) 288endif 289 290# Enable Activity Monitor Unit extensions by default 291ENABLE_AMU := 1 292 293# Enable dynamic mitigation support by default 294DYNAMIC_WORKAROUND_CVE_2018_3639 := 1 295 296# Enable reclaiming of BL31 initialisation code for secondary cores 297# stacks for FVP. However, don't enable reclaiming for clang. 298ifneq (${RESET_TO_BL31},1) 299ifeq ($(findstring clang,$(notdir $(CC))),) 300RECLAIM_INIT_CODE := 1 301endif 302endif 303 304ifeq (${ENABLE_AMU},1) 305BL31_SOURCES += lib/cpus/aarch64/cpuamu.c \ 306 lib/cpus/aarch64/cpuamu_helpers.S 307 308ifeq (${HW_ASSISTED_COHERENCY}, 1) 309BL31_SOURCES += lib/cpus/aarch64/cortex_a75_pubsub.c \ 310 lib/cpus/aarch64/neoverse_n1_pubsub.c 311endif 312endif 313 314ifeq (${RAS_EXTENSION},1) 315BL31_SOURCES += plat/arm/board/fvp/aarch64/fvp_ras.c 316endif 317 318ifneq (${ENABLE_STACK_PROTECTOR},0) 319PLAT_BL_COMMON_SOURCES += plat/arm/board/fvp/fvp_stack_protector.c 320endif 321 322ifeq (${ARCH},aarch32) 323 NEED_BL32 := yes 324endif 325 326# Enable the dynamic translation tables library. 327ifeq (${ARCH},aarch32) 328 ifeq (${RESET_TO_SP_MIN},1) 329 BL32_CPPFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC 330 endif 331else # AArch64 332 ifeq (${RESET_TO_BL31},1) 333 BL31_CPPFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC 334 endif 335 ifeq (${SPD},trusty) 336 BL31_CPPFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC 337 endif 338endif 339 340ifeq (${ALLOW_RO_XLAT_TABLES}, 1) 341 ifeq (${ARCH},aarch32) 342 BL32_CPPFLAGS += -DPLAT_RO_XLAT_TABLES 343 else # AArch64 344 BL31_CPPFLAGS += -DPLAT_RO_XLAT_TABLES 345 ifeq (${SPD},tspd) 346 BL32_CPPFLAGS += -DPLAT_RO_XLAT_TABLES 347 endif 348 endif 349endif 350 351ifeq (${USE_DEBUGFS},1) 352 BL31_CPPFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC 353endif 354 355# Add support for platform supplied linker script for BL31 build 356$(eval $(call add_define,PLAT_EXTRA_LD_SCRIPT)) 357 358ifneq (${BL2_AT_EL3}, 0) 359 override BL1_SOURCES = 360endif 361 362include plat/arm/board/common/board_common.mk 363include plat/arm/common/arm_common.mk 364 365ifeq (${TRUSTED_BOARD_BOOT}, 1) 366BL1_SOURCES += plat/arm/board/fvp/fvp_trusted_boot.c 367BL2_SOURCES += plat/arm/board/fvp/fvp_trusted_boot.c 368 369ifeq (${MEASURED_BOOT},1) 370BL2_SOURCES += plat/arm/board/fvp/fvp_measured_boot.c 371endif 372 373# FVP being a development platform, enable capability to disable Authentication 374# dynamically if TRUSTED_BOARD_BOOT is set. 375DYN_DISABLE_AUTH := 1 376endif 377