bl31.mk 1.19 KB
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
9
10
11
12
13
14
15
################################################################################
# Include SPM Makefile
################################################################################
ifeq (${ENABLE_SPM},1)
$(info Including SPM makefile)
include services/std_svc/spm/spm.mk
endif


16
17
include lib/psci/psci_lib.mk

Dan Handley's avatar
Dan Handley committed
18
BL31_SOURCES		+=	bl31/bl31_main.c				\
19
				bl31/interrupt_mgmt.c				\
Dan Handley's avatar
Dan Handley committed
20
21
				bl31/aarch64/bl31_entrypoint.S			\
				bl31/aarch64/runtime_exceptions.S		\
22
				bl31/aarch64/crash_reporting.S			\
23
				bl31/bl31_context_mgmt.c			\
24
				common/runtime_svc.c				\
25
				plat/common/aarch64/platform_mp_stack.S		\
Dan Handley's avatar
Dan Handley committed
26
				services/std_svc/std_svc_setup.c		\
27
28
29
				${PSCI_LIB_SOURCES}				\
				${SPM_SOURCES}					\

30

31
32
33
34
ifeq (${ENABLE_PMF}, 1)
BL31_SOURCES		+=	lib/pmf/pmf_main.c
endif

Dan Handley's avatar
Dan Handley committed
35
BL31_LINKERFILE		:=	bl31/bl31.ld.S
36

37
# Flag used to indicate if Crash reporting via console should be included
38
# in BL31. This defaults to being present in DEBUG builds only
39
40
41
42
43
44
ifndef CRASH_REPORTING
CRASH_REPORTING		:=	$(DEBUG)
endif

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