summaryrefslogtreecommitdiffstats
path: root/plat/nxp/common/setup/common.mk
blob: 1fcf1d093b8de211e95c4b263cda6768b40bd8ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#
# Copyright 2018-2021 NXP
#
# SPDX-License-Identifier: BSD-3-Clause
#
#

###############################################################################
# Flow begins in BL2 at EL3 mode
BL2_AT_EL3			:= 1

# Though one core is powered up by default, there are
# platform specific ways to release more than one core
COLD_BOOT_SINGLE_CPU		:= 0

PROGRAMMABLE_RESET_ADDRESS	:= 1

USE_COHERENT_MEM		:= 0

# Use generic OID definition (tbbr_oid.h)
USE_TBBR_DEFS			:= 1

PLAT_XLAT_TABLES_DYNAMIC	:= 0

ENABLE_SVE_FOR_NS		:= 0

ENABLE_STACK_PROTECTOR		:= 0

ERROR_DEPRECATED		:= 0

LS_DISABLE_TRUSTED_WDOG		:= 1

# On ARM platforms, separate the code and read-only data sections to allow
# mapping the former as executable and the latter as execute-never.
SEPARATE_CODE_AND_RODATA	:= 1

# Enable new version of image loading on ARM platforms
LOAD_IMAGE_V2			:= 1

RCW				:= ""

ifneq (${SPD},none)
$(eval $(call add_define, NXP_LOAD_BL32))
endif

###############################################################################

PLAT_TOOL_PATH		:=	tools/nxp
CREATE_PBL_TOOL_PATH	:=	${PLAT_TOOL_PATH}/create_pbl
PLAT_SETUP_PATH		:=	${PLAT_PATH}/common/setup

PLAT_INCLUDES		+=	-I${PLAT_SETUP_PATH}/include			\
				-Iinclude/plat/arm/common			\
				-Iinclude/drivers/arm   			\
				-Iinclude/lib					\
				-Iinclude/drivers/io			\
				-Ilib/psci

# Required without TBBR.
# To include the defines for DDR PHY Images.
PLAT_INCLUDES		+=	-Iinclude/common/tbbr

include ${PLAT_SETUP_PATH}/core.mk
PLAT_BL_COMMON_SOURCES	+= 	${CPU_LIBS} \
				plat/nxp/common/setup/ls_err.c		\
				plat/nxp/common/setup/ls_common.c

ifneq (${ENABLE_STACK_PROTECTOR},0)
PLAT_BL_COMMON_SOURCES	+=	${PLAT_SETUP_PATH}/ls_stack_protector.c
endif

include lib/xlat_tables_v2/xlat_tables.mk

PLAT_BL_COMMON_SOURCES	+=	${XLAT_TABLES_LIB_SRCS}

BL2_SOURCES		+=	drivers/io/io_fip.c			\
				drivers/io/io_memmap.c			\
				drivers/io/io_storage.c			\
				common/desc_image_load.c 		\
				plat/nxp/common/setup/ls_image_load.c		\
				plat/nxp/common/setup/ls_io_storage.c		\
				plat/nxp/common/setup/ls_bl2_el3_setup.c	\
				plat/nxp/common/setup/${ARCH}/ls_bl2_mem_params_desc.c

BL31_SOURCES		+=	plat/nxp/common/setup/ls_bl31_setup.c	\

ifeq (${LS_EL3_INTERRUPT_HANDLER}, yes)
$(eval $(call add_define, LS_EL3_INTERRUPT_HANDLER))
BL31_SOURCES		+=	plat/nxp/common/setup/ls_interrupt_mgmt.c
endif

ifeq (${TEST_BL31}, 1)
BL31_SOURCES		+=	${TEST_SOURCES}
endif

# Verify build config
# -------------------

ifneq (${LOAD_IMAGE_V2}, 1)
  $(error Error: Layerscape needs LOAD_IMAGE_V2=1)
else
$(eval $(call add_define,LOAD_IMAGE_V2))
endif

include $(CREATE_PBL_TOOL_PATH)/create_pbl.mk