From 3eb28657f8fc25dbab6320ac4205518e7af1a14c Mon Sep 17 00:00:00 2001 From: Romain Naour Date: Sat, 4 Jan 2025 18:59:42 +0100 Subject: [PATCH] support/testing: test_edk2: bump ATF to 2.12 Since edk2-202408, ATF >= 2.12 is required for qemu aarch64 sbsa target to support CPU topology information provided by edk2 firmware [1]. If ATF <= 2.11 is used, the boot will hand with the following error: sbsa_sip_smc_handler: unhandled SMC (0xc20000ca) (function id: 202) In order to update edk2 package to a newer version, update ATF version used by TestEdk2 to 2.12. [1] https://github.com/ARM-software/arm-trusted-firmware/commit/c891b4d83578db25d24d2a8e3e7e419e65773ac8 Cc: Julien Olivain Signed-off-by: Romain Naour Signed-off-by: Julien Olivain --- support/testing/tests/boot/test_edk2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/testing/tests/boot/test_edk2.py b/support/testing/tests/boot/test_edk2.py index 54a59089da..6403aaa653 100644 --- a/support/testing/tests/boot/test_edk2.py +++ b/support/testing/tests/boot/test_edk2.py @@ -26,7 +26,7 @@ class TestEdk2(infra.basetest.BRTest): BR2_TARGET_GRUB2_ARM64_EFI=y BR2_TARGET_ARM_TRUSTED_FIRMWARE=y BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_VERSION=y - BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_VERSION_VALUE="v2.11" + BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_VERSION_VALUE="v2.12" BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="qemu_sbsa" BR2_TARGET_ARM_TRUSTED_FIRMWARE_FIP=y BR2_PACKAGE_HOST_GENIMAGE=y