1# 2# Copyright (c) 2013-2021, ARM Limited and Contributors. All rights reserved. 3# 4# SPDX-License-Identifier: BSD-3-Clause 5# 6 7# Include GICv2 driver files 8include drivers/arm/gic/v2/gicv2.mk 9 10JUNO_GIC_SOURCES := ${GICV2_SOURCES} \ 11 plat/common/plat_gicv2.c \ 12 plat/arm/common/arm_gicv2.c 13 14JUNO_INTERCONNECT_SOURCES := drivers/arm/cci/cci.c \ 15 plat/arm/common/arm_cci.c 16 17JUNO_SECURITY_SOURCES := drivers/arm/tzc/tzc400.c \ 18 plat/arm/board/juno/juno_security.c \ 19 plat/arm/board/juno/juno_trng.c \ 20 plat/arm/common/arm_tzc400.c 21 22ifneq (${ENABLE_STACK_PROTECTOR}, 0) 23JUNO_SECURITY_SOURCES += plat/arm/board/juno/juno_stack_protector.c 24endif 25 26# Select SCMI/SDS drivers instead of SCPI/BOM driver for communicating with the 27# SCP during power management operations and for SCP RAM Firmware transfer. 28CSS_USE_SCMI_SDS_DRIVER := 1 29 30PLAT_INCLUDES := -Iplat/arm/board/juno/include 31 32PLAT_BL_COMMON_SOURCES := plat/arm/board/juno/${ARCH}/juno_helpers.S \ 33 plat/arm/board/juno/juno_common.c 34 35# Flag to enable support for AArch32 state on JUNO 36JUNO_AARCH32_EL3_RUNTIME := 0 37$(eval $(call assert_boolean,JUNO_AARCH32_EL3_RUNTIME)) 38$(eval $(call add_define,JUNO_AARCH32_EL3_RUNTIME)) 39 40# Flag to enable support for TZMP1 on JUNO 41JUNO_TZMP1 := 0 42$(eval $(call assert_boolean,JUNO_TZMP1)) 43ifeq (${JUNO_TZMP1}, 1) 44$(eval $(call add_define,JUNO_TZMP1)) 45endif 46 47TRNG_SUPPORT := 1 48 49ifeq (${JUNO_AARCH32_EL3_RUNTIME}, 1) 50# Include BL32 in FIP 51NEED_BL32 := yes 52# BL31 is not required 53override BL31_SOURCES = 54 55# The BL32 needs to be built separately invoking the AARCH32 compiler and 56# be specifed via `BL32` build option. 57 ifneq (${ARCH}, aarch32) 58 override BL32_SOURCES = 59 endif 60endif 61 62ifeq (${ARCH},aarch64) 63BL1_SOURCES += lib/cpus/aarch64/cortex_a53.S \ 64 lib/cpus/aarch64/cortex_a57.S \ 65 lib/cpus/aarch64/cortex_a72.S \ 66 plat/arm/board/juno/juno_err.c \ 67 plat/arm/board/juno/juno_bl1_setup.c \ 68 drivers/arm/sp805/sp805.c \ 69 ${JUNO_INTERCONNECT_SOURCES} \ 70 ${JUNO_SECURITY_SOURCES} 71 72BL2_SOURCES += drivers/arm/sp805/sp805.c \ 73 lib/utils/mem_region.c \ 74 plat/arm/board/juno/juno_err.c \ 75 plat/arm/board/juno/juno_bl2_setup.c \ 76 plat/arm/common/arm_nor_psci_mem_protect.c \ 77 ${JUNO_SECURITY_SOURCES} 78 79BL2U_SOURCES += ${JUNO_SECURITY_SOURCES} 80 81BL31_SOURCES += drivers/cfi/v2m/v2m_flash.c \ 82 lib/cpus/aarch64/cortex_a53.S \ 83 lib/cpus/aarch64/cortex_a57.S \ 84 lib/cpus/aarch64/cortex_a72.S \ 85 lib/utils/mem_region.c \ 86 common/fdt_wrappers.c \ 87 lib/fconf/fconf.c \ 88 lib/fconf/fconf_dyn_cfg_getter.c \ 89 plat/arm/board/juno/juno_bl31_setup.c \ 90 plat/arm/board/juno/juno_pm.c \ 91 plat/arm/board/juno/juno_topology.c \ 92 plat/arm/common/arm_nor_psci_mem_protect.c \ 93 ${JUNO_GIC_SOURCES} \ 94 ${JUNO_INTERCONNECT_SOURCES} \ 95 ${JUNO_SECURITY_SOURCES} 96 97ifeq (${CSS_USE_SCMI_SDS_DRIVER},1) 98BL1_SOURCES += drivers/arm/css/sds/sds.c 99endif 100 101ifeq (${TRUSTED_BOARD_BOOT}, 1) 102BL1_SOURCES += plat/arm/board/juno/juno_trusted_boot.c 103BL2_SOURCES += plat/arm/board/juno/juno_trusted_boot.c 104endif 105 106endif 107 108ifneq (${RESET_TO_BL31},0) 109 $(error "Using BL31 as the reset vector is not supported on ${PLAT} platform. \ 110 Please set RESET_TO_BL31 to 0.") 111endif 112 113ifeq ($(USE_ROMLIB),1) 114all : bl1_romlib.bin 115endif 116 117bl1_romlib.bin : $(BUILD_PLAT)/bl1.bin romlib.bin 118 @echo "Building combined BL1 and ROMLIB binary for Juno $@" 119 ./lib/romlib/gen_combined_bl1_romlib.sh -o bl1_romlib.bin $(BUILD_PLAT) 120 121# Errata workarounds for Cortex-A53: 122ERRATA_A53_819472 := 1 123ERRATA_A53_824069 := 1 124ERRATA_A53_826319 := 1 125ERRATA_A53_827319 := 1 126ERRATA_A53_835769 := 1 127ERRATA_A53_836870 := 1 128ERRATA_A53_843419 := 1 129ERRATA_A53_855873 := 1 130 131# Errata workarounds for Cortex-A57: 132ERRATA_A57_806969 := 0 133ERRATA_A57_813419 := 1 134ERRATA_A57_813420 := 1 135ERRATA_A57_814670 := 1 136ERRATA_A57_817169 := 1 137ERRATA_A57_826974 := 1 138ERRATA_A57_826977 := 1 139ERRATA_A57_828024 := 1 140ERRATA_A57_829520 := 1 141ERRATA_A57_833471 := 1 142ERRATA_A57_859972 := 0 143 144# Errata workarounds for Cortex-A72: 145ERRATA_A72_859971 := 0 146 147# Enable option to skip L1 data cache flush during the Cortex-A57 cluster 148# power down sequence 149SKIP_A57_L1_FLUSH_PWR_DWN := 1 150 151# Do not enable SVE 152ENABLE_SVE_FOR_NS := 0 153 154# Enable the dynamic translation tables library. 155ifeq (${ARCH},aarch32) 156 ifeq (${RESET_TO_SP_MIN},1) 157 BL32_CPPFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC 158 endif 159else 160 ifeq (${RESET_TO_BL31},1) 161 BL31_CPPFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC 162 endif 163endif 164 165ifeq (${ALLOW_RO_XLAT_TABLES}, 1) 166 ifeq (${JUNO_AARCH32_EL3_RUNTIME}, 1) 167 BL32_CPPFLAGS += -DPLAT_RO_XLAT_TABLES 168 else 169 BL31_CPPFLAGS += -DPLAT_RO_XLAT_TABLES 170 endif 171endif 172 173BL1_CPPFLAGS += -march=armv8-a+crc 174BL2_CPPFLAGS += -march=armv8-a+crc 175BL2U_CPPFLAGS += -march=armv8-a+crc 176BL31_CPPFLAGS += -march=armv8-a+crc 177BL32_CPPFLAGS += -march=armv8-a+crc 178 179# Add the FDT_SOURCES and options for Dynamic Config 180FDT_SOURCES += plat/arm/board/juno/fdts/${PLAT}_fw_config.dts \ 181 plat/arm/board/juno/fdts/${PLAT}_tb_fw_config.dts \ 182 fdts/${PLAT}.dts 183 184FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_fw_config.dtb 185TB_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb 186HW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}.dtb 187 188# Add the FW_CONFIG to FIP and specify the same to certtool 189$(eval $(call TOOL_ADD_PAYLOAD,${FW_CONFIG},--fw-config,${FW_CONFIG})) 190# Add the TB_FW_CONFIG to FIP and specify the same to certtool 191$(eval $(call TOOL_ADD_PAYLOAD,${TB_FW_CONFIG},--tb-fw-config,${TB_FW_CONFIG})) 192# Add the HW_CONFIG to FIP and specify the same to certtool 193$(eval $(call TOOL_ADD_PAYLOAD,${HW_CONFIG},--hw-config,${HW_CONFIG})) 194 195include plat/arm/board/common/board_common.mk 196include plat/arm/common/arm_common.mk 197include plat/arm/soc/common/soc_css.mk 198include plat/arm/css/common/css_common.mk 199