xref: /rk3399_ARM-atf/Makefile (revision bc30945bb660c5be04d82bfa95f5b9caaffba3ef)
14f6ad66aSAchin Gupta#
2c3273703SChris Kay# Copyright (c) 2013-2025, Arm Limited and Contributors. All rights reserved.
34f6ad66aSAchin Gupta#
482cb2c1aSdp-arm# SPDX-License-Identifier: BSD-3-Clause
54f6ad66aSAchin Gupta#
64f6ad66aSAchin Gupta
7e35c4045SJeenu Viswambharan#
8aaa3e722SJuan Castillo# Trusted Firmware Version
9aaa3e722SJuan Castillo#
101a0f1121SSoby MathewVERSION_MAJOR			:= 2
1107a6a654SGovindraj RajaVERSION_MINOR			:= 12
12c25d1ccfSYann Gautier# VERSION_PATCH is only used for LTS releases
13c25d1ccfSYann GautierVERSION_PATCH			:= 0
14055ebecaSYann GautierVERSION				:= ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}
15aaa3e722SJuan Castillo
1688154678SJuan Castillo# Default goal is build all images
1788154678SJuan Castillo.DEFAULT_GOAL			:= all
1888154678SJuan Castillo
1972fc70edSDouglas Raillard# Avoid any implicit propagation of command line variable definitions to
2072fc70edSDouglas Raillard# sub-Makefiles, like CFLAGS that we reserved for the firmware images'
2172fc70edSDouglas Raillard# usage. Other command line options like "-s" are still propagated as usual.
2272fc70edSDouglas RaillardMAKEOVERRIDES =
2372fc70edSDouglas Raillard
24231c1470SEvan LloydMAKE_HELPERS_DIRECTORY := make_helpers/
25231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_macros.mk
26f4dd18c2SChris Kayinclude ${MAKE_HELPERS_DIRECTORY}build-rules.mk
277c4e1eeaSChris Kayinclude ${MAKE_HELPERS_DIRECTORY}common.mk
2873c99d4eSJuan Castillo
2973c99d4eSJuan Castillo################################################################################
302fae4b1eSJeenu Viswambharan# Default values for build configurations, and their dependencies
3173c99d4eSJuan Castillo################################################################################
32e35c4045SJeenu Viswambharan
332fae4b1eSJeenu Viswambharaninclude ${MAKE_HELPERS_DIRECTORY}defaults.mk
34422b181fSYann GautierPLAT				:= ${DEFAULT_PLAT}
351b2fb6adSAndrey Skvortsovinclude ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
361b2fb6adSAndrey Skvortsov
371b2fb6adSAndrey Skvortsov# To be able to set platform specific defaults
381b2fb6adSAndrey Skvortsovifneq ($(PLAT_DEFAULTS_MAKEFILE_FULL),)
391b2fb6adSAndrey Skvortsovinclude ${PLAT_DEFAULTS_MAKEFILE_FULL}
401b2fb6adSAndrey Skvortsovendif
41872be88aSdp-arm
42cc277de8SChris Kay################################################################################
43cc277de8SChris Kay# Configure the toolchains used to build TF-A and its tools
44cc277de8SChris Kay################################################################################
45cc277de8SChris Kay
46cc277de8SChris Kayinclude ${MAKE_HELPERS_DIRECTORY}toolchain.mk
47cc277de8SChris Kay
48cc8b5632SAntonio Nino Diaz# Assertions enabled for DEBUG builds by default
49cc8b5632SAntonio Nino DiazENABLE_ASSERTIONS		:= ${DEBUG}
502fae4b1eSJeenu ViswambharanENABLE_PMF			:= ${ENABLE_RUNTIME_INSTRUMENTATION}
5173c99d4eSJuan Castillo
5273c99d4eSJuan Castillo################################################################################
5373c99d4eSJuan Castillo# Checkpatch script options
5473c99d4eSJuan Castillo################################################################################
5573c99d4eSJuan Castillo
56f607739cSSandrine BailleuxCHECKCODE_ARGS		:=	--no-patch
57f0b489c1SDan Handley# Do not check the coding style on imported library files or documentation files
584501843fSGilad Ben-YossefINC_DRV_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
594501843fSGilad Ben-Yossef					include/drivers/arm,		\
604501843fSGilad Ben-Yossef					$(wildcard include/drivers/*)))
61f0b489c1SDan HandleyINC_LIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
621a41e8c1SDan Handley					include/lib/libfdt		\
6361f72a34SRoberto Vargas					include/lib/libc,		\
64f0b489c1SDan Handley					$(wildcard include/lib/*)))
65f0b489c1SDan HandleyINC_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
664501843fSGilad Ben-Yossef					include/lib			\
674501843fSGilad Ben-Yossef					include/drivers,		\
68f0b489c1SDan Handley					$(wildcard include/*)))
69f0b489c1SDan HandleyLIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
70d801fbb0Sdp-arm					lib/compiler-rt			\
7155cdcf75SAntonio Nino Diaz					lib/libfdt%			\
7261f72a34SRoberto Vargas					lib/libc,			\
73a194255dSDaniel Boulby					lib/zlib			\
74f0b489c1SDan Handley					$(wildcard lib/*)))
75f0b489c1SDan HandleyROOT_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
76f0b489c1SDan Handley					lib				\
77f0b489c1SDan Handley					include				\
78f0b489c1SDan Handley					docs				\
791ef35512SPaul Beesley					%.rst,				\
80f0b489c1SDan Handley					$(wildcard *)))
81f0b489c1SDan HandleyCHECK_PATHS		:=	${ROOT_DIRS_TO_CHECK}			\
82f0b489c1SDan Handley				${INC_DIRS_TO_CHECK}			\
83f0b489c1SDan Handley				${INC_LIB_DIRS_TO_CHECK}		\
844501843fSGilad Ben-Yossef				${LIB_DIRS_TO_CHECK}			\
854501843fSGilad Ben-Yossef				${INC_DRV_DIRS_TO_CHECK}		\
864501843fSGilad Ben-Yossef				${INC_ARM_DIRS_TO_CHECK}
8736eaaf37SIan Spray
8873c99d4eSJuan Castillo################################################################################
8973c99d4eSJuan Castillo# Process build options
9073c99d4eSJuan Castillo################################################################################
9173c99d4eSJuan Castillo
927c4e1eeaSChris Kayifeq ($(verbose),)
9336eaaf37SIan Spray	CHECKCODE_ARGS	+=	--no-summary --terse
944f6ad66aSAchin Guptaendif
95ee1ba6d4SAndre Przywara
9673c99d4eSJuan Castillo################################################################################
97c5e1da83SJayanth Dodderi Chidanand# Auxiliary tools (fiptool, cert_create, etc)
98c5e1da83SJayanth Dodderi Chidanand################################################################################
99c5e1da83SJayanth Dodderi Chidanand
100c5e1da83SJayanth Dodderi Chidanand# Variables for use with Certificate Generation Tool
101c5e1da83SJayanth Dodderi ChidanandCRTTOOLPATH		?=	tools/cert_create
102c3273703SChris KayCRTTOOL			?=	${CRTTOOLPATH}/cert_create$(.exe)
103c5e1da83SJayanth Dodderi Chidanand
104c5e1da83SJayanth Dodderi Chidanand# Variables for use with Firmware Encryption Tool
105c5e1da83SJayanth Dodderi ChidanandENCTOOLPATH		?=	tools/encrypt_fw
106c3273703SChris KayENCTOOL			?=	${ENCTOOLPATH}/encrypt_fw$(.exe)
107c5e1da83SJayanth Dodderi Chidanand
108c5e1da83SJayanth Dodderi Chidanand# Variables for use with Firmware Image Package
109c5e1da83SJayanth Dodderi ChidanandFIPTOOLPATH		?=	tools/fiptool
110c3273703SChris KayFIPTOOL			?=	${FIPTOOLPATH}/fiptool$(.exe)
111c5e1da83SJayanth Dodderi Chidanand
112c5e1da83SJayanth Dodderi Chidanand# Variables for use with sptool
113c5e1da83SJayanth Dodderi ChidanandSPTOOLPATH		?=	tools/sptool
114c5e1da83SJayanth Dodderi ChidanandSPTOOL			?=	${SPTOOLPATH}/sptool.py
115c5e1da83SJayanth Dodderi ChidanandSP_MK_GEN		?=	${SPTOOLPATH}/sp_mk_generator.py
11620629b31SKarl MeakinSP_DTS_LIST_FRAGMENT	?=	${BUILD_PLAT}/sp_list_fragment.dts
117c5e1da83SJayanth Dodderi Chidanand
1180fe374efSJ-Alves# Variables for use with sptool
1190fe374efSJ-AlvesTLCTOOL 		?=	poetry run tlc
1200fe374efSJ-Alves
121c5e1da83SJayanth Dodderi Chidanand# Variables for use with ROMLIB
122c5e1da83SJayanth Dodderi ChidanandROMLIBPATH		?=	lib/romlib
123c5e1da83SJayanth Dodderi Chidanand
124c5e1da83SJayanth Dodderi Chidanand# Variable for use with Python
125c5e1da83SJayanth Dodderi ChidanandPYTHON			?=	python3
126c5e1da83SJayanth Dodderi Chidanand
127c5e1da83SJayanth Dodderi Chidanand# Variables for use with documentation build using Sphinx tool
128c5e1da83SJayanth Dodderi ChidanandDOCS_PATH		?=	docs
129c5e1da83SJayanth Dodderi Chidanand
130c5e1da83SJayanth Dodderi Chidanand################################################################################
131c5e1da83SJayanth Dodderi Chidanand# Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags
132c5e1da83SJayanth Dodderi Chidanand################################################################################
13326e63c44SEtienne Carriereifeq (${ARM_ARCH_MAJOR},7)
13426e63c44SEtienne Carriere	target32-directive	= 	-target arm-none-eabi
135d4089fb8SGovindraj Raja# Will set march-directive from platform configuration
13626e63c44SEtienne Carriereelse
13726e63c44SEtienne Carriere	target32-directive	= 	-target armv8a-none-eabi
138c5e1da83SJayanth Dodderi Chidanandendif #(ARM_ARCH_MAJOR)
139c5e1da83SJayanth Dodderi Chidanand
140c5e1da83SJayanth Dodderi Chidanand################################################################################
141c5e1da83SJayanth Dodderi Chidanand# Get Architecture Feature Modifiers
142c5e1da83SJayanth Dodderi Chidanand################################################################################
143c5e1da83SJayanth Dodderi Chidanandarch-features		=	${ARM_ARCH_FEATURE}
144c5e1da83SJayanth Dodderi Chidanand
1458620bd0bSChris Kayifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
1468620bd0bSChris Kay	ifeq ($($(ARCH)-cc-id),arm-clang)
1477794d6c8SGovindraj Raja		TF_CFLAGS_aarch32	:=	-target arm-arm-none-eabi
1487794d6c8SGovindraj Raja		TF_CFLAGS_aarch64	:=	-target aarch64-arm-none-eabi
149c8a992fdSorigin	else
1507794d6c8SGovindraj Raja		TF_CFLAGS_aarch32	=	$(target32-directive)
1517794d6c8SGovindraj Raja		TF_CFLAGS_aarch64	:=	-target aarch64-elf
152641f16e7SAmbroise Vincent	endif
153c8a992fdSorigin
1548620bd0bSChris Kayelse ifeq ($($(ARCH)-cc-id),gnu-gcc)
155edbce9aaSzelalem-aweke	# Enable LTO only for aarch64
156edbce9aaSzelalem-aweke	ifeq (${ARCH},aarch64)
157fa402f38SChris Kay		LTO_CFLAGS	=	$(if $(filter-out 0,$(ENABLE_LTO)),-flto)
158edbce9aaSzelalem-aweke	endif
159c5e1da83SJayanth Dodderi Chidanandendif #(clang)
160d5461857Sdp-arm
16132b209bfSAhmad Fatoum# Process Debug flag
16232b209bfSAhmad Fatoum$(eval $(call add_define,DEBUG))
16332b209bfSAhmad Fatoumifneq (${DEBUG}, 0)
16432b209bfSAhmad Fatoum	BUILD_TYPE	:=	debug
1654466cf82SDaniel Boulby	TF_CFLAGS	+=	-g -gdwarf-4
1664466cf82SDaniel Boulby	ASFLAGS		+=	-g -Wa,-gdwarf-4
16732b209bfSAhmad Fatoum
16832b209bfSAhmad Fatoum	# Use LOG_LEVEL_INFO by default for debug builds
16932b209bfSAhmad Fatoum	LOG_LEVEL	:=	40
17032b209bfSAhmad Fatoumelse
17132b209bfSAhmad Fatoum	BUILD_TYPE	:=	release
17232b209bfSAhmad Fatoum	# Use LOG_LEVEL_NOTICE by default for release builds
17332b209bfSAhmad Fatoum	LOG_LEVEL	:=	20
174c5e1da83SJayanth Dodderi Chidanandendif #(Debug)
17532b209bfSAhmad Fatoum
176f1de4c8fSPeiyuan Song# Default build string (git branch and commit)
177f1de4c8fSPeiyuan Songifeq (${BUILD_STRING},)
178f1de4c8fSPeiyuan Song	BUILD_STRING  :=  $(shell git describe --always --dirty --tags 2> /dev/null)
179f1de4c8fSPeiyuan Songendif
180dddf4283Slaurenw-armVERSION_STRING    :=  v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
181f1de4c8fSPeiyuan Song
1828fd9d4d5SAntonio Nino Diazifeq (${AARCH32_INSTRUCTION_SET},A32)
1838fd9d4d5SAntonio Nino Diaz	TF_CFLAGS_aarch32	+=	-marm
1848fd9d4d5SAntonio Nino Diazelse ifeq (${AARCH32_INSTRUCTION_SET},T32)
1858fd9d4d5SAntonio Nino Diaz	TF_CFLAGS_aarch32	+=	-mthumb
1868fd9d4d5SAntonio Nino Diazelse
1878fd9d4d5SAntonio Nino Diaz        $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
188c5e1da83SJayanth Dodderi Chidanandendif #(AARCH32_INSTRUCTION_SET)
1898fd9d4d5SAntonio Nino Diaz
190a9c4dde3SSandrine BailleuxTF_CFLAGS_aarch32	+=	-mno-unaligned-access
191d5461857Sdp-armTF_CFLAGS_aarch64	+=	-mgeneral-regs-only -mstrict-align
1929d29c227SSoby Mathew
193c5e1da83SJayanth Dodderi Chidanand##############################################################################
194c5e1da83SJayanth Dodderi Chidanand# WARNINGS Configuration
195c5e1da83SJayanth Dodderi Chidanand###############################################################################
1969ab81b5eSJustin Chadwell# General warnings
1979ab81b5eSJustin ChadwellWARNINGS		:=	-Wall -Wmissing-include-dirs -Wunused	\
198b7f6525dSJustin Chadwell				-Wdisabled-optimization -Wvla -Wshadow	\
199d75a9ecdSBoyan Karatotev				-Wredundant-decls
200d75a9ecdSBoyan Karatotev# stricter warnings
201d75a9ecdSBoyan KaratotevWARNINGS		+=	-Wextra -Wno-trigraphs
202d75a9ecdSBoyan Karatotev# too verbose for generic build
203d75a9ecdSBoyan KaratotevWARNINGS		+=	-Wno-missing-field-initializers \
204d75a9ecdSBoyan Karatotev				-Wno-type-limits -Wno-sign-compare \
205d75a9ecdSBoyan Karatotev# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
206d75a9ecdSBoyan KaratotevWARNINGS		+=	-Wno-unused-parameter
2079ab81b5eSJustin Chadwell
2089ab81b5eSJustin Chadwell# Additional warnings
209d75a9ecdSBoyan Karatotev# Level 1 - infrequent warnings we should have none of
210d75a9ecdSBoyan Karatotev# full -Wextra
211d75a9ecdSBoyan KaratotevWARNING1 += -Wsign-compare
212d75a9ecdSBoyan KaratotevWARNING1 += -Wtype-limits
213d75a9ecdSBoyan KaratotevWARNING1 += -Wmissing-field-initializers
214e7c645b5SYann Gautier
215d75a9ecdSBoyan Karatotev# Level 2 - problematic warnings that we want
216d75a9ecdSBoyan Karatotev# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
217d75a9ecdSBoyan Karatotev# TODO: disable just for them and move into default build
218d75a9ecdSBoyan KaratotevWARNING2 += -Wold-style-definition
219d75a9ecdSBoyan KaratotevWARNING2 += -Wmissing-prototypes
220d75a9ecdSBoyan KaratotevWARNING2 += -Wmissing-format-attribute
221d75a9ecdSBoyan Karatotev# TF-A aims to comply with this eventually. Effort too large at present
222d75a9ecdSBoyan KaratotevWARNING2 += -Wundef
223d141e638SBoyan Karatotev# currently very involved and many platforms set this off
224d141e638SBoyan KaratotevWARNING2 += -Wunused-const-variable=2
225e7c645b5SYann Gautier
226d75a9ecdSBoyan Karatotev# Level 3 - very pedantic, frequently ignored
227e7c645b5SYann GautierWARNING3 := -Wbad-function-cast
228d75a9ecdSBoyan KaratotevWARNING3 += -Waggregate-return
229d75a9ecdSBoyan KaratotevWARNING3 += -Wnested-externs
230d75a9ecdSBoyan KaratotevWARNING3 += -Wcast-align
231e7c645b5SYann GautierWARNING3 += -Wcast-qual
232e7c645b5SYann GautierWARNING3 += -Wconversion
233e7c645b5SYann GautierWARNING3 += -Wpacked
234e7c645b5SYann GautierWARNING3 += -Wpointer-arith
235e7c645b5SYann GautierWARNING3 += -Wswitch-default
236e7c645b5SYann Gautier
237d75a9ecdSBoyan Karatotev# Setting W is quite verbose and most warnings will be pre-existing issues
238d75a9ecdSBoyan Karatotev# outside of the contributor's control. Don't fail the build on them so warnings
239d75a9ecdSBoyan Karatotev# can be seen and hopefully addressed
240d75a9ecdSBoyan Karatotevifdef W
241d75a9ecdSBoyan Karatotev	ifneq (${W},0)
242d75a9ecdSBoyan Karatotev		E	 ?= 0
243d75a9ecdSBoyan Karatotev	endif
244d75a9ecdSBoyan Karatotevendif
245d75a9ecdSBoyan Karatotev
246e7c645b5SYann Gautierifeq (${W},1)
2479ab81b5eSJustin Chadwell	WARNINGS += $(WARNING1)
248e7c645b5SYann Gautierelse ifeq (${W},2)
2499ab81b5eSJustin Chadwell	WARNINGS += $(WARNING1) $(WARNING2)
250e7c645b5SYann Gautierelse ifeq (${W},3)
2519ab81b5eSJustin Chadwell	WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
252c5e1da83SJayanth Dodderi Chidanandendif #(W)
253e7c645b5SYann Gautier
2549ab81b5eSJustin Chadwell# Compiler specific warnings
2558620bd0bSChris Kayifeq ($(filter %-clang,$($(ARCH)-cc-id)),)
25693c690ebSJustin Chadwell# not using clang
257d7b4cd41SJustin ChadwellWARNINGS	+=		-Wunused-but-set-variable -Wmaybe-uninitialized	\
258d7b4cd41SJustin Chadwell				-Wpacked-bitfield-compat -Wshift-overflow=2 \
259d7b4cd41SJustin Chadwell				-Wlogical-op
260dea23e24SGovindraj Raja
261dea23e24SGovindraj Raja# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
262316f5c97SBoyan KaratotevTF_CFLAGS_MIN_PAGE_SIZE	:=	$(call cc_option, --param=min-pagesize=0)
263316f5c97SBoyan KaratotevTF_CFLAGS		+=	$(TF_CFLAGS_MIN_PAGE_SIZE)
264dea23e24SGovindraj Raja
265538516f5SBipin Raviifeq ($(HARDEN_SLS), 1)
266316f5c97SBoyan Karatotev        TF_CFLAGS_MHARDEN_SLS	:=      $(call cc_option, -mharden-sls=all)
267316f5c97SBoyan Karatotev        TF_CFLAGS_aarch64	+=      $(TF_CFLAGS_MHARDEN_SLS)
268538516f5SBipin Raviendif
269538516f5SBipin Ravi
27093c690ebSJustin Chadwellelse
27193c690ebSJustin Chadwell# using clang
272d7b4cd41SJustin ChadwellWARNINGS	+=		-Wshift-overflow -Wshift-sign-overflow \
273d7b4cd41SJustin Chadwell				-Wlogical-op-parentheses
274c5e1da83SJayanth Dodderi Chidanandendif #(Clang Warning)
27500296576SAmbroise Vincent
2766336b07aSYann Gautierifneq (${E},0)
2776336b07aSYann Gautier	ERRORS := -Werror
278c5e1da83SJayanth Dodderi Chidanandendif #(E)
2796336b07aSYann Gautier
280c5e1da83SJayanth Dodderi Chidanand################################################################################
281c5e1da83SJayanth Dodderi Chidanand# Compiler and Linker Directives
282c5e1da83SJayanth Dodderi Chidanand################################################################################
283ea7a57a3SRoberto VargasCPPFLAGS		=	${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc	\
2849ab81b5eSJustin Chadwell				$(ERRORS) $(WARNINGS)
285d4089fb8SGovindraj RajaASFLAGS			+=	$(CPPFLAGS)                 			\
286d5dfdeb6SJulius Werner				-ffreestanding -Wa,--fatal-warnings
28759de5096SMasahiro YamadaTF_CFLAGS		+=	$(CPPFLAGS) $(TF_CFLAGS_$(ARCH))		\
288ebd6efaeSSamuel Holland				-ffunction-sections -fdata-sections		\
289ee0c5b8cSBoyan Karatotev				-ffreestanding -fno-common			\
290ebd6efaeSSamuel Holland				-Os -std=gnu99
29173c99d4eSJuan Castillo
2921f461979SJustin Chadwellifeq (${SANITIZE_UB},on)
2931f461979SJustin Chadwell	TF_CFLAGS	+=	-fsanitize=undefined -fno-sanitize-recover
294c5e1da83SJayanth Dodderi Chidanandendif #(${SANITIZE_UB},on)
295c5e1da83SJayanth Dodderi Chidanand
2961f461979SJustin Chadwellifeq (${SANITIZE_UB},trap)
2971f461979SJustin Chadwell	TF_CFLAGS	+=	-fsanitize=undefined -fno-sanitize-recover	\
2981f461979SJustin Chadwell				-fsanitize-undefined-trap-on-error
299c5e1da83SJayanth Dodderi Chidanandendif #(${SANITIZE_UB},trap)
3001f461979SJustin Chadwell
301291e7182SChris KayGCC_V_OUTPUT		:=	$(if $($(ARCH)-cc),$(shell $($(ARCH)-cc) -v 2>&1))
302f7ec31dbSdavid cunado
3031f49db5fSMarco FelschTF_LDFLAGS		+=	-z noexecstack
3041f49db5fSMarco Felsch
305641f16e7SAmbroise Vincent# LD = armlink
3068620bd0bSChris Kayifeq ($($(ARCH)-ld-id),arm-link)
307c2ad38ceSVarun Wadekar	TF_LDFLAGS		+=	--diag_error=warning --lto_level=O1
308c2ad38ceSVarun Wadekar	TF_LDFLAGS		+=	--remove --info=unused,unusedsymbols
309edbce9aaSzelalem-aweke	TF_LDFLAGS		+=	$(TF_LDFLAGS_$(ARCH))
310641f16e7SAmbroise Vincent
311641f16e7SAmbroise Vincent# LD = gcc (used when GCC LTO is enabled)
3128620bd0bSChris Kayelse ifeq ($($(ARCH)-ld-id),gnu-gcc)
313edbce9aaSzelalem-aweke	# Pass ld options with Wl or Xlinker switches
31486e489c1SChris Kay	TF_LDFLAGS		+=	$(call ld_option,-Xlinker --no-warn-rwx-segments)
315edbce9aaSzelalem-aweke	TF_LDFLAGS		+=	-Wl,--fatal-warnings -O1
316edbce9aaSzelalem-aweke	TF_LDFLAGS		+=	-Wl,--gc-sections
317ac98b82aSChris Kay
318ac98b82aSChris Kay	TF_LDFLAGS		+=	-Wl,-z,common-page-size=4096 #Configure page size constants
319ac98b82aSChris Kay	TF_LDFLAGS		+=	-Wl,-z,max-page-size=4096
320304ad94bSAndrey Skvortsov	TF_LDFLAGS		+=	-Wl,--build-id=none
321ac98b82aSChris Kay
322edbce9aaSzelalem-aweke	ifeq ($(ENABLE_LTO),1)
323edbce9aaSzelalem-aweke		ifeq (${ARCH},aarch64)
324edbce9aaSzelalem-aweke			TF_LDFLAGS	+=	-flto -fuse-linker-plugin
32531f80efeSAndrey Skvortsov			TF_LDFLAGS      +=	-flto-partition=one
326edbce9aaSzelalem-aweke		endif
327c5e1da83SJayanth Dodderi Chidanand	endif #(ENABLE_LTO)
328c5e1da83SJayanth Dodderi Chidanand
329edbce9aaSzelalem-aweke# GCC automatically adds fix-cortex-a53-843419 flag when used to link
330edbce9aaSzelalem-aweke# which breaks some builds, so disable if errata fix is not explicitly enabled
331cfe6767fSYann Gautier	ifeq (${ARCH},aarch64)
332edbce9aaSzelalem-aweke		ifneq (${ERRATA_A53_843419},1)
333edbce9aaSzelalem-aweke			TF_LDFLAGS	+= 	-mno-fix-cortex-a53-843419
334edbce9aaSzelalem-aweke		endif
335cfe6767fSYann Gautier	endif
336edbce9aaSzelalem-aweke	TF_LDFLAGS		+= 	-nostdlib
337edbce9aaSzelalem-aweke	TF_LDFLAGS		+=	$(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
338641f16e7SAmbroise Vincent
339641f16e7SAmbroise Vincent# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
340c2ad38ceSVarun Wadekarelse
3411f49db5fSMarco Felsch# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
3421f49db5fSMarco Felsch# are not loaded by a elf loader.
3431f49db5fSMarco Felsch	TF_LDFLAGS		+=	$(call ld_option, --no-warn-rwx-segments)
344ebac6922SYabin Cui	TF_LDFLAGS		+=	-O1
345c2b8806fSDouglas Raillard	TF_LDFLAGS		+=	--gc-sections
346ac98b82aSChris Kay
347ac98b82aSChris Kay	TF_LDFLAGS		+=	-z common-page-size=4096 # Configure page size constants
348ac98b82aSChris Kay	TF_LDFLAGS		+=	-z max-page-size=4096
349304ad94bSAndrey Skvortsov	TF_LDFLAGS		+=	--build-id=none
350ac98b82aSChris Kay
351641f16e7SAmbroise Vincent# ld.lld doesn't recognize the errata flags,
352ebac6922SYabin Cui# therefore don't add those in that case.
353ebac6922SYabin Cui# ld.lld reports section type mismatch warnings,
354ebac6922SYabin Cui# therefore don't add --fatal-warnings to it.
3558620bd0bSChris Kay	ifneq ($($(ARCH)-ld-id),llvm-lld)
356ebac6922SYabin Cui		TF_LDFLAGS	+=	$(TF_LDFLAGS_$(ARCH)) --fatal-warnings
357edbce9aaSzelalem-aweke	endif
358c5e1da83SJayanth Dodderi Chidanand
359c5e1da83SJayanth Dodderi Chidanandendif #(LD = armlink)
36073c99d4eSJuan Castillo
36173c99d4eSJuan Castillo################################################################################
362f5211420SGovindraj Raja# Setup ARCH_MAJOR/MINOR before parsing arch_features.
363f5211420SGovindraj Raja################################################################################
364f5211420SGovindraj Rajaifeq (${ENABLE_RME},1)
3657d5fc98fSAlexeiFedorov	ARM_ARCH_MAJOR := 9
3667d5fc98fSAlexeiFedorov	ARM_ARCH_MINOR := 2
367f5211420SGovindraj Rajaendif
368f5211420SGovindraj Raja
369f5211420SGovindraj Raja################################################################################
37073c99d4eSJuan Castillo# Common sources and include directories
37173c99d4eSJuan Castillo################################################################################
372d801fbb0Sdp-arminclude lib/compiler-rt/compiler-rt.mk
37373c99d4eSJuan Castillo
374758ccb80SChris Kay# Allow overriding the timestamp, for example for reproducible builds, or to
375758ccb80SChris Kay# synchronize timestamps across multiple projects.
376758ccb80SChris Kay# This must be set to a C string (including quotes where applicable).
377758ccb80SChris KayBUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__
378758ccb80SChris Kay
379758ccb80SChris KayDEFINES += -DBUILD_MESSAGE_TIMESTAMP='$(BUILD_MESSAGE_TIMESTAMP)'
380758ccb80SChris KayDEFINES += -DBUILD_MESSAGE_VERSION_STRING='"$(VERSION_STRING)"'
381758ccb80SChris KayDEFINES += -DBUILD_MESSAGE_VERSION='"$(VERSION)"'
382758ccb80SChris Kay
38373c99d4eSJuan CastilloBL_COMMON_SOURCES	+=	common/bl_common.c			\
3847f56e9a3SSoby Mathew				common/tf_log.c				\
3859d29c227SSoby Mathew				common/${ARCH}/debug.S			\
38691b48c9fSJulius Werner				drivers/console/multi_console.c		\
3879d29c227SSoby Mathew				lib/${ARCH}/cache_helpers.S		\
3889d29c227SSoby Mathew				lib/${ARCH}/misc_helpers.S		\
389c73686a1SBoyan Karatotev				lib/extensions/pmuv3/${ARCH}/pmuv3.c	\
390566034fcSSoby Mathew				plat/common/plat_bl_common.c		\
3917f56e9a3SSoby Mathew				plat/common/plat_log_common.c		\
39275311203Sdp-arm				plat/common/${ARCH}/plat_common.c	\
3939d29c227SSoby Mathew				plat/common/${ARCH}/platform_helpers.S	\
39461f72a34SRoberto Vargas				${COMPILER_RT_SRCS}
395d7a6b0f8SRyan Harkin
3968620bd0bSChris Kayifeq ($($(ARCH)-cc-id),arm-clang)
3978422a840SAntonio Nino Diaz	BL_COMMON_SOURCES	+=	lib/${ARCH}/armclang_printf.S
3988422a840SAntonio Nino Diazendif
3998422a840SAntonio Nino Diaz
4001f461979SJustin Chadwellifeq (${SANITIZE_UB},on)
4011f461979SJustin Chadwell	BL_COMMON_SOURCES	+=	plat/common/ubsan.c
4021f461979SJustin Chadwellendif
4031f461979SJustin Chadwell
40401d237cbSYann GautierINCLUDES		+=	-Iinclude				\
405f5478dedSAntonio Nino Diaz				-Iinclude/arch/${ARCH}			\
40609d40e0eSAntonio Nino Diaz				-Iinclude/lib/cpus/${ARCH}		\
40709d40e0eSAntonio Nino Diaz				-Iinclude/lib/el3_runtime/${ARCH}	\
40809d40e0eSAntonio Nino Diaz				${PLAT_INCLUDES}			\
40909d40e0eSAntonio Nino Diaz				${SPD_INCLUDES}
41009d40e0eSAntonio Nino Diaz
411e03dcc8fSNishant SharmaDTC_FLAGS		+=	-I dts -O dtb
412e03dcc8fSNishant SharmaDTC_CPPFLAGS		+=	-P -nostdinc $(INCLUDES) -Ifdts -undef \
413e03dcc8fSNishant Sharma				-x assembler-with-cpp $(DEFINES)
414e03dcc8fSNishant Sharma
4159c6d1c50SAntonio Nino Diazinclude common/backtrace/backtrace.mk
4169c6d1c50SAntonio Nino Diaz
41773c99d4eSJuan Castillo################################################################################
4183547270fSGovindraj Raja# Generic definitions
4193547270fSGovindraj Raja################################################################################
4203547270fSGovindraj Raja
4213547270fSGovindraj Rajaifeq (${BUILD_BASE},)
4223547270fSGovindraj Raja     BUILD_BASE		:=	./build
4233547270fSGovindraj Rajaendif
4243547270fSGovindraj RajaBUILD_PLAT		:=	$(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
4253547270fSGovindraj Raja
4263547270fSGovindraj RajaSPDS			:=	$(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
4273547270fSGovindraj Raja
4283547270fSGovindraj Raja# Platforms providing their own TBB makefile may override this value
4293547270fSGovindraj RajaINCLUDE_TBBR_MK		:=	1
4303547270fSGovindraj Raja
4313547270fSGovindraj Raja################################################################################
4323547270fSGovindraj Raja# Include SPD Makefile if one has been specified
4333547270fSGovindraj Raja################################################################################
4343547270fSGovindraj Raja
4353547270fSGovindraj Rajaifneq (${SPD},none)
4363547270fSGovindraj Raja	ifeq (${SPD},spmd)
4373547270fSGovindraj Raja	# SPMD is located in std_svc directory
4383547270fSGovindraj Raja		SPD_DIR := std_svc
4393547270fSGovindraj Raja
4403547270fSGovindraj Raja		ifeq ($(SPMD_SPM_AT_SEL2),1)
4413547270fSGovindraj Raja			CTX_INCLUDE_EL2_REGS := 1
4423547270fSGovindraj Raja		endif
4433547270fSGovindraj Raja
4443547270fSGovindraj Raja		ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
4453547270fSGovindraj Raja			DTC_CPPFLAGS	+=	-DOPTEE_SP_FW_CONFIG
4463547270fSGovindraj Raja		endif
4473547270fSGovindraj Raja
4480686a01bSArunachalam Ganapathy		ifeq ($(findstring trusty_sp,$(ARM_SPMC_MANIFEST_DTS)),trusty_sp)
4490686a01bSArunachalam Ganapathy			DTC_CPPFLAGS	+=	-DTRUSTY_SP_FW_CONFIG
4500686a01bSArunachalam Ganapathy		endif
4510686a01bSArunachalam Ganapathy
4523547270fSGovindraj Raja		ifeq ($(TS_SP_FW_CONFIG),1)
4533547270fSGovindraj Raja			DTC_CPPFLAGS	+=	-DTS_SP_FW_CONFIG
4543547270fSGovindraj Raja		endif
4553547270fSGovindraj Raja
4563547270fSGovindraj Raja		ifneq ($(ARM_BL2_SP_LIST_DTS),)
4573547270fSGovindraj Raja		DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
4583547270fSGovindraj Raja		endif
4593547270fSGovindraj Raja
4603547270fSGovindraj Raja		ifneq ($(SP_LAYOUT_FILE),)
4613547270fSGovindraj Raja		BL2_ENABLE_SP_LOAD := 1
4623547270fSGovindraj Raja		endif
4633547270fSGovindraj Raja	else
4643547270fSGovindraj Raja		# All other SPDs in spd directory
4653547270fSGovindraj Raja		SPD_DIR := spd
4663547270fSGovindraj Raja	endif #(SPD)
4673547270fSGovindraj Raja
4683547270fSGovindraj Raja	# We expect to locate an spd.mk under the specified SPD directory
4693547270fSGovindraj Raja	SPD_MAKE	:=	$(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
4703547270fSGovindraj Raja
4713547270fSGovindraj Raja	ifeq (${SPD_MAKE},)
4723547270fSGovindraj Raja                $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
4733547270fSGovindraj Raja	endif
4743547270fSGovindraj Raja        $(info Including ${SPD_MAKE})
4753547270fSGovindraj Raja        include ${SPD_MAKE}
4763547270fSGovindraj Raja
4773547270fSGovindraj Raja	# If there's BL32 companion for the chosen SPD, we expect that the SPD's
4783547270fSGovindraj Raja	# Makefile would set NEED_BL32 to "yes". In this case, the build system
4793547270fSGovindraj Raja	# supports two mutually exclusive options:
4803547270fSGovindraj Raja	# * BL32 is built from source: then BL32_SOURCES must contain the list
4813547270fSGovindraj Raja	#   of source files to build BL32
4823547270fSGovindraj Raja	# * BL32 is a prebuilt binary: then BL32 must point to the image file
4833547270fSGovindraj Raja	#   that will be included in the FIP
4843547270fSGovindraj Raja	# If both BL32_SOURCES and BL32 are defined, the binary takes precedence
4853547270fSGovindraj Raja	# over the sources.
4863547270fSGovindraj Rajaendif #(SPD=none)
4873547270fSGovindraj Raja
4883547270fSGovindraj Raja################################################################################
489696ed168SOlivier Deprez# Include the platform specific Makefile after the SPD Makefile (the platform
490696ed168SOlivier Deprez# makefile may use all previous definitions in this file)
491696ed168SOlivier Deprez################################################################################
492696ed168SOlivier Deprezinclude ${PLAT_MAKEFILE_FULL}
493696ed168SOlivier Deprez
494696ed168SOlivier Deprez################################################################################
495f5211420SGovindraj Raja# Process BRANCH_PROTECTION value and set
496f5211420SGovindraj Raja# Pointer Authentication and Branch Target Identification flags
497f5211420SGovindraj Raja################################################################################
498f5211420SGovindraj Rajaifeq (${BRANCH_PROTECTION},0)
499f5211420SGovindraj Raja	# Default value turns off all types of branch protection
500f5211420SGovindraj Raja	BP_OPTION := none
501f5211420SGovindraj Rajaelse ifneq (${ARCH},aarch64)
502f5211420SGovindraj Raja        $(error BRANCH_PROTECTION requires AArch64)
503f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},1)
504f5211420SGovindraj Raja	# Enables all types of branch protection features
505f5211420SGovindraj Raja	BP_OPTION := standard
506f5211420SGovindraj Raja	ENABLE_BTI := 1
507f5211420SGovindraj Raja	ENABLE_PAUTH := 1
508f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},2)
509f5211420SGovindraj Raja	# Return address signing to its standard level
510f5211420SGovindraj Raja	BP_OPTION := pac-ret
511f5211420SGovindraj Raja	ENABLE_PAUTH := 1
512f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},3)
513f5211420SGovindraj Raja	# Extend the signing to include leaf functions
514f5211420SGovindraj Raja	BP_OPTION := pac-ret+leaf
515f5211420SGovindraj Raja	ENABLE_PAUTH := 1
516f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},4)
517f5211420SGovindraj Raja	# Turn on branch target identification mechanism
518f5211420SGovindraj Raja	BP_OPTION := bti
519f5211420SGovindraj Raja	ENABLE_BTI := 1
520f5211420SGovindraj Rajaelse
521f5211420SGovindraj Raja        $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
522f5211420SGovindraj Rajaendif #(BRANCH_PROTECTION)
523f5211420SGovindraj Raja
524f5211420SGovindraj Rajaifeq ($(ENABLE_PAUTH),1)
525f5211420SGovindraj Raja	CTX_INCLUDE_PAUTH_REGS := 1
526f5211420SGovindraj Rajaendif
527f5211420SGovindraj Rajaifneq (${BP_OPTION},none)
528f5211420SGovindraj Raja	TF_CFLAGS_aarch64	+=	-mbranch-protection=${BP_OPTION}
529f5211420SGovindraj Rajaendif #(BP_OPTION)
530f5211420SGovindraj Raja
531f5211420SGovindraj Raja# Pointer Authentication sources
532f5211420SGovindraj Rajaifeq (${ENABLE_PAUTH}, 1)
533f5211420SGovindraj Raja# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
534f5211420SGovindraj Raja# Pauth support. As it's not secure, it must be reimplemented for real platforms
535f5211420SGovindraj Raja	BL_COMMON_SOURCES	+=	lib/extensions/pauth/pauth_helpers.S
536f5211420SGovindraj Rajaendif
537f5211420SGovindraj Raja
5383547270fSGovindraj Raja################################################################################
5393547270fSGovindraj Raja# Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from
5403547270fSGovindraj Raja# platform.
5413547270fSGovindraj Raja################################################################################
5423547270fSGovindraj Rajainclude ${MAKE_HELPERS_DIRECTORY}arch_features.mk
5433547270fSGovindraj Raja
544f5211420SGovindraj Raja####################################################
545f5211420SGovindraj Raja# Enable required options for Memory Stack Tagging.
546f5211420SGovindraj Raja####################################################
547f5211420SGovindraj Raja
548f5211420SGovindraj Raja# Currently, these options are enabled only for clang and armclang compiler.
549f5211420SGovindraj Rajaifeq (${SUPPORT_STACK_MEMTAG},yes)
550f5211420SGovindraj Raja    ifdef mem_tag_arch_support
551f5211420SGovindraj Raja        # Check for armclang and clang compilers
5528620bd0bSChris Kay        ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
553f5211420SGovindraj Raja        # Add "memtag" architecture feature modifier if not specified
554f5211420SGovindraj Raja            ifeq ( ,$(findstring memtag,$(arch-features)))
555f5211420SGovindraj Raja                arch-features	:=	$(arch-features)+memtag
556f5211420SGovindraj Raja            endif	# memtag
5578620bd0bSChris Kay            ifeq ($($(ARCH)-cc-id),arm-clang)
558f5211420SGovindraj Raja                TF_CFLAGS	+=	-mmemtag-stack
5598620bd0bSChris Kay            else ifeq ($($(ARCH)-cc-id),llvm-clang)
560f5211420SGovindraj Raja                TF_CFLAGS	+=	-fsanitize=memtag
561f5211420SGovindraj Raja            endif	# armclang
562f5211420SGovindraj Raja        endif
563f5211420SGovindraj Raja    else
564f5211420SGovindraj Raja        $(error "Error: stack memory tagging is not supported for  \
565f5211420SGovindraj Raja        architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
566f5211420SGovindraj Raja	endif #(mem_tag_arch_support)
567f5211420SGovindraj Rajaendif #(SUPPORT_STACK_MEMTAG)
568f5211420SGovindraj Raja
569f5211420SGovindraj Raja################################################################################
570f5211420SGovindraj Raja# RME dependent flags configuration, Enable optional features for RME.
571f5211420SGovindraj Raja################################################################################
572f5211420SGovindraj Raja# FEAT_RME
573f5211420SGovindraj Rajaifeq (${ENABLE_RME},1)
574f5211420SGovindraj Raja	# RME requires AARCH64
575f5211420SGovindraj Raja	ifneq (${ARCH},aarch64)
576f5211420SGovindraj Raja                $(error ENABLE_RME requires AArch64)
577f5211420SGovindraj Raja	endif
578f5211420SGovindraj Raja
579f5211420SGovindraj Raja	# RME requires el2 context to be saved for now.
580f5211420SGovindraj Raja	CTX_INCLUDE_EL2_REGS := 1
581f5211420SGovindraj Raja	CTX_INCLUDE_AARCH32_REGS := 0
582f5211420SGovindraj Raja	CTX_INCLUDE_PAUTH_REGS := 1
583f5211420SGovindraj Raja
584d048af0dSJavier Almansa Sobrino	ifneq ($(ENABLE_FEAT_MPAM), 0)
585d048af0dSJavier Almansa Sobrino		CTX_INCLUDE_MPAM_REGS := 1
586d048af0dSJavier Almansa Sobrino	endif
587d048af0dSJavier Almansa Sobrino
588f5211420SGovindraj Raja	# RME enables CSV2_2 extension by default.
589f5211420SGovindraj Raja	ENABLE_FEAT_CSV2_2 = 1
590f5211420SGovindraj Rajaendif #(FEAT_RME)
591f5211420SGovindraj Raja
592f5211420SGovindraj Raja################################################################################
5935b18de09SZelalem Aweke# Include rmmd Makefile if RME is enabled
5945b18de09SZelalem Aweke################################################################################
5955b18de09SZelalem Awekeifneq (${ENABLE_RME},0)
5965b18de09SZelalem Aweke	ifneq (${ARCH},aarch64)
5975b18de09SZelalem Aweke                $(error ENABLE_RME requires AArch64)
5985b18de09SZelalem Aweke	endif
5991d63ae4dSMarc Bonnici	ifeq ($(SPMC_AT_EL3),1)
6001d63ae4dSMarc Bonnici                $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
6011d63ae4dSMarc Bonnici	endif
602c5e1da83SJayanth Dodderi Chidanand
6034fba2e1fSBoyan Karatotev	ifneq (${SPD}, none)
6044fba2e1fSBoyan Karatotev		ifneq (${SPD}, spmd)
6054fba2e1fSBoyan Karatotev                        $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
6064fba2e1fSBoyan Karatotev		endif
6074fba2e1fSBoyan Karatotev	endif
6085b18de09SZelalem Awekeinclude services/std_svc/rmmd/rmmd.mk
6095b18de09SZelalem Aweke$(warning "RME is an experimental feature")
6105b18de09SZelalem Awekeendif
6115b18de09SZelalem Aweke
6123547270fSGovindraj Rajaifeq (${CTX_INCLUDE_EL2_REGS}, 1)
6133547270fSGovindraj Raja	ifeq (${SPD},none)
6143547270fSGovindraj Raja		ifeq (${ENABLE_RME},0)
6153547270fSGovindraj Raja                        $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
6163547270fSGovindraj Raja                        or RME is enabled)
6173547270fSGovindraj Raja		endif
6183547270fSGovindraj Raja	endif
6193547270fSGovindraj Rajaendif
6200f21c547SJuan Castillo
6217794d6c8SGovindraj Raja################################################################################
6227e84f3cfSTushar Khandelwal# Verify FEAT_RME, FEAT_SCTLR2 and FEAT_TCR2 are enabled if FEAT_MEC is enabled.
6237e84f3cfSTushar Khandelwal################################################################################
6247e84f3cfSTushar Khandelwal
6257e84f3cfSTushar Khandelwalifneq (${ENABLE_FEAT_MEC},0)
6267e84f3cfSTushar Khandelwal    ifeq (${ENABLE_RME},0)
6277e84f3cfSTushar Khandelwal        $(error FEAT_RME must be enabled when FEAT_MEC is enabled.)
6287e84f3cfSTushar Khandelwal    endif
6297e84f3cfSTushar Khandelwal    ifeq (${ENABLE_FEAT_TCR2},0)
6307e84f3cfSTushar Khandelwal        $(error FEAT_TCR2 must be enabled when FEAT_MEC is enabled.)
6317e84f3cfSTushar Khandelwal    endif
6327e84f3cfSTushar Khandelwal    ifeq (${ENABLE_FEAT_SCTLR2},0)
6337e84f3cfSTushar Khandelwal        $(error FEAT_SCTLR2 must be enabled when FEAT_MEC is enabled.)
6347e84f3cfSTushar Khandelwal    endif
6357e84f3cfSTushar Khandelwalendif
6367e84f3cfSTushar Khandelwal
6377e84f3cfSTushar Khandelwal################################################################################
63830655136SGovindraj Raja# Make 128-Bit sysreg read/writes availabe when FEAT_D128 is enabled.
63930655136SGovindraj Raja################################################################################
64030655136SGovindraj Rajaifneq (${ENABLE_FEAT_D128}, 0)
64130655136SGovindraj Raja        BL_COMMON_SOURCES       +=      lib/extensions/sysreg128/sysreg128.S
64230655136SGovindraj Rajaendif
64330655136SGovindraj Raja
64430655136SGovindraj Raja################################################################################
6457794d6c8SGovindraj Raja# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
6467794d6c8SGovindraj Raja# up with appropriate march values for compiler.
6477794d6c8SGovindraj Raja################################################################################
6487794d6c8SGovindraj Rajainclude ${MAKE_HELPERS_DIRECTORY}march.mk
6497794d6c8SGovindraj Raja
6507794d6c8SGovindraj RajaTF_CFLAGS   +=	$(march-directive)
6517275ac2aSGovindraj RajaASFLAGS		+=	$(march-directive)
6527794d6c8SGovindraj Raja
65342d4d3baSArvind Ram Prakash# This internal flag is common option which is set to 1 for scenarios
65442d4d3baSArvind Ram Prakash# when the BL2 is running in EL3 level. This occurs in two scenarios -
65542d4d3baSArvind Ram Prakash# 4 world system running BL2 at EL3 and two world system without BL1 running
65642d4d3baSArvind Ram Prakash# BL2 in EL3
65742d4d3baSArvind Ram Prakash
65842d4d3baSArvind Ram Prakashifeq (${RESET_TO_BL2},1)
65942d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	1
66042d4d3baSArvind Ram Prakash	ifeq (${ENABLE_RME},1)
661c5e1da83SJayanth Dodderi Chidanand                $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
662c5e1da83SJayanth Dodderi Chidanand                supported at the moment.)
66342d4d3baSArvind Ram Prakash	endif
66442d4d3baSArvind Ram Prakashelse ifeq (${ENABLE_RME},1)
66542d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	1
66642d4d3baSArvind Ram Prakashelse
66742d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	0
66842d4d3baSArvind Ram Prakashendif
66942d4d3baSArvind Ram Prakash
670f87e54f7SManish Pandey# This internal flag is set to 1 when Firmware First handling of External aborts
671f87e54f7SManish Pandey# is required by lowe ELs. Currently only NS requires this support.
672f87e54f7SManish Pandeyifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
673f87e54f7SManish Pandey	FFH_SUPPORT := 1
674f87e54f7SManish Pandeyelse
675f87e54f7SManish Pandey	FFH_SUPPORT := 0
676f87e54f7SManish Pandeyendif
677f87e54f7SManish Pandey
67826e63c44SEtienne Carriereifeq (${ARM_ARCH_MAJOR},7)
67926e63c44SEtienne Carriereinclude make_helpers/armv7-a-cpus.mk
68026e63c44SEtienne Carriereendif
68126e63c44SEtienne Carriere
6823bd17c0fSSoby MathewPIE_FOUND		:=	$(findstring --enable-default-pie,${GCC_V_OUTPUT})
6833bd17c0fSSoby Mathewifneq ($(PIE_FOUND),)
6843bd17c0fSSoby Mathew	TF_CFLAGS	+=	-fno-PIE
6858620bd0bSChris Kayifeq ($($(ARCH)-ld-id),gnu-gcc)
6867b592418SSamuel Holland	TF_LDFLAGS	+=	-no-pie
6877b592418SSamuel Hollandendif
688c5e1da83SJayanth Dodderi Chidanandendif #(PIE_FOUND)
689320920c1SMasahiro Yamada
6908620bd0bSChris Kayifeq ($($(ARCH)-ld-id),gnu-gcc)
691320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-Wl,-pie -Wl,--no-dynamic-linker
692320920c1SMasahiro Yamadaelse
693320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-pie --no-dynamic-linker
694320920c1SMasahiro Yamadaendif
695320920c1SMasahiro Yamada
696320920c1SMasahiro Yamadaifeq ($(ENABLE_PIE),1)
69742d4d3baSArvind Ram Prakash	ifeq ($(RESET_TO_BL2),1)
69869af7fcfSMasahiro Yamada		ifneq ($(BL2_IN_XIP_MEM),1)
699966660ecSChris Kay			BL2_CPPFLAGS	+=	-fpie
70069af7fcfSMasahiro Yamada			BL2_CFLAGS	+=	-fpie
70169af7fcfSMasahiro Yamada			BL2_LDFLAGS	+=	$(PIE_LDFLAGS)
702c5e1da83SJayanth Dodderi Chidanand		endif #(BL2_IN_XIP_MEM)
703c5e1da83SJayanth Dodderi Chidanand	endif #(RESET_TO_BL2)
704966660ecSChris Kay	BL31_CPPFLAGS	+=	-fpie
705320920c1SMasahiro Yamada	BL31_CFLAGS 	+=	-fpie
706320920c1SMasahiro Yamada	BL31_LDFLAGS	+=	$(PIE_LDFLAGS)
707966660ecSChris Kay
708966660ecSChris Kay	BL32_CPPFLAGS	+=	-fpie
709d974301dSMasahiro Yamada	BL32_CFLAGS	+=	-fpie
710d974301dSMasahiro Yamada	BL32_LDFLAGS	+=	$(PIE_LDFLAGS)
711c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_PIE)
7123bd17c0fSSoby Mathew
713007433d8SBoyan KaratotevBL1_CPPFLAGS  += -DREPORT_ERRATA=${DEBUG}
714007433d8SBoyan KaratotevBL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
715007433d8SBoyan KaratotevBL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
716007433d8SBoyan Karatotev
7179cefb4b1SMasahiro YamadaBL1_CPPFLAGS += -DIMAGE_AT_EL3
71842d4d3baSArvind Ram Prakashifeq ($(RESET_TO_BL2),1)
7199cefb4b1SMasahiro Yamada	BL2_CPPFLAGS += -DIMAGE_AT_EL3
720d5e97a1dSMasahiro Yamadaelse
7219cefb4b1SMasahiro Yamada	BL2_CPPFLAGS += -DIMAGE_AT_EL1
722c5e1da83SJayanth Dodderi Chidanandendif #(RESET_TO_BL2)
723007433d8SBoyan Karatotev
724007433d8SBoyan Karatotevifeq (${ARCH},aarch64)
7259cefb4b1SMasahiro Yamada	BL2U_CPPFLAGS += -DIMAGE_AT_EL1
7269cefb4b1SMasahiro Yamada	BL31_CPPFLAGS += -DIMAGE_AT_EL3
7279cefb4b1SMasahiro Yamada	BL32_CPPFLAGS += -DIMAGE_AT_EL1
728007433d8SBoyan Karatotevelse
729007433d8SBoyan Karatotev	BL32_CPPFLAGS += -DIMAGE_AT_EL3
730d5e97a1dSMasahiro Yamadaendif
731d5e97a1dSMasahiro Yamada
73254035fc4SSandrine Bailleux# Include the CPU specific operations makefile, which provides default
73354035fc4SSandrine Bailleux# values for all CPU errata workarounds and CPU specific optimisations.
73454035fc4SSandrine Bailleux# This can be overridden by the platform.
73573c99d4eSJuan Castilloinclude lib/cpus/cpu-ops.mk
7364f6ad66aSAchin Gupta
737a4409008Sdp-arm################################################################################
738a4409008Sdp-arm# Build `AARCH32_SP` as BL32 image for AArch32
739a4409008Sdp-arm################################################################################
740c5e1da83SJayanth Dodderi Chidanandifeq (${ARCH},aarch32)
741c5e1da83SJayanth Dodderi Chidanand        NEED_BL32 := yes
742c5e1da83SJayanth Dodderi Chidanand
743a4409008Sdp-arm        ifneq (${AARCH32_SP},none)
744a4409008Sdp-arm        # We expect to locate an sp.mk under the specified AARCH32_SP directory
745a4409008Sdp-arm		AARCH32_SP_MAKE	:=	$(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
746a4409008Sdp-arm
747a4409008Sdp-arm                ifeq (${AARCH32_SP_MAKE},)
748a4409008Sdp-arm                        $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
749a4409008Sdp-arm                endif
750a4409008Sdp-arm                $(info Including ${AARCH32_SP_MAKE})
751a4409008Sdp-arm                include ${AARCH32_SP_MAKE}
752a4409008Sdp-arm        endif
753c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch32)
7544f6ad66aSAchin Gupta
75573c99d4eSJuan Castillo################################################################################
75677f1f7a1SVarun Wadekar# Include libc if not overridden
75777f1f7a1SVarun Wadekar################################################################################
75877f1f7a1SVarun Wadekarifeq (${OVERRIDE_LIBC},0)
75977f1f7a1SVarun Wadekarinclude lib/libc/libc.mk
76077f1f7a1SVarun Wadekarendif
76177f1f7a1SVarun Wadekar
76277f1f7a1SVarun Wadekar################################################################################
763c5e1da83SJayanth Dodderi Chidanand# Check incompatible options and dependencies
764cf2c8a33SAntonio Nino Diaz################################################################################
765cf2c8a33SAntonio Nino Diaz
766a0effb91SGovindraj Raja# Handle all invalid build configurations with SPMD usage.
767a0effb91SGovindraj Rajaifeq (${ENABLE_SPMD_LP}, 1)
768a0effb91SGovindraj Rajaifneq (${SPD},spmd)
769a0effb91SGovindraj Raja	$(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
770a0effb91SGovindraj Rajaendif
771a0effb91SGovindraj Rajaifeq ($(SPMC_AT_EL3),1)
772a0effb91SGovindraj Raja	$(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
773a0effb91SGovindraj Rajaendif
774a0effb91SGovindraj Rajaendif
775a0effb91SGovindraj Raja
776a0effb91SGovindraj Rajaifneq (${SPD},none)
777a0effb91SGovindraj Rajaifeq (${ARCH},aarch32)
778a0effb91SGovindraj Raja	$(error "Error: SPD is incompatible with AArch32.")
779a0effb91SGovindraj Rajaendif
780a0effb91SGovindraj Rajaifdef EL3_PAYLOAD_BASE
781a0effb91SGovindraj Raja	$(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
782a0effb91SGovindraj Raja	$(warning "The SPD and its BL32 companion will be present but ignored.")
783a0effb91SGovindraj Rajaendif
784a0effb91SGovindraj Rajaifeq (${SPD},spmd)
785a0effb91SGovindraj Rajaifeq ($(SPMD_SPM_AT_SEL2),1)
786a0effb91SGovindraj Raja	ifeq ($(SPMC_AT_EL3),1)
787a0effb91SGovindraj Raja		$(error SPM cannot be enabled in both S-EL2 and EL3.)
788a0effb91SGovindraj Raja	endif
789a0effb91SGovindraj Raja	ifeq ($(CTX_INCLUDE_SVE_REGS),1)
790a0effb91SGovindraj Raja		$(error SVE context management not needed with Hafnium SPMC.)
791a0effb91SGovindraj Raja	endif
792a0effb91SGovindraj Rajaendif
793a0effb91SGovindraj Raja
794a0effb91SGovindraj Rajaifeq ($(SPMC_AT_EL3_SEL0_SP),1)
795a0effb91SGovindraj Raja	ifneq ($(SPMC_AT_EL3),1)
796a0effb91SGovindraj Raja		$(error SEL0 SP cannot be enabled without SPMC at EL3)
797a0effb91SGovindraj Raja	endif
798a0effb91SGovindraj Rajaendif
799a0effb91SGovindraj Rajaendif #(SPD=spmd)
800a0effb91SGovindraj Rajaendif #(SPD!=none)
801a0effb91SGovindraj Raja
802c5e1da83SJayanth Dodderi Chidanand# USE_DEBUGFS experimental feature recommended only in debug builds
803c5e1da83SJayanth Dodderi Chidanandifeq (${USE_DEBUGFS},1)
804c5e1da83SJayanth Dodderi Chidanand        ifeq (${DEBUG},1)
805c5e1da83SJayanth Dodderi Chidanand                $(warning DEBUGFS experimental feature is enabled.)
806c5e1da83SJayanth Dodderi Chidanand        else
807c5e1da83SJayanth Dodderi Chidanand                $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
808c5e1da83SJayanth Dodderi Chidanand        endif
809c5e1da83SJayanth Dodderi Chidanandendif #(USE_DEBUGFS)
810c5e1da83SJayanth Dodderi Chidanand
811c5e1da83SJayanth Dodderi Chidanand# USE_SPINLOCK_CAS requires AArch64 build
812c5e1da83SJayanth Dodderi Chidanandifeq (${USE_SPINLOCK_CAS},1)
813c5e1da83SJayanth Dodderi Chidanand        ifneq (${ARCH},aarch64)
814c5e1da83SJayanth Dodderi Chidanand               $(error USE_SPINLOCK_CAS requires AArch64)
815c5e1da83SJayanth Dodderi Chidanand        endif
816c5e1da83SJayanth Dodderi Chidanandendif #(USE_SPINLOCK_CAS)
817c5e1da83SJayanth Dodderi Chidanand
818c5e1da83SJayanth Dodderi Chidanand# The cert_create tool cannot generate certificates individually, so we use the
819c5e1da83SJayanth Dodderi Chidanand# target 'certificates' to create them all
820c5e1da83SJayanth Dodderi Chidanandifneq (${GENERATE_COT},0)
821c5e1da83SJayanth Dodderi Chidanand        FIP_DEPS += certificates
822c5e1da83SJayanth Dodderi Chidanand        FWU_FIP_DEPS += fwu_certificates
823c5e1da83SJayanth Dodderi Chidanandendif
824c5e1da83SJayanth Dodderi Chidanand
825c5e1da83SJayanth Dodderi Chidanandifneq (${DECRYPTION_SUPPORT},none)
826c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -f ${FW_ENC_STATUS}
827c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -k ${ENC_KEY}
828c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -n ${ENC_NONCE}
829c5e1da83SJayanth Dodderi Chidanand	FIP_DEPS += enctool
830c5e1da83SJayanth Dodderi Chidanand	FWU_FIP_DEPS += enctool
831c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
832c5e1da83SJayanth Dodderi Chidanand
833cf2c8a33SAntonio Nino Diazifdef EL3_PAYLOAD_BASE
83468450a6dSAntonio Nino Diaz	ifdef PRELOADED_BL33_BASE
83568450a6dSAntonio Nino Diaz                $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
83668450a6dSAntonio Nino Diaz		incompatible build options. EL3_PAYLOAD_BASE has priority.")
837cf2c8a33SAntonio Nino Diaz	endif
83876580f3dSQixiang Xu	ifneq (${GENERATE_COT},0)
839c5e1da83SJayanth Dodderi Chidanand                $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
840c5e1da83SJayanth Dodderi Chidanand                build options.")
84176580f3dSQixiang Xu	endif
84276580f3dSQixiang Xu	ifneq (${TRUSTED_BOARD_BOOT},0)
843c5e1da83SJayanth Dodderi Chidanand                $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
844c5e1da83SJayanth Dodderi Chidanand                incompatible \ build options.")
84576580f3dSQixiang Xu	endif
846c5e1da83SJayanth Dodderi Chidanandendif #(EL3_PAYLOAD_BASE)
847cf2c8a33SAntonio Nino Diaz
848cf2c8a33SAntonio Nino Diazifeq (${NEED_BL33},yes)
849cf2c8a33SAntonio Nino Diaz	ifdef EL3_PAYLOAD_BASE
850cf2c8a33SAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
851cf2c8a33SAntonio Nino Diaz                BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
852cf2c8a33SAntonio Nino Diaz	endif
85368450a6dSAntonio Nino Diaz	ifdef PRELOADED_BL33_BASE
85468450a6dSAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
855c5e1da83SJayanth Dodderi Chidanand                PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
856cf2c8a33SAntonio Nino Diaz	endif
857c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL33)
858cf2c8a33SAntonio Nino Diaz
859d4593e47SJeenu Viswambharan# When building for systems with hardware-assisted coherency, there's no need to
860d4593e47SJeenu Viswambharan# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
861d4593e47SJeenu Viswambharanifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
862d4593e47SJeenu Viswambharan        $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
863d4593e47SJeenu Viswambharanendif
8641a0a3f06SYatharth Kochar
86542d4d3baSArvind Ram Prakash#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
86642d4d3baSArvind Ram Prakashifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
86742d4d3baSArvind Ram Prakash        $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
8687d173fc5SJiafei Panendif
8697d173fc5SJiafei Pan
8709202d519SManish Pandey# RAS_EXTENSION is deprecated, provide alternate build options
87114c6016aSJeenu Viswambharanifeq ($(RAS_EXTENSION),1)
872c5e1da83SJayanth Dodderi Chidanand        $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
873f87e54f7SManish Pandey        and HANDLE_EA_EL3_FIRST_NS instead")
8749202d519SManish Pandeyendif
875c5e1da83SJayanth Dodderi Chidanand
876c5e1da83SJayanth Dodderi Chidanand
8779202d519SManish Pandey# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
8781a7c1cfeSJeenu Viswambharanifeq ($(FAULT_INJECTION_SUPPORT),1)
8796503ff29SAndre Przywara	ifeq ($(ENABLE_FEAT_RAS),0)
8806503ff29SAndre Przywara                $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
8811a7c1cfeSJeenu Viswambharan	endif
882c5e1da83SJayanth Dodderi Chidanandendif #(FAULT_INJECTION_SUPPORT)
8831a7c1cfeSJeenu Viswambharan
884ed51b51fSRoberto Vargas# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
885209a60ccSSoby Mathewifeq ($(DYN_DISABLE_AUTH), 1)
886209a60ccSSoby Mathew	ifeq (${TRUSTED_BOARD_BOOT}, 0)
887c5e1da83SJayanth Dodderi Chidanand                $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
888c5e1da83SJayanth Dodderi Chidanand                to be set.")
889209a60ccSSoby Mathew	endif
890c5e1da83SJayanth Dodderi Chidanandendif #(DYN_DISABLE_AUTH)
891209a60ccSSoby Mathew
8922bf4f27fSManish V Badarkheifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
8932bf4f27fSManish V Badarkhe# Support authentication verification and hash calculation
8942bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT := 3
8952bf4f27fSManish V Badarkheelse ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
8962bf4f27fSManish V Badarkhe# Support authentication verification and hash calculation
8972bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT := 3
8982bf4f27fSManish V Badarkheelse ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
8992bf4f27fSManish V Badarkhe# Support hash calculation only
9002bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT := 2
9012bf4f27fSManish V Badarkheelse ifeq (${TRUSTED_BOARD_BOOT},1)
9022bf4f27fSManish V Badarkhe# Support authentication verification only
903c9c56f6eSManish V Badarkhe	CRYPTO_SUPPORT := 1
904c9c56f6eSManish V Badarkheelse
905c9c56f6eSManish V Badarkhe	CRYPTO_SUPPORT := 0
906c5e1da83SJayanth Dodderi Chidanandendif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
907c9c56f6eSManish V Badarkhe
908e4a070e3SManish V Badarkheifneq ($(filter 1 2 3,$(CRYPTO_SUPPORT)),)
909e4a070e3SManish V BadarkheCRYPTO_LIB := $(BUILD_PLAT)/lib/libmbedtls.a
910e4a070e3SManish V Badarkheendif
911e4a070e3SManish V Badarkhe
912cbf9e84aSBalint Dobszay# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
913cbf9e84aSBalint Dobszayifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
914700e7685SManish Pandey        $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
91584ef9cd8SManish V Badarkheendif
91684ef9cd8SManish V Badarkhe
917b86048c4SAntonio Nino Diaz# If pointer authentication is used in the firmware, make sure that all the
9189fc59639SAlexei Fedorov# registers associated to it are also saved and restored.
9199fc59639SAlexei Fedorov# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
920b86048c4SAntonio Nino Diazifeq ($(ENABLE_PAUTH),1)
9219fc59639SAlexei Fedorov	ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
9229fc59639SAlexei Fedorov                $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
92306715f85SAlexei Fedorov	endif
924c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_PAUTH)
9259fc59639SAlexei Fedorov
92606715f85SAlexei Fedorovifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
9279fc59639SAlexei Fedorov	ifneq (${ARCH},aarch64)
9289fc59639SAlexei Fedorov                $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
929b86048c4SAntonio Nino Diaz	endif
930c5e1da83SJayanth Dodderi Chidanandendif #(CTX_INCLUDE_PAUTH_REGS)
9319fc59639SAlexei Fedorov
9326a0da736SJayanth Dodderi Chidanandifeq ($(FEATURE_DETECTION),1)
9336a0da736SJayanth Dodderi Chidanand        $(info FEATURE_DETECTION is an experimental feature)
934c5e1da83SJayanth Dodderi Chidanandendif #(FEATURE_DETECTION)
9356a0da736SJayanth Dodderi Chidanand
93603d3c0d7SJayanth Dodderi Chidanandifneq ($(ENABLE_SME2_FOR_NS), 0)
93703d3c0d7SJayanth Dodderi Chidanand	ifeq (${ENABLE_SME_FOR_NS}, 0)
938c5e1da83SJayanth Dodderi Chidanand                $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
939c5e1da83SJayanth Dodderi Chidanand                to be set")
94003d3c0d7SJayanth Dodderi Chidanand                $(warning "Forced ENABLE_SME_FOR_NS=1")
94103d3c0d7SJayanth Dodderi Chidanand		override ENABLE_SME_FOR_NS	:= 1
94203d3c0d7SJayanth Dodderi Chidanand	endif
943c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_SME2_FOR_NS)
94445007acdSJayanth Dodderi Chidanand
94560e8f3cfSPetre-Ionut Tudorifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
94660e8f3cfSPetre-Ionut Tudor	ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
947c5e1da83SJayanth Dodderi Chidanand                $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
948c5e1da83SJayanth Dodderi Chidanand                library v2")
94960e8f3cfSPetre-Ionut Tudor	endif
950c5e1da83SJayanth Dodderi Chidanandendif #(ARM_XLAT_TABLES_LIB_V1)
95160e8f3cfSPetre-Ionut Tudor
9527cda17bbSSumit Gargifneq (${DECRYPTION_SUPPORT},none)
9537cda17bbSSumit Garg	ifeq (${TRUSTED_BOARD_BOOT}, 0)
954c5e1da83SJayanth Dodderi Chidanand                $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
955c5e1da83SJayanth Dodderi Chidanand                to be set)
9567cda17bbSSumit Garg	endif
957c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
9587cda17bbSSumit Garg
959744ad974Sjohpow01# Ensure that no Aarch64-only features are enabled in Aarch32 build
960dc78e62dSjohpow01ifeq (${ARCH},aarch32)
961744ad974Sjohpow01
962744ad974Sjohpow01	# SME/SVE only supported on AArch64
96345007acdSJayanth Dodderi Chidanand	ifneq (${ENABLE_SME_FOR_NS},0)
964dc78e62dSjohpow01                $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
965dc78e62dSjohpow01	endif
96603d3c0d7SJayanth Dodderi Chidanand
967dc78e62dSjohpow01	ifeq (${ENABLE_SVE_FOR_NS},1)
968dc78e62dSjohpow01		# Warning instead of error due to CI dependency on this
96924ab2c0aSYann Gautier                $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
970dc78e62dSjohpow01	endif
971744ad974Sjohpow01
972ff86e0b4SJuan Pablo Conde	# BRBE is not supported in AArch32
973744ad974Sjohpow01	ifeq (${ENABLE_BRBE_FOR_NS},1)
974744ad974Sjohpow01                $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
975744ad974Sjohpow01	endif
976744ad974Sjohpow01
977ff86e0b4SJuan Pablo Conde	# FEAT_RNG_TRAP is not supported in AArch32
978*bc30945bSAndre Przywara	ifneq (${ENABLE_FEAT_RNG_TRAP},0)
979ff86e0b4SJuan Pablo Conde                $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
980ff86e0b4SJuan Pablo Conde	endif
981a57e18e4SArvind Ram Prakash
982a57e18e4SArvind Ram Prakash	ifneq (${ENABLE_FEAT_FPMR},0)
983a57e18e4SArvind Ram Prakash                $(error "ENABLE_FEAT_FPMR cannot be used with ARCH=aarch32")
984a57e18e4SArvind Ram Prakash	endif
9858db17052SBoyan Karatotev
9868db17052SBoyan Karatotev	ifeq (${ARCH_FEATURE_AVAILABILITY},1)
9878db17052SBoyan Karatotev                $(error "ARCH_FEATURE_AVAILABILITY cannot be used with ARCH=aarch32")
9888db17052SBoyan Karatotev	endif
9896b8df7b9SArvind Ram Prakash	# FEAT_MOPS is only supported on AArch64
9906b8df7b9SArvind Ram Prakash	ifneq (${ENABLE_FEAT_MOPS},0)
9916b8df7b9SArvind Ram Prakash		$(error "ENABLE_FEAT_MOPS cannot be used with ARCH=aarch32")
9926b8df7b9SArvind Ram Prakash	endif
993c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch32)
994dc78e62dSjohpow01
995a57e18e4SArvind Ram Prakashifneq (${ENABLE_FEAT_FPMR},0)
996a57e18e4SArvind Ram Prakash	ifeq (${ENABLE_FEAT_FGT},0)
997a57e18e4SArvind Ram Prakash                $(error "ENABLE_FEAT_FPMR requires ENABLE_FEAT_FGT")
998a57e18e4SArvind Ram Prakash	endif
999a57e18e4SArvind Ram Prakash	ifeq (${ENABLE_FEAT_HCX},0)
1000a57e18e4SArvind Ram Prakash                $(error "ENABLE_FEAT_FPMR requires ENABLE_FEAT_HCX")
1001a57e18e4SArvind Ram Prakash	endif
1002a57e18e4SArvind Ram Prakashendif #(ENABLE_FEAT_FPMR)
1003a57e18e4SArvind Ram Prakash
10040d122947SBoyan Karatotevifneq (${ENABLE_SME_FOR_NS},0)
10050d122947SBoyan Karatotev	ifeq (${ENABLE_SVE_FOR_NS},0)
10060d122947SBoyan Karatotev                $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
10070d122947SBoyan Karatotev	endif
1008c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_SME_FOR_NS)
10090d122947SBoyan Karatotev
1010dc78e62dSjohpow01# Secure SME/SVE requires the non-secure component as well
1011dc78e62dSjohpow01ifeq (${ENABLE_SME_FOR_SWD},1)
1012dc78e62dSjohpow01	ifeq (${ENABLE_SME_FOR_NS},0)
1013dc78e62dSjohpow01                $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
1014dc78e62dSjohpow01	endif
10150d122947SBoyan Karatotev	ifeq (${ENABLE_SVE_FOR_SWD},0)
10160d122947SBoyan Karatotev                $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
10170d122947SBoyan Karatotev	endif
1018c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_SME_FOR_SWD)
1019c5e1da83SJayanth Dodderi Chidanand
10203524d074SMadhukar Pappireddy# Enabling SVE for SWD requires enabling SVE for NWD due to ENABLE_FEAT
10213524d074SMadhukar Pappireddy# mechanism.
1022dc78e62dSjohpow01ifeq (${ENABLE_SVE_FOR_SWD},1)
1023dc78e62dSjohpow01    ifeq (${ENABLE_SVE_FOR_NS},0)
1024dc78e62dSjohpow01        $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
1025dc78e62dSjohpow01    endif
10263524d074SMadhukar Pappireddyendif
1027dc78e62dSjohpow01
1028484befbfSArvind Ram Prakash# Enabling FEAT_MOPS requires access to hcrx_el2 registers which is
1029484befbfSArvind Ram Prakash# available only when FEAT_HCX is enabled.
1030484befbfSArvind Ram Prakashifneq (${ENABLE_FEAT_MOPS},0)
1031484befbfSArvind Ram Prakash	ifeq (${ENABLE_FEAT_HCX},0)
1032484befbfSArvind Ram Prakash		$(error "ENABLE_FEAT_MOPS requires ENABLE_FEAT_HCX")
1033484befbfSArvind Ram Prakash	endif
1034484befbfSArvind Ram Prakashendif
1035484befbfSArvind Ram Prakash
10363524d074SMadhukar Pappireddy# Enabling SVE for both the worlds typically requires the context
10373524d074SMadhukar Pappireddy# management of SVE registers. The only exception being SPMC at S-EL2.
10383524d074SMadhukar Pappireddyifeq (${ENABLE_SVE_FOR_SWD}, 1)
10393524d074SMadhukar Pappireddy    ifneq (${ENABLE_SVE_FOR_NS}, 0)
10403524d074SMadhukar Pappireddy        ifeq (${CTX_INCLUDE_SVE_REGS}-$(SPMD_SPM_AT_SEL2),0-0)
10413524d074SMadhukar Pappireddy            $(warning "ENABLE_SVE_FOR_SWD and ENABLE_SVE_FOR_NS together require CTX_INCLUDE_SVE_REGS")
10423524d074SMadhukar Pappireddy        endif
10433524d074SMadhukar Pappireddy    endif
10443524d074SMadhukar Pappireddyendif
10453524d074SMadhukar Pappireddy
10463524d074SMadhukar Pappireddy# Enabling SVE in either world while enabling CTX_INCLUDE_FPREGS requires
10473524d074SMadhukar Pappireddy# CTX_INCLUDE_SVE_REGS to be enabled due to architectural dependency between FP
10483524d074SMadhukar Pappireddy# and SVE registers.
10493524d074SMadhukar Pappireddyifeq (${CTX_INCLUDE_FPREGS}, 1)
10503524d074SMadhukar Pappireddy    ifneq (${ENABLE_SVE_FOR_NS},0)
10513524d074SMadhukar Pappireddy        ifeq (${CTX_INCLUDE_SVE_REGS},0)
10523524d074SMadhukar Pappireddy	    # Warning instead of error due to CI dependency on this
10533524d074SMadhukar Pappireddy            $(warning "CTX_INCLUDE_FPREGS and ENABLE_SVE_FOR_NS together require CTX_INCLUDE_SVE_REGS")
10543524d074SMadhukar Pappireddy            $(warning "Forced ENABLE_SVE_FOR_NS=0")
10553524d074SMadhukar Pappireddy	    override ENABLE_SVE_FOR_NS	:= 0
10563524d074SMadhukar Pappireddy        endif
10573524d074SMadhukar Pappireddy    endif
10583524d074SMadhukar Pappireddyendif #(CTX_INCLUDE_FPREGS)
10593524d074SMadhukar Pappireddy
10603524d074SMadhukar Pappireddy# SVE context management is only required if secure world has access to SVE/FP
10613524d074SMadhukar Pappireddy# functionality.
10623524d074SMadhukar Pappireddyifeq (${CTX_INCLUDE_SVE_REGS},1)
10633524d074SMadhukar Pappireddy    ifeq (${ENABLE_SVE_FOR_SWD},0)
10643524d074SMadhukar Pappireddy        $(error "CTX_INCLUDE_SVE_REGS requires ENABLE_SVE_FOR_SWD to also be enabled")
10653524d074SMadhukar Pappireddy    endif
10663524d074SMadhukar Pappireddyendif
10673524d074SMadhukar Pappireddy
10683524d074SMadhukar Pappireddy# SME cannot be used with CTX_INCLUDE_FPREGS since SPM does its own context
10693524d074SMadhukar Pappireddy# management including FPU registers.
1070dc78e62dSjohpow01ifeq (${CTX_INCLUDE_FPREGS},1)
107145007acdSJayanth Dodderi Chidanand    ifneq (${ENABLE_SME_FOR_NS},0)
1072dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1073dc78e62dSjohpow01    endif
1074c5e1da83SJayanth Dodderi Chidanandendif #(CTX_INCLUDE_FPREGS)
1075dc78e62dSjohpow01
107600e28874SManish V Badarkheifeq ($(DRTM_SUPPORT),1)
107700e28874SManish V Badarkhe        $(info DRTM_SUPPORT is an experimental feature)
107800e28874SManish V Badarkheendif
107900e28874SManish V Badarkhe
10808953568aSLevi Yunifeq (${HOB_LIST},1)
10818953568aSLevi Yun        $(warning HOB_LIST is an experimental feature)
10828953568aSLevi Yunendif
10838953568aSLevi Yun
10843ba2c151SRaymond Maoifeq (${TRANSFER_LIST},1)
10853ba2c151SRaymond Mao        $(info TRANSFER_LIST is an experimental feature)
10863ba2c151SRaymond Maoendif
10873ba2c151SRaymond Mao
1088274a69e7SChris Kayifeq (${ENABLE_RME},1)
1089274a69e7SChris Kay	ifneq (${SEPARATE_CODE_AND_RODATA},1)
1090274a69e7SChris Kay                $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1091274a69e7SChris Kay	endif
1092274a69e7SChris Kayendif
1093274a69e7SChris Kay
10945782b890SManish V Badarkheifeq ($(PSA_CRYPTO),1)
10955782b890SManish V Badarkhe        $(info PSA_CRYPTO is an experimental feature)
10965782b890SManish V Badarkheendif
10975782b890SManish V Badarkhe
109882222db8SManish V Badarkheifeq ($(DICE_PROTECTION_ENVIRONMENT),1)
109982222db8SManish V Badarkhe        $(info DICE_PROTECTION_ENVIRONMENT is an experimental feature)
110082222db8SManish V Badarkheendif
110182222db8SManish V Badarkhe
1102cf2c8a33SAntonio Nino Diaz################################################################################
110373c99d4eSJuan Castillo# Process platform overrideable behaviour
110473c99d4eSJuan Castillo################################################################################
11054f6ad66aSAchin Gupta
11065f24ce96SManish Pandeyifdef BL1_SOURCES
11075f24ce96SManish Pandey	NEED_BL1 := yes
1108c5e1da83SJayanth Dodderi Chidanandendif #(BL1_SOURCES)
11095f24ce96SManish Pandey
11105f24ce96SManish Pandeyifdef BL2_SOURCES
11115f24ce96SManish Pandey	NEED_BL2 := yes
11125f24ce96SManish Pandey
1113bd97f83aSJohn Tsichritzis	# Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1114bd97f83aSJohn Tsichritzis	# Certificate generation tools. This flag can be overridden by the platform.
1115cf2c8a33SAntonio Nino Diaz	ifdef EL3_PAYLOAD_BASE
1116cf2c8a33SAntonio Nino Diaz		# If booting an EL3 payload there is no need for a BL33 image
1117cf2c8a33SAntonio Nino Diaz		# in the FIP file.
11184c117f6cSSandrine Bailleux		NEED_BL33		:=	no
1119cf2c8a33SAntonio Nino Diaz	else
112068450a6dSAntonio Nino Diaz		ifdef PRELOADED_BL33_BASE
1121cf2c8a33SAntonio Nino Diaz			# If booting a BL33 preloaded image there is no need of
1122cf2c8a33SAntonio Nino Diaz			# another one in the FIP file.
1123cf2c8a33SAntonio Nino Diaz			NEED_BL33		:=	no
1124cf2c8a33SAntonio Nino Diaz		else
1125cf2c8a33SAntonio Nino Diaz			NEED_BL33		?=	yes
1126cf2c8a33SAntonio Nino Diaz		endif
11274c117f6cSSandrine Bailleux	endif
1128c5e1da83SJayanth Dodderi Chidanandendif #(BL2_SOURCES)
11296f971622SJuan Castillo
11305f24ce96SManish Pandeyifdef BL2U_SOURCES
11315f24ce96SManish Pandey	NEED_BL2U := yes
1132c5e1da83SJayanth Dodderi Chidanandendif #(BL2U_SOURCES)
11335f24ce96SManish Pandey
11344d045d0eSMasahiro Yamada# If SCP_BL2 is given, we always want FIP to include it.
11354d045d0eSMasahiro Yamadaifdef SCP_BL2
11364d045d0eSMasahiro Yamada	NEED_SCP_BL2		:=	yes
1137c5e1da83SJayanth Dodderi Chidanandendif #(SCP_BL2)
11384d045d0eSMasahiro Yamada
11395744e874SSoby Mathew# For AArch32, BL31 is not currently supported.
11405744e874SSoby Mathewifneq (${ARCH},aarch32)
11415744e874SSoby Mathew	ifdef BL31_SOURCES
1142c5e1da83SJayanth Dodderi Chidanand	# When booting an EL3 payload, there is no need to compile the BL31
1143c5e1da83SJayanth Dodderi Chidanand	# image nor put it in the FIP.
11445744e874SSoby Mathew		ifndef EL3_PAYLOAD_BASE
11455744e874SSoby Mathew			NEED_BL31 := yes
11465744e874SSoby Mathew		endif
11475744e874SSoby Mathew	endif
1148c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch64)
11495744e874SSoby Mathew
115073c99d4eSJuan Castillo# Process TBB related flags
11516f971622SJuan Castilloifneq (${GENERATE_COT},0)
115273c99d4eSJuan Castillo	# Common cert_create options
11536f971622SJuan Castillo	ifneq (${CREATE_KEYS},0)
11546f971622SJuan Castillo                $(eval CRT_ARGS += -n)
11550191262dSYatharth Kochar                $(eval FWU_CRT_ARGS += -n)
1156fd34e7baSJuan Castillo		ifneq (${SAVE_KEYS},0)
1157fd34e7baSJuan Castillo                        $(eval CRT_ARGS += -k)
11580191262dSYatharth Kochar                        $(eval FWU_CRT_ARGS += -k)
1159fd34e7baSJuan Castillo		endif
11606f971622SJuan Castillo	endif
116173c99d4eSJuan Castillo	# Include TBBR makefile (unless the platform indicates otherwise)
116273c99d4eSJuan Castillo	ifeq (${INCLUDE_TBBR_MK},1)
116373c99d4eSJuan Castillo                include make_helpers/tbbr/tbbr_tools.mk
116473c99d4eSJuan Castillo	endif
1165c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
11666f971622SJuan Castillo
11671c75d5dfSMasahiro Yamadaifneq (${FIP_ALIGN},0)
11681c75d5dfSMasahiro Yamada	FIP_ARGS += --align ${FIP_ALIGN}
1169c5e1da83SJayanth Dodderi Chidanandendif #(FIP_ALIGN)
11701c75d5dfSMasahiro Yamada
11715f24ce96SManish Pandeyifdef FDT_SOURCES
11725f24ce96SManish Pandey	NEED_FDT := yes
1173c5e1da83SJayanth Dodderi Chidanandendif #(FDT_SOURCES)
11745f24ce96SManish Pandey
117573c99d4eSJuan Castillo################################################################################
117646e5e035SMichalis Pappas# Include libraries' Makefile that are used in all BL
117746e5e035SMichalis Pappas################################################################################
117846e5e035SMichalis Pappas
117946e5e035SMichalis Pappasinclude lib/stack_protector/stack_protector.mk
118046e5e035SMichalis Pappas
118146e5e035SMichalis Pappas################################################################################
11828a86052dSSoby Mathew# Include BL specific makefiles
11838a86052dSSoby Mathew################################################################################
11845f24ce96SManish Pandey
11855f24ce96SManish Pandeyifeq (${NEED_BL1},yes)
11868a86052dSSoby Mathewinclude bl1/bl1.mk
11878a86052dSSoby Mathewendif
11888a86052dSSoby Mathew
11895f24ce96SManish Pandeyifeq (${NEED_BL2},yes)
11908a86052dSSoby Mathewinclude bl2/bl2.mk
11918a86052dSSoby Mathewendif
11928a86052dSSoby Mathew
11935f24ce96SManish Pandeyifeq (${NEED_BL2U},yes)
11948a86052dSSoby Mathewinclude bl2u/bl2u.mk
11958a86052dSSoby Mathewendif
11968a86052dSSoby Mathew
11975744e874SSoby Mathewifeq (${NEED_BL31},yes)
11988a86052dSSoby Mathewinclude bl31/bl31.mk
11998a86052dSSoby Mathewendif
120003b397a8SNishanth Menon
120173c99d4eSJuan Castillo################################################################################
120273c99d4eSJuan Castillo# Build options checks
120373c99d4eSJuan Castillo################################################################################
120473c99d4eSJuan Castillo
1205c5e1da83SJayanth Dodderi Chidanand# Boolean_Flags
1206327131c4SLeonardo Sandoval$(eval $(call assert_booleans,\
1207327131c4SLeonardo Sandoval    $(sort \
1208327131c4SLeonardo Sandoval	ALLOW_RO_XLAT_TABLES \
120946789a7cSBalint Dobszay	BL2_ENABLE_SP_LOAD \
1210327131c4SLeonardo Sandoval	COLD_BOOT_SINGLE_CPU \
1211327131c4SLeonardo Sandoval	CREATE_KEYS \
1212327131c4SLeonardo Sandoval	CTX_INCLUDE_AARCH32_REGS \
1213327131c4SLeonardo Sandoval	CTX_INCLUDE_FPREGS \
121442422622SMadhukar Pappireddy	CTX_INCLUDE_SVE_REGS \
1215327131c4SLeonardo Sandoval	CTX_INCLUDE_EL2_REGS \
12169acff28aSArvind Ram Prakash	CTX_INCLUDE_MPAM_REGS \
1217327131c4SLeonardo Sandoval	DEBUG \
1218327131c4SLeonardo Sandoval	DYN_DISABLE_AUTH \
1219327131c4SLeonardo Sandoval	EL3_EXCEPTION_HANDLING \
12201fd685a7SChris Kay	ENABLE_AMU_AUXILIARY_COUNTERS \
1221873d4241Sjohpow01	AMU_RESTRICT_COUNTERS \
1222327131c4SLeonardo Sandoval	ENABLE_ASSERTIONS \
1223327131c4SLeonardo Sandoval	ENABLE_PIE \
1224327131c4SLeonardo Sandoval	ENABLE_PMF \
1225327131c4SLeonardo Sandoval	ENABLE_PSCI_STAT \
1226327131c4SLeonardo Sandoval	ENABLE_RUNTIME_INSTRUMENTATION \
1227dc78e62dSjohpow01	ENABLE_SME_FOR_SWD \
12280c5e7d1cSMax Shvetsov	ENABLE_SVE_FOR_SWD \
1229970a4a8dSManish Pandey	ENABLE_FEAT_RAS	\
1230f87e54f7SManish Pandey	FFH_SUPPORT	\
1231327131c4SLeonardo Sandoval	ERROR_DEPRECATED \
1232327131c4SLeonardo Sandoval	FAULT_INJECTION_SUPPORT \
1233327131c4SLeonardo Sandoval	GENERATE_COT \
1234327131c4SLeonardo Sandoval	GICV2_G0_FOR_EL3 \
123546cc41d5SManish Pandey	HANDLE_EA_EL3_FIRST_NS \
1236538516f5SBipin Ravi	HARDEN_SLS \
1237327131c4SLeonardo Sandoval	HW_ASSISTED_COHERENCY \
1238327131c4SLeonardo Sandoval	MEASURED_BOOT \
123936e3d877SAbhi.Singh	DISCRETE_TPM \
1240e7f1181fSTamas Ban	DICE_PROTECTION_ENVIRONMENT \
12416a88ec8bSRaghu Krishnamurthy	RMMD_ENABLE_EL3_TOKEN_SIGN \
124200e28874SManish V Badarkhe	DRTM_SUPPORT \
1243327131c4SLeonardo Sandoval	NS_TIMER_SWITCH \
1244327131c4SLeonardo Sandoval	OVERRIDE_LIBC \
1245327131c4SLeonardo Sandoval	PL011_GENERIC_UART \
1246327131c4SLeonardo Sandoval	PROGRAMMABLE_RESET_ADDRESS \
1247327131c4SLeonardo Sandoval	PSCI_EXTENDED_STATE_ID \
124864b4710bSWing Li	PSCI_OS_INIT_MODE \
12498db17052SBoyan Karatotev	ARCH_FEATURE_AVAILABILITY \
1250327131c4SLeonardo Sandoval	RESET_TO_BL31 \
1251327131c4SLeonardo Sandoval	SAVE_KEYS \
1252327131c4SLeonardo Sandoval	SEPARATE_CODE_AND_RODATA \
125396a8ed14SJiafei Pan	SEPARATE_BL2_NOLOAD_REGION \
1254327131c4SLeonardo Sandoval	SEPARATE_NOBITS_REGION \
125586acbbe2SYe Li	SEPARATE_RWDATA_REGION \
1256308ebfa1SMadhukar Pappireddy	SEPARATE_SIMD_SECTION \
1257327131c4SLeonardo Sandoval	SPIN_ON_BL1_EXIT \
1258327131c4SLeonardo Sandoval	SPM_MM \
12591d63ae4dSMarc Bonnici	SPMC_AT_EL3 \
1260801cd3c8SNishant Sharma	SPMC_AT_EL3_SEL0_SP \
1261327131c4SLeonardo Sandoval	SPMD_SPM_AT_SEL2 \
1262890b5088SRaghu Krishnamurthy	ENABLE_SPMD_LP \
12633ba2c151SRaymond Mao	TRANSFER_LIST \
1264327131c4SLeonardo Sandoval	TRUSTED_BOARD_BOOT \
1265327131c4SLeonardo Sandoval	USE_COHERENT_MEM \
1266327131c4SLeonardo Sandoval	USE_DEBUGFS \
1267327131c4SLeonardo Sandoval	ARM_IO_IN_DTB \
1268327131c4SLeonardo Sandoval	SDEI_IN_FCONF \
1269327131c4SLeonardo Sandoval	SEC_INT_DESC_IN_FCONF \
1270327131c4SLeonardo Sandoval	USE_ROMLIB \
1271327131c4SLeonardo Sandoval	USE_TBBR_DEFS \
1272327131c4SLeonardo Sandoval	WARMBOOT_ENABLE_DCACHE_EARLY \
127342d4d3baSArvind Ram Prakash	RESET_TO_BL2 \
1274327131c4SLeonardo Sandoval	BL2_IN_XIP_MEM \
1275327131c4SLeonardo Sandoval	BL2_INV_DCACHE \
1276327131c4SLeonardo Sandoval	USE_SPINLOCK_CAS \
1277327131c4SLeonardo Sandoval	ENCRYPT_BL31 \
1278327131c4SLeonardo Sandoval	ENCRYPT_BL32 \
1279327131c4SLeonardo Sandoval	ERRATA_SPECULATIVE_AT \
128045c7328cSBoyan Karatotev	ERRATA_SME_POWER_DOWN \
128100e8f79cSManish Pandey	RAS_TRAP_NS_ERR_REC_ACCESS \
1282327131c4SLeonardo Sandoval	COT_DESC_IN_DTB \
1283327131c4SLeonardo Sandoval	USE_SP804_TIMER \
1284396b339dSManish V Badarkhe	PSA_FWU_SUPPORT \
128511d05a77SSughosh Ganu	PSA_FWU_METADATA_FW_STORE_DESC \
128668120783SChris Kay	ENABLE_MPMM \
12872b5e00d4SBoyan Karatotev	FEAT_PABANDON \
12886a0da736SJayanth Dodderi Chidanand	FEATURE_DETECTION \
12890b22e591SJayanth Dodderi Chidanand	TRNG_SUPPORT \
1290593ae354SBoyan Karatotev	ENABLE_ERRATA_ALL \
1291ffea3844SSona Mathew	ERRATA_ABI_SUPPORT \
1292ef63f5beSSona Mathew	ERRATA_NON_ARM_INTERCONNECT \
129304c7303bSOkash Khawaja	CONDITIONAL_CMO \
12945782b890SManish V Badarkhe	PSA_CRYPTO	\
129585bebe18SSandrine Bailleux	ENABLE_CONSOLE_GETC \
1296183329a5SArvind Ram Prakash	INIT_UNUSED_NS_EL2	\
1297bfef8b90SJuan Pablo Conde	PLATFORM_REPORT_CTX_MEM_USE \
1298ae770fedSYann Gautier	EARLY_CONSOLE \
1299f99a69c3SArvind Ram Prakash	PRESERVE_DSU_PMU_REGS \
13008953568aSLevi Yun	HOB_LIST \
1301327131c4SLeonardo Sandoval)))
130273c99d4eSJuan Castillo
1303c5e1da83SJayanth Dodderi Chidanand# Numeric_Flags
1304327131c4SLeonardo Sandoval$(eval $(call assert_numerics,\
1305327131c4SLeonardo Sandoval    $(sort \
1306327131c4SLeonardo Sandoval	ARM_ARCH_MAJOR \
1307327131c4SLeonardo Sandoval	ARM_ARCH_MINOR \
1308327131c4SLeonardo Sandoval	BRANCH_PROTECTION \
13096a0da736SJayanth Dodderi Chidanand	CTX_INCLUDE_PAUTH_REGS \
13106a0da736SJayanth Dodderi Chidanand	CTX_INCLUDE_NEVE_REGS \
13112bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT \
131283a4dae1SBoyan Karatotev	DISABLE_MTPMU \
13131298f2f1SJayanth Dodderi Chidanand	ENABLE_BRBE_FOR_NS \
131447c681b7SJayanth Dodderi Chidanand	ENABLE_TRBE_FOR_NS \
13156a0da736SJayanth Dodderi Chidanand	ENABLE_BTI \
13166a0da736SJayanth Dodderi Chidanand	ENABLE_PAUTH \
1317d23acc9eSAndre Przywara	ENABLE_FEAT_AMU \
13186a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_AMUv1p1 \
13196a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_CSV2_2 \
132030019d86SSona Mathew	ENABLE_FEAT_CSV2_3 \
132183271d5aSArvind Ram Prakash	ENABLE_FEAT_DEBUGV8P9 \
13226a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_DIT \
13236a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_ECV \
13246a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_FGT \
132533e6aaacSArvind Ram Prakash	ENABLE_FEAT_FGT2 \
1326a57e18e4SArvind Ram Prakash	ENABLE_FEAT_FPMR \
13276a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_HCX \
132819d52a83SAndre Przywara	ENABLE_FEAT_LS64_ACCDATA \
13297e84f3cfSTushar Khandelwal	ENABLE_FEAT_MEC \
13306b8df7b9SArvind Ram Prakash	ENABLE_FEAT_MOPS \
13318e397889SGovindraj Raja	ENABLE_FEAT_MTE2 \
13326a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_PAN \
13336a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_RNG \
1334ff86e0b4SJuan Pablo Conde	ENABLE_FEAT_RNG_TRAP \
13356a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_SEL2 \
1336d3331603SMark Brown	ENABLE_FEAT_TCR2 \
13376d0433f0SJayanth Dodderi Chidanand	ENABLE_FEAT_THE \
13380e4daed2SGovindraj Raja	ENABLE_FEAT_SB \
1339062b6c6bSMark Brown	ENABLE_FEAT_S2PIE \
1340062b6c6bSMark Brown	ENABLE_FEAT_S1PIE \
1341062b6c6bSMark Brown	ENABLE_FEAT_S2POE \
1342062b6c6bSMark Brown	ENABLE_FEAT_S1POE \
13434ec4e545SJayanth Dodderi Chidanand	ENABLE_FEAT_SCTLR2 \
134430655136SGovindraj Raja	ENABLE_FEAT_D128 \
1345688ab57bSMark Brown	ENABLE_FEAT_GCS \
13466a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_VHE \
1347edebefbcSArvind Ram Prakash	ENABLE_FEAT_MPAM \
13486a0da736SJayanth Dodderi Chidanand	ENABLE_RME \
13496437a09aSAndre Przywara	ENABLE_SPE_FOR_NS \
1350603a0c6fSAndre Przywara	ENABLE_SYS_REG_TRACE_FOR_NS \
135145007acdSJayanth Dodderi Chidanand	ENABLE_SME_FOR_NS \
135203d3c0d7SJayanth Dodderi Chidanand	ENABLE_SME2_FOR_NS \
13532b0bc4e0SJayanth Dodderi Chidanand	ENABLE_SVE_FOR_NS \
13546a0da736SJayanth Dodderi Chidanand	ENABLE_TRF_FOR_NS \
1355327131c4SLeonardo Sandoval	FW_ENC_STATUS \
13565357f83dSManish V Badarkhe	NR_OF_FW_BANKS \
13575357f83dSManish V Badarkhe	NR_OF_IMAGES_IN_FW_BANK \
1358781d07a4SJayanth Dodderi Chidanand	TWED_DELAY \
1359781d07a4SJayanth Dodderi Chidanand	ENABLE_FEAT_TWED \
1360bebcf27fSMark Brown	SVE_VECTOR_LEN \
13610ed3be6fSVarun Wadekar	IMPDEF_SYSREG_TRAP \
1362327131c4SLeonardo Sandoval)))
1363c877b414SJeenu Viswambharan
1364aacff749SJustin Chadwellifdef KEY_SIZE
1365aacff749SJustin Chadwell        $(eval $(call assert_numeric,KEY_SIZE))
1366aacff749SJustin Chadwellendif
1367aacff749SJustin Chadwell
13681f461979SJustin Chadwellifeq ($(filter $(SANITIZE_UB), on off trap),)
13691f461979SJustin Chadwell        $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
13701f461979SJustin Chadwellendif
13711f461979SJustin Chadwell
137273c99d4eSJuan Castillo################################################################################
137373c99d4eSJuan Castillo# Add definitions to the cpp preprocessor based on the current build options.
137473c99d4eSJuan Castillo# This is done after including the platform specific makefile to allow the
137573c99d4eSJuan Castillo# platform to overwrite the default options
137673c99d4eSJuan Castillo################################################################################
137773c99d4eSJuan Castillo
1378327131c4SLeonardo Sandoval$(eval $(call add_defines,\
1379327131c4SLeonardo Sandoval    $(sort \
1380327131c4SLeonardo Sandoval	ALLOW_RO_XLAT_TABLES \
1381327131c4SLeonardo Sandoval	ARM_ARCH_MAJOR \
1382327131c4SLeonardo Sandoval	ARM_ARCH_MINOR \
138346789a7cSBalint Dobszay	BL2_ENABLE_SP_LOAD \
1384327131c4SLeonardo Sandoval	COLD_BOOT_SINGLE_CPU \
1385327131c4SLeonardo Sandoval	CTX_INCLUDE_AARCH32_REGS \
1386327131c4SLeonardo Sandoval	CTX_INCLUDE_FPREGS \
138742422622SMadhukar Pappireddy	CTX_INCLUDE_SVE_REGS \
1388327131c4SLeonardo Sandoval	CTX_INCLUDE_PAUTH_REGS \
13899acff28aSArvind Ram Prakash	CTX_INCLUDE_MPAM_REGS \
1390327131c4SLeonardo Sandoval	EL3_EXCEPTION_HANDLING \
1391327131c4SLeonardo Sandoval	CTX_INCLUDE_EL2_REGS \
1392062f8aafSArunachalam Ganapathy	CTX_INCLUDE_NEVE_REGS \
1393327131c4SLeonardo Sandoval	DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
13940063dd17SJavier Almansa Sobrino	DISABLE_MTPMU \
1395d23acc9eSAndre Przywara	ENABLE_FEAT_AMU \
13961fd685a7SChris Kay	ENABLE_AMU_AUXILIARY_COUNTERS \
1397873d4241Sjohpow01	AMU_RESTRICT_COUNTERS \
1398327131c4SLeonardo Sandoval	ENABLE_ASSERTIONS \
1399327131c4SLeonardo Sandoval	ENABLE_BTI \
140083271d5aSArvind Ram Prakash	ENABLE_FEAT_DEBUGV8P9 \
1401edebefbcSArvind Ram Prakash	ENABLE_FEAT_MPAM \
1402327131c4SLeonardo Sandoval	ENABLE_PAUTH \
1403327131c4SLeonardo Sandoval	ENABLE_PIE \
1404327131c4SLeonardo Sandoval	ENABLE_PMF \
1405327131c4SLeonardo Sandoval	ENABLE_PSCI_STAT \
14065b18de09SZelalem Aweke	ENABLE_RME \
14076a88ec8bSRaghu Krishnamurthy	RMMD_ENABLE_EL3_TOKEN_SIGN \
1408327131c4SLeonardo Sandoval	ENABLE_RUNTIME_INSTRUMENTATION \
1409dc78e62dSjohpow01	ENABLE_SME_FOR_NS \
141003d3c0d7SJayanth Dodderi Chidanand	ENABLE_SME2_FOR_NS \
1411dc78e62dSjohpow01	ENABLE_SME_FOR_SWD \
141290118bb5SAndre Przywara	ENABLE_SPE_FOR_NS \
1413327131c4SLeonardo Sandoval	ENABLE_SVE_FOR_NS \
14140c5e7d1cSMax Shvetsov	ENABLE_SVE_FOR_SWD \
1415970a4a8dSManish Pandey	ENABLE_FEAT_RAS \
1416f87e54f7SManish Pandey	FFH_SUPPORT \
1417327131c4SLeonardo Sandoval	ENCRYPT_BL31 \
1418327131c4SLeonardo Sandoval	ENCRYPT_BL32 \
1419327131c4SLeonardo Sandoval	ERROR_DEPRECATED \
1420327131c4SLeonardo Sandoval	FAULT_INJECTION_SUPPORT \
1421327131c4SLeonardo Sandoval	GICV2_G0_FOR_EL3 \
142246cc41d5SManish Pandey	HANDLE_EA_EL3_FIRST_NS \
1423327131c4SLeonardo Sandoval	HW_ASSISTED_COHERENCY \
1424327131c4SLeonardo Sandoval	LOG_LEVEL \
1425327131c4SLeonardo Sandoval	MEASURED_BOOT \
142636e3d877SAbhi.Singh	DISCRETE_TPM \
1427e7f1181fSTamas Ban	DICE_PROTECTION_ENVIRONMENT \
142800e28874SManish V Badarkhe	DRTM_SUPPORT \
1429327131c4SLeonardo Sandoval	NS_TIMER_SWITCH \
1430327131c4SLeonardo Sandoval	PL011_GENERIC_UART \
1431327131c4SLeonardo Sandoval	PLAT_${PLAT} \
1432327131c4SLeonardo Sandoval	PROGRAMMABLE_RESET_ADDRESS \
1433327131c4SLeonardo Sandoval	PSCI_EXTENDED_STATE_ID \
143464b4710bSWing Li	PSCI_OS_INIT_MODE \
14358db17052SBoyan Karatotev	ARCH_FEATURE_AVAILABILITY \
1436327131c4SLeonardo Sandoval	RESET_TO_BL31 \
1437d766084fSAlexeiFedorov	RME_GPT_BITLOCK_BLOCK \
1438ec0088bbSAlexeiFedorov	RME_GPT_MAX_BLOCK \
1439327131c4SLeonardo Sandoval	SEPARATE_CODE_AND_RODATA \
144096a8ed14SJiafei Pan	SEPARATE_BL2_NOLOAD_REGION \
1441327131c4SLeonardo Sandoval	SEPARATE_NOBITS_REGION \
144286acbbe2SYe Li	SEPARATE_RWDATA_REGION \
1443308ebfa1SMadhukar Pappireddy	SEPARATE_SIMD_SECTION \
1444327131c4SLeonardo Sandoval	RECLAIM_INIT_CODE \
1445327131c4SLeonardo Sandoval	SPD_${SPD} \
1446327131c4SLeonardo Sandoval	SPIN_ON_BL1_EXIT \
1447327131c4SLeonardo Sandoval	SPM_MM \
14481d63ae4dSMarc Bonnici	SPMC_AT_EL3 \
1449801cd3c8SNishant Sharma	SPMC_AT_EL3_SEL0_SP \
1450327131c4SLeonardo Sandoval	SPMD_SPM_AT_SEL2 \
14513ba2c151SRaymond Mao	TRANSFER_LIST \
1452327131c4SLeonardo Sandoval	TRUSTED_BOARD_BOOT \
1453c9c56f6eSManish V Badarkhe	CRYPTO_SUPPORT \
14547dfb9911SJimmy Brisson	TRNG_SUPPORT \
1455ffea3844SSona Mathew	ERRATA_ABI_SUPPORT \
1456ef63f5beSSona Mathew	ERRATA_NON_ARM_INTERCONNECT \
1457327131c4SLeonardo Sandoval	USE_COHERENT_MEM \
1458327131c4SLeonardo Sandoval	USE_DEBUGFS \
1459327131c4SLeonardo Sandoval	ARM_IO_IN_DTB \
1460327131c4SLeonardo Sandoval	SDEI_IN_FCONF \
1461327131c4SLeonardo Sandoval	SEC_INT_DESC_IN_FCONF \
1462327131c4SLeonardo Sandoval	USE_ROMLIB \
1463327131c4SLeonardo Sandoval	USE_TBBR_DEFS \
1464327131c4SLeonardo Sandoval	WARMBOOT_ENABLE_DCACHE_EARLY \
146542d4d3baSArvind Ram Prakash	RESET_TO_BL2 \
146642d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	\
1467327131c4SLeonardo Sandoval	BL2_IN_XIP_MEM \
1468327131c4SLeonardo Sandoval	BL2_INV_DCACHE \
1469327131c4SLeonardo Sandoval	USE_SPINLOCK_CAS \
1470327131c4SLeonardo Sandoval	ERRATA_SPECULATIVE_AT \
147145c7328cSBoyan Karatotev	ERRATA_SME_POWER_DOWN \
147200e8f79cSManish Pandey	RAS_TRAP_NS_ERR_REC_ACCESS \
1473327131c4SLeonardo Sandoval	COT_DESC_IN_DTB \
1474327131c4SLeonardo Sandoval	USE_SP804_TIMER \
147512cd65e0STomas Pilar	ENABLE_FEAT_RNG \
1476ff86e0b4SJuan Pablo Conde	ENABLE_FEAT_RNG_TRAP \
14774e04478aSChris Kay	ENABLE_FEAT_SB \
14787d33ffe4SDaniel Boulby	ENABLE_FEAT_DIT \
14795357f83dSManish V Badarkhe	NR_OF_FW_BANKS \
14805357f83dSManish V Badarkhe	NR_OF_IMAGES_IN_FW_BANK \
1481396b339dSManish V Badarkhe	PSA_FWU_SUPPORT \
148211d05a77SSughosh Ganu	PSA_FWU_METADATA_FW_STORE_DESC \
1483744ad974Sjohpow01	ENABLE_BRBE_FOR_NS \
1484813524eaSManish V Badarkhe	ENABLE_TRBE_FOR_NS \
1485d4582d30SManish V Badarkhe	ENABLE_SYS_REG_TRACE_FOR_NS \
14868fcd3d96SManish V Badarkhe	ENABLE_TRF_FOR_NS \
1487cb4ec47bSjohpow01	ENABLE_FEAT_HCX \
148868120783SChris Kay	ENABLE_MPMM \
14892b5e00d4SBoyan Karatotev	FEAT_PABANDON \
1490f74cb0beSJayanth Dodderi Chidanand	ENABLE_FEAT_FGT \
149133e6aaacSArvind Ram Prakash	ENABLE_FEAT_FGT2 \
1492a57e18e4SArvind Ram Prakash	ENABLE_FEAT_FPMR \
1493f74cb0beSJayanth Dodderi Chidanand	ENABLE_FEAT_ECV \
14946a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_AMUv1p1 \
14956a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_SEL2 \
14966a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_VHE \
14976a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_CSV2_2 \
149830019d86SSona Mathew	ENABLE_FEAT_CSV2_3 \
149919d52a83SAndre Przywara	ENABLE_FEAT_LS64_ACCDATA \
15007e84f3cfSTushar Khandelwal	ENABLE_FEAT_MEC \
15016a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_PAN \
1502d3331603SMark Brown	ENABLE_FEAT_TCR2 \
15036d0433f0SJayanth Dodderi Chidanand	ENABLE_FEAT_THE \
1504062b6c6bSMark Brown	ENABLE_FEAT_S2PIE \
1505062b6c6bSMark Brown	ENABLE_FEAT_S1PIE \
1506062b6c6bSMark Brown	ENABLE_FEAT_S2POE \
1507062b6c6bSMark Brown	ENABLE_FEAT_S1POE \
15084ec4e545SJayanth Dodderi Chidanand	ENABLE_FEAT_SCTLR2 \
150930655136SGovindraj Raja	ENABLE_FEAT_D128 \
1510688ab57bSMark Brown	ENABLE_FEAT_GCS \
15116b8df7b9SArvind Ram Prakash	ENABLE_FEAT_MOPS \
15128e397889SGovindraj Raja	ENABLE_FEAT_MTE2 \
15136a0da736SJayanth Dodderi Chidanand	FEATURE_DETECTION \
1514781d07a4SJayanth Dodderi Chidanand	TWED_DELAY \
1515781d07a4SJayanth Dodderi Chidanand	ENABLE_FEAT_TWED \
151604c7303bSOkash Khawaja	CONDITIONAL_CMO \
15170ed3be6fSVarun Wadekar	IMPDEF_SYSREG_TRAP \
1518a8cf6faeSJayanth Dodderi Chidanand	SVE_VECTOR_LEN \
1519890b5088SRaghu Krishnamurthy	ENABLE_SPMD_LP \
15205782b890SManish V Badarkhe	PSA_CRYPTO	\
152185bebe18SSandrine Bailleux	ENABLE_CONSOLE_GETC \
1522183329a5SArvind Ram Prakash	INIT_UNUSED_NS_EL2	\
1523bfef8b90SJuan Pablo Conde	PLATFORM_REPORT_CTX_MEM_USE \
1524ae770fedSYann Gautier	EARLY_CONSOLE \
1525f99a69c3SArvind Ram Prakash	PRESERVE_DSU_PMU_REGS \
15268953568aSLevi Yun	HOB_LIST \
1527327131c4SLeonardo Sandoval)))
15282fae4b1eSJeenu Viswambharan
1529bfef8b90SJuan Pablo Condeifeq (${PLATFORM_REPORT_CTX_MEM_USE}, 1)
1530bfef8b90SJuan Pablo Condeifeq (${DEBUG}, 0)
1531bfef8b90SJuan Pablo Conde        $(warning "PLATFORM_REPORT_CTX_MEM_USE can be applied when DEBUG=1 only")
1532bfef8b90SJuan Pablo Conde        override PLATFORM_REPORT_CTX_MEM_USE := 0
1533bfef8b90SJuan Pablo Condeendif
1534bfef8b90SJuan Pablo Condeendif
1535bfef8b90SJuan Pablo Conde
15361f461979SJustin Chadwellifeq (${SANITIZE_UB},trap)
15371f461979SJustin Chadwell        $(eval $(call add_define,MONITOR_TRAPS))
1538c5e1da83SJayanth Dodderi Chidanandendif #(SANITIZE_UB)
15391f461979SJustin Chadwell
15404c117f6cSSandrine Bailleux# Define the EL3_PAYLOAD_BASE flag only if it is provided.
15414c117f6cSSandrine Bailleuxifdef EL3_PAYLOAD_BASE
15424c117f6cSSandrine Bailleux        $(eval $(call add_define,EL3_PAYLOAD_BASE))
1543cf2c8a33SAntonio Nino Diazelse
154468450a6dSAntonio Nino Diaz# Define the PRELOADED_BL33_BASE flag only if it is provided and
154568450a6dSAntonio Nino Diaz# EL3_PAYLOAD_BASE is not defined, as it has priority.
154668450a6dSAntonio Nino Diaz	ifdef PRELOADED_BL33_BASE
154768450a6dSAntonio Nino Diaz                $(eval $(call add_define,PRELOADED_BL33_BASE))
15484c117f6cSSandrine Bailleux	endif
1549c5e1da83SJayanth Dodderi Chidanandendif #(EL3_PAYLOAD_BASE)
155073c99d4eSJuan Castillo
1551209a60ccSSoby Mathew# Define the DYN_DISABLE_AUTH flag only if set.
1552209a60ccSSoby Mathewifeq (${DYN_DISABLE_AUTH},1)
1553209a60ccSSoby Mathew        $(eval $(call add_define,DYN_DISABLE_AUTH))
1554209a60ccSSoby Mathewendif
1555209a60ccSSoby Mathew
15568620bd0bSChris Kayifeq ($($(ARCH)-ld-id),arm-link)
1557c2ad38ceSVarun Wadekar        $(eval $(call add_define,USE_ARM_LINK))
1558c2ad38ceSVarun Wadekarendif
1559c2ad38ceSVarun Wadekar
1560ce2b1ec6SManish Pandey# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
1561ce2b1ec6SManish Pandeyifeq (${SPD},spmd)
1562c33ff198SOlivier Deprezifdef SP_LAYOUT_FILE
1563ce2b1ec6SManish Pandey	-include $(BUILD_PLAT)/sp_gen.mk
1564ce2b1ec6SManish Pandey	FIP_DEPS += sp
156507c44475SManish Pandey	CRT_DEPS += sp
1566ce2b1ec6SManish Pandey	NEED_SP_PKG := yes
1567ce2b1ec6SManish Pandeyelse
1568c33ff198SOlivier Deprez	ifeq (${SPMD_SPM_AT_SEL2},1)
1569c33ff198SOlivier Deprez                $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1570c33ff198SOlivier Deprez	endif
1571c5e1da83SJayanth Dodderi Chidanandendif #(SP_LAYOUT_FILE)
1572c5e1da83SJayanth Dodderi Chidanandendif #(SPD)
1573ce2b1ec6SManish Pandey
157473c99d4eSJuan Castillo################################################################################
157573c99d4eSJuan Castillo# Build targets
157673c99d4eSJuan Castillo################################################################################
157773c99d4eSJuan Castillo
15782329e22bSHarrison Mutai.PHONY:	all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp tl fwu_fip certtool dtbs memmap doc enctool
157973c99d4eSJuan Castillo
158073c99d4eSJuan Castilloall: msg_start
158173c99d4eSJuan Castillo
158273c99d4eSJuan Castillomsg_start:
15837c4e1eeaSChris Kay	$(s)echo "Building ${PLAT}"
158473c99d4eSJuan Castillo
15857a24cba5SSoby Mathewifeq (${ERROR_DEPRECATED},0)
1586d5dfdeb6SJulius Werner# Check if deprecated declarations and cpp warnings should be treated as error or not.
15878620bd0bSChris Kayifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
1588c2ad38ceSVarun Wadekar    CPPFLAGS		+= 	-Wno-error=deprecated-declarations
1589c2ad38ceSVarun Wadekarelse
1590bc1a03c7SDan Handley    CPPFLAGS		+= 	-Wno-error=deprecated-declarations -Wno-error=cpp
15917a24cba5SSoby Mathewendif
1592c5e1da83SJayanth Dodderi Chidanandendif #(!ERROR_DEPRECATED)
15937a24cba5SSoby Mathew
159461f72a34SRoberto Vargas$(eval $(call MAKE_LIB,c))
15955fee0287SRoberto Vargas
159673c99d4eSJuan Castillo# Expand build macros for the different images
159773c99d4eSJuan Castilloifeq (${NEED_BL1},yes)
1598b34635a0SChris KayBL1_SOURCES := $(sort ${BL1_SOURCES})
1599434d0491SZelalem Aweke$(eval $(call MAKE_BL,bl1))
1600c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL1)
160173c99d4eSJuan Castillo
160273c99d4eSJuan Castilloifeq (${NEED_BL2},yes)
1603c5e1da83SJayanth Dodderi Chidanand
160442d4d3baSArvind Ram Prakashifeq (${RESET_TO_BL2}, 0)
1605c9b31ae8SRoberto VargasFIP_BL2_ARGS := tb-fw
1606c9b31ae8SRoberto Vargasendif
1607c9b31ae8SRoberto Vargas
1608eb1acfb6SChris KayBL2_SOURCES := $(sort ${BL2_SOURCES})
1609eb1acfb6SChris Kay
161033950dd8SMasahiro Yamada$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
1611434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
1612c5e1da83SJayanth Dodderi Chidanand
1613c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL2)
161473c99d4eSJuan Castillo
16154d045d0eSMasahiro Yamadaifeq (${NEED_SCP_BL2},yes)
161633950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
1617c5e1da83SJayanth Dodderi Chidanandendif #(NEED_SCP_BL2)
16184d045d0eSMasahiro Yamada
161973c99d4eSJuan Castilloifeq (${NEED_BL31},yes)
162073c99d4eSJuan CastilloBL31_SOURCES += ${SPD_SOURCES}
162126d1e0c3SMadhukar Pappireddy# Sort BL31 source files to remove duplicates
162226d1e0c3SMadhukar PappireddyBL31_SOURCES := $(sort ${BL31_SOURCES})
1623c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1624c6ba9b45SSumit Garg$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
1625434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
1626c6ba9b45SSumit Gargelse
162733950dd8SMasahiro Yamada$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
1628434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl31,soc-fw)))
1629c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
1630c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL31)
163173c99d4eSJuan Castillo
163270d1fc53SJuan Castillo# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
1633c939d13aSMasahiro Yamada# build system will call TOOL_ADD_IMG to print a warning message and abort the
163470d1fc53SJuan Castillo# process. Note that the dependency on BL32 applies to the FIP only.
163573c99d4eSJuan Castilloifeq (${NEED_BL32},yes)
163626d1e0c3SMadhukar Pappireddy# Sort BL32 source files to remove duplicates
163726d1e0c3SMadhukar PappireddyBL32_SOURCES := $(sort ${BL32_SOURCES})
16389cd15239SMasahiro YamadaBUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
16399cd15239SMasahiro Yamada
1640c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1641434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
1642c6ba9b45SSumit Garg	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1643c6ba9b45SSumit Gargelse
1644434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
164533950dd8SMasahiro Yamada	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
1646c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
1647c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL32)
164873c99d4eSJuan Castillo
16495b18de09SZelalem Aweke# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
16505b18de09SZelalem Aweke# needs to be built from RMM_SOURCES.
16515b18de09SZelalem Awekeifeq (${NEED_RMM},yes)
16525b18de09SZelalem Aweke# Sort RMM source files to remove duplicates
16535b18de09SZelalem AwekeRMM_SOURCES := $(sort ${RMM_SOURCES})
16545b18de09SZelalem AwekeBUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
16555b18de09SZelalem Aweke
16565b18de09SZelalem Aweke$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
16575b18de09SZelalem Aweke	 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1658c5e1da83SJayanth Dodderi Chidanandendif #(NEED_RMM)
16595b18de09SZelalem Aweke
166073c99d4eSJuan Castillo# Add the BL33 image if required by the platform
166173c99d4eSJuan Castilloifeq (${NEED_BL33},yes)
166233950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
1663c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL33)
1664db6071c9SJuan Castillo
16659003fa0bSYatharth Kocharifeq (${NEED_BL2U},yes)
166633950dd8SMasahiro Yamada$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
1667434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
1668c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL2U)
16699003fa0bSYatharth Kochar
167003b397a8SNishanth Menon# Expand build macros for the different images
167103b397a8SNishanth Menonifeq (${NEED_FDT},yes)
167203b397a8SNishanth Menon    $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
16731c08ff32SSalman Nabi
16741c08ff32SSalman Nabi    ifneq (${INITRD_SIZE}${INITRD_PATH},)
16751c08ff32SSalman Nabi        ifndef INITRD_BASE
16761c08ff32SSalman Nabi            $(error INITRD_BASE must be set when inserting initrd properties to the DTB.)
16771c08ff32SSalman Nabi        endif
16781c08ff32SSalman Nabi
16791c08ff32SSalman Nabi        INITRD_SIZE ?= $(shell printf "0x%x\n" $$(stat -Lc %s $(INITRD_PATH)))
16801c08ff32SSalman Nabi        initrd_end = $(shell printf "0x%x\n" $$(expr $$(($(INITRD_BASE) + $(INITRD_SIZE)))))
16811c08ff32SSalman Nabi
16821c08ff32SSalman Nabi        define $(HW_CONFIG)-after +=
16831c08ff32SSalman Nabi            $(s)echo "  INITRD  $(HW_CONFIG)"
16841c08ff32SSalman Nabi            $(q)fdtput -t x $@ /chosen linux,initrd-start $(INITRD_BASE)
16851c08ff32SSalman Nabi            $(q)fdtput -t x $@ /chosen linux,initrd-end $(initrd_end)
16861c08ff32SSalman Nabi        endef
16871c08ff32SSalman Nabi    endif
1688c5e1da83SJayanth Dodderi Chidanandendif #(NEED_FDT)
168903b397a8SNishanth Menon
1690ce2b1ec6SManish Pandey# Add Secure Partition packages
1691ce2b1ec6SManish Pandeyifeq (${NEED_SP_PKG},yes)
1692fd74ca0dSChris Kay$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | $$(@D)/
1693679e27ceSChris Kay	$(if $(host-poetry),$(q)poetry -q install --no-root)
1694dd816235SKathleen Capella	$(q)$(if $(host-poetry),poetry run )${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
1695822c7279SJ-Alvessp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
16967c4e1eeaSChris Kay	$(s)echo
16977c4e1eeaSChris Kay	$(s)echo "Built SP Images successfully"
16987c4e1eeaSChris Kay	$(s)echo
1699c5e1da83SJayanth Dodderi Chidanandendif #(NEED_SP_PKG)
1700ce2b1ec6SManish Pandey
170136eaaf37SIan Spraylocate-checkpatch:
170236eaaf37SIan Sprayifndef CHECKPATCH
170366079b04SEtienne Carriere	$(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
170436eaaf37SIan Sprayelse
170536eaaf37SIan Sprayifeq (,$(wildcard ${CHECKPATCH}))
170666079b04SEtienne Carriere	$(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
170736eaaf37SIan Sprayendif
1708c5e1da83SJayanth Dodderi Chidanandendif #(CHECKPATCH)
170936eaaf37SIan Spray
17104f6ad66aSAchin Guptaclean:
17117c4e1eeaSChris Kay	$(s)echo "  CLEAN"
1712c3273703SChris Kay	$(q)rm -rf $(BUILD_PLAT)
17137c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
17147c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
17157c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
17167c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
17174f6ad66aSAchin Gupta
1718eaaeece2SJames Morrisseyrealclean distclean:
17197c4e1eeaSChris Kay	$(s)echo "  REALCLEAN"
1720c3273703SChris Kay	$(q)rm -rf $(BUILD_BASE)
1721c3273703SChris Kay	$(q)rm -rf $(CURDIR)/cscope.*
17227c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
17237c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
17247c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
17257c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
17264f6ad66aSAchin Gupta
172736eaaf37SIan Spraycheckcodebase:		locate-checkpatch
17287c4e1eeaSChris Kay	$(s)echo "  CHECKING STYLE"
17297c4e1eeaSChris Kay	$(q)if test -d .git ; then						\
17301ef35512SPaul Beesley		git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' |	\
17311a41e8c1SDan Handley		while read GIT_FILE ;					\
17321a41e8c1SDan Handley		do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ;	\
17331a41e8c1SDan Handley		done ;							\
173436eaaf37SIan Spray	else								\
17351a41e8c1SDan Handley		 find . -type f -not -iwholename "*.git*"		\
17361a41e8c1SDan Handley		 -not -iwholename "*build*"				\
17371a41e8c1SDan Handley		 -not -iwholename "*libfdt*"				\
173861f72a34SRoberto Vargas		 -not -iwholename "*libc*"				\
17391a41e8c1SDan Handley		 -not -iwholename "*docs*"				\
17401ef35512SPaul Beesley		 -not -iwholename "*.rst"				\
17411a41e8c1SDan Handley		 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ;	\
174236eaaf37SIan Spray	fi
174336eaaf37SIan Spray
174436eaaf37SIan Spraycheckpatch:		locate-checkpatch
17457c4e1eeaSChris Kay	$(s)echo "  CHECKING STYLE"
17467c4e1eeaSChris Kay	$(q)if test -n "${CHECKPATCH_OPTS}"; then				\
174702a76d5fSYann Gautier		echo "    with ${CHECKPATCH_OPTS} option(s)";		\
174802a76d5fSYann Gautier	fi
17497c4e1eeaSChris Kay	$(q)COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT});	\
175077a0a7f1SYann Gautier	for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`;	\
175177a0a7f1SYann Gautier	do								\
175251d28937SAntonio Nino Diaz		printf "\n[*] Checking style of '$$commit'\n\n";	\
17531a721748SYann Gautier		( git log --format=email "$$commit~..$$commit"		\
17541a721748SYann Gautier			-- ${CHECK_PATHS} ;				\
175551d28937SAntonio Nino Diaz		  git diff --format=email "$$commit~..$$commit"		\
17561a721748SYann Gautier			-- ${CHECK_PATHS}; ) |				\
175702a76d5fSYann Gautier			${CHECKPATCH}  ${CHECKPATCH_OPTS} - || true;	\
175851d28937SAntonio Nino Diaz	done
175936eaaf37SIan Spray
176073c99d4eSJuan Castillocerttool: ${CRTTOOL}
176173c99d4eSJuan Castillo
1762a9812206SPali Rohár${CRTTOOL}: FORCE
17637c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} USE_TBBR_DEFS=${USE_TBBR_DEFS} COT=${COT} OPENSSL_DIR=${OPENSSL_DIR} CRTTOOL=${CRTTOOL} DEBUG=${DEBUG} --no-print-directory -C ${CRTTOOLPATH} all
17647c4e1eeaSChris Kay	$(s)echo
17657c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17667c4e1eeaSChris Kay	$(s)echo
17676f971622SJuan Castillo
17686f971622SJuan Castilloifneq (${GENERATE_COT},0)
176973c99d4eSJuan Castillocertificates: ${CRT_DEPS} ${CRTTOOL}
17707c4e1eeaSChris Kay	$(q)${CRTTOOL} ${CRT_ARGS}
17717c4e1eeaSChris Kay	$(s)echo
17727c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17737c4e1eeaSChris Kay	$(s)echo "Certificates can be found in ${BUILD_PLAT}"
17747c4e1eeaSChris Kay	$(s)echo
1775c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
177627713fb4SSoby Mathew
177773c99d4eSJuan Castillo${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
17784727fd13SPali Rohár	$(eval ${CHECK_FIP_CMD})
17797c4e1eeaSChris Kay	$(q)${FIPTOOL} create ${FIP_ARGS} $@
17807c4e1eeaSChris Kay	$(q)${FIPTOOL} info $@
17817c4e1eeaSChris Kay	$(s)echo
17827c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17837c4e1eeaSChris Kay	$(s)echo
1784f58ad36fSHarry Liebel
17850191262dSYatharth Kocharifneq (${GENERATE_COT},0)
17860191262dSYatharth Kocharfwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
17877c4e1eeaSChris Kay	$(q)${CRTTOOL} ${FWU_CRT_ARGS}
17887c4e1eeaSChris Kay	$(s)echo
17897c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17907c4e1eeaSChris Kay	$(s)echo "FWU certificates can be found in ${BUILD_PLAT}"
17917c4e1eeaSChris Kay	$(s)echo
1792c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
17930191262dSYatharth Kochar
17940191262dSYatharth Kochar${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
17954727fd13SPali Rohár	$(eval ${CHECK_FWU_FIP_CMD})
17967c4e1eeaSChris Kay	$(q)${FIPTOOL} create ${FWU_FIP_ARGS} $@
17977c4e1eeaSChris Kay	$(q)${FIPTOOL} info $@
17987c4e1eeaSChris Kay	$(s)echo
17997c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
18007c4e1eeaSChris Kay	$(s)echo
18010191262dSYatharth Kochar
180273c99d4eSJuan Castillofiptool: ${FIPTOOL}
180373c99d4eSJuan Castillofip: ${BUILD_PLAT}/${FIP_NAME}
18040191262dSYatharth Kocharfwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
180573c99d4eSJuan Castillo
1806a9812206SPali Rohár${FIPTOOL}: FORCE
180740469bf9SManish V Badarkhe	$(q)${MAKE} PLAT=${PLAT} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} --no-print-directory -C ${FIPTOOLPATH} all
1808f58ad36fSHarry Liebel
1809e4a070e3SManish V Badarkhe$(BUILD_PLAT)/romlib/romlib.bin $(BUILD_PLAT)/lib/libwrappers.a $&: $(BUILD_PLAT)/lib/libfdt.a $(BUILD_PLAT)/lib/libc.a $(CRYPTO_LIB)
1810e4a070e3SManish V Badarkhe	$(q)${MAKE} PLAT_DIR=${PLAT_DIR} BUILD_PLAT=${BUILD_PLAT} ENABLE_BTI=${ENABLE_BTI} CRYPTO_SUPPORT=${CRYPTO_SUPPORT} ARM_ARCH_MINOR=${ARM_ARCH_MINOR} INCLUDES=$(call escape-shell,$(INCLUDES)) DEFINES=$(call escape-shell,$(DEFINES)) --no-print-directory -C ${ROMLIBPATH} all
18115accce5bSRoberto Vargas
1812cfe83910SLouis Mayencourtmemmap: all
1813c25405d6SChris Kay	$(if $(host-poetry),$(q)poetry -q install --no-root)
1814ed0c801fSChris Kay	$(q)$(if $(host-poetry),poetry run )memory -sr ${BUILD_PLAT}
1815cfe83910SLouis Mayencourt
18162329e22bSHarrison Mutaitl: ${BUILD_PLAT}/tl.bin
18172329e22bSHarrison Mutai${BUILD_PLAT}/tl.bin: ${HW_CONFIG}
1818c25405d6SChris Kay	$(if $(host-poetry),$(q)poetry -q install --no-root)
1819d2867397SChris Kay	$(q)$(if $(host-poetry),poetry run )tlc create --fdt $< -s ${FW_HANDOFF_SIZE} $@
18202329e22bSHarrison Mutai
18216de32378SMadhukar Pappireddydoc:
18227c4e1eeaSChris Kay	$(s)echo "  BUILD DOCUMENTATION"
18237c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${DOCS_PATH} html
18246de32378SMadhukar Pappireddy
182590aa901fSSumit Gargenctool: ${ENCTOOL}
182690aa901fSSumit Garg
1827a9812206SPali Rohár${ENCTOOL}: FORCE
18287c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} --no-print-directory -C ${ENCTOOLPATH} all
18297c4e1eeaSChris Kay	$(s)echo
18307c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
18317c4e1eeaSChris Kay	$(s)echo
183290aa901fSSumit Garg
183335fab8c9SJoakim Bechcscope:
18347c4e1eeaSChris Kay	$(s)echo "  CSCOPE"
18357c4e1eeaSChris Kay	$(q)find ${CURDIR} -name "*.[chsS]" > cscope.files
18367c4e1eeaSChris Kay	$(q)cscope -b -q -k
183735fab8c9SJoakim Bech
183872ee3314SRyan Harkinhelp:
18397c4e1eeaSChris Kay	$(s)echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
18407c4e1eeaSChris Kay	$(s)echo ""
18417c4e1eeaSChris Kay	$(s)echo "PLAT is used to specify which platform you wish to build."
18427c4e1eeaSChris Kay	$(s)echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
18437c4e1eeaSChris Kay	$(s)echo ""
18447c4e1eeaSChris Kay	$(s)echo "platform = ${PLATFORM_LIST}"
18457c4e1eeaSChris Kay	$(s)echo ""
18467c4e1eeaSChris Kay	$(s)echo "Please refer to the User Guide for a list of all supported options."
18477c4e1eeaSChris Kay	$(s)echo "Note that the build system doesn't track dependencies for build "
18487c4e1eeaSChris Kay	$(s)echo "options. Therefore, if any of the build options are changed "
18497c4e1eeaSChris Kay	$(s)echo "from a previous build, a clean build must be performed."
18507c4e1eeaSChris Kay	$(s)echo ""
18517c4e1eeaSChris Kay	$(s)echo "Supported Targets:"
18527c4e1eeaSChris Kay	$(s)echo "  all            Build all individual bootloader binaries"
18537c4e1eeaSChris Kay	$(s)echo "  bl1            Build the BL1 binary"
18547c4e1eeaSChris Kay	$(s)echo "  bl2            Build the BL2 binary"
18557c4e1eeaSChris Kay	$(s)echo "  bl2u           Build the BL2U binary"
18567c4e1eeaSChris Kay	$(s)echo "  bl31           Build the BL31 binary"
18577c4e1eeaSChris Kay	$(s)echo "  bl32           Build the BL32 binary. If ARCH=aarch32, then "
18587c4e1eeaSChris Kay	$(s)echo "                 this builds secure payload specified by AARCH32_SP"
18597c4e1eeaSChris Kay	$(s)echo "  certificates   Build the certificates (requires 'GENERATE_COT=1')"
18607c4e1eeaSChris Kay	$(s)echo "  fip            Build the Firmware Image Package (FIP)"
18617c4e1eeaSChris Kay	$(s)echo "  fwu_fip        Build the FWU Firmware Image Package (FIP)"
18627c4e1eeaSChris Kay	$(s)echo "  checkcodebase  Check the coding style of the entire source tree"
18637c4e1eeaSChris Kay	$(s)echo "  checkpatch     Check the coding style on changes in the current"
18647c4e1eeaSChris Kay	$(s)echo "                 branch against BASE_COMMIT (default origin/master)"
18657c4e1eeaSChris Kay	$(s)echo "  clean          Clean the build for the selected platform"
18667c4e1eeaSChris Kay	$(s)echo "  cscope         Generate cscope index"
18677c4e1eeaSChris Kay	$(s)echo "  distclean      Remove all build artifacts for all platforms"
18687c4e1eeaSChris Kay	$(s)echo "  certtool       Build the Certificate generation tool"
18697c4e1eeaSChris Kay	$(s)echo "  enctool        Build the Firmware encryption tool"
18707c4e1eeaSChris Kay	$(s)echo "  fiptool        Build the Firmware Image Package (FIP) creation tool"
18717c4e1eeaSChris Kay	$(s)echo "  sp             Build the Secure Partition Packages"
18727c4e1eeaSChris Kay	$(s)echo "  sptool         Build the Secure Partition Package creation tool"
18737c4e1eeaSChris Kay	$(s)echo "  dtbs           Build the Device Tree Blobs (if required for the platform)"
18747c4e1eeaSChris Kay	$(s)echo "  memmap         Print the memory map of the built binaries"
18757c4e1eeaSChris Kay	$(s)echo "  doc            Build html based documentation using Sphinx tool"
18767c4e1eeaSChris Kay	$(s)echo ""
18777c4e1eeaSChris Kay	$(s)echo "Note: most build targets require PLAT to be set to a specific platform."
18787c4e1eeaSChris Kay	$(s)echo ""
18797c4e1eeaSChris Kay	$(s)echo "example: build all targets for the FVP platform:"
18807c4e1eeaSChris Kay	$(s)echo "  CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
1881a9812206SPali Rohár
1882a9812206SPali Rohár.PHONY: FORCE
1883a9812206SPali RohárFORCE:;
1884