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_makalu.S \ 137 lib/cpus/aarch64/cortex_a65.S \ 138 lib/cpus/aarch64/cortex_a65ae.S 139 endif 140 # AArch64/AArch32 cores 141 FVP_CPU_LIBS += lib/cpus/aarch64/cortex_a55.S \ 142 lib/cpus/aarch64/cortex_a75.S 143endif 144 145else 146FVP_CPU_LIBS += lib/cpus/aarch32/cortex_a32.S 147endif 148 149BL1_SOURCES += drivers/arm/smmu/smmu_v3.c \ 150 drivers/arm/sp805/sp805.c \ 151 drivers/delay_timer/delay_timer.c \ 152 drivers/io/io_semihosting.c \ 153 lib/semihosting/semihosting.c \ 154 lib/semihosting/${ARCH}/semihosting_call.S \ 155 plat/arm/board/fvp/${ARCH}/fvp_helpers.S \ 156 plat/arm/board/fvp/fvp_bl1_setup.c \ 157 plat/arm/board/fvp/fvp_err.c \ 158 plat/arm/board/fvp/fvp_io_storage.c \ 159 ${FVP_CPU_LIBS} \ 160 ${FVP_INTERCONNECT_SOURCES} 161 162ifeq (${USE_SP804_TIMER},1) 163BL1_SOURCES += drivers/arm/sp804/sp804_delay_timer.c 164else 165BL1_SOURCES += drivers/delay_timer/generic_delay_timer.c 166endif 167 168 169BL2_SOURCES += drivers/arm/sp805/sp805.c \ 170 drivers/io/io_semihosting.c \ 171 lib/utils/mem_region.c \ 172 lib/semihosting/semihosting.c \ 173 lib/semihosting/${ARCH}/semihosting_call.S \ 174 plat/arm/board/fvp/fvp_bl2_setup.c \ 175 plat/arm/board/fvp/fvp_err.c \ 176 plat/arm/board/fvp/fvp_io_storage.c \ 177 plat/arm/common/arm_nor_psci_mem_protect.c \ 178 ${FVP_SECURITY_SOURCES} 179 180 181ifeq (${COT_DESC_IN_DTB},1) 182BL2_SOURCES += plat/arm/common/fconf/fconf_nv_cntr_getter.c 183endif 184 185ifeq (${BL2_AT_EL3},1) 186BL2_SOURCES += plat/arm/board/fvp/${ARCH}/fvp_helpers.S \ 187 plat/arm/board/fvp/fvp_bl2_el3_setup.c \ 188 ${FVP_CPU_LIBS} \ 189 ${FVP_INTERCONNECT_SOURCES} 190endif 191 192ifeq (${USE_SP804_TIMER},1) 193BL2_SOURCES += drivers/arm/sp804/sp804_delay_timer.c 194endif 195 196BL2U_SOURCES += plat/arm/board/fvp/fvp_bl2u_setup.c \ 197 ${FVP_SECURITY_SOURCES} 198 199ifeq (${USE_SP804_TIMER},1) 200BL2U_SOURCES += drivers/arm/sp804/sp804_delay_timer.c 201endif 202 203BL31_SOURCES += drivers/arm/fvp/fvp_pwrc.c \ 204 drivers/arm/smmu/smmu_v3.c \ 205 drivers/delay_timer/delay_timer.c \ 206 drivers/cfi/v2m/v2m_flash.c \ 207 lib/utils/mem_region.c \ 208 plat/arm/board/fvp/fvp_bl31_setup.c \ 209 plat/arm/board/fvp/fvp_console.c \ 210 plat/arm/board/fvp/fvp_pm.c \ 211 plat/arm/board/fvp/fvp_topology.c \ 212 plat/arm/board/fvp/aarch64/fvp_helpers.S \ 213 plat/arm/common/arm_nor_psci_mem_protect.c \ 214 ${FVP_CPU_LIBS} \ 215 ${FVP_GIC_SOURCES} \ 216 ${FVP_INTERCONNECT_SOURCES} \ 217 ${FVP_SECURITY_SOURCES} 218 219# Support for fconf in BL31 220# Added separately from the above list for better readability 221ifeq ($(filter 1,${BL2_AT_EL3} ${RESET_TO_BL31}),) 222BL31_SOURCES += common/fdt_wrappers.c \ 223 lib/fconf/fconf.c \ 224 lib/fconf/fconf_dyn_cfg_getter.c \ 225 plat/arm/board/fvp/fconf/fconf_hw_config_getter.c 226 227ifeq (${SEC_INT_DESC_IN_FCONF},1) 228BL31_SOURCES += plat/arm/common/fconf/fconf_sec_intr_config.c 229endif 230 231endif 232 233ifeq (${USE_SP804_TIMER},1) 234BL31_SOURCES += drivers/arm/sp804/sp804_delay_timer.c 235else 236BL31_SOURCES += drivers/delay_timer/generic_delay_timer.c 237endif 238 239# Add the FDT_SOURCES and options for Dynamic Config (only for Unix env) 240ifdef UNIX_MK 241FVP_HW_CONFIG_DTS := fdts/${FVP_DT_PREFIX}.dts 242FDT_SOURCES += $(addprefix plat/arm/board/fvp/fdts/, \ 243 ${PLAT}_fw_config.dts \ 244 ${PLAT}_tb_fw_config.dts \ 245 ${PLAT}_soc_fw_config.dts \ 246 ${PLAT}_nt_fw_config.dts \ 247 ) 248 249FVP_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_fw_config.dtb 250FVP_TB_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb 251FVP_SOC_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_soc_fw_config.dtb 252FVP_NT_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_nt_fw_config.dtb 253 254ifeq (${SPD},tspd) 255FDT_SOURCES += plat/arm/board/fvp/fdts/${PLAT}_tsp_fw_config.dts 256FVP_TOS_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_tsp_fw_config.dtb 257 258# Add the TOS_FW_CONFIG to FIP and specify the same to certtool 259$(eval $(call TOOL_ADD_PAYLOAD,${FVP_TOS_FW_CONFIG},--tos-fw-config,${FVP_TOS_FW_CONFIG})) 260endif 261 262ifeq (${SPD},spmd) 263 264ifeq ($(ARM_SPMC_MANIFEST_DTS),) 265ARM_SPMC_MANIFEST_DTS := plat/arm/board/fvp/fdts/${PLAT}_spmc_manifest.dts 266endif 267 268FDT_SOURCES += ${ARM_SPMC_MANIFEST_DTS} 269FVP_TOS_FW_CONFIG := ${BUILD_PLAT}/fdts/$(notdir $(basename ${ARM_SPMC_MANIFEST_DTS})).dtb 270 271# Add the TOS_FW_CONFIG to FIP and specify the same to certtool 272$(eval $(call TOOL_ADD_PAYLOAD,${FVP_TOS_FW_CONFIG},--tos-fw-config,${FVP_TOS_FW_CONFIG})) 273endif 274 275# Add the FW_CONFIG to FIP and specify the same to certtool 276$(eval $(call TOOL_ADD_PAYLOAD,${FVP_FW_CONFIG},--fw-config,${FVP_FW_CONFIG})) 277# Add the TB_FW_CONFIG to FIP and specify the same to certtool 278$(eval $(call TOOL_ADD_PAYLOAD,${FVP_TB_FW_CONFIG},--tb-fw-config,${FVP_TB_FW_CONFIG})) 279# Add the SOC_FW_CONFIG to FIP and specify the same to certtool 280$(eval $(call TOOL_ADD_PAYLOAD,${FVP_SOC_FW_CONFIG},--soc-fw-config,${FVP_SOC_FW_CONFIG})) 281# Add the NT_FW_CONFIG to FIP and specify the same to certtool 282$(eval $(call TOOL_ADD_PAYLOAD,${FVP_NT_FW_CONFIG},--nt-fw-config,${FVP_NT_FW_CONFIG})) 283 284FDT_SOURCES += ${FVP_HW_CONFIG_DTS} 285$(eval FVP_HW_CONFIG := ${BUILD_PLAT}/$(patsubst %.dts,%.dtb,$(FVP_HW_CONFIG_DTS))) 286 287# Add the HW_CONFIG to FIP and specify the same to certtool 288$(eval $(call TOOL_ADD_PAYLOAD,${FVP_HW_CONFIG},--hw-config,${FVP_HW_CONFIG})) 289endif 290 291# Enable Activity Monitor Unit extensions by default 292ENABLE_AMU := 1 293 294# Enable dynamic mitigation support by default 295DYNAMIC_WORKAROUND_CVE_2018_3639 := 1 296 297# Enable reclaiming of BL31 initialisation code for secondary cores 298# stacks for FVP. However, don't enable reclaiming for clang. 299ifneq (${RESET_TO_BL31},1) 300ifeq ($(findstring clang,$(notdir $(CC))),) 301RECLAIM_INIT_CODE := 1 302endif 303endif 304 305ifeq (${ENABLE_AMU},1) 306BL31_SOURCES += lib/cpus/aarch64/cpuamu.c \ 307 lib/cpus/aarch64/cpuamu_helpers.S 308 309ifeq (${HW_ASSISTED_COHERENCY}, 1) 310BL31_SOURCES += lib/cpus/aarch64/cortex_a75_pubsub.c \ 311 lib/cpus/aarch64/neoverse_n1_pubsub.c 312endif 313endif 314 315ifeq (${RAS_EXTENSION},1) 316BL31_SOURCES += plat/arm/board/fvp/aarch64/fvp_ras.c 317endif 318 319ifneq (${ENABLE_STACK_PROTECTOR},0) 320PLAT_BL_COMMON_SOURCES += plat/arm/board/fvp/fvp_stack_protector.c 321endif 322 323ifeq (${ARCH},aarch32) 324 NEED_BL32 := yes 325endif 326 327# Enable the dynamic translation tables library. 328ifeq (${ARCH},aarch32) 329 ifeq (${RESET_TO_SP_MIN},1) 330 BL32_CPPFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC 331 endif 332else # AArch64 333 ifeq (${RESET_TO_BL31},1) 334 BL31_CPPFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC 335 endif 336 ifeq (${SPD},trusty) 337 BL31_CPPFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC 338 endif 339endif 340 341ifeq (${ALLOW_RO_XLAT_TABLES}, 1) 342 ifeq (${ARCH},aarch32) 343 BL32_CPPFLAGS += -DPLAT_RO_XLAT_TABLES 344 else # AArch64 345 BL31_CPPFLAGS += -DPLAT_RO_XLAT_TABLES 346 ifeq (${SPD},tspd) 347 BL32_CPPFLAGS += -DPLAT_RO_XLAT_TABLES 348 endif 349 endif 350endif 351 352ifeq (${USE_DEBUGFS},1) 353 BL31_CPPFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC 354endif 355 356# Add support for platform supplied linker script for BL31 build 357$(eval $(call add_define,PLAT_EXTRA_LD_SCRIPT)) 358 359ifneq (${BL2_AT_EL3}, 0) 360 override BL1_SOURCES = 361endif 362 363include plat/arm/board/common/board_common.mk 364include plat/arm/common/arm_common.mk 365 366ifeq (${TRUSTED_BOARD_BOOT}, 1) 367BL1_SOURCES += plat/arm/board/fvp/fvp_trusted_boot.c 368BL2_SOURCES += plat/arm/board/fvp/fvp_trusted_boot.c 369 370ifeq (${MEASURED_BOOT},1) 371BL2_SOURCES += plat/arm/board/fvp/fvp_measured_boot.c 372endif 373 374# FVP being a development platform, enable capability to disable Authentication 375# dynamically if TRUSTED_BOARD_BOOT is set. 376DYN_DISABLE_AUTH := 1 377endif 378