Merge "fix(qemu): enable SVE and SME" into integration

This commit is contained in:
Sandrine Bailleux 2022-10-05 15:08:32 +02:00 committed by TrustedFirmware Code Review
commit 6f70cce625

View file

@ -259,5 +259,8 @@ $(eval $(call add_define,ARM_LINUX_KERNEL_AS_BL33))
ARM_PRELOADED_DTB_BASE := PLAT_QEMU_DT_BASE
$(eval $(call add_define,ARM_PRELOADED_DTB_BASE))
# Do not enable SVE
ENABLE_SVE_FOR_NS := 0
# Later QEMU versions support SME and SVE.
ifneq (${ARCH},aarch32)
ENABLE_SVE_FOR_NS := 1
ENABLE_SME_FOR_NS := 1
endif