xref: /rk3399_ARM-atf/Makefile (revision 6b8df7b9e5cc70ef0433a99bf73db6db6002482c)
14f6ad66aSAchin Gupta#
20a33adc0SGovindraj Raja# Copyright (c) 2013-2024, 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
26e7f54dbdSEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_env.mk
27f4dd18c2SChris Kayinclude ${MAKE_HELPERS_DIRECTORY}build-rules.mk
287c4e1eeaSChris Kayinclude ${MAKE_HELPERS_DIRECTORY}common.mk
2973c99d4eSJuan Castillo
3073c99d4eSJuan Castillo################################################################################
312fae4b1eSJeenu Viswambharan# Default values for build configurations, and their dependencies
3273c99d4eSJuan Castillo################################################################################
33e35c4045SJeenu Viswambharan
342fae4b1eSJeenu Viswambharaninclude ${MAKE_HELPERS_DIRECTORY}defaults.mk
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
102c5e1da83SJayanth Dodderi ChidanandCRTTOOL			?=	${CRTTOOLPATH}/cert_create${BIN_EXT}
103c5e1da83SJayanth Dodderi Chidanand
104c5e1da83SJayanth Dodderi Chidanand# Variables for use with Firmware Encryption Tool
105c5e1da83SJayanth Dodderi ChidanandENCTOOLPATH		?=	tools/encrypt_fw
106c5e1da83SJayanth Dodderi ChidanandENCTOOL			?=	${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
107c5e1da83SJayanth Dodderi Chidanand
108c5e1da83SJayanth Dodderi Chidanand# Variables for use with Firmware Image Package
109c5e1da83SJayanth Dodderi ChidanandFIPTOOLPATH		?=	tools/fiptool
110c5e1da83SJayanth Dodderi ChidanandFIPTOOL			?=	${FIPTOOLPATH}/fiptool${BIN_EXT}
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
118c5e1da83SJayanth Dodderi Chidanand# Variables for use with ROMLIB
119c5e1da83SJayanth Dodderi ChidanandROMLIBPATH		?=	lib/romlib
120c5e1da83SJayanth Dodderi Chidanand
121c5e1da83SJayanth Dodderi Chidanand# Variable for use with Python
122c5e1da83SJayanth Dodderi ChidanandPYTHON			?=	python3
123c5e1da83SJayanth Dodderi Chidanand
124c5e1da83SJayanth Dodderi Chidanand# Variables for use with documentation build using Sphinx tool
125c5e1da83SJayanth Dodderi ChidanandDOCS_PATH		?=	docs
126c5e1da83SJayanth Dodderi Chidanand
127c5e1da83SJayanth Dodderi Chidanand################################################################################
128c5e1da83SJayanth Dodderi Chidanand# Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags
129c5e1da83SJayanth Dodderi Chidanand################################################################################
13026e63c44SEtienne Carriereifeq (${ARM_ARCH_MAJOR},7)
13126e63c44SEtienne Carriere	target32-directive	= 	-target arm-none-eabi
132d4089fb8SGovindraj Raja# Will set march-directive from platform configuration
13326e63c44SEtienne Carriereelse
13426e63c44SEtienne Carriere	target32-directive	= 	-target armv8a-none-eabi
135c5e1da83SJayanth Dodderi Chidanandendif #(ARM_ARCH_MAJOR)
136c5e1da83SJayanth Dodderi Chidanand
137c5e1da83SJayanth Dodderi Chidanand################################################################################
138c5e1da83SJayanth Dodderi Chidanand# Get Architecture Feature Modifiers
139c5e1da83SJayanth Dodderi Chidanand################################################################################
140c5e1da83SJayanth Dodderi Chidanandarch-features		=	${ARM_ARCH_FEATURE}
141c5e1da83SJayanth Dodderi Chidanand
1428620bd0bSChris Kayifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
1438620bd0bSChris Kay	ifeq ($($(ARCH)-cc-id),arm-clang)
1447794d6c8SGovindraj Raja		TF_CFLAGS_aarch32	:=	-target arm-arm-none-eabi
1457794d6c8SGovindraj Raja		TF_CFLAGS_aarch64	:=	-target aarch64-arm-none-eabi
146c8a992fdSorigin	else
1477794d6c8SGovindraj Raja		TF_CFLAGS_aarch32	=	$(target32-directive)
1487794d6c8SGovindraj Raja		TF_CFLAGS_aarch64	:=	-target aarch64-elf
149641f16e7SAmbroise Vincent	endif
150c8a992fdSorigin
1518620bd0bSChris Kayelse ifeq ($($(ARCH)-cc-id),gnu-gcc)
152edbce9aaSzelalem-aweke	# Enable LTO only for aarch64
153edbce9aaSzelalem-aweke	ifeq (${ARCH},aarch64)
154fa402f38SChris Kay		LTO_CFLAGS	=	$(if $(filter-out 0,$(ENABLE_LTO)),-flto)
155edbce9aaSzelalem-aweke	endif
156c5e1da83SJayanth Dodderi Chidanandendif #(clang)
157d5461857Sdp-arm
15832b209bfSAhmad Fatoum# Process Debug flag
15932b209bfSAhmad Fatoum$(eval $(call add_define,DEBUG))
16032b209bfSAhmad Fatoumifneq (${DEBUG}, 0)
16132b209bfSAhmad Fatoum	BUILD_TYPE	:=	debug
1624466cf82SDaniel Boulby	TF_CFLAGS	+=	-g -gdwarf-4
1634466cf82SDaniel Boulby	ASFLAGS		+=	-g -Wa,-gdwarf-4
16432b209bfSAhmad Fatoum
16532b209bfSAhmad Fatoum	# Use LOG_LEVEL_INFO by default for debug builds
16632b209bfSAhmad Fatoum	LOG_LEVEL	:=	40
16732b209bfSAhmad Fatoumelse
16832b209bfSAhmad Fatoum	BUILD_TYPE	:=	release
16932b209bfSAhmad Fatoum	# Use LOG_LEVEL_NOTICE by default for release builds
17032b209bfSAhmad Fatoum	LOG_LEVEL	:=	20
171c5e1da83SJayanth Dodderi Chidanandendif #(Debug)
17232b209bfSAhmad Fatoum
173f1de4c8fSPeiyuan Song# Default build string (git branch and commit)
174f1de4c8fSPeiyuan Songifeq (${BUILD_STRING},)
175f1de4c8fSPeiyuan Song	BUILD_STRING  :=  $(shell git describe --always --dirty --tags 2> /dev/null)
176f1de4c8fSPeiyuan Songendif
177dddf4283Slaurenw-armVERSION_STRING    :=  v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
178f1de4c8fSPeiyuan Song
1798fd9d4d5SAntonio Nino Diazifeq (${AARCH32_INSTRUCTION_SET},A32)
1808fd9d4d5SAntonio Nino Diaz	TF_CFLAGS_aarch32	+=	-marm
1818fd9d4d5SAntonio Nino Diazelse ifeq (${AARCH32_INSTRUCTION_SET},T32)
1828fd9d4d5SAntonio Nino Diaz	TF_CFLAGS_aarch32	+=	-mthumb
1838fd9d4d5SAntonio Nino Diazelse
1848fd9d4d5SAntonio Nino Diaz        $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
185c5e1da83SJayanth Dodderi Chidanandendif #(AARCH32_INSTRUCTION_SET)
1868fd9d4d5SAntonio Nino Diaz
187a9c4dde3SSandrine BailleuxTF_CFLAGS_aarch32	+=	-mno-unaligned-access
188d5461857Sdp-armTF_CFLAGS_aarch64	+=	-mgeneral-regs-only -mstrict-align
1899d29c227SSoby Mathew
190c5e1da83SJayanth Dodderi Chidanand##############################################################################
191c5e1da83SJayanth Dodderi Chidanand# WARNINGS Configuration
192c5e1da83SJayanth Dodderi Chidanand###############################################################################
1939ab81b5eSJustin Chadwell# General warnings
1949ab81b5eSJustin ChadwellWARNINGS		:=	-Wall -Wmissing-include-dirs -Wunused	\
195b7f6525dSJustin Chadwell				-Wdisabled-optimization -Wvla -Wshadow	\
196d75a9ecdSBoyan Karatotev				-Wredundant-decls
197d75a9ecdSBoyan Karatotev# stricter warnings
198d75a9ecdSBoyan KaratotevWARNINGS		+=	-Wextra -Wno-trigraphs
199d75a9ecdSBoyan Karatotev# too verbose for generic build
200d75a9ecdSBoyan KaratotevWARNINGS		+=	-Wno-missing-field-initializers \
201d75a9ecdSBoyan Karatotev				-Wno-type-limits -Wno-sign-compare \
202d75a9ecdSBoyan Karatotev# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
203d75a9ecdSBoyan KaratotevWARNINGS		+=	-Wno-unused-parameter
2049ab81b5eSJustin Chadwell
2059ab81b5eSJustin Chadwell# Additional warnings
206d75a9ecdSBoyan Karatotev# Level 1 - infrequent warnings we should have none of
207d75a9ecdSBoyan Karatotev# full -Wextra
208d75a9ecdSBoyan KaratotevWARNING1 += -Wsign-compare
209d75a9ecdSBoyan KaratotevWARNING1 += -Wtype-limits
210d75a9ecdSBoyan KaratotevWARNING1 += -Wmissing-field-initializers
211e7c645b5SYann Gautier
212d75a9ecdSBoyan Karatotev# Level 2 - problematic warnings that we want
213d75a9ecdSBoyan Karatotev# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
214d75a9ecdSBoyan Karatotev# TODO: disable just for them and move into default build
215d75a9ecdSBoyan KaratotevWARNING2 += -Wold-style-definition
216d75a9ecdSBoyan KaratotevWARNING2 += -Wmissing-prototypes
217d75a9ecdSBoyan KaratotevWARNING2 += -Wmissing-format-attribute
218d75a9ecdSBoyan Karatotev# TF-A aims to comply with this eventually. Effort too large at present
219d75a9ecdSBoyan KaratotevWARNING2 += -Wundef
220d141e638SBoyan Karatotev# currently very involved and many platforms set this off
221d141e638SBoyan KaratotevWARNING2 += -Wunused-const-variable=2
222e7c645b5SYann Gautier
223d75a9ecdSBoyan Karatotev# Level 3 - very pedantic, frequently ignored
224e7c645b5SYann GautierWARNING3 := -Wbad-function-cast
225d75a9ecdSBoyan KaratotevWARNING3 += -Waggregate-return
226d75a9ecdSBoyan KaratotevWARNING3 += -Wnested-externs
227d75a9ecdSBoyan KaratotevWARNING3 += -Wcast-align
228e7c645b5SYann GautierWARNING3 += -Wcast-qual
229e7c645b5SYann GautierWARNING3 += -Wconversion
230e7c645b5SYann GautierWARNING3 += -Wpacked
231e7c645b5SYann GautierWARNING3 += -Wpointer-arith
232e7c645b5SYann GautierWARNING3 += -Wswitch-default
233e7c645b5SYann Gautier
234d75a9ecdSBoyan Karatotev# Setting W is quite verbose and most warnings will be pre-existing issues
235d75a9ecdSBoyan Karatotev# outside of the contributor's control. Don't fail the build on them so warnings
236d75a9ecdSBoyan Karatotev# can be seen and hopefully addressed
237d75a9ecdSBoyan Karatotevifdef W
238d75a9ecdSBoyan Karatotev	ifneq (${W},0)
239d75a9ecdSBoyan Karatotev		E	 ?= 0
240d75a9ecdSBoyan Karatotev	endif
241d75a9ecdSBoyan Karatotevendif
242d75a9ecdSBoyan Karatotev
243e7c645b5SYann Gautierifeq (${W},1)
2449ab81b5eSJustin Chadwell	WARNINGS += $(WARNING1)
245e7c645b5SYann Gautierelse ifeq (${W},2)
2469ab81b5eSJustin Chadwell	WARNINGS += $(WARNING1) $(WARNING2)
247e7c645b5SYann Gautierelse ifeq (${W},3)
2489ab81b5eSJustin Chadwell	WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
249c5e1da83SJayanth Dodderi Chidanandendif #(W)
250e7c645b5SYann Gautier
2519ab81b5eSJustin Chadwell# Compiler specific warnings
2528620bd0bSChris Kayifeq ($(filter %-clang,$($(ARCH)-cc-id)),)
25393c690ebSJustin Chadwell# not using clang
254d7b4cd41SJustin ChadwellWARNINGS	+=		-Wunused-but-set-variable -Wmaybe-uninitialized	\
255d7b4cd41SJustin Chadwell				-Wpacked-bitfield-compat -Wshift-overflow=2 \
256d7b4cd41SJustin Chadwell				-Wlogical-op
257dea23e24SGovindraj Raja
258dea23e24SGovindraj Raja# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
259316f5c97SBoyan KaratotevTF_CFLAGS_MIN_PAGE_SIZE	:=	$(call cc_option, --param=min-pagesize=0)
260316f5c97SBoyan KaratotevTF_CFLAGS		+=	$(TF_CFLAGS_MIN_PAGE_SIZE)
261dea23e24SGovindraj Raja
262538516f5SBipin Raviifeq ($(HARDEN_SLS), 1)
263316f5c97SBoyan Karatotev        TF_CFLAGS_MHARDEN_SLS	:=      $(call cc_option, -mharden-sls=all)
264316f5c97SBoyan Karatotev        TF_CFLAGS_aarch64	+=      $(TF_CFLAGS_MHARDEN_SLS)
265538516f5SBipin Raviendif
266538516f5SBipin Ravi
26793c690ebSJustin Chadwellelse
26893c690ebSJustin Chadwell# using clang
269d7b4cd41SJustin ChadwellWARNINGS	+=		-Wshift-overflow -Wshift-sign-overflow \
270d7b4cd41SJustin Chadwell				-Wlogical-op-parentheses
271c5e1da83SJayanth Dodderi Chidanandendif #(Clang Warning)
27200296576SAmbroise Vincent
2736336b07aSYann Gautierifneq (${E},0)
2746336b07aSYann Gautier	ERRORS := -Werror
275c5e1da83SJayanth Dodderi Chidanandendif #(E)
2766336b07aSYann Gautier
277c5e1da83SJayanth Dodderi Chidanand################################################################################
278c5e1da83SJayanth Dodderi Chidanand# Compiler and Linker Directives
279c5e1da83SJayanth Dodderi Chidanand################################################################################
280ea7a57a3SRoberto VargasCPPFLAGS		=	${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc	\
2819ab81b5eSJustin Chadwell				$(ERRORS) $(WARNINGS)
282d4089fb8SGovindraj RajaASFLAGS			+=	$(CPPFLAGS)                 			\
283d5dfdeb6SJulius Werner				-ffreestanding -Wa,--fatal-warnings
28459de5096SMasahiro YamadaTF_CFLAGS		+=	$(CPPFLAGS) $(TF_CFLAGS_$(ARCH))		\
285ebd6efaeSSamuel Holland				-ffunction-sections -fdata-sections		\
286ee0c5b8cSBoyan Karatotev				-ffreestanding -fno-common			\
287ebd6efaeSSamuel Holland				-Os -std=gnu99
28873c99d4eSJuan Castillo
2891f461979SJustin Chadwellifeq (${SANITIZE_UB},on)
2901f461979SJustin Chadwell	TF_CFLAGS	+=	-fsanitize=undefined -fno-sanitize-recover
291c5e1da83SJayanth Dodderi Chidanandendif #(${SANITIZE_UB},on)
292c5e1da83SJayanth Dodderi Chidanand
2931f461979SJustin Chadwellifeq (${SANITIZE_UB},trap)
2941f461979SJustin Chadwell	TF_CFLAGS	+=	-fsanitize=undefined -fno-sanitize-recover	\
2951f461979SJustin Chadwell				-fsanitize-undefined-trap-on-error
296c5e1da83SJayanth Dodderi Chidanandendif #(${SANITIZE_UB},trap)
2971f461979SJustin Chadwell
298291e7182SChris KayGCC_V_OUTPUT		:=	$(if $($(ARCH)-cc),$(shell $($(ARCH)-cc) -v 2>&1))
299f7ec31dbSdavid cunado
3001f49db5fSMarco FelschTF_LDFLAGS		+=	-z noexecstack
3011f49db5fSMarco Felsch
302641f16e7SAmbroise Vincent# LD = armlink
3038620bd0bSChris Kayifeq ($($(ARCH)-ld-id),arm-link)
304c2ad38ceSVarun Wadekar	TF_LDFLAGS		+=	--diag_error=warning --lto_level=O1
305c2ad38ceSVarun Wadekar	TF_LDFLAGS		+=	--remove --info=unused,unusedsymbols
306edbce9aaSzelalem-aweke	TF_LDFLAGS		+=	$(TF_LDFLAGS_$(ARCH))
307641f16e7SAmbroise Vincent
308641f16e7SAmbroise Vincent# LD = gcc (used when GCC LTO is enabled)
3098620bd0bSChris Kayelse ifeq ($($(ARCH)-ld-id),gnu-gcc)
310edbce9aaSzelalem-aweke	# Pass ld options with Wl or Xlinker switches
31186e489c1SChris Kay	TF_LDFLAGS		+=	$(call ld_option,-Xlinker --no-warn-rwx-segments)
312edbce9aaSzelalem-aweke	TF_LDFLAGS		+=	-Wl,--fatal-warnings -O1
313edbce9aaSzelalem-aweke	TF_LDFLAGS		+=	-Wl,--gc-sections
314ac98b82aSChris Kay
315ac98b82aSChris Kay	TF_LDFLAGS		+=	-Wl,-z,common-page-size=4096 #Configure page size constants
316ac98b82aSChris Kay	TF_LDFLAGS		+=	-Wl,-z,max-page-size=4096
317304ad94bSAndrey Skvortsov	TF_LDFLAGS		+=	-Wl,--build-id=none
318ac98b82aSChris Kay
319edbce9aaSzelalem-aweke	ifeq ($(ENABLE_LTO),1)
320edbce9aaSzelalem-aweke		ifeq (${ARCH},aarch64)
321edbce9aaSzelalem-aweke			TF_LDFLAGS	+=	-flto -fuse-linker-plugin
32231f80efeSAndrey Skvortsov			TF_LDFLAGS      +=	-flto-partition=one
323edbce9aaSzelalem-aweke		endif
324c5e1da83SJayanth Dodderi Chidanand	endif #(ENABLE_LTO)
325c5e1da83SJayanth Dodderi Chidanand
326edbce9aaSzelalem-aweke# GCC automatically adds fix-cortex-a53-843419 flag when used to link
327edbce9aaSzelalem-aweke# which breaks some builds, so disable if errata fix is not explicitly enabled
328cfe6767fSYann Gautier	ifeq (${ARCH},aarch64)
329edbce9aaSzelalem-aweke		ifneq (${ERRATA_A53_843419},1)
330edbce9aaSzelalem-aweke			TF_LDFLAGS	+= 	-mno-fix-cortex-a53-843419
331edbce9aaSzelalem-aweke		endif
332cfe6767fSYann Gautier	endif
333edbce9aaSzelalem-aweke	TF_LDFLAGS		+= 	-nostdlib
334edbce9aaSzelalem-aweke	TF_LDFLAGS		+=	$(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
335641f16e7SAmbroise Vincent
336641f16e7SAmbroise Vincent# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
337c2ad38ceSVarun Wadekarelse
3381f49db5fSMarco Felsch# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
3391f49db5fSMarco Felsch# are not loaded by a elf loader.
3401f49db5fSMarco Felsch	TF_LDFLAGS		+=	$(call ld_option, --no-warn-rwx-segments)
341ebac6922SYabin Cui	TF_LDFLAGS		+=	-O1
342c2b8806fSDouglas Raillard	TF_LDFLAGS		+=	--gc-sections
343ac98b82aSChris Kay
344ac98b82aSChris Kay	TF_LDFLAGS		+=	-z common-page-size=4096 # Configure page size constants
345ac98b82aSChris Kay	TF_LDFLAGS		+=	-z max-page-size=4096
346304ad94bSAndrey Skvortsov	TF_LDFLAGS		+=	--build-id=none
347ac98b82aSChris Kay
348641f16e7SAmbroise Vincent# ld.lld doesn't recognize the errata flags,
349ebac6922SYabin Cui# therefore don't add those in that case.
350ebac6922SYabin Cui# ld.lld reports section type mismatch warnings,
351ebac6922SYabin Cui# therefore don't add --fatal-warnings to it.
3528620bd0bSChris Kay	ifneq ($($(ARCH)-ld-id),llvm-lld)
353ebac6922SYabin Cui		TF_LDFLAGS	+=	$(TF_LDFLAGS_$(ARCH)) --fatal-warnings
354edbce9aaSzelalem-aweke	endif
355c5e1da83SJayanth Dodderi Chidanand
356c5e1da83SJayanth Dodderi Chidanandendif #(LD = armlink)
35773c99d4eSJuan Castillo
35873c99d4eSJuan Castillo################################################################################
359f5211420SGovindraj Raja# Setup ARCH_MAJOR/MINOR before parsing arch_features.
360f5211420SGovindraj Raja################################################################################
361f5211420SGovindraj Rajaifeq (${ENABLE_RME},1)
3627d5fc98fSAlexeiFedorov	ARM_ARCH_MAJOR := 9
3637d5fc98fSAlexeiFedorov	ARM_ARCH_MINOR := 2
364f5211420SGovindraj Rajaendif
365f5211420SGovindraj Raja
366f5211420SGovindraj Raja################################################################################
36773c99d4eSJuan Castillo# Common sources and include directories
36873c99d4eSJuan Castillo################################################################################
369d801fbb0Sdp-arminclude lib/compiler-rt/compiler-rt.mk
37073c99d4eSJuan Castillo
371758ccb80SChris Kay# Allow overriding the timestamp, for example for reproducible builds, or to
372758ccb80SChris Kay# synchronize timestamps across multiple projects.
373758ccb80SChris Kay# This must be set to a C string (including quotes where applicable).
374758ccb80SChris KayBUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__
375758ccb80SChris Kay
376758ccb80SChris KayDEFINES += -DBUILD_MESSAGE_TIMESTAMP='$(BUILD_MESSAGE_TIMESTAMP)'
377758ccb80SChris KayDEFINES += -DBUILD_MESSAGE_VERSION_STRING='"$(VERSION_STRING)"'
378758ccb80SChris KayDEFINES += -DBUILD_MESSAGE_VERSION='"$(VERSION)"'
379758ccb80SChris Kay
38073c99d4eSJuan CastilloBL_COMMON_SOURCES	+=	common/bl_common.c			\
3817f56e9a3SSoby Mathew				common/tf_log.c				\
3829d29c227SSoby Mathew				common/${ARCH}/debug.S			\
38391b48c9fSJulius Werner				drivers/console/multi_console.c		\
3849d29c227SSoby Mathew				lib/${ARCH}/cache_helpers.S		\
3859d29c227SSoby Mathew				lib/${ARCH}/misc_helpers.S		\
386c73686a1SBoyan Karatotev				lib/extensions/pmuv3/${ARCH}/pmuv3.c	\
387566034fcSSoby Mathew				plat/common/plat_bl_common.c		\
3887f56e9a3SSoby Mathew				plat/common/plat_log_common.c		\
38975311203Sdp-arm				plat/common/${ARCH}/plat_common.c	\
3909d29c227SSoby Mathew				plat/common/${ARCH}/platform_helpers.S	\
39161f72a34SRoberto Vargas				${COMPILER_RT_SRCS}
392d7a6b0f8SRyan Harkin
3938620bd0bSChris Kayifeq ($($(ARCH)-cc-id),arm-clang)
3948422a840SAntonio Nino Diaz	BL_COMMON_SOURCES	+=	lib/${ARCH}/armclang_printf.S
3958422a840SAntonio Nino Diazendif
3968422a840SAntonio Nino Diaz
3971f461979SJustin Chadwellifeq (${SANITIZE_UB},on)
3981f461979SJustin Chadwell	BL_COMMON_SOURCES	+=	plat/common/ubsan.c
3991f461979SJustin Chadwellendif
4001f461979SJustin Chadwell
40101d237cbSYann GautierINCLUDES		+=	-Iinclude				\
402f5478dedSAntonio Nino Diaz				-Iinclude/arch/${ARCH}			\
40309d40e0eSAntonio Nino Diaz				-Iinclude/lib/cpus/${ARCH}		\
40409d40e0eSAntonio Nino Diaz				-Iinclude/lib/el3_runtime/${ARCH}	\
40509d40e0eSAntonio Nino Diaz				${PLAT_INCLUDES}			\
40609d40e0eSAntonio Nino Diaz				${SPD_INCLUDES}
40709d40e0eSAntonio Nino Diaz
408e03dcc8fSNishant SharmaDTC_FLAGS		+=	-I dts -O dtb
409e03dcc8fSNishant SharmaDTC_CPPFLAGS		+=	-P -nostdinc $(INCLUDES) -Ifdts -undef \
410e03dcc8fSNishant Sharma				-x assembler-with-cpp $(DEFINES)
411e03dcc8fSNishant Sharma
4129c6d1c50SAntonio Nino Diazinclude common/backtrace/backtrace.mk
4139c6d1c50SAntonio Nino Diaz
41473c99d4eSJuan Castillo################################################################################
4153547270fSGovindraj Raja# Generic definitions
4163547270fSGovindraj Raja################################################################################
4173547270fSGovindraj Raja
4183547270fSGovindraj Rajaifeq (${BUILD_BASE},)
4193547270fSGovindraj Raja     BUILD_BASE		:=	./build
4203547270fSGovindraj Rajaendif
4213547270fSGovindraj RajaBUILD_PLAT		:=	$(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
4223547270fSGovindraj Raja
4233547270fSGovindraj RajaSPDS			:=	$(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
4243547270fSGovindraj Raja
4253547270fSGovindraj Raja# Platforms providing their own TBB makefile may override this value
4263547270fSGovindraj RajaINCLUDE_TBBR_MK		:=	1
4273547270fSGovindraj Raja
4283547270fSGovindraj Raja################################################################################
4293547270fSGovindraj Raja# Include SPD Makefile if one has been specified
4303547270fSGovindraj Raja################################################################################
4313547270fSGovindraj Raja
4323547270fSGovindraj Rajaifneq (${SPD},none)
4333547270fSGovindraj Raja	ifeq (${ARCH},aarch32)
4343547270fSGovindraj Raja                $(error "Error: SPD is incompatible with AArch32.")
4353547270fSGovindraj Raja	endif
4363547270fSGovindraj Raja
4373547270fSGovindraj Raja	ifdef EL3_PAYLOAD_BASE
4383547270fSGovindraj Raja                $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
4393547270fSGovindraj Raja                $(warning "The SPD and its BL32 companion will be present but \
4403547270fSGovindraj Raja                ignored.")
4413547270fSGovindraj Raja	endif
4423547270fSGovindraj Raja
4433547270fSGovindraj Raja	ifeq (${SPD},spmd)
4443547270fSGovindraj Raja	# SPMD is located in std_svc directory
4453547270fSGovindraj Raja		SPD_DIR := std_svc
4463547270fSGovindraj Raja
4473547270fSGovindraj Raja		ifeq ($(SPMD_SPM_AT_SEL2),1)
4483547270fSGovindraj Raja			CTX_INCLUDE_EL2_REGS := 1
4493547270fSGovindraj Raja			ifeq ($(SPMC_AT_EL3),1)
4503547270fSGovindraj Raja                                $(error SPM cannot be enabled in both S-EL2 and EL3.)
4513547270fSGovindraj Raja			endif
45259bdcc58SMadhukar Pappireddy			ifeq ($(CTX_INCLUDE_SVE_REGS),1)
45359bdcc58SMadhukar Pappireddy                                $(error SVE context management not needed with Hafnium SPMC.)
45459bdcc58SMadhukar Pappireddy			endif
4553547270fSGovindraj Raja		endif
4563547270fSGovindraj Raja
4573547270fSGovindraj Raja		ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
4583547270fSGovindraj Raja			DTC_CPPFLAGS	+=	-DOPTEE_SP_FW_CONFIG
4593547270fSGovindraj Raja		endif
4603547270fSGovindraj Raja
4610686a01bSArunachalam Ganapathy		ifeq ($(findstring trusty_sp,$(ARM_SPMC_MANIFEST_DTS)),trusty_sp)
4620686a01bSArunachalam Ganapathy			DTC_CPPFLAGS	+=	-DTRUSTY_SP_FW_CONFIG
4630686a01bSArunachalam Ganapathy		endif
4640686a01bSArunachalam Ganapathy
4653547270fSGovindraj Raja		ifeq ($(TS_SP_FW_CONFIG),1)
4663547270fSGovindraj Raja			DTC_CPPFLAGS	+=	-DTS_SP_FW_CONFIG
4673547270fSGovindraj Raja		endif
4683547270fSGovindraj Raja
4693547270fSGovindraj Raja		ifneq ($(ARM_BL2_SP_LIST_DTS),)
4703547270fSGovindraj Raja		DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
4713547270fSGovindraj Raja		endif
4723547270fSGovindraj Raja
4733547270fSGovindraj Raja		ifneq ($(SP_LAYOUT_FILE),)
4743547270fSGovindraj Raja		BL2_ENABLE_SP_LOAD := 1
4753547270fSGovindraj Raja		endif
476c189adbdSGovindraj Raja
477c189adbdSGovindraj Raja		ifeq ($(SPMC_AT_EL3_SEL0_SP),1)
478c189adbdSGovindraj Raja			ifneq ($(SPMC_AT_EL3),1)
479c189adbdSGovindraj Raja			$(error SEL0 SP cannot be enabled without SPMC at EL3)
480c189adbdSGovindraj Raja			endif
481c189adbdSGovindraj Raja		endif
4823547270fSGovindraj Raja	else
4833547270fSGovindraj Raja		# All other SPDs in spd directory
4843547270fSGovindraj Raja		SPD_DIR := spd
4853547270fSGovindraj Raja	endif #(SPD)
4863547270fSGovindraj Raja
4873547270fSGovindraj Raja	# We expect to locate an spd.mk under the specified SPD directory
4883547270fSGovindraj Raja	SPD_MAKE	:=	$(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
4893547270fSGovindraj Raja
4903547270fSGovindraj Raja	ifeq (${SPD_MAKE},)
4913547270fSGovindraj Raja                $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
4923547270fSGovindraj Raja	endif
4933547270fSGovindraj Raja        $(info Including ${SPD_MAKE})
4943547270fSGovindraj Raja        include ${SPD_MAKE}
4953547270fSGovindraj Raja
4963547270fSGovindraj Raja	# If there's BL32 companion for the chosen SPD, we expect that the SPD's
4973547270fSGovindraj Raja	# Makefile would set NEED_BL32 to "yes". In this case, the build system
4983547270fSGovindraj Raja	# supports two mutually exclusive options:
4993547270fSGovindraj Raja	# * BL32 is built from source: then BL32_SOURCES must contain the list
5003547270fSGovindraj Raja	#   of source files to build BL32
5013547270fSGovindraj Raja	# * BL32 is a prebuilt binary: then BL32 must point to the image file
5023547270fSGovindraj Raja	#   that will be included in the FIP
5033547270fSGovindraj Raja	# If both BL32_SOURCES and BL32 are defined, the binary takes precedence
5043547270fSGovindraj Raja	# over the sources.
5053547270fSGovindraj Rajaendif #(SPD=none)
5063547270fSGovindraj Raja
5073547270fSGovindraj Rajaifeq (${ENABLE_SPMD_LP}, 1)
5083547270fSGovindraj Rajaifneq (${SPD},spmd)
5093547270fSGovindraj Raja        $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
5103547270fSGovindraj Rajaendif
5113547270fSGovindraj Rajaifeq ($(SPMC_AT_EL3),1)
5123547270fSGovindraj Raja        $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
5133547270fSGovindraj Rajaendif
5143547270fSGovindraj Rajaendif
5153547270fSGovindraj Raja
5163547270fSGovindraj Raja################################################################################
517696ed168SOlivier Deprez# Include the platform specific Makefile after the SPD Makefile (the platform
518696ed168SOlivier Deprez# makefile may use all previous definitions in this file)
519696ed168SOlivier Deprez################################################################################
520696ed168SOlivier Deprezinclude ${PLAT_MAKEFILE_FULL}
521696ed168SOlivier Deprez
522696ed168SOlivier Deprez################################################################################
523f5211420SGovindraj Raja# Process BRANCH_PROTECTION value and set
524f5211420SGovindraj Raja# Pointer Authentication and Branch Target Identification flags
525f5211420SGovindraj Raja################################################################################
526f5211420SGovindraj Rajaifeq (${BRANCH_PROTECTION},0)
527f5211420SGovindraj Raja	# Default value turns off all types of branch protection
528f5211420SGovindraj Raja	BP_OPTION := none
529f5211420SGovindraj Rajaelse ifneq (${ARCH},aarch64)
530f5211420SGovindraj Raja        $(error BRANCH_PROTECTION requires AArch64)
531f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},1)
532f5211420SGovindraj Raja	# Enables all types of branch protection features
533f5211420SGovindraj Raja	BP_OPTION := standard
534f5211420SGovindraj Raja	ENABLE_BTI := 1
535f5211420SGovindraj Raja	ENABLE_PAUTH := 1
536f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},2)
537f5211420SGovindraj Raja	# Return address signing to its standard level
538f5211420SGovindraj Raja	BP_OPTION := pac-ret
539f5211420SGovindraj Raja	ENABLE_PAUTH := 1
540f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},3)
541f5211420SGovindraj Raja	# Extend the signing to include leaf functions
542f5211420SGovindraj Raja	BP_OPTION := pac-ret+leaf
543f5211420SGovindraj Raja	ENABLE_PAUTH := 1
544f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},4)
545f5211420SGovindraj Raja	# Turn on branch target identification mechanism
546f5211420SGovindraj Raja	BP_OPTION := bti
547f5211420SGovindraj Raja	ENABLE_BTI := 1
548f5211420SGovindraj Rajaelse
549f5211420SGovindraj Raja        $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
550f5211420SGovindraj Rajaendif #(BRANCH_PROTECTION)
551f5211420SGovindraj Raja
552f5211420SGovindraj Rajaifeq ($(ENABLE_PAUTH),1)
553f5211420SGovindraj Raja	CTX_INCLUDE_PAUTH_REGS := 1
554f5211420SGovindraj Rajaendif
555f5211420SGovindraj Rajaifneq (${BP_OPTION},none)
556f5211420SGovindraj Raja	TF_CFLAGS_aarch64	+=	-mbranch-protection=${BP_OPTION}
557f5211420SGovindraj Rajaendif #(BP_OPTION)
558f5211420SGovindraj Raja
559f5211420SGovindraj Raja# Pointer Authentication sources
560f5211420SGovindraj Rajaifeq (${ENABLE_PAUTH}, 1)
561f5211420SGovindraj Raja# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
562f5211420SGovindraj Raja# Pauth support. As it's not secure, it must be reimplemented for real platforms
563f5211420SGovindraj Raja	BL_COMMON_SOURCES	+=	lib/extensions/pauth/pauth_helpers.S
564f5211420SGovindraj Rajaendif
565f5211420SGovindraj Raja
5663547270fSGovindraj Raja################################################################################
5673547270fSGovindraj Raja# Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from
5683547270fSGovindraj Raja# platform.
5693547270fSGovindraj Raja################################################################################
5703547270fSGovindraj Rajainclude ${MAKE_HELPERS_DIRECTORY}arch_features.mk
5713547270fSGovindraj Raja
572f5211420SGovindraj Raja####################################################
573f5211420SGovindraj Raja# Enable required options for Memory Stack Tagging.
574f5211420SGovindraj Raja####################################################
575f5211420SGovindraj Raja
576f5211420SGovindraj Raja# Currently, these options are enabled only for clang and armclang compiler.
577f5211420SGovindraj Rajaifeq (${SUPPORT_STACK_MEMTAG},yes)
578f5211420SGovindraj Raja    ifdef mem_tag_arch_support
579f5211420SGovindraj Raja        # Check for armclang and clang compilers
5808620bd0bSChris Kay        ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
581f5211420SGovindraj Raja        # Add "memtag" architecture feature modifier if not specified
582f5211420SGovindraj Raja            ifeq ( ,$(findstring memtag,$(arch-features)))
583f5211420SGovindraj Raja                arch-features	:=	$(arch-features)+memtag
584f5211420SGovindraj Raja            endif	# memtag
5858620bd0bSChris Kay            ifeq ($($(ARCH)-cc-id),arm-clang)
586f5211420SGovindraj Raja                TF_CFLAGS	+=	-mmemtag-stack
5878620bd0bSChris Kay            else ifeq ($($(ARCH)-cc-id),llvm-clang)
588f5211420SGovindraj Raja                TF_CFLAGS	+=	-fsanitize=memtag
589f5211420SGovindraj Raja            endif	# armclang
590f5211420SGovindraj Raja        endif
591f5211420SGovindraj Raja    else
592f5211420SGovindraj Raja        $(error "Error: stack memory tagging is not supported for  \
593f5211420SGovindraj Raja        architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
594f5211420SGovindraj Raja	endif #(mem_tag_arch_support)
595f5211420SGovindraj Rajaendif #(SUPPORT_STACK_MEMTAG)
596f5211420SGovindraj Raja
597f5211420SGovindraj Raja################################################################################
598f5211420SGovindraj Raja# RME dependent flags configuration, Enable optional features for RME.
599f5211420SGovindraj Raja################################################################################
600f5211420SGovindraj Raja# FEAT_RME
601f5211420SGovindraj Rajaifeq (${ENABLE_RME},1)
602f5211420SGovindraj Raja	# RME requires AARCH64
603f5211420SGovindraj Raja	ifneq (${ARCH},aarch64)
604f5211420SGovindraj Raja                $(error ENABLE_RME requires AArch64)
605f5211420SGovindraj Raja	endif
606f5211420SGovindraj Raja
607f5211420SGovindraj Raja	# RME requires el2 context to be saved for now.
608f5211420SGovindraj Raja	CTX_INCLUDE_EL2_REGS := 1
609f5211420SGovindraj Raja	CTX_INCLUDE_AARCH32_REGS := 0
610f5211420SGovindraj Raja	CTX_INCLUDE_PAUTH_REGS := 1
611f5211420SGovindraj Raja
612f5211420SGovindraj Raja	# RME enables CSV2_2 extension by default.
613f5211420SGovindraj Raja	ENABLE_FEAT_CSV2_2 = 1
614f5211420SGovindraj Rajaendif #(FEAT_RME)
615f5211420SGovindraj Raja
616f5211420SGovindraj Raja################################################################################
6175b18de09SZelalem Aweke# Include rmmd Makefile if RME is enabled
6185b18de09SZelalem Aweke################################################################################
6195b18de09SZelalem Awekeifneq (${ENABLE_RME},0)
6205b18de09SZelalem Aweke	ifneq (${ARCH},aarch64)
6215b18de09SZelalem Aweke                $(error ENABLE_RME requires AArch64)
6225b18de09SZelalem Aweke	endif
6231d63ae4dSMarc Bonnici	ifeq ($(SPMC_AT_EL3),1)
6241d63ae4dSMarc Bonnici                $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
6251d63ae4dSMarc Bonnici	endif
626c5e1da83SJayanth Dodderi Chidanand
6274fba2e1fSBoyan Karatotev	ifneq (${SPD}, none)
6284fba2e1fSBoyan Karatotev		ifneq (${SPD}, spmd)
6294fba2e1fSBoyan Karatotev                        $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
6304fba2e1fSBoyan Karatotev		endif
6314fba2e1fSBoyan Karatotev	endif
6325b18de09SZelalem Awekeinclude services/std_svc/rmmd/rmmd.mk
6335b18de09SZelalem Aweke$(warning "RME is an experimental feature")
6345b18de09SZelalem Awekeendif
6355b18de09SZelalem Aweke
6363547270fSGovindraj Rajaifeq (${CTX_INCLUDE_EL2_REGS}, 1)
6373547270fSGovindraj Raja	ifeq (${SPD},none)
6383547270fSGovindraj Raja		ifeq (${ENABLE_RME},0)
6393547270fSGovindraj Raja                        $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
6403547270fSGovindraj Raja                        or RME is enabled)
6413547270fSGovindraj Raja		endif
6423547270fSGovindraj Raja	endif
6433547270fSGovindraj Rajaendif
6440f21c547SJuan Castillo
6457794d6c8SGovindraj Raja################################################################################
64630655136SGovindraj Raja# Make 128-Bit sysreg read/writes availabe when FEAT_D128 is enabled.
64730655136SGovindraj Raja################################################################################
64830655136SGovindraj Rajaifneq (${ENABLE_FEAT_D128}, 0)
64930655136SGovindraj Raja        BL_COMMON_SOURCES       +=      lib/extensions/sysreg128/sysreg128.S
65030655136SGovindraj Rajaendif
65130655136SGovindraj Raja
65230655136SGovindraj Raja################################################################################
6537794d6c8SGovindraj Raja# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
6547794d6c8SGovindraj Raja# up with appropriate march values for compiler.
6557794d6c8SGovindraj Raja################################################################################
6567794d6c8SGovindraj Rajainclude ${MAKE_HELPERS_DIRECTORY}march.mk
6577794d6c8SGovindraj Raja
6587794d6c8SGovindraj RajaTF_CFLAGS   +=	$(march-directive)
6597275ac2aSGovindraj RajaASFLAGS		+=	$(march-directive)
6607794d6c8SGovindraj Raja
66142d4d3baSArvind Ram Prakash# This internal flag is common option which is set to 1 for scenarios
66242d4d3baSArvind Ram Prakash# when the BL2 is running in EL3 level. This occurs in two scenarios -
66342d4d3baSArvind Ram Prakash# 4 world system running BL2 at EL3 and two world system without BL1 running
66442d4d3baSArvind Ram Prakash# BL2 in EL3
66542d4d3baSArvind Ram Prakash
66642d4d3baSArvind Ram Prakashifeq (${RESET_TO_BL2},1)
66742d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	1
66842d4d3baSArvind Ram Prakash	ifeq (${ENABLE_RME},1)
669c5e1da83SJayanth Dodderi Chidanand                $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
670c5e1da83SJayanth Dodderi Chidanand                supported at the moment.)
67142d4d3baSArvind Ram Prakash	endif
67242d4d3baSArvind Ram Prakashelse ifeq (${ENABLE_RME},1)
67342d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	1
67442d4d3baSArvind Ram Prakashelse
67542d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	0
67642d4d3baSArvind Ram Prakashendif
67742d4d3baSArvind Ram Prakash
678f87e54f7SManish Pandey# This internal flag is set to 1 when Firmware First handling of External aborts
679f87e54f7SManish Pandey# is required by lowe ELs. Currently only NS requires this support.
680f87e54f7SManish Pandeyifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
681f87e54f7SManish Pandey	FFH_SUPPORT := 1
682f87e54f7SManish Pandeyelse
683f87e54f7SManish Pandey	FFH_SUPPORT := 0
684f87e54f7SManish Pandeyendif
685f87e54f7SManish Pandey
68626e63c44SEtienne Carriereifeq (${ARM_ARCH_MAJOR},7)
68726e63c44SEtienne Carriereinclude make_helpers/armv7-a-cpus.mk
68826e63c44SEtienne Carriereendif
68926e63c44SEtienne Carriere
6903bd17c0fSSoby MathewPIE_FOUND		:=	$(findstring --enable-default-pie,${GCC_V_OUTPUT})
6913bd17c0fSSoby Mathewifneq ($(PIE_FOUND),)
6923bd17c0fSSoby Mathew	TF_CFLAGS	+=	-fno-PIE
6938620bd0bSChris Kayifeq ($($(ARCH)-ld-id),gnu-gcc)
6947b592418SSamuel Holland	TF_LDFLAGS	+=	-no-pie
6957b592418SSamuel Hollandendif
696c5e1da83SJayanth Dodderi Chidanandendif #(PIE_FOUND)
697320920c1SMasahiro Yamada
6988620bd0bSChris Kayifeq ($($(ARCH)-ld-id),gnu-gcc)
699320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-Wl,-pie -Wl,--no-dynamic-linker
700320920c1SMasahiro Yamadaelse
701320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-pie --no-dynamic-linker
702320920c1SMasahiro Yamadaendif
703320920c1SMasahiro Yamada
704320920c1SMasahiro Yamadaifeq ($(ENABLE_PIE),1)
70542d4d3baSArvind Ram Prakash	ifeq ($(RESET_TO_BL2),1)
70669af7fcfSMasahiro Yamada		ifneq ($(BL2_IN_XIP_MEM),1)
707966660ecSChris Kay			BL2_CPPFLAGS	+=	-fpie
70869af7fcfSMasahiro Yamada			BL2_CFLAGS	+=	-fpie
70969af7fcfSMasahiro Yamada			BL2_LDFLAGS	+=	$(PIE_LDFLAGS)
710c5e1da83SJayanth Dodderi Chidanand		endif #(BL2_IN_XIP_MEM)
711c5e1da83SJayanth Dodderi Chidanand	endif #(RESET_TO_BL2)
712966660ecSChris Kay	BL31_CPPFLAGS	+=	-fpie
713320920c1SMasahiro Yamada	BL31_CFLAGS 	+=	-fpie
714320920c1SMasahiro Yamada	BL31_LDFLAGS	+=	$(PIE_LDFLAGS)
715966660ecSChris Kay
716966660ecSChris Kay	BL32_CPPFLAGS	+=	-fpie
717d974301dSMasahiro Yamada	BL32_CFLAGS	+=	-fpie
718d974301dSMasahiro Yamada	BL32_LDFLAGS	+=	$(PIE_LDFLAGS)
719c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_PIE)
7203bd17c0fSSoby Mathew
721007433d8SBoyan KaratotevBL1_CPPFLAGS  += -DREPORT_ERRATA=${DEBUG}
722007433d8SBoyan KaratotevBL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
723007433d8SBoyan KaratotevBL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
724007433d8SBoyan Karatotev
7259cefb4b1SMasahiro YamadaBL1_CPPFLAGS += -DIMAGE_AT_EL3
72642d4d3baSArvind Ram Prakashifeq ($(RESET_TO_BL2),1)
7279cefb4b1SMasahiro Yamada	BL2_CPPFLAGS += -DIMAGE_AT_EL3
728d5e97a1dSMasahiro Yamadaelse
7299cefb4b1SMasahiro Yamada	BL2_CPPFLAGS += -DIMAGE_AT_EL1
730c5e1da83SJayanth Dodderi Chidanandendif #(RESET_TO_BL2)
731007433d8SBoyan Karatotev
732007433d8SBoyan Karatotevifeq (${ARCH},aarch64)
7339cefb4b1SMasahiro Yamada	BL2U_CPPFLAGS += -DIMAGE_AT_EL1
7349cefb4b1SMasahiro Yamada	BL31_CPPFLAGS += -DIMAGE_AT_EL3
7359cefb4b1SMasahiro Yamada	BL32_CPPFLAGS += -DIMAGE_AT_EL1
736007433d8SBoyan Karatotevelse
737007433d8SBoyan Karatotev	BL32_CPPFLAGS += -DIMAGE_AT_EL3
738d5e97a1dSMasahiro Yamadaendif
739d5e97a1dSMasahiro Yamada
74054035fc4SSandrine Bailleux# Include the CPU specific operations makefile, which provides default
74154035fc4SSandrine Bailleux# values for all CPU errata workarounds and CPU specific optimisations.
74254035fc4SSandrine Bailleux# This can be overridden by the platform.
74373c99d4eSJuan Castilloinclude lib/cpus/cpu-ops.mk
7444f6ad66aSAchin Gupta
745a4409008Sdp-arm################################################################################
746a4409008Sdp-arm# Build `AARCH32_SP` as BL32 image for AArch32
747a4409008Sdp-arm################################################################################
748c5e1da83SJayanth Dodderi Chidanandifeq (${ARCH},aarch32)
749c5e1da83SJayanth Dodderi Chidanand        NEED_BL32 := yes
750c5e1da83SJayanth Dodderi Chidanand
751a4409008Sdp-arm        ifneq (${AARCH32_SP},none)
752a4409008Sdp-arm        # We expect to locate an sp.mk under the specified AARCH32_SP directory
753a4409008Sdp-arm		AARCH32_SP_MAKE	:=	$(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
754a4409008Sdp-arm
755a4409008Sdp-arm                ifeq (${AARCH32_SP_MAKE},)
756a4409008Sdp-arm                        $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
757a4409008Sdp-arm                endif
758a4409008Sdp-arm                $(info Including ${AARCH32_SP_MAKE})
759a4409008Sdp-arm                include ${AARCH32_SP_MAKE}
760a4409008Sdp-arm        endif
761c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch32)
7624f6ad66aSAchin Gupta
76373c99d4eSJuan Castillo################################################################################
76477f1f7a1SVarun Wadekar# Include libc if not overridden
76577f1f7a1SVarun Wadekar################################################################################
76677f1f7a1SVarun Wadekarifeq (${OVERRIDE_LIBC},0)
76777f1f7a1SVarun Wadekarinclude lib/libc/libc.mk
76877f1f7a1SVarun Wadekarendif
76977f1f7a1SVarun Wadekar
77077f1f7a1SVarun Wadekar################################################################################
771c5e1da83SJayanth Dodderi Chidanand# Check incompatible options and dependencies
772cf2c8a33SAntonio Nino Diaz################################################################################
773cf2c8a33SAntonio Nino Diaz
774c5e1da83SJayanth Dodderi Chidanand# USE_DEBUGFS experimental feature recommended only in debug builds
775c5e1da83SJayanth Dodderi Chidanandifeq (${USE_DEBUGFS},1)
776c5e1da83SJayanth Dodderi Chidanand        ifeq (${DEBUG},1)
777c5e1da83SJayanth Dodderi Chidanand                $(warning DEBUGFS experimental feature is enabled.)
778c5e1da83SJayanth Dodderi Chidanand        else
779c5e1da83SJayanth Dodderi Chidanand                $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
780c5e1da83SJayanth Dodderi Chidanand        endif
781c5e1da83SJayanth Dodderi Chidanandendif #(USE_DEBUGFS)
782c5e1da83SJayanth Dodderi Chidanand
783c5e1da83SJayanth Dodderi Chidanand# USE_SPINLOCK_CAS requires AArch64 build
784c5e1da83SJayanth Dodderi Chidanandifeq (${USE_SPINLOCK_CAS},1)
785c5e1da83SJayanth Dodderi Chidanand        ifneq (${ARCH},aarch64)
786c5e1da83SJayanth Dodderi Chidanand               $(error USE_SPINLOCK_CAS requires AArch64)
787c5e1da83SJayanth Dodderi Chidanand        endif
788c5e1da83SJayanth Dodderi Chidanandendif #(USE_SPINLOCK_CAS)
789c5e1da83SJayanth Dodderi Chidanand
790c5e1da83SJayanth Dodderi Chidanand# The cert_create tool cannot generate certificates individually, so we use the
791c5e1da83SJayanth Dodderi Chidanand# target 'certificates' to create them all
792c5e1da83SJayanth Dodderi Chidanandifneq (${GENERATE_COT},0)
793c5e1da83SJayanth Dodderi Chidanand        FIP_DEPS += certificates
794c5e1da83SJayanth Dodderi Chidanand        FWU_FIP_DEPS += fwu_certificates
795c5e1da83SJayanth Dodderi Chidanandendif
796c5e1da83SJayanth Dodderi Chidanand
797c5e1da83SJayanth Dodderi Chidanandifneq (${DECRYPTION_SUPPORT},none)
798c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -f ${FW_ENC_STATUS}
799c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -k ${ENC_KEY}
800c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -n ${ENC_NONCE}
801c5e1da83SJayanth Dodderi Chidanand	FIP_DEPS += enctool
802c5e1da83SJayanth Dodderi Chidanand	FWU_FIP_DEPS += enctool
803c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
804c5e1da83SJayanth Dodderi Chidanand
805cf2c8a33SAntonio Nino Diazifdef EL3_PAYLOAD_BASE
80668450a6dSAntonio Nino Diaz	ifdef PRELOADED_BL33_BASE
80768450a6dSAntonio Nino Diaz                $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
80868450a6dSAntonio Nino Diaz		incompatible build options. EL3_PAYLOAD_BASE has priority.")
809cf2c8a33SAntonio Nino Diaz	endif
81076580f3dSQixiang Xu	ifneq (${GENERATE_COT},0)
811c5e1da83SJayanth Dodderi Chidanand                $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
812c5e1da83SJayanth Dodderi Chidanand                build options.")
81376580f3dSQixiang Xu	endif
81476580f3dSQixiang Xu	ifneq (${TRUSTED_BOARD_BOOT},0)
815c5e1da83SJayanth Dodderi Chidanand                $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
816c5e1da83SJayanth Dodderi Chidanand                incompatible \ build options.")
81776580f3dSQixiang Xu	endif
818c5e1da83SJayanth Dodderi Chidanandendif #(EL3_PAYLOAD_BASE)
819cf2c8a33SAntonio Nino Diaz
820cf2c8a33SAntonio Nino Diazifeq (${NEED_BL33},yes)
821cf2c8a33SAntonio Nino Diaz	ifdef EL3_PAYLOAD_BASE
822cf2c8a33SAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
823cf2c8a33SAntonio Nino Diaz                BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
824cf2c8a33SAntonio Nino Diaz	endif
82568450a6dSAntonio Nino Diaz	ifdef PRELOADED_BL33_BASE
82668450a6dSAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
827c5e1da83SJayanth Dodderi Chidanand                PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
828cf2c8a33SAntonio Nino Diaz	endif
829c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL33)
830cf2c8a33SAntonio Nino Diaz
831d4593e47SJeenu Viswambharan# When building for systems with hardware-assisted coherency, there's no need to
832d4593e47SJeenu Viswambharan# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
833d4593e47SJeenu Viswambharanifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
834d4593e47SJeenu Viswambharan        $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
835d4593e47SJeenu Viswambharanendif
8361a0a3f06SYatharth Kochar
83742d4d3baSArvind Ram Prakash#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
83842d4d3baSArvind Ram Prakashifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
83942d4d3baSArvind Ram Prakash        $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
8407d173fc5SJiafei Panendif
8417d173fc5SJiafei Pan
8429202d519SManish Pandey# RAS_EXTENSION is deprecated, provide alternate build options
84314c6016aSJeenu Viswambharanifeq ($(RAS_EXTENSION),1)
844c5e1da83SJayanth Dodderi Chidanand        $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
845f87e54f7SManish Pandey        and HANDLE_EA_EL3_FIRST_NS instead")
8469202d519SManish Pandeyendif
847c5e1da83SJayanth Dodderi Chidanand
848c5e1da83SJayanth Dodderi Chidanand
8499202d519SManish Pandey# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
8501a7c1cfeSJeenu Viswambharanifeq ($(FAULT_INJECTION_SUPPORT),1)
8516503ff29SAndre Przywara	ifeq ($(ENABLE_FEAT_RAS),0)
8526503ff29SAndre Przywara                $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
8531a7c1cfeSJeenu Viswambharan	endif
854c5e1da83SJayanth Dodderi Chidanandendif #(FAULT_INJECTION_SUPPORT)
8551a7c1cfeSJeenu Viswambharan
856ed51b51fSRoberto Vargas# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
857209a60ccSSoby Mathewifeq ($(DYN_DISABLE_AUTH), 1)
858209a60ccSSoby Mathew	ifeq (${TRUSTED_BOARD_BOOT}, 0)
859c5e1da83SJayanth Dodderi Chidanand                $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
860c5e1da83SJayanth Dodderi Chidanand                to be set.")
861209a60ccSSoby Mathew	endif
862c5e1da83SJayanth Dodderi Chidanandendif #(DYN_DISABLE_AUTH)
863209a60ccSSoby Mathew
8642bf4f27fSManish V Badarkheifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
8652bf4f27fSManish V Badarkhe# Support authentication verification and hash calculation
8662bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT := 3
8672bf4f27fSManish V Badarkheelse ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
8682bf4f27fSManish V Badarkhe# Support authentication verification and hash calculation
8692bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT := 3
8702bf4f27fSManish V Badarkheelse ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
8712bf4f27fSManish V Badarkhe# Support hash calculation only
8722bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT := 2
8732bf4f27fSManish V Badarkheelse ifeq (${TRUSTED_BOARD_BOOT},1)
8742bf4f27fSManish V Badarkhe# Support authentication verification only
875c9c56f6eSManish V Badarkhe	CRYPTO_SUPPORT := 1
876c9c56f6eSManish V Badarkheelse
877c9c56f6eSManish V Badarkhe	CRYPTO_SUPPORT := 0
878c5e1da83SJayanth Dodderi Chidanandendif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
879c9c56f6eSManish V Badarkhe
880e4a070e3SManish V Badarkheifneq ($(filter 1 2 3,$(CRYPTO_SUPPORT)),)
881e4a070e3SManish V BadarkheCRYPTO_LIB := $(BUILD_PLAT)/lib/libmbedtls.a
882e4a070e3SManish V Badarkheendif
883e4a070e3SManish V Badarkhe
884cbf9e84aSBalint Dobszay# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
885cbf9e84aSBalint Dobszayifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
886700e7685SManish Pandey        $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
88784ef9cd8SManish V Badarkheendif
88884ef9cd8SManish V Badarkhe
889b86048c4SAntonio Nino Diaz# If pointer authentication is used in the firmware, make sure that all the
8909fc59639SAlexei Fedorov# registers associated to it are also saved and restored.
8919fc59639SAlexei Fedorov# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
892b86048c4SAntonio Nino Diazifeq ($(ENABLE_PAUTH),1)
8939fc59639SAlexei Fedorov	ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
8949fc59639SAlexei Fedorov                $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
89506715f85SAlexei Fedorov	endif
896c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_PAUTH)
8979fc59639SAlexei Fedorov
89806715f85SAlexei Fedorovifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
8999fc59639SAlexei Fedorov	ifneq (${ARCH},aarch64)
9009fc59639SAlexei Fedorov                $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
901b86048c4SAntonio Nino Diaz	endif
902c5e1da83SJayanth Dodderi Chidanandendif #(CTX_INCLUDE_PAUTH_REGS)
9039fc59639SAlexei Fedorov
9046a0da736SJayanth Dodderi Chidanandifeq ($(FEATURE_DETECTION),1)
9056a0da736SJayanth Dodderi Chidanand        $(info FEATURE_DETECTION is an experimental feature)
906c5e1da83SJayanth Dodderi Chidanandendif #(FEATURE_DETECTION)
9076a0da736SJayanth Dodderi Chidanand
90803d3c0d7SJayanth Dodderi Chidanandifneq ($(ENABLE_SME2_FOR_NS), 0)
90903d3c0d7SJayanth Dodderi Chidanand	ifeq (${ENABLE_SME_FOR_NS}, 0)
910c5e1da83SJayanth Dodderi Chidanand                $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
911c5e1da83SJayanth Dodderi Chidanand                to be set")
91203d3c0d7SJayanth Dodderi Chidanand                $(warning "Forced ENABLE_SME_FOR_NS=1")
91303d3c0d7SJayanth Dodderi Chidanand		override ENABLE_SME_FOR_NS	:= 1
91403d3c0d7SJayanth Dodderi Chidanand	endif
915c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_SME2_FOR_NS)
91645007acdSJayanth Dodderi Chidanand
91760e8f3cfSPetre-Ionut Tudorifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
91860e8f3cfSPetre-Ionut Tudor	ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
919c5e1da83SJayanth Dodderi Chidanand                $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
920c5e1da83SJayanth Dodderi Chidanand                library v2")
92160e8f3cfSPetre-Ionut Tudor	endif
922c5e1da83SJayanth Dodderi Chidanandendif #(ARM_XLAT_TABLES_LIB_V1)
92360e8f3cfSPetre-Ionut Tudor
9247cda17bbSSumit Gargifneq (${DECRYPTION_SUPPORT},none)
9257cda17bbSSumit Garg	ifeq (${TRUSTED_BOARD_BOOT}, 0)
926c5e1da83SJayanth Dodderi Chidanand                $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
927c5e1da83SJayanth Dodderi Chidanand                to be set)
9287cda17bbSSumit Garg	endif
929c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
9307cda17bbSSumit Garg
931744ad974Sjohpow01# Ensure that no Aarch64-only features are enabled in Aarch32 build
932dc78e62dSjohpow01ifeq (${ARCH},aarch32)
933744ad974Sjohpow01
934744ad974Sjohpow01	# SME/SVE only supported on AArch64
93545007acdSJayanth Dodderi Chidanand	ifneq (${ENABLE_SME_FOR_NS},0)
936dc78e62dSjohpow01                $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
937dc78e62dSjohpow01	endif
93803d3c0d7SJayanth Dodderi Chidanand
939dc78e62dSjohpow01	ifeq (${ENABLE_SVE_FOR_NS},1)
940dc78e62dSjohpow01		# Warning instead of error due to CI dependency on this
94124ab2c0aSYann Gautier                $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
942dc78e62dSjohpow01	endif
943744ad974Sjohpow01
944ff86e0b4SJuan Pablo Conde	# BRBE is not supported in AArch32
945744ad974Sjohpow01	ifeq (${ENABLE_BRBE_FOR_NS},1)
946744ad974Sjohpow01                $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
947744ad974Sjohpow01	endif
948744ad974Sjohpow01
949ff86e0b4SJuan Pablo Conde	# FEAT_RNG_TRAP is not supported in AArch32
950ff86e0b4SJuan Pablo Conde	ifeq (${ENABLE_FEAT_RNG_TRAP},1)
951ff86e0b4SJuan Pablo Conde                $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
952ff86e0b4SJuan Pablo Conde	endif
953a57e18e4SArvind Ram Prakash
954a57e18e4SArvind Ram Prakash	ifneq (${ENABLE_FEAT_FPMR},0)
955a57e18e4SArvind Ram Prakash                $(error "ENABLE_FEAT_FPMR cannot be used with ARCH=aarch32")
956a57e18e4SArvind Ram Prakash	endif
9578db17052SBoyan Karatotev
9588db17052SBoyan Karatotev	ifeq (${ARCH_FEATURE_AVAILABILITY},1)
9598db17052SBoyan Karatotev                $(error "ARCH_FEATURE_AVAILABILITY cannot be used with ARCH=aarch32")
9608db17052SBoyan Karatotev	endif
961*6b8df7b9SArvind Ram Prakash	# FEAT_MOPS is only supported on AArch64
962*6b8df7b9SArvind Ram Prakash	ifneq (${ENABLE_FEAT_MOPS},0)
963*6b8df7b9SArvind Ram Prakash		$(error "ENABLE_FEAT_MOPS cannot be used with ARCH=aarch32")
964*6b8df7b9SArvind Ram Prakash	endif
965c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch32)
966dc78e62dSjohpow01
967a57e18e4SArvind Ram Prakashifneq (${ENABLE_FEAT_FPMR},0)
968a57e18e4SArvind Ram Prakash	ifeq (${ENABLE_FEAT_FGT},0)
969a57e18e4SArvind Ram Prakash                $(error "ENABLE_FEAT_FPMR requires ENABLE_FEAT_FGT")
970a57e18e4SArvind Ram Prakash	endif
971a57e18e4SArvind Ram Prakash	ifeq (${ENABLE_FEAT_HCX},0)
972a57e18e4SArvind Ram Prakash                $(error "ENABLE_FEAT_FPMR requires ENABLE_FEAT_HCX")
973a57e18e4SArvind Ram Prakash	endif
974a57e18e4SArvind Ram Prakashendif #(ENABLE_FEAT_FPMR)
975a57e18e4SArvind Ram Prakash
9760d122947SBoyan Karatotevifneq (${ENABLE_SME_FOR_NS},0)
9770d122947SBoyan Karatotev	ifeq (${ENABLE_SVE_FOR_NS},0)
9780d122947SBoyan Karatotev                $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
9790d122947SBoyan Karatotev	endif
980c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_SME_FOR_NS)
9810d122947SBoyan Karatotev
982dc78e62dSjohpow01# Secure SME/SVE requires the non-secure component as well
983dc78e62dSjohpow01ifeq (${ENABLE_SME_FOR_SWD},1)
984dc78e62dSjohpow01	ifeq (${ENABLE_SME_FOR_NS},0)
985dc78e62dSjohpow01                $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
986dc78e62dSjohpow01	endif
9870d122947SBoyan Karatotev	ifeq (${ENABLE_SVE_FOR_SWD},0)
9880d122947SBoyan Karatotev                $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
9890d122947SBoyan Karatotev	endif
990c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_SME_FOR_SWD)
991c5e1da83SJayanth Dodderi Chidanand
9923524d074SMadhukar Pappireddy# Enabling SVE for SWD requires enabling SVE for NWD due to ENABLE_FEAT
9933524d074SMadhukar Pappireddy# mechanism.
994dc78e62dSjohpow01ifeq (${ENABLE_SVE_FOR_SWD},1)
995dc78e62dSjohpow01    ifeq (${ENABLE_SVE_FOR_NS},0)
996dc78e62dSjohpow01        $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
997dc78e62dSjohpow01    endif
9983524d074SMadhukar Pappireddyendif
999dc78e62dSjohpow01
10003524d074SMadhukar Pappireddy# Enabling SVE for both the worlds typically requires the context
10013524d074SMadhukar Pappireddy# management of SVE registers. The only exception being SPMC at S-EL2.
10023524d074SMadhukar Pappireddyifeq (${ENABLE_SVE_FOR_SWD}, 1)
10033524d074SMadhukar Pappireddy    ifneq (${ENABLE_SVE_FOR_NS}, 0)
10043524d074SMadhukar Pappireddy        ifeq (${CTX_INCLUDE_SVE_REGS}-$(SPMD_SPM_AT_SEL2),0-0)
10053524d074SMadhukar Pappireddy            $(warning "ENABLE_SVE_FOR_SWD and ENABLE_SVE_FOR_NS together require CTX_INCLUDE_SVE_REGS")
10063524d074SMadhukar Pappireddy        endif
10073524d074SMadhukar Pappireddy    endif
10083524d074SMadhukar Pappireddyendif
10093524d074SMadhukar Pappireddy
10103524d074SMadhukar Pappireddy# Enabling SVE in either world while enabling CTX_INCLUDE_FPREGS requires
10113524d074SMadhukar Pappireddy# CTX_INCLUDE_SVE_REGS to be enabled due to architectural dependency between FP
10123524d074SMadhukar Pappireddy# and SVE registers.
10133524d074SMadhukar Pappireddyifeq (${CTX_INCLUDE_FPREGS}, 1)
10143524d074SMadhukar Pappireddy    ifneq (${ENABLE_SVE_FOR_NS},0)
10153524d074SMadhukar Pappireddy        ifeq (${CTX_INCLUDE_SVE_REGS},0)
10163524d074SMadhukar Pappireddy	    # Warning instead of error due to CI dependency on this
10173524d074SMadhukar Pappireddy            $(warning "CTX_INCLUDE_FPREGS and ENABLE_SVE_FOR_NS together require CTX_INCLUDE_SVE_REGS")
10183524d074SMadhukar Pappireddy            $(warning "Forced ENABLE_SVE_FOR_NS=0")
10193524d074SMadhukar Pappireddy	    override ENABLE_SVE_FOR_NS	:= 0
10203524d074SMadhukar Pappireddy        endif
10213524d074SMadhukar Pappireddy    endif
10223524d074SMadhukar Pappireddyendif #(CTX_INCLUDE_FPREGS)
10233524d074SMadhukar Pappireddy
10243524d074SMadhukar Pappireddy# SVE context management is only required if secure world has access to SVE/FP
10253524d074SMadhukar Pappireddy# functionality.
10263524d074SMadhukar Pappireddyifeq (${CTX_INCLUDE_SVE_REGS},1)
10273524d074SMadhukar Pappireddy    ifeq (${ENABLE_SVE_FOR_SWD},0)
10283524d074SMadhukar Pappireddy        $(error "CTX_INCLUDE_SVE_REGS requires ENABLE_SVE_FOR_SWD to also be enabled")
10293524d074SMadhukar Pappireddy    endif
10303524d074SMadhukar Pappireddyendif
10313524d074SMadhukar Pappireddy
10323524d074SMadhukar Pappireddy# SME cannot be used with CTX_INCLUDE_FPREGS since SPM does its own context
10333524d074SMadhukar Pappireddy# management including FPU registers.
1034dc78e62dSjohpow01ifeq (${CTX_INCLUDE_FPREGS},1)
103545007acdSJayanth Dodderi Chidanand    ifneq (${ENABLE_SME_FOR_NS},0)
1036dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1037dc78e62dSjohpow01    endif
1038c5e1da83SJayanth Dodderi Chidanandendif #(CTX_INCLUDE_FPREGS)
1039dc78e62dSjohpow01
104000e28874SManish V Badarkheifeq ($(DRTM_SUPPORT),1)
104100e28874SManish V Badarkhe        $(info DRTM_SUPPORT is an experimental feature)
104200e28874SManish V Badarkheendif
104300e28874SManish V Badarkhe
10448953568aSLevi Yunifeq (${HOB_LIST},1)
10458953568aSLevi Yun        $(warning HOB_LIST is an experimental feature)
10468953568aSLevi Yunendif
10478953568aSLevi Yun
10483ba2c151SRaymond Maoifeq (${TRANSFER_LIST},1)
10493ba2c151SRaymond Mao        $(info TRANSFER_LIST is an experimental feature)
10503ba2c151SRaymond Maoendif
10513ba2c151SRaymond Mao
1052274a69e7SChris Kayifeq (${ENABLE_RME},1)
1053274a69e7SChris Kay	ifneq (${SEPARATE_CODE_AND_RODATA},1)
1054274a69e7SChris Kay                $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1055274a69e7SChris Kay	endif
1056274a69e7SChris Kayendif
1057274a69e7SChris Kay
10585782b890SManish V Badarkheifeq ($(PSA_CRYPTO),1)
10595782b890SManish V Badarkhe        $(info PSA_CRYPTO is an experimental feature)
10605782b890SManish V Badarkheendif
10615782b890SManish V Badarkhe
106282222db8SManish V Badarkheifeq ($(DICE_PROTECTION_ENVIRONMENT),1)
106382222db8SManish V Badarkhe        $(info DICE_PROTECTION_ENVIRONMENT is an experimental feature)
106482222db8SManish V Badarkheendif
106582222db8SManish V Badarkhe
1066cf2c8a33SAntonio Nino Diaz################################################################################
106773c99d4eSJuan Castillo# Process platform overrideable behaviour
106873c99d4eSJuan Castillo################################################################################
10694f6ad66aSAchin Gupta
10705f24ce96SManish Pandeyifdef BL1_SOURCES
10715f24ce96SManish Pandey	NEED_BL1 := yes
1072c5e1da83SJayanth Dodderi Chidanandendif #(BL1_SOURCES)
10735f24ce96SManish Pandey
10745f24ce96SManish Pandeyifdef BL2_SOURCES
10755f24ce96SManish Pandey	NEED_BL2 := yes
10765f24ce96SManish Pandey
1077bd97f83aSJohn Tsichritzis	# Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1078bd97f83aSJohn Tsichritzis	# Certificate generation tools. This flag can be overridden by the platform.
1079cf2c8a33SAntonio Nino Diaz	ifdef EL3_PAYLOAD_BASE
1080cf2c8a33SAntonio Nino Diaz		# If booting an EL3 payload there is no need for a BL33 image
1081cf2c8a33SAntonio Nino Diaz		# in the FIP file.
10824c117f6cSSandrine Bailleux		NEED_BL33		:=	no
1083cf2c8a33SAntonio Nino Diaz	else
108468450a6dSAntonio Nino Diaz		ifdef PRELOADED_BL33_BASE
1085cf2c8a33SAntonio Nino Diaz			# If booting a BL33 preloaded image there is no need of
1086cf2c8a33SAntonio Nino Diaz			# another one in the FIP file.
1087cf2c8a33SAntonio Nino Diaz			NEED_BL33		:=	no
1088cf2c8a33SAntonio Nino Diaz		else
1089cf2c8a33SAntonio Nino Diaz			NEED_BL33		?=	yes
1090cf2c8a33SAntonio Nino Diaz		endif
10914c117f6cSSandrine Bailleux	endif
1092c5e1da83SJayanth Dodderi Chidanandendif #(BL2_SOURCES)
10936f971622SJuan Castillo
10945f24ce96SManish Pandeyifdef BL2U_SOURCES
10955f24ce96SManish Pandey	NEED_BL2U := yes
1096c5e1da83SJayanth Dodderi Chidanandendif #(BL2U_SOURCES)
10975f24ce96SManish Pandey
10984d045d0eSMasahiro Yamada# If SCP_BL2 is given, we always want FIP to include it.
10994d045d0eSMasahiro Yamadaifdef SCP_BL2
11004d045d0eSMasahiro Yamada	NEED_SCP_BL2		:=	yes
1101c5e1da83SJayanth Dodderi Chidanandendif #(SCP_BL2)
11024d045d0eSMasahiro Yamada
11035744e874SSoby Mathew# For AArch32, BL31 is not currently supported.
11045744e874SSoby Mathewifneq (${ARCH},aarch32)
11055744e874SSoby Mathew	ifdef BL31_SOURCES
1106c5e1da83SJayanth Dodderi Chidanand	# When booting an EL3 payload, there is no need to compile the BL31
1107c5e1da83SJayanth Dodderi Chidanand	# image nor put it in the FIP.
11085744e874SSoby Mathew		ifndef EL3_PAYLOAD_BASE
11095744e874SSoby Mathew			NEED_BL31 := yes
11105744e874SSoby Mathew		endif
11115744e874SSoby Mathew	endif
1112c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch64)
11135744e874SSoby Mathew
111473c99d4eSJuan Castillo# Process TBB related flags
11156f971622SJuan Castilloifneq (${GENERATE_COT},0)
111673c99d4eSJuan Castillo	# Common cert_create options
11176f971622SJuan Castillo	ifneq (${CREATE_KEYS},0)
11186f971622SJuan Castillo                $(eval CRT_ARGS += -n)
11190191262dSYatharth Kochar                $(eval FWU_CRT_ARGS += -n)
1120fd34e7baSJuan Castillo		ifneq (${SAVE_KEYS},0)
1121fd34e7baSJuan Castillo                        $(eval CRT_ARGS += -k)
11220191262dSYatharth Kochar                        $(eval FWU_CRT_ARGS += -k)
1123fd34e7baSJuan Castillo		endif
11246f971622SJuan Castillo	endif
112573c99d4eSJuan Castillo	# Include TBBR makefile (unless the platform indicates otherwise)
112673c99d4eSJuan Castillo	ifeq (${INCLUDE_TBBR_MK},1)
112773c99d4eSJuan Castillo                include make_helpers/tbbr/tbbr_tools.mk
112873c99d4eSJuan Castillo	endif
1129c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
11306f971622SJuan Castillo
11311c75d5dfSMasahiro Yamadaifneq (${FIP_ALIGN},0)
11321c75d5dfSMasahiro Yamada	FIP_ARGS += --align ${FIP_ALIGN}
1133c5e1da83SJayanth Dodderi Chidanandendif #(FIP_ALIGN)
11341c75d5dfSMasahiro Yamada
11355f24ce96SManish Pandeyifdef FDT_SOURCES
11365f24ce96SManish Pandey	NEED_FDT := yes
1137c5e1da83SJayanth Dodderi Chidanandendif #(FDT_SOURCES)
11385f24ce96SManish Pandey
113973c99d4eSJuan Castillo################################################################################
114046e5e035SMichalis Pappas# Include libraries' Makefile that are used in all BL
114146e5e035SMichalis Pappas################################################################################
114246e5e035SMichalis Pappas
114346e5e035SMichalis Pappasinclude lib/stack_protector/stack_protector.mk
114446e5e035SMichalis Pappas
114546e5e035SMichalis Pappas################################################################################
11468a86052dSSoby Mathew# Include BL specific makefiles
11478a86052dSSoby Mathew################################################################################
11485f24ce96SManish Pandey
11495f24ce96SManish Pandeyifeq (${NEED_BL1},yes)
11508a86052dSSoby Mathewinclude bl1/bl1.mk
11518a86052dSSoby Mathewendif
11528a86052dSSoby Mathew
11535f24ce96SManish Pandeyifeq (${NEED_BL2},yes)
11548a86052dSSoby Mathewinclude bl2/bl2.mk
11558a86052dSSoby Mathewendif
11568a86052dSSoby Mathew
11575f24ce96SManish Pandeyifeq (${NEED_BL2U},yes)
11588a86052dSSoby Mathewinclude bl2u/bl2u.mk
11598a86052dSSoby Mathewendif
11608a86052dSSoby Mathew
11615744e874SSoby Mathewifeq (${NEED_BL31},yes)
11628a86052dSSoby Mathewinclude bl31/bl31.mk
11638a86052dSSoby Mathewendif
116403b397a8SNishanth Menon
116573c99d4eSJuan Castillo################################################################################
116673c99d4eSJuan Castillo# Build options checks
116773c99d4eSJuan Castillo################################################################################
116873c99d4eSJuan Castillo
1169c5e1da83SJayanth Dodderi Chidanand# Boolean_Flags
1170327131c4SLeonardo Sandoval$(eval $(call assert_booleans,\
1171327131c4SLeonardo Sandoval    $(sort \
1172327131c4SLeonardo Sandoval	ALLOW_RO_XLAT_TABLES \
117346789a7cSBalint Dobszay	BL2_ENABLE_SP_LOAD \
1174327131c4SLeonardo Sandoval	COLD_BOOT_SINGLE_CPU \
1175327131c4SLeonardo Sandoval	CREATE_KEYS \
1176327131c4SLeonardo Sandoval	CTX_INCLUDE_AARCH32_REGS \
1177327131c4SLeonardo Sandoval	CTX_INCLUDE_FPREGS \
117842422622SMadhukar Pappireddy	CTX_INCLUDE_SVE_REGS \
1179327131c4SLeonardo Sandoval	CTX_INCLUDE_EL2_REGS \
11809acff28aSArvind Ram Prakash	CTX_INCLUDE_MPAM_REGS \
1181327131c4SLeonardo Sandoval	DEBUG \
1182327131c4SLeonardo Sandoval	DYN_DISABLE_AUTH \
1183327131c4SLeonardo Sandoval	EL3_EXCEPTION_HANDLING \
11841fd685a7SChris Kay	ENABLE_AMU_AUXILIARY_COUNTERS \
1185742ca230SChris Kay	ENABLE_AMU_FCONF \
1186873d4241Sjohpow01	AMU_RESTRICT_COUNTERS \
1187327131c4SLeonardo Sandoval	ENABLE_ASSERTIONS \
1188327131c4SLeonardo Sandoval	ENABLE_PIE \
1189327131c4SLeonardo Sandoval	ENABLE_PMF \
1190327131c4SLeonardo Sandoval	ENABLE_PSCI_STAT \
1191327131c4SLeonardo Sandoval	ENABLE_RUNTIME_INSTRUMENTATION \
1192dc78e62dSjohpow01	ENABLE_SME_FOR_SWD \
11930c5e7d1cSMax Shvetsov	ENABLE_SVE_FOR_SWD \
1194970a4a8dSManish Pandey	ENABLE_FEAT_RAS	\
1195f87e54f7SManish Pandey	FFH_SUPPORT	\
1196327131c4SLeonardo Sandoval	ERROR_DEPRECATED \
1197327131c4SLeonardo Sandoval	FAULT_INJECTION_SUPPORT \
1198327131c4SLeonardo Sandoval	GENERATE_COT \
1199327131c4SLeonardo Sandoval	GICV2_G0_FOR_EL3 \
120046cc41d5SManish Pandey	HANDLE_EA_EL3_FIRST_NS \
1201538516f5SBipin Ravi	HARDEN_SLS \
1202327131c4SLeonardo Sandoval	HW_ASSISTED_COHERENCY \
1203327131c4SLeonardo Sandoval	MEASURED_BOOT \
1204e7f1181fSTamas Ban	DICE_PROTECTION_ENVIRONMENT \
12056a88ec8bSRaghu Krishnamurthy	RMMD_ENABLE_EL3_TOKEN_SIGN \
120600e28874SManish V Badarkhe	DRTM_SUPPORT \
1207327131c4SLeonardo Sandoval	NS_TIMER_SWITCH \
1208327131c4SLeonardo Sandoval	OVERRIDE_LIBC \
1209327131c4SLeonardo Sandoval	PL011_GENERIC_UART \
1210327131c4SLeonardo Sandoval	PROGRAMMABLE_RESET_ADDRESS \
1211327131c4SLeonardo Sandoval	PSCI_EXTENDED_STATE_ID \
121264b4710bSWing Li	PSCI_OS_INIT_MODE \
12138db17052SBoyan Karatotev	ARCH_FEATURE_AVAILABILITY \
1214327131c4SLeonardo Sandoval	RESET_TO_BL31 \
1215327131c4SLeonardo Sandoval	SAVE_KEYS \
1216327131c4SLeonardo Sandoval	SEPARATE_CODE_AND_RODATA \
121796a8ed14SJiafei Pan	SEPARATE_BL2_NOLOAD_REGION \
1218327131c4SLeonardo Sandoval	SEPARATE_NOBITS_REGION \
121986acbbe2SYe Li	SEPARATE_RWDATA_REGION \
1220308ebfa1SMadhukar Pappireddy	SEPARATE_SIMD_SECTION \
1221327131c4SLeonardo Sandoval	SPIN_ON_BL1_EXIT \
1222327131c4SLeonardo Sandoval	SPM_MM \
12231d63ae4dSMarc Bonnici	SPMC_AT_EL3 \
1224801cd3c8SNishant Sharma	SPMC_AT_EL3_SEL0_SP \
1225327131c4SLeonardo Sandoval	SPMD_SPM_AT_SEL2 \
1226890b5088SRaghu Krishnamurthy	ENABLE_SPMD_LP \
12273ba2c151SRaymond Mao	TRANSFER_LIST \
1228327131c4SLeonardo Sandoval	TRUSTED_BOARD_BOOT \
1229327131c4SLeonardo Sandoval	USE_COHERENT_MEM \
1230327131c4SLeonardo Sandoval	USE_DEBUGFS \
1231327131c4SLeonardo Sandoval	ARM_IO_IN_DTB \
1232327131c4SLeonardo Sandoval	SDEI_IN_FCONF \
1233327131c4SLeonardo Sandoval	SEC_INT_DESC_IN_FCONF \
1234327131c4SLeonardo Sandoval	USE_ROMLIB \
1235327131c4SLeonardo Sandoval	USE_TBBR_DEFS \
1236327131c4SLeonardo Sandoval	WARMBOOT_ENABLE_DCACHE_EARLY \
123742d4d3baSArvind Ram Prakash	RESET_TO_BL2 \
1238327131c4SLeonardo Sandoval	BL2_IN_XIP_MEM \
1239327131c4SLeonardo Sandoval	BL2_INV_DCACHE \
1240327131c4SLeonardo Sandoval	USE_SPINLOCK_CAS \
1241327131c4SLeonardo Sandoval	ENCRYPT_BL31 \
1242327131c4SLeonardo Sandoval	ENCRYPT_BL32 \
1243327131c4SLeonardo Sandoval	ERRATA_SPECULATIVE_AT \
124400e8f79cSManish Pandey	RAS_TRAP_NS_ERR_REC_ACCESS \
1245327131c4SLeonardo Sandoval	COT_DESC_IN_DTB \
1246327131c4SLeonardo Sandoval	USE_SP804_TIMER \
1247396b339dSManish V Badarkhe	PSA_FWU_SUPPORT \
124811d05a77SSughosh Ganu	PSA_FWU_METADATA_FW_STORE_DESC \
124968120783SChris Kay	ENABLE_MPMM \
125068120783SChris Kay	ENABLE_MPMM_FCONF \
12516a0da736SJayanth Dodderi Chidanand	FEATURE_DETECTION \
12520b22e591SJayanth Dodderi Chidanand	TRNG_SUPPORT \
1253ffea3844SSona Mathew	ERRATA_ABI_SUPPORT \
1254ef63f5beSSona Mathew	ERRATA_NON_ARM_INTERCONNECT \
125504c7303bSOkash Khawaja	CONDITIONAL_CMO \
12565782b890SManish V Badarkhe	PSA_CRYPTO	\
125785bebe18SSandrine Bailleux	ENABLE_CONSOLE_GETC \
1258183329a5SArvind Ram Prakash	INIT_UNUSED_NS_EL2	\
1259bfef8b90SJuan Pablo Conde	PLATFORM_REPORT_CTX_MEM_USE \
1260ae770fedSYann Gautier	EARLY_CONSOLE \
1261f99a69c3SArvind Ram Prakash	PRESERVE_DSU_PMU_REGS \
12628953568aSLevi Yun	HOB_LIST \
1263327131c4SLeonardo Sandoval)))
126473c99d4eSJuan Castillo
1265c5e1da83SJayanth Dodderi Chidanand# Numeric_Flags
1266327131c4SLeonardo Sandoval$(eval $(call assert_numerics,\
1267327131c4SLeonardo Sandoval    $(sort \
1268327131c4SLeonardo Sandoval	ARM_ARCH_MAJOR \
1269327131c4SLeonardo Sandoval	ARM_ARCH_MINOR \
1270327131c4SLeonardo Sandoval	BRANCH_PROTECTION \
12716a0da736SJayanth Dodderi Chidanand	CTX_INCLUDE_PAUTH_REGS \
12726a0da736SJayanth Dodderi Chidanand	CTX_INCLUDE_NEVE_REGS \
12732bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT \
127483a4dae1SBoyan Karatotev	DISABLE_MTPMU \
12751298f2f1SJayanth Dodderi Chidanand	ENABLE_BRBE_FOR_NS \
127647c681b7SJayanth Dodderi Chidanand	ENABLE_TRBE_FOR_NS \
12776a0da736SJayanth Dodderi Chidanand	ENABLE_BTI \
12786a0da736SJayanth Dodderi Chidanand	ENABLE_PAUTH \
1279d23acc9eSAndre Przywara	ENABLE_FEAT_AMU \
12806a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_AMUv1p1 \
12816a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_CSV2_2 \
128230019d86SSona Mathew	ENABLE_FEAT_CSV2_3 \
128383271d5aSArvind Ram Prakash	ENABLE_FEAT_DEBUGV8P9 \
12846a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_DIT \
12856a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_ECV \
12866a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_FGT \
128733e6aaacSArvind Ram Prakash	ENABLE_FEAT_FGT2 \
1288a57e18e4SArvind Ram Prakash	ENABLE_FEAT_FPMR \
12896a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_HCX \
129019d52a83SAndre Przywara	ENABLE_FEAT_LS64_ACCDATA \
1291*6b8df7b9SArvind Ram Prakash	ENABLE_FEAT_MOPS \
12928e397889SGovindraj Raja	ENABLE_FEAT_MTE2 \
12936a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_PAN \
12946a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_RNG \
1295ff86e0b4SJuan Pablo Conde	ENABLE_FEAT_RNG_TRAP \
12966a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_SEL2 \
1297d3331603SMark Brown	ENABLE_FEAT_TCR2 \
12986d0433f0SJayanth Dodderi Chidanand	ENABLE_FEAT_THE \
12990e4daed2SGovindraj Raja	ENABLE_FEAT_SB \
1300062b6c6bSMark Brown	ENABLE_FEAT_S2PIE \
1301062b6c6bSMark Brown	ENABLE_FEAT_S1PIE \
1302062b6c6bSMark Brown	ENABLE_FEAT_S2POE \
1303062b6c6bSMark Brown	ENABLE_FEAT_S1POE \
13044ec4e545SJayanth Dodderi Chidanand	ENABLE_FEAT_SCTLR2 \
130530655136SGovindraj Raja	ENABLE_FEAT_D128 \
1306688ab57bSMark Brown	ENABLE_FEAT_GCS \
13076a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_VHE \
1308edebefbcSArvind Ram Prakash	ENABLE_FEAT_MPAM \
13096a0da736SJayanth Dodderi Chidanand	ENABLE_RME \
13106437a09aSAndre Przywara	ENABLE_SPE_FOR_NS \
1311603a0c6fSAndre Przywara	ENABLE_SYS_REG_TRACE_FOR_NS \
131245007acdSJayanth Dodderi Chidanand	ENABLE_SME_FOR_NS \
131303d3c0d7SJayanth Dodderi Chidanand	ENABLE_SME2_FOR_NS \
13142b0bc4e0SJayanth Dodderi Chidanand	ENABLE_SVE_FOR_NS \
13156a0da736SJayanth Dodderi Chidanand	ENABLE_TRF_FOR_NS \
1316327131c4SLeonardo Sandoval	FW_ENC_STATUS \
13175357f83dSManish V Badarkhe	NR_OF_FW_BANKS \
13185357f83dSManish V Badarkhe	NR_OF_IMAGES_IN_FW_BANK \
1319781d07a4SJayanth Dodderi Chidanand	TWED_DELAY \
1320781d07a4SJayanth Dodderi Chidanand	ENABLE_FEAT_TWED \
1321bebcf27fSMark Brown	SVE_VECTOR_LEN \
13220ed3be6fSVarun Wadekar	IMPDEF_SYSREG_TRAP \
1323327131c4SLeonardo Sandoval)))
1324c877b414SJeenu Viswambharan
1325aacff749SJustin Chadwellifdef KEY_SIZE
1326aacff749SJustin Chadwell        $(eval $(call assert_numeric,KEY_SIZE))
1327aacff749SJustin Chadwellendif
1328aacff749SJustin Chadwell
13291f461979SJustin Chadwellifeq ($(filter $(SANITIZE_UB), on off trap),)
13301f461979SJustin Chadwell        $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
13311f461979SJustin Chadwellendif
13321f461979SJustin Chadwell
133373c99d4eSJuan Castillo################################################################################
133473c99d4eSJuan Castillo# Add definitions to the cpp preprocessor based on the current build options.
133573c99d4eSJuan Castillo# This is done after including the platform specific makefile to allow the
133673c99d4eSJuan Castillo# platform to overwrite the default options
133773c99d4eSJuan Castillo################################################################################
133873c99d4eSJuan Castillo
1339327131c4SLeonardo Sandoval$(eval $(call add_defines,\
1340327131c4SLeonardo Sandoval    $(sort \
1341327131c4SLeonardo Sandoval	ALLOW_RO_XLAT_TABLES \
1342327131c4SLeonardo Sandoval	ARM_ARCH_MAJOR \
1343327131c4SLeonardo Sandoval	ARM_ARCH_MINOR \
134446789a7cSBalint Dobszay	BL2_ENABLE_SP_LOAD \
1345327131c4SLeonardo Sandoval	COLD_BOOT_SINGLE_CPU \
1346327131c4SLeonardo Sandoval	CTX_INCLUDE_AARCH32_REGS \
1347327131c4SLeonardo Sandoval	CTX_INCLUDE_FPREGS \
134842422622SMadhukar Pappireddy	CTX_INCLUDE_SVE_REGS \
1349327131c4SLeonardo Sandoval	CTX_INCLUDE_PAUTH_REGS \
13509acff28aSArvind Ram Prakash	CTX_INCLUDE_MPAM_REGS \
1351327131c4SLeonardo Sandoval	EL3_EXCEPTION_HANDLING \
1352327131c4SLeonardo Sandoval	CTX_INCLUDE_EL2_REGS \
1353062f8aafSArunachalam Ganapathy	CTX_INCLUDE_NEVE_REGS \
1354327131c4SLeonardo Sandoval	DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
13550063dd17SJavier Almansa Sobrino	DISABLE_MTPMU \
1356d23acc9eSAndre Przywara	ENABLE_FEAT_AMU \
13571fd685a7SChris Kay	ENABLE_AMU_AUXILIARY_COUNTERS \
1358742ca230SChris Kay	ENABLE_AMU_FCONF \
1359873d4241Sjohpow01	AMU_RESTRICT_COUNTERS \
1360327131c4SLeonardo Sandoval	ENABLE_ASSERTIONS \
1361327131c4SLeonardo Sandoval	ENABLE_BTI \
136283271d5aSArvind Ram Prakash	ENABLE_FEAT_DEBUGV8P9 \
1363edebefbcSArvind Ram Prakash	ENABLE_FEAT_MPAM \
1364327131c4SLeonardo Sandoval	ENABLE_PAUTH \
1365327131c4SLeonardo Sandoval	ENABLE_PIE \
1366327131c4SLeonardo Sandoval	ENABLE_PMF \
1367327131c4SLeonardo Sandoval	ENABLE_PSCI_STAT \
13685b18de09SZelalem Aweke	ENABLE_RME \
13696a88ec8bSRaghu Krishnamurthy	RMMD_ENABLE_EL3_TOKEN_SIGN \
1370327131c4SLeonardo Sandoval	ENABLE_RUNTIME_INSTRUMENTATION \
1371dc78e62dSjohpow01	ENABLE_SME_FOR_NS \
137203d3c0d7SJayanth Dodderi Chidanand	ENABLE_SME2_FOR_NS \
1373dc78e62dSjohpow01	ENABLE_SME_FOR_SWD \
137490118bb5SAndre Przywara	ENABLE_SPE_FOR_NS \
1375327131c4SLeonardo Sandoval	ENABLE_SVE_FOR_NS \
13760c5e7d1cSMax Shvetsov	ENABLE_SVE_FOR_SWD \
1377970a4a8dSManish Pandey	ENABLE_FEAT_RAS \
1378f87e54f7SManish Pandey	FFH_SUPPORT \
1379327131c4SLeonardo Sandoval	ENCRYPT_BL31 \
1380327131c4SLeonardo Sandoval	ENCRYPT_BL32 \
1381327131c4SLeonardo Sandoval	ERROR_DEPRECATED \
1382327131c4SLeonardo Sandoval	FAULT_INJECTION_SUPPORT \
1383327131c4SLeonardo Sandoval	GICV2_G0_FOR_EL3 \
138446cc41d5SManish Pandey	HANDLE_EA_EL3_FIRST_NS \
1385327131c4SLeonardo Sandoval	HW_ASSISTED_COHERENCY \
1386327131c4SLeonardo Sandoval	LOG_LEVEL \
1387327131c4SLeonardo Sandoval	MEASURED_BOOT \
1388e7f1181fSTamas Ban	DICE_PROTECTION_ENVIRONMENT \
138900e28874SManish V Badarkhe	DRTM_SUPPORT \
1390327131c4SLeonardo Sandoval	NS_TIMER_SWITCH \
1391327131c4SLeonardo Sandoval	PL011_GENERIC_UART \
1392327131c4SLeonardo Sandoval	PLAT_${PLAT} \
1393327131c4SLeonardo Sandoval	PROGRAMMABLE_RESET_ADDRESS \
1394327131c4SLeonardo Sandoval	PSCI_EXTENDED_STATE_ID \
139564b4710bSWing Li	PSCI_OS_INIT_MODE \
13968db17052SBoyan Karatotev	ARCH_FEATURE_AVAILABILITY \
1397327131c4SLeonardo Sandoval	RESET_TO_BL31 \
1398d766084fSAlexeiFedorov	RME_GPT_BITLOCK_BLOCK \
1399ec0088bbSAlexeiFedorov	RME_GPT_MAX_BLOCK \
1400327131c4SLeonardo Sandoval	SEPARATE_CODE_AND_RODATA \
140196a8ed14SJiafei Pan	SEPARATE_BL2_NOLOAD_REGION \
1402327131c4SLeonardo Sandoval	SEPARATE_NOBITS_REGION \
140386acbbe2SYe Li	SEPARATE_RWDATA_REGION \
1404308ebfa1SMadhukar Pappireddy	SEPARATE_SIMD_SECTION \
1405327131c4SLeonardo Sandoval	RECLAIM_INIT_CODE \
1406327131c4SLeonardo Sandoval	SPD_${SPD} \
1407327131c4SLeonardo Sandoval	SPIN_ON_BL1_EXIT \
1408327131c4SLeonardo Sandoval	SPM_MM \
14091d63ae4dSMarc Bonnici	SPMC_AT_EL3 \
1410801cd3c8SNishant Sharma	SPMC_AT_EL3_SEL0_SP \
1411327131c4SLeonardo Sandoval	SPMD_SPM_AT_SEL2 \
14123ba2c151SRaymond Mao	TRANSFER_LIST \
1413327131c4SLeonardo Sandoval	TRUSTED_BOARD_BOOT \
1414c9c56f6eSManish V Badarkhe	CRYPTO_SUPPORT \
14157dfb9911SJimmy Brisson	TRNG_SUPPORT \
1416ffea3844SSona Mathew	ERRATA_ABI_SUPPORT \
1417ef63f5beSSona Mathew	ERRATA_NON_ARM_INTERCONNECT \
1418327131c4SLeonardo Sandoval	USE_COHERENT_MEM \
1419327131c4SLeonardo Sandoval	USE_DEBUGFS \
1420327131c4SLeonardo Sandoval	ARM_IO_IN_DTB \
1421327131c4SLeonardo Sandoval	SDEI_IN_FCONF \
1422327131c4SLeonardo Sandoval	SEC_INT_DESC_IN_FCONF \
1423327131c4SLeonardo Sandoval	USE_ROMLIB \
1424327131c4SLeonardo Sandoval	USE_TBBR_DEFS \
1425327131c4SLeonardo Sandoval	WARMBOOT_ENABLE_DCACHE_EARLY \
142642d4d3baSArvind Ram Prakash	RESET_TO_BL2 \
142742d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	\
1428327131c4SLeonardo Sandoval	BL2_IN_XIP_MEM \
1429327131c4SLeonardo Sandoval	BL2_INV_DCACHE \
1430327131c4SLeonardo Sandoval	USE_SPINLOCK_CAS \
1431327131c4SLeonardo Sandoval	ERRATA_SPECULATIVE_AT \
143200e8f79cSManish Pandey	RAS_TRAP_NS_ERR_REC_ACCESS \
1433327131c4SLeonardo Sandoval	COT_DESC_IN_DTB \
1434327131c4SLeonardo Sandoval	USE_SP804_TIMER \
143512cd65e0STomas Pilar	ENABLE_FEAT_RNG \
1436ff86e0b4SJuan Pablo Conde	ENABLE_FEAT_RNG_TRAP \
14374e04478aSChris Kay	ENABLE_FEAT_SB \
14387d33ffe4SDaniel Boulby	ENABLE_FEAT_DIT \
14395357f83dSManish V Badarkhe	NR_OF_FW_BANKS \
14405357f83dSManish V Badarkhe	NR_OF_IMAGES_IN_FW_BANK \
1441396b339dSManish V Badarkhe	PSA_FWU_SUPPORT \
144211d05a77SSughosh Ganu	PSA_FWU_METADATA_FW_STORE_DESC \
1443744ad974Sjohpow01	ENABLE_BRBE_FOR_NS \
1444813524eaSManish V Badarkhe	ENABLE_TRBE_FOR_NS \
1445d4582d30SManish V Badarkhe	ENABLE_SYS_REG_TRACE_FOR_NS \
14468fcd3d96SManish V Badarkhe	ENABLE_TRF_FOR_NS \
1447cb4ec47bSjohpow01	ENABLE_FEAT_HCX \
144868120783SChris Kay	ENABLE_MPMM \
144968120783SChris Kay	ENABLE_MPMM_FCONF \
1450f74cb0beSJayanth Dodderi Chidanand	ENABLE_FEAT_FGT \
145133e6aaacSArvind Ram Prakash	ENABLE_FEAT_FGT2 \
1452a57e18e4SArvind Ram Prakash	ENABLE_FEAT_FPMR \
1453f74cb0beSJayanth Dodderi Chidanand	ENABLE_FEAT_ECV \
14546a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_AMUv1p1 \
14556a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_SEL2 \
14566a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_VHE \
14576a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_CSV2_2 \
145830019d86SSona Mathew	ENABLE_FEAT_CSV2_3 \
145919d52a83SAndre Przywara	ENABLE_FEAT_LS64_ACCDATA \
14606a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_PAN \
1461d3331603SMark Brown	ENABLE_FEAT_TCR2 \
14626d0433f0SJayanth Dodderi Chidanand	ENABLE_FEAT_THE \
1463062b6c6bSMark Brown	ENABLE_FEAT_S2PIE \
1464062b6c6bSMark Brown	ENABLE_FEAT_S1PIE \
1465062b6c6bSMark Brown	ENABLE_FEAT_S2POE \
1466062b6c6bSMark Brown	ENABLE_FEAT_S1POE \
14674ec4e545SJayanth Dodderi Chidanand	ENABLE_FEAT_SCTLR2 \
146830655136SGovindraj Raja	ENABLE_FEAT_D128 \
1469688ab57bSMark Brown	ENABLE_FEAT_GCS \
1470*6b8df7b9SArvind Ram Prakash	ENABLE_FEAT_MOPS \
14718e397889SGovindraj Raja	ENABLE_FEAT_MTE2 \
14726a0da736SJayanth Dodderi Chidanand	FEATURE_DETECTION \
1473781d07a4SJayanth Dodderi Chidanand	TWED_DELAY \
1474781d07a4SJayanth Dodderi Chidanand	ENABLE_FEAT_TWED \
147504c7303bSOkash Khawaja	CONDITIONAL_CMO \
14760ed3be6fSVarun Wadekar	IMPDEF_SYSREG_TRAP \
1477a8cf6faeSJayanth Dodderi Chidanand	SVE_VECTOR_LEN \
1478890b5088SRaghu Krishnamurthy	ENABLE_SPMD_LP \
14795782b890SManish V Badarkhe	PSA_CRYPTO	\
148085bebe18SSandrine Bailleux	ENABLE_CONSOLE_GETC \
1481183329a5SArvind Ram Prakash	INIT_UNUSED_NS_EL2	\
1482bfef8b90SJuan Pablo Conde	PLATFORM_REPORT_CTX_MEM_USE \
1483ae770fedSYann Gautier	EARLY_CONSOLE \
1484f99a69c3SArvind Ram Prakash	PRESERVE_DSU_PMU_REGS \
14858953568aSLevi Yun	HOB_LIST \
1486327131c4SLeonardo Sandoval)))
14872fae4b1eSJeenu Viswambharan
1488bfef8b90SJuan Pablo Condeifeq (${PLATFORM_REPORT_CTX_MEM_USE}, 1)
1489bfef8b90SJuan Pablo Condeifeq (${DEBUG}, 0)
1490bfef8b90SJuan Pablo Conde        $(warning "PLATFORM_REPORT_CTX_MEM_USE can be applied when DEBUG=1 only")
1491bfef8b90SJuan Pablo Conde        override PLATFORM_REPORT_CTX_MEM_USE := 0
1492bfef8b90SJuan Pablo Condeendif
1493bfef8b90SJuan Pablo Condeendif
1494bfef8b90SJuan Pablo Conde
14951f461979SJustin Chadwellifeq (${SANITIZE_UB},trap)
14961f461979SJustin Chadwell        $(eval $(call add_define,MONITOR_TRAPS))
1497c5e1da83SJayanth Dodderi Chidanandendif #(SANITIZE_UB)
14981f461979SJustin Chadwell
14994c117f6cSSandrine Bailleux# Define the EL3_PAYLOAD_BASE flag only if it is provided.
15004c117f6cSSandrine Bailleuxifdef EL3_PAYLOAD_BASE
15014c117f6cSSandrine Bailleux        $(eval $(call add_define,EL3_PAYLOAD_BASE))
1502cf2c8a33SAntonio Nino Diazelse
150368450a6dSAntonio Nino Diaz# Define the PRELOADED_BL33_BASE flag only if it is provided and
150468450a6dSAntonio Nino Diaz# EL3_PAYLOAD_BASE is not defined, as it has priority.
150568450a6dSAntonio Nino Diaz	ifdef PRELOADED_BL33_BASE
150668450a6dSAntonio Nino Diaz                $(eval $(call add_define,PRELOADED_BL33_BASE))
15074c117f6cSSandrine Bailleux	endif
1508c5e1da83SJayanth Dodderi Chidanandendif #(EL3_PAYLOAD_BASE)
150973c99d4eSJuan Castillo
1510209a60ccSSoby Mathew# Define the DYN_DISABLE_AUTH flag only if set.
1511209a60ccSSoby Mathewifeq (${DYN_DISABLE_AUTH},1)
1512209a60ccSSoby Mathew        $(eval $(call add_define,DYN_DISABLE_AUTH))
1513209a60ccSSoby Mathewendif
1514209a60ccSSoby Mathew
15158620bd0bSChris Kayifeq ($($(ARCH)-ld-id),arm-link)
1516c2ad38ceSVarun Wadekar        $(eval $(call add_define,USE_ARM_LINK))
1517c2ad38ceSVarun Wadekarendif
1518c2ad38ceSVarun Wadekar
1519ce2b1ec6SManish Pandey# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
1520ce2b1ec6SManish Pandeyifeq (${SPD},spmd)
1521c33ff198SOlivier Deprezifdef SP_LAYOUT_FILE
1522ce2b1ec6SManish Pandey	-include $(BUILD_PLAT)/sp_gen.mk
1523ce2b1ec6SManish Pandey	FIP_DEPS += sp
152407c44475SManish Pandey	CRT_DEPS += sp
1525ce2b1ec6SManish Pandey	NEED_SP_PKG := yes
1526ce2b1ec6SManish Pandeyelse
1527c33ff198SOlivier Deprez	ifeq (${SPMD_SPM_AT_SEL2},1)
1528c33ff198SOlivier Deprez                $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1529c33ff198SOlivier Deprez	endif
1530c5e1da83SJayanth Dodderi Chidanandendif #(SP_LAYOUT_FILE)
1531c5e1da83SJayanth Dodderi Chidanandendif #(SPD)
1532ce2b1ec6SManish Pandey
153373c99d4eSJuan Castillo################################################################################
153473c99d4eSJuan Castillo# Build targets
153573c99d4eSJuan Castillo################################################################################
153673c99d4eSJuan Castillo
15372329e22bSHarrison 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
153873c99d4eSJuan Castillo
153973c99d4eSJuan Castilloall: msg_start
154073c99d4eSJuan Castillo
154173c99d4eSJuan Castillomsg_start:
15427c4e1eeaSChris Kay	$(s)echo "Building ${PLAT}"
154373c99d4eSJuan Castillo
15447a24cba5SSoby Mathewifeq (${ERROR_DEPRECATED},0)
1545d5dfdeb6SJulius Werner# Check if deprecated declarations and cpp warnings should be treated as error or not.
15468620bd0bSChris Kayifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
1547c2ad38ceSVarun Wadekar    CPPFLAGS		+= 	-Wno-error=deprecated-declarations
1548c2ad38ceSVarun Wadekarelse
1549bc1a03c7SDan Handley    CPPFLAGS		+= 	-Wno-error=deprecated-declarations -Wno-error=cpp
15507a24cba5SSoby Mathewendif
1551c5e1da83SJayanth Dodderi Chidanandendif #(!ERROR_DEPRECATED)
15527a24cba5SSoby Mathew
155361f72a34SRoberto Vargas$(eval $(call MAKE_LIB,c))
15545fee0287SRoberto Vargas
155573c99d4eSJuan Castillo# Expand build macros for the different images
155673c99d4eSJuan Castilloifeq (${NEED_BL1},yes)
1557b34635a0SChris KayBL1_SOURCES := $(sort ${BL1_SOURCES})
1558434d0491SZelalem Aweke$(eval $(call MAKE_BL,bl1))
1559c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL1)
156073c99d4eSJuan Castillo
156173c99d4eSJuan Castilloifeq (${NEED_BL2},yes)
1562c5e1da83SJayanth Dodderi Chidanand
156342d4d3baSArvind Ram Prakashifeq (${RESET_TO_BL2}, 0)
1564c9b31ae8SRoberto VargasFIP_BL2_ARGS := tb-fw
1565c9b31ae8SRoberto Vargasendif
1566c9b31ae8SRoberto Vargas
1567eb1acfb6SChris KayBL2_SOURCES := $(sort ${BL2_SOURCES})
1568eb1acfb6SChris Kay
156933950dd8SMasahiro Yamada$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
1570434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
1571c5e1da83SJayanth Dodderi Chidanand
1572c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL2)
157373c99d4eSJuan Castillo
15744d045d0eSMasahiro Yamadaifeq (${NEED_SCP_BL2},yes)
157533950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
1576c5e1da83SJayanth Dodderi Chidanandendif #(NEED_SCP_BL2)
15774d045d0eSMasahiro Yamada
157873c99d4eSJuan Castilloifeq (${NEED_BL31},yes)
157973c99d4eSJuan CastilloBL31_SOURCES += ${SPD_SOURCES}
158026d1e0c3SMadhukar Pappireddy# Sort BL31 source files to remove duplicates
158126d1e0c3SMadhukar PappireddyBL31_SOURCES := $(sort ${BL31_SOURCES})
1582c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1583c6ba9b45SSumit Garg$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
1584434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
1585c6ba9b45SSumit Gargelse
158633950dd8SMasahiro Yamada$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
1587434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl31,soc-fw)))
1588c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
1589c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL31)
159073c99d4eSJuan Castillo
159170d1fc53SJuan Castillo# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
1592c939d13aSMasahiro Yamada# build system will call TOOL_ADD_IMG to print a warning message and abort the
159370d1fc53SJuan Castillo# process. Note that the dependency on BL32 applies to the FIP only.
159473c99d4eSJuan Castilloifeq (${NEED_BL32},yes)
159526d1e0c3SMadhukar Pappireddy# Sort BL32 source files to remove duplicates
159626d1e0c3SMadhukar PappireddyBL32_SOURCES := $(sort ${BL32_SOURCES})
15979cd15239SMasahiro YamadaBUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
15989cd15239SMasahiro Yamada
1599c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1600434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
1601c6ba9b45SSumit Garg	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1602c6ba9b45SSumit Gargelse
1603434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
160433950dd8SMasahiro Yamada	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
1605c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
1606c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL32)
160773c99d4eSJuan Castillo
16085b18de09SZelalem Aweke# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
16095b18de09SZelalem Aweke# needs to be built from RMM_SOURCES.
16105b18de09SZelalem Awekeifeq (${NEED_RMM},yes)
16115b18de09SZelalem Aweke# Sort RMM source files to remove duplicates
16125b18de09SZelalem AwekeRMM_SOURCES := $(sort ${RMM_SOURCES})
16135b18de09SZelalem AwekeBUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
16145b18de09SZelalem Aweke
16155b18de09SZelalem Aweke$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
16165b18de09SZelalem Aweke	 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1617c5e1da83SJayanth Dodderi Chidanandendif #(NEED_RMM)
16185b18de09SZelalem Aweke
161973c99d4eSJuan Castillo# Add the BL33 image if required by the platform
162073c99d4eSJuan Castilloifeq (${NEED_BL33},yes)
162133950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
1622c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL33)
1623db6071c9SJuan Castillo
16249003fa0bSYatharth Kocharifeq (${NEED_BL2U},yes)
162533950dd8SMasahiro Yamada$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
1626434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
1627c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL2U)
16289003fa0bSYatharth Kochar
162903b397a8SNishanth Menon# Expand build macros for the different images
163003b397a8SNishanth Menonifeq (${NEED_FDT},yes)
163103b397a8SNishanth Menon    $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
1632c5e1da83SJayanth Dodderi Chidanandendif #(NEED_FDT)
163303b397a8SNishanth Menon
1634ce2b1ec6SManish Pandey# Add Secure Partition packages
1635ce2b1ec6SManish Pandeyifeq (${NEED_SP_PKG},yes)
1636fd74ca0dSChris Kay$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | $$(@D)/
16377c4e1eeaSChris Kay	$(q)${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
1638822c7279SJ-Alvessp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
16397c4e1eeaSChris Kay	$(s)echo
16407c4e1eeaSChris Kay	$(s)echo "Built SP Images successfully"
16417c4e1eeaSChris Kay	$(s)echo
1642c5e1da83SJayanth Dodderi Chidanandendif #(NEED_SP_PKG)
1643ce2b1ec6SManish Pandey
164436eaaf37SIan Spraylocate-checkpatch:
164536eaaf37SIan Sprayifndef CHECKPATCH
164666079b04SEtienne Carriere	$(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
164736eaaf37SIan Sprayelse
164836eaaf37SIan Sprayifeq (,$(wildcard ${CHECKPATCH}))
164966079b04SEtienne Carriere	$(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
165036eaaf37SIan Sprayendif
1651c5e1da83SJayanth Dodderi Chidanandendif #(CHECKPATCH)
165236eaaf37SIan Spray
16534f6ad66aSAchin Guptaclean:
16547c4e1eeaSChris Kay	$(s)echo "  CLEAN"
1655f1477d4aSEvan Lloyd	$(call SHELL_REMOVE_DIR,${BUILD_PLAT})
165688a1cf1eSSami Mujawarifdef UNIX_MK
16577c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
165888a1cf1eSSami Mujawarelse
165988a1cf1eSSami Mujawar# Clear the MAKEFLAGS as we do not want
166088a1cf1eSSami Mujawar# to pass the gnumake flags to nmake.
16617c4e1eeaSChris Kay	$(q)set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean
1662c5e1da83SJayanth Dodderi Chidanandendif #(UNIX_MK)
16637c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
16647c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
16657c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
16664f6ad66aSAchin Gupta
1667eaaeece2SJames Morrisseyrealclean distclean:
16687c4e1eeaSChris Kay	$(s)echo "  REALCLEAN"
1669f1477d4aSEvan Lloyd	$(call SHELL_REMOVE_DIR,${BUILD_BASE})
1670f1477d4aSEvan Lloyd	$(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
167188a1cf1eSSami Mujawarifdef UNIX_MK
16727c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
167388a1cf1eSSami Mujawarelse
167488a1cf1eSSami Mujawar# Clear the MAKEFLAGS as we do not want
167588a1cf1eSSami Mujawar# to pass the gnumake flags to nmake.
16767c4e1eeaSChris Kay	$(q)set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean
1677c5e1da83SJayanth Dodderi Chidanandendif #(UNIX_MK)
16787c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
16797c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
16807c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
16814f6ad66aSAchin Gupta
168236eaaf37SIan Spraycheckcodebase:		locate-checkpatch
16837c4e1eeaSChris Kay	$(s)echo "  CHECKING STYLE"
16847c4e1eeaSChris Kay	$(q)if test -d .git ; then						\
16851ef35512SPaul Beesley		git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' |	\
16861a41e8c1SDan Handley		while read GIT_FILE ;					\
16871a41e8c1SDan Handley		do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ;	\
16881a41e8c1SDan Handley		done ;							\
168936eaaf37SIan Spray	else								\
16901a41e8c1SDan Handley		 find . -type f -not -iwholename "*.git*"		\
16911a41e8c1SDan Handley		 -not -iwholename "*build*"				\
16921a41e8c1SDan Handley		 -not -iwholename "*libfdt*"				\
169361f72a34SRoberto Vargas		 -not -iwholename "*libc*"				\
16941a41e8c1SDan Handley		 -not -iwholename "*docs*"				\
16951ef35512SPaul Beesley		 -not -iwholename "*.rst"				\
16961a41e8c1SDan Handley		 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ;	\
169736eaaf37SIan Spray	fi
169836eaaf37SIan Spray
169936eaaf37SIan Spraycheckpatch:		locate-checkpatch
17007c4e1eeaSChris Kay	$(s)echo "  CHECKING STYLE"
17017c4e1eeaSChris Kay	$(q)if test -n "${CHECKPATCH_OPTS}"; then				\
170202a76d5fSYann Gautier		echo "    with ${CHECKPATCH_OPTS} option(s)";		\
170302a76d5fSYann Gautier	fi
17047c4e1eeaSChris Kay	$(q)COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT});	\
170577a0a7f1SYann Gautier	for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`;	\
170677a0a7f1SYann Gautier	do								\
170751d28937SAntonio Nino Diaz		printf "\n[*] Checking style of '$$commit'\n\n";	\
17081a721748SYann Gautier		( git log --format=email "$$commit~..$$commit"		\
17091a721748SYann Gautier			-- ${CHECK_PATHS} ;				\
171051d28937SAntonio Nino Diaz		  git diff --format=email "$$commit~..$$commit"		\
17111a721748SYann Gautier			-- ${CHECK_PATHS}; ) |				\
171202a76d5fSYann Gautier			${CHECKPATCH}  ${CHECKPATCH_OPTS} - || true;	\
171351d28937SAntonio Nino Diaz	done
171436eaaf37SIan Spray
171573c99d4eSJuan Castillocerttool: ${CRTTOOL}
171673c99d4eSJuan Castillo
1717a9812206SPali Rohár${CRTTOOL}: FORCE
17187c4e1eeaSChris 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
17197c4e1eeaSChris Kay	$(s)echo
17207c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17217c4e1eeaSChris Kay	$(s)echo
17226f971622SJuan Castillo
17236f971622SJuan Castilloifneq (${GENERATE_COT},0)
172473c99d4eSJuan Castillocertificates: ${CRT_DEPS} ${CRTTOOL}
17257c4e1eeaSChris Kay	$(q)${CRTTOOL} ${CRT_ARGS}
17267c4e1eeaSChris Kay	$(s)echo
17277c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17287c4e1eeaSChris Kay	$(s)echo "Certificates can be found in ${BUILD_PLAT}"
17297c4e1eeaSChris Kay	$(s)echo
1730c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
173127713fb4SSoby Mathew
173273c99d4eSJuan Castillo${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
17334727fd13SPali Rohár	$(eval ${CHECK_FIP_CMD})
17347c4e1eeaSChris Kay	$(q)${FIPTOOL} create ${FIP_ARGS} $@
17357c4e1eeaSChris Kay	$(q)${FIPTOOL} info $@
17367c4e1eeaSChris Kay	$(s)echo
17377c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17387c4e1eeaSChris Kay	$(s)echo
1739f58ad36fSHarry Liebel
17400191262dSYatharth Kocharifneq (${GENERATE_COT},0)
17410191262dSYatharth Kocharfwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
17427c4e1eeaSChris Kay	$(q)${CRTTOOL} ${FWU_CRT_ARGS}
17437c4e1eeaSChris Kay	$(s)echo
17447c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17457c4e1eeaSChris Kay	$(s)echo "FWU certificates can be found in ${BUILD_PLAT}"
17467c4e1eeaSChris Kay	$(s)echo
1747c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
17480191262dSYatharth Kochar
17490191262dSYatharth Kochar${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
17504727fd13SPali Rohár	$(eval ${CHECK_FWU_FIP_CMD})
17517c4e1eeaSChris Kay	$(q)${FIPTOOL} create ${FWU_FIP_ARGS} $@
17527c4e1eeaSChris Kay	$(q)${FIPTOOL} info $@
17537c4e1eeaSChris Kay	$(s)echo
17547c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17557c4e1eeaSChris Kay	$(s)echo
17560191262dSYatharth Kochar
175773c99d4eSJuan Castillofiptool: ${FIPTOOL}
175873c99d4eSJuan Castillofip: ${BUILD_PLAT}/${FIP_NAME}
17590191262dSYatharth Kocharfwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
176073c99d4eSJuan Castillo
1761a9812206SPali Rohár${FIPTOOL}: FORCE
176288a1cf1eSSami Mujawarifdef UNIX_MK
176340469bf9SManish V Badarkhe	$(q)${MAKE} PLAT=${PLAT} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} --no-print-directory -C ${FIPTOOLPATH} all
176488a1cf1eSSami Mujawarelse
176588a1cf1eSSami Mujawar# Clear the MAKEFLAGS as we do not want
176688a1cf1eSSami Mujawar# to pass the gnumake flags to nmake.
17677c4e1eeaSChris Kay	$(q)set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
1768c5e1da83SJayanth Dodderi Chidanandendif #(UNIX_MK)
1769f58ad36fSHarry Liebel
1770e4a070e3SManish V Badarkhe$(BUILD_PLAT)/romlib/romlib.bin $(BUILD_PLAT)/lib/libwrappers.a $&: $(BUILD_PLAT)/lib/libfdt.a $(BUILD_PLAT)/lib/libc.a $(CRYPTO_LIB)
1771e4a070e3SManish 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
17725accce5bSRoberto Vargas
1773cfe83910SLouis Mayencourtmemmap: all
1774af5b49e9SHarrison Mutaiifdef UNIX_MK
17757c4e1eeaSChris Kay	$(q)PYTHONPATH=${CURDIR}/tools/memory \
1776af5b49e9SHarrison Mutai		${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1777af5b49e9SHarrison Mutaielse
17787c4e1eeaSChris Kay	$(q)set PYTHONPATH=${CURDIR}/tools/memory && \
1779af5b49e9SHarrison Mutai		${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1780af5b49e9SHarrison Mutaiendif
1781cfe83910SLouis Mayencourt
17822329e22bSHarrison Mutaitl: ${BUILD_PLAT}/tl.bin
17832329e22bSHarrison Mutai${BUILD_PLAT}/tl.bin: ${HW_CONFIG}
1784d2867397SChris Kay	$(if $(host-poetry),$(q)poetry -q install)
1785d2867397SChris Kay	$(q)$(if $(host-poetry),poetry run )tlc create --fdt $< -s ${FW_HANDOFF_SIZE} $@
17862329e22bSHarrison Mutai
17876de32378SMadhukar Pappireddydoc:
17887c4e1eeaSChris Kay	$(s)echo "  BUILD DOCUMENTATION"
17897c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${DOCS_PATH} html
17906de32378SMadhukar Pappireddy
179190aa901fSSumit Gargenctool: ${ENCTOOL}
179290aa901fSSumit Garg
1793a9812206SPali Rohár${ENCTOOL}: FORCE
17947c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} --no-print-directory -C ${ENCTOOLPATH} all
17957c4e1eeaSChris Kay	$(s)echo
17967c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17977c4e1eeaSChris Kay	$(s)echo
179890aa901fSSumit Garg
179935fab8c9SJoakim Bechcscope:
18007c4e1eeaSChris Kay	$(s)echo "  CSCOPE"
18017c4e1eeaSChris Kay	$(q)find ${CURDIR} -name "*.[chsS]" > cscope.files
18027c4e1eeaSChris Kay	$(q)cscope -b -q -k
180335fab8c9SJoakim Bech
180472ee3314SRyan Harkinhelp:
18057c4e1eeaSChris Kay	$(s)echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
18067c4e1eeaSChris Kay	$(s)echo ""
18077c4e1eeaSChris Kay	$(s)echo "PLAT is used to specify which platform you wish to build."
18087c4e1eeaSChris Kay	$(s)echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
18097c4e1eeaSChris Kay	$(s)echo ""
18107c4e1eeaSChris Kay	$(s)echo "platform = ${PLATFORM_LIST}"
18117c4e1eeaSChris Kay	$(s)echo ""
18127c4e1eeaSChris Kay	$(s)echo "Please refer to the User Guide for a list of all supported options."
18137c4e1eeaSChris Kay	$(s)echo "Note that the build system doesn't track dependencies for build "
18147c4e1eeaSChris Kay	$(s)echo "options. Therefore, if any of the build options are changed "
18157c4e1eeaSChris Kay	$(s)echo "from a previous build, a clean build must be performed."
18167c4e1eeaSChris Kay	$(s)echo ""
18177c4e1eeaSChris Kay	$(s)echo "Supported Targets:"
18187c4e1eeaSChris Kay	$(s)echo "  all            Build all individual bootloader binaries"
18197c4e1eeaSChris Kay	$(s)echo "  bl1            Build the BL1 binary"
18207c4e1eeaSChris Kay	$(s)echo "  bl2            Build the BL2 binary"
18217c4e1eeaSChris Kay	$(s)echo "  bl2u           Build the BL2U binary"
18227c4e1eeaSChris Kay	$(s)echo "  bl31           Build the BL31 binary"
18237c4e1eeaSChris Kay	$(s)echo "  bl32           Build the BL32 binary. If ARCH=aarch32, then "
18247c4e1eeaSChris Kay	$(s)echo "                 this builds secure payload specified by AARCH32_SP"
18257c4e1eeaSChris Kay	$(s)echo "  certificates   Build the certificates (requires 'GENERATE_COT=1')"
18267c4e1eeaSChris Kay	$(s)echo "  fip            Build the Firmware Image Package (FIP)"
18277c4e1eeaSChris Kay	$(s)echo "  fwu_fip        Build the FWU Firmware Image Package (FIP)"
18287c4e1eeaSChris Kay	$(s)echo "  checkcodebase  Check the coding style of the entire source tree"
18297c4e1eeaSChris Kay	$(s)echo "  checkpatch     Check the coding style on changes in the current"
18307c4e1eeaSChris Kay	$(s)echo "                 branch against BASE_COMMIT (default origin/master)"
18317c4e1eeaSChris Kay	$(s)echo "  clean          Clean the build for the selected platform"
18327c4e1eeaSChris Kay	$(s)echo "  cscope         Generate cscope index"
18337c4e1eeaSChris Kay	$(s)echo "  distclean      Remove all build artifacts for all platforms"
18347c4e1eeaSChris Kay	$(s)echo "  certtool       Build the Certificate generation tool"
18357c4e1eeaSChris Kay	$(s)echo "  enctool        Build the Firmware encryption tool"
18367c4e1eeaSChris Kay	$(s)echo "  fiptool        Build the Firmware Image Package (FIP) creation tool"
18377c4e1eeaSChris Kay	$(s)echo "  sp             Build the Secure Partition Packages"
18387c4e1eeaSChris Kay	$(s)echo "  sptool         Build the Secure Partition Package creation tool"
18397c4e1eeaSChris Kay	$(s)echo "  dtbs           Build the Device Tree Blobs (if required for the platform)"
18407c4e1eeaSChris Kay	$(s)echo "  memmap         Print the memory map of the built binaries"
18417c4e1eeaSChris Kay	$(s)echo "  doc            Build html based documentation using Sphinx tool"
18427c4e1eeaSChris Kay	$(s)echo ""
18437c4e1eeaSChris Kay	$(s)echo "Note: most build targets require PLAT to be set to a specific platform."
18447c4e1eeaSChris Kay	$(s)echo ""
18457c4e1eeaSChris Kay	$(s)echo "example: build all targets for the FVP platform:"
18467c4e1eeaSChris Kay	$(s)echo "  CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
1847a9812206SPali Rohár
1848a9812206SPali Rohár.PHONY: FORCE
1849a9812206SPali RohárFORCE:;
1850