mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00
refactor(fvp): move cpus with nomodel
Move CPUs which are not tested in CI under a new build option. We have added some CPUs for which there is no FVP models available yet to test. Move those CPUs under a new FVP build option. Change-Id: I3da12d2f8d9c246b435b31adfac61c79dc1ab0cb Signed-off-by: Govindraj Raja <govindraj.raja@arm.com>
This commit is contained in:
parent
2c746960ee
commit
5af143f293
1 changed files with 12 additions and 4 deletions
|
@ -31,6 +31,9 @@ FVP_TRUSTED_SRAM_SIZE := 256
|
|||
# Macro to enable helpers for running SPM tests. Disabled by default.
|
||||
PLAT_TEST_SPM := 0
|
||||
|
||||
# By default dont build CPUs with no FVP model.
|
||||
BUILD_CPUS_WITH_NO_FVP_MODEL ?= 0
|
||||
|
||||
ENABLE_FEAT_AMU := 2
|
||||
ENABLE_FEAT_AMUv1p1 := 2
|
||||
ENABLE_FEAT_HCX := 2
|
||||
|
@ -190,16 +193,21 @@ else
|
|||
lib/cpus/aarch64/neoverse_v1.S \
|
||||
lib/cpus/aarch64/neoverse_e1.S \
|
||||
lib/cpus/aarch64/cortex_x2.S \
|
||||
lib/cpus/aarch64/cortex_x4.S \
|
||||
lib/cpus/aarch64/cortex_gelas.S \
|
||||
lib/cpus/aarch64/nevis.S \
|
||||
lib/cpus/aarch64/travis.S
|
||||
lib/cpus/aarch64/cortex_x4.S
|
||||
endif
|
||||
# AArch64/AArch32 cores
|
||||
FVP_CPU_LIBS += lib/cpus/aarch64/cortex_a55.S \
|
||||
lib/cpus/aarch64/cortex_a75.S
|
||||
endif
|
||||
|
||||
#Build AArch64-only CPUs with no FVP model yet.
|
||||
ifeq (${BUILD_CPUS_WITH_NO_FVP_MODEL},1)
|
||||
FVP_CPU_LIBS += lib/cpus/aarch64/neoverse_hermes.S \
|
||||
lib/cpus/aarch64/cortex_gelas.S \
|
||||
lib/cpus/aarch64/nevis.S \
|
||||
lib/cpus/aarch64/travis.S
|
||||
endif
|
||||
|
||||
else
|
||||
FVP_CPU_LIBS += lib/cpus/aarch32/cortex_a32.S \
|
||||
lib/cpus/aarch32/cortex_a57.S \
|
||||
|
|
Loading…
Add table
Reference in a new issue