mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-08 13:53:54 +00:00

The existing DSU errata workarounds hijack the errata framework's inner workings to register with it. However, that is undesirable as any change to the framework may end up missing these workarounds. So convert the checks and workarounds to macros and have them included with the standard wrappers. The only problem with this is the is_scu_present_in_dsu weak function. Fortunately, it is only needed for 2 of the errata and only on 3 cores. So drop it, assuming the default behaviour and have the callers handle the exception. Change-Id: Iefa36325804ea093e938f867b9a6f49a6984b8ae Signed-off-by: Boyan Karatotev <boyan.karatotev@arm.com>
163 lines
4.2 KiB
Makefile
163 lines
4.2 KiB
Makefile
#
|
|
# Copyright (c) 2023-2024, Linaro Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
include lib/libfdt/libfdt.mk
|
|
include common/fdt_wrappers.mk
|
|
|
|
PLAT_INCLUDES := -Iinclude/plat/arm/common/ \
|
|
-I${PLAT_QEMU_COMMON_PATH}/ \
|
|
-I${PLAT_QEMU_COMMON_PATH}/include \
|
|
-I${PLAT_QEMU_PATH}/include \
|
|
-Iinclude/common/tbbr
|
|
|
|
ifeq (${ARCH},aarch32)
|
|
QEMU_CPU_LIBS := lib/cpus/${ARCH}/cortex_a15.S
|
|
else
|
|
QEMU_CPU_LIBS := lib/cpus/aarch64/aem_generic.S \
|
|
lib/cpus/aarch64/cortex_a53.S \
|
|
lib/cpus/aarch64/cortex_a55.S \
|
|
lib/cpus/aarch64/cortex_a57.S \
|
|
lib/cpus/aarch64/cortex_a72.S \
|
|
lib/cpus/aarch64/cortex_a76.S \
|
|
lib/cpus/aarch64/cortex_a710.S \
|
|
lib/cpus/aarch64/neoverse_n1.S \
|
|
lib/cpus/aarch64/neoverse_v1.S \
|
|
lib/cpus/aarch64/neoverse_n2.S \
|
|
lib/cpus/aarch64/qemu_max.S
|
|
|
|
PLAT_INCLUDES += -Iinclude/plat/arm/common/${ARCH}
|
|
endif
|
|
|
|
PLAT_BL_COMMON_SOURCES := ${PLAT_QEMU_COMMON_PATH}/qemu_common.c \
|
|
${PLAT_QEMU_COMMON_PATH}/qemu_console.c \
|
|
drivers/arm/pl011/${ARCH}/pl011_console.S
|
|
|
|
include lib/xlat_tables_v2/xlat_tables.mk
|
|
PLAT_BL_COMMON_SOURCES += ${XLAT_TABLES_LIB_SRCS}
|
|
|
|
ifneq ($(ENABLE_STACK_PROTECTOR), 0)
|
|
PLAT_BL_COMMON_SOURCES += ${PLAT_QEMU_COMMON_PATH}/qemu_stack_protector.c
|
|
endif
|
|
|
|
BL1_SOURCES += drivers/io/io_semihosting.c \
|
|
drivers/io/io_storage.c \
|
|
drivers/io/io_fip.c \
|
|
drivers/io/io_memmap.c \
|
|
lib/semihosting/semihosting.c \
|
|
lib/semihosting/${ARCH}/semihosting_call.S \
|
|
${PLAT_QEMU_COMMON_PATH}/qemu_io_storage.c \
|
|
${PLAT_QEMU_COMMON_PATH}/${ARCH}/plat_helpers.S \
|
|
${PLAT_QEMU_COMMON_PATH}/qemu_bl1_setup.c \
|
|
${QEMU_CPU_LIBS}
|
|
|
|
BL2_SOURCES += drivers/io/io_semihosting.c \
|
|
drivers/io/io_storage.c \
|
|
drivers/io/io_fip.c \
|
|
drivers/io/io_memmap.c \
|
|
lib/semihosting/semihosting.c \
|
|
lib/semihosting/${ARCH}/semihosting_call.S \
|
|
${PLAT_QEMU_COMMON_PATH}/qemu_io_storage.c \
|
|
${PLAT_QEMU_COMMON_PATH}/${ARCH}/plat_helpers.S \
|
|
${PLAT_QEMU_COMMON_PATH}/qemu_bl2_setup.c \
|
|
${PLAT_QEMU_COMMON_PATH}/qemu_bl2_mem_params_desc.c \
|
|
${PLAT_QEMU_COMMON_PATH}/qemu_image_load.c \
|
|
common/desc_image_load.c \
|
|
common/fdt_fixup.c \
|
|
${FDT_WRAPPERS_SOURCES}
|
|
|
|
BL31_SOURCES += ${QEMU_CPU_LIBS} \
|
|
lib/semihosting/semihosting.c \
|
|
lib/semihosting/${ARCH}/semihosting_call.S \
|
|
plat/common/plat_psci_common.c \
|
|
${PLAT_QEMU_COMMON_PATH}/aarch64/plat_helpers.S \
|
|
${PLAT_QEMU_COMMON_PATH}/qemu_bl31_setup.c \
|
|
common/fdt_fixup.c \
|
|
${QEMU_GIC_SOURCES}
|
|
|
|
# CPU flag enablement
|
|
ifeq (${ARCH},aarch64)
|
|
|
|
# Cpu core architecture level:
|
|
# v8.0: a53, a57, a72
|
|
# v8.2: a55, a76, n1
|
|
# v8.4: v1
|
|
# v9.0: a710, n2
|
|
#
|
|
#
|
|
# We go v8.0 by default and will enable all features we want
|
|
|
|
ARM_ARCH_MAJOR ?= 8
|
|
ARM_ARCH_MINOR ?= 0
|
|
|
|
# 8.0
|
|
ENABLE_FEAT_CSV2_2 := 2
|
|
|
|
# 8.1
|
|
ENABLE_FEAT_PAN := 2
|
|
ENABLE_FEAT_VHE := 2
|
|
|
|
# 8.2
|
|
# TF-A currently does not permit dynamic detection of FEAT_RAS
|
|
# so this is the only safe setting
|
|
ENABLE_FEAT_RAS := 0
|
|
|
|
# 8.4
|
|
ENABLE_FEAT_SEL2 := 2
|
|
ENABLE_FEAT_DIT := 2
|
|
ENABLE_TRF_FOR_NS := 2
|
|
|
|
# 8.5
|
|
ENABLE_FEAT_RNG := 2
|
|
# TF-A currently does not do dynamic detection of FEAT_SB.
|
|
# Compiler puts SB instruction when it is enabled.
|
|
ENABLE_FEAT_SB := 0
|
|
|
|
# 8.6
|
|
ENABLE_FEAT_ECV := 2
|
|
ENABLE_FEAT_FGT := 2
|
|
|
|
# 8.7
|
|
ENABLE_FEAT_HCX := 2
|
|
|
|
# SPM_MM is not compatible with ENABLE_SVE_FOR_NS (build breaks)
|
|
ifeq (${SPM_MM},1)
|
|
ENABLE_SVE_FOR_NS := 0
|
|
ENABLE_SME_FOR_NS := 0
|
|
else
|
|
ENABLE_SVE_FOR_NS := 2
|
|
ENABLE_SME_FOR_NS := 2
|
|
endif
|
|
|
|
ifeq (${ENABLE_RME},1)
|
|
BL31_SOURCES += plat/qemu/common/qemu_plat_attest_token.c \
|
|
plat/qemu/common/qemu_realm_attest_key.c
|
|
endif
|
|
|
|
# Treating this as a memory-constrained port for now
|
|
USE_COHERENT_MEM := 0
|
|
|
|
# This can be overridden depending on CPU(s) used in the QEMU image
|
|
HW_ASSISTED_COHERENCY := 1
|
|
|
|
CTX_INCLUDE_AARCH32_REGS := 0
|
|
ifeq (${CTX_INCLUDE_AARCH32_REGS}, 1)
|
|
$(error "This is an AArch64-only port; CTX_INCLUDE_AARCH32_REGS must be disabled")
|
|
endif
|
|
|
|
# Pointer Authentication sources
|
|
ifeq ($(BRANCH_PROTECTION),$(filter $(BRANCH_PROTECTION),1 2 3))
|
|
PLAT_BL_COMMON_SOURCES += plat/arm/common/aarch64/arm_pauth.c
|
|
endif
|
|
|
|
ifeq (${TRANSFER_LIST}, 1)
|
|
include lib/transfer_list/transfer_list.mk
|
|
endif
|
|
|
|
ifeq (${HOB_LIST}, 1)
|
|
include lib/hob/hob.mk
|
|
endif
|
|
|
|
endif
|