mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-23 21:44:15 +00:00
feat(versal): enable errata management feature
The errata ABI feature-specific build flag, the flag enabling CPUs in the CPU list, and the flags testing non-ARM interconnect-based errata when enabled from a platform level are added to the AMD-Xilinx Versal platform makefile to assess the errata ABI feature implementation. ERRATA_ABI_SUPPORT : Boolean option to enable support for Errata management firmware interface for the BL31 image. By default, its disabled set to zero. Signed-off-by: Prasad Kummari <prasad.kummari@amd.com> Change-Id: I54cda23d699abc0782f44172c28933f5cbb010b8
This commit is contained in:
parent
9118bdf401
commit
d766f994d2
1 changed files with 6 additions and 0 deletions
|
@ -116,3 +116,9 @@ BL31_SOURCES += drivers/arm/cci/cci.c \
|
|||
ifeq ($(HARDEN_SLS_ALL), 1)
|
||||
TF_CFLAGS_aarch64 += -mharden-sls=all
|
||||
endif
|
||||
|
||||
ifeq (${ERRATA_ABI_SUPPORT}, 1)
|
||||
# enable the cpu macros for errata abi interface
|
||||
CORTEX_A72_H_INC := 1
|
||||
$(eval $(call add_define, CORTEX_A72_H_INC))
|
||||
endif
|
||||
|
|
Loading…
Add table
Reference in a new issue