xref: /rk3399_ARM-atf/plat/qemu/qemu/platform.mk (revision dfa6c540713ba546da65fe179ec1ef0fc1b1f7f5)
1#
2# Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7# Use the GICv2 driver on QEMU by default
8QEMU_USE_GIC_DRIVER	:= QEMU_GICV2
9
10ifeq (${ARM_ARCH_MAJOR},7)
11# ARMv7 Qemu support in trusted firmware expects the Cortex-A15 model.
12# Qemu Cortex-A15 model does not implement the virtualization extension.
13# For this reason, we cannot set ARM_CORTEX_A15=yes and must define all
14# the ARMv7 build directives.
15MARCH32_DIRECTIVE 	:= 	-mcpu=cortex-a15
16$(eval $(call add_define,ARMV7_SUPPORTS_LARGE_PAGE_ADDRESSING))
17$(eval $(call add_define,ARMV7_SUPPORTS_GENERIC_TIMER))
18$(eval $(call add_define,ARMV7_SUPPORTS_VFP))
19# Qemu expects a BL32 boot stage.
20NEED_BL32		:=	yes
21endif # ARMv7
22
23ifeq (${SPD},opteed)
24add-lib-optee 		:= 	yes
25endif
26ifeq ($(AARCH32_SP),optee)
27add-lib-optee 		:= 	yes
28endif
29
30include lib/libfdt/libfdt.mk
31
32ifeq ($(NEED_BL32),yes)
33$(eval $(call add_define,QEMU_LOAD_BL32))
34endif
35
36PLAT_QEMU_PATH               :=      plat/qemu/qemu
37PLAT_QEMU_COMMON_PATH        :=      plat/qemu/common
38PLAT_INCLUDES		:=	-Iinclude/plat/arm/common/		\
39				-I${PLAT_QEMU_COMMON_PATH}/include			\
40				-I${PLAT_QEMU_PATH}/include			\
41				-Iinclude/common/tbbr
42
43ifeq (${ARM_ARCH_MAJOR},8)
44PLAT_INCLUDES		+=	-Iinclude/plat/arm/common/${ARCH}
45endif
46
47PLAT_BL_COMMON_SOURCES	:=	${PLAT_QEMU_COMMON_PATH}/qemu_common.c			\
48				${PLAT_QEMU_COMMON_PATH}/qemu_console.c		  \
49				drivers/arm/pl011/${ARCH}/pl011_console.S
50
51include lib/xlat_tables_v2/xlat_tables.mk
52PLAT_BL_COMMON_SOURCES	+=	${XLAT_TABLES_LIB_SRCS}
53
54ifneq (${TRUSTED_BOARD_BOOT},0)
55
56    include drivers/auth/mbedtls/mbedtls_crypto.mk
57    include drivers/auth/mbedtls/mbedtls_x509.mk
58
59    AUTH_SOURCES	:=	drivers/auth/auth_mod.c			\
60				drivers/auth/crypto_mod.c		\
61				drivers/auth/img_parser_mod.c		\
62				drivers/auth/tbbr/tbbr_cot_common.c
63
64    BL1_SOURCES		+=	${AUTH_SOURCES}				\
65				bl1/tbbr/tbbr_img_desc.c		\
66				plat/common/tbbr/plat_tbbr.c		\
67				${PLAT_QEMU_COMMON_PATH}/qemu_trusted_boot.c	     	\
68				$(PLAT_QEMU_COMMON_PATH)/qemu_rotpk.S	\
69				drivers/auth/tbbr/tbbr_cot_bl1.c
70
71    BL2_SOURCES		+=	${AUTH_SOURCES}				\
72				plat/common/tbbr/plat_tbbr.c		\
73				${PLAT_QEMU_COMMON_PATH}/qemu_trusted_boot.c	     	\
74				$(PLAT_QEMU_COMMON_PATH)/qemu_rotpk.S	\
75				drivers/auth/tbbr/tbbr_cot_bl2.c
76
77    ROT_KEY             = $(BUILD_PLAT)/rot_key.pem
78    ROTPK_HASH          = $(BUILD_PLAT)/rotpk_sha256.bin
79
80    $(eval $(call add_define_val,ROTPK_HASH,'"$(ROTPK_HASH)"'))
81
82    $(BUILD_PLAT)/bl1/qemu_rotpk.o: $(ROTPK_HASH)
83    $(BUILD_PLAT)/bl2/qemu_rotpk.o: $(ROTPK_HASH)
84
85    certificates: $(ROT_KEY)
86
87    $(ROT_KEY): | $(BUILD_PLAT)
88	@echo "  OPENSSL $@"
89	$(Q)openssl genrsa 2048 > $@ 2>/dev/null
90
91    $(ROTPK_HASH): $(ROT_KEY)
92	@echo "  OPENSSL $@"
93	$(Q)openssl rsa -in $< -pubout -outform DER 2>/dev/null |\
94	openssl dgst -sha256 -binary > $@ 2>/dev/null
95endif
96
97BL1_SOURCES		+=	drivers/io/io_semihosting.c		\
98				drivers/io/io_storage.c			\
99				drivers/io/io_fip.c			\
100				drivers/io/io_memmap.c			\
101				lib/semihosting/semihosting.c		\
102				lib/semihosting/${ARCH}/semihosting_call.S \
103				${PLAT_QEMU_COMMON_PATH}/qemu_io_storage.c		\
104				${PLAT_QEMU_COMMON_PATH}/${ARCH}/plat_helpers.S	\
105				${PLAT_QEMU_COMMON_PATH}/qemu_bl1_setup.c
106
107ifeq (${ARM_ARCH_MAJOR},8)
108BL1_SOURCES		+=	lib/cpus/aarch64/aem_generic.S		\
109				lib/cpus/aarch64/cortex_a53.S		\
110				lib/cpus/aarch64/cortex_a57.S
111else
112BL1_SOURCES		+=	lib/cpus/${ARCH}/cortex_a15.S
113endif
114
115BL2_SOURCES		+=	drivers/io/io_semihosting.c		\
116				drivers/io/io_storage.c			\
117				drivers/io/io_fip.c			\
118				drivers/io/io_memmap.c			\
119				lib/semihosting/semihosting.c		\
120				lib/semihosting/${ARCH}/semihosting_call.S		\
121				${PLAT_QEMU_COMMON_PATH}/qemu_io_storage.c		\
122				${PLAT_QEMU_COMMON_PATH}/${ARCH}/plat_helpers.S		\
123				${PLAT_QEMU_COMMON_PATH}/qemu_bl2_setup.c		\
124				${PLAT_QEMU_COMMON_PATH}/qemu_bl2_mem_params_desc.c	\
125				${PLAT_QEMU_COMMON_PATH}/qemu_image_load.c		\
126				common/fdt_fixup.c					\
127				common/desc_image_load.c
128
129ifeq ($(add-lib-optee),yes)
130BL2_SOURCES		+=	lib/optee/optee_utils.c
131endif
132
133ifneq (${DECRYPTION_SUPPORT},none)
134BL1_SOURCES		+=	drivers/io/io_encrypted.c
135BL2_SOURCES		+=	drivers/io/io_encrypted.c
136endif
137
138QEMU_GICV2_SOURCES	:=	drivers/arm/gic/v2/gicv2_helpers.c	\
139				drivers/arm/gic/v2/gicv2_main.c		\
140				drivers/arm/gic/common/gic_common.c	\
141				plat/common/plat_gicv2.c		\
142				${PLAT_QEMU_COMMON_PATH}/qemu_gicv2.c
143
144# Include GICv3 driver files
145include drivers/arm/gic/v3/gicv3.mk
146
147QEMU_GICV3_SOURCES	:=	${GICV3_SOURCES}			\
148				plat/common/plat_gicv3.c		\
149				${PLAT_QEMU_COMMON_PATH}/qemu_gicv3.c
150
151ifeq (${QEMU_USE_GIC_DRIVER}, QEMU_GICV2)
152QEMU_GIC_SOURCES	:=	${QEMU_GICV2_SOURCES}
153else ifeq (${QEMU_USE_GIC_DRIVER}, QEMU_GICV3)
154QEMU_GIC_SOURCES	:=	${QEMU_GICV3_SOURCES}
155else
156$(error "Incorrect GIC driver chosen for QEMU platform")
157endif
158
159ifeq (${ARM_ARCH_MAJOR},8)
160BL31_SOURCES		+=	lib/cpus/aarch64/aem_generic.S		\
161				lib/cpus/aarch64/cortex_a53.S		\
162				lib/cpus/aarch64/cortex_a57.S		\
163				lib/semihosting/semihosting.c		\
164				lib/semihosting/${ARCH}/semihosting_call.S \
165				plat/common/plat_psci_common.c		\
166				drivers/arm/pl061/pl061_gpio.c		\
167				drivers/gpio/gpio.c			\
168				${PLAT_QEMU_COMMON_PATH}/qemu_pm.c			\
169				${PLAT_QEMU_COMMON_PATH}/topology.c			\
170				${PLAT_QEMU_COMMON_PATH}/aarch64/plat_helpers.S	\
171				${PLAT_QEMU_COMMON_PATH}/qemu_bl31_setup.c		\
172				${QEMU_GIC_SOURCES}
173endif
174
175# Add the build options to pack Trusted OS Extra1 and Trusted OS Extra2 images
176# in the FIP if the platform requires.
177ifneq ($(BL32_EXTRA1),)
178ifneq (${DECRYPTION_SUPPORT},none)
179$(eval $(call TOOL_ADD_IMG,bl32_extra1,--tos-fw-extra1,,$(ENCRYPT_BL32)))
180else
181$(eval $(call TOOL_ADD_IMG,bl32_extra1,--tos-fw-extra1))
182endif
183endif
184ifneq ($(BL32_EXTRA2),)
185ifneq (${DECRYPTION_SUPPORT},none)
186$(eval $(call TOOL_ADD_IMG,bl32_extra2,--tos-fw-extra2,,$(ENCRYPT_BL32)))
187else
188$(eval $(call TOOL_ADD_IMG,bl32_extra2,--tos-fw-extra2))
189endif
190endif
191
192SEPARATE_CODE_AND_RODATA := 1
193ENABLE_STACK_PROTECTOR	 := 0
194ifneq ($(ENABLE_STACK_PROTECTOR), 0)
195	PLAT_BL_COMMON_SOURCES += ${PLAT_QEMU_COMMON_PATH}/qemu_stack_protector.c
196endif
197
198BL32_RAM_LOCATION	:=	tdram
199ifeq (${BL32_RAM_LOCATION}, tsram)
200  BL32_RAM_LOCATION_ID = SEC_SRAM_ID
201else ifeq (${BL32_RAM_LOCATION}, tdram)
202  BL32_RAM_LOCATION_ID = SEC_DRAM_ID
203else
204  $(error "Unsupported BL32_RAM_LOCATION value")
205endif
206
207# Process flags
208$(eval $(call add_define,BL32_RAM_LOCATION_ID))
209
210# Don't have the Linux kernel as a BL33 image by default
211ARM_LINUX_KERNEL_AS_BL33	:=	0
212$(eval $(call assert_boolean,ARM_LINUX_KERNEL_AS_BL33))
213$(eval $(call add_define,ARM_LINUX_KERNEL_AS_BL33))
214
215ARM_PRELOADED_DTB_BASE := PLAT_QEMU_DT_BASE
216$(eval $(call add_define,ARM_PRELOADED_DTB_BASE))
217
218# Do not enable SVE
219ENABLE_SVE_FOR_NS	:=	0
220