From b58ffc3a09816c64bf6cd53f90b4e340b98975be Mon Sep 17 00:00:00 2001 From: Alex Chapman Date: Mon, 18 May 2026 19:51:36 +0100 Subject: [PATCH] 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 Signed-off-by: Hugues KAMBA MPIANA Signed-off-by: Jon Mason --- .../trusted-firmware-a/trusted-firmware-a-corstone1000.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-arm-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-corstone1000.inc b/meta-arm-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-corstone1000.inc index c77ec29d..4979f294 100644 --- a/meta-arm-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-corstone1000.inc +++ b/meta-arm-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-corstone1000.inc @@ -23,10 +23,10 @@ TFA_SPMD_SPM_AT_SEL2 = "0" # BL2 loads BL32 (optee). So, optee needs to be built first: DEPENDS += "optee-os" -ENABLE_CORTEX_A35_ERRATA = " \ +ENABLE_CORTEX_A_ERRATA = " \ ERRATA_A35_855472=1 \ " -ENABLE_CORTEX_A35_ERRATA:cortexta320 = "" +ENABLE_CORTEX_A_ERRATA:cortexa320 = "" FVP_GIC_DRIVER ?= "FVP_GICV2" FVP_GIC_DRIVER:cortexa320 = "FVP_GICV3" @@ -54,7 +54,7 @@ EXTRA_OEMAKE:append = " \ NR_OF_IMAGES_IN_FW_BANK=4 \ COT=tbbr \ ARM_ROTPK_LOCATION=devel_rsa \ - ${ENABLE_CORTEX_A35_ERRATA} \ + ${ENABLE_CORTEX_A_ERRATA} \ ROT_KEY=plat/arm/board/common/rotpk/arm_rotprivk_rsa.pem \ BL32=${RECIPE_SYSROOT}/${nonarch_base_libdir}/firmware/tee-pager_v2.bin \ FVP_USE_GIC_DRIVER=${FVP_GIC_DRIVER} \