1#
2# Copyright (c) 2019-2021, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7include common/fdt_wrappers.mk
8
9ifdef ARM_CORTEX_A5
10# Use the SP804 timer instead of the generic one
11USE_SP804_TIMER	:= 1
12BL2_SOURCES		+=	drivers/arm/sp804/sp804_delay_timer.c
13endif
14
15# Include GICv2 driver files
16include drivers/arm/gic/v2/gicv2.mk
17
18FVP_VE_GIC_SOURCES	:=	${GICV2_SOURCES}		\
19				plat/common/plat_gicv2.c	\
20				plat/arm/common/arm_gicv2.c
21
22FVP_VE_SECURITY_SOURCES	:=	plat/arm/board/fvp_ve/fvp_ve_security.c
23
24PLAT_INCLUDES		:=	-Iplat/arm/board/fvp_ve/include
25
26PLAT_BL_COMMON_SOURCES	:=	plat/arm/board/fvp_ve/fvp_ve_common.c		\
27				plat/arm/common/${ARCH}/arm_helpers.S		\
28				plat/arm/common/arm_common.c			\
29				plat/arm/common/arm_console.c			\
30				drivers/arm/pl011/${ARCH}/pl011_console.S	\
31				plat/arm/board/common/${ARCH}/board_arm_helpers.S
32
33ifdef ARM_CORTEX_A5
34FVP_VE_CPU_LIBS		:=	lib/cpus/aarch32/cortex_a5.S
35else
36FVP_VE_CPU_LIBS		:=	lib/cpus/aarch32/cortex_a7.S
37endif
38
39BL1_SOURCES		+=	drivers/arm/sp805/sp805.c			\
40				drivers/io/io_fip.c				\
41				drivers/io/io_memmap.c				\
42				drivers/io/io_storage.c				\
43				plat/arm/common/arm_bl1_setup.c			\
44				plat/arm/common/arm_err.c			\
45				plat/arm/board/fvp_ve/fvp_ve_err.c		\
46				plat/arm/common/arm_io_storage.c		\
47				plat/arm/common/fconf/arm_fconf_io.c		\
48				drivers/cfi/v2m/v2m_flash.c			\
49				plat/arm/board/fvp_ve/${ARCH}/fvp_ve_helpers.S	\
50				plat/arm/board/fvp_ve/fvp_ve_bl1_setup.c	\
51				lib/aarch32/arm32_aeabi_divmod.c		\
52				lib/aarch32/arm32_aeabi_divmod_a32.S		\
53				${FVP_VE_CPU_LIBS}					\
54				${DYN_CFG_SOURCES}
55
56BL2_SOURCES		+=	plat/arm/board/fvp_ve/fvp_ve_bl2_setup.c		\
57				lib/aarch32/arm32_aeabi_divmod.c		\
58				lib/aarch32/arm32_aeabi_divmod_a32.S		\
59				drivers/delay_timer/delay_timer.c		\
60				drivers/delay_timer/generic_delay_timer.c	\
61				drivers/cfi/v2m/v2m_flash.c			\
62				drivers/io/io_fip.c				\
63				drivers/io/io_memmap.c				\
64				drivers/io/io_storage.c				\
65				plat/arm/common/arm_bl2_setup.c			\
66				plat/arm/common/arm_err.c			\
67				plat/arm/board/fvp_ve/fvp_ve_err.c		\
68				plat/arm/common/arm_io_storage.c		\
69				plat/arm/common/fconf/arm_fconf_io.c		\
70				plat/arm/common/${ARCH}/arm_bl2_mem_params_desc.c	\
71				plat/arm/common/arm_image_load.c		\
72				common/desc_image_load.c			\
73				${DYN_CFG_SOURCES}				\
74				${FVP_VE_SECURITY_SOURCES}
75
76# Add the FDT_SOURCES and options for Dynamic Config (only for Unix env)
77ifdef UNIX_MK
78
79FDT_SOURCES		+=	plat/arm/board/fvp_ve/fdts/fvp_ve_fw_config.dts	\
80				plat/arm/board/fvp_ve/fdts/fvp_ve_tb_fw_config.dts
81
82FVP_FW_CONFIG		:=	${BUILD_PLAT}/fdts/fvp_ve_fw_config.dtb
83FVP_TB_FW_CONFIG	:=	${BUILD_PLAT}/fdts/fvp_ve_tb_fw_config.dtb
84
85# Add the FW_CONFIG to FIP and specify the same to certtool
86$(eval $(call TOOL_ADD_PAYLOAD,${FVP_FW_CONFIG},--fw-config,${FVP_FW_CONFIG}))
87# Add the TB_FW_CONFIG to FIP and specify the same to certtool
88$(eval $(call TOOL_ADD_PAYLOAD,${FVP_TB_FW_CONFIG},--tb-fw-config,${FVP_TB_FW_CONFIG}))
89
90FDT_SOURCES		+=	${FVP_HW_CONFIG_DTS}
91$(eval FVP_HW_CONFIG	:=	${BUILD_PLAT}/$(patsubst %.dts,%.dtb, \
92	fdts/$(notdir ${FVP_HW_CONFIG_DTS})))
93# Add the HW_CONFIG to FIP and specify the same to certtool
94$(eval $(call TOOL_ADD_PAYLOAD,${FVP_HW_CONFIG},--hw-config,${FVP_HW_CONFIG}))
95endif
96
97NEED_BL32 := yes
98
99# Modification of arm_common.mk
100
101# Process ARM_DISABLE_TRUSTED_WDOG flag
102# By default, Trusted Watchdog is always enabled unless SPIN_ON_BL1_EXIT is set
103ARM_DISABLE_TRUSTED_WDOG	:=	0
104ifeq (${SPIN_ON_BL1_EXIT}, 1)
105ARM_DISABLE_TRUSTED_WDOG	:=	1
106endif
107$(eval $(call assert_boolean,ARM_DISABLE_TRUSTED_WDOG))
108$(eval $(call add_define,ARM_DISABLE_TRUSTED_WDOG))
109
110# Use translation tables library v1 if using Cortex-A5
111ifdef ARM_CORTEX_A5
112ARM_XLAT_TABLES_LIB_V1		:=	1
113else
114ARM_XLAT_TABLES_LIB_V1		:=	0
115endif
116$(eval $(call assert_boolean,ARM_XLAT_TABLES_LIB_V1))
117$(eval $(call add_define,ARM_XLAT_TABLES_LIB_V1))
118
119ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
120	# Only use nonlpae version of xlatv1 otherwise use xlat v2
121	PLAT_BL_COMMON_SOURCES	+=	lib/xlat_tables/${ARCH}/nonlpae_tables.c
122else
123	include lib/xlat_tables_v2/xlat_tables.mk
124	PLAT_BL_COMMON_SOURCES	+=	${XLAT_TABLES_LIB_SRCS}
125endif
126
127# Firmware Configuration Framework sources
128include lib/fconf/fconf.mk
129
130BL1_SOURCES		+=	${FCONF_SOURCES} ${FCONF_DYN_SOURCES}
131BL2_SOURCES		+=	${FCONF_SOURCES} ${FCONF_DYN_SOURCES}
132
133# Add `libfdt` and Arm common helpers required for Dynamic Config
134include lib/libfdt/libfdt.mk
135
136DYN_CFG_SOURCES		+=	plat/arm/common/arm_dyn_cfg.c		\
137				plat/arm/common/arm_dyn_cfg_helpers.c
138
139DYN_CFG_SOURCES		+=	${FDT_WRAPPERS_SOURCES}
140