blob: f7eace83344dba31de7a76cd880e20012651a309 [file] [log] [blame]
Usama Arife97998f2018-11-30 15:43:56 +00001#
Chris Kaye9272152021-09-28 15:52:14 +01002# Copyright (c) 2019-2021, Arm Limited. All rights reserved.
Usama Arife97998f2018-11-30 15:43:56 +00003#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
Chris Kaye9272152021-09-28 15:52:14 +01007include common/fdt_wrappers.mk
8
Usama Arife97998f2018-11-30 15:43:56 +00009ifdef ARM_CORTEX_A5
10# Use the SP804 timer instead of the generic one
Madhukar Pappireddy7a554a12020-08-12 13:18:19 -050011USE_SP804_TIMER := 1
Usama Arife97998f2018-11-30 15:43:56 +000012BL2_SOURCES += drivers/arm/sp804/sp804_delay_timer.c
13endif
14
Alexei Fedorovcaa18022020-07-14 10:47:25 +010015# Include GICv2 driver files
16include drivers/arm/gic/v2/gicv2.mk
17
18FVP_VE_GIC_SOURCES := ${GICV2_SOURCES} \
19 plat/common/plat_gicv2.c \
Usama Arife97998f2018-11-30 15:43:56 +000020 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 \
Ambroise Vincentfa42c9e2019-07-04 14:58:45 +010045 plat/arm/board/fvp_ve/fvp_ve_err.c \
Usama Arife97998f2018-11-30 15:43:56 +000046 plat/arm/common/arm_io_storage.c \
Louis Mayencourt6b232d92020-02-28 16:57:30 +000047 plat/arm/common/fconf/arm_fconf_io.c \
Usama Arife97998f2018-11-30 15:43:56 +000048 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 \
Ambroise Vincentfa42c9e2019-07-04 14:58:45 +010067 plat/arm/board/fvp_ve/fvp_ve_err.c \
Usama Arife97998f2018-11-30 15:43:56 +000068 plat/arm/common/arm_io_storage.c \
Louis Mayencourt6b232d92020-02-28 16:57:30 +000069 plat/arm/common/fconf/arm_fconf_io.c \
Usama Arife97998f2018-11-30 15:43:56 +000070 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
Manish V Badarkhe64616a52020-05-31 08:53:40 +010079FDT_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
Usama Arife97998f2018-11-30 15:43:56 +000081
Manish V Badarkhe64616a52020-05-31 08:53:40 +010082FVP_FW_CONFIG := ${BUILD_PLAT}/fdts/fvp_ve_fw_config.dtb
83FVP_TB_FW_CONFIG := ${BUILD_PLAT}/fdts/fvp_ve_tb_fw_config.dtb
Usama Arife97998f2018-11-30 15:43:56 +000084
Manish V Badarkhe64616a52020-05-31 08:53:40 +010085# Add the FW_CONFIG to FIP and specify the same to certtool
Anders Dellien3f694742020-08-23 19:32:48 +010086$(eval $(call TOOL_ADD_PAYLOAD,${FVP_FW_CONFIG},--fw-config,${FVP_FW_CONFIG}))
Usama Arife97998f2018-11-30 15:43:56 +000087# Add the TB_FW_CONFIG to FIP and specify the same to certtool
Anders Dellien3f694742020-08-23 19:32:48 +010088$(eval $(call TOOL_ADD_PAYLOAD,${FVP_TB_FW_CONFIG},--tb-fw-config,${FVP_TB_FW_CONFIG}))
Usama Arife97998f2018-11-30 15:43:56 +000089
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
Anders Dellien3f694742020-08-23 19:32:48 +010094$(eval $(call TOOL_ADD_PAYLOAD,${FVP_HW_CONFIG},--hw-config,${FVP_HW_CONFIG}))
Usama Arife97998f2018-11-30 15:43:56 +000095endif
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
Usama Arife97998f2018-11-30 15:43:56 +0000119ifeq (${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
Louis Mayencourt5a15b2d2019-10-17 14:46:51 +0100127# Firmware Configuration Framework sources
128include lib/fconf/fconf.mk
129
Chris Kayb296ada2021-05-20 13:22:43 +0100130BL1_SOURCES += ${FCONF_SOURCES} ${FCONF_DYN_SOURCES}
131BL2_SOURCES += ${FCONF_SOURCES} ${FCONF_DYN_SOURCES}
132
Usama Arife97998f2018-11-30 15:43:56 +0000133# 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 \
Chris Kaye9272152021-09-28 15:52:14 +0100137 plat/arm/common/arm_dyn_cfg_helpers.c
Usama Arife97998f2018-11-30 15:43:56 +0000138
Chris Kaye9272152021-09-28 15:52:14 +0100139DYN_CFG_SOURCES += ${FDT_WRAPPERS_SOURCES}