xref: /rk3399_ARM-atf/plat/arm/board/a5ds/platform.mk (revision 06f3c7058c42a9f1a9f7df75ea2de71a000855e8)
1#
2# Copyright (c) 2019-2025, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7# Firmware Configuration Framework sources
8include common/fdt_wrappers.mk
9include lib/fconf/fconf.mk
10
11BL1_SOURCES		+=	${FCONF_SOURCES} ${FCONF_DYN_SOURCES}
12BL2_SOURCES		+=	${FCONF_SOURCES} ${FCONF_DYN_SOURCES}
13
14# Add `libfdt` and Arm common helpers required for Dynamic Config
15include lib/libfdt/libfdt.mk
16
17DYN_CFG_SOURCES		+=	plat/arm/common/arm_dyn_cfg.c		\
18				plat/arm/common/arm_dyn_cfg_helpers.c
19
20DYN_CFG_SOURCES		+=	${FDT_WRAPPERS_SOURCES}
21
22USE_GIC_DRIVER		:=	2
23
24A5DS_SECURITY_SOURCES	:=	plat/arm/board/a5ds/a5ds_security.c
25
26PLAT_INCLUDES		:=	-Iplat/arm/board/a5ds/include
27
28PLAT_BL_COMMON_SOURCES	:=	drivers/arm/pl011/${ARCH}/pl011_console.S	\
29				plat/arm/board/a5ds/a5ds_common.c		\
30				plat/arm/common/${ARCH}/arm_helpers.S		\
31				plat/arm/common/arm_common.c			\
32				plat/arm/common/arm_console.c			\
33				plat/arm/board/common/${ARCH}/board_arm_helpers.S
34
35A5DS_CPU_LIBS		:=	lib/cpus/aarch32/cortex_a5.S
36
37BL1_SOURCES		+=	drivers/io/io_fip.c				\
38				drivers/io/io_memmap.c				\
39				drivers/io/io_storage.c				\
40				drivers/cfi/v2m/v2m_flash.c			\
41				plat/arm/common/arm_bl1_setup.c			\
42				plat/arm/common/arm_err.c			\
43				plat/arm/board/a5ds/a5ds_err.c			\
44				plat/arm/common/arm_io_storage.c		\
45				plat/arm/common/fconf/arm_fconf_io.c		\
46				plat/arm/board/a5ds/${ARCH}/a5ds_helpers.S	\
47				plat/arm/board/a5ds/a5ds_bl1_setup.c		\
48				lib/aarch32/arm32_aeabi_divmod.c		\
49				lib/aarch32/arm32_aeabi_divmod_a32.S		\
50				${A5DS_CPU_LIBS}				\
51				${DYN_CFG_SOURCES}
52
53BL2_SOURCES		+=	lib/aarch32/arm32_aeabi_divmod.c		\
54				lib/aarch32/arm32_aeabi_divmod_a32.S		\
55				drivers/delay_timer/delay_timer.c		\
56				drivers/delay_timer/generic_delay_timer.c	\
57				drivers/cfi/v2m/v2m_flash.c			\
58				drivers/io/io_fip.c				\
59				drivers/io/io_memmap.c				\
60				drivers/io/io_storage.c				\
61				plat/arm/board/a5ds/a5ds_bl2_setup.c		\
62				plat/arm/common/arm_bl2_setup.c			\
63				plat/arm/common/arm_err.c			\
64				plat/arm/board/a5ds/a5ds_err.c			\
65				plat/arm/common/arm_io_storage.c		\
66				plat/arm/common/fconf/arm_fconf_io.c		\
67				plat/arm/common/${ARCH}/arm_bl2_mem_params_desc.c	\
68				plat/arm/common/arm_image_load.c		\
69				common/desc_image_load.c			\
70				${DYN_CFG_SOURCES}				\
71				${A5DS_SECURITY_SOURCES}
72
73# Add the FDT_SOURCES and options for Dynamic Config
74FW_CONFIG	:=      ${BUILD_PLAT}/fdts/a5ds_fw_config.dtb
75TB_FW_CONFIG	:=	${BUILD_PLAT}/fdts/a5ds_tb_fw_config.dtb
76
77# Add the TB_FW_CONFIG to FIP and specify the same to certtool
78$(eval $(call TOOL_ADD_PAYLOAD,${TB_FW_CONFIG},--tb-fw-config,${TB_FW_CONFIG}))
79# Add the FW_CONFIG to FIP and specify the same to certtool
80$(eval $(call TOOL_ADD_PAYLOAD,${FW_CONFIG},--fw-config,${FW_CONFIG}))
81
82$(eval FVP_HW_CONFIG	:=	${BUILD_PLAT}/$(patsubst %.dts,%.dtb, \
83	fdts/$(notdir ${FVP_HW_CONFIG_DTS})))
84# Add the HW_CONFIG to FIP and specify the same to certtool
85$(eval $(call TOOL_ADD_PAYLOAD,${FVP_HW_CONFIG},--hw-config,${FVP_HW_CONFIG}))
86
87FDT_SOURCES		+=	plat/arm/board/a5ds/fdts/a5ds_fw_config.dts \
88				plat/arm/board/a5ds/fdts/a5ds_tb_fw_config.dts \
89					${FVP_HW_CONFIG_DTS}
90
91NEED_BL32 := yes
92
93ifeq (${AARCH32_SP},none)
94    $(error Variable AARCH32_SP has to be set for AArch32)
95endif
96
97ARM_DISABLE_TRUSTED_WDOG	:=	1
98
99PLAT_BL_COMMON_SOURCES	+=	lib/xlat_tables/aarch32/nonlpae_tables.c
100
101# Use translation tables library v1 when using Cortex-A5
102ARM_XLAT_TABLES_LIB_V1		:=	1
103$(eval $(call assert_boolean,ARM_XLAT_TABLES_LIB_V1))
104$(eval $(call add_define,ARM_XLAT_TABLES_LIB_V1))
105
106$(eval $(call assert_boolean,ARM_DISABLE_TRUSTED_WDOG))
107$(eval $(call add_define,ARM_DISABLE_TRUSTED_WDOG))
108