[PATCH 1/6] arm-bsp/tf-a: corstone1000: Fix Cortex-A320 errata override
Hugues KAMBA MPIANA <[email protected]> Mon, 18 May 2026 19:44:04 +0100
| Newsgroups | org.yoctoproject.lists.meta-arm |
|---|---|
| Message-ID | <[email protected]> |
From: Alex Chapman <[email protected]> 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 <[email protected]> Signed-off-by: Hugues KAMBA MPIANA <[email protected]> --- .../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-cors= tone1000.inc +++ b/meta-arm-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-cors= tone1000.inc @@ -23,10 +23,10 @@ TFA_SPMD_SPM_AT_SEL2 =3D "0" # BL2 loads BL32 (optee). So, optee needs to be built first: DEPENDS +=3D "optee-os" =20 -ENABLE_CORTEX_A35_ERRATA =3D " \ +ENABLE_CORTEX_A_ERRATA =3D " \ ERRATA_A35_855472=3D1 \ " -ENABLE_CORTEX_A35_ERRATA:cortexta320 =3D "" +ENABLE_CORTEX_A_ERRATA:cortexa320 =3D "" FVP_GIC_DRIVER ?=3D "FVP_GICV2" FVP_GIC_DRIVER:cortexa320 =3D "FVP_GICV3" =20 @@ -54,7 +54,7 @@ EXTRA_OEMAKE:append =3D " \ NR_OF_IMAGES_IN_FW_BANK=3D4 \ COT=3Dtbbr \ ARM_ROTPK_LOCATION=3Ddevel_rsa \ - ${ENABLE_CORTEX_A35_ERRATA} \ + ${ENABLE_CORTEX_A_ERRATA} \ ROT_KEY=3Dplat/arm/board/common/rotpk/arm_rotpri= vk_rsa.pem \ BL32=3D${RECIPE_SYSROOT}/${nonarch_base_libdir}/= firmware/tee-pager_v2.bin \ FVP_USE_GIC_DRIVER=3D${FVP_GIC_DRIVER} \