"vscode:/vscode.git/clone" did not exist on "8b51d17c469a7bafa1193d8af2a52e0d4c645eef"
Commit 035db88e authored by Soby Mathew's avatar Soby Mathew Committed by TrustedFirmware Code Review
Browse files

Merge "Modify FVP makefile for cores that support both AArch64/32" into integration

parents 1ac928ce cd3c5b4c
...@@ -99,14 +99,16 @@ ifeq (${ARCH}, aarch64) ...@@ -99,14 +99,16 @@ ifeq (${ARCH}, aarch64)
# select a different set of CPU files, depending on whether we compile for # select a different set of CPU files, depending on whether we compile for
# hardware assisted coherency cores or not # hardware assisted coherency cores or not
ifeq (${HW_ASSISTED_COHERENCY}, 0) ifeq (${HW_ASSISTED_COHERENCY}, 0)
# Cores used without DSU
FVP_CPU_LIBS += lib/cpus/aarch64/cortex_a35.S \ FVP_CPU_LIBS += lib/cpus/aarch64/cortex_a35.S \
lib/cpus/aarch64/cortex_a53.S \ lib/cpus/aarch64/cortex_a53.S \
lib/cpus/aarch64/cortex_a57.S \ lib/cpus/aarch64/cortex_a57.S \
lib/cpus/aarch64/cortex_a72.S \ lib/cpus/aarch64/cortex_a72.S \
lib/cpus/aarch64/cortex_a73.S lib/cpus/aarch64/cortex_a73.S
else else
# AArch64-only cores # Cores used with DSU only
ifeq (${CTX_INCLUDE_AARCH32_REGS}, 0) ifeq (${CTX_INCLUDE_AARCH32_REGS}, 0)
# AArch64-only cores
FVP_CPU_LIBS += lib/cpus/aarch64/cortex_a76.S \ FVP_CPU_LIBS += lib/cpus/aarch64/cortex_a76.S \
lib/cpus/aarch64/cortex_a76ae.S \ lib/cpus/aarch64/cortex_a76ae.S \
lib/cpus/aarch64/cortex_a77.S \ lib/cpus/aarch64/cortex_a77.S \
...@@ -114,11 +116,10 @@ else ...@@ -114,11 +116,10 @@ else
lib/cpus/aarch64/neoverse_e1.S \ lib/cpus/aarch64/neoverse_e1.S \
lib/cpus/aarch64/neoverse_zeus.S \ lib/cpus/aarch64/neoverse_zeus.S \
lib/cpus/aarch64/cortex_hercules.S lib/cpus/aarch64/cortex_hercules.S
# AArch64/AArch32 endif
else # AArch64/AArch32 cores
FVP_CPU_LIBS += lib/cpus/aarch64/cortex_a55.S \ FVP_CPU_LIBS += lib/cpus/aarch64/cortex_a55.S \
lib/cpus/aarch64/cortex_a75.S lib/cpus/aarch64/cortex_a75.S
endif
endif endif
else else
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment