xref: /rk3399_ARM-atf/plat/arm/board/tc/platform.mk (revision db5fe4f4934208ac8f8ae9283df2fbac6066e24e)
1# Copyright (c) 2021-2025, 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_SME_FOR_NS		:=	2
30ENABLE_SME2_FOR_NS		:=	2
31ENABLE_SME_FOR_SWD		:=	1
32ENABLE_TRBE_FOR_NS		:=	1
33ENABLE_SYS_REG_TRACE_FOR_NS	:=	1
34ENABLE_FEAT_AMU			:=	1
35ENABLE_AMU_FCONF		:=	1
36ENABLE_AMU_AUXILIARY_COUNTERS	:=	1
37ENABLE_MPMM			:=	1
38ENABLE_MPMM_FCONF		:=	1
39ENABLE_FEAT_MTE2		:=	2
40ENABLE_SPE_FOR_NS		:=	3
41ENABLE_FEAT_TCR2		:=	3
42
43CTX_INCLUDE_AARCH32_REGS	:=	0
44
45ifeq (${SPD},spmd)
46	SPMD_SPM_AT_SEL2	:=	1
47	CTX_INCLUDE_PAUTH_REGS	:=	1
48endif
49
50# TC RESOLUTION - LIST OF VALID OPTIONS (this impacts only FVP)
51TC_RESOLUTION_OPTIONS		:= 	640x480p60 \
52					1920x1080p60
53# Set default to the 640x480p60 resolution mode
54TC_RESOLUTION ?= $(firstword $(TC_RESOLUTION_OPTIONS))
55
56# Check resolution option for FVP
57ifneq ($(filter ${TARGET_FLAVOUR}, fvp),)
58ifeq ($(filter ${TC_RESOLUTION}, ${TC_RESOLUTION_OPTIONS}),)
59        $(error TC_RESOLUTION is ${TC_RESOLUTION}, it must be: ${TC_RESOLUTION_OPTIONS})
60endif
61endif
62
63ifneq ($(shell expr $(TARGET_PLATFORM) \<= 1), 0)
64        $(error Platform ${PLAT}$(TARGET_PLATFORM) is no longer available.)
65endif
66
67ifneq ($(shell expr $(TARGET_PLATFORM) = 2), 0)
68        $(warning Platform ${PLAT}$(TARGET_PLATFORM) is deprecated. \
69          Some of the features might not work as expected)
70endif
71
72ifeq ($(shell expr $(TARGET_PLATFORM) \<= 4), 0)
73        $(error TARGET_PLATFORM must be less than or equal to 4)
74endif
75
76ifeq ($(filter ${TARGET_FLAVOUR}, fvp fpga),)
77        $(error TARGET_FLAVOUR must be fvp or fpga)
78endif
79
80# Support for loading FS Image to DRAM
81TC_FPGA_FS_IMG_IN_RAM := 0
82
83# Support Loading of FIP image to DRAM
84TC_FPGA_FIP_IMG_IN_RAM := 0
85
86# Use simple panel instead of vencoder with DPU
87TC_DPU_USE_SIMPLE_PANEL := 0
88
89$(eval $(call add_defines, \
90	TARGET_PLATFORM \
91	TARGET_FLAVOUR_$(call uppercase,${TARGET_FLAVOUR}) \
92	TC_RESOLUTION_$(call uppercase,${TC_RESOLUTION}) \
93	TC_DPU_USE_SCMI_CLK \
94	TC_SCMI_PD_CTRL_EN \
95	TC_FPGA_FS_IMG_IN_RAM \
96	TC_FPGA_FIP_IMG_IN_RAM \
97	TC_DPU_USE_SIMPLE_PANEL \
98))
99
100CSS_LOAD_SCP_IMAGES	:=	1
101
102# Save DSU PMU registers on cluster off and restore them on cluster on
103PRESERVE_DSU_PMU_REGS		:= 1
104
105# Specify MHU type based on platform
106ifneq ($(filter ${TARGET_PLATFORM}, 2),)
107	PLAT_MHU_VERSION	:= 2
108else
109	PLAT_MHU_VERSION	:= 3
110endif
111
112# Include GICv3 driver files
113include drivers/arm/gic/v3/gicv3.mk
114
115ENT_GIC_SOURCES		:=	${GICV3_SOURCES}		\
116				plat/common/plat_gicv3.c	\
117				plat/arm/common/arm_gicv3.c
118
119TC_BASE	=	plat/arm/board/tc
120
121PLAT_INCLUDES		+=	-I${TC_BASE}/include/ \
122				-I${TC_BASE}/fdts/
123
124# CPU libraries for TARGET_PLATFORM=1
125ifeq (${TARGET_PLATFORM}, 1)
126TC_CPU_SOURCES	+=	lib/cpus/aarch64/cortex_a510.S \
127			lib/cpus/aarch64/cortex_a715.S \
128			lib/cpus/aarch64/cortex_x3.S
129endif
130
131# CPU libraries for TARGET_PLATFORM=2
132ifeq (${TARGET_PLATFORM}, 2)
133ERRATA_A520_2938996	:=	1
134ERRATA_X4_2726228	:=	1
135
136TC_CPU_SOURCES	+=	lib/cpus/aarch64/cortex_a520.S \
137			lib/cpus/aarch64/cortex_a720.S \
138			lib/cpus/aarch64/cortex_x4.S
139endif
140
141# CPU libraries for TARGET_PLATFORM=3
142ifeq (${TARGET_PLATFORM}, 3)
143ERRATA_A520_2938996	:=	1
144
145TC_CPU_SOURCES	+=	lib/cpus/aarch64/cortex_a520.S \
146			lib/cpus/aarch64/cortex_a725.S \
147			lib/cpus/aarch64/cortex_x925.S
148endif
149
150# CPU libraries for TARGET_PLATFORM=4
151ifeq (${TARGET_PLATFORM}, 4)
152FEAT_PABANDON	:=	1
153# prevent CME related wakups
154ERRATA_SME_POWER_DOWN := 1
155TC_CPU_SOURCES	+=	lib/cpus/aarch64/cortex_gelas.S \
156			lib/cpus/aarch64/nevis.S \
157			lib/cpus/aarch64/travis.S
158endif
159
160INTERCONNECT_SOURCES	:=	${TC_BASE}/tc_interconnect.c \
161				plat/arm/common/arm_ni.c
162
163PLAT_BL_COMMON_SOURCES	+=	${TC_BASE}/tc_plat.c	\
164				${TC_BASE}/include/tc_helpers.S
165
166
167ifneq (${ENABLE_STACK_PROTECTOR},0)
168PLAT_BL_COMMON_SOURCES	+=	${TC_BASE}/tc_stack_protector.c
169endif
170
171BL1_SOURCES		+=	${INTERCONNECT_SOURCES}	\
172				${TC_CPU_SOURCES}	\
173				${TC_BASE}/tc_trusted_boot.c	\
174				${TC_BASE}/tc_bl1_setup.c \
175				${TC_BASE}/tc_err.c	\
176				drivers/arm/sbsa/sbsa.c
177
178BL2_SOURCES		+=	${TC_BASE}/tc_security.c	\
179				${TC_BASE}/tc_err.c		\
180				${TC_BASE}/tc_trusted_boot.c		\
181				${TC_BASE}/tc_bl2_setup.c		\
182				lib/utils/mem_region.c			\
183				drivers/arm/tzc/tzc400.c		\
184				plat/arm/common/arm_nor_psci_mem_protect.c
185
186ifeq ($(shell test $(TARGET_PLATFORM) -le 2; echo $$?),0)
187BL2_SOURCES		+=	plat/arm/common/arm_tzc400.c
188endif
189
190BL31_SOURCES		+=	${INTERCONNECT_SOURCES}	\
191				${TC_CPU_SOURCES}	\
192				${ENT_GIC_SOURCES}			\
193				${TC_BASE}/tc_bl31_setup.c	\
194				${TC_BASE}/tc_topology.c	\
195				lib/fconf/fconf.c			\
196				lib/fconf/fconf_dyn_cfg_getter.c	\
197				drivers/arm/css/dsu/dsu.c			\
198				drivers/cfi/v2m/v2m_flash.c		\
199				lib/utils/mem_region.c			\
200				plat/arm/common/arm_nor_psci_mem_protect.c	\
201				drivers/arm/sbsa/sbsa.c
202
203BL31_SOURCES		+=	${FDT_WRAPPERS_SOURCES}
204
205# Add the FDT_SOURCES and options for Dynamic Config
206FDT_SOURCES		+=	${TC_BASE}/fdts/${PLAT}_fw_config.dts	\
207				${TC_BASE}/fdts/${PLAT}_tb_fw_config.dts \
208				${TC_BASE}/fdts/${PLAT}_nt_fw_config.dts
209FW_CONFIG		:=	${BUILD_PLAT}/fdts/${PLAT}_fw_config.dtb
210TB_FW_CONFIG		:=	${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb
211FVP_NT_FW_CONFIG	:=	${BUILD_PLAT}/fdts/${PLAT}_nt_fw_config.dtb
212
213# Add the FW_CONFIG to FIP and specify the same to certtool
214$(eval $(call TOOL_ADD_PAYLOAD,${FW_CONFIG},--fw-config,${FW_CONFIG}))
215# Add the TB_FW_CONFIG to FIP and specify the same to certtool
216$(eval $(call TOOL_ADD_PAYLOAD,${TB_FW_CONFIG},--tb-fw-config,${TB_FW_CONFIG}))
217# Add the NT_FW_CONFIG to FIP and specify the same to certtool
218$(eval $(call TOOL_ADD_PAYLOAD,${FVP_NT_FW_CONFIG},--nt-fw-config,${FVP_NT_FW_CONFIG}))
219
220ifeq (${SPD},spmd)
221ifeq ($(ARM_SPMC_MANIFEST_DTS),)
222ARM_SPMC_MANIFEST_DTS	:=	${TC_BASE}/fdts/${PLAT}_spmc_test_manifest.dts
223endif
224
225FDT_SOURCES		+=	${ARM_SPMC_MANIFEST_DTS}
226TC_TOS_FW_CONFIG	:=	${BUILD_PLAT}/fdts/$(notdir $(basename ${ARM_SPMC_MANIFEST_DTS})).dtb
227
228# Add the TOS_FW_CONFIG to FIP and specify the same to certtool
229$(eval $(call TOOL_ADD_PAYLOAD,${TC_TOS_FW_CONFIG},--tos-fw-config,${TC_TOS_FW_CONFIG}))
230endif
231
232#Device tree
233TC_HW_CONFIG_DTS	:=	fdts/${PLAT}${TARGET_PLATFORM}.dts
234TC_HW_CONFIG		:=	${BUILD_PLAT}/fdts/${PLAT}.dtb
235FDT_SOURCES		+=	${TC_HW_CONFIG_DTS}
236$(eval TC_HW_CONFIG	:=	${BUILD_PLAT}/$(patsubst %.dts,%.dtb,$(TC_HW_CONFIG_DTS)))
237
238# Add the HW_CONFIG to FIP and specify the same to certtool
239$(eval $(call TOOL_ADD_PAYLOAD,${TC_HW_CONFIG},--hw-config,${TC_HW_CONFIG}))
240
241$(info Including rse_comms.mk)
242include drivers/arm/rse/rse_comms.mk
243
244BL1_SOURCES	+=	${RSE_COMMS_SOURCES}
245BL2_SOURCES	+=	${RSE_COMMS_SOURCES}
246BL31_SOURCES	+=	${RSE_COMMS_SOURCES}
247
248# Include Measured Boot makefile before any Crypto library makefile.
249# Crypto library makefile may need default definitions of Measured Boot build
250# flags present in Measured Boot makefile.
251ifeq (${MEASURED_BOOT},1)
252    ifeq (${DICE_PROTECTION_ENVIRONMENT},1)
253        $(info Including qcbor.mk)
254        include drivers/measured_boot/rse/qcbor.mk
255        $(info Including dice_prot_env.mk)
256        include drivers/measured_boot/rse/dice_prot_env.mk
257
258	BL1_SOURCES	+=	${QCBOR_SOURCES} \
259				${DPE_SOURCES} \
260				plat/arm/board/tc/tc_common_dpe.c \
261				plat/arm/board/tc/tc_bl1_dpe.c \
262				lib/psa/dice_protection_environment.c \
263				drivers/arm/css/sds/sds.c \
264				drivers/delay_timer/delay_timer.c \
265				drivers/delay_timer/generic_delay_timer.c
266
267	BL2_SOURCES	+=	${QCBOR_SOURCES} \
268				${DPE_SOURCES} \
269				plat/arm/board/tc/tc_common_dpe.c \
270				plat/arm/board/tc/tc_bl2_dpe.c \
271				lib/psa/dice_protection_environment.c
272
273	PLAT_INCLUDES	+=	-I${QCBOR_INCLUDES} \
274				-Iinclude/lib/dice
275    else
276        $(info Including rse_measured_boot.mk)
277        include drivers/measured_boot/rse/rse_measured_boot.mk
278
279	BL1_SOURCES	+=	${MEASURED_BOOT_SOURCES} \
280				plat/arm/board/tc/tc_common_measured_boot.c \
281				plat/arm/board/tc/tc_bl1_measured_boot.c \
282				lib/psa/measured_boot.c
283
284	BL2_SOURCES		+=	${MEASURED_BOOT_SOURCES} \
285				plat/arm/board/tc/tc_common_measured_boot.c \
286				plat/arm/board/tc/tc_bl2_measured_boot.c \
287				lib/psa/measured_boot.c
288    endif
289endif
290
291ifeq (${TRNG_SUPPORT},1)
292	BL31_SOURCES	+=	plat/arm/board/tc/tc_trng.c
293endif
294
295ifneq (${PLATFORM_TEST},)
296    # Add this include as first, before arm_common.mk. This is necessary
297    # because arm_common.mk builds Mbed TLS, and platform_test.mk can
298    # change the list of Mbed TLS files that are to be compiled
299    # (LIBMBEDTLS_SRCS).
300    include plat/arm/board/tc/platform_test.mk
301endif
302
303
304include plat/arm/common/arm_common.mk
305include plat/arm/css/common/css_common.mk
306include plat/arm/board/common/board_common.mk
307