summaryrefslogtreecommitdiff
path: root/bl1/bl1.mk
diff options
context:
space:
mode:
authorGary Morrison <gary.morrison@arm.com>2021-01-27 13:08:47 -0600
committerManish Pandey <manish.pandey2@arm.com>2021-09-30 17:05:59 +0100
commit5fb061e761ee98d6ba1938d87efcc26a29ef0a87 (patch)
tree93ebd121284ae83ca71860b378b8f4c7a0409034 /bl1/bl1.mk
parent03b201c0fbc14a3a5c0f8f862cc8b9bd052ba09e (diff)
chore: fvp_r: Initial No-EL3 and MPU Implementation
For v8-R64, especially R82, creating code to run BL1 at EL2, using MPU. Signed-off-by: Gary Morrison <gary.morrison@arm.com> Change-Id: I439ac3915b982ad1e61d24365bdd1584b3070425
Diffstat (limited to 'bl1/bl1.mk')
-rw-r--r--bl1/bl1.mk10
1 files changed, 6 insertions, 4 deletions
diff --git a/bl1/bl1.mk b/bl1/bl1.mk
index d11b4ab0e..8f44151da 100644
--- a/bl1/bl1.mk
+++ b/bl1/bl1.mk
@@ -1,15 +1,17 @@
#
-# Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved.
+# Copyright (c) 2013-2021, ARM Limited and Contributors. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
-BL1_SOURCES += bl1/bl1_main.c \
- bl1/${ARCH}/bl1_arch_setup.c \
+ifneq (${PLAT},fvp_r)
+BL1_SOURCES += bl1/${ARCH}/bl1_arch_setup.c \
bl1/${ARCH}/bl1_context_mgmt.c \
bl1/${ARCH}/bl1_entrypoint.S \
bl1/${ARCH}/bl1_exceptions.S \
- lib/cpus/${ARCH}/cpu_helpers.S \
+ bl1/bl1_main.c
+endif
+BL1_SOURCES += lib/cpus/${ARCH}/cpu_helpers.S \
lib/cpus/errata_report.c \
lib/el3_runtime/${ARCH}/context_mgmt.c \
plat/common/plat_bl1_common.c \