mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-27 23:35:10 +00:00
feat(qemu): add "cortex-a710" cpu support
Add support to qemu "cortex-a710" cpu for "qemu" platform. CPU is supported by qemu/virt only as qemu/sbsa-ref memory starts at 2^40 which is limit for Cortex-A710. Switched 'qemu' platform to be built as armv8.5 to cover features of new cpu core. Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Change-Id: I035790eac41b2caf7f13167e53f48c16f0827754
This commit is contained in:
parent
88b2d81345
commit
4734a62d2c
1 changed files with 13 additions and 0 deletions
|
@ -20,12 +20,25 @@ QEMU_CPU_LIBS := lib/cpus/aarch64/aem_generic.S \
|
|||
lib/cpus/aarch64/cortex_a57.S \
|
||||
lib/cpus/aarch64/cortex_a72.S \
|
||||
lib/cpus/aarch64/cortex_a76.S \
|
||||
lib/cpus/aarch64/cortex_a710.S \
|
||||
lib/cpus/aarch64/neoverse_n_common.S \
|
||||
lib/cpus/aarch64/neoverse_n1.S \
|
||||
lib/cpus/aarch64/neoverse_v1.S \
|
||||
lib/cpus/aarch64/qemu_max.S
|
||||
|
||||
PLAT_INCLUDES += -Iinclude/plat/arm/common/${ARCH}
|
||||
|
||||
# Cpu core architecture level:
|
||||
# v8.0: a53, a57, a72
|
||||
# v8.2: a76, n1
|
||||
# v8.4: v1
|
||||
# v9.0: a710
|
||||
#
|
||||
# let treat v9.0 as v8.5 as they share cpu features
|
||||
# https://developer.arm.com/documentation/102378/0201/Armv8-x-and-Armv9-x-extensions-and-features
|
||||
|
||||
ARM_ARCH_MAJOR := 8
|
||||
ARM_ARCH_MINOR := 5
|
||||
endif
|
||||
|
||||
PLAT_BL_COMMON_SOURCES := ${PLAT_QEMU_COMMON_PATH}/qemu_common.c \
|
||||
|
|
Loading…
Add table
Reference in a new issue