]> git.baikalelectronics.ru Git - arm-tf.git/commitdiff
feat(fvp): enable errata management interface
authorSona Mathew <SonaRebecca.Mathew@arm.com>
Tue, 14 Mar 2023 22:58:13 +0000 (17:58 -0500)
committerSona Mathew <SonaRebecca.Mathew@arm.com>
Fri, 5 May 2023 18:24:56 +0000 (13:24 -0500)
Errata ABI feature specific build flag, flag to enable
CPUs in the cpu list, flags to test non-arm interconnect based
errata flags when enabled from a platform level.
Added to the FVP platform makefile to test the errata abi feature
implementation.

The flags to enable CPUs in the cpu list will be removed once
synchronized with the errata framework.

Change-Id: I30877a22ac1348906a6ddfb26f9e8839912d3572
Signed-off-by: Sona Mathew <SonaRebecca.Mathew@arm.com>
plat/arm/board/fvp/fvp_cpu_errata.mk [new file with mode: 0644]
plat/arm/board/fvp/platform.mk

diff --git a/plat/arm/board/fvp/fvp_cpu_errata.mk b/plat/arm/board/fvp/fvp_cpu_errata.mk
new file mode 100644 (file)
index 0000000..944571d
--- /dev/null
@@ -0,0 +1,61 @@
+#
+# Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+
+
+#/*
+# * TODO: below lines of code to be removed
+# * after abi and framework are synchronized
+# */
+
+ifeq (${ERRATA_ABI_SUPPORT}, 1)
+# enable the cpu macros for errata abi interface
+ifeq (${ARCH}, aarch64)
+ifeq (${HW_ASSISTED_COHERENCY}, 0)
+CORTEX_A35_H_INC       := 1
+CORTEX_A53_H_INC       := 1
+CORTEX_A57_H_INC       := 1
+CORTEX_A72_H_INC       := 1
+CORTEX_A73_H_INC       := 1
+$(eval $(call add_define, CORTEX_A35_H_INC))
+$(eval $(call add_define, CORTEX_A53_H_INC))
+$(eval $(call add_define, CORTEX_A57_H_INC))
+$(eval $(call add_define, CORTEX_A72_H_INC))
+$(eval $(call add_define, CORTEX_A73_H_INC))
+else
+ifeq (${CTX_INCLUDE_AARCH32_REGS}, 0)
+CORTEX_A76_H_INC       := 1
+CORTEX_A77_H_INC       := 1
+CORTEX_A78_H_INC       := 1
+NEOVERSE_N1_H_INC      := 1
+NEOVERSE_V1_H_INC      := 1
+CORTEX_A78_AE_H_INC    := 1
+CORTEX_A510_H_INC      := 1
+CORTEX_A710_H_INC      := 1
+CORTEX_A715_H_INC      := 1
+CORTEX_A78C_H_INC      := 1
+CORTEX_X2_H_INC                := 1
+$(eval $(call add_define, CORTEX_A76_H_INC))
+$(eval $(call add_define, CORTEX_A77_H_INC))
+$(eval $(call add_define, CORTEX_A78_H_INC))
+$(eval $(call add_define, NEOVERSE_N1_H_INC))
+$(eval $(call add_define, NEOVERSE_V1_H_INC))
+$(eval $(call add_define, CORTEX_A78_AE_H_INC))
+$(eval $(call add_define, CORTEX_A510_H_INC))
+$(eval $(call add_define, CORTEX_A710_H_INC))
+$(eval $(call add_define, CORTEX_A715_H_INC))
+$(eval $(call add_define, CORTEX_A78C_H_INC))
+$(eval $(call add_define, CORTEX_X2_H_INC))
+endif
+CORTEX_A55_H_INC       := 1
+CORTEX_A75_H_INC       := 1
+$(eval $(call add_define, CORTEX_A55_H_INC))
+$(eval $(call add_define, CORTEX_A75_H_INC))
+endif
+else
+CORTEX_A32_H_INC       := 1
+$(eval $(call add_define, CORTEX_A32_H_INC))
+endif
+endif
index ea3f9548617a5b44a71a3f13bf85dfc7661fa591..363d15d2c0c9deccb2bc07cfb30f05f1f3b3dde6 100644 (file)
@@ -516,3 +516,7 @@ endif
 ifeq (${SPD},spmd)
 BL31_SOURCES   +=      plat/arm/board/fvp/fvp_spmd.c
 endif
+
+ifeq (${ERRATA_ABI_SUPPORT}, 1)
+include plat/arm/board/fvp/fvp_cpu_errata.mk
+endif