xref: /rk3399_ARM-atf/Makefile (revision 1c08ff3277d47979c7897842ba683c23aa8197f7)
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
584f5211420SGovindraj Raja	# RME enables CSV2_2 extension by default.
585f5211420SGovindraj Raja	ENABLE_FEAT_CSV2_2 = 1
586f5211420SGovindraj Rajaendif #(FEAT_RME)
587f5211420SGovindraj Raja
588f5211420SGovindraj Raja################################################################################
5895b18de09SZelalem Aweke# Include rmmd Makefile if RME is enabled
5905b18de09SZelalem Aweke################################################################################
5915b18de09SZelalem Awekeifneq (${ENABLE_RME},0)
5925b18de09SZelalem Aweke	ifneq (${ARCH},aarch64)
5935b18de09SZelalem Aweke                $(error ENABLE_RME requires AArch64)
5945b18de09SZelalem Aweke	endif
5951d63ae4dSMarc Bonnici	ifeq ($(SPMC_AT_EL3),1)
5961d63ae4dSMarc Bonnici                $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
5971d63ae4dSMarc Bonnici	endif
598c5e1da83SJayanth Dodderi Chidanand
5994fba2e1fSBoyan Karatotev	ifneq (${SPD}, none)
6004fba2e1fSBoyan Karatotev		ifneq (${SPD}, spmd)
6014fba2e1fSBoyan Karatotev                        $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
6024fba2e1fSBoyan Karatotev		endif
6034fba2e1fSBoyan Karatotev	endif
6045b18de09SZelalem Awekeinclude services/std_svc/rmmd/rmmd.mk
6055b18de09SZelalem Aweke$(warning "RME is an experimental feature")
6065b18de09SZelalem Awekeendif
6075b18de09SZelalem Aweke
6083547270fSGovindraj Rajaifeq (${CTX_INCLUDE_EL2_REGS}, 1)
6093547270fSGovindraj Raja	ifeq (${SPD},none)
6103547270fSGovindraj Raja		ifeq (${ENABLE_RME},0)
6113547270fSGovindraj Raja                        $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
6123547270fSGovindraj Raja                        or RME is enabled)
6133547270fSGovindraj Raja		endif
6143547270fSGovindraj Raja	endif
6153547270fSGovindraj Rajaendif
6160f21c547SJuan Castillo
6177794d6c8SGovindraj Raja################################################################################
61830655136SGovindraj Raja# Make 128-Bit sysreg read/writes availabe when FEAT_D128 is enabled.
61930655136SGovindraj Raja################################################################################
62030655136SGovindraj Rajaifneq (${ENABLE_FEAT_D128}, 0)
62130655136SGovindraj Raja        BL_COMMON_SOURCES       +=      lib/extensions/sysreg128/sysreg128.S
62230655136SGovindraj Rajaendif
62330655136SGovindraj Raja
62430655136SGovindraj Raja################################################################################
6257794d6c8SGovindraj Raja# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
6267794d6c8SGovindraj Raja# up with appropriate march values for compiler.
6277794d6c8SGovindraj Raja################################################################################
6287794d6c8SGovindraj Rajainclude ${MAKE_HELPERS_DIRECTORY}march.mk
6297794d6c8SGovindraj Raja
6307794d6c8SGovindraj RajaTF_CFLAGS   +=	$(march-directive)
6317275ac2aSGovindraj RajaASFLAGS		+=	$(march-directive)
6327794d6c8SGovindraj Raja
63342d4d3baSArvind Ram Prakash# This internal flag is common option which is set to 1 for scenarios
63442d4d3baSArvind Ram Prakash# when the BL2 is running in EL3 level. This occurs in two scenarios -
63542d4d3baSArvind Ram Prakash# 4 world system running BL2 at EL3 and two world system without BL1 running
63642d4d3baSArvind Ram Prakash# BL2 in EL3
63742d4d3baSArvind Ram Prakash
63842d4d3baSArvind Ram Prakashifeq (${RESET_TO_BL2},1)
63942d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	1
64042d4d3baSArvind Ram Prakash	ifeq (${ENABLE_RME},1)
641c5e1da83SJayanth Dodderi Chidanand                $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
642c5e1da83SJayanth Dodderi Chidanand                supported at the moment.)
64342d4d3baSArvind Ram Prakash	endif
64442d4d3baSArvind Ram Prakashelse ifeq (${ENABLE_RME},1)
64542d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	1
64642d4d3baSArvind Ram Prakashelse
64742d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	0
64842d4d3baSArvind Ram Prakashendif
64942d4d3baSArvind Ram Prakash
650f87e54f7SManish Pandey# This internal flag is set to 1 when Firmware First handling of External aborts
651f87e54f7SManish Pandey# is required by lowe ELs. Currently only NS requires this support.
652f87e54f7SManish Pandeyifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
653f87e54f7SManish Pandey	FFH_SUPPORT := 1
654f87e54f7SManish Pandeyelse
655f87e54f7SManish Pandey	FFH_SUPPORT := 0
656f87e54f7SManish Pandeyendif
657f87e54f7SManish Pandey
65826e63c44SEtienne Carriereifeq (${ARM_ARCH_MAJOR},7)
65926e63c44SEtienne Carriereinclude make_helpers/armv7-a-cpus.mk
66026e63c44SEtienne Carriereendif
66126e63c44SEtienne Carriere
6623bd17c0fSSoby MathewPIE_FOUND		:=	$(findstring --enable-default-pie,${GCC_V_OUTPUT})
6633bd17c0fSSoby Mathewifneq ($(PIE_FOUND),)
6643bd17c0fSSoby Mathew	TF_CFLAGS	+=	-fno-PIE
6658620bd0bSChris Kayifeq ($($(ARCH)-ld-id),gnu-gcc)
6667b592418SSamuel Holland	TF_LDFLAGS	+=	-no-pie
6677b592418SSamuel Hollandendif
668c5e1da83SJayanth Dodderi Chidanandendif #(PIE_FOUND)
669320920c1SMasahiro Yamada
6708620bd0bSChris Kayifeq ($($(ARCH)-ld-id),gnu-gcc)
671320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-Wl,-pie -Wl,--no-dynamic-linker
672320920c1SMasahiro Yamadaelse
673320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-pie --no-dynamic-linker
674320920c1SMasahiro Yamadaendif
675320920c1SMasahiro Yamada
676320920c1SMasahiro Yamadaifeq ($(ENABLE_PIE),1)
67742d4d3baSArvind Ram Prakash	ifeq ($(RESET_TO_BL2),1)
67869af7fcfSMasahiro Yamada		ifneq ($(BL2_IN_XIP_MEM),1)
679966660ecSChris Kay			BL2_CPPFLAGS	+=	-fpie
68069af7fcfSMasahiro Yamada			BL2_CFLAGS	+=	-fpie
68169af7fcfSMasahiro Yamada			BL2_LDFLAGS	+=	$(PIE_LDFLAGS)
682c5e1da83SJayanth Dodderi Chidanand		endif #(BL2_IN_XIP_MEM)
683c5e1da83SJayanth Dodderi Chidanand	endif #(RESET_TO_BL2)
684966660ecSChris Kay	BL31_CPPFLAGS	+=	-fpie
685320920c1SMasahiro Yamada	BL31_CFLAGS 	+=	-fpie
686320920c1SMasahiro Yamada	BL31_LDFLAGS	+=	$(PIE_LDFLAGS)
687966660ecSChris Kay
688966660ecSChris Kay	BL32_CPPFLAGS	+=	-fpie
689d974301dSMasahiro Yamada	BL32_CFLAGS	+=	-fpie
690d974301dSMasahiro Yamada	BL32_LDFLAGS	+=	$(PIE_LDFLAGS)
691c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_PIE)
6923bd17c0fSSoby Mathew
693007433d8SBoyan KaratotevBL1_CPPFLAGS  += -DREPORT_ERRATA=${DEBUG}
694007433d8SBoyan KaratotevBL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
695007433d8SBoyan KaratotevBL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
696007433d8SBoyan Karatotev
6979cefb4b1SMasahiro YamadaBL1_CPPFLAGS += -DIMAGE_AT_EL3
69842d4d3baSArvind Ram Prakashifeq ($(RESET_TO_BL2),1)
6999cefb4b1SMasahiro Yamada	BL2_CPPFLAGS += -DIMAGE_AT_EL3
700d5e97a1dSMasahiro Yamadaelse
7019cefb4b1SMasahiro Yamada	BL2_CPPFLAGS += -DIMAGE_AT_EL1
702c5e1da83SJayanth Dodderi Chidanandendif #(RESET_TO_BL2)
703007433d8SBoyan Karatotev
704007433d8SBoyan Karatotevifeq (${ARCH},aarch64)
7059cefb4b1SMasahiro Yamada	BL2U_CPPFLAGS += -DIMAGE_AT_EL1
7069cefb4b1SMasahiro Yamada	BL31_CPPFLAGS += -DIMAGE_AT_EL3
7079cefb4b1SMasahiro Yamada	BL32_CPPFLAGS += -DIMAGE_AT_EL1
708007433d8SBoyan Karatotevelse
709007433d8SBoyan Karatotev	BL32_CPPFLAGS += -DIMAGE_AT_EL3
710d5e97a1dSMasahiro Yamadaendif
711d5e97a1dSMasahiro Yamada
71254035fc4SSandrine Bailleux# Include the CPU specific operations makefile, which provides default
71354035fc4SSandrine Bailleux# values for all CPU errata workarounds and CPU specific optimisations.
71454035fc4SSandrine Bailleux# This can be overridden by the platform.
71573c99d4eSJuan Castilloinclude lib/cpus/cpu-ops.mk
7164f6ad66aSAchin Gupta
717a4409008Sdp-arm################################################################################
718a4409008Sdp-arm# Build `AARCH32_SP` as BL32 image for AArch32
719a4409008Sdp-arm################################################################################
720c5e1da83SJayanth Dodderi Chidanandifeq (${ARCH},aarch32)
721c5e1da83SJayanth Dodderi Chidanand        NEED_BL32 := yes
722c5e1da83SJayanth Dodderi Chidanand
723a4409008Sdp-arm        ifneq (${AARCH32_SP},none)
724a4409008Sdp-arm        # We expect to locate an sp.mk under the specified AARCH32_SP directory
725a4409008Sdp-arm		AARCH32_SP_MAKE	:=	$(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
726a4409008Sdp-arm
727a4409008Sdp-arm                ifeq (${AARCH32_SP_MAKE},)
728a4409008Sdp-arm                        $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
729a4409008Sdp-arm                endif
730a4409008Sdp-arm                $(info Including ${AARCH32_SP_MAKE})
731a4409008Sdp-arm                include ${AARCH32_SP_MAKE}
732a4409008Sdp-arm        endif
733c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch32)
7344f6ad66aSAchin Gupta
73573c99d4eSJuan Castillo################################################################################
73677f1f7a1SVarun Wadekar# Include libc if not overridden
73777f1f7a1SVarun Wadekar################################################################################
73877f1f7a1SVarun Wadekarifeq (${OVERRIDE_LIBC},0)
73977f1f7a1SVarun Wadekarinclude lib/libc/libc.mk
74077f1f7a1SVarun Wadekarendif
74177f1f7a1SVarun Wadekar
74277f1f7a1SVarun Wadekar################################################################################
743c5e1da83SJayanth Dodderi Chidanand# Check incompatible options and dependencies
744cf2c8a33SAntonio Nino Diaz################################################################################
745cf2c8a33SAntonio Nino Diaz
746a0effb91SGovindraj Raja# Handle all invalid build configurations with SPMD usage.
747a0effb91SGovindraj Rajaifeq (${ENABLE_SPMD_LP}, 1)
748a0effb91SGovindraj Rajaifneq (${SPD},spmd)
749a0effb91SGovindraj Raja	$(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
750a0effb91SGovindraj Rajaendif
751a0effb91SGovindraj Rajaifeq ($(SPMC_AT_EL3),1)
752a0effb91SGovindraj Raja	$(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
753a0effb91SGovindraj Rajaendif
754a0effb91SGovindraj Rajaendif
755a0effb91SGovindraj Raja
756a0effb91SGovindraj Rajaifneq (${SPD},none)
757a0effb91SGovindraj Rajaifeq (${ARCH},aarch32)
758a0effb91SGovindraj Raja	$(error "Error: SPD is incompatible with AArch32.")
759a0effb91SGovindraj Rajaendif
760a0effb91SGovindraj Rajaifdef EL3_PAYLOAD_BASE
761a0effb91SGovindraj Raja	$(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
762a0effb91SGovindraj Raja	$(warning "The SPD and its BL32 companion will be present but ignored.")
763a0effb91SGovindraj Rajaendif
764a0effb91SGovindraj Rajaifeq (${SPD},spmd)
765a0effb91SGovindraj Rajaifeq ($(SPMD_SPM_AT_SEL2),1)
766a0effb91SGovindraj Raja	ifeq ($(SPMC_AT_EL3),1)
767a0effb91SGovindraj Raja		$(error SPM cannot be enabled in both S-EL2 and EL3.)
768a0effb91SGovindraj Raja	endif
769a0effb91SGovindraj Raja	ifeq ($(CTX_INCLUDE_SVE_REGS),1)
770a0effb91SGovindraj Raja		$(error SVE context management not needed with Hafnium SPMC.)
771a0effb91SGovindraj Raja	endif
772a0effb91SGovindraj Rajaendif
773a0effb91SGovindraj Raja
774a0effb91SGovindraj Rajaifeq ($(SPMC_AT_EL3_SEL0_SP),1)
775a0effb91SGovindraj Raja	ifneq ($(SPMC_AT_EL3),1)
776a0effb91SGovindraj Raja		$(error SEL0 SP cannot be enabled without SPMC at EL3)
777a0effb91SGovindraj Raja	endif
778a0effb91SGovindraj Rajaendif
779a0effb91SGovindraj Rajaendif #(SPD=spmd)
780a0effb91SGovindraj Rajaendif #(SPD!=none)
781a0effb91SGovindraj Raja
782c5e1da83SJayanth Dodderi Chidanand# USE_DEBUGFS experimental feature recommended only in debug builds
783c5e1da83SJayanth Dodderi Chidanandifeq (${USE_DEBUGFS},1)
784c5e1da83SJayanth Dodderi Chidanand        ifeq (${DEBUG},1)
785c5e1da83SJayanth Dodderi Chidanand                $(warning DEBUGFS experimental feature is enabled.)
786c5e1da83SJayanth Dodderi Chidanand        else
787c5e1da83SJayanth Dodderi Chidanand                $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
788c5e1da83SJayanth Dodderi Chidanand        endif
789c5e1da83SJayanth Dodderi Chidanandendif #(USE_DEBUGFS)
790c5e1da83SJayanth Dodderi Chidanand
791c5e1da83SJayanth Dodderi Chidanand# USE_SPINLOCK_CAS requires AArch64 build
792c5e1da83SJayanth Dodderi Chidanandifeq (${USE_SPINLOCK_CAS},1)
793c5e1da83SJayanth Dodderi Chidanand        ifneq (${ARCH},aarch64)
794c5e1da83SJayanth Dodderi Chidanand               $(error USE_SPINLOCK_CAS requires AArch64)
795c5e1da83SJayanth Dodderi Chidanand        endif
796c5e1da83SJayanth Dodderi Chidanandendif #(USE_SPINLOCK_CAS)
797c5e1da83SJayanth Dodderi Chidanand
798c5e1da83SJayanth Dodderi Chidanand# The cert_create tool cannot generate certificates individually, so we use the
799c5e1da83SJayanth Dodderi Chidanand# target 'certificates' to create them all
800c5e1da83SJayanth Dodderi Chidanandifneq (${GENERATE_COT},0)
801c5e1da83SJayanth Dodderi Chidanand        FIP_DEPS += certificates
802c5e1da83SJayanth Dodderi Chidanand        FWU_FIP_DEPS += fwu_certificates
803c5e1da83SJayanth Dodderi Chidanandendif
804c5e1da83SJayanth Dodderi Chidanand
805c5e1da83SJayanth Dodderi Chidanandifneq (${DECRYPTION_SUPPORT},none)
806c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -f ${FW_ENC_STATUS}
807c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -k ${ENC_KEY}
808c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -n ${ENC_NONCE}
809c5e1da83SJayanth Dodderi Chidanand	FIP_DEPS += enctool
810c5e1da83SJayanth Dodderi Chidanand	FWU_FIP_DEPS += enctool
811c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
812c5e1da83SJayanth Dodderi Chidanand
813cf2c8a33SAntonio Nino Diazifdef EL3_PAYLOAD_BASE
81468450a6dSAntonio Nino Diaz	ifdef PRELOADED_BL33_BASE
81568450a6dSAntonio Nino Diaz                $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
81668450a6dSAntonio Nino Diaz		incompatible build options. EL3_PAYLOAD_BASE has priority.")
817cf2c8a33SAntonio Nino Diaz	endif
81876580f3dSQixiang Xu	ifneq (${GENERATE_COT},0)
819c5e1da83SJayanth Dodderi Chidanand                $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
820c5e1da83SJayanth Dodderi Chidanand                build options.")
82176580f3dSQixiang Xu	endif
82276580f3dSQixiang Xu	ifneq (${TRUSTED_BOARD_BOOT},0)
823c5e1da83SJayanth Dodderi Chidanand                $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
824c5e1da83SJayanth Dodderi Chidanand                incompatible \ build options.")
82576580f3dSQixiang Xu	endif
826c5e1da83SJayanth Dodderi Chidanandendif #(EL3_PAYLOAD_BASE)
827cf2c8a33SAntonio Nino Diaz
828cf2c8a33SAntonio Nino Diazifeq (${NEED_BL33},yes)
829cf2c8a33SAntonio Nino Diaz	ifdef EL3_PAYLOAD_BASE
830cf2c8a33SAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
831cf2c8a33SAntonio Nino Diaz                BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
832cf2c8a33SAntonio Nino Diaz	endif
83368450a6dSAntonio Nino Diaz	ifdef PRELOADED_BL33_BASE
83468450a6dSAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
835c5e1da83SJayanth Dodderi Chidanand                PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
836cf2c8a33SAntonio Nino Diaz	endif
837c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL33)
838cf2c8a33SAntonio Nino Diaz
839d4593e47SJeenu Viswambharan# When building for systems with hardware-assisted coherency, there's no need to
840d4593e47SJeenu Viswambharan# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
841d4593e47SJeenu Viswambharanifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
842d4593e47SJeenu Viswambharan        $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
843d4593e47SJeenu Viswambharanendif
8441a0a3f06SYatharth Kochar
84542d4d3baSArvind Ram Prakash#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
84642d4d3baSArvind Ram Prakashifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
84742d4d3baSArvind Ram Prakash        $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
8487d173fc5SJiafei Panendif
8497d173fc5SJiafei Pan
8509202d519SManish Pandey# RAS_EXTENSION is deprecated, provide alternate build options
85114c6016aSJeenu Viswambharanifeq ($(RAS_EXTENSION),1)
852c5e1da83SJayanth Dodderi Chidanand        $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
853f87e54f7SManish Pandey        and HANDLE_EA_EL3_FIRST_NS instead")
8549202d519SManish Pandeyendif
855c5e1da83SJayanth Dodderi Chidanand
856c5e1da83SJayanth Dodderi Chidanand
8579202d519SManish Pandey# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
8581a7c1cfeSJeenu Viswambharanifeq ($(FAULT_INJECTION_SUPPORT),1)
8596503ff29SAndre Przywara	ifeq ($(ENABLE_FEAT_RAS),0)
8606503ff29SAndre Przywara                $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
8611a7c1cfeSJeenu Viswambharan	endif
862c5e1da83SJayanth Dodderi Chidanandendif #(FAULT_INJECTION_SUPPORT)
8631a7c1cfeSJeenu Viswambharan
864ed51b51fSRoberto Vargas# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
865209a60ccSSoby Mathewifeq ($(DYN_DISABLE_AUTH), 1)
866209a60ccSSoby Mathew	ifeq (${TRUSTED_BOARD_BOOT}, 0)
867c5e1da83SJayanth Dodderi Chidanand                $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
868c5e1da83SJayanth Dodderi Chidanand                to be set.")
869209a60ccSSoby Mathew	endif
870c5e1da83SJayanth Dodderi Chidanandendif #(DYN_DISABLE_AUTH)
871209a60ccSSoby Mathew
8722bf4f27fSManish V Badarkheifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
8732bf4f27fSManish V Badarkhe# Support authentication verification and hash calculation
8742bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT := 3
8752bf4f27fSManish V Badarkheelse ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
8762bf4f27fSManish V Badarkhe# Support authentication verification and hash calculation
8772bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT := 3
8782bf4f27fSManish V Badarkheelse ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
8792bf4f27fSManish V Badarkhe# Support hash calculation only
8802bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT := 2
8812bf4f27fSManish V Badarkheelse ifeq (${TRUSTED_BOARD_BOOT},1)
8822bf4f27fSManish V Badarkhe# Support authentication verification only
883c9c56f6eSManish V Badarkhe	CRYPTO_SUPPORT := 1
884c9c56f6eSManish V Badarkheelse
885c9c56f6eSManish V Badarkhe	CRYPTO_SUPPORT := 0
886c5e1da83SJayanth Dodderi Chidanandendif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
887c9c56f6eSManish V Badarkhe
888e4a070e3SManish V Badarkheifneq ($(filter 1 2 3,$(CRYPTO_SUPPORT)),)
889e4a070e3SManish V BadarkheCRYPTO_LIB := $(BUILD_PLAT)/lib/libmbedtls.a
890e4a070e3SManish V Badarkheendif
891e4a070e3SManish V Badarkhe
892cbf9e84aSBalint Dobszay# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
893cbf9e84aSBalint Dobszayifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
894700e7685SManish Pandey        $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
89584ef9cd8SManish V Badarkheendif
89684ef9cd8SManish V Badarkhe
897b86048c4SAntonio Nino Diaz# If pointer authentication is used in the firmware, make sure that all the
8989fc59639SAlexei Fedorov# registers associated to it are also saved and restored.
8999fc59639SAlexei Fedorov# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
900b86048c4SAntonio Nino Diazifeq ($(ENABLE_PAUTH),1)
9019fc59639SAlexei Fedorov	ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
9029fc59639SAlexei Fedorov                $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
90306715f85SAlexei Fedorov	endif
904c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_PAUTH)
9059fc59639SAlexei Fedorov
90606715f85SAlexei Fedorovifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
9079fc59639SAlexei Fedorov	ifneq (${ARCH},aarch64)
9089fc59639SAlexei Fedorov                $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
909b86048c4SAntonio Nino Diaz	endif
910c5e1da83SJayanth Dodderi Chidanandendif #(CTX_INCLUDE_PAUTH_REGS)
9119fc59639SAlexei Fedorov
9126a0da736SJayanth Dodderi Chidanandifeq ($(FEATURE_DETECTION),1)
9136a0da736SJayanth Dodderi Chidanand        $(info FEATURE_DETECTION is an experimental feature)
914c5e1da83SJayanth Dodderi Chidanandendif #(FEATURE_DETECTION)
9156a0da736SJayanth Dodderi Chidanand
91603d3c0d7SJayanth Dodderi Chidanandifneq ($(ENABLE_SME2_FOR_NS), 0)
91703d3c0d7SJayanth Dodderi Chidanand	ifeq (${ENABLE_SME_FOR_NS}, 0)
918c5e1da83SJayanth Dodderi Chidanand                $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
919c5e1da83SJayanth Dodderi Chidanand                to be set")
92003d3c0d7SJayanth Dodderi Chidanand                $(warning "Forced ENABLE_SME_FOR_NS=1")
92103d3c0d7SJayanth Dodderi Chidanand		override ENABLE_SME_FOR_NS	:= 1
92203d3c0d7SJayanth Dodderi Chidanand	endif
923c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_SME2_FOR_NS)
92445007acdSJayanth Dodderi Chidanand
92560e8f3cfSPetre-Ionut Tudorifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
92660e8f3cfSPetre-Ionut Tudor	ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
927c5e1da83SJayanth Dodderi Chidanand                $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
928c5e1da83SJayanth Dodderi Chidanand                library v2")
92960e8f3cfSPetre-Ionut Tudor	endif
930c5e1da83SJayanth Dodderi Chidanandendif #(ARM_XLAT_TABLES_LIB_V1)
93160e8f3cfSPetre-Ionut Tudor
9327cda17bbSSumit Gargifneq (${DECRYPTION_SUPPORT},none)
9337cda17bbSSumit Garg	ifeq (${TRUSTED_BOARD_BOOT}, 0)
934c5e1da83SJayanth Dodderi Chidanand                $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
935c5e1da83SJayanth Dodderi Chidanand                to be set)
9367cda17bbSSumit Garg	endif
937c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
9387cda17bbSSumit Garg
939744ad974Sjohpow01# Ensure that no Aarch64-only features are enabled in Aarch32 build
940dc78e62dSjohpow01ifeq (${ARCH},aarch32)
941744ad974Sjohpow01
942744ad974Sjohpow01	# SME/SVE only supported on AArch64
94345007acdSJayanth Dodderi Chidanand	ifneq (${ENABLE_SME_FOR_NS},0)
944dc78e62dSjohpow01                $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
945dc78e62dSjohpow01	endif
94603d3c0d7SJayanth Dodderi Chidanand
947dc78e62dSjohpow01	ifeq (${ENABLE_SVE_FOR_NS},1)
948dc78e62dSjohpow01		# Warning instead of error due to CI dependency on this
94924ab2c0aSYann Gautier                $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
950dc78e62dSjohpow01	endif
951744ad974Sjohpow01
952ff86e0b4SJuan Pablo Conde	# BRBE is not supported in AArch32
953744ad974Sjohpow01	ifeq (${ENABLE_BRBE_FOR_NS},1)
954744ad974Sjohpow01                $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
955744ad974Sjohpow01	endif
956744ad974Sjohpow01
957ff86e0b4SJuan Pablo Conde	# FEAT_RNG_TRAP is not supported in AArch32
958ff86e0b4SJuan Pablo Conde	ifeq (${ENABLE_FEAT_RNG_TRAP},1)
959ff86e0b4SJuan Pablo Conde                $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
960ff86e0b4SJuan Pablo Conde	endif
961a57e18e4SArvind Ram Prakash
962a57e18e4SArvind Ram Prakash	ifneq (${ENABLE_FEAT_FPMR},0)
963a57e18e4SArvind Ram Prakash                $(error "ENABLE_FEAT_FPMR cannot be used with ARCH=aarch32")
964a57e18e4SArvind Ram Prakash	endif
9658db17052SBoyan Karatotev
9668db17052SBoyan Karatotev	ifeq (${ARCH_FEATURE_AVAILABILITY},1)
9678db17052SBoyan Karatotev                $(error "ARCH_FEATURE_AVAILABILITY cannot be used with ARCH=aarch32")
9688db17052SBoyan Karatotev	endif
9696b8df7b9SArvind Ram Prakash	# FEAT_MOPS is only supported on AArch64
9706b8df7b9SArvind Ram Prakash	ifneq (${ENABLE_FEAT_MOPS},0)
9716b8df7b9SArvind Ram Prakash		$(error "ENABLE_FEAT_MOPS cannot be used with ARCH=aarch32")
9726b8df7b9SArvind Ram Prakash	endif
973c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch32)
974dc78e62dSjohpow01
975a57e18e4SArvind Ram Prakashifneq (${ENABLE_FEAT_FPMR},0)
976a57e18e4SArvind Ram Prakash	ifeq (${ENABLE_FEAT_FGT},0)
977a57e18e4SArvind Ram Prakash                $(error "ENABLE_FEAT_FPMR requires ENABLE_FEAT_FGT")
978a57e18e4SArvind Ram Prakash	endif
979a57e18e4SArvind Ram Prakash	ifeq (${ENABLE_FEAT_HCX},0)
980a57e18e4SArvind Ram Prakash                $(error "ENABLE_FEAT_FPMR requires ENABLE_FEAT_HCX")
981a57e18e4SArvind Ram Prakash	endif
982a57e18e4SArvind Ram Prakashendif #(ENABLE_FEAT_FPMR)
983a57e18e4SArvind Ram Prakash
9840d122947SBoyan Karatotevifneq (${ENABLE_SME_FOR_NS},0)
9850d122947SBoyan Karatotev	ifeq (${ENABLE_SVE_FOR_NS},0)
9860d122947SBoyan Karatotev                $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
9870d122947SBoyan Karatotev	endif
988c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_SME_FOR_NS)
9890d122947SBoyan Karatotev
990dc78e62dSjohpow01# Secure SME/SVE requires the non-secure component as well
991dc78e62dSjohpow01ifeq (${ENABLE_SME_FOR_SWD},1)
992dc78e62dSjohpow01	ifeq (${ENABLE_SME_FOR_NS},0)
993dc78e62dSjohpow01                $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
994dc78e62dSjohpow01	endif
9950d122947SBoyan Karatotev	ifeq (${ENABLE_SVE_FOR_SWD},0)
9960d122947SBoyan Karatotev                $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
9970d122947SBoyan Karatotev	endif
998c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_SME_FOR_SWD)
999c5e1da83SJayanth Dodderi Chidanand
10003524d074SMadhukar Pappireddy# Enabling SVE for SWD requires enabling SVE for NWD due to ENABLE_FEAT
10013524d074SMadhukar Pappireddy# mechanism.
1002dc78e62dSjohpow01ifeq (${ENABLE_SVE_FOR_SWD},1)
1003dc78e62dSjohpow01    ifeq (${ENABLE_SVE_FOR_NS},0)
1004dc78e62dSjohpow01        $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
1005dc78e62dSjohpow01    endif
10063524d074SMadhukar Pappireddyendif
1007dc78e62dSjohpow01
10083524d074SMadhukar Pappireddy# Enabling SVE for both the worlds typically requires the context
10093524d074SMadhukar Pappireddy# management of SVE registers. The only exception being SPMC at S-EL2.
10103524d074SMadhukar Pappireddyifeq (${ENABLE_SVE_FOR_SWD}, 1)
10113524d074SMadhukar Pappireddy    ifneq (${ENABLE_SVE_FOR_NS}, 0)
10123524d074SMadhukar Pappireddy        ifeq (${CTX_INCLUDE_SVE_REGS}-$(SPMD_SPM_AT_SEL2),0-0)
10133524d074SMadhukar Pappireddy            $(warning "ENABLE_SVE_FOR_SWD and ENABLE_SVE_FOR_NS together require CTX_INCLUDE_SVE_REGS")
10143524d074SMadhukar Pappireddy        endif
10153524d074SMadhukar Pappireddy    endif
10163524d074SMadhukar Pappireddyendif
10173524d074SMadhukar Pappireddy
10183524d074SMadhukar Pappireddy# Enabling SVE in either world while enabling CTX_INCLUDE_FPREGS requires
10193524d074SMadhukar Pappireddy# CTX_INCLUDE_SVE_REGS to be enabled due to architectural dependency between FP
10203524d074SMadhukar Pappireddy# and SVE registers.
10213524d074SMadhukar Pappireddyifeq (${CTX_INCLUDE_FPREGS}, 1)
10223524d074SMadhukar Pappireddy    ifneq (${ENABLE_SVE_FOR_NS},0)
10233524d074SMadhukar Pappireddy        ifeq (${CTX_INCLUDE_SVE_REGS},0)
10243524d074SMadhukar Pappireddy	    # Warning instead of error due to CI dependency on this
10253524d074SMadhukar Pappireddy            $(warning "CTX_INCLUDE_FPREGS and ENABLE_SVE_FOR_NS together require CTX_INCLUDE_SVE_REGS")
10263524d074SMadhukar Pappireddy            $(warning "Forced ENABLE_SVE_FOR_NS=0")
10273524d074SMadhukar Pappireddy	    override ENABLE_SVE_FOR_NS	:= 0
10283524d074SMadhukar Pappireddy        endif
10293524d074SMadhukar Pappireddy    endif
10303524d074SMadhukar Pappireddyendif #(CTX_INCLUDE_FPREGS)
10313524d074SMadhukar Pappireddy
10323524d074SMadhukar Pappireddy# SVE context management is only required if secure world has access to SVE/FP
10333524d074SMadhukar Pappireddy# functionality.
10343524d074SMadhukar Pappireddyifeq (${CTX_INCLUDE_SVE_REGS},1)
10353524d074SMadhukar Pappireddy    ifeq (${ENABLE_SVE_FOR_SWD},0)
10363524d074SMadhukar Pappireddy        $(error "CTX_INCLUDE_SVE_REGS requires ENABLE_SVE_FOR_SWD to also be enabled")
10373524d074SMadhukar Pappireddy    endif
10383524d074SMadhukar Pappireddyendif
10393524d074SMadhukar Pappireddy
10403524d074SMadhukar Pappireddy# SME cannot be used with CTX_INCLUDE_FPREGS since SPM does its own context
10413524d074SMadhukar Pappireddy# management including FPU registers.
1042dc78e62dSjohpow01ifeq (${CTX_INCLUDE_FPREGS},1)
104345007acdSJayanth Dodderi Chidanand    ifneq (${ENABLE_SME_FOR_NS},0)
1044dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1045dc78e62dSjohpow01    endif
1046c5e1da83SJayanth Dodderi Chidanandendif #(CTX_INCLUDE_FPREGS)
1047dc78e62dSjohpow01
104800e28874SManish V Badarkheifeq ($(DRTM_SUPPORT),1)
104900e28874SManish V Badarkhe        $(info DRTM_SUPPORT is an experimental feature)
105000e28874SManish V Badarkheendif
105100e28874SManish V Badarkhe
10528953568aSLevi Yunifeq (${HOB_LIST},1)
10538953568aSLevi Yun        $(warning HOB_LIST is an experimental feature)
10548953568aSLevi Yunendif
10558953568aSLevi Yun
10563ba2c151SRaymond Maoifeq (${TRANSFER_LIST},1)
10573ba2c151SRaymond Mao        $(info TRANSFER_LIST is an experimental feature)
10583ba2c151SRaymond Maoendif
10593ba2c151SRaymond Mao
1060274a69e7SChris Kayifeq (${ENABLE_RME},1)
1061274a69e7SChris Kay	ifneq (${SEPARATE_CODE_AND_RODATA},1)
1062274a69e7SChris Kay                $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1063274a69e7SChris Kay	endif
1064274a69e7SChris Kayendif
1065274a69e7SChris Kay
10665782b890SManish V Badarkheifeq ($(PSA_CRYPTO),1)
10675782b890SManish V Badarkhe        $(info PSA_CRYPTO is an experimental feature)
10685782b890SManish V Badarkheendif
10695782b890SManish V Badarkhe
107082222db8SManish V Badarkheifeq ($(DICE_PROTECTION_ENVIRONMENT),1)
107182222db8SManish V Badarkhe        $(info DICE_PROTECTION_ENVIRONMENT is an experimental feature)
107282222db8SManish V Badarkheendif
107382222db8SManish V Badarkhe
1074cf2c8a33SAntonio Nino Diaz################################################################################
107573c99d4eSJuan Castillo# Process platform overrideable behaviour
107673c99d4eSJuan Castillo################################################################################
10774f6ad66aSAchin Gupta
10785f24ce96SManish Pandeyifdef BL1_SOURCES
10795f24ce96SManish Pandey	NEED_BL1 := yes
1080c5e1da83SJayanth Dodderi Chidanandendif #(BL1_SOURCES)
10815f24ce96SManish Pandey
10825f24ce96SManish Pandeyifdef BL2_SOURCES
10835f24ce96SManish Pandey	NEED_BL2 := yes
10845f24ce96SManish Pandey
1085bd97f83aSJohn Tsichritzis	# Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1086bd97f83aSJohn Tsichritzis	# Certificate generation tools. This flag can be overridden by the platform.
1087cf2c8a33SAntonio Nino Diaz	ifdef EL3_PAYLOAD_BASE
1088cf2c8a33SAntonio Nino Diaz		# If booting an EL3 payload there is no need for a BL33 image
1089cf2c8a33SAntonio Nino Diaz		# in the FIP file.
10904c117f6cSSandrine Bailleux		NEED_BL33		:=	no
1091cf2c8a33SAntonio Nino Diaz	else
109268450a6dSAntonio Nino Diaz		ifdef PRELOADED_BL33_BASE
1093cf2c8a33SAntonio Nino Diaz			# If booting a BL33 preloaded image there is no need of
1094cf2c8a33SAntonio Nino Diaz			# another one in the FIP file.
1095cf2c8a33SAntonio Nino Diaz			NEED_BL33		:=	no
1096cf2c8a33SAntonio Nino Diaz		else
1097cf2c8a33SAntonio Nino Diaz			NEED_BL33		?=	yes
1098cf2c8a33SAntonio Nino Diaz		endif
10994c117f6cSSandrine Bailleux	endif
1100c5e1da83SJayanth Dodderi Chidanandendif #(BL2_SOURCES)
11016f971622SJuan Castillo
11025f24ce96SManish Pandeyifdef BL2U_SOURCES
11035f24ce96SManish Pandey	NEED_BL2U := yes
1104c5e1da83SJayanth Dodderi Chidanandendif #(BL2U_SOURCES)
11055f24ce96SManish Pandey
11064d045d0eSMasahiro Yamada# If SCP_BL2 is given, we always want FIP to include it.
11074d045d0eSMasahiro Yamadaifdef SCP_BL2
11084d045d0eSMasahiro Yamada	NEED_SCP_BL2		:=	yes
1109c5e1da83SJayanth Dodderi Chidanandendif #(SCP_BL2)
11104d045d0eSMasahiro Yamada
11115744e874SSoby Mathew# For AArch32, BL31 is not currently supported.
11125744e874SSoby Mathewifneq (${ARCH},aarch32)
11135744e874SSoby Mathew	ifdef BL31_SOURCES
1114c5e1da83SJayanth Dodderi Chidanand	# When booting an EL3 payload, there is no need to compile the BL31
1115c5e1da83SJayanth Dodderi Chidanand	# image nor put it in the FIP.
11165744e874SSoby Mathew		ifndef EL3_PAYLOAD_BASE
11175744e874SSoby Mathew			NEED_BL31 := yes
11185744e874SSoby Mathew		endif
11195744e874SSoby Mathew	endif
1120c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch64)
11215744e874SSoby Mathew
112273c99d4eSJuan Castillo# Process TBB related flags
11236f971622SJuan Castilloifneq (${GENERATE_COT},0)
112473c99d4eSJuan Castillo	# Common cert_create options
11256f971622SJuan Castillo	ifneq (${CREATE_KEYS},0)
11266f971622SJuan Castillo                $(eval CRT_ARGS += -n)
11270191262dSYatharth Kochar                $(eval FWU_CRT_ARGS += -n)
1128fd34e7baSJuan Castillo		ifneq (${SAVE_KEYS},0)
1129fd34e7baSJuan Castillo                        $(eval CRT_ARGS += -k)
11300191262dSYatharth Kochar                        $(eval FWU_CRT_ARGS += -k)
1131fd34e7baSJuan Castillo		endif
11326f971622SJuan Castillo	endif
113373c99d4eSJuan Castillo	# Include TBBR makefile (unless the platform indicates otherwise)
113473c99d4eSJuan Castillo	ifeq (${INCLUDE_TBBR_MK},1)
113573c99d4eSJuan Castillo                include make_helpers/tbbr/tbbr_tools.mk
113673c99d4eSJuan Castillo	endif
1137c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
11386f971622SJuan Castillo
11391c75d5dfSMasahiro Yamadaifneq (${FIP_ALIGN},0)
11401c75d5dfSMasahiro Yamada	FIP_ARGS += --align ${FIP_ALIGN}
1141c5e1da83SJayanth Dodderi Chidanandendif #(FIP_ALIGN)
11421c75d5dfSMasahiro Yamada
11435f24ce96SManish Pandeyifdef FDT_SOURCES
11445f24ce96SManish Pandey	NEED_FDT := yes
1145c5e1da83SJayanth Dodderi Chidanandendif #(FDT_SOURCES)
11465f24ce96SManish Pandey
114773c99d4eSJuan Castillo################################################################################
114846e5e035SMichalis Pappas# Include libraries' Makefile that are used in all BL
114946e5e035SMichalis Pappas################################################################################
115046e5e035SMichalis Pappas
115146e5e035SMichalis Pappasinclude lib/stack_protector/stack_protector.mk
115246e5e035SMichalis Pappas
115346e5e035SMichalis Pappas################################################################################
11548a86052dSSoby Mathew# Include BL specific makefiles
11558a86052dSSoby Mathew################################################################################
11565f24ce96SManish Pandey
11575f24ce96SManish Pandeyifeq (${NEED_BL1},yes)
11588a86052dSSoby Mathewinclude bl1/bl1.mk
11598a86052dSSoby Mathewendif
11608a86052dSSoby Mathew
11615f24ce96SManish Pandeyifeq (${NEED_BL2},yes)
11628a86052dSSoby Mathewinclude bl2/bl2.mk
11638a86052dSSoby Mathewendif
11648a86052dSSoby Mathew
11655f24ce96SManish Pandeyifeq (${NEED_BL2U},yes)
11668a86052dSSoby Mathewinclude bl2u/bl2u.mk
11678a86052dSSoby Mathewendif
11688a86052dSSoby Mathew
11695744e874SSoby Mathewifeq (${NEED_BL31},yes)
11708a86052dSSoby Mathewinclude bl31/bl31.mk
11718a86052dSSoby Mathewendif
117203b397a8SNishanth Menon
117373c99d4eSJuan Castillo################################################################################
117473c99d4eSJuan Castillo# Build options checks
117573c99d4eSJuan Castillo################################################################################
117673c99d4eSJuan Castillo
1177c5e1da83SJayanth Dodderi Chidanand# Boolean_Flags
1178327131c4SLeonardo Sandoval$(eval $(call assert_booleans,\
1179327131c4SLeonardo Sandoval    $(sort \
1180327131c4SLeonardo Sandoval	ALLOW_RO_XLAT_TABLES \
118146789a7cSBalint Dobszay	BL2_ENABLE_SP_LOAD \
1182327131c4SLeonardo Sandoval	COLD_BOOT_SINGLE_CPU \
1183327131c4SLeonardo Sandoval	CREATE_KEYS \
1184327131c4SLeonardo Sandoval	CTX_INCLUDE_AARCH32_REGS \
1185327131c4SLeonardo Sandoval	CTX_INCLUDE_FPREGS \
118642422622SMadhukar Pappireddy	CTX_INCLUDE_SVE_REGS \
1187327131c4SLeonardo Sandoval	CTX_INCLUDE_EL2_REGS \
11889acff28aSArvind Ram Prakash	CTX_INCLUDE_MPAM_REGS \
1189327131c4SLeonardo Sandoval	DEBUG \
1190327131c4SLeonardo Sandoval	DYN_DISABLE_AUTH \
1191327131c4SLeonardo Sandoval	EL3_EXCEPTION_HANDLING \
11921fd685a7SChris Kay	ENABLE_AMU_AUXILIARY_COUNTERS \
1193873d4241Sjohpow01	AMU_RESTRICT_COUNTERS \
1194327131c4SLeonardo Sandoval	ENABLE_ASSERTIONS \
1195327131c4SLeonardo Sandoval	ENABLE_PIE \
1196327131c4SLeonardo Sandoval	ENABLE_PMF \
1197327131c4SLeonardo Sandoval	ENABLE_PSCI_STAT \
1198327131c4SLeonardo Sandoval	ENABLE_RUNTIME_INSTRUMENTATION \
1199dc78e62dSjohpow01	ENABLE_SME_FOR_SWD \
12000c5e7d1cSMax Shvetsov	ENABLE_SVE_FOR_SWD \
1201970a4a8dSManish Pandey	ENABLE_FEAT_RAS	\
1202f87e54f7SManish Pandey	FFH_SUPPORT	\
1203327131c4SLeonardo Sandoval	ERROR_DEPRECATED \
1204327131c4SLeonardo Sandoval	FAULT_INJECTION_SUPPORT \
1205327131c4SLeonardo Sandoval	GENERATE_COT \
1206327131c4SLeonardo Sandoval	GICV2_G0_FOR_EL3 \
120746cc41d5SManish Pandey	HANDLE_EA_EL3_FIRST_NS \
1208538516f5SBipin Ravi	HARDEN_SLS \
1209327131c4SLeonardo Sandoval	HW_ASSISTED_COHERENCY \
1210327131c4SLeonardo Sandoval	MEASURED_BOOT \
1211e7f1181fSTamas Ban	DICE_PROTECTION_ENVIRONMENT \
12126a88ec8bSRaghu Krishnamurthy	RMMD_ENABLE_EL3_TOKEN_SIGN \
121300e28874SManish V Badarkhe	DRTM_SUPPORT \
1214327131c4SLeonardo Sandoval	NS_TIMER_SWITCH \
1215327131c4SLeonardo Sandoval	OVERRIDE_LIBC \
1216327131c4SLeonardo Sandoval	PL011_GENERIC_UART \
1217327131c4SLeonardo Sandoval	PROGRAMMABLE_RESET_ADDRESS \
1218327131c4SLeonardo Sandoval	PSCI_EXTENDED_STATE_ID \
121964b4710bSWing Li	PSCI_OS_INIT_MODE \
12208db17052SBoyan Karatotev	ARCH_FEATURE_AVAILABILITY \
1221327131c4SLeonardo Sandoval	RESET_TO_BL31 \
1222327131c4SLeonardo Sandoval	SAVE_KEYS \
1223327131c4SLeonardo Sandoval	SEPARATE_CODE_AND_RODATA \
122496a8ed14SJiafei Pan	SEPARATE_BL2_NOLOAD_REGION \
1225327131c4SLeonardo Sandoval	SEPARATE_NOBITS_REGION \
122686acbbe2SYe Li	SEPARATE_RWDATA_REGION \
1227308ebfa1SMadhukar Pappireddy	SEPARATE_SIMD_SECTION \
1228327131c4SLeonardo Sandoval	SPIN_ON_BL1_EXIT \
1229327131c4SLeonardo Sandoval	SPM_MM \
12301d63ae4dSMarc Bonnici	SPMC_AT_EL3 \
1231801cd3c8SNishant Sharma	SPMC_AT_EL3_SEL0_SP \
1232327131c4SLeonardo Sandoval	SPMD_SPM_AT_SEL2 \
1233890b5088SRaghu Krishnamurthy	ENABLE_SPMD_LP \
12343ba2c151SRaymond Mao	TRANSFER_LIST \
1235327131c4SLeonardo Sandoval	TRUSTED_BOARD_BOOT \
1236327131c4SLeonardo Sandoval	USE_COHERENT_MEM \
1237327131c4SLeonardo Sandoval	USE_DEBUGFS \
1238327131c4SLeonardo Sandoval	ARM_IO_IN_DTB \
1239327131c4SLeonardo Sandoval	SDEI_IN_FCONF \
1240327131c4SLeonardo Sandoval	SEC_INT_DESC_IN_FCONF \
1241327131c4SLeonardo Sandoval	USE_ROMLIB \
1242327131c4SLeonardo Sandoval	USE_TBBR_DEFS \
1243327131c4SLeonardo Sandoval	WARMBOOT_ENABLE_DCACHE_EARLY \
124442d4d3baSArvind Ram Prakash	RESET_TO_BL2 \
1245327131c4SLeonardo Sandoval	BL2_IN_XIP_MEM \
1246327131c4SLeonardo Sandoval	BL2_INV_DCACHE \
1247327131c4SLeonardo Sandoval	USE_SPINLOCK_CAS \
1248327131c4SLeonardo Sandoval	ENCRYPT_BL31 \
1249327131c4SLeonardo Sandoval	ENCRYPT_BL32 \
1250327131c4SLeonardo Sandoval	ERRATA_SPECULATIVE_AT \
125145c7328cSBoyan Karatotev	ERRATA_SME_POWER_DOWN \
125200e8f79cSManish Pandey	RAS_TRAP_NS_ERR_REC_ACCESS \
1253327131c4SLeonardo Sandoval	COT_DESC_IN_DTB \
1254327131c4SLeonardo Sandoval	USE_SP804_TIMER \
1255396b339dSManish V Badarkhe	PSA_FWU_SUPPORT \
125611d05a77SSughosh Ganu	PSA_FWU_METADATA_FW_STORE_DESC \
125768120783SChris Kay	ENABLE_MPMM \
12582b5e00d4SBoyan Karatotev	FEAT_PABANDON \
12596a0da736SJayanth Dodderi Chidanand	FEATURE_DETECTION \
12600b22e591SJayanth Dodderi Chidanand	TRNG_SUPPORT \
1261593ae354SBoyan Karatotev	ENABLE_ERRATA_ALL \
1262ffea3844SSona Mathew	ERRATA_ABI_SUPPORT \
1263ef63f5beSSona Mathew	ERRATA_NON_ARM_INTERCONNECT \
126404c7303bSOkash Khawaja	CONDITIONAL_CMO \
12655782b890SManish V Badarkhe	PSA_CRYPTO	\
126685bebe18SSandrine Bailleux	ENABLE_CONSOLE_GETC \
1267183329a5SArvind Ram Prakash	INIT_UNUSED_NS_EL2	\
1268bfef8b90SJuan Pablo Conde	PLATFORM_REPORT_CTX_MEM_USE \
1269ae770fedSYann Gautier	EARLY_CONSOLE \
1270f99a69c3SArvind Ram Prakash	PRESERVE_DSU_PMU_REGS \
12718953568aSLevi Yun	HOB_LIST \
1272327131c4SLeonardo Sandoval)))
127373c99d4eSJuan Castillo
1274c5e1da83SJayanth Dodderi Chidanand# Numeric_Flags
1275327131c4SLeonardo Sandoval$(eval $(call assert_numerics,\
1276327131c4SLeonardo Sandoval    $(sort \
1277327131c4SLeonardo Sandoval	ARM_ARCH_MAJOR \
1278327131c4SLeonardo Sandoval	ARM_ARCH_MINOR \
1279327131c4SLeonardo Sandoval	BRANCH_PROTECTION \
12806a0da736SJayanth Dodderi Chidanand	CTX_INCLUDE_PAUTH_REGS \
12816a0da736SJayanth Dodderi Chidanand	CTX_INCLUDE_NEVE_REGS \
12822bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT \
128383a4dae1SBoyan Karatotev	DISABLE_MTPMU \
12841298f2f1SJayanth Dodderi Chidanand	ENABLE_BRBE_FOR_NS \
128547c681b7SJayanth Dodderi Chidanand	ENABLE_TRBE_FOR_NS \
12866a0da736SJayanth Dodderi Chidanand	ENABLE_BTI \
12876a0da736SJayanth Dodderi Chidanand	ENABLE_PAUTH \
1288d23acc9eSAndre Przywara	ENABLE_FEAT_AMU \
12896a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_AMUv1p1 \
12906a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_CSV2_2 \
129130019d86SSona Mathew	ENABLE_FEAT_CSV2_3 \
129283271d5aSArvind Ram Prakash	ENABLE_FEAT_DEBUGV8P9 \
12936a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_DIT \
12946a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_ECV \
12956a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_FGT \
129633e6aaacSArvind Ram Prakash	ENABLE_FEAT_FGT2 \
1297a57e18e4SArvind Ram Prakash	ENABLE_FEAT_FPMR \
12986a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_HCX \
129919d52a83SAndre Przywara	ENABLE_FEAT_LS64_ACCDATA \
13006b8df7b9SArvind Ram Prakash	ENABLE_FEAT_MOPS \
13018e397889SGovindraj Raja	ENABLE_FEAT_MTE2 \
13026a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_PAN \
13036a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_RNG \
1304ff86e0b4SJuan Pablo Conde	ENABLE_FEAT_RNG_TRAP \
13056a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_SEL2 \
1306d3331603SMark Brown	ENABLE_FEAT_TCR2 \
13076d0433f0SJayanth Dodderi Chidanand	ENABLE_FEAT_THE \
13080e4daed2SGovindraj Raja	ENABLE_FEAT_SB \
1309062b6c6bSMark Brown	ENABLE_FEAT_S2PIE \
1310062b6c6bSMark Brown	ENABLE_FEAT_S1PIE \
1311062b6c6bSMark Brown	ENABLE_FEAT_S2POE \
1312062b6c6bSMark Brown	ENABLE_FEAT_S1POE \
13134ec4e545SJayanth Dodderi Chidanand	ENABLE_FEAT_SCTLR2 \
131430655136SGovindraj Raja	ENABLE_FEAT_D128 \
1315688ab57bSMark Brown	ENABLE_FEAT_GCS \
13166a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_VHE \
1317edebefbcSArvind Ram Prakash	ENABLE_FEAT_MPAM \
13186a0da736SJayanth Dodderi Chidanand	ENABLE_RME \
13196437a09aSAndre Przywara	ENABLE_SPE_FOR_NS \
1320603a0c6fSAndre Przywara	ENABLE_SYS_REG_TRACE_FOR_NS \
132145007acdSJayanth Dodderi Chidanand	ENABLE_SME_FOR_NS \
132203d3c0d7SJayanth Dodderi Chidanand	ENABLE_SME2_FOR_NS \
13232b0bc4e0SJayanth Dodderi Chidanand	ENABLE_SVE_FOR_NS \
13246a0da736SJayanth Dodderi Chidanand	ENABLE_TRF_FOR_NS \
1325327131c4SLeonardo Sandoval	FW_ENC_STATUS \
13265357f83dSManish V Badarkhe	NR_OF_FW_BANKS \
13275357f83dSManish V Badarkhe	NR_OF_IMAGES_IN_FW_BANK \
1328781d07a4SJayanth Dodderi Chidanand	TWED_DELAY \
1329781d07a4SJayanth Dodderi Chidanand	ENABLE_FEAT_TWED \
1330bebcf27fSMark Brown	SVE_VECTOR_LEN \
13310ed3be6fSVarun Wadekar	IMPDEF_SYSREG_TRAP \
1332327131c4SLeonardo Sandoval)))
1333c877b414SJeenu Viswambharan
1334aacff749SJustin Chadwellifdef KEY_SIZE
1335aacff749SJustin Chadwell        $(eval $(call assert_numeric,KEY_SIZE))
1336aacff749SJustin Chadwellendif
1337aacff749SJustin Chadwell
13381f461979SJustin Chadwellifeq ($(filter $(SANITIZE_UB), on off trap),)
13391f461979SJustin Chadwell        $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
13401f461979SJustin Chadwellendif
13411f461979SJustin Chadwell
134273c99d4eSJuan Castillo################################################################################
134373c99d4eSJuan Castillo# Add definitions to the cpp preprocessor based on the current build options.
134473c99d4eSJuan Castillo# This is done after including the platform specific makefile to allow the
134573c99d4eSJuan Castillo# platform to overwrite the default options
134673c99d4eSJuan Castillo################################################################################
134773c99d4eSJuan Castillo
1348327131c4SLeonardo Sandoval$(eval $(call add_defines,\
1349327131c4SLeonardo Sandoval    $(sort \
1350327131c4SLeonardo Sandoval	ALLOW_RO_XLAT_TABLES \
1351327131c4SLeonardo Sandoval	ARM_ARCH_MAJOR \
1352327131c4SLeonardo Sandoval	ARM_ARCH_MINOR \
135346789a7cSBalint Dobszay	BL2_ENABLE_SP_LOAD \
1354327131c4SLeonardo Sandoval	COLD_BOOT_SINGLE_CPU \
1355327131c4SLeonardo Sandoval	CTX_INCLUDE_AARCH32_REGS \
1356327131c4SLeonardo Sandoval	CTX_INCLUDE_FPREGS \
135742422622SMadhukar Pappireddy	CTX_INCLUDE_SVE_REGS \
1358327131c4SLeonardo Sandoval	CTX_INCLUDE_PAUTH_REGS \
13599acff28aSArvind Ram Prakash	CTX_INCLUDE_MPAM_REGS \
1360327131c4SLeonardo Sandoval	EL3_EXCEPTION_HANDLING \
1361327131c4SLeonardo Sandoval	CTX_INCLUDE_EL2_REGS \
1362062f8aafSArunachalam Ganapathy	CTX_INCLUDE_NEVE_REGS \
1363327131c4SLeonardo Sandoval	DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
13640063dd17SJavier Almansa Sobrino	DISABLE_MTPMU \
1365d23acc9eSAndre Przywara	ENABLE_FEAT_AMU \
13661fd685a7SChris Kay	ENABLE_AMU_AUXILIARY_COUNTERS \
1367873d4241Sjohpow01	AMU_RESTRICT_COUNTERS \
1368327131c4SLeonardo Sandoval	ENABLE_ASSERTIONS \
1369327131c4SLeonardo Sandoval	ENABLE_BTI \
137083271d5aSArvind Ram Prakash	ENABLE_FEAT_DEBUGV8P9 \
1371edebefbcSArvind Ram Prakash	ENABLE_FEAT_MPAM \
1372327131c4SLeonardo Sandoval	ENABLE_PAUTH \
1373327131c4SLeonardo Sandoval	ENABLE_PIE \
1374327131c4SLeonardo Sandoval	ENABLE_PMF \
1375327131c4SLeonardo Sandoval	ENABLE_PSCI_STAT \
13765b18de09SZelalem Aweke	ENABLE_RME \
13776a88ec8bSRaghu Krishnamurthy	RMMD_ENABLE_EL3_TOKEN_SIGN \
1378327131c4SLeonardo Sandoval	ENABLE_RUNTIME_INSTRUMENTATION \
1379dc78e62dSjohpow01	ENABLE_SME_FOR_NS \
138003d3c0d7SJayanth Dodderi Chidanand	ENABLE_SME2_FOR_NS \
1381dc78e62dSjohpow01	ENABLE_SME_FOR_SWD \
138290118bb5SAndre Przywara	ENABLE_SPE_FOR_NS \
1383327131c4SLeonardo Sandoval	ENABLE_SVE_FOR_NS \
13840c5e7d1cSMax Shvetsov	ENABLE_SVE_FOR_SWD \
1385970a4a8dSManish Pandey	ENABLE_FEAT_RAS \
1386f87e54f7SManish Pandey	FFH_SUPPORT \
1387327131c4SLeonardo Sandoval	ENCRYPT_BL31 \
1388327131c4SLeonardo Sandoval	ENCRYPT_BL32 \
1389327131c4SLeonardo Sandoval	ERROR_DEPRECATED \
1390327131c4SLeonardo Sandoval	FAULT_INJECTION_SUPPORT \
1391327131c4SLeonardo Sandoval	GICV2_G0_FOR_EL3 \
139246cc41d5SManish Pandey	HANDLE_EA_EL3_FIRST_NS \
1393327131c4SLeonardo Sandoval	HW_ASSISTED_COHERENCY \
1394327131c4SLeonardo Sandoval	LOG_LEVEL \
1395327131c4SLeonardo Sandoval	MEASURED_BOOT \
1396e7f1181fSTamas Ban	DICE_PROTECTION_ENVIRONMENT \
139700e28874SManish V Badarkhe	DRTM_SUPPORT \
1398327131c4SLeonardo Sandoval	NS_TIMER_SWITCH \
1399327131c4SLeonardo Sandoval	PL011_GENERIC_UART \
1400327131c4SLeonardo Sandoval	PLAT_${PLAT} \
1401327131c4SLeonardo Sandoval	PROGRAMMABLE_RESET_ADDRESS \
1402327131c4SLeonardo Sandoval	PSCI_EXTENDED_STATE_ID \
140364b4710bSWing Li	PSCI_OS_INIT_MODE \
14048db17052SBoyan Karatotev	ARCH_FEATURE_AVAILABILITY \
1405327131c4SLeonardo Sandoval	RESET_TO_BL31 \
1406d766084fSAlexeiFedorov	RME_GPT_BITLOCK_BLOCK \
1407ec0088bbSAlexeiFedorov	RME_GPT_MAX_BLOCK \
1408327131c4SLeonardo Sandoval	SEPARATE_CODE_AND_RODATA \
140996a8ed14SJiafei Pan	SEPARATE_BL2_NOLOAD_REGION \
1410327131c4SLeonardo Sandoval	SEPARATE_NOBITS_REGION \
141186acbbe2SYe Li	SEPARATE_RWDATA_REGION \
1412308ebfa1SMadhukar Pappireddy	SEPARATE_SIMD_SECTION \
1413327131c4SLeonardo Sandoval	RECLAIM_INIT_CODE \
1414327131c4SLeonardo Sandoval	SPD_${SPD} \
1415327131c4SLeonardo Sandoval	SPIN_ON_BL1_EXIT \
1416327131c4SLeonardo Sandoval	SPM_MM \
14171d63ae4dSMarc Bonnici	SPMC_AT_EL3 \
1418801cd3c8SNishant Sharma	SPMC_AT_EL3_SEL0_SP \
1419327131c4SLeonardo Sandoval	SPMD_SPM_AT_SEL2 \
14203ba2c151SRaymond Mao	TRANSFER_LIST \
1421327131c4SLeonardo Sandoval	TRUSTED_BOARD_BOOT \
1422c9c56f6eSManish V Badarkhe	CRYPTO_SUPPORT \
14237dfb9911SJimmy Brisson	TRNG_SUPPORT \
1424ffea3844SSona Mathew	ERRATA_ABI_SUPPORT \
1425ef63f5beSSona Mathew	ERRATA_NON_ARM_INTERCONNECT \
1426327131c4SLeonardo Sandoval	USE_COHERENT_MEM \
1427327131c4SLeonardo Sandoval	USE_DEBUGFS \
1428327131c4SLeonardo Sandoval	ARM_IO_IN_DTB \
1429327131c4SLeonardo Sandoval	SDEI_IN_FCONF \
1430327131c4SLeonardo Sandoval	SEC_INT_DESC_IN_FCONF \
1431327131c4SLeonardo Sandoval	USE_ROMLIB \
1432327131c4SLeonardo Sandoval	USE_TBBR_DEFS \
1433327131c4SLeonardo Sandoval	WARMBOOT_ENABLE_DCACHE_EARLY \
143442d4d3baSArvind Ram Prakash	RESET_TO_BL2 \
143542d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	\
1436327131c4SLeonardo Sandoval	BL2_IN_XIP_MEM \
1437327131c4SLeonardo Sandoval	BL2_INV_DCACHE \
1438327131c4SLeonardo Sandoval	USE_SPINLOCK_CAS \
1439327131c4SLeonardo Sandoval	ERRATA_SPECULATIVE_AT \
144045c7328cSBoyan Karatotev	ERRATA_SME_POWER_DOWN \
144100e8f79cSManish Pandey	RAS_TRAP_NS_ERR_REC_ACCESS \
1442327131c4SLeonardo Sandoval	COT_DESC_IN_DTB \
1443327131c4SLeonardo Sandoval	USE_SP804_TIMER \
144412cd65e0STomas Pilar	ENABLE_FEAT_RNG \
1445ff86e0b4SJuan Pablo Conde	ENABLE_FEAT_RNG_TRAP \
14464e04478aSChris Kay	ENABLE_FEAT_SB \
14477d33ffe4SDaniel Boulby	ENABLE_FEAT_DIT \
14485357f83dSManish V Badarkhe	NR_OF_FW_BANKS \
14495357f83dSManish V Badarkhe	NR_OF_IMAGES_IN_FW_BANK \
1450396b339dSManish V Badarkhe	PSA_FWU_SUPPORT \
145111d05a77SSughosh Ganu	PSA_FWU_METADATA_FW_STORE_DESC \
1452744ad974Sjohpow01	ENABLE_BRBE_FOR_NS \
1453813524eaSManish V Badarkhe	ENABLE_TRBE_FOR_NS \
1454d4582d30SManish V Badarkhe	ENABLE_SYS_REG_TRACE_FOR_NS \
14558fcd3d96SManish V Badarkhe	ENABLE_TRF_FOR_NS \
1456cb4ec47bSjohpow01	ENABLE_FEAT_HCX \
145768120783SChris Kay	ENABLE_MPMM \
14582b5e00d4SBoyan Karatotev	FEAT_PABANDON \
1459f74cb0beSJayanth Dodderi Chidanand	ENABLE_FEAT_FGT \
146033e6aaacSArvind Ram Prakash	ENABLE_FEAT_FGT2 \
1461a57e18e4SArvind Ram Prakash	ENABLE_FEAT_FPMR \
1462f74cb0beSJayanth Dodderi Chidanand	ENABLE_FEAT_ECV \
14636a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_AMUv1p1 \
14646a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_SEL2 \
14656a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_VHE \
14666a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_CSV2_2 \
146730019d86SSona Mathew	ENABLE_FEAT_CSV2_3 \
146819d52a83SAndre Przywara	ENABLE_FEAT_LS64_ACCDATA \
14696a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_PAN \
1470d3331603SMark Brown	ENABLE_FEAT_TCR2 \
14716d0433f0SJayanth Dodderi Chidanand	ENABLE_FEAT_THE \
1472062b6c6bSMark Brown	ENABLE_FEAT_S2PIE \
1473062b6c6bSMark Brown	ENABLE_FEAT_S1PIE \
1474062b6c6bSMark Brown	ENABLE_FEAT_S2POE \
1475062b6c6bSMark Brown	ENABLE_FEAT_S1POE \
14764ec4e545SJayanth Dodderi Chidanand	ENABLE_FEAT_SCTLR2 \
147730655136SGovindraj Raja	ENABLE_FEAT_D128 \
1478688ab57bSMark Brown	ENABLE_FEAT_GCS \
14796b8df7b9SArvind Ram Prakash	ENABLE_FEAT_MOPS \
14808e397889SGovindraj Raja	ENABLE_FEAT_MTE2 \
14816a0da736SJayanth Dodderi Chidanand	FEATURE_DETECTION \
1482781d07a4SJayanth Dodderi Chidanand	TWED_DELAY \
1483781d07a4SJayanth Dodderi Chidanand	ENABLE_FEAT_TWED \
148404c7303bSOkash Khawaja	CONDITIONAL_CMO \
14850ed3be6fSVarun Wadekar	IMPDEF_SYSREG_TRAP \
1486a8cf6faeSJayanth Dodderi Chidanand	SVE_VECTOR_LEN \
1487890b5088SRaghu Krishnamurthy	ENABLE_SPMD_LP \
14885782b890SManish V Badarkhe	PSA_CRYPTO	\
148985bebe18SSandrine Bailleux	ENABLE_CONSOLE_GETC \
1490183329a5SArvind Ram Prakash	INIT_UNUSED_NS_EL2	\
1491bfef8b90SJuan Pablo Conde	PLATFORM_REPORT_CTX_MEM_USE \
1492ae770fedSYann Gautier	EARLY_CONSOLE \
1493f99a69c3SArvind Ram Prakash	PRESERVE_DSU_PMU_REGS \
14948953568aSLevi Yun	HOB_LIST \
1495327131c4SLeonardo Sandoval)))
14962fae4b1eSJeenu Viswambharan
1497bfef8b90SJuan Pablo Condeifeq (${PLATFORM_REPORT_CTX_MEM_USE}, 1)
1498bfef8b90SJuan Pablo Condeifeq (${DEBUG}, 0)
1499bfef8b90SJuan Pablo Conde        $(warning "PLATFORM_REPORT_CTX_MEM_USE can be applied when DEBUG=1 only")
1500bfef8b90SJuan Pablo Conde        override PLATFORM_REPORT_CTX_MEM_USE := 0
1501bfef8b90SJuan Pablo Condeendif
1502bfef8b90SJuan Pablo Condeendif
1503bfef8b90SJuan Pablo Conde
15041f461979SJustin Chadwellifeq (${SANITIZE_UB},trap)
15051f461979SJustin Chadwell        $(eval $(call add_define,MONITOR_TRAPS))
1506c5e1da83SJayanth Dodderi Chidanandendif #(SANITIZE_UB)
15071f461979SJustin Chadwell
15084c117f6cSSandrine Bailleux# Define the EL3_PAYLOAD_BASE flag only if it is provided.
15094c117f6cSSandrine Bailleuxifdef EL3_PAYLOAD_BASE
15104c117f6cSSandrine Bailleux        $(eval $(call add_define,EL3_PAYLOAD_BASE))
1511cf2c8a33SAntonio Nino Diazelse
151268450a6dSAntonio Nino Diaz# Define the PRELOADED_BL33_BASE flag only if it is provided and
151368450a6dSAntonio Nino Diaz# EL3_PAYLOAD_BASE is not defined, as it has priority.
151468450a6dSAntonio Nino Diaz	ifdef PRELOADED_BL33_BASE
151568450a6dSAntonio Nino Diaz                $(eval $(call add_define,PRELOADED_BL33_BASE))
15164c117f6cSSandrine Bailleux	endif
1517c5e1da83SJayanth Dodderi Chidanandendif #(EL3_PAYLOAD_BASE)
151873c99d4eSJuan Castillo
1519209a60ccSSoby Mathew# Define the DYN_DISABLE_AUTH flag only if set.
1520209a60ccSSoby Mathewifeq (${DYN_DISABLE_AUTH},1)
1521209a60ccSSoby Mathew        $(eval $(call add_define,DYN_DISABLE_AUTH))
1522209a60ccSSoby Mathewendif
1523209a60ccSSoby Mathew
15248620bd0bSChris Kayifeq ($($(ARCH)-ld-id),arm-link)
1525c2ad38ceSVarun Wadekar        $(eval $(call add_define,USE_ARM_LINK))
1526c2ad38ceSVarun Wadekarendif
1527c2ad38ceSVarun Wadekar
1528ce2b1ec6SManish Pandey# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
1529ce2b1ec6SManish Pandeyifeq (${SPD},spmd)
1530c33ff198SOlivier Deprezifdef SP_LAYOUT_FILE
1531ce2b1ec6SManish Pandey	-include $(BUILD_PLAT)/sp_gen.mk
1532ce2b1ec6SManish Pandey	FIP_DEPS += sp
153307c44475SManish Pandey	CRT_DEPS += sp
1534ce2b1ec6SManish Pandey	NEED_SP_PKG := yes
1535ce2b1ec6SManish Pandeyelse
1536c33ff198SOlivier Deprez	ifeq (${SPMD_SPM_AT_SEL2},1)
1537c33ff198SOlivier Deprez                $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1538c33ff198SOlivier Deprez	endif
1539c5e1da83SJayanth Dodderi Chidanandendif #(SP_LAYOUT_FILE)
1540c5e1da83SJayanth Dodderi Chidanandendif #(SPD)
1541ce2b1ec6SManish Pandey
154273c99d4eSJuan Castillo################################################################################
154373c99d4eSJuan Castillo# Build targets
154473c99d4eSJuan Castillo################################################################################
154573c99d4eSJuan Castillo
15462329e22bSHarrison 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
154773c99d4eSJuan Castillo
154873c99d4eSJuan Castilloall: msg_start
154973c99d4eSJuan Castillo
155073c99d4eSJuan Castillomsg_start:
15517c4e1eeaSChris Kay	$(s)echo "Building ${PLAT}"
155273c99d4eSJuan Castillo
15537a24cba5SSoby Mathewifeq (${ERROR_DEPRECATED},0)
1554d5dfdeb6SJulius Werner# Check if deprecated declarations and cpp warnings should be treated as error or not.
15558620bd0bSChris Kayifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
1556c2ad38ceSVarun Wadekar    CPPFLAGS		+= 	-Wno-error=deprecated-declarations
1557c2ad38ceSVarun Wadekarelse
1558bc1a03c7SDan Handley    CPPFLAGS		+= 	-Wno-error=deprecated-declarations -Wno-error=cpp
15597a24cba5SSoby Mathewendif
1560c5e1da83SJayanth Dodderi Chidanandendif #(!ERROR_DEPRECATED)
15617a24cba5SSoby Mathew
156261f72a34SRoberto Vargas$(eval $(call MAKE_LIB,c))
15635fee0287SRoberto Vargas
156473c99d4eSJuan Castillo# Expand build macros for the different images
156573c99d4eSJuan Castilloifeq (${NEED_BL1},yes)
1566b34635a0SChris KayBL1_SOURCES := $(sort ${BL1_SOURCES})
1567434d0491SZelalem Aweke$(eval $(call MAKE_BL,bl1))
1568c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL1)
156973c99d4eSJuan Castillo
157073c99d4eSJuan Castilloifeq (${NEED_BL2},yes)
1571c5e1da83SJayanth Dodderi Chidanand
157242d4d3baSArvind Ram Prakashifeq (${RESET_TO_BL2}, 0)
1573c9b31ae8SRoberto VargasFIP_BL2_ARGS := tb-fw
1574c9b31ae8SRoberto Vargasendif
1575c9b31ae8SRoberto Vargas
1576eb1acfb6SChris KayBL2_SOURCES := $(sort ${BL2_SOURCES})
1577eb1acfb6SChris Kay
157833950dd8SMasahiro Yamada$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
1579434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
1580c5e1da83SJayanth Dodderi Chidanand
1581c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL2)
158273c99d4eSJuan Castillo
15834d045d0eSMasahiro Yamadaifeq (${NEED_SCP_BL2},yes)
158433950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
1585c5e1da83SJayanth Dodderi Chidanandendif #(NEED_SCP_BL2)
15864d045d0eSMasahiro Yamada
158773c99d4eSJuan Castilloifeq (${NEED_BL31},yes)
158873c99d4eSJuan CastilloBL31_SOURCES += ${SPD_SOURCES}
158926d1e0c3SMadhukar Pappireddy# Sort BL31 source files to remove duplicates
159026d1e0c3SMadhukar PappireddyBL31_SOURCES := $(sort ${BL31_SOURCES})
1591c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1592c6ba9b45SSumit Garg$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
1593434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
1594c6ba9b45SSumit Gargelse
159533950dd8SMasahiro Yamada$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
1596434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl31,soc-fw)))
1597c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
1598c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL31)
159973c99d4eSJuan Castillo
160070d1fc53SJuan Castillo# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
1601c939d13aSMasahiro Yamada# build system will call TOOL_ADD_IMG to print a warning message and abort the
160270d1fc53SJuan Castillo# process. Note that the dependency on BL32 applies to the FIP only.
160373c99d4eSJuan Castilloifeq (${NEED_BL32},yes)
160426d1e0c3SMadhukar Pappireddy# Sort BL32 source files to remove duplicates
160526d1e0c3SMadhukar PappireddyBL32_SOURCES := $(sort ${BL32_SOURCES})
16069cd15239SMasahiro YamadaBUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
16079cd15239SMasahiro Yamada
1608c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1609434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
1610c6ba9b45SSumit Garg	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1611c6ba9b45SSumit Gargelse
1612434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
161333950dd8SMasahiro Yamada	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
1614c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
1615c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL32)
161673c99d4eSJuan Castillo
16175b18de09SZelalem Aweke# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
16185b18de09SZelalem Aweke# needs to be built from RMM_SOURCES.
16195b18de09SZelalem Awekeifeq (${NEED_RMM},yes)
16205b18de09SZelalem Aweke# Sort RMM source files to remove duplicates
16215b18de09SZelalem AwekeRMM_SOURCES := $(sort ${RMM_SOURCES})
16225b18de09SZelalem AwekeBUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
16235b18de09SZelalem Aweke
16245b18de09SZelalem Aweke$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
16255b18de09SZelalem Aweke	 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1626c5e1da83SJayanth Dodderi Chidanandendif #(NEED_RMM)
16275b18de09SZelalem Aweke
162873c99d4eSJuan Castillo# Add the BL33 image if required by the platform
162973c99d4eSJuan Castilloifeq (${NEED_BL33},yes)
163033950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
1631c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL33)
1632db6071c9SJuan Castillo
16339003fa0bSYatharth Kocharifeq (${NEED_BL2U},yes)
163433950dd8SMasahiro Yamada$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
1635434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
1636c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL2U)
16379003fa0bSYatharth Kochar
163803b397a8SNishanth Menon# Expand build macros for the different images
163903b397a8SNishanth Menonifeq (${NEED_FDT},yes)
164003b397a8SNishanth Menon    $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
1641*1c08ff32SSalman Nabi
1642*1c08ff32SSalman Nabi    ifneq (${INITRD_SIZE}${INITRD_PATH},)
1643*1c08ff32SSalman Nabi        ifndef INITRD_BASE
1644*1c08ff32SSalman Nabi            $(error INITRD_BASE must be set when inserting initrd properties to the DTB.)
1645*1c08ff32SSalman Nabi        endif
1646*1c08ff32SSalman Nabi
1647*1c08ff32SSalman Nabi        INITRD_SIZE ?= $(shell printf "0x%x\n" $$(stat -Lc %s $(INITRD_PATH)))
1648*1c08ff32SSalman Nabi        initrd_end = $(shell printf "0x%x\n" $$(expr $$(($(INITRD_BASE) + $(INITRD_SIZE)))))
1649*1c08ff32SSalman Nabi
1650*1c08ff32SSalman Nabi        define $(HW_CONFIG)-after +=
1651*1c08ff32SSalman Nabi            $(s)echo "  INITRD  $(HW_CONFIG)"
1652*1c08ff32SSalman Nabi            $(q)fdtput -t x $@ /chosen linux,initrd-start $(INITRD_BASE)
1653*1c08ff32SSalman Nabi            $(q)fdtput -t x $@ /chosen linux,initrd-end $(initrd_end)
1654*1c08ff32SSalman Nabi        endef
1655*1c08ff32SSalman Nabi    endif
1656c5e1da83SJayanth Dodderi Chidanandendif #(NEED_FDT)
165703b397a8SNishanth Menon
1658ce2b1ec6SManish Pandey# Add Secure Partition packages
1659ce2b1ec6SManish Pandeyifeq (${NEED_SP_PKG},yes)
1660fd74ca0dSChris Kay$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | $$(@D)/
16617c4e1eeaSChris Kay	$(q)${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
1662822c7279SJ-Alvessp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
16637c4e1eeaSChris Kay	$(s)echo
16647c4e1eeaSChris Kay	$(s)echo "Built SP Images successfully"
16657c4e1eeaSChris Kay	$(s)echo
1666c5e1da83SJayanth Dodderi Chidanandendif #(NEED_SP_PKG)
1667ce2b1ec6SManish Pandey
166836eaaf37SIan Spraylocate-checkpatch:
166936eaaf37SIan Sprayifndef CHECKPATCH
167066079b04SEtienne Carriere	$(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
167136eaaf37SIan Sprayelse
167236eaaf37SIan Sprayifeq (,$(wildcard ${CHECKPATCH}))
167366079b04SEtienne Carriere	$(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
167436eaaf37SIan Sprayendif
1675c5e1da83SJayanth Dodderi Chidanandendif #(CHECKPATCH)
167636eaaf37SIan Spray
16774f6ad66aSAchin Guptaclean:
16787c4e1eeaSChris Kay	$(s)echo "  CLEAN"
1679c3273703SChris Kay	$(q)rm -rf $(BUILD_PLAT)
16807c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
16817c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
16827c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
16837c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
16844f6ad66aSAchin Gupta
1685eaaeece2SJames Morrisseyrealclean distclean:
16867c4e1eeaSChris Kay	$(s)echo "  REALCLEAN"
1687c3273703SChris Kay	$(q)rm -rf $(BUILD_BASE)
1688c3273703SChris Kay	$(q)rm -rf $(CURDIR)/cscope.*
16897c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
16907c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
16917c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
16927c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
16934f6ad66aSAchin Gupta
169436eaaf37SIan Spraycheckcodebase:		locate-checkpatch
16957c4e1eeaSChris Kay	$(s)echo "  CHECKING STYLE"
16967c4e1eeaSChris Kay	$(q)if test -d .git ; then						\
16971ef35512SPaul Beesley		git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' |	\
16981a41e8c1SDan Handley		while read GIT_FILE ;					\
16991a41e8c1SDan Handley		do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ;	\
17001a41e8c1SDan Handley		done ;							\
170136eaaf37SIan Spray	else								\
17021a41e8c1SDan Handley		 find . -type f -not -iwholename "*.git*"		\
17031a41e8c1SDan Handley		 -not -iwholename "*build*"				\
17041a41e8c1SDan Handley		 -not -iwholename "*libfdt*"				\
170561f72a34SRoberto Vargas		 -not -iwholename "*libc*"				\
17061a41e8c1SDan Handley		 -not -iwholename "*docs*"				\
17071ef35512SPaul Beesley		 -not -iwholename "*.rst"				\
17081a41e8c1SDan Handley		 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ;	\
170936eaaf37SIan Spray	fi
171036eaaf37SIan Spray
171136eaaf37SIan Spraycheckpatch:		locate-checkpatch
17127c4e1eeaSChris Kay	$(s)echo "  CHECKING STYLE"
17137c4e1eeaSChris Kay	$(q)if test -n "${CHECKPATCH_OPTS}"; then				\
171402a76d5fSYann Gautier		echo "    with ${CHECKPATCH_OPTS} option(s)";		\
171502a76d5fSYann Gautier	fi
17167c4e1eeaSChris Kay	$(q)COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT});	\
171777a0a7f1SYann Gautier	for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`;	\
171877a0a7f1SYann Gautier	do								\
171951d28937SAntonio Nino Diaz		printf "\n[*] Checking style of '$$commit'\n\n";	\
17201a721748SYann Gautier		( git log --format=email "$$commit~..$$commit"		\
17211a721748SYann Gautier			-- ${CHECK_PATHS} ;				\
172251d28937SAntonio Nino Diaz		  git diff --format=email "$$commit~..$$commit"		\
17231a721748SYann Gautier			-- ${CHECK_PATHS}; ) |				\
172402a76d5fSYann Gautier			${CHECKPATCH}  ${CHECKPATCH_OPTS} - || true;	\
172551d28937SAntonio Nino Diaz	done
172636eaaf37SIan Spray
172773c99d4eSJuan Castillocerttool: ${CRTTOOL}
172873c99d4eSJuan Castillo
1729a9812206SPali Rohár${CRTTOOL}: FORCE
17307c4e1eeaSChris 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
17317c4e1eeaSChris Kay	$(s)echo
17327c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17337c4e1eeaSChris Kay	$(s)echo
17346f971622SJuan Castillo
17356f971622SJuan Castilloifneq (${GENERATE_COT},0)
173673c99d4eSJuan Castillocertificates: ${CRT_DEPS} ${CRTTOOL}
17377c4e1eeaSChris Kay	$(q)${CRTTOOL} ${CRT_ARGS}
17387c4e1eeaSChris Kay	$(s)echo
17397c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17407c4e1eeaSChris Kay	$(s)echo "Certificates can be found in ${BUILD_PLAT}"
17417c4e1eeaSChris Kay	$(s)echo
1742c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
174327713fb4SSoby Mathew
174473c99d4eSJuan Castillo${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
17454727fd13SPali Rohár	$(eval ${CHECK_FIP_CMD})
17467c4e1eeaSChris Kay	$(q)${FIPTOOL} create ${FIP_ARGS} $@
17477c4e1eeaSChris Kay	$(q)${FIPTOOL} info $@
17487c4e1eeaSChris Kay	$(s)echo
17497c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17507c4e1eeaSChris Kay	$(s)echo
1751f58ad36fSHarry Liebel
17520191262dSYatharth Kocharifneq (${GENERATE_COT},0)
17530191262dSYatharth Kocharfwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
17547c4e1eeaSChris Kay	$(q)${CRTTOOL} ${FWU_CRT_ARGS}
17557c4e1eeaSChris Kay	$(s)echo
17567c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17577c4e1eeaSChris Kay	$(s)echo "FWU certificates can be found in ${BUILD_PLAT}"
17587c4e1eeaSChris Kay	$(s)echo
1759c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
17600191262dSYatharth Kochar
17610191262dSYatharth Kochar${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
17624727fd13SPali Rohár	$(eval ${CHECK_FWU_FIP_CMD})
17637c4e1eeaSChris Kay	$(q)${FIPTOOL} create ${FWU_FIP_ARGS} $@
17647c4e1eeaSChris Kay	$(q)${FIPTOOL} info $@
17657c4e1eeaSChris Kay	$(s)echo
17667c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17677c4e1eeaSChris Kay	$(s)echo
17680191262dSYatharth Kochar
176973c99d4eSJuan Castillofiptool: ${FIPTOOL}
177073c99d4eSJuan Castillofip: ${BUILD_PLAT}/${FIP_NAME}
17710191262dSYatharth Kocharfwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
177273c99d4eSJuan Castillo
1773a9812206SPali Rohár${FIPTOOL}: FORCE
177440469bf9SManish V Badarkhe	$(q)${MAKE} PLAT=${PLAT} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} --no-print-directory -C ${FIPTOOLPATH} all
1775f58ad36fSHarry Liebel
1776e4a070e3SManish V Badarkhe$(BUILD_PLAT)/romlib/romlib.bin $(BUILD_PLAT)/lib/libwrappers.a $&: $(BUILD_PLAT)/lib/libfdt.a $(BUILD_PLAT)/lib/libc.a $(CRYPTO_LIB)
1777e4a070e3SManish 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
17785accce5bSRoberto Vargas
1779cfe83910SLouis Mayencourtmemmap: all
17807c4e1eeaSChris Kay	$(q)PYTHONPATH=${CURDIR}/tools/memory \
1781af5b49e9SHarrison Mutai		${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1782cfe83910SLouis Mayencourt
17832329e22bSHarrison Mutaitl: ${BUILD_PLAT}/tl.bin
17842329e22bSHarrison Mutai${BUILD_PLAT}/tl.bin: ${HW_CONFIG}
1785d2867397SChris Kay	$(if $(host-poetry),$(q)poetry -q install)
1786d2867397SChris Kay	$(q)$(if $(host-poetry),poetry run )tlc create --fdt $< -s ${FW_HANDOFF_SIZE} $@
17872329e22bSHarrison Mutai
17886de32378SMadhukar Pappireddydoc:
17897c4e1eeaSChris Kay	$(s)echo "  BUILD DOCUMENTATION"
17907c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${DOCS_PATH} html
17916de32378SMadhukar Pappireddy
179290aa901fSSumit Gargenctool: ${ENCTOOL}
179390aa901fSSumit Garg
1794a9812206SPali Rohár${ENCTOOL}: FORCE
17957c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} --no-print-directory -C ${ENCTOOLPATH} all
17967c4e1eeaSChris Kay	$(s)echo
17977c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17987c4e1eeaSChris Kay	$(s)echo
179990aa901fSSumit Garg
180035fab8c9SJoakim Bechcscope:
18017c4e1eeaSChris Kay	$(s)echo "  CSCOPE"
18027c4e1eeaSChris Kay	$(q)find ${CURDIR} -name "*.[chsS]" > cscope.files
18037c4e1eeaSChris Kay	$(q)cscope -b -q -k
180435fab8c9SJoakim Bech
180572ee3314SRyan Harkinhelp:
18067c4e1eeaSChris Kay	$(s)echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
18077c4e1eeaSChris Kay	$(s)echo ""
18087c4e1eeaSChris Kay	$(s)echo "PLAT is used to specify which platform you wish to build."
18097c4e1eeaSChris Kay	$(s)echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
18107c4e1eeaSChris Kay	$(s)echo ""
18117c4e1eeaSChris Kay	$(s)echo "platform = ${PLATFORM_LIST}"
18127c4e1eeaSChris Kay	$(s)echo ""
18137c4e1eeaSChris Kay	$(s)echo "Please refer to the User Guide for a list of all supported options."
18147c4e1eeaSChris Kay	$(s)echo "Note that the build system doesn't track dependencies for build "
18157c4e1eeaSChris Kay	$(s)echo "options. Therefore, if any of the build options are changed "
18167c4e1eeaSChris Kay	$(s)echo "from a previous build, a clean build must be performed."
18177c4e1eeaSChris Kay	$(s)echo ""
18187c4e1eeaSChris Kay	$(s)echo "Supported Targets:"
18197c4e1eeaSChris Kay	$(s)echo "  all            Build all individual bootloader binaries"
18207c4e1eeaSChris Kay	$(s)echo "  bl1            Build the BL1 binary"
18217c4e1eeaSChris Kay	$(s)echo "  bl2            Build the BL2 binary"
18227c4e1eeaSChris Kay	$(s)echo "  bl2u           Build the BL2U binary"
18237c4e1eeaSChris Kay	$(s)echo "  bl31           Build the BL31 binary"
18247c4e1eeaSChris Kay	$(s)echo "  bl32           Build the BL32 binary. If ARCH=aarch32, then "
18257c4e1eeaSChris Kay	$(s)echo "                 this builds secure payload specified by AARCH32_SP"
18267c4e1eeaSChris Kay	$(s)echo "  certificates   Build the certificates (requires 'GENERATE_COT=1')"
18277c4e1eeaSChris Kay	$(s)echo "  fip            Build the Firmware Image Package (FIP)"
18287c4e1eeaSChris Kay	$(s)echo "  fwu_fip        Build the FWU Firmware Image Package (FIP)"
18297c4e1eeaSChris Kay	$(s)echo "  checkcodebase  Check the coding style of the entire source tree"
18307c4e1eeaSChris Kay	$(s)echo "  checkpatch     Check the coding style on changes in the current"
18317c4e1eeaSChris Kay	$(s)echo "                 branch against BASE_COMMIT (default origin/master)"
18327c4e1eeaSChris Kay	$(s)echo "  clean          Clean the build for the selected platform"
18337c4e1eeaSChris Kay	$(s)echo "  cscope         Generate cscope index"
18347c4e1eeaSChris Kay	$(s)echo "  distclean      Remove all build artifacts for all platforms"
18357c4e1eeaSChris Kay	$(s)echo "  certtool       Build the Certificate generation tool"
18367c4e1eeaSChris Kay	$(s)echo "  enctool        Build the Firmware encryption tool"
18377c4e1eeaSChris Kay	$(s)echo "  fiptool        Build the Firmware Image Package (FIP) creation tool"
18387c4e1eeaSChris Kay	$(s)echo "  sp             Build the Secure Partition Packages"
18397c4e1eeaSChris Kay	$(s)echo "  sptool         Build the Secure Partition Package creation tool"
18407c4e1eeaSChris Kay	$(s)echo "  dtbs           Build the Device Tree Blobs (if required for the platform)"
18417c4e1eeaSChris Kay	$(s)echo "  memmap         Print the memory map of the built binaries"
18427c4e1eeaSChris Kay	$(s)echo "  doc            Build html based documentation using Sphinx tool"
18437c4e1eeaSChris Kay	$(s)echo ""
18447c4e1eeaSChris Kay	$(s)echo "Note: most build targets require PLAT to be set to a specific platform."
18457c4e1eeaSChris Kay	$(s)echo ""
18467c4e1eeaSChris Kay	$(s)echo "example: build all targets for the FVP platform:"
18477c4e1eeaSChris Kay	$(s)echo "  CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
1848a9812206SPali Rohár
1849a9812206SPali Rohár.PHONY: FORCE
1850a9812206SPali RohárFORCE:;
1851