bl31.mk 908 Bytes
Newer Older
1
#
2
# Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved.
3
#
dp-arm's avatar
dp-arm committed
4
# SPDX-License-Identifier: BSD-3-Clause
5
6
#

7
8
include lib/psci/psci_lib.mk

Dan Handley's avatar
Dan Handley committed
9
BL31_SOURCES		+=	bl31/bl31_main.c				\
10
				bl31/interrupt_mgmt.c				\
Dan Handley's avatar
Dan Handley committed
11
12
				bl31/aarch64/bl31_entrypoint.S			\
				bl31/aarch64/runtime_exceptions.S		\
13
				bl31/aarch64/crash_reporting.S			\
14
				bl31/bl31_context_mgmt.c			\
15
				common/runtime_svc.c				\
16
				plat/common/aarch64/platform_mp_stack.S		\
Dan Handley's avatar
Dan Handley committed
17
				services/std_svc/std_svc_setup.c		\
18
				${PSCI_LIB_SOURCES}
19

20
21
22
23
ifeq (${ENABLE_PMF}, 1)
BL31_SOURCES		+=	lib/pmf/pmf_main.c
endif

Dan Handley's avatar
Dan Handley committed
24
BL31_LINKERFILE		:=	bl31/bl31.ld.S
25

26
# Flag used to indicate if Crash reporting via console should be included
27
# in BL31. This defaults to being present in DEBUG builds only
28
29
30
31
32
33
ifndef CRASH_REPORTING
CRASH_REPORTING		:=	$(DEBUG)
endif

$(eval $(call assert_boolean,CRASH_REPORTING))
$(eval $(call add_define,CRASH_REPORTING))