xref: /rk3399_ARM-atf/Makefile (revision ee0c5b8cd84bc1c82f87c151a1f701c5682b72e1)
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		\
286*ee0c5b8cSBoyan 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################################################################################
517f5211420SGovindraj Raja# Process BRANCH_PROTECTION value and set
518f5211420SGovindraj Raja# Pointer Authentication and Branch Target Identification flags
519f5211420SGovindraj Raja################################################################################
520f5211420SGovindraj Rajaifeq (${BRANCH_PROTECTION},0)
521f5211420SGovindraj Raja	# Default value turns off all types of branch protection
522f5211420SGovindraj Raja	BP_OPTION := none
523f5211420SGovindraj Rajaelse ifneq (${ARCH},aarch64)
524f5211420SGovindraj Raja        $(error BRANCH_PROTECTION requires AArch64)
525f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},1)
526f5211420SGovindraj Raja	# Enables all types of branch protection features
527f5211420SGovindraj Raja	BP_OPTION := standard
528f5211420SGovindraj Raja	ENABLE_BTI := 1
529f5211420SGovindraj Raja	ENABLE_PAUTH := 1
530f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},2)
531f5211420SGovindraj Raja	# Return address signing to its standard level
532f5211420SGovindraj Raja	BP_OPTION := pac-ret
533f5211420SGovindraj Raja	ENABLE_PAUTH := 1
534f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},3)
535f5211420SGovindraj Raja	# Extend the signing to include leaf functions
536f5211420SGovindraj Raja	BP_OPTION := pac-ret+leaf
537f5211420SGovindraj Raja	ENABLE_PAUTH := 1
538f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},4)
539f5211420SGovindraj Raja	# Turn on branch target identification mechanism
540f5211420SGovindraj Raja	BP_OPTION := bti
541f5211420SGovindraj Raja	ENABLE_BTI := 1
542f5211420SGovindraj Rajaelse
543f5211420SGovindraj Raja        $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
544f5211420SGovindraj Rajaendif #(BRANCH_PROTECTION)
545f5211420SGovindraj Raja
546f5211420SGovindraj Rajaifeq ($(ENABLE_PAUTH),1)
547f5211420SGovindraj Raja	CTX_INCLUDE_PAUTH_REGS := 1
548f5211420SGovindraj Rajaendif
549f5211420SGovindraj Rajaifneq (${BP_OPTION},none)
550f5211420SGovindraj Raja	TF_CFLAGS_aarch64	+=	-mbranch-protection=${BP_OPTION}
551f5211420SGovindraj Rajaendif #(BP_OPTION)
552f5211420SGovindraj Raja
553f5211420SGovindraj Raja# Pointer Authentication sources
554f5211420SGovindraj Rajaifeq (${ENABLE_PAUTH}, 1)
555f5211420SGovindraj Raja# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
556f5211420SGovindraj Raja# Pauth support. As it's not secure, it must be reimplemented for real platforms
557f5211420SGovindraj Raja	BL_COMMON_SOURCES	+=	lib/extensions/pauth/pauth_helpers.S
558f5211420SGovindraj Rajaendif
559f5211420SGovindraj Raja
5603547270fSGovindraj Raja################################################################################
5613547270fSGovindraj Raja# Include the platform specific Makefile after the SPD Makefile (the platform
5623547270fSGovindraj Raja# makefile may use all previous definitions in this file)
5633547270fSGovindraj Raja################################################################################
5643547270fSGovindraj Rajainclude ${PLAT_MAKEFILE_FULL}
5653547270fSGovindraj 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 doesn't support PIE
603f5211420SGovindraj Raja	ifneq (${ENABLE_PIE},0)
604f5211420SGovindraj Raja                $(error ENABLE_RME does not support PIE)
605f5211420SGovindraj Raja	endif
606f5211420SGovindraj Raja
607f5211420SGovindraj Raja	# RME requires AARCH64
608f5211420SGovindraj Raja	ifneq (${ARCH},aarch64)
609f5211420SGovindraj Raja                $(error ENABLE_RME requires AArch64)
610f5211420SGovindraj Raja	endif
611f5211420SGovindraj Raja
612f5211420SGovindraj Raja	# RME requires el2 context to be saved for now.
613f5211420SGovindraj Raja	CTX_INCLUDE_EL2_REGS := 1
614f5211420SGovindraj Raja	CTX_INCLUDE_AARCH32_REGS := 0
615f5211420SGovindraj Raja	CTX_INCLUDE_PAUTH_REGS := 1
616f5211420SGovindraj Raja
617f5211420SGovindraj Raja	# RME enables CSV2_2 extension by default.
618f5211420SGovindraj Raja	ENABLE_FEAT_CSV2_2 = 1
619f5211420SGovindraj Rajaendif #(FEAT_RME)
620f5211420SGovindraj Raja
621f5211420SGovindraj Raja################################################################################
6225b18de09SZelalem Aweke# Include rmmd Makefile if RME is enabled
6235b18de09SZelalem Aweke################################################################################
6245b18de09SZelalem Awekeifneq (${ENABLE_RME},0)
6255b18de09SZelalem Aweke	ifneq (${ARCH},aarch64)
6265b18de09SZelalem Aweke                $(error ENABLE_RME requires AArch64)
6275b18de09SZelalem Aweke	endif
6281d63ae4dSMarc Bonnici	ifeq ($(SPMC_AT_EL3),1)
6291d63ae4dSMarc Bonnici                $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
6301d63ae4dSMarc Bonnici	endif
631c5e1da83SJayanth Dodderi Chidanand
6324fba2e1fSBoyan Karatotev	ifneq (${SPD}, none)
6334fba2e1fSBoyan Karatotev		ifneq (${SPD}, spmd)
6344fba2e1fSBoyan Karatotev                        $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
6354fba2e1fSBoyan Karatotev		endif
6364fba2e1fSBoyan Karatotev	endif
6375b18de09SZelalem Awekeinclude services/std_svc/rmmd/rmmd.mk
6385b18de09SZelalem Aweke$(warning "RME is an experimental feature")
6395b18de09SZelalem Awekeendif
6405b18de09SZelalem Aweke
6413547270fSGovindraj Rajaifeq (${CTX_INCLUDE_EL2_REGS}, 1)
6423547270fSGovindraj Raja	ifeq (${SPD},none)
6433547270fSGovindraj Raja		ifeq (${ENABLE_RME},0)
6443547270fSGovindraj Raja                        $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
6453547270fSGovindraj Raja                        or RME is enabled)
6463547270fSGovindraj Raja		endif
6473547270fSGovindraj Raja	endif
6483547270fSGovindraj Rajaendif
6490f21c547SJuan Castillo
6507794d6c8SGovindraj Raja################################################################################
65130655136SGovindraj Raja# Make 128-Bit sysreg read/writes availabe when FEAT_D128 is enabled.
65230655136SGovindraj Raja################################################################################
65330655136SGovindraj Rajaifneq (${ENABLE_FEAT_D128}, 0)
65430655136SGovindraj Raja        BL_COMMON_SOURCES       +=      lib/extensions/sysreg128/sysreg128.S
65530655136SGovindraj Rajaendif
65630655136SGovindraj Raja
65730655136SGovindraj Raja################################################################################
6587794d6c8SGovindraj Raja# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
6597794d6c8SGovindraj Raja# up with appropriate march values for compiler.
6607794d6c8SGovindraj Raja################################################################################
6617794d6c8SGovindraj Rajainclude ${MAKE_HELPERS_DIRECTORY}march.mk
6627794d6c8SGovindraj Raja
6637794d6c8SGovindraj RajaTF_CFLAGS   +=	$(march-directive)
6647275ac2aSGovindraj RajaASFLAGS		+=	$(march-directive)
6657794d6c8SGovindraj Raja
66642d4d3baSArvind Ram Prakash# This internal flag is common option which is set to 1 for scenarios
66742d4d3baSArvind Ram Prakash# when the BL2 is running in EL3 level. This occurs in two scenarios -
66842d4d3baSArvind Ram Prakash# 4 world system running BL2 at EL3 and two world system without BL1 running
66942d4d3baSArvind Ram Prakash# BL2 in EL3
67042d4d3baSArvind Ram Prakash
67142d4d3baSArvind Ram Prakashifeq (${RESET_TO_BL2},1)
67242d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	1
67342d4d3baSArvind Ram Prakash	ifeq (${ENABLE_RME},1)
674c5e1da83SJayanth Dodderi Chidanand                $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
675c5e1da83SJayanth Dodderi Chidanand                supported at the moment.)
67642d4d3baSArvind Ram Prakash	endif
67742d4d3baSArvind Ram Prakashelse ifeq (${ENABLE_RME},1)
67842d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	1
67942d4d3baSArvind Ram Prakashelse
68042d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	0
68142d4d3baSArvind Ram Prakashendif
68242d4d3baSArvind Ram Prakash
683f87e54f7SManish Pandey# This internal flag is set to 1 when Firmware First handling of External aborts
684f87e54f7SManish Pandey# is required by lowe ELs. Currently only NS requires this support.
685f87e54f7SManish Pandeyifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
686f87e54f7SManish Pandey	FFH_SUPPORT := 1
687f87e54f7SManish Pandeyelse
688f87e54f7SManish Pandey	FFH_SUPPORT := 0
689f87e54f7SManish Pandeyendif
690f87e54f7SManish Pandey
69126e63c44SEtienne Carriereifeq (${ARM_ARCH_MAJOR},7)
69226e63c44SEtienne Carriereinclude make_helpers/armv7-a-cpus.mk
69326e63c44SEtienne Carriereendif
69426e63c44SEtienne Carriere
6953bd17c0fSSoby MathewPIE_FOUND		:=	$(findstring --enable-default-pie,${GCC_V_OUTPUT})
6963bd17c0fSSoby Mathewifneq ($(PIE_FOUND),)
6973bd17c0fSSoby Mathew	TF_CFLAGS	+=	-fno-PIE
6988620bd0bSChris Kayifeq ($($(ARCH)-ld-id),gnu-gcc)
6997b592418SSamuel Holland	TF_LDFLAGS	+=	-no-pie
7007b592418SSamuel Hollandendif
701c5e1da83SJayanth Dodderi Chidanandendif #(PIE_FOUND)
702320920c1SMasahiro Yamada
7038620bd0bSChris Kayifeq ($($(ARCH)-ld-id),gnu-gcc)
704320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-Wl,-pie -Wl,--no-dynamic-linker
705320920c1SMasahiro Yamadaelse
706320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-pie --no-dynamic-linker
707320920c1SMasahiro Yamadaendif
708320920c1SMasahiro Yamada
709320920c1SMasahiro Yamadaifeq ($(ENABLE_PIE),1)
71042d4d3baSArvind Ram Prakash	ifeq ($(RESET_TO_BL2),1)
71169af7fcfSMasahiro Yamada		ifneq ($(BL2_IN_XIP_MEM),1)
712966660ecSChris Kay			BL2_CPPFLAGS	+=	-fpie
71369af7fcfSMasahiro Yamada			BL2_CFLAGS	+=	-fpie
71469af7fcfSMasahiro Yamada			BL2_LDFLAGS	+=	$(PIE_LDFLAGS)
715c5e1da83SJayanth Dodderi Chidanand		endif #(BL2_IN_XIP_MEM)
716c5e1da83SJayanth Dodderi Chidanand	endif #(RESET_TO_BL2)
717966660ecSChris Kay	BL31_CPPFLAGS	+=	-fpie
718320920c1SMasahiro Yamada	BL31_CFLAGS 	+=	-fpie
719320920c1SMasahiro Yamada	BL31_LDFLAGS	+=	$(PIE_LDFLAGS)
720966660ecSChris Kay
721966660ecSChris Kay	BL32_CPPFLAGS	+=	-fpie
722d974301dSMasahiro Yamada	BL32_CFLAGS	+=	-fpie
723d974301dSMasahiro Yamada	BL32_LDFLAGS	+=	$(PIE_LDFLAGS)
724c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_PIE)
7253bd17c0fSSoby Mathew
726007433d8SBoyan KaratotevBL1_CPPFLAGS  += -DREPORT_ERRATA=${DEBUG}
727007433d8SBoyan KaratotevBL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
728007433d8SBoyan KaratotevBL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
729007433d8SBoyan Karatotev
7309cefb4b1SMasahiro YamadaBL1_CPPFLAGS += -DIMAGE_AT_EL3
73142d4d3baSArvind Ram Prakashifeq ($(RESET_TO_BL2),1)
7329cefb4b1SMasahiro Yamada	BL2_CPPFLAGS += -DIMAGE_AT_EL3
733d5e97a1dSMasahiro Yamadaelse
7349cefb4b1SMasahiro Yamada	BL2_CPPFLAGS += -DIMAGE_AT_EL1
735c5e1da83SJayanth Dodderi Chidanandendif #(RESET_TO_BL2)
736007433d8SBoyan Karatotev
737007433d8SBoyan Karatotevifeq (${ARCH},aarch64)
7389cefb4b1SMasahiro Yamada	BL2U_CPPFLAGS += -DIMAGE_AT_EL1
7399cefb4b1SMasahiro Yamada	BL31_CPPFLAGS += -DIMAGE_AT_EL3
7409cefb4b1SMasahiro Yamada	BL32_CPPFLAGS += -DIMAGE_AT_EL1
741007433d8SBoyan Karatotevelse
742007433d8SBoyan Karatotev	BL32_CPPFLAGS += -DIMAGE_AT_EL3
743d5e97a1dSMasahiro Yamadaendif
744d5e97a1dSMasahiro Yamada
74554035fc4SSandrine Bailleux# Include the CPU specific operations makefile, which provides default
74654035fc4SSandrine Bailleux# values for all CPU errata workarounds and CPU specific optimisations.
74754035fc4SSandrine Bailleux# This can be overridden by the platform.
74873c99d4eSJuan Castilloinclude lib/cpus/cpu-ops.mk
7494f6ad66aSAchin Gupta
750a4409008Sdp-arm################################################################################
751a4409008Sdp-arm# Build `AARCH32_SP` as BL32 image for AArch32
752a4409008Sdp-arm################################################################################
753c5e1da83SJayanth Dodderi Chidanandifeq (${ARCH},aarch32)
754c5e1da83SJayanth Dodderi Chidanand        NEED_BL32 := yes
755c5e1da83SJayanth Dodderi Chidanand
756a4409008Sdp-arm        ifneq (${AARCH32_SP},none)
757a4409008Sdp-arm        # We expect to locate an sp.mk under the specified AARCH32_SP directory
758a4409008Sdp-arm		AARCH32_SP_MAKE	:=	$(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
759a4409008Sdp-arm
760a4409008Sdp-arm                ifeq (${AARCH32_SP_MAKE},)
761a4409008Sdp-arm                        $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
762a4409008Sdp-arm                endif
763a4409008Sdp-arm                $(info Including ${AARCH32_SP_MAKE})
764a4409008Sdp-arm                include ${AARCH32_SP_MAKE}
765a4409008Sdp-arm        endif
766c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch32)
7674f6ad66aSAchin Gupta
76873c99d4eSJuan Castillo################################################################################
76977f1f7a1SVarun Wadekar# Include libc if not overridden
77077f1f7a1SVarun Wadekar################################################################################
77177f1f7a1SVarun Wadekarifeq (${OVERRIDE_LIBC},0)
77277f1f7a1SVarun Wadekarinclude lib/libc/libc.mk
77377f1f7a1SVarun Wadekarendif
77477f1f7a1SVarun Wadekar
77577f1f7a1SVarun Wadekar################################################################################
776c5e1da83SJayanth Dodderi Chidanand# Check incompatible options and dependencies
777cf2c8a33SAntonio Nino Diaz################################################################################
778cf2c8a33SAntonio Nino Diaz
779c5e1da83SJayanth Dodderi Chidanand# USE_DEBUGFS experimental feature recommended only in debug builds
780c5e1da83SJayanth Dodderi Chidanandifeq (${USE_DEBUGFS},1)
781c5e1da83SJayanth Dodderi Chidanand        ifeq (${DEBUG},1)
782c5e1da83SJayanth Dodderi Chidanand                $(warning DEBUGFS experimental feature is enabled.)
783c5e1da83SJayanth Dodderi Chidanand        else
784c5e1da83SJayanth Dodderi Chidanand                $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
785c5e1da83SJayanth Dodderi Chidanand        endif
786c5e1da83SJayanth Dodderi Chidanandendif #(USE_DEBUGFS)
787c5e1da83SJayanth Dodderi Chidanand
788c5e1da83SJayanth Dodderi Chidanand# USE_SPINLOCK_CAS requires AArch64 build
789c5e1da83SJayanth Dodderi Chidanandifeq (${USE_SPINLOCK_CAS},1)
790c5e1da83SJayanth Dodderi Chidanand        ifneq (${ARCH},aarch64)
791c5e1da83SJayanth Dodderi Chidanand               $(error USE_SPINLOCK_CAS requires AArch64)
792c5e1da83SJayanth Dodderi Chidanand        endif
793c5e1da83SJayanth Dodderi Chidanandendif #(USE_SPINLOCK_CAS)
794c5e1da83SJayanth Dodderi Chidanand
795c5e1da83SJayanth Dodderi Chidanand# The cert_create tool cannot generate certificates individually, so we use the
796c5e1da83SJayanth Dodderi Chidanand# target 'certificates' to create them all
797c5e1da83SJayanth Dodderi Chidanandifneq (${GENERATE_COT},0)
798c5e1da83SJayanth Dodderi Chidanand        FIP_DEPS += certificates
799c5e1da83SJayanth Dodderi Chidanand        FWU_FIP_DEPS += fwu_certificates
800c5e1da83SJayanth Dodderi Chidanandendif
801c5e1da83SJayanth Dodderi Chidanand
802c5e1da83SJayanth Dodderi Chidanandifneq (${DECRYPTION_SUPPORT},none)
803c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -f ${FW_ENC_STATUS}
804c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -k ${ENC_KEY}
805c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -n ${ENC_NONCE}
806c5e1da83SJayanth Dodderi Chidanand	FIP_DEPS += enctool
807c5e1da83SJayanth Dodderi Chidanand	FWU_FIP_DEPS += enctool
808c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
809c5e1da83SJayanth Dodderi Chidanand
810cf2c8a33SAntonio Nino Diazifdef EL3_PAYLOAD_BASE
81168450a6dSAntonio Nino Diaz	ifdef PRELOADED_BL33_BASE
81268450a6dSAntonio Nino Diaz                $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
81368450a6dSAntonio Nino Diaz		incompatible build options. EL3_PAYLOAD_BASE has priority.")
814cf2c8a33SAntonio Nino Diaz	endif
81576580f3dSQixiang Xu	ifneq (${GENERATE_COT},0)
816c5e1da83SJayanth Dodderi Chidanand                $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
817c5e1da83SJayanth Dodderi Chidanand                build options.")
81876580f3dSQixiang Xu	endif
81976580f3dSQixiang Xu	ifneq (${TRUSTED_BOARD_BOOT},0)
820c5e1da83SJayanth Dodderi Chidanand                $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
821c5e1da83SJayanth Dodderi Chidanand                incompatible \ build options.")
82276580f3dSQixiang Xu	endif
823c5e1da83SJayanth Dodderi Chidanandendif #(EL3_PAYLOAD_BASE)
824cf2c8a33SAntonio Nino Diaz
825cf2c8a33SAntonio Nino Diazifeq (${NEED_BL33},yes)
826cf2c8a33SAntonio Nino Diaz	ifdef EL3_PAYLOAD_BASE
827cf2c8a33SAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
828cf2c8a33SAntonio Nino Diaz                BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
829cf2c8a33SAntonio Nino Diaz	endif
83068450a6dSAntonio Nino Diaz	ifdef PRELOADED_BL33_BASE
83168450a6dSAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
832c5e1da83SJayanth Dodderi Chidanand                PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
833cf2c8a33SAntonio Nino Diaz	endif
834c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL33)
835cf2c8a33SAntonio Nino Diaz
836d4593e47SJeenu Viswambharan# When building for systems with hardware-assisted coherency, there's no need to
837d4593e47SJeenu Viswambharan# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
838d4593e47SJeenu Viswambharanifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
839d4593e47SJeenu Viswambharan        $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
840d4593e47SJeenu Viswambharanendif
8411a0a3f06SYatharth Kochar
84242d4d3baSArvind Ram Prakash#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
84342d4d3baSArvind Ram Prakashifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
84442d4d3baSArvind Ram Prakash        $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
8457d173fc5SJiafei Panendif
8467d173fc5SJiafei Pan
8479202d519SManish Pandey# RAS_EXTENSION is deprecated, provide alternate build options
84814c6016aSJeenu Viswambharanifeq ($(RAS_EXTENSION),1)
849c5e1da83SJayanth Dodderi Chidanand        $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
850f87e54f7SManish Pandey        and HANDLE_EA_EL3_FIRST_NS instead")
8519202d519SManish Pandeyendif
852c5e1da83SJayanth Dodderi Chidanand
853c5e1da83SJayanth Dodderi Chidanand
8549202d519SManish Pandey# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
8551a7c1cfeSJeenu Viswambharanifeq ($(FAULT_INJECTION_SUPPORT),1)
8566503ff29SAndre Przywara	ifeq ($(ENABLE_FEAT_RAS),0)
8576503ff29SAndre Przywara                $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
8581a7c1cfeSJeenu Viswambharan	endif
859c5e1da83SJayanth Dodderi Chidanandendif #(FAULT_INJECTION_SUPPORT)
8601a7c1cfeSJeenu Viswambharan
861ed51b51fSRoberto Vargas# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
862209a60ccSSoby Mathewifeq ($(DYN_DISABLE_AUTH), 1)
863209a60ccSSoby Mathew	ifeq (${TRUSTED_BOARD_BOOT}, 0)
864c5e1da83SJayanth Dodderi Chidanand                $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
865c5e1da83SJayanth Dodderi Chidanand                to be set.")
866209a60ccSSoby Mathew	endif
867c5e1da83SJayanth Dodderi Chidanandendif #(DYN_DISABLE_AUTH)
868209a60ccSSoby Mathew
8692bf4f27fSManish V Badarkheifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
8702bf4f27fSManish V Badarkhe# Support authentication verification and hash calculation
8712bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT := 3
8722bf4f27fSManish V Badarkheelse ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
8732bf4f27fSManish V Badarkhe# Support authentication verification and hash calculation
8742bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT := 3
8752bf4f27fSManish V Badarkheelse ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
8762bf4f27fSManish V Badarkhe# Support hash calculation only
8772bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT := 2
8782bf4f27fSManish V Badarkheelse ifeq (${TRUSTED_BOARD_BOOT},1)
8792bf4f27fSManish V Badarkhe# Support authentication verification only
880c9c56f6eSManish V Badarkhe	CRYPTO_SUPPORT := 1
881c9c56f6eSManish V Badarkheelse
882c9c56f6eSManish V Badarkhe	CRYPTO_SUPPORT := 0
883c5e1da83SJayanth Dodderi Chidanandendif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
884c9c56f6eSManish V Badarkhe
885e4a070e3SManish V Badarkheifneq ($(filter 1 2 3,$(CRYPTO_SUPPORT)),)
886e4a070e3SManish V BadarkheCRYPTO_LIB := $(BUILD_PLAT)/lib/libmbedtls.a
887e4a070e3SManish V Badarkheendif
888e4a070e3SManish V Badarkhe
889cbf9e84aSBalint Dobszay# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
890cbf9e84aSBalint Dobszayifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
891700e7685SManish Pandey        $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
89284ef9cd8SManish V Badarkheendif
89384ef9cd8SManish V Badarkhe
894b86048c4SAntonio Nino Diaz# If pointer authentication is used in the firmware, make sure that all the
8959fc59639SAlexei Fedorov# registers associated to it are also saved and restored.
8969fc59639SAlexei Fedorov# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
897b86048c4SAntonio Nino Diazifeq ($(ENABLE_PAUTH),1)
8989fc59639SAlexei Fedorov	ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
8999fc59639SAlexei Fedorov                $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
90006715f85SAlexei Fedorov	endif
901c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_PAUTH)
9029fc59639SAlexei Fedorov
90306715f85SAlexei Fedorovifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
9049fc59639SAlexei Fedorov	ifneq (${ARCH},aarch64)
9059fc59639SAlexei Fedorov                $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
906b86048c4SAntonio Nino Diaz	endif
907c5e1da83SJayanth Dodderi Chidanandendif #(CTX_INCLUDE_PAUTH_REGS)
9089fc59639SAlexei Fedorov
9096a0da736SJayanth Dodderi Chidanandifeq ($(FEATURE_DETECTION),1)
9106a0da736SJayanth Dodderi Chidanand        $(info FEATURE_DETECTION is an experimental feature)
911c5e1da83SJayanth Dodderi Chidanandendif #(FEATURE_DETECTION)
9126a0da736SJayanth Dodderi Chidanand
91303d3c0d7SJayanth Dodderi Chidanandifneq ($(ENABLE_SME2_FOR_NS), 0)
91403d3c0d7SJayanth Dodderi Chidanand	ifeq (${ENABLE_SME_FOR_NS}, 0)
915c5e1da83SJayanth Dodderi Chidanand                $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
916c5e1da83SJayanth Dodderi Chidanand                to be set")
91703d3c0d7SJayanth Dodderi Chidanand                $(warning "Forced ENABLE_SME_FOR_NS=1")
91803d3c0d7SJayanth Dodderi Chidanand		override ENABLE_SME_FOR_NS	:= 1
91903d3c0d7SJayanth Dodderi Chidanand	endif
920c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_SME2_FOR_NS)
92145007acdSJayanth Dodderi Chidanand
92260e8f3cfSPetre-Ionut Tudorifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
92360e8f3cfSPetre-Ionut Tudor	ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
924c5e1da83SJayanth Dodderi Chidanand                $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
925c5e1da83SJayanth Dodderi Chidanand                library v2")
92660e8f3cfSPetre-Ionut Tudor	endif
927c5e1da83SJayanth Dodderi Chidanandendif #(ARM_XLAT_TABLES_LIB_V1)
92860e8f3cfSPetre-Ionut Tudor
9297cda17bbSSumit Gargifneq (${DECRYPTION_SUPPORT},none)
9307cda17bbSSumit Garg	ifeq (${TRUSTED_BOARD_BOOT}, 0)
931c5e1da83SJayanth Dodderi Chidanand                $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
932c5e1da83SJayanth Dodderi Chidanand                to be set)
9337cda17bbSSumit Garg	endif
934c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
9357cda17bbSSumit Garg
936744ad974Sjohpow01# Ensure that no Aarch64-only features are enabled in Aarch32 build
937dc78e62dSjohpow01ifeq (${ARCH},aarch32)
938744ad974Sjohpow01
939744ad974Sjohpow01	# SME/SVE only supported on AArch64
94045007acdSJayanth Dodderi Chidanand	ifneq (${ENABLE_SME_FOR_NS},0)
941dc78e62dSjohpow01                $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
942dc78e62dSjohpow01	endif
94303d3c0d7SJayanth Dodderi Chidanand
944dc78e62dSjohpow01	ifeq (${ENABLE_SVE_FOR_NS},1)
945dc78e62dSjohpow01		# Warning instead of error due to CI dependency on this
94624ab2c0aSYann Gautier                $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
947dc78e62dSjohpow01	endif
948744ad974Sjohpow01
949ff86e0b4SJuan Pablo Conde	# BRBE is not supported in AArch32
950744ad974Sjohpow01	ifeq (${ENABLE_BRBE_FOR_NS},1)
951744ad974Sjohpow01                $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
952744ad974Sjohpow01	endif
953744ad974Sjohpow01
954ff86e0b4SJuan Pablo Conde	# FEAT_RNG_TRAP is not supported in AArch32
955ff86e0b4SJuan Pablo Conde	ifeq (${ENABLE_FEAT_RNG_TRAP},1)
956ff86e0b4SJuan Pablo Conde                $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
957ff86e0b4SJuan Pablo Conde	endif
958a57e18e4SArvind Ram Prakash
959a57e18e4SArvind Ram Prakash	ifneq (${ENABLE_FEAT_FPMR},0)
960a57e18e4SArvind Ram Prakash                $(error "ENABLE_FEAT_FPMR cannot be used with ARCH=aarch32")
961a57e18e4SArvind Ram Prakash	endif
962c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch32)
963dc78e62dSjohpow01
964a57e18e4SArvind Ram Prakashifneq (${ENABLE_FEAT_FPMR},0)
965a57e18e4SArvind Ram Prakash	ifeq (${ENABLE_FEAT_FGT},0)
966a57e18e4SArvind Ram Prakash                $(error "ENABLE_FEAT_FPMR requires ENABLE_FEAT_FGT")
967a57e18e4SArvind Ram Prakash	endif
968a57e18e4SArvind Ram Prakash	ifeq (${ENABLE_FEAT_HCX},0)
969a57e18e4SArvind Ram Prakash                $(error "ENABLE_FEAT_FPMR requires ENABLE_FEAT_HCX")
970a57e18e4SArvind Ram Prakash	endif
971a57e18e4SArvind Ram Prakashendif #(ENABLE_FEAT_FPMR)
972a57e18e4SArvind Ram Prakash
9730d122947SBoyan Karatotevifneq (${ENABLE_SME_FOR_NS},0)
9740d122947SBoyan Karatotev	ifeq (${ENABLE_SVE_FOR_NS},0)
9750d122947SBoyan Karatotev                $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
9760d122947SBoyan Karatotev	endif
977c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_SME_FOR_NS)
9780d122947SBoyan Karatotev
979dc78e62dSjohpow01# Secure SME/SVE requires the non-secure component as well
980dc78e62dSjohpow01ifeq (${ENABLE_SME_FOR_SWD},1)
981dc78e62dSjohpow01	ifeq (${ENABLE_SME_FOR_NS},0)
982dc78e62dSjohpow01                $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
983dc78e62dSjohpow01	endif
9840d122947SBoyan Karatotev	ifeq (${ENABLE_SVE_FOR_SWD},0)
9850d122947SBoyan Karatotev                $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
9860d122947SBoyan Karatotev	endif
987c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_SME_FOR_SWD)
988c5e1da83SJayanth Dodderi Chidanand
9893524d074SMadhukar Pappireddy# Enabling SVE for SWD requires enabling SVE for NWD due to ENABLE_FEAT
9903524d074SMadhukar Pappireddy# mechanism.
991dc78e62dSjohpow01ifeq (${ENABLE_SVE_FOR_SWD},1)
992dc78e62dSjohpow01    ifeq (${ENABLE_SVE_FOR_NS},0)
993dc78e62dSjohpow01        $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
994dc78e62dSjohpow01    endif
9953524d074SMadhukar Pappireddyendif
996dc78e62dSjohpow01
9973524d074SMadhukar Pappireddy# Enabling SVE for both the worlds typically requires the context
9983524d074SMadhukar Pappireddy# management of SVE registers. The only exception being SPMC at S-EL2.
9993524d074SMadhukar Pappireddyifeq (${ENABLE_SVE_FOR_SWD}, 1)
10003524d074SMadhukar Pappireddy    ifneq (${ENABLE_SVE_FOR_NS}, 0)
10013524d074SMadhukar Pappireddy        ifeq (${CTX_INCLUDE_SVE_REGS}-$(SPMD_SPM_AT_SEL2),0-0)
10023524d074SMadhukar Pappireddy            $(warning "ENABLE_SVE_FOR_SWD and ENABLE_SVE_FOR_NS together require CTX_INCLUDE_SVE_REGS")
10033524d074SMadhukar Pappireddy        endif
10043524d074SMadhukar Pappireddy    endif
10053524d074SMadhukar Pappireddyendif
10063524d074SMadhukar Pappireddy
10073524d074SMadhukar Pappireddy# Enabling SVE in either world while enabling CTX_INCLUDE_FPREGS requires
10083524d074SMadhukar Pappireddy# CTX_INCLUDE_SVE_REGS to be enabled due to architectural dependency between FP
10093524d074SMadhukar Pappireddy# and SVE registers.
10103524d074SMadhukar Pappireddyifeq (${CTX_INCLUDE_FPREGS}, 1)
10113524d074SMadhukar Pappireddy    ifneq (${ENABLE_SVE_FOR_NS},0)
10123524d074SMadhukar Pappireddy        ifeq (${CTX_INCLUDE_SVE_REGS},0)
10133524d074SMadhukar Pappireddy	    # Warning instead of error due to CI dependency on this
10143524d074SMadhukar Pappireddy            $(warning "CTX_INCLUDE_FPREGS and ENABLE_SVE_FOR_NS together require CTX_INCLUDE_SVE_REGS")
10153524d074SMadhukar Pappireddy            $(warning "Forced ENABLE_SVE_FOR_NS=0")
10163524d074SMadhukar Pappireddy	    override ENABLE_SVE_FOR_NS	:= 0
10173524d074SMadhukar Pappireddy        endif
10183524d074SMadhukar Pappireddy    endif
10193524d074SMadhukar Pappireddyendif #(CTX_INCLUDE_FPREGS)
10203524d074SMadhukar Pappireddy
10213524d074SMadhukar Pappireddy# SVE context management is only required if secure world has access to SVE/FP
10223524d074SMadhukar Pappireddy# functionality.
10233524d074SMadhukar Pappireddyifeq (${CTX_INCLUDE_SVE_REGS},1)
10243524d074SMadhukar Pappireddy    ifeq (${ENABLE_SVE_FOR_SWD},0)
10253524d074SMadhukar Pappireddy        $(error "CTX_INCLUDE_SVE_REGS requires ENABLE_SVE_FOR_SWD to also be enabled")
10263524d074SMadhukar Pappireddy    endif
10273524d074SMadhukar Pappireddyendif
10283524d074SMadhukar Pappireddy
10293524d074SMadhukar Pappireddy# SME cannot be used with CTX_INCLUDE_FPREGS since SPM does its own context
10303524d074SMadhukar Pappireddy# management including FPU registers.
1031dc78e62dSjohpow01ifeq (${CTX_INCLUDE_FPREGS},1)
103245007acdSJayanth Dodderi Chidanand    ifneq (${ENABLE_SME_FOR_NS},0)
1033dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1034dc78e62dSjohpow01    endif
1035c5e1da83SJayanth Dodderi Chidanandendif #(CTX_INCLUDE_FPREGS)
1036dc78e62dSjohpow01
103700e28874SManish V Badarkheifeq ($(DRTM_SUPPORT),1)
103800e28874SManish V Badarkhe        $(info DRTM_SUPPORT is an experimental feature)
103900e28874SManish V Badarkheendif
104000e28874SManish V Badarkhe
10418953568aSLevi Yunifeq (${HOB_LIST},1)
10428953568aSLevi Yun        $(warning HOB_LIST is an experimental feature)
10438953568aSLevi Yunendif
10448953568aSLevi Yun
10453ba2c151SRaymond Maoifeq (${TRANSFER_LIST},1)
10463ba2c151SRaymond Mao        $(info TRANSFER_LIST is an experimental feature)
10473ba2c151SRaymond Maoendif
10483ba2c151SRaymond Mao
1049274a69e7SChris Kayifeq (${ENABLE_RME},1)
1050274a69e7SChris Kay	ifneq (${SEPARATE_CODE_AND_RODATA},1)
1051274a69e7SChris Kay                $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1052274a69e7SChris Kay	endif
1053274a69e7SChris Kayendif
1054274a69e7SChris Kay
10555782b890SManish V Badarkheifeq ($(PSA_CRYPTO),1)
10565782b890SManish V Badarkhe        $(info PSA_CRYPTO is an experimental feature)
10575782b890SManish V Badarkheendif
10585782b890SManish V Badarkhe
105982222db8SManish V Badarkheifeq ($(DICE_PROTECTION_ENVIRONMENT),1)
106082222db8SManish V Badarkhe        $(info DICE_PROTECTION_ENVIRONMENT is an experimental feature)
106182222db8SManish V Badarkheendif
106282222db8SManish V Badarkhe
1063cf2c8a33SAntonio Nino Diaz################################################################################
106473c99d4eSJuan Castillo# Process platform overrideable behaviour
106573c99d4eSJuan Castillo################################################################################
10664f6ad66aSAchin Gupta
10675f24ce96SManish Pandeyifdef BL1_SOURCES
10685f24ce96SManish Pandey	NEED_BL1 := yes
1069c5e1da83SJayanth Dodderi Chidanandendif #(BL1_SOURCES)
10705f24ce96SManish Pandey
10715f24ce96SManish Pandeyifdef BL2_SOURCES
10725f24ce96SManish Pandey	NEED_BL2 := yes
10735f24ce96SManish Pandey
1074bd97f83aSJohn Tsichritzis	# Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1075bd97f83aSJohn Tsichritzis	# Certificate generation tools. This flag can be overridden by the platform.
1076cf2c8a33SAntonio Nino Diaz	ifdef EL3_PAYLOAD_BASE
1077cf2c8a33SAntonio Nino Diaz		# If booting an EL3 payload there is no need for a BL33 image
1078cf2c8a33SAntonio Nino Diaz		# in the FIP file.
10794c117f6cSSandrine Bailleux		NEED_BL33		:=	no
1080cf2c8a33SAntonio Nino Diaz	else
108168450a6dSAntonio Nino Diaz		ifdef PRELOADED_BL33_BASE
1082cf2c8a33SAntonio Nino Diaz			# If booting a BL33 preloaded image there is no need of
1083cf2c8a33SAntonio Nino Diaz			# another one in the FIP file.
1084cf2c8a33SAntonio Nino Diaz			NEED_BL33		:=	no
1085cf2c8a33SAntonio Nino Diaz		else
1086cf2c8a33SAntonio Nino Diaz			NEED_BL33		?=	yes
1087cf2c8a33SAntonio Nino Diaz		endif
10884c117f6cSSandrine Bailleux	endif
1089c5e1da83SJayanth Dodderi Chidanandendif #(BL2_SOURCES)
10906f971622SJuan Castillo
10915f24ce96SManish Pandeyifdef BL2U_SOURCES
10925f24ce96SManish Pandey	NEED_BL2U := yes
1093c5e1da83SJayanth Dodderi Chidanandendif #(BL2U_SOURCES)
10945f24ce96SManish Pandey
10954d045d0eSMasahiro Yamada# If SCP_BL2 is given, we always want FIP to include it.
10964d045d0eSMasahiro Yamadaifdef SCP_BL2
10974d045d0eSMasahiro Yamada	NEED_SCP_BL2		:=	yes
1098c5e1da83SJayanth Dodderi Chidanandendif #(SCP_BL2)
10994d045d0eSMasahiro Yamada
11005744e874SSoby Mathew# For AArch32, BL31 is not currently supported.
11015744e874SSoby Mathewifneq (${ARCH},aarch32)
11025744e874SSoby Mathew	ifdef BL31_SOURCES
1103c5e1da83SJayanth Dodderi Chidanand	# When booting an EL3 payload, there is no need to compile the BL31
1104c5e1da83SJayanth Dodderi Chidanand	# image nor put it in the FIP.
11055744e874SSoby Mathew		ifndef EL3_PAYLOAD_BASE
11065744e874SSoby Mathew			NEED_BL31 := yes
11075744e874SSoby Mathew		endif
11085744e874SSoby Mathew	endif
1109c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch64)
11105744e874SSoby Mathew
111173c99d4eSJuan Castillo# Process TBB related flags
11126f971622SJuan Castilloifneq (${GENERATE_COT},0)
111373c99d4eSJuan Castillo	# Common cert_create options
11146f971622SJuan Castillo	ifneq (${CREATE_KEYS},0)
11156f971622SJuan Castillo                $(eval CRT_ARGS += -n)
11160191262dSYatharth Kochar                $(eval FWU_CRT_ARGS += -n)
1117fd34e7baSJuan Castillo		ifneq (${SAVE_KEYS},0)
1118fd34e7baSJuan Castillo                        $(eval CRT_ARGS += -k)
11190191262dSYatharth Kochar                        $(eval FWU_CRT_ARGS += -k)
1120fd34e7baSJuan Castillo		endif
11216f971622SJuan Castillo	endif
112273c99d4eSJuan Castillo	# Include TBBR makefile (unless the platform indicates otherwise)
112373c99d4eSJuan Castillo	ifeq (${INCLUDE_TBBR_MK},1)
112473c99d4eSJuan Castillo                include make_helpers/tbbr/tbbr_tools.mk
112573c99d4eSJuan Castillo	endif
1126c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
11276f971622SJuan Castillo
11281c75d5dfSMasahiro Yamadaifneq (${FIP_ALIGN},0)
11291c75d5dfSMasahiro Yamada	FIP_ARGS += --align ${FIP_ALIGN}
1130c5e1da83SJayanth Dodderi Chidanandendif #(FIP_ALIGN)
11311c75d5dfSMasahiro Yamada
11325f24ce96SManish Pandeyifdef FDT_SOURCES
11335f24ce96SManish Pandey	NEED_FDT := yes
1134c5e1da83SJayanth Dodderi Chidanandendif #(FDT_SOURCES)
11355f24ce96SManish Pandey
113673c99d4eSJuan Castillo################################################################################
113746e5e035SMichalis Pappas# Include libraries' Makefile that are used in all BL
113846e5e035SMichalis Pappas################################################################################
113946e5e035SMichalis Pappas
114046e5e035SMichalis Pappasinclude lib/stack_protector/stack_protector.mk
114146e5e035SMichalis Pappas
114246e5e035SMichalis Pappas################################################################################
11438a86052dSSoby Mathew# Include BL specific makefiles
11448a86052dSSoby Mathew################################################################################
11455f24ce96SManish Pandey
11465f24ce96SManish Pandeyifeq (${NEED_BL1},yes)
11478a86052dSSoby Mathewinclude bl1/bl1.mk
11488a86052dSSoby Mathewendif
11498a86052dSSoby Mathew
11505f24ce96SManish Pandeyifeq (${NEED_BL2},yes)
11518a86052dSSoby Mathewinclude bl2/bl2.mk
11528a86052dSSoby Mathewendif
11538a86052dSSoby Mathew
11545f24ce96SManish Pandeyifeq (${NEED_BL2U},yes)
11558a86052dSSoby Mathewinclude bl2u/bl2u.mk
11568a86052dSSoby Mathewendif
11578a86052dSSoby Mathew
11585744e874SSoby Mathewifeq (${NEED_BL31},yes)
11598a86052dSSoby Mathewinclude bl31/bl31.mk
11608a86052dSSoby Mathewendif
116103b397a8SNishanth Menon
116273c99d4eSJuan Castillo################################################################################
116373c99d4eSJuan Castillo# Build options checks
116473c99d4eSJuan Castillo################################################################################
116573c99d4eSJuan Castillo
1166c5e1da83SJayanth Dodderi Chidanand# Boolean_Flags
1167327131c4SLeonardo Sandoval$(eval $(call assert_booleans,\
1168327131c4SLeonardo Sandoval    $(sort \
1169327131c4SLeonardo Sandoval	ALLOW_RO_XLAT_TABLES \
117046789a7cSBalint Dobszay	BL2_ENABLE_SP_LOAD \
1171327131c4SLeonardo Sandoval	COLD_BOOT_SINGLE_CPU \
1172327131c4SLeonardo Sandoval	CREATE_KEYS \
1173327131c4SLeonardo Sandoval	CTX_INCLUDE_AARCH32_REGS \
1174327131c4SLeonardo Sandoval	CTX_INCLUDE_FPREGS \
117542422622SMadhukar Pappireddy	CTX_INCLUDE_SVE_REGS \
1176327131c4SLeonardo Sandoval	CTX_INCLUDE_EL2_REGS \
11779acff28aSArvind Ram Prakash	CTX_INCLUDE_MPAM_REGS \
1178327131c4SLeonardo Sandoval	DEBUG \
1179327131c4SLeonardo Sandoval	DYN_DISABLE_AUTH \
1180327131c4SLeonardo Sandoval	EL3_EXCEPTION_HANDLING \
11811fd685a7SChris Kay	ENABLE_AMU_AUXILIARY_COUNTERS \
1182742ca230SChris Kay	ENABLE_AMU_FCONF \
1183873d4241Sjohpow01	AMU_RESTRICT_COUNTERS \
1184327131c4SLeonardo Sandoval	ENABLE_ASSERTIONS \
1185327131c4SLeonardo Sandoval	ENABLE_PIE \
1186327131c4SLeonardo Sandoval	ENABLE_PMF \
1187327131c4SLeonardo Sandoval	ENABLE_PSCI_STAT \
1188327131c4SLeonardo Sandoval	ENABLE_RUNTIME_INSTRUMENTATION \
1189dc78e62dSjohpow01	ENABLE_SME_FOR_SWD \
11900c5e7d1cSMax Shvetsov	ENABLE_SVE_FOR_SWD \
1191970a4a8dSManish Pandey	ENABLE_FEAT_RAS	\
1192f87e54f7SManish Pandey	FFH_SUPPORT	\
1193327131c4SLeonardo Sandoval	ERROR_DEPRECATED \
1194327131c4SLeonardo Sandoval	FAULT_INJECTION_SUPPORT \
1195327131c4SLeonardo Sandoval	GENERATE_COT \
1196327131c4SLeonardo Sandoval	GICV2_G0_FOR_EL3 \
119746cc41d5SManish Pandey	HANDLE_EA_EL3_FIRST_NS \
1198538516f5SBipin Ravi	HARDEN_SLS \
1199327131c4SLeonardo Sandoval	HW_ASSISTED_COHERENCY \
1200327131c4SLeonardo Sandoval	MEASURED_BOOT \
1201e7f1181fSTamas Ban	DICE_PROTECTION_ENVIRONMENT \
12026a88ec8bSRaghu Krishnamurthy	RMMD_ENABLE_EL3_TOKEN_SIGN \
120300e28874SManish V Badarkhe	DRTM_SUPPORT \
1204327131c4SLeonardo Sandoval	NS_TIMER_SWITCH \
1205327131c4SLeonardo Sandoval	OVERRIDE_LIBC \
1206327131c4SLeonardo Sandoval	PL011_GENERIC_UART \
1207327131c4SLeonardo Sandoval	PROGRAMMABLE_RESET_ADDRESS \
1208327131c4SLeonardo Sandoval	PSCI_EXTENDED_STATE_ID \
120964b4710bSWing Li	PSCI_OS_INIT_MODE \
1210327131c4SLeonardo Sandoval	RESET_TO_BL31 \
1211327131c4SLeonardo Sandoval	SAVE_KEYS \
1212327131c4SLeonardo Sandoval	SEPARATE_CODE_AND_RODATA \
121396a8ed14SJiafei Pan	SEPARATE_BL2_NOLOAD_REGION \
1214327131c4SLeonardo Sandoval	SEPARATE_NOBITS_REGION \
121586acbbe2SYe Li	SEPARATE_RWDATA_REGION \
1216308ebfa1SMadhukar Pappireddy	SEPARATE_SIMD_SECTION \
1217327131c4SLeonardo Sandoval	SPIN_ON_BL1_EXIT \
1218327131c4SLeonardo Sandoval	SPM_MM \
12191d63ae4dSMarc Bonnici	SPMC_AT_EL3 \
1220801cd3c8SNishant Sharma	SPMC_AT_EL3_SEL0_SP \
1221327131c4SLeonardo Sandoval	SPMD_SPM_AT_SEL2 \
1222890b5088SRaghu Krishnamurthy	ENABLE_SPMD_LP \
12233ba2c151SRaymond Mao	TRANSFER_LIST \
1224327131c4SLeonardo Sandoval	TRUSTED_BOARD_BOOT \
1225327131c4SLeonardo Sandoval	USE_COHERENT_MEM \
1226327131c4SLeonardo Sandoval	USE_DEBUGFS \
1227327131c4SLeonardo Sandoval	ARM_IO_IN_DTB \
1228327131c4SLeonardo Sandoval	SDEI_IN_FCONF \
1229327131c4SLeonardo Sandoval	SEC_INT_DESC_IN_FCONF \
1230327131c4SLeonardo Sandoval	USE_ROMLIB \
1231327131c4SLeonardo Sandoval	USE_TBBR_DEFS \
1232327131c4SLeonardo Sandoval	WARMBOOT_ENABLE_DCACHE_EARLY \
123342d4d3baSArvind Ram Prakash	RESET_TO_BL2 \
1234327131c4SLeonardo Sandoval	BL2_IN_XIP_MEM \
1235327131c4SLeonardo Sandoval	BL2_INV_DCACHE \
1236327131c4SLeonardo Sandoval	USE_SPINLOCK_CAS \
1237327131c4SLeonardo Sandoval	ENCRYPT_BL31 \
1238327131c4SLeonardo Sandoval	ENCRYPT_BL32 \
1239327131c4SLeonardo Sandoval	ERRATA_SPECULATIVE_AT \
124000e8f79cSManish Pandey	RAS_TRAP_NS_ERR_REC_ACCESS \
1241327131c4SLeonardo Sandoval	COT_DESC_IN_DTB \
1242327131c4SLeonardo Sandoval	USE_SP804_TIMER \
1243396b339dSManish V Badarkhe	PSA_FWU_SUPPORT \
124411d05a77SSughosh Ganu	PSA_FWU_METADATA_FW_STORE_DESC \
124568120783SChris Kay	ENABLE_MPMM \
124668120783SChris Kay	ENABLE_MPMM_FCONF \
12476a0da736SJayanth Dodderi Chidanand	FEATURE_DETECTION \
12480b22e591SJayanth Dodderi Chidanand	TRNG_SUPPORT \
1249ffea3844SSona Mathew	ERRATA_ABI_SUPPORT \
1250ef63f5beSSona Mathew	ERRATA_NON_ARM_INTERCONNECT \
125104c7303bSOkash Khawaja	CONDITIONAL_CMO \
12525782b890SManish V Badarkhe	PSA_CRYPTO	\
125385bebe18SSandrine Bailleux	ENABLE_CONSOLE_GETC \
1254183329a5SArvind Ram Prakash	INIT_UNUSED_NS_EL2	\
1255bfef8b90SJuan Pablo Conde	PLATFORM_REPORT_CTX_MEM_USE \
1256ae770fedSYann Gautier	EARLY_CONSOLE \
1257f99a69c3SArvind Ram Prakash	PRESERVE_DSU_PMU_REGS \
12588953568aSLevi Yun	HOB_LIST \
1259327131c4SLeonardo Sandoval)))
126073c99d4eSJuan Castillo
1261c5e1da83SJayanth Dodderi Chidanand# Numeric_Flags
1262327131c4SLeonardo Sandoval$(eval $(call assert_numerics,\
1263327131c4SLeonardo Sandoval    $(sort \
1264327131c4SLeonardo Sandoval	ARM_ARCH_MAJOR \
1265327131c4SLeonardo Sandoval	ARM_ARCH_MINOR \
1266327131c4SLeonardo Sandoval	BRANCH_PROTECTION \
12676a0da736SJayanth Dodderi Chidanand	CTX_INCLUDE_PAUTH_REGS \
12686a0da736SJayanth Dodderi Chidanand	CTX_INCLUDE_NEVE_REGS \
12692bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT \
127083a4dae1SBoyan Karatotev	DISABLE_MTPMU \
12711298f2f1SJayanth Dodderi Chidanand	ENABLE_BRBE_FOR_NS \
127247c681b7SJayanth Dodderi Chidanand	ENABLE_TRBE_FOR_NS \
12736a0da736SJayanth Dodderi Chidanand	ENABLE_BTI \
12746a0da736SJayanth Dodderi Chidanand	ENABLE_PAUTH \
1275d23acc9eSAndre Przywara	ENABLE_FEAT_AMU \
12766a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_AMUv1p1 \
12776a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_CSV2_2 \
127830019d86SSona Mathew	ENABLE_FEAT_CSV2_3 \
127983271d5aSArvind Ram Prakash	ENABLE_FEAT_DEBUGV8P9 \
12806a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_DIT \
12816a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_ECV \
12826a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_FGT \
128333e6aaacSArvind Ram Prakash	ENABLE_FEAT_FGT2 \
1284a57e18e4SArvind Ram Prakash	ENABLE_FEAT_FPMR \
12856a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_HCX \
128619d52a83SAndre Przywara	ENABLE_FEAT_LS64_ACCDATA \
12878e397889SGovindraj Raja	ENABLE_FEAT_MTE2 \
12886a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_PAN \
12896a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_RNG \
1290ff86e0b4SJuan Pablo Conde	ENABLE_FEAT_RNG_TRAP \
12916a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_SEL2 \
1292d3331603SMark Brown	ENABLE_FEAT_TCR2 \
12936d0433f0SJayanth Dodderi Chidanand	ENABLE_FEAT_THE \
12940e4daed2SGovindraj Raja	ENABLE_FEAT_SB \
1295062b6c6bSMark Brown	ENABLE_FEAT_S2PIE \
1296062b6c6bSMark Brown	ENABLE_FEAT_S1PIE \
1297062b6c6bSMark Brown	ENABLE_FEAT_S2POE \
1298062b6c6bSMark Brown	ENABLE_FEAT_S1POE \
12994ec4e545SJayanth Dodderi Chidanand	ENABLE_FEAT_SCTLR2 \
130030655136SGovindraj Raja	ENABLE_FEAT_D128 \
1301688ab57bSMark Brown	ENABLE_FEAT_GCS \
13026a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_VHE \
1303edebefbcSArvind Ram Prakash	ENABLE_FEAT_MPAM \
13046a0da736SJayanth Dodderi Chidanand	ENABLE_RME \
13056437a09aSAndre Przywara	ENABLE_SPE_FOR_NS \
1306603a0c6fSAndre Przywara	ENABLE_SYS_REG_TRACE_FOR_NS \
130745007acdSJayanth Dodderi Chidanand	ENABLE_SME_FOR_NS \
130803d3c0d7SJayanth Dodderi Chidanand	ENABLE_SME2_FOR_NS \
13092b0bc4e0SJayanth Dodderi Chidanand	ENABLE_SVE_FOR_NS \
13106a0da736SJayanth Dodderi Chidanand	ENABLE_TRF_FOR_NS \
1311327131c4SLeonardo Sandoval	FW_ENC_STATUS \
13125357f83dSManish V Badarkhe	NR_OF_FW_BANKS \
13135357f83dSManish V Badarkhe	NR_OF_IMAGES_IN_FW_BANK \
1314781d07a4SJayanth Dodderi Chidanand	TWED_DELAY \
1315781d07a4SJayanth Dodderi Chidanand	ENABLE_FEAT_TWED \
1316bebcf27fSMark Brown	SVE_VECTOR_LEN \
13170ed3be6fSVarun Wadekar	IMPDEF_SYSREG_TRAP \
1318327131c4SLeonardo Sandoval)))
1319c877b414SJeenu Viswambharan
1320aacff749SJustin Chadwellifdef KEY_SIZE
1321aacff749SJustin Chadwell        $(eval $(call assert_numeric,KEY_SIZE))
1322aacff749SJustin Chadwellendif
1323aacff749SJustin Chadwell
13241f461979SJustin Chadwellifeq ($(filter $(SANITIZE_UB), on off trap),)
13251f461979SJustin Chadwell        $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
13261f461979SJustin Chadwellendif
13271f461979SJustin Chadwell
132873c99d4eSJuan Castillo################################################################################
132973c99d4eSJuan Castillo# Add definitions to the cpp preprocessor based on the current build options.
133073c99d4eSJuan Castillo# This is done after including the platform specific makefile to allow the
133173c99d4eSJuan Castillo# platform to overwrite the default options
133273c99d4eSJuan Castillo################################################################################
133373c99d4eSJuan Castillo
1334327131c4SLeonardo Sandoval$(eval $(call add_defines,\
1335327131c4SLeonardo Sandoval    $(sort \
1336327131c4SLeonardo Sandoval	ALLOW_RO_XLAT_TABLES \
1337327131c4SLeonardo Sandoval	ARM_ARCH_MAJOR \
1338327131c4SLeonardo Sandoval	ARM_ARCH_MINOR \
133946789a7cSBalint Dobszay	BL2_ENABLE_SP_LOAD \
1340327131c4SLeonardo Sandoval	COLD_BOOT_SINGLE_CPU \
1341327131c4SLeonardo Sandoval	CTX_INCLUDE_AARCH32_REGS \
1342327131c4SLeonardo Sandoval	CTX_INCLUDE_FPREGS \
134342422622SMadhukar Pappireddy	CTX_INCLUDE_SVE_REGS \
1344327131c4SLeonardo Sandoval	CTX_INCLUDE_PAUTH_REGS \
13459acff28aSArvind Ram Prakash	CTX_INCLUDE_MPAM_REGS \
1346327131c4SLeonardo Sandoval	EL3_EXCEPTION_HANDLING \
1347327131c4SLeonardo Sandoval	CTX_INCLUDE_EL2_REGS \
1348062f8aafSArunachalam Ganapathy	CTX_INCLUDE_NEVE_REGS \
1349327131c4SLeonardo Sandoval	DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
13500063dd17SJavier Almansa Sobrino	DISABLE_MTPMU \
1351d23acc9eSAndre Przywara	ENABLE_FEAT_AMU \
13521fd685a7SChris Kay	ENABLE_AMU_AUXILIARY_COUNTERS \
1353742ca230SChris Kay	ENABLE_AMU_FCONF \
1354873d4241Sjohpow01	AMU_RESTRICT_COUNTERS \
1355327131c4SLeonardo Sandoval	ENABLE_ASSERTIONS \
1356327131c4SLeonardo Sandoval	ENABLE_BTI \
135783271d5aSArvind Ram Prakash	ENABLE_FEAT_DEBUGV8P9 \
1358edebefbcSArvind Ram Prakash	ENABLE_FEAT_MPAM \
1359327131c4SLeonardo Sandoval	ENABLE_PAUTH \
1360327131c4SLeonardo Sandoval	ENABLE_PIE \
1361327131c4SLeonardo Sandoval	ENABLE_PMF \
1362327131c4SLeonardo Sandoval	ENABLE_PSCI_STAT \
13635b18de09SZelalem Aweke	ENABLE_RME \
13646a88ec8bSRaghu Krishnamurthy	RMMD_ENABLE_EL3_TOKEN_SIGN \
1365327131c4SLeonardo Sandoval	ENABLE_RUNTIME_INSTRUMENTATION \
1366dc78e62dSjohpow01	ENABLE_SME_FOR_NS \
136703d3c0d7SJayanth Dodderi Chidanand	ENABLE_SME2_FOR_NS \
1368dc78e62dSjohpow01	ENABLE_SME_FOR_SWD \
136990118bb5SAndre Przywara	ENABLE_SPE_FOR_NS \
1370327131c4SLeonardo Sandoval	ENABLE_SVE_FOR_NS \
13710c5e7d1cSMax Shvetsov	ENABLE_SVE_FOR_SWD \
1372970a4a8dSManish Pandey	ENABLE_FEAT_RAS \
1373f87e54f7SManish Pandey	FFH_SUPPORT \
1374327131c4SLeonardo Sandoval	ENCRYPT_BL31 \
1375327131c4SLeonardo Sandoval	ENCRYPT_BL32 \
1376327131c4SLeonardo Sandoval	ERROR_DEPRECATED \
1377327131c4SLeonardo Sandoval	FAULT_INJECTION_SUPPORT \
1378327131c4SLeonardo Sandoval	GICV2_G0_FOR_EL3 \
137946cc41d5SManish Pandey	HANDLE_EA_EL3_FIRST_NS \
1380327131c4SLeonardo Sandoval	HW_ASSISTED_COHERENCY \
1381327131c4SLeonardo Sandoval	LOG_LEVEL \
1382327131c4SLeonardo Sandoval	MEASURED_BOOT \
1383e7f1181fSTamas Ban	DICE_PROTECTION_ENVIRONMENT \
138400e28874SManish V Badarkhe	DRTM_SUPPORT \
1385327131c4SLeonardo Sandoval	NS_TIMER_SWITCH \
1386327131c4SLeonardo Sandoval	PL011_GENERIC_UART \
1387327131c4SLeonardo Sandoval	PLAT_${PLAT} \
1388327131c4SLeonardo Sandoval	PROGRAMMABLE_RESET_ADDRESS \
1389327131c4SLeonardo Sandoval	PSCI_EXTENDED_STATE_ID \
139064b4710bSWing Li	PSCI_OS_INIT_MODE \
1391327131c4SLeonardo Sandoval	RESET_TO_BL31 \
1392d766084fSAlexeiFedorov	RME_GPT_BITLOCK_BLOCK \
1393ec0088bbSAlexeiFedorov	RME_GPT_MAX_BLOCK \
1394327131c4SLeonardo Sandoval	SEPARATE_CODE_AND_RODATA \
139596a8ed14SJiafei Pan	SEPARATE_BL2_NOLOAD_REGION \
1396327131c4SLeonardo Sandoval	SEPARATE_NOBITS_REGION \
139786acbbe2SYe Li	SEPARATE_RWDATA_REGION \
1398308ebfa1SMadhukar Pappireddy	SEPARATE_SIMD_SECTION \
1399327131c4SLeonardo Sandoval	RECLAIM_INIT_CODE \
1400327131c4SLeonardo Sandoval	SPD_${SPD} \
1401327131c4SLeonardo Sandoval	SPIN_ON_BL1_EXIT \
1402327131c4SLeonardo Sandoval	SPM_MM \
14031d63ae4dSMarc Bonnici	SPMC_AT_EL3 \
1404801cd3c8SNishant Sharma	SPMC_AT_EL3_SEL0_SP \
1405327131c4SLeonardo Sandoval	SPMD_SPM_AT_SEL2 \
14063ba2c151SRaymond Mao	TRANSFER_LIST \
1407327131c4SLeonardo Sandoval	TRUSTED_BOARD_BOOT \
1408c9c56f6eSManish V Badarkhe	CRYPTO_SUPPORT \
14097dfb9911SJimmy Brisson	TRNG_SUPPORT \
1410ffea3844SSona Mathew	ERRATA_ABI_SUPPORT \
1411ef63f5beSSona Mathew	ERRATA_NON_ARM_INTERCONNECT \
1412327131c4SLeonardo Sandoval	USE_COHERENT_MEM \
1413327131c4SLeonardo Sandoval	USE_DEBUGFS \
1414327131c4SLeonardo Sandoval	ARM_IO_IN_DTB \
1415327131c4SLeonardo Sandoval	SDEI_IN_FCONF \
1416327131c4SLeonardo Sandoval	SEC_INT_DESC_IN_FCONF \
1417327131c4SLeonardo Sandoval	USE_ROMLIB \
1418327131c4SLeonardo Sandoval	USE_TBBR_DEFS \
1419327131c4SLeonardo Sandoval	WARMBOOT_ENABLE_DCACHE_EARLY \
142042d4d3baSArvind Ram Prakash	RESET_TO_BL2 \
142142d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	\
1422327131c4SLeonardo Sandoval	BL2_IN_XIP_MEM \
1423327131c4SLeonardo Sandoval	BL2_INV_DCACHE \
1424327131c4SLeonardo Sandoval	USE_SPINLOCK_CAS \
1425327131c4SLeonardo Sandoval	ERRATA_SPECULATIVE_AT \
142600e8f79cSManish Pandey	RAS_TRAP_NS_ERR_REC_ACCESS \
1427327131c4SLeonardo Sandoval	COT_DESC_IN_DTB \
1428327131c4SLeonardo Sandoval	USE_SP804_TIMER \
142912cd65e0STomas Pilar	ENABLE_FEAT_RNG \
1430ff86e0b4SJuan Pablo Conde	ENABLE_FEAT_RNG_TRAP \
14314e04478aSChris Kay	ENABLE_FEAT_SB \
14327d33ffe4SDaniel Boulby	ENABLE_FEAT_DIT \
14335357f83dSManish V Badarkhe	NR_OF_FW_BANKS \
14345357f83dSManish V Badarkhe	NR_OF_IMAGES_IN_FW_BANK \
1435396b339dSManish V Badarkhe	PSA_FWU_SUPPORT \
143611d05a77SSughosh Ganu	PSA_FWU_METADATA_FW_STORE_DESC \
1437744ad974Sjohpow01	ENABLE_BRBE_FOR_NS \
1438813524eaSManish V Badarkhe	ENABLE_TRBE_FOR_NS \
1439d4582d30SManish V Badarkhe	ENABLE_SYS_REG_TRACE_FOR_NS \
14408fcd3d96SManish V Badarkhe	ENABLE_TRF_FOR_NS \
1441cb4ec47bSjohpow01	ENABLE_FEAT_HCX \
144268120783SChris Kay	ENABLE_MPMM \
144368120783SChris Kay	ENABLE_MPMM_FCONF \
1444f74cb0beSJayanth Dodderi Chidanand	ENABLE_FEAT_FGT \
144533e6aaacSArvind Ram Prakash	ENABLE_FEAT_FGT2 \
1446a57e18e4SArvind Ram Prakash	ENABLE_FEAT_FPMR \
1447f74cb0beSJayanth Dodderi Chidanand	ENABLE_FEAT_ECV \
14486a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_AMUv1p1 \
14496a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_SEL2 \
14506a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_VHE \
14516a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_CSV2_2 \
145230019d86SSona Mathew	ENABLE_FEAT_CSV2_3 \
145319d52a83SAndre Przywara	ENABLE_FEAT_LS64_ACCDATA \
14546a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_PAN \
1455d3331603SMark Brown	ENABLE_FEAT_TCR2 \
14566d0433f0SJayanth Dodderi Chidanand	ENABLE_FEAT_THE \
1457062b6c6bSMark Brown	ENABLE_FEAT_S2PIE \
1458062b6c6bSMark Brown	ENABLE_FEAT_S1PIE \
1459062b6c6bSMark Brown	ENABLE_FEAT_S2POE \
1460062b6c6bSMark Brown	ENABLE_FEAT_S1POE \
14614ec4e545SJayanth Dodderi Chidanand	ENABLE_FEAT_SCTLR2 \
146230655136SGovindraj Raja	ENABLE_FEAT_D128 \
1463688ab57bSMark Brown	ENABLE_FEAT_GCS \
14648e397889SGovindraj Raja	ENABLE_FEAT_MTE2 \
14656a0da736SJayanth Dodderi Chidanand	FEATURE_DETECTION \
1466781d07a4SJayanth Dodderi Chidanand	TWED_DELAY \
1467781d07a4SJayanth Dodderi Chidanand	ENABLE_FEAT_TWED \
146804c7303bSOkash Khawaja	CONDITIONAL_CMO \
14690ed3be6fSVarun Wadekar	IMPDEF_SYSREG_TRAP \
1470a8cf6faeSJayanth Dodderi Chidanand	SVE_VECTOR_LEN \
1471890b5088SRaghu Krishnamurthy	ENABLE_SPMD_LP \
14725782b890SManish V Badarkhe	PSA_CRYPTO	\
147385bebe18SSandrine Bailleux	ENABLE_CONSOLE_GETC \
1474183329a5SArvind Ram Prakash	INIT_UNUSED_NS_EL2	\
1475bfef8b90SJuan Pablo Conde	PLATFORM_REPORT_CTX_MEM_USE \
1476ae770fedSYann Gautier	EARLY_CONSOLE \
1477f99a69c3SArvind Ram Prakash	PRESERVE_DSU_PMU_REGS \
14788953568aSLevi Yun	HOB_LIST \
1479327131c4SLeonardo Sandoval)))
14802fae4b1eSJeenu Viswambharan
1481bfef8b90SJuan Pablo Condeifeq (${PLATFORM_REPORT_CTX_MEM_USE}, 1)
1482bfef8b90SJuan Pablo Condeifeq (${DEBUG}, 0)
1483bfef8b90SJuan Pablo Conde        $(warning "PLATFORM_REPORT_CTX_MEM_USE can be applied when DEBUG=1 only")
1484bfef8b90SJuan Pablo Conde        override PLATFORM_REPORT_CTX_MEM_USE := 0
1485bfef8b90SJuan Pablo Condeendif
1486bfef8b90SJuan Pablo Condeendif
1487bfef8b90SJuan Pablo Conde
14881f461979SJustin Chadwellifeq (${SANITIZE_UB},trap)
14891f461979SJustin Chadwell        $(eval $(call add_define,MONITOR_TRAPS))
1490c5e1da83SJayanth Dodderi Chidanandendif #(SANITIZE_UB)
14911f461979SJustin Chadwell
14924c117f6cSSandrine Bailleux# Define the EL3_PAYLOAD_BASE flag only if it is provided.
14934c117f6cSSandrine Bailleuxifdef EL3_PAYLOAD_BASE
14944c117f6cSSandrine Bailleux        $(eval $(call add_define,EL3_PAYLOAD_BASE))
1495cf2c8a33SAntonio Nino Diazelse
149668450a6dSAntonio Nino Diaz# Define the PRELOADED_BL33_BASE flag only if it is provided and
149768450a6dSAntonio Nino Diaz# EL3_PAYLOAD_BASE is not defined, as it has priority.
149868450a6dSAntonio Nino Diaz	ifdef PRELOADED_BL33_BASE
149968450a6dSAntonio Nino Diaz                $(eval $(call add_define,PRELOADED_BL33_BASE))
15004c117f6cSSandrine Bailleux	endif
1501c5e1da83SJayanth Dodderi Chidanandendif #(EL3_PAYLOAD_BASE)
150273c99d4eSJuan Castillo
1503209a60ccSSoby Mathew# Define the DYN_DISABLE_AUTH flag only if set.
1504209a60ccSSoby Mathewifeq (${DYN_DISABLE_AUTH},1)
1505209a60ccSSoby Mathew        $(eval $(call add_define,DYN_DISABLE_AUTH))
1506209a60ccSSoby Mathewendif
1507209a60ccSSoby Mathew
15088620bd0bSChris Kayifeq ($($(ARCH)-ld-id),arm-link)
1509c2ad38ceSVarun Wadekar        $(eval $(call add_define,USE_ARM_LINK))
1510c2ad38ceSVarun Wadekarendif
1511c2ad38ceSVarun Wadekar
1512ce2b1ec6SManish Pandey# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
1513ce2b1ec6SManish Pandeyifeq (${SPD},spmd)
1514c33ff198SOlivier Deprezifdef SP_LAYOUT_FILE
1515ce2b1ec6SManish Pandey	-include $(BUILD_PLAT)/sp_gen.mk
1516ce2b1ec6SManish Pandey	FIP_DEPS += sp
151707c44475SManish Pandey	CRT_DEPS += sp
1518ce2b1ec6SManish Pandey	NEED_SP_PKG := yes
1519ce2b1ec6SManish Pandeyelse
1520c33ff198SOlivier Deprez	ifeq (${SPMD_SPM_AT_SEL2},1)
1521c33ff198SOlivier Deprez                $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1522c33ff198SOlivier Deprez	endif
1523c5e1da83SJayanth Dodderi Chidanandendif #(SP_LAYOUT_FILE)
1524c5e1da83SJayanth Dodderi Chidanandendif #(SPD)
1525ce2b1ec6SManish Pandey
152673c99d4eSJuan Castillo################################################################################
152773c99d4eSJuan Castillo# Build targets
152873c99d4eSJuan Castillo################################################################################
152973c99d4eSJuan Castillo
15302329e22bSHarrison 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
153173c99d4eSJuan Castillo
153273c99d4eSJuan Castilloall: msg_start
153373c99d4eSJuan Castillo
153473c99d4eSJuan Castillomsg_start:
15357c4e1eeaSChris Kay	$(s)echo "Building ${PLAT}"
153673c99d4eSJuan Castillo
15377a24cba5SSoby Mathewifeq (${ERROR_DEPRECATED},0)
1538d5dfdeb6SJulius Werner# Check if deprecated declarations and cpp warnings should be treated as error or not.
15398620bd0bSChris Kayifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
1540c2ad38ceSVarun Wadekar    CPPFLAGS		+= 	-Wno-error=deprecated-declarations
1541c2ad38ceSVarun Wadekarelse
1542bc1a03c7SDan Handley    CPPFLAGS		+= 	-Wno-error=deprecated-declarations -Wno-error=cpp
15437a24cba5SSoby Mathewendif
1544c5e1da83SJayanth Dodderi Chidanandendif #(!ERROR_DEPRECATED)
15457a24cba5SSoby Mathew
154661f72a34SRoberto Vargas$(eval $(call MAKE_LIB,c))
15475fee0287SRoberto Vargas
154873c99d4eSJuan Castillo# Expand build macros for the different images
154973c99d4eSJuan Castilloifeq (${NEED_BL1},yes)
1550b34635a0SChris KayBL1_SOURCES := $(sort ${BL1_SOURCES})
1551434d0491SZelalem Aweke$(eval $(call MAKE_BL,bl1))
1552c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL1)
155373c99d4eSJuan Castillo
155473c99d4eSJuan Castilloifeq (${NEED_BL2},yes)
1555c5e1da83SJayanth Dodderi Chidanand
155642d4d3baSArvind Ram Prakashifeq (${RESET_TO_BL2}, 0)
1557c9b31ae8SRoberto VargasFIP_BL2_ARGS := tb-fw
1558c9b31ae8SRoberto Vargasendif
1559c9b31ae8SRoberto Vargas
1560eb1acfb6SChris KayBL2_SOURCES := $(sort ${BL2_SOURCES})
1561eb1acfb6SChris Kay
156233950dd8SMasahiro Yamada$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
1563434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
1564c5e1da83SJayanth Dodderi Chidanand
1565c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL2)
156673c99d4eSJuan Castillo
15674d045d0eSMasahiro Yamadaifeq (${NEED_SCP_BL2},yes)
156833950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
1569c5e1da83SJayanth Dodderi Chidanandendif #(NEED_SCP_BL2)
15704d045d0eSMasahiro Yamada
157173c99d4eSJuan Castilloifeq (${NEED_BL31},yes)
157273c99d4eSJuan CastilloBL31_SOURCES += ${SPD_SOURCES}
157326d1e0c3SMadhukar Pappireddy# Sort BL31 source files to remove duplicates
157426d1e0c3SMadhukar PappireddyBL31_SOURCES := $(sort ${BL31_SOURCES})
1575c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1576c6ba9b45SSumit Garg$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
1577434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
1578c6ba9b45SSumit Gargelse
157933950dd8SMasahiro Yamada$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
1580434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl31,soc-fw)))
1581c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
1582c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL31)
158373c99d4eSJuan Castillo
158470d1fc53SJuan Castillo# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
1585c939d13aSMasahiro Yamada# build system will call TOOL_ADD_IMG to print a warning message and abort the
158670d1fc53SJuan Castillo# process. Note that the dependency on BL32 applies to the FIP only.
158773c99d4eSJuan Castilloifeq (${NEED_BL32},yes)
158826d1e0c3SMadhukar Pappireddy# Sort BL32 source files to remove duplicates
158926d1e0c3SMadhukar PappireddyBL32_SOURCES := $(sort ${BL32_SOURCES})
15909cd15239SMasahiro YamadaBUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
15919cd15239SMasahiro Yamada
1592c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1593434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
1594c6ba9b45SSumit Garg	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1595c6ba9b45SSumit Gargelse
1596434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
159733950dd8SMasahiro Yamada	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
1598c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
1599c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL32)
160073c99d4eSJuan Castillo
16015b18de09SZelalem Aweke# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
16025b18de09SZelalem Aweke# needs to be built from RMM_SOURCES.
16035b18de09SZelalem Awekeifeq (${NEED_RMM},yes)
16045b18de09SZelalem Aweke# Sort RMM source files to remove duplicates
16055b18de09SZelalem AwekeRMM_SOURCES := $(sort ${RMM_SOURCES})
16065b18de09SZelalem AwekeBUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
16075b18de09SZelalem Aweke
16085b18de09SZelalem Aweke$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
16095b18de09SZelalem Aweke	 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1610c5e1da83SJayanth Dodderi Chidanandendif #(NEED_RMM)
16115b18de09SZelalem Aweke
161273c99d4eSJuan Castillo# Add the BL33 image if required by the platform
161373c99d4eSJuan Castilloifeq (${NEED_BL33},yes)
161433950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
1615c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL33)
1616db6071c9SJuan Castillo
16179003fa0bSYatharth Kocharifeq (${NEED_BL2U},yes)
161833950dd8SMasahiro Yamada$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
1619434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
1620c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL2U)
16219003fa0bSYatharth Kochar
162203b397a8SNishanth Menon# Expand build macros for the different images
162303b397a8SNishanth Menonifeq (${NEED_FDT},yes)
162403b397a8SNishanth Menon    $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
1625c5e1da83SJayanth Dodderi Chidanandendif #(NEED_FDT)
162603b397a8SNishanth Menon
1627ce2b1ec6SManish Pandey# Add Secure Partition packages
1628ce2b1ec6SManish Pandeyifeq (${NEED_SP_PKG},yes)
1629fd74ca0dSChris Kay$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | $$(@D)/
16307c4e1eeaSChris Kay	$(q)${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
1631822c7279SJ-Alvessp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
16327c4e1eeaSChris Kay	$(s)echo
16337c4e1eeaSChris Kay	$(s)echo "Built SP Images successfully"
16347c4e1eeaSChris Kay	$(s)echo
1635c5e1da83SJayanth Dodderi Chidanandendif #(NEED_SP_PKG)
1636ce2b1ec6SManish Pandey
163736eaaf37SIan Spraylocate-checkpatch:
163836eaaf37SIan Sprayifndef CHECKPATCH
163966079b04SEtienne Carriere	$(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
164036eaaf37SIan Sprayelse
164136eaaf37SIan Sprayifeq (,$(wildcard ${CHECKPATCH}))
164266079b04SEtienne Carriere	$(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
164336eaaf37SIan Sprayendif
1644c5e1da83SJayanth Dodderi Chidanandendif #(CHECKPATCH)
164536eaaf37SIan Spray
16464f6ad66aSAchin Guptaclean:
16477c4e1eeaSChris Kay	$(s)echo "  CLEAN"
1648f1477d4aSEvan Lloyd	$(call SHELL_REMOVE_DIR,${BUILD_PLAT})
164988a1cf1eSSami Mujawarifdef UNIX_MK
16507c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
165188a1cf1eSSami Mujawarelse
165288a1cf1eSSami Mujawar# Clear the MAKEFLAGS as we do not want
165388a1cf1eSSami Mujawar# to pass the gnumake flags to nmake.
16547c4e1eeaSChris Kay	$(q)set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean
1655c5e1da83SJayanth Dodderi Chidanandendif #(UNIX_MK)
16567c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
16577c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
16587c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
16594f6ad66aSAchin Gupta
1660eaaeece2SJames Morrisseyrealclean distclean:
16617c4e1eeaSChris Kay	$(s)echo "  REALCLEAN"
1662f1477d4aSEvan Lloyd	$(call SHELL_REMOVE_DIR,${BUILD_BASE})
1663f1477d4aSEvan Lloyd	$(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
166488a1cf1eSSami Mujawarifdef UNIX_MK
16657c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
166688a1cf1eSSami Mujawarelse
166788a1cf1eSSami Mujawar# Clear the MAKEFLAGS as we do not want
166888a1cf1eSSami Mujawar# to pass the gnumake flags to nmake.
16697c4e1eeaSChris Kay	$(q)set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean
1670c5e1da83SJayanth Dodderi Chidanandendif #(UNIX_MK)
16717c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
16727c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
16737c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
16744f6ad66aSAchin Gupta
167536eaaf37SIan Spraycheckcodebase:		locate-checkpatch
16767c4e1eeaSChris Kay	$(s)echo "  CHECKING STYLE"
16777c4e1eeaSChris Kay	$(q)if test -d .git ; then						\
16781ef35512SPaul Beesley		git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' |	\
16791a41e8c1SDan Handley		while read GIT_FILE ;					\
16801a41e8c1SDan Handley		do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ;	\
16811a41e8c1SDan Handley		done ;							\
168236eaaf37SIan Spray	else								\
16831a41e8c1SDan Handley		 find . -type f -not -iwholename "*.git*"		\
16841a41e8c1SDan Handley		 -not -iwholename "*build*"				\
16851a41e8c1SDan Handley		 -not -iwholename "*libfdt*"				\
168661f72a34SRoberto Vargas		 -not -iwholename "*libc*"				\
16871a41e8c1SDan Handley		 -not -iwholename "*docs*"				\
16881ef35512SPaul Beesley		 -not -iwholename "*.rst"				\
16891a41e8c1SDan Handley		 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ;	\
169036eaaf37SIan Spray	fi
169136eaaf37SIan Spray
169236eaaf37SIan Spraycheckpatch:		locate-checkpatch
16937c4e1eeaSChris Kay	$(s)echo "  CHECKING STYLE"
16947c4e1eeaSChris Kay	$(q)if test -n "${CHECKPATCH_OPTS}"; then				\
169502a76d5fSYann Gautier		echo "    with ${CHECKPATCH_OPTS} option(s)";		\
169602a76d5fSYann Gautier	fi
16977c4e1eeaSChris Kay	$(q)COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT});	\
169877a0a7f1SYann Gautier	for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`;	\
169977a0a7f1SYann Gautier	do								\
170051d28937SAntonio Nino Diaz		printf "\n[*] Checking style of '$$commit'\n\n";	\
17011a721748SYann Gautier		( git log --format=email "$$commit~..$$commit"		\
17021a721748SYann Gautier			-- ${CHECK_PATHS} ;				\
170351d28937SAntonio Nino Diaz		  git diff --format=email "$$commit~..$$commit"		\
17041a721748SYann Gautier			-- ${CHECK_PATHS}; ) |				\
170502a76d5fSYann Gautier			${CHECKPATCH}  ${CHECKPATCH_OPTS} - || true;	\
170651d28937SAntonio Nino Diaz	done
170736eaaf37SIan Spray
170873c99d4eSJuan Castillocerttool: ${CRTTOOL}
170973c99d4eSJuan Castillo
1710a9812206SPali Rohár${CRTTOOL}: FORCE
17117c4e1eeaSChris 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
17127c4e1eeaSChris Kay	$(s)echo
17137c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17147c4e1eeaSChris Kay	$(s)echo
17156f971622SJuan Castillo
17166f971622SJuan Castilloifneq (${GENERATE_COT},0)
171773c99d4eSJuan Castillocertificates: ${CRT_DEPS} ${CRTTOOL}
17187c4e1eeaSChris Kay	$(q)${CRTTOOL} ${CRT_ARGS}
17197c4e1eeaSChris Kay	$(s)echo
17207c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17217c4e1eeaSChris Kay	$(s)echo "Certificates can be found in ${BUILD_PLAT}"
17227c4e1eeaSChris Kay	$(s)echo
1723c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
172427713fb4SSoby Mathew
172573c99d4eSJuan Castillo${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
17264727fd13SPali Rohár	$(eval ${CHECK_FIP_CMD})
17277c4e1eeaSChris Kay	$(q)${FIPTOOL} create ${FIP_ARGS} $@
17287c4e1eeaSChris Kay	$(q)${FIPTOOL} info $@
17297c4e1eeaSChris Kay	$(s)echo
17307c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17317c4e1eeaSChris Kay	$(s)echo
1732f58ad36fSHarry Liebel
17330191262dSYatharth Kocharifneq (${GENERATE_COT},0)
17340191262dSYatharth Kocharfwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
17357c4e1eeaSChris Kay	$(q)${CRTTOOL} ${FWU_CRT_ARGS}
17367c4e1eeaSChris Kay	$(s)echo
17377c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17387c4e1eeaSChris Kay	$(s)echo "FWU certificates can be found in ${BUILD_PLAT}"
17397c4e1eeaSChris Kay	$(s)echo
1740c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
17410191262dSYatharth Kochar
17420191262dSYatharth Kochar${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
17434727fd13SPali Rohár	$(eval ${CHECK_FWU_FIP_CMD})
17447c4e1eeaSChris Kay	$(q)${FIPTOOL} create ${FWU_FIP_ARGS} $@
17457c4e1eeaSChris Kay	$(q)${FIPTOOL} info $@
17467c4e1eeaSChris Kay	$(s)echo
17477c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17487c4e1eeaSChris Kay	$(s)echo
17490191262dSYatharth Kochar
175073c99d4eSJuan Castillofiptool: ${FIPTOOL}
175173c99d4eSJuan Castillofip: ${BUILD_PLAT}/${FIP_NAME}
17520191262dSYatharth Kocharfwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
175373c99d4eSJuan Castillo
1754a9812206SPali Rohár${FIPTOOL}: FORCE
175588a1cf1eSSami Mujawarifdef UNIX_MK
175640469bf9SManish V Badarkhe	$(q)${MAKE} PLAT=${PLAT} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} --no-print-directory -C ${FIPTOOLPATH} all
175788a1cf1eSSami Mujawarelse
175888a1cf1eSSami Mujawar# Clear the MAKEFLAGS as we do not want
175988a1cf1eSSami Mujawar# to pass the gnumake flags to nmake.
17607c4e1eeaSChris Kay	$(q)set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
1761c5e1da83SJayanth Dodderi Chidanandendif #(UNIX_MK)
1762f58ad36fSHarry Liebel
1763e4a070e3SManish V Badarkhe$(BUILD_PLAT)/romlib/romlib.bin $(BUILD_PLAT)/lib/libwrappers.a $&: $(BUILD_PLAT)/lib/libfdt.a $(BUILD_PLAT)/lib/libc.a $(CRYPTO_LIB)
1764e4a070e3SManish 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
17655accce5bSRoberto Vargas
1766cfe83910SLouis Mayencourtmemmap: all
1767af5b49e9SHarrison Mutaiifdef UNIX_MK
17687c4e1eeaSChris Kay	$(q)PYTHONPATH=${CURDIR}/tools/memory \
1769af5b49e9SHarrison Mutai		${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1770af5b49e9SHarrison Mutaielse
17717c4e1eeaSChris Kay	$(q)set PYTHONPATH=${CURDIR}/tools/memory && \
1772af5b49e9SHarrison Mutai		${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1773af5b49e9SHarrison Mutaiendif
1774cfe83910SLouis Mayencourt
17752329e22bSHarrison Mutaitl: ${BUILD_PLAT}/tl.bin
17762329e22bSHarrison Mutai${BUILD_PLAT}/tl.bin: ${HW_CONFIG}
1777d2867397SChris Kay	$(if $(host-poetry),$(q)poetry -q install)
1778d2867397SChris Kay	$(q)$(if $(host-poetry),poetry run )tlc create --fdt $< -s ${FW_HANDOFF_SIZE} $@
17792329e22bSHarrison Mutai
17806de32378SMadhukar Pappireddydoc:
17817c4e1eeaSChris Kay	$(s)echo "  BUILD DOCUMENTATION"
17827c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${DOCS_PATH} html
17836de32378SMadhukar Pappireddy
178490aa901fSSumit Gargenctool: ${ENCTOOL}
178590aa901fSSumit Garg
1786a9812206SPali Rohár${ENCTOOL}: FORCE
17877c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} --no-print-directory -C ${ENCTOOLPATH} all
17887c4e1eeaSChris Kay	$(s)echo
17897c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17907c4e1eeaSChris Kay	$(s)echo
179190aa901fSSumit Garg
179235fab8c9SJoakim Bechcscope:
17937c4e1eeaSChris Kay	$(s)echo "  CSCOPE"
17947c4e1eeaSChris Kay	$(q)find ${CURDIR} -name "*.[chsS]" > cscope.files
17957c4e1eeaSChris Kay	$(q)cscope -b -q -k
179635fab8c9SJoakim Bech
179772ee3314SRyan Harkinhelp:
17987c4e1eeaSChris Kay	$(s)echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
17997c4e1eeaSChris Kay	$(s)echo ""
18007c4e1eeaSChris Kay	$(s)echo "PLAT is used to specify which platform you wish to build."
18017c4e1eeaSChris Kay	$(s)echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
18027c4e1eeaSChris Kay	$(s)echo ""
18037c4e1eeaSChris Kay	$(s)echo "platform = ${PLATFORM_LIST}"
18047c4e1eeaSChris Kay	$(s)echo ""
18057c4e1eeaSChris Kay	$(s)echo "Please refer to the User Guide for a list of all supported options."
18067c4e1eeaSChris Kay	$(s)echo "Note that the build system doesn't track dependencies for build "
18077c4e1eeaSChris Kay	$(s)echo "options. Therefore, if any of the build options are changed "
18087c4e1eeaSChris Kay	$(s)echo "from a previous build, a clean build must be performed."
18097c4e1eeaSChris Kay	$(s)echo ""
18107c4e1eeaSChris Kay	$(s)echo "Supported Targets:"
18117c4e1eeaSChris Kay	$(s)echo "  all            Build all individual bootloader binaries"
18127c4e1eeaSChris Kay	$(s)echo "  bl1            Build the BL1 binary"
18137c4e1eeaSChris Kay	$(s)echo "  bl2            Build the BL2 binary"
18147c4e1eeaSChris Kay	$(s)echo "  bl2u           Build the BL2U binary"
18157c4e1eeaSChris Kay	$(s)echo "  bl31           Build the BL31 binary"
18167c4e1eeaSChris Kay	$(s)echo "  bl32           Build the BL32 binary. If ARCH=aarch32, then "
18177c4e1eeaSChris Kay	$(s)echo "                 this builds secure payload specified by AARCH32_SP"
18187c4e1eeaSChris Kay	$(s)echo "  certificates   Build the certificates (requires 'GENERATE_COT=1')"
18197c4e1eeaSChris Kay	$(s)echo "  fip            Build the Firmware Image Package (FIP)"
18207c4e1eeaSChris Kay	$(s)echo "  fwu_fip        Build the FWU Firmware Image Package (FIP)"
18217c4e1eeaSChris Kay	$(s)echo "  checkcodebase  Check the coding style of the entire source tree"
18227c4e1eeaSChris Kay	$(s)echo "  checkpatch     Check the coding style on changes in the current"
18237c4e1eeaSChris Kay	$(s)echo "                 branch against BASE_COMMIT (default origin/master)"
18247c4e1eeaSChris Kay	$(s)echo "  clean          Clean the build for the selected platform"
18257c4e1eeaSChris Kay	$(s)echo "  cscope         Generate cscope index"
18267c4e1eeaSChris Kay	$(s)echo "  distclean      Remove all build artifacts for all platforms"
18277c4e1eeaSChris Kay	$(s)echo "  certtool       Build the Certificate generation tool"
18287c4e1eeaSChris Kay	$(s)echo "  enctool        Build the Firmware encryption tool"
18297c4e1eeaSChris Kay	$(s)echo "  fiptool        Build the Firmware Image Package (FIP) creation tool"
18307c4e1eeaSChris Kay	$(s)echo "  sp             Build the Secure Partition Packages"
18317c4e1eeaSChris Kay	$(s)echo "  sptool         Build the Secure Partition Package creation tool"
18327c4e1eeaSChris Kay	$(s)echo "  dtbs           Build the Device Tree Blobs (if required for the platform)"
18337c4e1eeaSChris Kay	$(s)echo "  memmap         Print the memory map of the built binaries"
18347c4e1eeaSChris Kay	$(s)echo "  doc            Build html based documentation using Sphinx tool"
18357c4e1eeaSChris Kay	$(s)echo ""
18367c4e1eeaSChris Kay	$(s)echo "Note: most build targets require PLAT to be set to a specific platform."
18377c4e1eeaSChris Kay	$(s)echo ""
18387c4e1eeaSChris Kay	$(s)echo "example: build all targets for the FVP platform:"
18397c4e1eeaSChris Kay	$(s)echo "  CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
1840a9812206SPali Rohár
1841a9812206SPali Rohár.PHONY: FORCE
1842a9812206SPali RohárFORCE:;
1843