xref: /rk3399_ARM-atf/plat/arm/board/tc/platform.mk (revision 123002f9171384d976d95935b7f566740d69cc68)
1# Copyright (c) 2021-2024, Arm Limited. All rights reserved.
2#
3# SPDX-License-Identifier: BSD-3-Clause
4#
5
6include common/fdt_wrappers.mk
7
8TARGET_FLAVOUR			:=	fvp
9# DPU with SCMI may not necessarily work, so allow its independence
10TC_DPU_USE_SCMI_CLK		:=	1
11# SCMI power domain control enable
12TC_SCMI_PD_CTRL_EN		:=	1
13
14# System setup
15CSS_USE_SCMI_SDS_DRIVER		:=	1
16HW_ASSISTED_COHERENCY		:=	1
17USE_COHERENT_MEM		:=	0
18GIC_ENABLE_V4_EXTN		:=      1
19GICV3_SUPPORT_GIC600		:=	1
20override NEED_BL2U		:=	no
21override ARM_PLAT_MT		:=	1
22
23# CPU setup
24ARM_ARCH_MINOR			:=	7
25BRANCH_PROTECTION		:=	1
26ENABLE_FEAT_MPAM		:=	1 # default is 2, optimise
27ENABLE_SVE_FOR_NS		:=	2 # to show we use it
28ENABLE_SVE_FOR_SWD		:=	1
29ENABLE_TRBE_FOR_NS		:=	1
30ENABLE_SYS_REG_TRACE_FOR_NS	:=	1
31ENABLE_FEAT_AMU			:=	1
32ENABLE_AMU_FCONF		:=	1
33ENABLE_AMU_AUXILIARY_COUNTERS	:=	1
34ENABLE_MPMM			:=	1
35ENABLE_MPMM_FCONF		:=	1
36
37CTX_INCLUDE_AARCH32_REGS	:=	0
38
39ifeq (${SPD},spmd)
40	SPMD_SPM_AT_SEL2	:=	1
41	ENABLE_FEAT_MTE2	:=	1
42	CTX_INCLUDE_PAUTH_REGS	:=	1
43endif
44
45# TC RESOLUTION - LIST OF VALID OPTIONS (this impacts only FVP)
46TC_RESOLUTION_OPTIONS		:= 	640x480p60 \
47					1920x1080p60
48# Set default to the 640x480p60 resolution mode
49TC_RESOLUTION ?= $(firstword $(TC_RESOLUTION_OPTIONS))
50
51# Check resolution option for FVP
52ifneq ($(filter ${TARGET_FLAVOUR}, fvp),)
53ifeq ($(filter ${TC_RESOLUTION}, ${TC_RESOLUTION_OPTIONS}),)
54        $(error TC_RESOLUTION is ${TC_RESOLUTION}, it must be: ${TC_RESOLUTION_OPTIONS})
55endif
56endif
57
58ifneq ($(shell expr $(TARGET_PLATFORM) \<= 1), 0)
59        $(warning Platform ${PLAT}$(TARGET_PLATFORM) is deprecated. \
60          Some of the features might not work as expected)
61endif
62
63ifeq ($(shell expr $(TARGET_PLATFORM) \<= 3), 0)
64        $(error TARGET_PLATFORM must be less than or equal to 3)
65endif
66
67ifeq ($(filter ${TARGET_FLAVOUR}, fvp fpga),)
68        $(error TARGET_FLAVOUR must be fvp or fpga)
69endif
70
71$(eval $(call add_defines, \
72	TARGET_PLATFORM \
73	TARGET_FLAVOUR_$(call uppercase,${TARGET_FLAVOUR}) \
74	TC_RESOLUTION_$(call uppercase,${TC_RESOLUTION}) \
75	TC_DPU_USE_SCMI_CLK \
76	TC_SCMI_PD_CTRL_EN \
77))
78
79CSS_LOAD_SCP_IMAGES	:=	1
80
81# Save DSU PMU registers on cluster off and restore them on cluster on
82PRESERVE_DSU_PMU_REGS		:= 1
83
84# Specify MHU type based on platform
85ifneq ($(filter ${TARGET_PLATFORM}, 2),)
86	PLAT_MHU_VERSION	:= 2
87else
88	PLAT_MHU_VERSION	:= 3
89endif
90
91# Include GICv3 driver files
92include drivers/arm/gic/v3/gicv3.mk
93
94ENT_GIC_SOURCES		:=	${GICV3_SOURCES}		\
95				plat/common/plat_gicv3.c	\
96				plat/arm/common/arm_gicv3.c
97
98TC_BASE	=	plat/arm/board/tc
99
100PLAT_INCLUDES		+=	-I${TC_BASE}/include/ \
101				-I${TC_BASE}/fdts/
102
103# CPU libraries for TARGET_PLATFORM=1
104ifeq (${TARGET_PLATFORM}, 1)
105TC_CPU_SOURCES	+=	lib/cpus/aarch64/cortex_a510.S \
106			lib/cpus/aarch64/cortex_a715.S \
107			lib/cpus/aarch64/cortex_x3.S
108endif
109
110# CPU libraries for TARGET_PLATFORM=2
111ifeq (${TARGET_PLATFORM}, 2)
112TC_CPU_SOURCES	+=	lib/cpus/aarch64/cortex_a520.S \
113			lib/cpus/aarch64/cortex_a720.S \
114			lib/cpus/aarch64/cortex_x4.S
115endif
116
117# CPU libraries for TARGET_PLATFORM=3
118ifeq (${TARGET_PLATFORM}, 3)
119TC_CPU_SOURCES	+=	lib/cpus/aarch64/cortex_a520.S \
120			lib/cpus/aarch64/cortex_a725.S \
121			lib/cpus/aarch64/cortex_x925.S
122endif
123
124INTERCONNECT_SOURCES	:=	${TC_BASE}/tc_interconnect.c
125
126PLAT_BL_COMMON_SOURCES	+=	${TC_BASE}/tc_plat.c	\
127				${TC_BASE}/include/tc_helpers.S
128
129BL1_SOURCES		+=	${INTERCONNECT_SOURCES}	\
130				${TC_CPU_SOURCES}	\
131				${TC_BASE}/tc_trusted_boot.c	\
132				${TC_BASE}/tc_err.c	\
133				drivers/arm/sbsa/sbsa.c
134
135BL2_SOURCES		+=	${TC_BASE}/tc_security.c	\
136				${TC_BASE}/tc_err.c		\
137				${TC_BASE}/tc_trusted_boot.c		\
138				${TC_BASE}/tc_bl2_setup.c		\
139				lib/utils/mem_region.c			\
140				drivers/arm/tzc/tzc400.c		\
141				plat/arm/common/arm_tzc400.c		\
142				plat/arm/common/arm_nor_psci_mem_protect.c
143
144BL31_SOURCES		+=	${INTERCONNECT_SOURCES}	\
145				${TC_CPU_SOURCES}	\
146				${ENT_GIC_SOURCES}			\
147				${TC_BASE}/tc_bl31_setup.c	\
148				${TC_BASE}/tc_topology.c	\
149				lib/fconf/fconf.c			\
150				lib/fconf/fconf_dyn_cfg_getter.c	\
151				drivers/arm/css/dsu/dsu.c			\
152				drivers/cfi/v2m/v2m_flash.c		\
153				lib/utils/mem_region.c			\
154				plat/arm/common/arm_nor_psci_mem_protect.c	\
155				drivers/arm/sbsa/sbsa.c
156
157BL31_SOURCES		+=	${FDT_WRAPPERS_SOURCES}
158
159# Add the FDT_SOURCES and options for Dynamic Config
160FDT_SOURCES		+=	${TC_BASE}/fdts/${PLAT}_fw_config.dts	\
161				${TC_BASE}/fdts/${PLAT}_tb_fw_config.dts \
162				${TC_BASE}/fdts/${PLAT}_nt_fw_config.dts
163FW_CONFIG		:=	${BUILD_PLAT}/fdts/${PLAT}_fw_config.dtb
164TB_FW_CONFIG		:=	${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb
165FVP_NT_FW_CONFIG	:=	${BUILD_PLAT}/fdts/${PLAT}_nt_fw_config.dtb
166
167# Add the FW_CONFIG to FIP and specify the same to certtool
168$(eval $(call TOOL_ADD_PAYLOAD,${FW_CONFIG},--fw-config,${FW_CONFIG}))
169# Add the TB_FW_CONFIG to FIP and specify the same to certtool
170$(eval $(call TOOL_ADD_PAYLOAD,${TB_FW_CONFIG},--tb-fw-config,${TB_FW_CONFIG}))
171# Add the NT_FW_CONFIG to FIP and specify the same to certtool
172$(eval $(call TOOL_ADD_PAYLOAD,${FVP_NT_FW_CONFIG},--nt-fw-config,${FVP_NT_FW_CONFIG}))
173
174ifeq (${SPD},spmd)
175ifeq ($(ARM_SPMC_MANIFEST_DTS),)
176ARM_SPMC_MANIFEST_DTS	:=	${TC_BASE}/fdts/${PLAT}_spmc_test_manifest.dts
177endif
178
179FDT_SOURCES		+=	${ARM_SPMC_MANIFEST_DTS}
180TC_TOS_FW_CONFIG	:=	${BUILD_PLAT}/fdts/$(notdir $(basename ${ARM_SPMC_MANIFEST_DTS})).dtb
181
182# Add the TOS_FW_CONFIG to FIP and specify the same to certtool
183$(eval $(call TOOL_ADD_PAYLOAD,${TC_TOS_FW_CONFIG},--tos-fw-config,${TC_TOS_FW_CONFIG}))
184endif
185
186#Device tree
187TC_HW_CONFIG_DTS	:=	fdts/${PLAT}${TARGET_PLATFORM}.dts
188TC_HW_CONFIG		:=	${BUILD_PLAT}/fdts/${PLAT}.dtb
189FDT_SOURCES		+=	${TC_HW_CONFIG_DTS}
190$(eval TC_HW_CONFIG	:=	${BUILD_PLAT}/$(patsubst %.dts,%.dtb,$(TC_HW_CONFIG_DTS)))
191
192# Add the HW_CONFIG to FIP and specify the same to certtool
193$(eval $(call TOOL_ADD_PAYLOAD,${TC_HW_CONFIG},--hw-config,${TC_HW_CONFIG}))
194
195# Include Measured Boot makefile before any Crypto library makefile.
196# Crypto library makefile may need default definitions of Measured Boot build
197# flags present in Measured Boot makefile.
198$(info Including rse_comms.mk)
199ifeq (${MEASURED_BOOT},1)
200        $(info Including rse_comms.mk)
201        include drivers/arm/rse/rse_comms.mk
202
203	BL1_SOURCES	+=	${RSE_COMMS_SOURCES}
204	BL2_SOURCES	+=	${RSE_COMMS_SOURCES}
205	PLAT_INCLUDES	+=	-Iinclude/lib/psa
206
207    ifeq (${DICE_PROTECTION_ENVIRONMENT},1)
208        $(info Including qcbor.mk)
209        include drivers/measured_boot/rse/qcbor.mk
210        $(info Including dice_prot_env.mk)
211        include drivers/measured_boot/rse/dice_prot_env.mk
212
213	BL1_SOURCES	+=	${QCBOR_SOURCES} \
214				${DPE_SOURCES} \
215				plat/arm/board/tc/tc_common_dpe.c \
216				plat/arm/board/tc/tc_bl1_dpe.c \
217				lib/psa/dice_protection_environment.c \
218				drivers/arm/css/sds/sds.c \
219				drivers/delay_timer/delay_timer.c \
220				drivers/delay_timer/generic_delay_timer.c
221
222	BL2_SOURCES	+=	${QCBOR_SOURCES} \
223				${DPE_SOURCES} \
224				plat/arm/board/tc/tc_common_dpe.c \
225				plat/arm/board/tc/tc_bl2_dpe.c \
226				lib/psa/dice_protection_environment.c
227
228	PLAT_INCLUDES	+=	-I${QCBOR_INCLUDES} \
229				-Iinclude/lib/dice
230    else
231        $(info Including rse_measured_boot.mk)
232        include drivers/measured_boot/rse/rse_measured_boot.mk
233
234	BL1_SOURCES	+=	${MEASURED_BOOT_SOURCES} \
235				plat/arm/board/tc/tc_common_measured_boot.c \
236				plat/arm/board/tc/tc_bl1_measured_boot.c \
237				lib/psa/measured_boot.c
238
239	BL2_SOURCES		+=	${MEASURED_BOOT_SOURCES} \
240				plat/arm/board/tc/tc_common_measured_boot.c \
241				plat/arm/board/tc/tc_bl2_measured_boot.c \
242				lib/psa/measured_boot.c
243    endif
244endif
245
246ifeq (${TRNG_SUPPORT},1)
247	BL31_SOURCES	+=	plat/arm/board/tc/tc_trng.c
248endif
249
250ifneq (${PLATFORM_TEST},)
251    # Add this include as first, before arm_common.mk. This is necessary
252    # because arm_common.mk builds Mbed TLS, and platform_test.mk can
253    # change the list of Mbed TLS files that are to be compiled
254    # (LIBMBEDTLS_SRCS).
255    include plat/arm/board/tc/platform_test.mk
256endif
257
258
259include plat/arm/common/arm_common.mk
260include plat/arm/css/common/css_common.mk
261include plat/arm/soc/common/soc_css.mk
262include plat/arm/board/common/board_common.mk
263