1# 2# Copyright (c) 2013-2025, Arm Limited and Contributors. All rights reserved. 3# 4# SPDX-License-Identifier: BSD-3-Clause 5# 6 7BL1_SOURCES += bl1/${ARCH}/bl1_arch_setup.c \ 8 bl1/${ARCH}/bl1_context_mgmt.c \ 9 bl1/${ARCH}/bl1_entrypoint.S \ 10 bl1/${ARCH}/bl1_exceptions.S \ 11 bl1/bl1_main.c \ 12 lib/cpus/${ARCH}/cpu_helpers.S \ 13 lib/cpus/errata_report.c \ 14 lib/el3_runtime/${ARCH}/context_mgmt.c \ 15 plat/common/plat_bl1_common.c \ 16 plat/common/${ARCH}/platform_up_stack.S \ 17 ${MBEDTLS_SOURCES} 18 19ifeq (${ARCH},aarch64) 20BL1_SOURCES += lib/el3_runtime/aarch64/context.S \ 21 lib/cpus/errata_common.c 22endif 23 24ifeq (${TRUSTED_BOARD_BOOT},1) 25BL1_SOURCES += bl1/bl1_fwu.c 26endif 27 28ifeq (${ENABLE_PMF},1) 29BL1_SOURCES += lib/pmf/pmf_main.c 30endif 31 32BL1_DEFAULT_LINKER_SCRIPT_SOURCE := bl1/bl1.ld.S 33 34# CRYPTO_SUPPORT 35NEED_AUTH := $(if $(filter 1,$(TRUSTED_BOARD_BOOT)),1,) 36NEED_HASH := $(if $(filter 1,$(MEASURED_BOOT) $(DRTM_SUPPORT)),1,) 37$(eval $(call set_crypto_support,NEED_AUTH,NEED_HASH)) 38 39# BL1_CPPFLAGS 40$(eval BL1_CPPFLAGS += $(call make_defines, \ 41 $(sort \ 42 CRYPTO_SUPPORT \ 43))) 44 45# Numeric_Flags 46$(eval $(call assert_numerics,\ 47 $(sort \ 48 CRYPTO_SUPPORT \ 49))) 50