xref: /rk3399_ARM-atf/plat/arm/board/arm_fpga/platform.mk (revision 4c700c1563aff7b51df95f17e952e050b9b4e37f)
1#
2# Copyright (c) 2021-2023, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7include common/fdt_wrappers.mk
8include lib/libfdt/libfdt.mk
9
10RESET_TO_BL31 := 1
11ifeq (${RESET_TO_BL31}, 0)
12$(error "This is a BL31-only port; RESET_TO_BL31 must be enabled")
13endif
14
15ifeq (${ENABLE_PIE}, 1)
16override SEPARATE_CODE_AND_RODATA := 1
17endif
18
19CTX_INCLUDE_AARCH32_REGS := 0
20ifeq (${CTX_INCLUDE_AARCH32_REGS}, 1)
21$(error "This is an AArch64-only port; CTX_INCLUDE_AARCH32_REGS must be disabled")
22endif
23
24ifeq (${TRUSTED_BOARD_BOOT}, 1)
25$(error "TRUSTED_BOARD_BOOT must be disabled")
26endif
27
28PRELOADED_BL33_BASE := 0x80080000
29
30FPGA_PRELOADED_DTB_BASE := 0x80070000
31$(eval $(call add_define,FPGA_PRELOADED_DTB_BASE))
32
33FPGA_PRELOADED_CMD_LINE := 0x1000
34$(eval $(call add_define,FPGA_PRELOADED_CMD_LINE))
35
36ENABLE_FEAT_AMU		:=	2
37
38# Treating this as a memory-constrained port for now
39USE_COHERENT_MEM	:=	0
40
41# This can be overridden depending on CPU(s) used in the FPGA image
42HW_ASSISTED_COHERENCY	:=	1
43
44PL011_GENERIC_UART	:=	1
45
46SUPPORT_UNKNOWN_MPID	?=	1
47
48FPGA_CPU_LIBS	:=	lib/cpus/${ARCH}/aem_generic.S
49
50# select a different set of CPU files, depending on whether we compile for
51# hardware assisted coherency cores or not
52ifeq (${HW_ASSISTED_COHERENCY}, 0)
53# Cores used without DSU
54	FPGA_CPU_LIBS	+=	lib/cpus/aarch64/cortex_a35.S	\
55				lib/cpus/aarch64/cortex_a53.S	\
56				lib/cpus/aarch64/cortex_a57.S	\
57				lib/cpus/aarch64/cortex_a72.S	\
58				lib/cpus/aarch64/cortex_a73.S
59else
60# AArch64-only cores
61	FPGA_CPU_LIBS	+=	lib/cpus/aarch64/cortex_a510.S			\
62				lib/cpus/aarch64/cortex_a520.S			\
63				lib/cpus/aarch64/cortex_a715.S			\
64				lib/cpus/aarch64/cortex_a720.S			\
65				lib/cpus/aarch64/cortex_x3.S 			\
66				lib/cpus/aarch64/cortex_x4.S			\
67				lib/cpus/aarch64/neoverse_n_common.S		\
68				lib/cpus/aarch64/neoverse_n1.S			\
69				lib/cpus/aarch64/neoverse_n2.S			\
70				lib/cpus/aarch64/neoverse_v1.S			\
71				lib/cpus/aarch64/cortex_chaberton.S		\
72				lib/cpus/aarch64/cortex_blackhawk.S
73
74# AArch64/AArch32 cores
75	FPGA_CPU_LIBS	+=	lib/cpus/aarch64/cortex_a55.S	\
76				lib/cpus/aarch64/cortex_a75.S
77endif
78
79ifeq (${SUPPORT_UNKNOWN_MPID}, 1)
80# Add support for unknown/invalid MPIDs (aarch64 only)
81$(eval $(call add_define,SUPPORT_UNKNOWN_MPID))
82	FPGA_CPU_LIBS	+=	lib/cpus/aarch64/generic.S
83endif
84
85# Allow detection of GIC-600
86GICV3_SUPPORT_GIC600	:=	1
87
88GIC_ENABLE_V4_EXTN	:=	1
89
90# Include GICv3 driver files
91include drivers/arm/gic/v3/gicv3.mk
92
93FPGA_GIC_SOURCES	:=	${GICV3_SOURCES}			\
94				plat/common/plat_gicv3.c		\
95				plat/arm/board/arm_fpga/fpga_gicv3.c
96
97FDT_SOURCES		:=	fdts/arm_fpga.dts
98
99PLAT_INCLUDES		:=	-Iplat/arm/board/arm_fpga/include
100
101PLAT_BL_COMMON_SOURCES	:=	plat/arm/board/arm_fpga/${ARCH}/fpga_helpers.S
102
103BL31_SOURCES		+=	common/fdt_fixup.c				\
104				drivers/delay_timer/delay_timer.c		\
105				drivers/delay_timer/generic_delay_timer.c	\
106				drivers/arm/pl011/${ARCH}/pl011_console.S	\
107				plat/common/plat_psci_common.c			\
108				plat/arm/board/arm_fpga/fpga_pm.c			\
109				plat/arm/board/arm_fpga/fpga_topology.c		\
110				plat/arm/board/arm_fpga/fpga_console.c		\
111				plat/arm/board/arm_fpga/fpga_bl31_setup.c		\
112				${FPGA_CPU_LIBS}				\
113				${FPGA_GIC_SOURCES}
114
115BL31_SOURCES		+=	${FDT_WRAPPERS_SOURCES}
116
117$(eval $(call MAKE_S,$(BUILD_PLAT),plat/arm/board/arm_fpga/rom_trampoline.S,bl31))
118$(eval $(call MAKE_S,$(BUILD_PLAT),plat/arm/board/arm_fpga/kernel_trampoline.S,bl31))
119$(eval $(call MAKE_LD,$(BUILD_PLAT)/build_axf.ld,plat/arm/board/arm_fpga/build_axf.ld.S,bl31))
120
121bl31.axf: bl31 dtbs ${BUILD_PLAT}/rom_trampoline.o ${BUILD_PLAT}/kernel_trampoline.o ${BUILD_PLAT}/build_axf.ld
122	$(ECHO) "  LD      $@"
123	$(Q)$(LD) -T ${BUILD_PLAT}/build_axf.ld -L ${BUILD_PLAT} --strip-debug -s -n -o ${BUILD_PLAT}/bl31.axf
124
125all: bl31.axf
126