1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-05-30 12:30:14 +00:00

arm-bsp/tf-a: corstone1000: Fix Cortex-A320 errata override

Fix the Corstone-1000 with Cortex-A320 override for the
Trusted Firmware-A errata list.
The override was misspelled as
`ENABLE_CORTEX_A35_ERRATA:cortexta320` instead of
`ENABLE_CORTEX_A35_ERRATA:cortexa320`.

Rename the list to `ENABLE_CORTEX_A_ERRATA`, since it is shared by
the Cortex-A35 and Cortex-A320 variants.

Signed-off-by: Alex Chapman <alex.chapman@arm.com>
Signed-off-by: Hugues KAMBA MPIANA <hugues.kambampiana@arm.com>
Signed-off-by: Jon Mason <jon.mason@arm.com>
This commit is contained in:
Alex Chapman
2026-05-18 19:51:36 +01:00
committed by Jon Mason
parent 052c2cf333
commit b58ffc3a09
@@ -23,10 +23,10 @@ TFA_SPMD_SPM_AT_SEL2 = "0"
# BL2 loads BL32 (optee). So, optee needs to be built first: # BL2 loads BL32 (optee). So, optee needs to be built first:
DEPENDS += "optee-os" DEPENDS += "optee-os"
ENABLE_CORTEX_A35_ERRATA = " \ ENABLE_CORTEX_A_ERRATA = " \
ERRATA_A35_855472=1 \ ERRATA_A35_855472=1 \
" "
ENABLE_CORTEX_A35_ERRATA:cortexta320 = "" ENABLE_CORTEX_A_ERRATA:cortexa320 = ""
FVP_GIC_DRIVER ?= "FVP_GICV2" FVP_GIC_DRIVER ?= "FVP_GICV2"
FVP_GIC_DRIVER:cortexa320 = "FVP_GICV3" FVP_GIC_DRIVER:cortexa320 = "FVP_GICV3"
@@ -54,7 +54,7 @@ EXTRA_OEMAKE:append = " \
NR_OF_IMAGES_IN_FW_BANK=4 \ NR_OF_IMAGES_IN_FW_BANK=4 \
COT=tbbr \ COT=tbbr \
ARM_ROTPK_LOCATION=devel_rsa \ ARM_ROTPK_LOCATION=devel_rsa \
${ENABLE_CORTEX_A35_ERRATA} \ ${ENABLE_CORTEX_A_ERRATA} \
ROT_KEY=plat/arm/board/common/rotpk/arm_rotprivk_rsa.pem \ ROT_KEY=plat/arm/board/common/rotpk/arm_rotprivk_rsa.pem \
BL32=${RECIPE_SYSROOT}/${nonarch_base_libdir}/firmware/tee-pager_v2.bin \ BL32=${RECIPE_SYSROOT}/${nonarch_base_libdir}/firmware/tee-pager_v2.bin \
FVP_USE_GIC_DRIVER=${FVP_GIC_DRIVER} \ FVP_USE_GIC_DRIVER=${FVP_GIC_DRIVER} \