xref: /rk3399_ARM-atf/Makefile (revision c32737033cf2b0ae9649a08273c07b739d368818)
14f6ad66aSAchin Gupta#
2*c3273703SChris Kay# Copyright (c) 2013-2025, Arm Limited and Contributors. All rights reserved.
34f6ad66aSAchin Gupta#
482cb2c1aSdp-arm# SPDX-License-Identifier: BSD-3-Clause
54f6ad66aSAchin Gupta#
64f6ad66aSAchin Gupta
7e35c4045SJeenu Viswambharan#
8aaa3e722SJuan Castillo# Trusted Firmware Version
9aaa3e722SJuan Castillo#
101a0f1121SSoby MathewVERSION_MAJOR			:= 2
1107a6a654SGovindraj RajaVERSION_MINOR			:= 12
12c25d1ccfSYann Gautier# VERSION_PATCH is only used for LTS releases
13c25d1ccfSYann GautierVERSION_PATCH			:= 0
14055ebecaSYann GautierVERSION				:= ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}
15aaa3e722SJuan Castillo
1688154678SJuan Castillo# Default goal is build all images
1788154678SJuan Castillo.DEFAULT_GOAL			:= all
1888154678SJuan Castillo
1972fc70edSDouglas Raillard# Avoid any implicit propagation of command line variable definitions to
2072fc70edSDouglas Raillard# sub-Makefiles, like CFLAGS that we reserved for the firmware images'
2172fc70edSDouglas Raillard# usage. Other command line options like "-s" are still propagated as usual.
2272fc70edSDouglas RaillardMAKEOVERRIDES =
2372fc70edSDouglas Raillard
24231c1470SEvan LloydMAKE_HELPERS_DIRECTORY := make_helpers/
25231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_macros.mk
26f4dd18c2SChris Kayinclude ${MAKE_HELPERS_DIRECTORY}build-rules.mk
277c4e1eeaSChris Kayinclude ${MAKE_HELPERS_DIRECTORY}common.mk
2873c99d4eSJuan Castillo
2973c99d4eSJuan Castillo################################################################################
302fae4b1eSJeenu Viswambharan# Default values for build configurations, and their dependencies
3173c99d4eSJuan Castillo################################################################################
32e35c4045SJeenu Viswambharan
332fae4b1eSJeenu Viswambharaninclude ${MAKE_HELPERS_DIRECTORY}defaults.mk
341b2fb6adSAndrey Skvortsovinclude ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
351b2fb6adSAndrey Skvortsov
361b2fb6adSAndrey Skvortsov# To be able to set platform specific defaults
371b2fb6adSAndrey Skvortsovifneq ($(PLAT_DEFAULTS_MAKEFILE_FULL),)
381b2fb6adSAndrey Skvortsovinclude ${PLAT_DEFAULTS_MAKEFILE_FULL}
391b2fb6adSAndrey Skvortsovendif
40872be88aSdp-arm
41cc277de8SChris Kay################################################################################
42cc277de8SChris Kay# Configure the toolchains used to build TF-A and its tools
43cc277de8SChris Kay################################################################################
44cc277de8SChris Kay
45cc277de8SChris Kayinclude ${MAKE_HELPERS_DIRECTORY}toolchain.mk
46cc277de8SChris Kay
47cc8b5632SAntonio Nino Diaz# Assertions enabled for DEBUG builds by default
48cc8b5632SAntonio Nino DiazENABLE_ASSERTIONS		:= ${DEBUG}
492fae4b1eSJeenu ViswambharanENABLE_PMF			:= ${ENABLE_RUNTIME_INSTRUMENTATION}
5073c99d4eSJuan Castillo
5173c99d4eSJuan Castillo################################################################################
5273c99d4eSJuan Castillo# Checkpatch script options
5373c99d4eSJuan Castillo################################################################################
5473c99d4eSJuan Castillo
55f607739cSSandrine BailleuxCHECKCODE_ARGS		:=	--no-patch
56f0b489c1SDan Handley# Do not check the coding style on imported library files or documentation files
574501843fSGilad Ben-YossefINC_DRV_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
584501843fSGilad Ben-Yossef					include/drivers/arm,		\
594501843fSGilad Ben-Yossef					$(wildcard include/drivers/*)))
60f0b489c1SDan HandleyINC_LIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
611a41e8c1SDan Handley					include/lib/libfdt		\
6261f72a34SRoberto Vargas					include/lib/libc,		\
63f0b489c1SDan Handley					$(wildcard include/lib/*)))
64f0b489c1SDan HandleyINC_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
654501843fSGilad Ben-Yossef					include/lib			\
664501843fSGilad Ben-Yossef					include/drivers,		\
67f0b489c1SDan Handley					$(wildcard include/*)))
68f0b489c1SDan HandleyLIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
69d801fbb0Sdp-arm					lib/compiler-rt			\
7055cdcf75SAntonio Nino Diaz					lib/libfdt%			\
7161f72a34SRoberto Vargas					lib/libc,			\
72a194255dSDaniel Boulby					lib/zlib			\
73f0b489c1SDan Handley					$(wildcard lib/*)))
74f0b489c1SDan HandleyROOT_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
75f0b489c1SDan Handley					lib				\
76f0b489c1SDan Handley					include				\
77f0b489c1SDan Handley					docs				\
781ef35512SPaul Beesley					%.rst,				\
79f0b489c1SDan Handley					$(wildcard *)))
80f0b489c1SDan HandleyCHECK_PATHS		:=	${ROOT_DIRS_TO_CHECK}			\
81f0b489c1SDan Handley				${INC_DIRS_TO_CHECK}			\
82f0b489c1SDan Handley				${INC_LIB_DIRS_TO_CHECK}		\
834501843fSGilad Ben-Yossef				${LIB_DIRS_TO_CHECK}			\
844501843fSGilad Ben-Yossef				${INC_DRV_DIRS_TO_CHECK}		\
854501843fSGilad Ben-Yossef				${INC_ARM_DIRS_TO_CHECK}
8636eaaf37SIan Spray
8773c99d4eSJuan Castillo################################################################################
8873c99d4eSJuan Castillo# Process build options
8973c99d4eSJuan Castillo################################################################################
9073c99d4eSJuan Castillo
917c4e1eeaSChris Kayifeq ($(verbose),)
9236eaaf37SIan Spray	CHECKCODE_ARGS	+=	--no-summary --terse
934f6ad66aSAchin Guptaendif
94ee1ba6d4SAndre Przywara
9573c99d4eSJuan Castillo################################################################################
96c5e1da83SJayanth Dodderi Chidanand# Auxiliary tools (fiptool, cert_create, etc)
97c5e1da83SJayanth Dodderi Chidanand################################################################################
98c5e1da83SJayanth Dodderi Chidanand
99c5e1da83SJayanth Dodderi Chidanand# Variables for use with Certificate Generation Tool
100c5e1da83SJayanth Dodderi ChidanandCRTTOOLPATH		?=	tools/cert_create
101*c3273703SChris KayCRTTOOL			?=	${CRTTOOLPATH}/cert_create$(.exe)
102c5e1da83SJayanth Dodderi Chidanand
103c5e1da83SJayanth Dodderi Chidanand# Variables for use with Firmware Encryption Tool
104c5e1da83SJayanth Dodderi ChidanandENCTOOLPATH		?=	tools/encrypt_fw
105*c3273703SChris KayENCTOOL			?=	${ENCTOOLPATH}/encrypt_fw$(.exe)
106c5e1da83SJayanth Dodderi Chidanand
107c5e1da83SJayanth Dodderi Chidanand# Variables for use with Firmware Image Package
108c5e1da83SJayanth Dodderi ChidanandFIPTOOLPATH		?=	tools/fiptool
109*c3273703SChris KayFIPTOOL			?=	${FIPTOOLPATH}/fiptool$(.exe)
110c5e1da83SJayanth Dodderi Chidanand
111c5e1da83SJayanth Dodderi Chidanand# Variables for use with sptool
112c5e1da83SJayanth Dodderi ChidanandSPTOOLPATH		?=	tools/sptool
113c5e1da83SJayanth Dodderi ChidanandSPTOOL			?=	${SPTOOLPATH}/sptool.py
114c5e1da83SJayanth Dodderi ChidanandSP_MK_GEN		?=	${SPTOOLPATH}/sp_mk_generator.py
11520629b31SKarl MeakinSP_DTS_LIST_FRAGMENT	?=	${BUILD_PLAT}/sp_list_fragment.dts
116c5e1da83SJayanth Dodderi Chidanand
117c5e1da83SJayanth Dodderi Chidanand# Variables for use with ROMLIB
118c5e1da83SJayanth Dodderi ChidanandROMLIBPATH		?=	lib/romlib
119c5e1da83SJayanth Dodderi Chidanand
120c5e1da83SJayanth Dodderi Chidanand# Variable for use with Python
121c5e1da83SJayanth Dodderi ChidanandPYTHON			?=	python3
122c5e1da83SJayanth Dodderi Chidanand
123c5e1da83SJayanth Dodderi Chidanand# Variables for use with documentation build using Sphinx tool
124c5e1da83SJayanth Dodderi ChidanandDOCS_PATH		?=	docs
125c5e1da83SJayanth Dodderi Chidanand
126c5e1da83SJayanth Dodderi Chidanand################################################################################
127c5e1da83SJayanth Dodderi Chidanand# Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags
128c5e1da83SJayanth Dodderi Chidanand################################################################################
12926e63c44SEtienne Carriereifeq (${ARM_ARCH_MAJOR},7)
13026e63c44SEtienne Carriere	target32-directive	= 	-target arm-none-eabi
131d4089fb8SGovindraj Raja# Will set march-directive from platform configuration
13226e63c44SEtienne Carriereelse
13326e63c44SEtienne Carriere	target32-directive	= 	-target armv8a-none-eabi
134c5e1da83SJayanth Dodderi Chidanandendif #(ARM_ARCH_MAJOR)
135c5e1da83SJayanth Dodderi Chidanand
136c5e1da83SJayanth Dodderi Chidanand################################################################################
137c5e1da83SJayanth Dodderi Chidanand# Get Architecture Feature Modifiers
138c5e1da83SJayanth Dodderi Chidanand################################################################################
139c5e1da83SJayanth Dodderi Chidanandarch-features		=	${ARM_ARCH_FEATURE}
140c5e1da83SJayanth Dodderi Chidanand
1418620bd0bSChris Kayifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
1428620bd0bSChris Kay	ifeq ($($(ARCH)-cc-id),arm-clang)
1437794d6c8SGovindraj Raja		TF_CFLAGS_aarch32	:=	-target arm-arm-none-eabi
1447794d6c8SGovindraj Raja		TF_CFLAGS_aarch64	:=	-target aarch64-arm-none-eabi
145c8a992fdSorigin	else
1467794d6c8SGovindraj Raja		TF_CFLAGS_aarch32	=	$(target32-directive)
1477794d6c8SGovindraj Raja		TF_CFLAGS_aarch64	:=	-target aarch64-elf
148641f16e7SAmbroise Vincent	endif
149c8a992fdSorigin
1508620bd0bSChris Kayelse ifeq ($($(ARCH)-cc-id),gnu-gcc)
151edbce9aaSzelalem-aweke	# Enable LTO only for aarch64
152edbce9aaSzelalem-aweke	ifeq (${ARCH},aarch64)
153fa402f38SChris Kay		LTO_CFLAGS	=	$(if $(filter-out 0,$(ENABLE_LTO)),-flto)
154edbce9aaSzelalem-aweke	endif
155c5e1da83SJayanth Dodderi Chidanandendif #(clang)
156d5461857Sdp-arm
15732b209bfSAhmad Fatoum# Process Debug flag
15832b209bfSAhmad Fatoum$(eval $(call add_define,DEBUG))
15932b209bfSAhmad Fatoumifneq (${DEBUG}, 0)
16032b209bfSAhmad Fatoum	BUILD_TYPE	:=	debug
1614466cf82SDaniel Boulby	TF_CFLAGS	+=	-g -gdwarf-4
1624466cf82SDaniel Boulby	ASFLAGS		+=	-g -Wa,-gdwarf-4
16332b209bfSAhmad Fatoum
16432b209bfSAhmad Fatoum	# Use LOG_LEVEL_INFO by default for debug builds
16532b209bfSAhmad Fatoum	LOG_LEVEL	:=	40
16632b209bfSAhmad Fatoumelse
16732b209bfSAhmad Fatoum	BUILD_TYPE	:=	release
16832b209bfSAhmad Fatoum	# Use LOG_LEVEL_NOTICE by default for release builds
16932b209bfSAhmad Fatoum	LOG_LEVEL	:=	20
170c5e1da83SJayanth Dodderi Chidanandendif #(Debug)
17132b209bfSAhmad Fatoum
172f1de4c8fSPeiyuan Song# Default build string (git branch and commit)
173f1de4c8fSPeiyuan Songifeq (${BUILD_STRING},)
174f1de4c8fSPeiyuan Song	BUILD_STRING  :=  $(shell git describe --always --dirty --tags 2> /dev/null)
175f1de4c8fSPeiyuan Songendif
176dddf4283Slaurenw-armVERSION_STRING    :=  v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
177f1de4c8fSPeiyuan Song
1788fd9d4d5SAntonio Nino Diazifeq (${AARCH32_INSTRUCTION_SET},A32)
1798fd9d4d5SAntonio Nino Diaz	TF_CFLAGS_aarch32	+=	-marm
1808fd9d4d5SAntonio Nino Diazelse ifeq (${AARCH32_INSTRUCTION_SET},T32)
1818fd9d4d5SAntonio Nino Diaz	TF_CFLAGS_aarch32	+=	-mthumb
1828fd9d4d5SAntonio Nino Diazelse
1838fd9d4d5SAntonio Nino Diaz        $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
184c5e1da83SJayanth Dodderi Chidanandendif #(AARCH32_INSTRUCTION_SET)
1858fd9d4d5SAntonio Nino Diaz
186a9c4dde3SSandrine BailleuxTF_CFLAGS_aarch32	+=	-mno-unaligned-access
187d5461857Sdp-armTF_CFLAGS_aarch64	+=	-mgeneral-regs-only -mstrict-align
1889d29c227SSoby Mathew
189c5e1da83SJayanth Dodderi Chidanand##############################################################################
190c5e1da83SJayanth Dodderi Chidanand# WARNINGS Configuration
191c5e1da83SJayanth Dodderi Chidanand###############################################################################
1929ab81b5eSJustin Chadwell# General warnings
1939ab81b5eSJustin ChadwellWARNINGS		:=	-Wall -Wmissing-include-dirs -Wunused	\
194b7f6525dSJustin Chadwell				-Wdisabled-optimization -Wvla -Wshadow	\
195d75a9ecdSBoyan Karatotev				-Wredundant-decls
196d75a9ecdSBoyan Karatotev# stricter warnings
197d75a9ecdSBoyan KaratotevWARNINGS		+=	-Wextra -Wno-trigraphs
198d75a9ecdSBoyan Karatotev# too verbose for generic build
199d75a9ecdSBoyan KaratotevWARNINGS		+=	-Wno-missing-field-initializers \
200d75a9ecdSBoyan Karatotev				-Wno-type-limits -Wno-sign-compare \
201d75a9ecdSBoyan Karatotev# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
202d75a9ecdSBoyan KaratotevWARNINGS		+=	-Wno-unused-parameter
2039ab81b5eSJustin Chadwell
2049ab81b5eSJustin Chadwell# Additional warnings
205d75a9ecdSBoyan Karatotev# Level 1 - infrequent warnings we should have none of
206d75a9ecdSBoyan Karatotev# full -Wextra
207d75a9ecdSBoyan KaratotevWARNING1 += -Wsign-compare
208d75a9ecdSBoyan KaratotevWARNING1 += -Wtype-limits
209d75a9ecdSBoyan KaratotevWARNING1 += -Wmissing-field-initializers
210e7c645b5SYann Gautier
211d75a9ecdSBoyan Karatotev# Level 2 - problematic warnings that we want
212d75a9ecdSBoyan Karatotev# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
213d75a9ecdSBoyan Karatotev# TODO: disable just for them and move into default build
214d75a9ecdSBoyan KaratotevWARNING2 += -Wold-style-definition
215d75a9ecdSBoyan KaratotevWARNING2 += -Wmissing-prototypes
216d75a9ecdSBoyan KaratotevWARNING2 += -Wmissing-format-attribute
217d75a9ecdSBoyan Karatotev# TF-A aims to comply with this eventually. Effort too large at present
218d75a9ecdSBoyan KaratotevWARNING2 += -Wundef
219d141e638SBoyan Karatotev# currently very involved and many platforms set this off
220d141e638SBoyan KaratotevWARNING2 += -Wunused-const-variable=2
221e7c645b5SYann Gautier
222d75a9ecdSBoyan Karatotev# Level 3 - very pedantic, frequently ignored
223e7c645b5SYann GautierWARNING3 := -Wbad-function-cast
224d75a9ecdSBoyan KaratotevWARNING3 += -Waggregate-return
225d75a9ecdSBoyan KaratotevWARNING3 += -Wnested-externs
226d75a9ecdSBoyan KaratotevWARNING3 += -Wcast-align
227e7c645b5SYann GautierWARNING3 += -Wcast-qual
228e7c645b5SYann GautierWARNING3 += -Wconversion
229e7c645b5SYann GautierWARNING3 += -Wpacked
230e7c645b5SYann GautierWARNING3 += -Wpointer-arith
231e7c645b5SYann GautierWARNING3 += -Wswitch-default
232e7c645b5SYann Gautier
233d75a9ecdSBoyan Karatotev# Setting W is quite verbose and most warnings will be pre-existing issues
234d75a9ecdSBoyan Karatotev# outside of the contributor's control. Don't fail the build on them so warnings
235d75a9ecdSBoyan Karatotev# can be seen and hopefully addressed
236d75a9ecdSBoyan Karatotevifdef W
237d75a9ecdSBoyan Karatotev	ifneq (${W},0)
238d75a9ecdSBoyan Karatotev		E	 ?= 0
239d75a9ecdSBoyan Karatotev	endif
240d75a9ecdSBoyan Karatotevendif
241d75a9ecdSBoyan Karatotev
242e7c645b5SYann Gautierifeq (${W},1)
2439ab81b5eSJustin Chadwell	WARNINGS += $(WARNING1)
244e7c645b5SYann Gautierelse ifeq (${W},2)
2459ab81b5eSJustin Chadwell	WARNINGS += $(WARNING1) $(WARNING2)
246e7c645b5SYann Gautierelse ifeq (${W},3)
2479ab81b5eSJustin Chadwell	WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
248c5e1da83SJayanth Dodderi Chidanandendif #(W)
249e7c645b5SYann Gautier
2509ab81b5eSJustin Chadwell# Compiler specific warnings
2518620bd0bSChris Kayifeq ($(filter %-clang,$($(ARCH)-cc-id)),)
25293c690ebSJustin Chadwell# not using clang
253d7b4cd41SJustin ChadwellWARNINGS	+=		-Wunused-but-set-variable -Wmaybe-uninitialized	\
254d7b4cd41SJustin Chadwell				-Wpacked-bitfield-compat -Wshift-overflow=2 \
255d7b4cd41SJustin Chadwell				-Wlogical-op
256dea23e24SGovindraj Raja
257dea23e24SGovindraj Raja# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
258316f5c97SBoyan KaratotevTF_CFLAGS_MIN_PAGE_SIZE	:=	$(call cc_option, --param=min-pagesize=0)
259316f5c97SBoyan KaratotevTF_CFLAGS		+=	$(TF_CFLAGS_MIN_PAGE_SIZE)
260dea23e24SGovindraj Raja
261538516f5SBipin Raviifeq ($(HARDEN_SLS), 1)
262316f5c97SBoyan Karatotev        TF_CFLAGS_MHARDEN_SLS	:=      $(call cc_option, -mharden-sls=all)
263316f5c97SBoyan Karatotev        TF_CFLAGS_aarch64	+=      $(TF_CFLAGS_MHARDEN_SLS)
264538516f5SBipin Raviendif
265538516f5SBipin Ravi
26693c690ebSJustin Chadwellelse
26793c690ebSJustin Chadwell# using clang
268d7b4cd41SJustin ChadwellWARNINGS	+=		-Wshift-overflow -Wshift-sign-overflow \
269d7b4cd41SJustin Chadwell				-Wlogical-op-parentheses
270c5e1da83SJayanth Dodderi Chidanandendif #(Clang Warning)
27100296576SAmbroise Vincent
2726336b07aSYann Gautierifneq (${E},0)
2736336b07aSYann Gautier	ERRORS := -Werror
274c5e1da83SJayanth Dodderi Chidanandendif #(E)
2756336b07aSYann Gautier
276c5e1da83SJayanth Dodderi Chidanand################################################################################
277c5e1da83SJayanth Dodderi Chidanand# Compiler and Linker Directives
278c5e1da83SJayanth Dodderi Chidanand################################################################################
279ea7a57a3SRoberto VargasCPPFLAGS		=	${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc	\
2809ab81b5eSJustin Chadwell				$(ERRORS) $(WARNINGS)
281d4089fb8SGovindraj RajaASFLAGS			+=	$(CPPFLAGS)                 			\
282d5dfdeb6SJulius Werner				-ffreestanding -Wa,--fatal-warnings
28359de5096SMasahiro YamadaTF_CFLAGS		+=	$(CPPFLAGS) $(TF_CFLAGS_$(ARCH))		\
284ebd6efaeSSamuel Holland				-ffunction-sections -fdata-sections		\
285ee0c5b8cSBoyan Karatotev				-ffreestanding -fno-common			\
286ebd6efaeSSamuel Holland				-Os -std=gnu99
28773c99d4eSJuan Castillo
2881f461979SJustin Chadwellifeq (${SANITIZE_UB},on)
2891f461979SJustin Chadwell	TF_CFLAGS	+=	-fsanitize=undefined -fno-sanitize-recover
290c5e1da83SJayanth Dodderi Chidanandendif #(${SANITIZE_UB},on)
291c5e1da83SJayanth Dodderi Chidanand
2921f461979SJustin Chadwellifeq (${SANITIZE_UB},trap)
2931f461979SJustin Chadwell	TF_CFLAGS	+=	-fsanitize=undefined -fno-sanitize-recover	\
2941f461979SJustin Chadwell				-fsanitize-undefined-trap-on-error
295c5e1da83SJayanth Dodderi Chidanandendif #(${SANITIZE_UB},trap)
2961f461979SJustin Chadwell
297291e7182SChris KayGCC_V_OUTPUT		:=	$(if $($(ARCH)-cc),$(shell $($(ARCH)-cc) -v 2>&1))
298f7ec31dbSdavid cunado
2991f49db5fSMarco FelschTF_LDFLAGS		+=	-z noexecstack
3001f49db5fSMarco Felsch
301641f16e7SAmbroise Vincent# LD = armlink
3028620bd0bSChris Kayifeq ($($(ARCH)-ld-id),arm-link)
303c2ad38ceSVarun Wadekar	TF_LDFLAGS		+=	--diag_error=warning --lto_level=O1
304c2ad38ceSVarun Wadekar	TF_LDFLAGS		+=	--remove --info=unused,unusedsymbols
305edbce9aaSzelalem-aweke	TF_LDFLAGS		+=	$(TF_LDFLAGS_$(ARCH))
306641f16e7SAmbroise Vincent
307641f16e7SAmbroise Vincent# LD = gcc (used when GCC LTO is enabled)
3088620bd0bSChris Kayelse ifeq ($($(ARCH)-ld-id),gnu-gcc)
309edbce9aaSzelalem-aweke	# Pass ld options with Wl or Xlinker switches
31086e489c1SChris Kay	TF_LDFLAGS		+=	$(call ld_option,-Xlinker --no-warn-rwx-segments)
311edbce9aaSzelalem-aweke	TF_LDFLAGS		+=	-Wl,--fatal-warnings -O1
312edbce9aaSzelalem-aweke	TF_LDFLAGS		+=	-Wl,--gc-sections
313ac98b82aSChris Kay
314ac98b82aSChris Kay	TF_LDFLAGS		+=	-Wl,-z,common-page-size=4096 #Configure page size constants
315ac98b82aSChris Kay	TF_LDFLAGS		+=	-Wl,-z,max-page-size=4096
316304ad94bSAndrey Skvortsov	TF_LDFLAGS		+=	-Wl,--build-id=none
317ac98b82aSChris Kay
318edbce9aaSzelalem-aweke	ifeq ($(ENABLE_LTO),1)
319edbce9aaSzelalem-aweke		ifeq (${ARCH},aarch64)
320edbce9aaSzelalem-aweke			TF_LDFLAGS	+=	-flto -fuse-linker-plugin
32131f80efeSAndrey Skvortsov			TF_LDFLAGS      +=	-flto-partition=one
322edbce9aaSzelalem-aweke		endif
323c5e1da83SJayanth Dodderi Chidanand	endif #(ENABLE_LTO)
324c5e1da83SJayanth Dodderi Chidanand
325edbce9aaSzelalem-aweke# GCC automatically adds fix-cortex-a53-843419 flag when used to link
326edbce9aaSzelalem-aweke# which breaks some builds, so disable if errata fix is not explicitly enabled
327cfe6767fSYann Gautier	ifeq (${ARCH},aarch64)
328edbce9aaSzelalem-aweke		ifneq (${ERRATA_A53_843419},1)
329edbce9aaSzelalem-aweke			TF_LDFLAGS	+= 	-mno-fix-cortex-a53-843419
330edbce9aaSzelalem-aweke		endif
331cfe6767fSYann Gautier	endif
332edbce9aaSzelalem-aweke	TF_LDFLAGS		+= 	-nostdlib
333edbce9aaSzelalem-aweke	TF_LDFLAGS		+=	$(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
334641f16e7SAmbroise Vincent
335641f16e7SAmbroise Vincent# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
336c2ad38ceSVarun Wadekarelse
3371f49db5fSMarco Felsch# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
3381f49db5fSMarco Felsch# are not loaded by a elf loader.
3391f49db5fSMarco Felsch	TF_LDFLAGS		+=	$(call ld_option, --no-warn-rwx-segments)
340ebac6922SYabin Cui	TF_LDFLAGS		+=	-O1
341c2b8806fSDouglas Raillard	TF_LDFLAGS		+=	--gc-sections
342ac98b82aSChris Kay
343ac98b82aSChris Kay	TF_LDFLAGS		+=	-z common-page-size=4096 # Configure page size constants
344ac98b82aSChris Kay	TF_LDFLAGS		+=	-z max-page-size=4096
345304ad94bSAndrey Skvortsov	TF_LDFLAGS		+=	--build-id=none
346ac98b82aSChris Kay
347641f16e7SAmbroise Vincent# ld.lld doesn't recognize the errata flags,
348ebac6922SYabin Cui# therefore don't add those in that case.
349ebac6922SYabin Cui# ld.lld reports section type mismatch warnings,
350ebac6922SYabin Cui# therefore don't add --fatal-warnings to it.
3518620bd0bSChris Kay	ifneq ($($(ARCH)-ld-id),llvm-lld)
352ebac6922SYabin Cui		TF_LDFLAGS	+=	$(TF_LDFLAGS_$(ARCH)) --fatal-warnings
353edbce9aaSzelalem-aweke	endif
354c5e1da83SJayanth Dodderi Chidanand
355c5e1da83SJayanth Dodderi Chidanandendif #(LD = armlink)
35673c99d4eSJuan Castillo
35773c99d4eSJuan Castillo################################################################################
358f5211420SGovindraj Raja# Setup ARCH_MAJOR/MINOR before parsing arch_features.
359f5211420SGovindraj Raja################################################################################
360f5211420SGovindraj Rajaifeq (${ENABLE_RME},1)
3617d5fc98fSAlexeiFedorov	ARM_ARCH_MAJOR := 9
3627d5fc98fSAlexeiFedorov	ARM_ARCH_MINOR := 2
363f5211420SGovindraj Rajaendif
364f5211420SGovindraj Raja
365f5211420SGovindraj Raja################################################################################
36673c99d4eSJuan Castillo# Common sources and include directories
36773c99d4eSJuan Castillo################################################################################
368d801fbb0Sdp-arminclude lib/compiler-rt/compiler-rt.mk
36973c99d4eSJuan Castillo
370758ccb80SChris Kay# Allow overriding the timestamp, for example for reproducible builds, or to
371758ccb80SChris Kay# synchronize timestamps across multiple projects.
372758ccb80SChris Kay# This must be set to a C string (including quotes where applicable).
373758ccb80SChris KayBUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__
374758ccb80SChris Kay
375758ccb80SChris KayDEFINES += -DBUILD_MESSAGE_TIMESTAMP='$(BUILD_MESSAGE_TIMESTAMP)'
376758ccb80SChris KayDEFINES += -DBUILD_MESSAGE_VERSION_STRING='"$(VERSION_STRING)"'
377758ccb80SChris KayDEFINES += -DBUILD_MESSAGE_VERSION='"$(VERSION)"'
378758ccb80SChris Kay
37973c99d4eSJuan CastilloBL_COMMON_SOURCES	+=	common/bl_common.c			\
3807f56e9a3SSoby Mathew				common/tf_log.c				\
3819d29c227SSoby Mathew				common/${ARCH}/debug.S			\
38291b48c9fSJulius Werner				drivers/console/multi_console.c		\
3839d29c227SSoby Mathew				lib/${ARCH}/cache_helpers.S		\
3849d29c227SSoby Mathew				lib/${ARCH}/misc_helpers.S		\
385c73686a1SBoyan Karatotev				lib/extensions/pmuv3/${ARCH}/pmuv3.c	\
386566034fcSSoby Mathew				plat/common/plat_bl_common.c		\
3877f56e9a3SSoby Mathew				plat/common/plat_log_common.c		\
38875311203Sdp-arm				plat/common/${ARCH}/plat_common.c	\
3899d29c227SSoby Mathew				plat/common/${ARCH}/platform_helpers.S	\
39061f72a34SRoberto Vargas				${COMPILER_RT_SRCS}
391d7a6b0f8SRyan Harkin
3928620bd0bSChris Kayifeq ($($(ARCH)-cc-id),arm-clang)
3938422a840SAntonio Nino Diaz	BL_COMMON_SOURCES	+=	lib/${ARCH}/armclang_printf.S
3948422a840SAntonio Nino Diazendif
3958422a840SAntonio Nino Diaz
3961f461979SJustin Chadwellifeq (${SANITIZE_UB},on)
3971f461979SJustin Chadwell	BL_COMMON_SOURCES	+=	plat/common/ubsan.c
3981f461979SJustin Chadwellendif
3991f461979SJustin Chadwell
40001d237cbSYann GautierINCLUDES		+=	-Iinclude				\
401f5478dedSAntonio Nino Diaz				-Iinclude/arch/${ARCH}			\
40209d40e0eSAntonio Nino Diaz				-Iinclude/lib/cpus/${ARCH}		\
40309d40e0eSAntonio Nino Diaz				-Iinclude/lib/el3_runtime/${ARCH}	\
40409d40e0eSAntonio Nino Diaz				${PLAT_INCLUDES}			\
40509d40e0eSAntonio Nino Diaz				${SPD_INCLUDES}
40609d40e0eSAntonio Nino Diaz
407e03dcc8fSNishant SharmaDTC_FLAGS		+=	-I dts -O dtb
408e03dcc8fSNishant SharmaDTC_CPPFLAGS		+=	-P -nostdinc $(INCLUDES) -Ifdts -undef \
409e03dcc8fSNishant Sharma				-x assembler-with-cpp $(DEFINES)
410e03dcc8fSNishant Sharma
4119c6d1c50SAntonio Nino Diazinclude common/backtrace/backtrace.mk
4129c6d1c50SAntonio Nino Diaz
41373c99d4eSJuan Castillo################################################################################
4143547270fSGovindraj Raja# Generic definitions
4153547270fSGovindraj Raja################################################################################
4163547270fSGovindraj Raja
4173547270fSGovindraj Rajaifeq (${BUILD_BASE},)
4183547270fSGovindraj Raja     BUILD_BASE		:=	./build
4193547270fSGovindraj Rajaendif
4203547270fSGovindraj RajaBUILD_PLAT		:=	$(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
4213547270fSGovindraj Raja
4223547270fSGovindraj RajaSPDS			:=	$(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
4233547270fSGovindraj Raja
4243547270fSGovindraj Raja# Platforms providing their own TBB makefile may override this value
4253547270fSGovindraj RajaINCLUDE_TBBR_MK		:=	1
4263547270fSGovindraj Raja
4273547270fSGovindraj Raja################################################################################
4283547270fSGovindraj Raja# Include SPD Makefile if one has been specified
4293547270fSGovindraj Raja################################################################################
4303547270fSGovindraj Raja
4313547270fSGovindraj Rajaifneq (${SPD},none)
4323547270fSGovindraj Raja	ifeq (${ARCH},aarch32)
4333547270fSGovindraj Raja                $(error "Error: SPD is incompatible with AArch32.")
4343547270fSGovindraj Raja	endif
4353547270fSGovindraj Raja
4363547270fSGovindraj Raja	ifdef EL3_PAYLOAD_BASE
4373547270fSGovindraj Raja                $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
4383547270fSGovindraj Raja                $(warning "The SPD and its BL32 companion will be present but \
4393547270fSGovindraj Raja                ignored.")
4403547270fSGovindraj Raja	endif
4413547270fSGovindraj Raja
4423547270fSGovindraj Raja	ifeq (${SPD},spmd)
4433547270fSGovindraj Raja	# SPMD is located in std_svc directory
4443547270fSGovindraj Raja		SPD_DIR := std_svc
4453547270fSGovindraj Raja
4463547270fSGovindraj Raja		ifeq ($(SPMD_SPM_AT_SEL2),1)
4473547270fSGovindraj Raja			CTX_INCLUDE_EL2_REGS := 1
4483547270fSGovindraj Raja			ifeq ($(SPMC_AT_EL3),1)
4493547270fSGovindraj Raja                                $(error SPM cannot be enabled in both S-EL2 and EL3.)
4503547270fSGovindraj Raja			endif
45159bdcc58SMadhukar Pappireddy			ifeq ($(CTX_INCLUDE_SVE_REGS),1)
45259bdcc58SMadhukar Pappireddy                                $(error SVE context management not needed with Hafnium SPMC.)
45359bdcc58SMadhukar Pappireddy			endif
4543547270fSGovindraj Raja		endif
4553547270fSGovindraj Raja
4563547270fSGovindraj Raja		ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
4573547270fSGovindraj Raja			DTC_CPPFLAGS	+=	-DOPTEE_SP_FW_CONFIG
4583547270fSGovindraj Raja		endif
4593547270fSGovindraj Raja
4600686a01bSArunachalam Ganapathy		ifeq ($(findstring trusty_sp,$(ARM_SPMC_MANIFEST_DTS)),trusty_sp)
4610686a01bSArunachalam Ganapathy			DTC_CPPFLAGS	+=	-DTRUSTY_SP_FW_CONFIG
4620686a01bSArunachalam Ganapathy		endif
4630686a01bSArunachalam Ganapathy
4643547270fSGovindraj Raja		ifeq ($(TS_SP_FW_CONFIG),1)
4653547270fSGovindraj Raja			DTC_CPPFLAGS	+=	-DTS_SP_FW_CONFIG
4663547270fSGovindraj Raja		endif
4673547270fSGovindraj Raja
4683547270fSGovindraj Raja		ifneq ($(ARM_BL2_SP_LIST_DTS),)
4693547270fSGovindraj Raja		DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
4703547270fSGovindraj Raja		endif
4713547270fSGovindraj Raja
4723547270fSGovindraj Raja		ifneq ($(SP_LAYOUT_FILE),)
4733547270fSGovindraj Raja		BL2_ENABLE_SP_LOAD := 1
4743547270fSGovindraj Raja		endif
475c189adbdSGovindraj Raja
476c189adbdSGovindraj Raja		ifeq ($(SPMC_AT_EL3_SEL0_SP),1)
477c189adbdSGovindraj Raja			ifneq ($(SPMC_AT_EL3),1)
478c189adbdSGovindraj Raja			$(error SEL0 SP cannot be enabled without SPMC at EL3)
479c189adbdSGovindraj Raja			endif
480c189adbdSGovindraj Raja		endif
4813547270fSGovindraj Raja	else
4823547270fSGovindraj Raja		# All other SPDs in spd directory
4833547270fSGovindraj Raja		SPD_DIR := spd
4843547270fSGovindraj Raja	endif #(SPD)
4853547270fSGovindraj Raja
4863547270fSGovindraj Raja	# We expect to locate an spd.mk under the specified SPD directory
4873547270fSGovindraj Raja	SPD_MAKE	:=	$(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
4883547270fSGovindraj Raja
4893547270fSGovindraj Raja	ifeq (${SPD_MAKE},)
4903547270fSGovindraj Raja                $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
4913547270fSGovindraj Raja	endif
4923547270fSGovindraj Raja        $(info Including ${SPD_MAKE})
4933547270fSGovindraj Raja        include ${SPD_MAKE}
4943547270fSGovindraj Raja
4953547270fSGovindraj Raja	# If there's BL32 companion for the chosen SPD, we expect that the SPD's
4963547270fSGovindraj Raja	# Makefile would set NEED_BL32 to "yes". In this case, the build system
4973547270fSGovindraj Raja	# supports two mutually exclusive options:
4983547270fSGovindraj Raja	# * BL32 is built from source: then BL32_SOURCES must contain the list
4993547270fSGovindraj Raja	#   of source files to build BL32
5003547270fSGovindraj Raja	# * BL32 is a prebuilt binary: then BL32 must point to the image file
5013547270fSGovindraj Raja	#   that will be included in the FIP
5023547270fSGovindraj Raja	# If both BL32_SOURCES and BL32 are defined, the binary takes precedence
5033547270fSGovindraj Raja	# over the sources.
5043547270fSGovindraj Rajaendif #(SPD=none)
5053547270fSGovindraj Raja
5063547270fSGovindraj Rajaifeq (${ENABLE_SPMD_LP}, 1)
5073547270fSGovindraj Rajaifneq (${SPD},spmd)
5083547270fSGovindraj Raja        $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
5093547270fSGovindraj Rajaendif
5103547270fSGovindraj Rajaifeq ($(SPMC_AT_EL3),1)
5113547270fSGovindraj Raja        $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
5123547270fSGovindraj Rajaendif
5133547270fSGovindraj Rajaendif
5143547270fSGovindraj Raja
5153547270fSGovindraj Raja################################################################################
516696ed168SOlivier Deprez# Include the platform specific Makefile after the SPD Makefile (the platform
517696ed168SOlivier Deprez# makefile may use all previous definitions in this file)
518696ed168SOlivier Deprez################################################################################
519696ed168SOlivier Deprezinclude ${PLAT_MAKEFILE_FULL}
520696ed168SOlivier Deprez
521696ed168SOlivier Deprez################################################################################
522f5211420SGovindraj Raja# Process BRANCH_PROTECTION value and set
523f5211420SGovindraj Raja# Pointer Authentication and Branch Target Identification flags
524f5211420SGovindraj Raja################################################################################
525f5211420SGovindraj Rajaifeq (${BRANCH_PROTECTION},0)
526f5211420SGovindraj Raja	# Default value turns off all types of branch protection
527f5211420SGovindraj Raja	BP_OPTION := none
528f5211420SGovindraj Rajaelse ifneq (${ARCH},aarch64)
529f5211420SGovindraj Raja        $(error BRANCH_PROTECTION requires AArch64)
530f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},1)
531f5211420SGovindraj Raja	# Enables all types of branch protection features
532f5211420SGovindraj Raja	BP_OPTION := standard
533f5211420SGovindraj Raja	ENABLE_BTI := 1
534f5211420SGovindraj Raja	ENABLE_PAUTH := 1
535f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},2)
536f5211420SGovindraj Raja	# Return address signing to its standard level
537f5211420SGovindraj Raja	BP_OPTION := pac-ret
538f5211420SGovindraj Raja	ENABLE_PAUTH := 1
539f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},3)
540f5211420SGovindraj Raja	# Extend the signing to include leaf functions
541f5211420SGovindraj Raja	BP_OPTION := pac-ret+leaf
542f5211420SGovindraj Raja	ENABLE_PAUTH := 1
543f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},4)
544f5211420SGovindraj Raja	# Turn on branch target identification mechanism
545f5211420SGovindraj Raja	BP_OPTION := bti
546f5211420SGovindraj Raja	ENABLE_BTI := 1
547f5211420SGovindraj Rajaelse
548f5211420SGovindraj Raja        $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
549f5211420SGovindraj Rajaendif #(BRANCH_PROTECTION)
550f5211420SGovindraj Raja
551f5211420SGovindraj Rajaifeq ($(ENABLE_PAUTH),1)
552f5211420SGovindraj Raja	CTX_INCLUDE_PAUTH_REGS := 1
553f5211420SGovindraj Rajaendif
554f5211420SGovindraj Rajaifneq (${BP_OPTION},none)
555f5211420SGovindraj Raja	TF_CFLAGS_aarch64	+=	-mbranch-protection=${BP_OPTION}
556f5211420SGovindraj Rajaendif #(BP_OPTION)
557f5211420SGovindraj Raja
558f5211420SGovindraj Raja# Pointer Authentication sources
559f5211420SGovindraj Rajaifeq (${ENABLE_PAUTH}, 1)
560f5211420SGovindraj Raja# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
561f5211420SGovindraj Raja# Pauth support. As it's not secure, it must be reimplemented for real platforms
562f5211420SGovindraj Raja	BL_COMMON_SOURCES	+=	lib/extensions/pauth/pauth_helpers.S
563f5211420SGovindraj Rajaendif
564f5211420SGovindraj Raja
5653547270fSGovindraj Raja################################################################################
5663547270fSGovindraj Raja# Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from
5673547270fSGovindraj Raja# platform.
5683547270fSGovindraj Raja################################################################################
5693547270fSGovindraj Rajainclude ${MAKE_HELPERS_DIRECTORY}arch_features.mk
5703547270fSGovindraj Raja
571f5211420SGovindraj Raja####################################################
572f5211420SGovindraj Raja# Enable required options for Memory Stack Tagging.
573f5211420SGovindraj Raja####################################################
574f5211420SGovindraj Raja
575f5211420SGovindraj Raja# Currently, these options are enabled only for clang and armclang compiler.
576f5211420SGovindraj Rajaifeq (${SUPPORT_STACK_MEMTAG},yes)
577f5211420SGovindraj Raja    ifdef mem_tag_arch_support
578f5211420SGovindraj Raja        # Check for armclang and clang compilers
5798620bd0bSChris Kay        ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
580f5211420SGovindraj Raja        # Add "memtag" architecture feature modifier if not specified
581f5211420SGovindraj Raja            ifeq ( ,$(findstring memtag,$(arch-features)))
582f5211420SGovindraj Raja                arch-features	:=	$(arch-features)+memtag
583f5211420SGovindraj Raja            endif	# memtag
5848620bd0bSChris Kay            ifeq ($($(ARCH)-cc-id),arm-clang)
585f5211420SGovindraj Raja                TF_CFLAGS	+=	-mmemtag-stack
5868620bd0bSChris Kay            else ifeq ($($(ARCH)-cc-id),llvm-clang)
587f5211420SGovindraj Raja                TF_CFLAGS	+=	-fsanitize=memtag
588f5211420SGovindraj Raja            endif	# armclang
589f5211420SGovindraj Raja        endif
590f5211420SGovindraj Raja    else
591f5211420SGovindraj Raja        $(error "Error: stack memory tagging is not supported for  \
592f5211420SGovindraj Raja        architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
593f5211420SGovindraj Raja	endif #(mem_tag_arch_support)
594f5211420SGovindraj Rajaendif #(SUPPORT_STACK_MEMTAG)
595f5211420SGovindraj Raja
596f5211420SGovindraj Raja################################################################################
597f5211420SGovindraj Raja# RME dependent flags configuration, Enable optional features for RME.
598f5211420SGovindraj Raja################################################################################
599f5211420SGovindraj Raja# FEAT_RME
600f5211420SGovindraj Rajaifeq (${ENABLE_RME},1)
601f5211420SGovindraj Raja	# RME requires AARCH64
602f5211420SGovindraj Raja	ifneq (${ARCH},aarch64)
603f5211420SGovindraj Raja                $(error ENABLE_RME requires AArch64)
604f5211420SGovindraj Raja	endif
605f5211420SGovindraj Raja
606f5211420SGovindraj Raja	# RME requires el2 context to be saved for now.
607f5211420SGovindraj Raja	CTX_INCLUDE_EL2_REGS := 1
608f5211420SGovindraj Raja	CTX_INCLUDE_AARCH32_REGS := 0
609f5211420SGovindraj Raja	CTX_INCLUDE_PAUTH_REGS := 1
610f5211420SGovindraj Raja
611f5211420SGovindraj Raja	# RME enables CSV2_2 extension by default.
612f5211420SGovindraj Raja	ENABLE_FEAT_CSV2_2 = 1
613f5211420SGovindraj Rajaendif #(FEAT_RME)
614f5211420SGovindraj Raja
615f5211420SGovindraj Raja################################################################################
6165b18de09SZelalem Aweke# Include rmmd Makefile if RME is enabled
6175b18de09SZelalem Aweke################################################################################
6185b18de09SZelalem Awekeifneq (${ENABLE_RME},0)
6195b18de09SZelalem Aweke	ifneq (${ARCH},aarch64)
6205b18de09SZelalem Aweke                $(error ENABLE_RME requires AArch64)
6215b18de09SZelalem Aweke	endif
6221d63ae4dSMarc Bonnici	ifeq ($(SPMC_AT_EL3),1)
6231d63ae4dSMarc Bonnici                $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
6241d63ae4dSMarc Bonnici	endif
625c5e1da83SJayanth Dodderi Chidanand
6264fba2e1fSBoyan Karatotev	ifneq (${SPD}, none)
6274fba2e1fSBoyan Karatotev		ifneq (${SPD}, spmd)
6284fba2e1fSBoyan Karatotev                        $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
6294fba2e1fSBoyan Karatotev		endif
6304fba2e1fSBoyan Karatotev	endif
6315b18de09SZelalem Awekeinclude services/std_svc/rmmd/rmmd.mk
6325b18de09SZelalem Aweke$(warning "RME is an experimental feature")
6335b18de09SZelalem Awekeendif
6345b18de09SZelalem Aweke
6353547270fSGovindraj Rajaifeq (${CTX_INCLUDE_EL2_REGS}, 1)
6363547270fSGovindraj Raja	ifeq (${SPD},none)
6373547270fSGovindraj Raja		ifeq (${ENABLE_RME},0)
6383547270fSGovindraj Raja                        $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
6393547270fSGovindraj Raja                        or RME is enabled)
6403547270fSGovindraj Raja		endif
6413547270fSGovindraj Raja	endif
6423547270fSGovindraj Rajaendif
6430f21c547SJuan Castillo
6447794d6c8SGovindraj Raja################################################################################
64530655136SGovindraj Raja# Make 128-Bit sysreg read/writes availabe when FEAT_D128 is enabled.
64630655136SGovindraj Raja################################################################################
64730655136SGovindraj Rajaifneq (${ENABLE_FEAT_D128}, 0)
64830655136SGovindraj Raja        BL_COMMON_SOURCES       +=      lib/extensions/sysreg128/sysreg128.S
64930655136SGovindraj Rajaendif
65030655136SGovindraj Raja
65130655136SGovindraj Raja################################################################################
6527794d6c8SGovindraj Raja# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
6537794d6c8SGovindraj Raja# up with appropriate march values for compiler.
6547794d6c8SGovindraj Raja################################################################################
6557794d6c8SGovindraj Rajainclude ${MAKE_HELPERS_DIRECTORY}march.mk
6567794d6c8SGovindraj Raja
6577794d6c8SGovindraj RajaTF_CFLAGS   +=	$(march-directive)
6587275ac2aSGovindraj RajaASFLAGS		+=	$(march-directive)
6597794d6c8SGovindraj Raja
66042d4d3baSArvind Ram Prakash# This internal flag is common option which is set to 1 for scenarios
66142d4d3baSArvind Ram Prakash# when the BL2 is running in EL3 level. This occurs in two scenarios -
66242d4d3baSArvind Ram Prakash# 4 world system running BL2 at EL3 and two world system without BL1 running
66342d4d3baSArvind Ram Prakash# BL2 in EL3
66442d4d3baSArvind Ram Prakash
66542d4d3baSArvind Ram Prakashifeq (${RESET_TO_BL2},1)
66642d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	1
66742d4d3baSArvind Ram Prakash	ifeq (${ENABLE_RME},1)
668c5e1da83SJayanth Dodderi Chidanand                $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
669c5e1da83SJayanth Dodderi Chidanand                supported at the moment.)
67042d4d3baSArvind Ram Prakash	endif
67142d4d3baSArvind Ram Prakashelse ifeq (${ENABLE_RME},1)
67242d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	1
67342d4d3baSArvind Ram Prakashelse
67442d4d3baSArvind Ram Prakash	BL2_RUNS_AT_EL3	:=	0
67542d4d3baSArvind Ram Prakashendif
67642d4d3baSArvind Ram Prakash
677f87e54f7SManish Pandey# This internal flag is set to 1 when Firmware First handling of External aborts
678f87e54f7SManish Pandey# is required by lowe ELs. Currently only NS requires this support.
679f87e54f7SManish Pandeyifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
680f87e54f7SManish Pandey	FFH_SUPPORT := 1
681f87e54f7SManish Pandeyelse
682f87e54f7SManish Pandey	FFH_SUPPORT := 0
683f87e54f7SManish Pandeyendif
684f87e54f7SManish Pandey
68526e63c44SEtienne Carriereifeq (${ARM_ARCH_MAJOR},7)
68626e63c44SEtienne Carriereinclude make_helpers/armv7-a-cpus.mk
68726e63c44SEtienne Carriereendif
68826e63c44SEtienne Carriere
6893bd17c0fSSoby MathewPIE_FOUND		:=	$(findstring --enable-default-pie,${GCC_V_OUTPUT})
6903bd17c0fSSoby Mathewifneq ($(PIE_FOUND),)
6913bd17c0fSSoby Mathew	TF_CFLAGS	+=	-fno-PIE
6928620bd0bSChris Kayifeq ($($(ARCH)-ld-id),gnu-gcc)
6937b592418SSamuel Holland	TF_LDFLAGS	+=	-no-pie
6947b592418SSamuel Hollandendif
695c5e1da83SJayanth Dodderi Chidanandendif #(PIE_FOUND)
696320920c1SMasahiro Yamada
6978620bd0bSChris Kayifeq ($($(ARCH)-ld-id),gnu-gcc)
698320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-Wl,-pie -Wl,--no-dynamic-linker
699320920c1SMasahiro Yamadaelse
700320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-pie --no-dynamic-linker
701320920c1SMasahiro Yamadaendif
702320920c1SMasahiro Yamada
703320920c1SMasahiro Yamadaifeq ($(ENABLE_PIE),1)
70442d4d3baSArvind Ram Prakash	ifeq ($(RESET_TO_BL2),1)
70569af7fcfSMasahiro Yamada		ifneq ($(BL2_IN_XIP_MEM),1)
706966660ecSChris Kay			BL2_CPPFLAGS	+=	-fpie
70769af7fcfSMasahiro Yamada			BL2_CFLAGS	+=	-fpie
70869af7fcfSMasahiro Yamada			BL2_LDFLAGS	+=	$(PIE_LDFLAGS)
709c5e1da83SJayanth Dodderi Chidanand		endif #(BL2_IN_XIP_MEM)
710c5e1da83SJayanth Dodderi Chidanand	endif #(RESET_TO_BL2)
711966660ecSChris Kay	BL31_CPPFLAGS	+=	-fpie
712320920c1SMasahiro Yamada	BL31_CFLAGS 	+=	-fpie
713320920c1SMasahiro Yamada	BL31_LDFLAGS	+=	$(PIE_LDFLAGS)
714966660ecSChris Kay
715966660ecSChris Kay	BL32_CPPFLAGS	+=	-fpie
716d974301dSMasahiro Yamada	BL32_CFLAGS	+=	-fpie
717d974301dSMasahiro Yamada	BL32_LDFLAGS	+=	$(PIE_LDFLAGS)
718c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_PIE)
7193bd17c0fSSoby Mathew
720007433d8SBoyan KaratotevBL1_CPPFLAGS  += -DREPORT_ERRATA=${DEBUG}
721007433d8SBoyan KaratotevBL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
722007433d8SBoyan KaratotevBL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
723007433d8SBoyan Karatotev
7249cefb4b1SMasahiro YamadaBL1_CPPFLAGS += -DIMAGE_AT_EL3
72542d4d3baSArvind Ram Prakashifeq ($(RESET_TO_BL2),1)
7269cefb4b1SMasahiro Yamada	BL2_CPPFLAGS += -DIMAGE_AT_EL3
727d5e97a1dSMasahiro Yamadaelse
7289cefb4b1SMasahiro Yamada	BL2_CPPFLAGS += -DIMAGE_AT_EL1
729c5e1da83SJayanth Dodderi Chidanandendif #(RESET_TO_BL2)
730007433d8SBoyan Karatotev
731007433d8SBoyan Karatotevifeq (${ARCH},aarch64)
7329cefb4b1SMasahiro Yamada	BL2U_CPPFLAGS += -DIMAGE_AT_EL1
7339cefb4b1SMasahiro Yamada	BL31_CPPFLAGS += -DIMAGE_AT_EL3
7349cefb4b1SMasahiro Yamada	BL32_CPPFLAGS += -DIMAGE_AT_EL1
735007433d8SBoyan Karatotevelse
736007433d8SBoyan Karatotev	BL32_CPPFLAGS += -DIMAGE_AT_EL3
737d5e97a1dSMasahiro Yamadaendif
738d5e97a1dSMasahiro Yamada
73954035fc4SSandrine Bailleux# Include the CPU specific operations makefile, which provides default
74054035fc4SSandrine Bailleux# values for all CPU errata workarounds and CPU specific optimisations.
74154035fc4SSandrine Bailleux# This can be overridden by the platform.
74273c99d4eSJuan Castilloinclude lib/cpus/cpu-ops.mk
7434f6ad66aSAchin Gupta
744a4409008Sdp-arm################################################################################
745a4409008Sdp-arm# Build `AARCH32_SP` as BL32 image for AArch32
746a4409008Sdp-arm################################################################################
747c5e1da83SJayanth Dodderi Chidanandifeq (${ARCH},aarch32)
748c5e1da83SJayanth Dodderi Chidanand        NEED_BL32 := yes
749c5e1da83SJayanth Dodderi Chidanand
750a4409008Sdp-arm        ifneq (${AARCH32_SP},none)
751a4409008Sdp-arm        # We expect to locate an sp.mk under the specified AARCH32_SP directory
752a4409008Sdp-arm		AARCH32_SP_MAKE	:=	$(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
753a4409008Sdp-arm
754a4409008Sdp-arm                ifeq (${AARCH32_SP_MAKE},)
755a4409008Sdp-arm                        $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
756a4409008Sdp-arm                endif
757a4409008Sdp-arm                $(info Including ${AARCH32_SP_MAKE})
758a4409008Sdp-arm                include ${AARCH32_SP_MAKE}
759a4409008Sdp-arm        endif
760c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch32)
7614f6ad66aSAchin Gupta
76273c99d4eSJuan Castillo################################################################################
76377f1f7a1SVarun Wadekar# Include libc if not overridden
76477f1f7a1SVarun Wadekar################################################################################
76577f1f7a1SVarun Wadekarifeq (${OVERRIDE_LIBC},0)
76677f1f7a1SVarun Wadekarinclude lib/libc/libc.mk
76777f1f7a1SVarun Wadekarendif
76877f1f7a1SVarun Wadekar
76977f1f7a1SVarun Wadekar################################################################################
770c5e1da83SJayanth Dodderi Chidanand# Check incompatible options and dependencies
771cf2c8a33SAntonio Nino Diaz################################################################################
772cf2c8a33SAntonio Nino Diaz
773c5e1da83SJayanth Dodderi Chidanand# USE_DEBUGFS experimental feature recommended only in debug builds
774c5e1da83SJayanth Dodderi Chidanandifeq (${USE_DEBUGFS},1)
775c5e1da83SJayanth Dodderi Chidanand        ifeq (${DEBUG},1)
776c5e1da83SJayanth Dodderi Chidanand                $(warning DEBUGFS experimental feature is enabled.)
777c5e1da83SJayanth Dodderi Chidanand        else
778c5e1da83SJayanth Dodderi Chidanand                $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
779c5e1da83SJayanth Dodderi Chidanand        endif
780c5e1da83SJayanth Dodderi Chidanandendif #(USE_DEBUGFS)
781c5e1da83SJayanth Dodderi Chidanand
782c5e1da83SJayanth Dodderi Chidanand# USE_SPINLOCK_CAS requires AArch64 build
783c5e1da83SJayanth Dodderi Chidanandifeq (${USE_SPINLOCK_CAS},1)
784c5e1da83SJayanth Dodderi Chidanand        ifneq (${ARCH},aarch64)
785c5e1da83SJayanth Dodderi Chidanand               $(error USE_SPINLOCK_CAS requires AArch64)
786c5e1da83SJayanth Dodderi Chidanand        endif
787c5e1da83SJayanth Dodderi Chidanandendif #(USE_SPINLOCK_CAS)
788c5e1da83SJayanth Dodderi Chidanand
789c5e1da83SJayanth Dodderi Chidanand# The cert_create tool cannot generate certificates individually, so we use the
790c5e1da83SJayanth Dodderi Chidanand# target 'certificates' to create them all
791c5e1da83SJayanth Dodderi Chidanandifneq (${GENERATE_COT},0)
792c5e1da83SJayanth Dodderi Chidanand        FIP_DEPS += certificates
793c5e1da83SJayanth Dodderi Chidanand        FWU_FIP_DEPS += fwu_certificates
794c5e1da83SJayanth Dodderi Chidanandendif
795c5e1da83SJayanth Dodderi Chidanand
796c5e1da83SJayanth Dodderi Chidanandifneq (${DECRYPTION_SUPPORT},none)
797c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -f ${FW_ENC_STATUS}
798c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -k ${ENC_KEY}
799c5e1da83SJayanth Dodderi Chidanand	ENC_ARGS += -n ${ENC_NONCE}
800c5e1da83SJayanth Dodderi Chidanand	FIP_DEPS += enctool
801c5e1da83SJayanth Dodderi Chidanand	FWU_FIP_DEPS += enctool
802c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
803c5e1da83SJayanth Dodderi Chidanand
804cf2c8a33SAntonio Nino Diazifdef EL3_PAYLOAD_BASE
80568450a6dSAntonio Nino Diaz	ifdef PRELOADED_BL33_BASE
80668450a6dSAntonio Nino Diaz                $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
80768450a6dSAntonio Nino Diaz		incompatible build options. EL3_PAYLOAD_BASE has priority.")
808cf2c8a33SAntonio Nino Diaz	endif
80976580f3dSQixiang Xu	ifneq (${GENERATE_COT},0)
810c5e1da83SJayanth Dodderi Chidanand                $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
811c5e1da83SJayanth Dodderi Chidanand                build options.")
81276580f3dSQixiang Xu	endif
81376580f3dSQixiang Xu	ifneq (${TRUSTED_BOARD_BOOT},0)
814c5e1da83SJayanth Dodderi Chidanand                $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
815c5e1da83SJayanth Dodderi Chidanand                incompatible \ build options.")
81676580f3dSQixiang Xu	endif
817c5e1da83SJayanth Dodderi Chidanandendif #(EL3_PAYLOAD_BASE)
818cf2c8a33SAntonio Nino Diaz
819cf2c8a33SAntonio Nino Diazifeq (${NEED_BL33},yes)
820cf2c8a33SAntonio Nino Diaz	ifdef EL3_PAYLOAD_BASE
821cf2c8a33SAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
822cf2c8a33SAntonio Nino Diaz                BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
823cf2c8a33SAntonio Nino Diaz	endif
82468450a6dSAntonio Nino Diaz	ifdef PRELOADED_BL33_BASE
82568450a6dSAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
826c5e1da83SJayanth Dodderi Chidanand                PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
827cf2c8a33SAntonio Nino Diaz	endif
828c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL33)
829cf2c8a33SAntonio Nino Diaz
830d4593e47SJeenu Viswambharan# When building for systems with hardware-assisted coherency, there's no need to
831d4593e47SJeenu Viswambharan# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
832d4593e47SJeenu Viswambharanifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
833d4593e47SJeenu Viswambharan        $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
834d4593e47SJeenu Viswambharanendif
8351a0a3f06SYatharth Kochar
83642d4d3baSArvind Ram Prakash#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
83742d4d3baSArvind Ram Prakashifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
83842d4d3baSArvind Ram Prakash        $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
8397d173fc5SJiafei Panendif
8407d173fc5SJiafei Pan
8419202d519SManish Pandey# RAS_EXTENSION is deprecated, provide alternate build options
84214c6016aSJeenu Viswambharanifeq ($(RAS_EXTENSION),1)
843c5e1da83SJayanth Dodderi Chidanand        $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
844f87e54f7SManish Pandey        and HANDLE_EA_EL3_FIRST_NS instead")
8459202d519SManish Pandeyendif
846c5e1da83SJayanth Dodderi Chidanand
847c5e1da83SJayanth Dodderi Chidanand
8489202d519SManish Pandey# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
8491a7c1cfeSJeenu Viswambharanifeq ($(FAULT_INJECTION_SUPPORT),1)
8506503ff29SAndre Przywara	ifeq ($(ENABLE_FEAT_RAS),0)
8516503ff29SAndre Przywara                $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
8521a7c1cfeSJeenu Viswambharan	endif
853c5e1da83SJayanth Dodderi Chidanandendif #(FAULT_INJECTION_SUPPORT)
8541a7c1cfeSJeenu Viswambharan
855ed51b51fSRoberto Vargas# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
856209a60ccSSoby Mathewifeq ($(DYN_DISABLE_AUTH), 1)
857209a60ccSSoby Mathew	ifeq (${TRUSTED_BOARD_BOOT}, 0)
858c5e1da83SJayanth Dodderi Chidanand                $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
859c5e1da83SJayanth Dodderi Chidanand                to be set.")
860209a60ccSSoby Mathew	endif
861c5e1da83SJayanth Dodderi Chidanandendif #(DYN_DISABLE_AUTH)
862209a60ccSSoby Mathew
8632bf4f27fSManish V Badarkheifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
8642bf4f27fSManish V Badarkhe# Support authentication verification and hash calculation
8652bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT := 3
8662bf4f27fSManish V Badarkheelse ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
8672bf4f27fSManish V Badarkhe# Support authentication verification and hash calculation
8682bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT := 3
8692bf4f27fSManish V Badarkheelse ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
8702bf4f27fSManish V Badarkhe# Support hash calculation only
8712bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT := 2
8722bf4f27fSManish V Badarkheelse ifeq (${TRUSTED_BOARD_BOOT},1)
8732bf4f27fSManish V Badarkhe# Support authentication verification only
874c9c56f6eSManish V Badarkhe	CRYPTO_SUPPORT := 1
875c9c56f6eSManish V Badarkheelse
876c9c56f6eSManish V Badarkhe	CRYPTO_SUPPORT := 0
877c5e1da83SJayanth Dodderi Chidanandendif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
878c9c56f6eSManish V Badarkhe
879e4a070e3SManish V Badarkheifneq ($(filter 1 2 3,$(CRYPTO_SUPPORT)),)
880e4a070e3SManish V BadarkheCRYPTO_LIB := $(BUILD_PLAT)/lib/libmbedtls.a
881e4a070e3SManish V Badarkheendif
882e4a070e3SManish V Badarkhe
883cbf9e84aSBalint Dobszay# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
884cbf9e84aSBalint Dobszayifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
885700e7685SManish Pandey        $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
88684ef9cd8SManish V Badarkheendif
88784ef9cd8SManish V Badarkhe
888b86048c4SAntonio Nino Diaz# If pointer authentication is used in the firmware, make sure that all the
8899fc59639SAlexei Fedorov# registers associated to it are also saved and restored.
8909fc59639SAlexei Fedorov# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
891b86048c4SAntonio Nino Diazifeq ($(ENABLE_PAUTH),1)
8929fc59639SAlexei Fedorov	ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
8939fc59639SAlexei Fedorov                $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
89406715f85SAlexei Fedorov	endif
895c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_PAUTH)
8969fc59639SAlexei Fedorov
89706715f85SAlexei Fedorovifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
8989fc59639SAlexei Fedorov	ifneq (${ARCH},aarch64)
8999fc59639SAlexei Fedorov                $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
900b86048c4SAntonio Nino Diaz	endif
901c5e1da83SJayanth Dodderi Chidanandendif #(CTX_INCLUDE_PAUTH_REGS)
9029fc59639SAlexei Fedorov
9036a0da736SJayanth Dodderi Chidanandifeq ($(FEATURE_DETECTION),1)
9046a0da736SJayanth Dodderi Chidanand        $(info FEATURE_DETECTION is an experimental feature)
905c5e1da83SJayanth Dodderi Chidanandendif #(FEATURE_DETECTION)
9066a0da736SJayanth Dodderi Chidanand
90703d3c0d7SJayanth Dodderi Chidanandifneq ($(ENABLE_SME2_FOR_NS), 0)
90803d3c0d7SJayanth Dodderi Chidanand	ifeq (${ENABLE_SME_FOR_NS}, 0)
909c5e1da83SJayanth Dodderi Chidanand                $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
910c5e1da83SJayanth Dodderi Chidanand                to be set")
91103d3c0d7SJayanth Dodderi Chidanand                $(warning "Forced ENABLE_SME_FOR_NS=1")
91203d3c0d7SJayanth Dodderi Chidanand		override ENABLE_SME_FOR_NS	:= 1
91303d3c0d7SJayanth Dodderi Chidanand	endif
914c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_SME2_FOR_NS)
91545007acdSJayanth Dodderi Chidanand
91660e8f3cfSPetre-Ionut Tudorifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
91760e8f3cfSPetre-Ionut Tudor	ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
918c5e1da83SJayanth Dodderi Chidanand                $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
919c5e1da83SJayanth Dodderi Chidanand                library v2")
92060e8f3cfSPetre-Ionut Tudor	endif
921c5e1da83SJayanth Dodderi Chidanandendif #(ARM_XLAT_TABLES_LIB_V1)
92260e8f3cfSPetre-Ionut Tudor
9237cda17bbSSumit Gargifneq (${DECRYPTION_SUPPORT},none)
9247cda17bbSSumit Garg	ifeq (${TRUSTED_BOARD_BOOT}, 0)
925c5e1da83SJayanth Dodderi Chidanand                $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
926c5e1da83SJayanth Dodderi Chidanand                to be set)
9277cda17bbSSumit Garg	endif
928c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT)
9297cda17bbSSumit Garg
930744ad974Sjohpow01# Ensure that no Aarch64-only features are enabled in Aarch32 build
931dc78e62dSjohpow01ifeq (${ARCH},aarch32)
932744ad974Sjohpow01
933744ad974Sjohpow01	# SME/SVE only supported on AArch64
93445007acdSJayanth Dodderi Chidanand	ifneq (${ENABLE_SME_FOR_NS},0)
935dc78e62dSjohpow01                $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
936dc78e62dSjohpow01	endif
93703d3c0d7SJayanth Dodderi Chidanand
938dc78e62dSjohpow01	ifeq (${ENABLE_SVE_FOR_NS},1)
939dc78e62dSjohpow01		# Warning instead of error due to CI dependency on this
94024ab2c0aSYann Gautier                $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
941dc78e62dSjohpow01	endif
942744ad974Sjohpow01
943ff86e0b4SJuan Pablo Conde	# BRBE is not supported in AArch32
944744ad974Sjohpow01	ifeq (${ENABLE_BRBE_FOR_NS},1)
945744ad974Sjohpow01                $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
946744ad974Sjohpow01	endif
947744ad974Sjohpow01
948ff86e0b4SJuan Pablo Conde	# FEAT_RNG_TRAP is not supported in AArch32
949ff86e0b4SJuan Pablo Conde	ifeq (${ENABLE_FEAT_RNG_TRAP},1)
950ff86e0b4SJuan Pablo Conde                $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
951ff86e0b4SJuan Pablo Conde	endif
952a57e18e4SArvind Ram Prakash
953a57e18e4SArvind Ram Prakash	ifneq (${ENABLE_FEAT_FPMR},0)
954a57e18e4SArvind Ram Prakash                $(error "ENABLE_FEAT_FPMR cannot be used with ARCH=aarch32")
955a57e18e4SArvind Ram Prakash	endif
9568db17052SBoyan Karatotev
9578db17052SBoyan Karatotev	ifeq (${ARCH_FEATURE_AVAILABILITY},1)
9588db17052SBoyan Karatotev                $(error "ARCH_FEATURE_AVAILABILITY cannot be used with ARCH=aarch32")
9598db17052SBoyan Karatotev	endif
960c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch32)
961dc78e62dSjohpow01
962a57e18e4SArvind Ram Prakashifneq (${ENABLE_FEAT_FPMR},0)
963a57e18e4SArvind Ram Prakash	ifeq (${ENABLE_FEAT_FGT},0)
964a57e18e4SArvind Ram Prakash                $(error "ENABLE_FEAT_FPMR requires ENABLE_FEAT_FGT")
965a57e18e4SArvind Ram Prakash	endif
966a57e18e4SArvind Ram Prakash	ifeq (${ENABLE_FEAT_HCX},0)
967a57e18e4SArvind Ram Prakash                $(error "ENABLE_FEAT_FPMR requires ENABLE_FEAT_HCX")
968a57e18e4SArvind Ram Prakash	endif
969a57e18e4SArvind Ram Prakashendif #(ENABLE_FEAT_FPMR)
970a57e18e4SArvind Ram Prakash
9710d122947SBoyan Karatotevifneq (${ENABLE_SME_FOR_NS},0)
9720d122947SBoyan Karatotev	ifeq (${ENABLE_SVE_FOR_NS},0)
9730d122947SBoyan Karatotev                $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
9740d122947SBoyan Karatotev	endif
975c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_SME_FOR_NS)
9760d122947SBoyan Karatotev
977dc78e62dSjohpow01# Secure SME/SVE requires the non-secure component as well
978dc78e62dSjohpow01ifeq (${ENABLE_SME_FOR_SWD},1)
979dc78e62dSjohpow01	ifeq (${ENABLE_SME_FOR_NS},0)
980dc78e62dSjohpow01                $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
981dc78e62dSjohpow01	endif
9820d122947SBoyan Karatotev	ifeq (${ENABLE_SVE_FOR_SWD},0)
9830d122947SBoyan Karatotev                $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
9840d122947SBoyan Karatotev	endif
985c5e1da83SJayanth Dodderi Chidanandendif #(ENABLE_SME_FOR_SWD)
986c5e1da83SJayanth Dodderi Chidanand
9873524d074SMadhukar Pappireddy# Enabling SVE for SWD requires enabling SVE for NWD due to ENABLE_FEAT
9883524d074SMadhukar Pappireddy# mechanism.
989dc78e62dSjohpow01ifeq (${ENABLE_SVE_FOR_SWD},1)
990dc78e62dSjohpow01    ifeq (${ENABLE_SVE_FOR_NS},0)
991dc78e62dSjohpow01        $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
992dc78e62dSjohpow01    endif
9933524d074SMadhukar Pappireddyendif
994dc78e62dSjohpow01
9953524d074SMadhukar Pappireddy# Enabling SVE for both the worlds typically requires the context
9963524d074SMadhukar Pappireddy# management of SVE registers. The only exception being SPMC at S-EL2.
9973524d074SMadhukar Pappireddyifeq (${ENABLE_SVE_FOR_SWD}, 1)
9983524d074SMadhukar Pappireddy    ifneq (${ENABLE_SVE_FOR_NS}, 0)
9993524d074SMadhukar Pappireddy        ifeq (${CTX_INCLUDE_SVE_REGS}-$(SPMD_SPM_AT_SEL2),0-0)
10003524d074SMadhukar Pappireddy            $(warning "ENABLE_SVE_FOR_SWD and ENABLE_SVE_FOR_NS together require CTX_INCLUDE_SVE_REGS")
10013524d074SMadhukar Pappireddy        endif
10023524d074SMadhukar Pappireddy    endif
10033524d074SMadhukar Pappireddyendif
10043524d074SMadhukar Pappireddy
10053524d074SMadhukar Pappireddy# Enabling SVE in either world while enabling CTX_INCLUDE_FPREGS requires
10063524d074SMadhukar Pappireddy# CTX_INCLUDE_SVE_REGS to be enabled due to architectural dependency between FP
10073524d074SMadhukar Pappireddy# and SVE registers.
10083524d074SMadhukar Pappireddyifeq (${CTX_INCLUDE_FPREGS}, 1)
10093524d074SMadhukar Pappireddy    ifneq (${ENABLE_SVE_FOR_NS},0)
10103524d074SMadhukar Pappireddy        ifeq (${CTX_INCLUDE_SVE_REGS},0)
10113524d074SMadhukar Pappireddy	    # Warning instead of error due to CI dependency on this
10123524d074SMadhukar Pappireddy            $(warning "CTX_INCLUDE_FPREGS and ENABLE_SVE_FOR_NS together require CTX_INCLUDE_SVE_REGS")
10133524d074SMadhukar Pappireddy            $(warning "Forced ENABLE_SVE_FOR_NS=0")
10143524d074SMadhukar Pappireddy	    override ENABLE_SVE_FOR_NS	:= 0
10153524d074SMadhukar Pappireddy        endif
10163524d074SMadhukar Pappireddy    endif
10173524d074SMadhukar Pappireddyendif #(CTX_INCLUDE_FPREGS)
10183524d074SMadhukar Pappireddy
10193524d074SMadhukar Pappireddy# SVE context management is only required if secure world has access to SVE/FP
10203524d074SMadhukar Pappireddy# functionality.
10213524d074SMadhukar Pappireddyifeq (${CTX_INCLUDE_SVE_REGS},1)
10223524d074SMadhukar Pappireddy    ifeq (${ENABLE_SVE_FOR_SWD},0)
10233524d074SMadhukar Pappireddy        $(error "CTX_INCLUDE_SVE_REGS requires ENABLE_SVE_FOR_SWD to also be enabled")
10243524d074SMadhukar Pappireddy    endif
10253524d074SMadhukar Pappireddyendif
10263524d074SMadhukar Pappireddy
10273524d074SMadhukar Pappireddy# SME cannot be used with CTX_INCLUDE_FPREGS since SPM does its own context
10283524d074SMadhukar Pappireddy# management including FPU registers.
1029dc78e62dSjohpow01ifeq (${CTX_INCLUDE_FPREGS},1)
103045007acdSJayanth Dodderi Chidanand    ifneq (${ENABLE_SME_FOR_NS},0)
1031dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1032dc78e62dSjohpow01    endif
1033c5e1da83SJayanth Dodderi Chidanandendif #(CTX_INCLUDE_FPREGS)
1034dc78e62dSjohpow01
103500e28874SManish V Badarkheifeq ($(DRTM_SUPPORT),1)
103600e28874SManish V Badarkhe        $(info DRTM_SUPPORT is an experimental feature)
103700e28874SManish V Badarkheendif
103800e28874SManish V Badarkhe
10398953568aSLevi Yunifeq (${HOB_LIST},1)
10408953568aSLevi Yun        $(warning HOB_LIST is an experimental feature)
10418953568aSLevi Yunendif
10428953568aSLevi Yun
10433ba2c151SRaymond Maoifeq (${TRANSFER_LIST},1)
10443ba2c151SRaymond Mao        $(info TRANSFER_LIST is an experimental feature)
10453ba2c151SRaymond Maoendif
10463ba2c151SRaymond Mao
1047274a69e7SChris Kayifeq (${ENABLE_RME},1)
1048274a69e7SChris Kay	ifneq (${SEPARATE_CODE_AND_RODATA},1)
1049274a69e7SChris Kay                $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1050274a69e7SChris Kay	endif
1051274a69e7SChris Kayendif
1052274a69e7SChris Kay
10535782b890SManish V Badarkheifeq ($(PSA_CRYPTO),1)
10545782b890SManish V Badarkhe        $(info PSA_CRYPTO is an experimental feature)
10555782b890SManish V Badarkheendif
10565782b890SManish V Badarkhe
105782222db8SManish V Badarkheifeq ($(DICE_PROTECTION_ENVIRONMENT),1)
105882222db8SManish V Badarkhe        $(info DICE_PROTECTION_ENVIRONMENT is an experimental feature)
105982222db8SManish V Badarkheendif
106082222db8SManish V Badarkhe
1061cf2c8a33SAntonio Nino Diaz################################################################################
106273c99d4eSJuan Castillo# Process platform overrideable behaviour
106373c99d4eSJuan Castillo################################################################################
10644f6ad66aSAchin Gupta
10655f24ce96SManish Pandeyifdef BL1_SOURCES
10665f24ce96SManish Pandey	NEED_BL1 := yes
1067c5e1da83SJayanth Dodderi Chidanandendif #(BL1_SOURCES)
10685f24ce96SManish Pandey
10695f24ce96SManish Pandeyifdef BL2_SOURCES
10705f24ce96SManish Pandey	NEED_BL2 := yes
10715f24ce96SManish Pandey
1072bd97f83aSJohn Tsichritzis	# Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1073bd97f83aSJohn Tsichritzis	# Certificate generation tools. This flag can be overridden by the platform.
1074cf2c8a33SAntonio Nino Diaz	ifdef EL3_PAYLOAD_BASE
1075cf2c8a33SAntonio Nino Diaz		# If booting an EL3 payload there is no need for a BL33 image
1076cf2c8a33SAntonio Nino Diaz		# in the FIP file.
10774c117f6cSSandrine Bailleux		NEED_BL33		:=	no
1078cf2c8a33SAntonio Nino Diaz	else
107968450a6dSAntonio Nino Diaz		ifdef PRELOADED_BL33_BASE
1080cf2c8a33SAntonio Nino Diaz			# If booting a BL33 preloaded image there is no need of
1081cf2c8a33SAntonio Nino Diaz			# another one in the FIP file.
1082cf2c8a33SAntonio Nino Diaz			NEED_BL33		:=	no
1083cf2c8a33SAntonio Nino Diaz		else
1084cf2c8a33SAntonio Nino Diaz			NEED_BL33		?=	yes
1085cf2c8a33SAntonio Nino Diaz		endif
10864c117f6cSSandrine Bailleux	endif
1087c5e1da83SJayanth Dodderi Chidanandendif #(BL2_SOURCES)
10886f971622SJuan Castillo
10895f24ce96SManish Pandeyifdef BL2U_SOURCES
10905f24ce96SManish Pandey	NEED_BL2U := yes
1091c5e1da83SJayanth Dodderi Chidanandendif #(BL2U_SOURCES)
10925f24ce96SManish Pandey
10934d045d0eSMasahiro Yamada# If SCP_BL2 is given, we always want FIP to include it.
10944d045d0eSMasahiro Yamadaifdef SCP_BL2
10954d045d0eSMasahiro Yamada	NEED_SCP_BL2		:=	yes
1096c5e1da83SJayanth Dodderi Chidanandendif #(SCP_BL2)
10974d045d0eSMasahiro Yamada
10985744e874SSoby Mathew# For AArch32, BL31 is not currently supported.
10995744e874SSoby Mathewifneq (${ARCH},aarch32)
11005744e874SSoby Mathew	ifdef BL31_SOURCES
1101c5e1da83SJayanth Dodderi Chidanand	# When booting an EL3 payload, there is no need to compile the BL31
1102c5e1da83SJayanth Dodderi Chidanand	# image nor put it in the FIP.
11035744e874SSoby Mathew		ifndef EL3_PAYLOAD_BASE
11045744e874SSoby Mathew			NEED_BL31 := yes
11055744e874SSoby Mathew		endif
11065744e874SSoby Mathew	endif
1107c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch64)
11085744e874SSoby Mathew
110973c99d4eSJuan Castillo# Process TBB related flags
11106f971622SJuan Castilloifneq (${GENERATE_COT},0)
111173c99d4eSJuan Castillo	# Common cert_create options
11126f971622SJuan Castillo	ifneq (${CREATE_KEYS},0)
11136f971622SJuan Castillo                $(eval CRT_ARGS += -n)
11140191262dSYatharth Kochar                $(eval FWU_CRT_ARGS += -n)
1115fd34e7baSJuan Castillo		ifneq (${SAVE_KEYS},0)
1116fd34e7baSJuan Castillo                        $(eval CRT_ARGS += -k)
11170191262dSYatharth Kochar                        $(eval FWU_CRT_ARGS += -k)
1118fd34e7baSJuan Castillo		endif
11196f971622SJuan Castillo	endif
112073c99d4eSJuan Castillo	# Include TBBR makefile (unless the platform indicates otherwise)
112173c99d4eSJuan Castillo	ifeq (${INCLUDE_TBBR_MK},1)
112273c99d4eSJuan Castillo                include make_helpers/tbbr/tbbr_tools.mk
112373c99d4eSJuan Castillo	endif
1124c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
11256f971622SJuan Castillo
11261c75d5dfSMasahiro Yamadaifneq (${FIP_ALIGN},0)
11271c75d5dfSMasahiro Yamada	FIP_ARGS += --align ${FIP_ALIGN}
1128c5e1da83SJayanth Dodderi Chidanandendif #(FIP_ALIGN)
11291c75d5dfSMasahiro Yamada
11305f24ce96SManish Pandeyifdef FDT_SOURCES
11315f24ce96SManish Pandey	NEED_FDT := yes
1132c5e1da83SJayanth Dodderi Chidanandendif #(FDT_SOURCES)
11335f24ce96SManish Pandey
113473c99d4eSJuan Castillo################################################################################
113546e5e035SMichalis Pappas# Include libraries' Makefile that are used in all BL
113646e5e035SMichalis Pappas################################################################################
113746e5e035SMichalis Pappas
113846e5e035SMichalis Pappasinclude lib/stack_protector/stack_protector.mk
113946e5e035SMichalis Pappas
114046e5e035SMichalis Pappas################################################################################
11418a86052dSSoby Mathew# Include BL specific makefiles
11428a86052dSSoby Mathew################################################################################
11435f24ce96SManish Pandey
11445f24ce96SManish Pandeyifeq (${NEED_BL1},yes)
11458a86052dSSoby Mathewinclude bl1/bl1.mk
11468a86052dSSoby Mathewendif
11478a86052dSSoby Mathew
11485f24ce96SManish Pandeyifeq (${NEED_BL2},yes)
11498a86052dSSoby Mathewinclude bl2/bl2.mk
11508a86052dSSoby Mathewendif
11518a86052dSSoby Mathew
11525f24ce96SManish Pandeyifeq (${NEED_BL2U},yes)
11538a86052dSSoby Mathewinclude bl2u/bl2u.mk
11548a86052dSSoby Mathewendif
11558a86052dSSoby Mathew
11565744e874SSoby Mathewifeq (${NEED_BL31},yes)
11578a86052dSSoby Mathewinclude bl31/bl31.mk
11588a86052dSSoby Mathewendif
115903b397a8SNishanth Menon
116073c99d4eSJuan Castillo################################################################################
116173c99d4eSJuan Castillo# Build options checks
116273c99d4eSJuan Castillo################################################################################
116373c99d4eSJuan Castillo
1164c5e1da83SJayanth Dodderi Chidanand# Boolean_Flags
1165327131c4SLeonardo Sandoval$(eval $(call assert_booleans,\
1166327131c4SLeonardo Sandoval    $(sort \
1167327131c4SLeonardo Sandoval	ALLOW_RO_XLAT_TABLES \
116846789a7cSBalint Dobszay	BL2_ENABLE_SP_LOAD \
1169327131c4SLeonardo Sandoval	COLD_BOOT_SINGLE_CPU \
1170327131c4SLeonardo Sandoval	CREATE_KEYS \
1171327131c4SLeonardo Sandoval	CTX_INCLUDE_AARCH32_REGS \
1172327131c4SLeonardo Sandoval	CTX_INCLUDE_FPREGS \
117342422622SMadhukar Pappireddy	CTX_INCLUDE_SVE_REGS \
1174327131c4SLeonardo Sandoval	CTX_INCLUDE_EL2_REGS \
11759acff28aSArvind Ram Prakash	CTX_INCLUDE_MPAM_REGS \
1176327131c4SLeonardo Sandoval	DEBUG \
1177327131c4SLeonardo Sandoval	DYN_DISABLE_AUTH \
1178327131c4SLeonardo Sandoval	EL3_EXCEPTION_HANDLING \
11791fd685a7SChris Kay	ENABLE_AMU_AUXILIARY_COUNTERS \
1180742ca230SChris Kay	ENABLE_AMU_FCONF \
1181873d4241Sjohpow01	AMU_RESTRICT_COUNTERS \
1182327131c4SLeonardo Sandoval	ENABLE_ASSERTIONS \
1183327131c4SLeonardo Sandoval	ENABLE_PIE \
1184327131c4SLeonardo Sandoval	ENABLE_PMF \
1185327131c4SLeonardo Sandoval	ENABLE_PSCI_STAT \
1186327131c4SLeonardo Sandoval	ENABLE_RUNTIME_INSTRUMENTATION \
1187dc78e62dSjohpow01	ENABLE_SME_FOR_SWD \
11880c5e7d1cSMax Shvetsov	ENABLE_SVE_FOR_SWD \
1189970a4a8dSManish Pandey	ENABLE_FEAT_RAS	\
1190f87e54f7SManish Pandey	FFH_SUPPORT	\
1191327131c4SLeonardo Sandoval	ERROR_DEPRECATED \
1192327131c4SLeonardo Sandoval	FAULT_INJECTION_SUPPORT \
1193327131c4SLeonardo Sandoval	GENERATE_COT \
1194327131c4SLeonardo Sandoval	GICV2_G0_FOR_EL3 \
119546cc41d5SManish Pandey	HANDLE_EA_EL3_FIRST_NS \
1196538516f5SBipin Ravi	HARDEN_SLS \
1197327131c4SLeonardo Sandoval	HW_ASSISTED_COHERENCY \
1198327131c4SLeonardo Sandoval	MEASURED_BOOT \
1199e7f1181fSTamas Ban	DICE_PROTECTION_ENVIRONMENT \
12006a88ec8bSRaghu Krishnamurthy	RMMD_ENABLE_EL3_TOKEN_SIGN \
120100e28874SManish V Badarkhe	DRTM_SUPPORT \
1202327131c4SLeonardo Sandoval	NS_TIMER_SWITCH \
1203327131c4SLeonardo Sandoval	OVERRIDE_LIBC \
1204327131c4SLeonardo Sandoval	PL011_GENERIC_UART \
1205327131c4SLeonardo Sandoval	PROGRAMMABLE_RESET_ADDRESS \
1206327131c4SLeonardo Sandoval	PSCI_EXTENDED_STATE_ID \
120764b4710bSWing Li	PSCI_OS_INIT_MODE \
12088db17052SBoyan Karatotev	ARCH_FEATURE_AVAILABILITY \
1209327131c4SLeonardo Sandoval	RESET_TO_BL31 \
1210327131c4SLeonardo Sandoval	SAVE_KEYS \
1211327131c4SLeonardo Sandoval	SEPARATE_CODE_AND_RODATA \
121296a8ed14SJiafei Pan	SEPARATE_BL2_NOLOAD_REGION \
1213327131c4SLeonardo Sandoval	SEPARATE_NOBITS_REGION \
121486acbbe2SYe Li	SEPARATE_RWDATA_REGION \
1215308ebfa1SMadhukar Pappireddy	SEPARATE_SIMD_SECTION \
1216327131c4SLeonardo Sandoval	SPIN_ON_BL1_EXIT \
1217327131c4SLeonardo Sandoval	SPM_MM \
12181d63ae4dSMarc Bonnici	SPMC_AT_EL3 \
1219801cd3c8SNishant Sharma	SPMC_AT_EL3_SEL0_SP \
1220327131c4SLeonardo Sandoval	SPMD_SPM_AT_SEL2 \
1221890b5088SRaghu Krishnamurthy	ENABLE_SPMD_LP \
12223ba2c151SRaymond Mao	TRANSFER_LIST \
1223327131c4SLeonardo Sandoval	TRUSTED_BOARD_BOOT \
1224327131c4SLeonardo Sandoval	USE_COHERENT_MEM \
1225327131c4SLeonardo Sandoval	USE_DEBUGFS \
1226327131c4SLeonardo Sandoval	ARM_IO_IN_DTB \
1227327131c4SLeonardo Sandoval	SDEI_IN_FCONF \
1228327131c4SLeonardo Sandoval	SEC_INT_DESC_IN_FCONF \
1229327131c4SLeonardo Sandoval	USE_ROMLIB \
1230327131c4SLeonardo Sandoval	USE_TBBR_DEFS \
1231327131c4SLeonardo Sandoval	WARMBOOT_ENABLE_DCACHE_EARLY \
123242d4d3baSArvind Ram Prakash	RESET_TO_BL2 \
1233327131c4SLeonardo Sandoval	BL2_IN_XIP_MEM \
1234327131c4SLeonardo Sandoval	BL2_INV_DCACHE \
1235327131c4SLeonardo Sandoval	USE_SPINLOCK_CAS \
1236327131c4SLeonardo Sandoval	ENCRYPT_BL31 \
1237327131c4SLeonardo Sandoval	ENCRYPT_BL32 \
1238327131c4SLeonardo Sandoval	ERRATA_SPECULATIVE_AT \
123900e8f79cSManish Pandey	RAS_TRAP_NS_ERR_REC_ACCESS \
1240327131c4SLeonardo Sandoval	COT_DESC_IN_DTB \
1241327131c4SLeonardo Sandoval	USE_SP804_TIMER \
1242396b339dSManish V Badarkhe	PSA_FWU_SUPPORT \
124311d05a77SSughosh Ganu	PSA_FWU_METADATA_FW_STORE_DESC \
124468120783SChris Kay	ENABLE_MPMM \
124568120783SChris Kay	ENABLE_MPMM_FCONF \
12466a0da736SJayanth Dodderi Chidanand	FEATURE_DETECTION \
12470b22e591SJayanth Dodderi Chidanand	TRNG_SUPPORT \
1248ffea3844SSona Mathew	ERRATA_ABI_SUPPORT \
1249ef63f5beSSona Mathew	ERRATA_NON_ARM_INTERCONNECT \
125004c7303bSOkash Khawaja	CONDITIONAL_CMO \
12515782b890SManish V Badarkhe	PSA_CRYPTO	\
125285bebe18SSandrine Bailleux	ENABLE_CONSOLE_GETC \
1253183329a5SArvind Ram Prakash	INIT_UNUSED_NS_EL2	\
1254bfef8b90SJuan Pablo Conde	PLATFORM_REPORT_CTX_MEM_USE \
1255ae770fedSYann Gautier	EARLY_CONSOLE \
1256f99a69c3SArvind Ram Prakash	PRESERVE_DSU_PMU_REGS \
12578953568aSLevi Yun	HOB_LIST \
1258327131c4SLeonardo Sandoval)))
125973c99d4eSJuan Castillo
1260c5e1da83SJayanth Dodderi Chidanand# Numeric_Flags
1261327131c4SLeonardo Sandoval$(eval $(call assert_numerics,\
1262327131c4SLeonardo Sandoval    $(sort \
1263327131c4SLeonardo Sandoval	ARM_ARCH_MAJOR \
1264327131c4SLeonardo Sandoval	ARM_ARCH_MINOR \
1265327131c4SLeonardo Sandoval	BRANCH_PROTECTION \
12666a0da736SJayanth Dodderi Chidanand	CTX_INCLUDE_PAUTH_REGS \
12676a0da736SJayanth Dodderi Chidanand	CTX_INCLUDE_NEVE_REGS \
12682bf4f27fSManish V Badarkhe	CRYPTO_SUPPORT \
126983a4dae1SBoyan Karatotev	DISABLE_MTPMU \
12701298f2f1SJayanth Dodderi Chidanand	ENABLE_BRBE_FOR_NS \
127147c681b7SJayanth Dodderi Chidanand	ENABLE_TRBE_FOR_NS \
12726a0da736SJayanth Dodderi Chidanand	ENABLE_BTI \
12736a0da736SJayanth Dodderi Chidanand	ENABLE_PAUTH \
1274d23acc9eSAndre Przywara	ENABLE_FEAT_AMU \
12756a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_AMUv1p1 \
12766a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_CSV2_2 \
127730019d86SSona Mathew	ENABLE_FEAT_CSV2_3 \
127883271d5aSArvind Ram Prakash	ENABLE_FEAT_DEBUGV8P9 \
12796a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_DIT \
12806a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_ECV \
12816a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_FGT \
128233e6aaacSArvind Ram Prakash	ENABLE_FEAT_FGT2 \
1283a57e18e4SArvind Ram Prakash	ENABLE_FEAT_FPMR \
12846a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_HCX \
128519d52a83SAndre Przywara	ENABLE_FEAT_LS64_ACCDATA \
12868e397889SGovindraj Raja	ENABLE_FEAT_MTE2 \
12876a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_PAN \
12886a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_RNG \
1289ff86e0b4SJuan Pablo Conde	ENABLE_FEAT_RNG_TRAP \
12906a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_SEL2 \
1291d3331603SMark Brown	ENABLE_FEAT_TCR2 \
12926d0433f0SJayanth Dodderi Chidanand	ENABLE_FEAT_THE \
12930e4daed2SGovindraj Raja	ENABLE_FEAT_SB \
1294062b6c6bSMark Brown	ENABLE_FEAT_S2PIE \
1295062b6c6bSMark Brown	ENABLE_FEAT_S1PIE \
1296062b6c6bSMark Brown	ENABLE_FEAT_S2POE \
1297062b6c6bSMark Brown	ENABLE_FEAT_S1POE \
12984ec4e545SJayanth Dodderi Chidanand	ENABLE_FEAT_SCTLR2 \
129930655136SGovindraj Raja	ENABLE_FEAT_D128 \
1300688ab57bSMark Brown	ENABLE_FEAT_GCS \
13016a0da736SJayanth Dodderi Chidanand	ENABLE_FEAT_VHE \
1302edebefbcSArvind Ram Prakash	ENABLE_FEAT_MPAM \
13036a0da736SJayanth Dodderi Chidanand	ENABLE_RME \
13046437a09aSAndre Przywara	ENABLE_SPE_FOR_NS \
1305603a0c6fSAndre Przywara	ENABLE_SYS_REG_TRACE_FOR_NS \
130645007acdSJayanth Dodderi Chidanand	ENABLE_SME_FOR_NS \
130703d3c0d7SJayanth Dodderi Chidanand	ENABLE_SME2_FOR_NS \
13082b0bc4e0SJayanth Dodderi Chidanand	ENABLE_SVE_FOR_NS \
13096a0da736SJayanth Dodderi Chidanand	ENABLE_TRF_FOR_NS \
1310327131c4SLeonardo Sandoval	FW_ENC_STATUS \
13115357f83dSManish V Badarkhe	NR_OF_FW_BANKS \
13125357f83dSManish V Badarkhe	NR_OF_IMAGES_IN_FW_BANK \
1313781d07a4SJayanth Dodderi Chidanand	TWED_DELAY \
1314781d07a4SJayanth Dodderi Chidanand	ENABLE_FEAT_TWED \
1315bebcf27fSMark Brown	SVE_VECTOR_LEN \
13160ed3be6fSVarun Wadekar	IMPDEF_SYSREG_TRAP \
1317327131c4SLeonardo Sandoval)))
1318c877b414SJeenu Viswambharan
1319aacff749SJustin Chadwellifdef KEY_SIZE
1320aacff749SJustin Chadwell        $(eval $(call assert_numeric,KEY_SIZE))
1321aacff749SJustin Chadwellendif
1322aacff749SJustin Chadwell
13231f461979SJustin Chadwellifeq ($(filter $(SANITIZE_UB), on off trap),)
13241f461979SJustin Chadwell        $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
13251f461979SJustin Chadwellendif
13261f461979SJustin Chadwell
132773c99d4eSJuan Castillo################################################################################
132873c99d4eSJuan Castillo# Add definitions to the cpp preprocessor based on the current build options.
132973c99d4eSJuan Castillo# This is done after including the platform specific makefile to allow the
133073c99d4eSJuan Castillo# platform to overwrite the default options
133173c99d4eSJuan Castillo################################################################################
133273c99d4eSJuan Castillo
1333327131c4SLeonardo Sandoval$(eval $(call add_defines,\
1334327131c4SLeonardo Sandoval    $(sort \
1335327131c4SLeonardo Sandoval	ALLOW_RO_XLAT_TABLES \
1336327131c4SLeonardo Sandoval	ARM_ARCH_MAJOR \
1337327131c4SLeonardo Sandoval	ARM_ARCH_MINOR \
133846789a7cSBalint Dobszay	BL2_ENABLE_SP_LOAD \
1339327131c4SLeonardo Sandoval	COLD_BOOT_SINGLE_CPU \
1340327131c4SLeonardo Sandoval	CTX_INCLUDE_AARCH32_REGS \
1341327131c4SLeonardo Sandoval	CTX_INCLUDE_FPREGS \
134242422622SMadhukar Pappireddy	CTX_INCLUDE_SVE_REGS \
1343327131c4SLeonardo Sandoval	CTX_INCLUDE_PAUTH_REGS \
13449acff28aSArvind Ram Prakash	CTX_INCLUDE_MPAM_REGS \
1345327131c4SLeonardo Sandoval	EL3_EXCEPTION_HANDLING \
1346327131c4SLeonardo Sandoval	CTX_INCLUDE_EL2_REGS \
1347062f8aafSArunachalam Ganapathy	CTX_INCLUDE_NEVE_REGS \
1348327131c4SLeonardo Sandoval	DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
13490063dd17SJavier Almansa Sobrino	DISABLE_MTPMU \
1350d23acc9eSAndre Przywara	ENABLE_FEAT_AMU \
13511fd685a7SChris Kay	ENABLE_AMU_AUXILIARY_COUNTERS \
1352742ca230SChris Kay	ENABLE_AMU_FCONF \
1353873d4241Sjohpow01	AMU_RESTRICT_COUNTERS \
1354327131c4SLeonardo Sandoval	ENABLE_ASSERTIONS \
1355327131c4SLeonardo Sandoval	ENABLE_BTI \
135683271d5aSArvind Ram Prakash	ENABLE_FEAT_DEBUGV8P9 \
1357edebefbcSArvind Ram Prakash	ENABLE_FEAT_MPAM \
1358327131c4SLeonardo Sandoval	ENABLE_PAUTH \
1359327131c4SLeonardo Sandoval	ENABLE_PIE \
1360327131c4SLeonardo Sandoval	ENABLE_PMF \
1361327131c4SLeonardo Sandoval	ENABLE_PSCI_STAT \
13625b18de09SZelalem Aweke	ENABLE_RME \
13636a88ec8bSRaghu Krishnamurthy	RMMD_ENABLE_EL3_TOKEN_SIGN \
1364327131c4SLeonardo Sandoval	ENABLE_RUNTIME_INSTRUMENTATION \
1365dc78e62dSjohpow01	ENABLE_SME_FOR_NS \
136603d3c0d7SJayanth Dodderi Chidanand	ENABLE_SME2_FOR_NS \
1367dc78e62dSjohpow01	ENABLE_SME_FOR_SWD \
136890118bb5SAndre Przywara	ENABLE_SPE_FOR_NS \
1369327131c4SLeonardo Sandoval	ENABLE_SVE_FOR_NS \
13700c5e7d1cSMax Shvetsov	ENABLE_SVE_FOR_SWD \
1371970a4a8dSManish Pandey	ENABLE_FEAT_RAS \
1372f87e54f7SManish Pandey	FFH_SUPPORT \
1373327131c4SLeonardo Sandoval	ENCRYPT_BL31 \
1374327131c4SLeonardo Sandoval	ENCRYPT_BL32 \
1375327131c4SLeonardo Sandoval	ERROR_DEPRECATED \
1376327131c4SLeonardo Sandoval	FAULT_INJECTION_SUPPORT \
1377327131c4SLeonardo Sandoval	GICV2_G0_FOR_EL3 \
137846cc41d5SManish Pandey	HANDLE_EA_EL3_FIRST_NS \
1379327131c4SLeonardo Sandoval	HW_ASSISTED_COHERENCY \
1380327131c4SLeonardo Sandoval	LOG_LEVEL \
1381327131c4SLeonardo Sandoval	MEASURED_BOOT \
1382e7f1181fSTamas Ban	DICE_PROTECTION_ENVIRONMENT \
138300e28874SManish V Badarkhe	DRTM_SUPPORT \
1384327131c4SLeonardo Sandoval	NS_TIMER_SWITCH \
1385327131c4SLeonardo Sandoval	PL011_GENERIC_UART \
1386327131c4SLeonardo Sandoval	PLAT_${PLAT} \
1387327131c4SLeonardo Sandoval	PROGRAMMABLE_RESET_ADDRESS \
1388327131c4SLeonardo Sandoval	PSCI_EXTENDED_STATE_ID \
138964b4710bSWing Li	PSCI_OS_INIT_MODE \
13908db17052SBoyan Karatotev	ARCH_FEATURE_AVAILABILITY \
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"
1648*c3273703SChris Kay	$(q)rm -rf $(BUILD_PLAT)
16497c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
16507c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
16517c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
16527c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
16534f6ad66aSAchin Gupta
1654eaaeece2SJames Morrisseyrealclean distclean:
16557c4e1eeaSChris Kay	$(s)echo "  REALCLEAN"
1656*c3273703SChris Kay	$(q)rm -rf $(BUILD_BASE)
1657*c3273703SChris Kay	$(q)rm -rf $(CURDIR)/cscope.*
16587c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
16597c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
16607c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
16617c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
16624f6ad66aSAchin Gupta
166336eaaf37SIan Spraycheckcodebase:		locate-checkpatch
16647c4e1eeaSChris Kay	$(s)echo "  CHECKING STYLE"
16657c4e1eeaSChris Kay	$(q)if test -d .git ; then						\
16661ef35512SPaul Beesley		git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' |	\
16671a41e8c1SDan Handley		while read GIT_FILE ;					\
16681a41e8c1SDan Handley		do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ;	\
16691a41e8c1SDan Handley		done ;							\
167036eaaf37SIan Spray	else								\
16711a41e8c1SDan Handley		 find . -type f -not -iwholename "*.git*"		\
16721a41e8c1SDan Handley		 -not -iwholename "*build*"				\
16731a41e8c1SDan Handley		 -not -iwholename "*libfdt*"				\
167461f72a34SRoberto Vargas		 -not -iwholename "*libc*"				\
16751a41e8c1SDan Handley		 -not -iwholename "*docs*"				\
16761ef35512SPaul Beesley		 -not -iwholename "*.rst"				\
16771a41e8c1SDan Handley		 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ;	\
167836eaaf37SIan Spray	fi
167936eaaf37SIan Spray
168036eaaf37SIan Spraycheckpatch:		locate-checkpatch
16817c4e1eeaSChris Kay	$(s)echo "  CHECKING STYLE"
16827c4e1eeaSChris Kay	$(q)if test -n "${CHECKPATCH_OPTS}"; then				\
168302a76d5fSYann Gautier		echo "    with ${CHECKPATCH_OPTS} option(s)";		\
168402a76d5fSYann Gautier	fi
16857c4e1eeaSChris Kay	$(q)COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT});	\
168677a0a7f1SYann Gautier	for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`;	\
168777a0a7f1SYann Gautier	do								\
168851d28937SAntonio Nino Diaz		printf "\n[*] Checking style of '$$commit'\n\n";	\
16891a721748SYann Gautier		( git log --format=email "$$commit~..$$commit"		\
16901a721748SYann Gautier			-- ${CHECK_PATHS} ;				\
169151d28937SAntonio Nino Diaz		  git diff --format=email "$$commit~..$$commit"		\
16921a721748SYann Gautier			-- ${CHECK_PATHS}; ) |				\
169302a76d5fSYann Gautier			${CHECKPATCH}  ${CHECKPATCH_OPTS} - || true;	\
169451d28937SAntonio Nino Diaz	done
169536eaaf37SIan Spray
169673c99d4eSJuan Castillocerttool: ${CRTTOOL}
169773c99d4eSJuan Castillo
1698a9812206SPali Rohár${CRTTOOL}: FORCE
16997c4e1eeaSChris 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
17007c4e1eeaSChris Kay	$(s)echo
17017c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17027c4e1eeaSChris Kay	$(s)echo
17036f971622SJuan Castillo
17046f971622SJuan Castilloifneq (${GENERATE_COT},0)
170573c99d4eSJuan Castillocertificates: ${CRT_DEPS} ${CRTTOOL}
17067c4e1eeaSChris Kay	$(q)${CRTTOOL} ${CRT_ARGS}
17077c4e1eeaSChris Kay	$(s)echo
17087c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17097c4e1eeaSChris Kay	$(s)echo "Certificates can be found in ${BUILD_PLAT}"
17107c4e1eeaSChris Kay	$(s)echo
1711c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
171227713fb4SSoby Mathew
171373c99d4eSJuan Castillo${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
17144727fd13SPali Rohár	$(eval ${CHECK_FIP_CMD})
17157c4e1eeaSChris Kay	$(q)${FIPTOOL} create ${FIP_ARGS} $@
17167c4e1eeaSChris Kay	$(q)${FIPTOOL} info $@
17177c4e1eeaSChris Kay	$(s)echo
17187c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17197c4e1eeaSChris Kay	$(s)echo
1720f58ad36fSHarry Liebel
17210191262dSYatharth Kocharifneq (${GENERATE_COT},0)
17220191262dSYatharth Kocharfwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
17237c4e1eeaSChris Kay	$(q)${CRTTOOL} ${FWU_CRT_ARGS}
17247c4e1eeaSChris Kay	$(s)echo
17257c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17267c4e1eeaSChris Kay	$(s)echo "FWU certificates can be found in ${BUILD_PLAT}"
17277c4e1eeaSChris Kay	$(s)echo
1728c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT)
17290191262dSYatharth Kochar
17300191262dSYatharth Kochar${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
17314727fd13SPali Rohár	$(eval ${CHECK_FWU_FIP_CMD})
17327c4e1eeaSChris Kay	$(q)${FIPTOOL} create ${FWU_FIP_ARGS} $@
17337c4e1eeaSChris Kay	$(q)${FIPTOOL} info $@
17347c4e1eeaSChris Kay	$(s)echo
17357c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17367c4e1eeaSChris Kay	$(s)echo
17370191262dSYatharth Kochar
173873c99d4eSJuan Castillofiptool: ${FIPTOOL}
173973c99d4eSJuan Castillofip: ${BUILD_PLAT}/${FIP_NAME}
17400191262dSYatharth Kocharfwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
174173c99d4eSJuan Castillo
1742a9812206SPali Rohár${FIPTOOL}: FORCE
174340469bf9SManish V Badarkhe	$(q)${MAKE} PLAT=${PLAT} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} --no-print-directory -C ${FIPTOOLPATH} all
1744f58ad36fSHarry Liebel
1745e4a070e3SManish V Badarkhe$(BUILD_PLAT)/romlib/romlib.bin $(BUILD_PLAT)/lib/libwrappers.a $&: $(BUILD_PLAT)/lib/libfdt.a $(BUILD_PLAT)/lib/libc.a $(CRYPTO_LIB)
1746e4a070e3SManish 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
17475accce5bSRoberto Vargas
1748cfe83910SLouis Mayencourtmemmap: all
17497c4e1eeaSChris Kay	$(q)PYTHONPATH=${CURDIR}/tools/memory \
1750af5b49e9SHarrison Mutai		${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1751cfe83910SLouis Mayencourt
17522329e22bSHarrison Mutaitl: ${BUILD_PLAT}/tl.bin
17532329e22bSHarrison Mutai${BUILD_PLAT}/tl.bin: ${HW_CONFIG}
1754d2867397SChris Kay	$(if $(host-poetry),$(q)poetry -q install)
1755d2867397SChris Kay	$(q)$(if $(host-poetry),poetry run )tlc create --fdt $< -s ${FW_HANDOFF_SIZE} $@
17562329e22bSHarrison Mutai
17576de32378SMadhukar Pappireddydoc:
17587c4e1eeaSChris Kay	$(s)echo "  BUILD DOCUMENTATION"
17597c4e1eeaSChris Kay	$(q)${MAKE} --no-print-directory -C ${DOCS_PATH} html
17606de32378SMadhukar Pappireddy
176190aa901fSSumit Gargenctool: ${ENCTOOL}
176290aa901fSSumit Garg
1763a9812206SPali Rohár${ENCTOOL}: FORCE
17647c4e1eeaSChris Kay	$(q)${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} --no-print-directory -C ${ENCTOOLPATH} all
17657c4e1eeaSChris Kay	$(s)echo
17667c4e1eeaSChris Kay	$(s)echo "Built $@ successfully"
17677c4e1eeaSChris Kay	$(s)echo
176890aa901fSSumit Garg
176935fab8c9SJoakim Bechcscope:
17707c4e1eeaSChris Kay	$(s)echo "  CSCOPE"
17717c4e1eeaSChris Kay	$(q)find ${CURDIR} -name "*.[chsS]" > cscope.files
17727c4e1eeaSChris Kay	$(q)cscope -b -q -k
177335fab8c9SJoakim Bech
177472ee3314SRyan Harkinhelp:
17757c4e1eeaSChris Kay	$(s)echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
17767c4e1eeaSChris Kay	$(s)echo ""
17777c4e1eeaSChris Kay	$(s)echo "PLAT is used to specify which platform you wish to build."
17787c4e1eeaSChris Kay	$(s)echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
17797c4e1eeaSChris Kay	$(s)echo ""
17807c4e1eeaSChris Kay	$(s)echo "platform = ${PLATFORM_LIST}"
17817c4e1eeaSChris Kay	$(s)echo ""
17827c4e1eeaSChris Kay	$(s)echo "Please refer to the User Guide for a list of all supported options."
17837c4e1eeaSChris Kay	$(s)echo "Note that the build system doesn't track dependencies for build "
17847c4e1eeaSChris Kay	$(s)echo "options. Therefore, if any of the build options are changed "
17857c4e1eeaSChris Kay	$(s)echo "from a previous build, a clean build must be performed."
17867c4e1eeaSChris Kay	$(s)echo ""
17877c4e1eeaSChris Kay	$(s)echo "Supported Targets:"
17887c4e1eeaSChris Kay	$(s)echo "  all            Build all individual bootloader binaries"
17897c4e1eeaSChris Kay	$(s)echo "  bl1            Build the BL1 binary"
17907c4e1eeaSChris Kay	$(s)echo "  bl2            Build the BL2 binary"
17917c4e1eeaSChris Kay	$(s)echo "  bl2u           Build the BL2U binary"
17927c4e1eeaSChris Kay	$(s)echo "  bl31           Build the BL31 binary"
17937c4e1eeaSChris Kay	$(s)echo "  bl32           Build the BL32 binary. If ARCH=aarch32, then "
17947c4e1eeaSChris Kay	$(s)echo "                 this builds secure payload specified by AARCH32_SP"
17957c4e1eeaSChris Kay	$(s)echo "  certificates   Build the certificates (requires 'GENERATE_COT=1')"
17967c4e1eeaSChris Kay	$(s)echo "  fip            Build the Firmware Image Package (FIP)"
17977c4e1eeaSChris Kay	$(s)echo "  fwu_fip        Build the FWU Firmware Image Package (FIP)"
17987c4e1eeaSChris Kay	$(s)echo "  checkcodebase  Check the coding style of the entire source tree"
17997c4e1eeaSChris Kay	$(s)echo "  checkpatch     Check the coding style on changes in the current"
18007c4e1eeaSChris Kay	$(s)echo "                 branch against BASE_COMMIT (default origin/master)"
18017c4e1eeaSChris Kay	$(s)echo "  clean          Clean the build for the selected platform"
18027c4e1eeaSChris Kay	$(s)echo "  cscope         Generate cscope index"
18037c4e1eeaSChris Kay	$(s)echo "  distclean      Remove all build artifacts for all platforms"
18047c4e1eeaSChris Kay	$(s)echo "  certtool       Build the Certificate generation tool"
18057c4e1eeaSChris Kay	$(s)echo "  enctool        Build the Firmware encryption tool"
18067c4e1eeaSChris Kay	$(s)echo "  fiptool        Build the Firmware Image Package (FIP) creation tool"
18077c4e1eeaSChris Kay	$(s)echo "  sp             Build the Secure Partition Packages"
18087c4e1eeaSChris Kay	$(s)echo "  sptool         Build the Secure Partition Package creation tool"
18097c4e1eeaSChris Kay	$(s)echo "  dtbs           Build the Device Tree Blobs (if required for the platform)"
18107c4e1eeaSChris Kay	$(s)echo "  memmap         Print the memory map of the built binaries"
18117c4e1eeaSChris Kay	$(s)echo "  doc            Build html based documentation using Sphinx tool"
18127c4e1eeaSChris Kay	$(s)echo ""
18137c4e1eeaSChris Kay	$(s)echo "Note: most build targets require PLAT to be set to a specific platform."
18147c4e1eeaSChris Kay	$(s)echo ""
18157c4e1eeaSChris Kay	$(s)echo "example: build all targets for the FVP platform:"
18167c4e1eeaSChris Kay	$(s)echo "  CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
1817a9812206SPali Rohár
1818a9812206SPali Rohár.PHONY: FORCE
1819a9812206SPali RohárFORCE:;
1820