platform.mk 11.5 KB
Newer Older
1
#
johpow01's avatar
johpow01 committed
2
# Copyright (c) 2013-2021, Arm Limited and Contributors. All rights reserved.
3
#
dp-arm's avatar
dp-arm committed
4
# SPDX-License-Identifier: BSD-3-Clause
5
6
#

7
8
# Use the GICv3 driver on the FVP by default
FVP_USE_GIC_DRIVER	:= FVP_GICV3
9
10
11
12

# Default cluster count for FVP
FVP_CLUSTER_COUNT	:= 2

13
14
15
# Default number of CPUs per cluster on FVP
FVP_MAX_CPUS_PER_CLUSTER	:= 4

16
17
18
# Default number of threads per CPU on FVP
FVP_MAX_PE_PER_CPU	:= 1

19
20
21
22
# Disable redistributor frame of inactive/fused CPU cores by marking it as read
# only; enable redistributor frames of all CPU cores by default.
FVP_GICR_REGION_PROTECTION		:= 0

23
24
FVP_DT_PREFIX		:= fvp-base-gicv3-psci

25
26
27
# The FVP platform depends on this macro to build with correct GIC driver.
$(eval $(call add_define,FVP_USE_GIC_DRIVER))

28
# Pass FVP_CLUSTER_COUNT to the build system.
29
$(eval $(call add_define,FVP_CLUSTER_COUNT))
30

31
32
33
# Pass FVP_MAX_CPUS_PER_CLUSTER to the build system.
$(eval $(call add_define,FVP_MAX_CPUS_PER_CLUSTER))

34
35
36
# Pass FVP_MAX_PE_PER_CPU to the build system.
$(eval $(call add_define,FVP_MAX_PE_PER_CPU))

37
38
39
# Pass FVP_GICR_REGION_PROTECTION to the build system.
$(eval $(call add_define,FVP_GICR_REGION_PROTECTION))

40
41
42
43
44
45
46
47
# Sanity check the cluster count and if FVP_CLUSTER_COUNT <= 2,
# choose the CCI driver , else the CCN driver
ifeq ($(FVP_CLUSTER_COUNT), 0)
$(error "Incorrect cluster count specified for FVP port")
else ifeq ($(FVP_CLUSTER_COUNT),$(filter $(FVP_CLUSTER_COUNT),1 2))
FVP_INTERCONNECT_DRIVER := FVP_CCI
else
FVP_INTERCONNECT_DRIVER := FVP_CCN
48
49
endif

50
51
$(eval $(call add_define,FVP_INTERCONNECT_DRIVER))

52
# Choose the GIC sources depending upon the how the FVP will be invoked
53
ifeq (${FVP_USE_GIC_DRIVER}, FVP_GICV3)
54

55
56
# The GIC model (GIC-600 or GIC-500) will be detected at runtime
GICV3_SUPPORT_GIC600		:=	1
57
58
59
60
61
62
GICV3_OVERRIDE_DISTIF_PWR_OPS	:=	1

# Include GICv3 driver files
include drivers/arm/gic/v3/gicv3.mk

FVP_GIC_SOURCES		:=	${GICV3_SOURCES}			\
63
64
				plat/common/plat_gicv3.c		\
				plat/arm/common/arm_gicv3.c
65

66
67
68
69
	ifeq ($(filter 1,${BL2_AT_EL3} ${RESET_TO_BL31} ${RESET_TO_SP_MIN}),)
		FVP_GIC_SOURCES += plat/arm/board/fvp/fvp_gicv3.c
	endif

70
else ifeq (${FVP_USE_GIC_DRIVER}, FVP_GICV2)
71
72
73
74
75

# No GICv4 extension
GIC_ENABLE_V4_EXTN	:=	0
$(eval $(call add_define,GIC_ENABLE_V4_EXTN))

76
77
# Include GICv2 driver files
include drivers/arm/gic/v2/gicv2.mk
78

79
FVP_GIC_SOURCES		:=	${GICV2_SOURCES}			\
80
81
				plat/common/plat_gicv2.c		\
				plat/arm/common/arm_gicv2.c
82
83

FVP_DT_PREFIX		:=	fvp-base-gicv2-psci
84
85
86
87
else
$(error "Incorrect GIC driver chosen on FVP port")
endif

88
ifeq (${FVP_INTERCONNECT_DRIVER}, FVP_CCI)
89
FVP_INTERCONNECT_SOURCES	:= 	drivers/arm/cci/cci.c
90
91
92
93
94
95
else ifeq (${FVP_INTERCONNECT_DRIVER}, FVP_CCN)
FVP_INTERCONNECT_SOURCES	:= 	drivers/arm/ccn/ccn.c		\
					plat/arm/common/arm_ccn.c
else
$(error "Incorrect CCN driver chosen on FVP port")
endif
96

97
FVP_SECURITY_SOURCES	:=	drivers/arm/tzc/tzc400.c		\
98
99
100
				plat/arm/board/fvp/fvp_security.c	\
				plat/arm/common/arm_tzc400.c

101

102
PLAT_INCLUDES		:=	-Iplat/arm/board/fvp/include
103

104

105
PLAT_BL_COMMON_SOURCES	:=	plat/arm/board/fvp/fvp_common.c
106

107
108
109
FVP_CPU_LIBS		:=	lib/cpus/${ARCH}/aem_generic.S

ifeq (${ARCH}, aarch64)
110

111
112
# select a different set of CPU files, depending on whether we compile for
# hardware assisted coherency cores or not
113
ifeq (${HW_ASSISTED_COHERENCY}, 0)
114
# Cores used without DSU
115
	FVP_CPU_LIBS	+=	lib/cpus/aarch64/cortex_a35.S			\
116
117
				lib/cpus/aarch64/cortex_a53.S			\
				lib/cpus/aarch64/cortex_a57.S			\
118
				lib/cpus/aarch64/cortex_a72.S			\
119
120
				lib/cpus/aarch64/cortex_a73.S
else
121
# Cores used with DSU only
122
	ifeq (${CTX_INCLUDE_AARCH32_REGS}, 0)
123
	# AArch64-only cores
124
125
		FVP_CPU_LIBS	+=	lib/cpus/aarch64/cortex_a76.S		\
					lib/cpus/aarch64/cortex_a76ae.S		\
126
					lib/cpus/aarch64/cortex_a77.S		\
127
					lib/cpus/aarch64/cortex_a78.S		\
128
					lib/cpus/aarch64/neoverse_n_common.S	\
129
					lib/cpus/aarch64/neoverse_n1.S		\
130
					lib/cpus/aarch64/neoverse_n2.S		\
131
					lib/cpus/aarch64/neoverse_e1.S		\
132
					lib/cpus/aarch64/neoverse_v1.S		\
133
					lib/cpus/aarch64/cortex_a78_ae.S	\
johpow01's avatar
johpow01 committed
134
					lib/cpus/aarch64/cortex_klein.S		\
Jimmy Brisson's avatar
Jimmy Brisson committed
135
					lib/cpus/aarch64/cortex_matterhorn.S	\
johpow01's avatar
johpow01 committed
136
					lib/cpus/aarch64/cortex_makalu.S	\
johpow01's avatar
johpow01 committed
137
					lib/cpus/aarch64/cortex_makalu_elp.S	\
138
					lib/cpus/aarch64/cortex_a65.S		\
Bipin Ravi's avatar
Bipin Ravi committed
139
140
					lib/cpus/aarch64/cortex_a65ae.S		\
					lib/cpus/aarch64/cortex_a78c.S
141
	endif
142
143
144
	# AArch64/AArch32 cores
	FVP_CPU_LIBS	+=	lib/cpus/aarch64/cortex_a55.S		\
				lib/cpus/aarch64/cortex_a75.S
145
endif
146

147
148
else
FVP_CPU_LIBS		+=	lib/cpus/aarch32/cortex_a32.S
149
endif
150

151
152
BL1_SOURCES		+=	drivers/arm/smmu/smmu_v3.c			\
				drivers/arm/sp805/sp805.c			\
153
				drivers/delay_timer/delay_timer.c		\
154
				drivers/io/io_semihosting.c			\
155
				lib/semihosting/semihosting.c			\
156
157
				lib/semihosting/${ARCH}/semihosting_call.S	\
				plat/arm/board/fvp/${ARCH}/fvp_helpers.S	\
158
				plat/arm/board/fvp/fvp_bl1_setup.c		\
159
				plat/arm/board/fvp/fvp_err.c			\
160
161
162
163
				plat/arm/board/fvp/fvp_io_storage.c		\
				${FVP_CPU_LIBS}					\
				${FVP_INTERCONNECT_SOURCES}

164
ifeq (${USE_SP804_TIMER},1)
165
166
167
168
169
BL1_SOURCES		+=	drivers/arm/sp804/sp804_delay_timer.c
else
BL1_SOURCES		+=	drivers/delay_timer/generic_delay_timer.c
endif

170

171
172
BL2_SOURCES		+=	drivers/arm/sp805/sp805.c			\
				drivers/io/io_semihosting.c			\
173
				lib/utils/mem_region.c				\
174
				lib/semihosting/semihosting.c			\
175
				lib/semihosting/${ARCH}/semihosting_call.S	\
176
				plat/arm/board/fvp/fvp_bl2_setup.c		\
177
				plat/arm/board/fvp/fvp_err.c			\
178
				plat/arm/board/fvp/fvp_io_storage.c		\
179
				plat/arm/common/arm_nor_psci_mem_protect.c	\
180
				${FVP_SECURITY_SOURCES}
181

182

183
184
185
ifeq (${COT_DESC_IN_DTB},1)
BL2_SOURCES		+=	plat/arm/common/fconf/fconf_nv_cntr_getter.c
endif
186

johpow01's avatar
johpow01 committed
187
188
189
190
191
ifeq (${ENABLE_RME},1)
BL2_SOURCES		+=	plat/arm/board/fvp/${ARCH}/fvp_helpers.S
CTX_INCLUDE_AARCH32_REGS := 0
endif

192
193
194
195
196
197
198
ifeq (${BL2_AT_EL3},1)
BL2_SOURCES		+=	plat/arm/board/fvp/${ARCH}/fvp_helpers.S	\
				plat/arm/board/fvp/fvp_bl2_el3_setup.c		\
				${FVP_CPU_LIBS}					\
				${FVP_INTERCONNECT_SOURCES}
endif

199
ifeq (${USE_SP804_TIMER},1)
200
201
202
BL2_SOURCES		+=	drivers/arm/sp804/sp804_delay_timer.c
endif

203
BL2U_SOURCES		+=	plat/arm/board/fvp/fvp_bl2u_setup.c		\
204
				${FVP_SECURITY_SOURCES}
205

206
ifeq (${USE_SP804_TIMER},1)
207
208
209
BL2U_SOURCES		+=	drivers/arm/sp804/sp804_delay_timer.c
endif

210
211
BL31_SOURCES		+=	drivers/arm/fvp/fvp_pwrc.c			\
				drivers/arm/smmu/smmu_v3.c			\
212
				drivers/delay_timer/delay_timer.c		\
213
				drivers/cfi/v2m/v2m_flash.c			\
214
				lib/utils/mem_region.c				\
215
				plat/arm/board/fvp/fvp_bl31_setup.c		\
216
				plat/arm/board/fvp/fvp_console.c		\
217
218
219
				plat/arm/board/fvp/fvp_pm.c			\
				plat/arm/board/fvp/fvp_topology.c		\
				plat/arm/board/fvp/aarch64/fvp_helpers.S	\
220
				plat/arm/common/arm_nor_psci_mem_protect.c	\
221
				${FVP_CPU_LIBS}					\
222
				${FVP_GIC_SOURCES}				\
223
				${FVP_INTERCONNECT_SOURCES}			\
224
				${FVP_SECURITY_SOURCES}
225

226
227
# Support for fconf in BL31
# Added separately from the above list for better readability
228
ifeq ($(filter 1,${BL2_AT_EL3} ${RESET_TO_BL31}),)
229
230
BL31_SOURCES		+=	common/fdt_wrappers.c				\
				lib/fconf/fconf.c				\
231
				lib/fconf/fconf_dyn_cfg_getter.c		\
232
				plat/arm/board/fvp/fconf/fconf_hw_config_getter.c
233
234
235
236
237

ifeq (${SEC_INT_DESC_IN_FCONF},1)
BL31_SOURCES		+=	plat/arm/common/fconf/fconf_sec_intr_config.c
endif

238
endif
239

240
ifeq (${USE_SP804_TIMER},1)
241
242
243
244
245
BL31_SOURCES		+=	drivers/arm/sp804/sp804_delay_timer.c
else
BL31_SOURCES		+=	drivers/delay_timer/generic_delay_timer.c
endif

246
247
# Add the FDT_SOURCES and options for Dynamic Config (only for Unix env)
ifdef UNIX_MK
248
FVP_HW_CONFIG_DTS	:=	fdts/${FVP_DT_PREFIX}.dts
249
FDT_SOURCES		+=	$(addprefix plat/arm/board/fvp/fdts/,	\
250
					${PLAT}_fw_config.dts		\
251
					${PLAT}_tb_fw_config.dts	\
252
253
254
255
					${PLAT}_soc_fw_config.dts	\
					${PLAT}_nt_fw_config.dts	\
				)

256
257
FVP_FW_CONFIG		:=	${BUILD_PLAT}/fdts/${PLAT}_fw_config.dtb
FVP_TB_FW_CONFIG	:=	${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb
258
259
260
261
262
263
264
265
FVP_SOC_FW_CONFIG	:=	${BUILD_PLAT}/fdts/${PLAT}_soc_fw_config.dtb
FVP_NT_FW_CONFIG	:=	${BUILD_PLAT}/fdts/${PLAT}_nt_fw_config.dtb

ifeq (${SPD},tspd)
FDT_SOURCES		+=	plat/arm/board/fvp/fdts/${PLAT}_tsp_fw_config.dts
FVP_TOS_FW_CONFIG	:=	${BUILD_PLAT}/fdts/${PLAT}_tsp_fw_config.dtb

# Add the TOS_FW_CONFIG to FIP and specify the same to certtool
266
$(eval $(call TOOL_ADD_PAYLOAD,${FVP_TOS_FW_CONFIG},--tos-fw-config,${FVP_TOS_FW_CONFIG}))
267
endif
268

269
ifeq (${SPD},spmd)
270
271
272
273
274
275
276

ifeq ($(ARM_SPMC_MANIFEST_DTS),)
ARM_SPMC_MANIFEST_DTS	:=	plat/arm/board/fvp/fdts/${PLAT}_spmc_manifest.dts
endif

FDT_SOURCES		+=	${ARM_SPMC_MANIFEST_DTS}
FVP_TOS_FW_CONFIG	:=	${BUILD_PLAT}/fdts/$(notdir $(basename ${ARM_SPMC_MANIFEST_DTS})).dtb
277
278

# Add the TOS_FW_CONFIG to FIP and specify the same to certtool
279
$(eval $(call TOOL_ADD_PAYLOAD,${FVP_TOS_FW_CONFIG},--tos-fw-config,${FVP_TOS_FW_CONFIG}))
280
281
endif

282
# Add the FW_CONFIG to FIP and specify the same to certtool
283
$(eval $(call TOOL_ADD_PAYLOAD,${FVP_FW_CONFIG},--fw-config,${FVP_FW_CONFIG}))
284
# Add the TB_FW_CONFIG to FIP and specify the same to certtool
285
$(eval $(call TOOL_ADD_PAYLOAD,${FVP_TB_FW_CONFIG},--tb-fw-config,${FVP_TB_FW_CONFIG}))
286
# Add the SOC_FW_CONFIG to FIP and specify the same to certtool
287
$(eval $(call TOOL_ADD_PAYLOAD,${FVP_SOC_FW_CONFIG},--soc-fw-config,${FVP_SOC_FW_CONFIG}))
288
# Add the NT_FW_CONFIG to FIP and specify the same to certtool
289
$(eval $(call TOOL_ADD_PAYLOAD,${FVP_NT_FW_CONFIG},--nt-fw-config,${FVP_NT_FW_CONFIG}))
290
291
292
293
294

FDT_SOURCES		+=	${FVP_HW_CONFIG_DTS}
$(eval FVP_HW_CONFIG	:=	${BUILD_PLAT}/$(patsubst %.dts,%.dtb,$(FVP_HW_CONFIG_DTS)))

# Add the HW_CONFIG to FIP and specify the same to certtool
295
$(eval $(call TOOL_ADD_PAYLOAD,${FVP_HW_CONFIG},--hw-config,${FVP_HW_CONFIG}))
296
endif
297

298
299
300
# Enable Activity Monitor Unit extensions by default
ENABLE_AMU			:=	1

301
302
303
# Enable dynamic mitigation support by default
DYNAMIC_WORKAROUND_CVE_2018_3639	:=	1

304
# Enable reclaiming of BL31 initialisation code for secondary cores
305
# stacks for FVP. However, don't enable reclaiming for clang.
306
ifneq (${RESET_TO_BL31},1)
307
ifeq ($(findstring clang,$(notdir $(CC))),)
308
RECLAIM_INIT_CODE	:=	1
309
endif
310
endif
311

312
ifeq (${ENABLE_AMU},1)
313
BL31_SOURCES		+=	lib/cpus/aarch64/cpuamu.c		\
314
				lib/cpus/aarch64/cpuamu_helpers.S
315
316
317
318
319

ifeq (${HW_ASSISTED_COHERENCY}, 1)
BL31_SOURCES		+=	lib/cpus/aarch64/cortex_a75_pubsub.c	\
				lib/cpus/aarch64/neoverse_n1_pubsub.c
endif
320
321
endif

322
323
324
325
ifeq (${RAS_EXTENSION},1)
BL31_SOURCES		+=	plat/arm/board/fvp/aarch64/fvp_ras.c
endif

326
327
328
329
ifneq (${ENABLE_STACK_PROTECTOR},0)
PLAT_BL_COMMON_SOURCES	+=	plat/arm/board/fvp/fvp_stack_protector.c
endif

330
331
332
333
ifeq (${ARCH},aarch32)
    NEED_BL32 := yes
endif

334
335
336
# Enable the dynamic translation tables library.
ifeq (${ARCH},aarch32)
    ifeq (${RESET_TO_SP_MIN},1)
337
        BL32_CPPFLAGS	+=	-DPLAT_XLAT_TABLES_DYNAMIC
338
    endif
339
else # AArch64
340
    ifeq (${RESET_TO_BL31},1)
341
        BL31_CPPFLAGS	+=	-DPLAT_XLAT_TABLES_DYNAMIC
342
    endif
343
    ifeq (${SPD},trusty)
344
        BL31_CPPFLAGS	+=	-DPLAT_XLAT_TABLES_DYNAMIC
345
    endif
346
347
endif

348
349
ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
    ifeq (${ARCH},aarch32)
350
        BL32_CPPFLAGS	+=	-DPLAT_RO_XLAT_TABLES
351
    else # AArch64
352
        BL31_CPPFLAGS	+=	-DPLAT_RO_XLAT_TABLES
353
        ifeq (${SPD},tspd)
354
            BL32_CPPFLAGS +=	-DPLAT_RO_XLAT_TABLES
355
356
357
358
        endif
    endif
endif

Ambroise Vincent's avatar
Ambroise Vincent committed
359
ifeq (${USE_DEBUGFS},1)
360
    BL31_CPPFLAGS	+=	-DPLAT_XLAT_TABLES_DYNAMIC
Ambroise Vincent's avatar
Ambroise Vincent committed
361
362
endif

363
364
365
# Add support for platform supplied linker script for BL31 build
$(eval $(call add_define,PLAT_EXTRA_LD_SCRIPT))

366
367
368
369
ifneq (${BL2_AT_EL3}, 0)
    override BL1_SOURCES =
endif

370
include plat/arm/board/common/board_common.mk
371
include plat/arm/common/arm_common.mk
372

373
374
375
ifeq (${TRUSTED_BOARD_BOOT}, 1)
BL1_SOURCES		+=	plat/arm/board/fvp/fvp_trusted_boot.c
BL2_SOURCES		+=	plat/arm/board/fvp/fvp_trusted_boot.c
376
377
378
379
380

ifeq (${MEASURED_BOOT},1)
BL2_SOURCES		+=	plat/arm/board/fvp/fvp_measured_boot.c
endif

381
# FVP being a development platform, enable capability to disable Authentication
382
# dynamically if TRUSTED_BOARD_BOOT is set.
383
DYN_DISABLE_AUTH	:=	1
384
endif