xref: /rk3399_ARM-atf/Makefile (revision 46cc41d5592a16f702f7f0c0c41f8948a3e11cda)
14f6ad66aSAchin Gupta#
2c9c56f6eSManish V Badarkhe# Copyright (c) 2013-2022, 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
1124c5d206SJayanth Dodderi ChidanandVERSION_MINOR			:= 7
12dddf4283Slaurenw-armVERSION				:= ${VERSION_MAJOR}.${VERSION_MINOR}
13aaa3e722SJuan Castillo
1488154678SJuan Castillo# Default goal is build all images
1588154678SJuan Castillo.DEFAULT_GOAL			:= all
1688154678SJuan Castillo
1772fc70edSDouglas Raillard# Avoid any implicit propagation of command line variable definitions to
1872fc70edSDouglas Raillard# sub-Makefiles, like CFLAGS that we reserved for the firmware images'
1972fc70edSDouglas Raillard# usage. Other command line options like "-s" are still propagated as usual.
2072fc70edSDouglas RaillardMAKEOVERRIDES =
2172fc70edSDouglas Raillard
22231c1470SEvan LloydMAKE_HELPERS_DIRECTORY := make_helpers/
23231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_macros.mk
24e7f54dbdSEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_env.mk
2573c99d4eSJuan Castillo
2673c99d4eSJuan Castillo################################################################################
272fae4b1eSJeenu Viswambharan# Default values for build configurations, and their dependencies
2873c99d4eSJuan Castillo################################################################################
29e35c4045SJeenu Viswambharan
302fae4b1eSJeenu Viswambharaninclude ${MAKE_HELPERS_DIRECTORY}defaults.mk
31872be88aSdp-arm
32cc8b5632SAntonio Nino Diaz# Assertions enabled for DEBUG builds by default
33cc8b5632SAntonio Nino DiazENABLE_ASSERTIONS		:= ${DEBUG}
342fae4b1eSJeenu ViswambharanENABLE_PMF			:= ${ENABLE_RUNTIME_INSTRUMENTATION}
352fae4b1eSJeenu ViswambharanPLAT				:= ${DEFAULT_PLAT}
3673c99d4eSJuan Castillo
3773c99d4eSJuan Castillo################################################################################
3873c99d4eSJuan Castillo# Checkpatch script options
3973c99d4eSJuan Castillo################################################################################
4073c99d4eSJuan Castillo
41f607739cSSandrine BailleuxCHECKCODE_ARGS		:=	--no-patch
42f0b489c1SDan Handley# Do not check the coding style on imported library files or documentation files
434501843fSGilad Ben-YossefINC_ARM_DIRS_TO_CHECK	:=	$(sort $(filter-out                     \
444501843fSGilad Ben-Yossef					include/drivers/arm/cryptocell,	\
454501843fSGilad Ben-Yossef					$(wildcard include/drivers/arm/*)))
464501843fSGilad Ben-YossefINC_ARM_DIRS_TO_CHECK	+=	include/drivers/arm/cryptocell/*.h
474501843fSGilad Ben-YossefINC_DRV_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
484501843fSGilad Ben-Yossef					include/drivers/arm,		\
494501843fSGilad Ben-Yossef					$(wildcard include/drivers/*)))
50f0b489c1SDan HandleyINC_LIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
511a41e8c1SDan Handley					include/lib/libfdt		\
5261f72a34SRoberto Vargas					include/lib/libc,		\
53f0b489c1SDan Handley					$(wildcard include/lib/*)))
54f0b489c1SDan HandleyINC_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
554501843fSGilad Ben-Yossef					include/lib			\
564501843fSGilad Ben-Yossef					include/drivers,		\
57f0b489c1SDan Handley					$(wildcard include/*)))
58f0b489c1SDan HandleyLIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
59d801fbb0Sdp-arm					lib/compiler-rt			\
6055cdcf75SAntonio Nino Diaz					lib/libfdt%			\
6161f72a34SRoberto Vargas					lib/libc,			\
62a194255dSDaniel Boulby					lib/zlib			\
63f0b489c1SDan Handley					$(wildcard lib/*)))
64f0b489c1SDan HandleyROOT_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
65f0b489c1SDan Handley					lib				\
66f0b489c1SDan Handley					include				\
67f0b489c1SDan Handley					docs				\
681ef35512SPaul Beesley					%.rst,				\
69f0b489c1SDan Handley					$(wildcard *)))
70f0b489c1SDan HandleyCHECK_PATHS		:=	${ROOT_DIRS_TO_CHECK}			\
71f0b489c1SDan Handley				${INC_DIRS_TO_CHECK}			\
72f0b489c1SDan Handley				${INC_LIB_DIRS_TO_CHECK}		\
734501843fSGilad Ben-Yossef				${LIB_DIRS_TO_CHECK}			\
744501843fSGilad Ben-Yossef				${INC_DRV_DIRS_TO_CHECK}		\
754501843fSGilad Ben-Yossef				${INC_ARM_DIRS_TO_CHECK}
7636eaaf37SIan Spray
7773c99d4eSJuan Castillo
7873c99d4eSJuan Castillo################################################################################
7973c99d4eSJuan Castillo# Process build options
8073c99d4eSJuan Castillo################################################################################
8173c99d4eSJuan Castillo
8273c99d4eSJuan Castillo# Verbose flag
83e35c4045SJeenu Viswambharanifeq (${V},0)
84b169f6a9SEvan Lloyd        Q:=@
85ee1ba6d4SAndre Przywara        ECHO:=@echo
8636eaaf37SIan Spray        CHECKCODE_ARGS	+=	--no-summary --terse
874f6ad66aSAchin Guptaelse
88b169f6a9SEvan Lloyd        Q:=
89b5a0f4bdSAntonio Nino Diaz        ECHO:=$(ECHO_QUIET)
904f6ad66aSAchin Guptaendif
91ee1ba6d4SAndre Przywara
92ee1ba6d4SAndre Przywaraifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
93ee1ba6d4SAndre Przywara        Q:=@
94b5a0f4bdSAntonio Nino Diaz        ECHO:=$(ECHO_QUIET)
95ee1ba6d4SAndre Przywaraendif
96ee1ba6d4SAndre Przywara
97ee1ba6d4SAndre Przywaraexport Q ECHO
982f2cef46SJeenu Viswambharan
9973c99d4eSJuan Castillo# The cert_create tool cannot generate certificates individually, so we use the
10073c99d4eSJuan Castillo# target 'certificates' to create them all
10173c99d4eSJuan Castilloifneq (${GENERATE_COT},0)
10273c99d4eSJuan Castillo        FIP_DEPS += certificates
1030191262dSYatharth Kochar        FWU_FIP_DEPS += fwu_certificates
10473c99d4eSJuan Castilloendif
10573c99d4eSJuan Castillo
1069fc59639SAlexei Fedorov# Process BRANCH_PROTECTION value and set
1079fc59639SAlexei Fedorov# Pointer Authentication and Branch Target Identification flags
1089fc59639SAlexei Fedorovifeq (${BRANCH_PROTECTION},0)
1099fc59639SAlexei Fedorov	# Default value turns off all types of branch protection
1109fc59639SAlexei Fedorov	BP_OPTION := none
1119fc59639SAlexei Fedorovelse ifneq (${ARCH},aarch64)
1129fc59639SAlexei Fedorov        $(error BRANCH_PROTECTION requires AArch64)
1139fc59639SAlexei Fedorovelse ifeq (${BRANCH_PROTECTION},1)
1149fc59639SAlexei Fedorov	# Enables all types of branch protection features
1159fc59639SAlexei Fedorov	BP_OPTION := standard
1169fc59639SAlexei Fedorov	ENABLE_BTI := 1
1179fc59639SAlexei Fedorov	ENABLE_PAUTH := 1
1189fc59639SAlexei Fedorovelse ifeq (${BRANCH_PROTECTION},2)
1199fc59639SAlexei Fedorov	# Return address signing to its standard level
1209fc59639SAlexei Fedorov	BP_OPTION := pac-ret
1219fc59639SAlexei Fedorov	ENABLE_PAUTH := 1
1229fc59639SAlexei Fedorovelse ifeq (${BRANCH_PROTECTION},3)
1239fc59639SAlexei Fedorov	# Extend the signing to include leaf functions
1249fc59639SAlexei Fedorov	BP_OPTION := pac-ret+leaf
1259fc59639SAlexei Fedorov	ENABLE_PAUTH := 1
1263768fecfSAlexei Fedorovelse ifeq (${BRANCH_PROTECTION},4)
1273768fecfSAlexei Fedorov	# Turn on branch target identification mechanism
1283768fecfSAlexei Fedorov	BP_OPTION := bti
1293768fecfSAlexei Fedorov	ENABLE_BTI := 1
1309fc59639SAlexei Fedorovelse
1319fc59639SAlexei Fedorov        $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
1329fc59639SAlexei Fedorovendif
13373c99d4eSJuan Castillo
1345b18de09SZelalem Aweke# FEAT_RME
1355b18de09SZelalem Awekeifeq (${ENABLE_RME},1)
1365b18de09SZelalem Aweke# RME doesn't support PIE
1375b18de09SZelalem Awekeifneq (${ENABLE_PIE},0)
1385b18de09SZelalem Aweke        $(error ENABLE_RME does not support PIE)
1395b18de09SZelalem Awekeendif
140744ad974Sjohpow01# RME doesn't support BRBE
141744ad974Sjohpow01ifneq (${ENABLE_BRBE_FOR_NS},0)
142744ad974Sjohpow01        $(error ENABLE_RME does not support BRBE.)
143744ad974Sjohpow01endif
1445b18de09SZelalem Aweke# RME requires AARCH64
1455b18de09SZelalem Awekeifneq (${ARCH},aarch64)
1465b18de09SZelalem Aweke        $(error ENABLE_RME requires AArch64)
1475b18de09SZelalem Awekeendif
1485b18de09SZelalem Aweke# RME requires el2 context to be saved for now.
1495b18de09SZelalem AwekeCTX_INCLUDE_EL2_REGS := 1
1505b18de09SZelalem AwekeCTX_INCLUDE_AARCH32_REGS := 0
1515b18de09SZelalem AwekeARM_ARCH_MAJOR := 8
1527670ddb1SAndre PrzywaraARM_ARCH_MINOR := 5
1537670ddb1SAndre PrzywaraENABLE_FEAT_ECV = 1
1547670ddb1SAndre PrzywaraENABLE_FEAT_FGT = 1
1557670ddb1SAndre Przywara
1565b18de09SZelalem Awekeendif
1575b18de09SZelalem Aweke
158c97cba4eSSoby Mathew# USE_SPINLOCK_CAS requires AArch64 build
159c97cba4eSSoby Mathewifeq (${USE_SPINLOCK_CAS},1)
160c97cba4eSSoby Mathewifneq (${ARCH},aarch64)
161c97cba4eSSoby Mathew        $(error USE_SPINLOCK_CAS requires AArch64)
162c97cba4eSSoby Mathewendif
163c97cba4eSSoby Mathewendif
164c97cba4eSSoby Mathew
1650ca3913dSOlivier Deprez# USE_DEBUGFS experimental feature recommended only in debug builds
1660ca3913dSOlivier Deprezifeq (${USE_DEBUGFS},1)
1670ca3913dSOlivier Deprezifeq (${DEBUG},1)
1680ca3913dSOlivier Deprez        $(warning DEBUGFS experimental feature is enabled.)
1690ca3913dSOlivier Deprezelse
1700ca3913dSOlivier Deprez        $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
1710ca3913dSOlivier Deprezendif
1720ca3913dSOlivier Deprezendif
1730ca3913dSOlivier Deprez
174c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
175c6ba9b45SSumit GargENC_ARGS += -f ${FW_ENC_STATUS}
176c6ba9b45SSumit GargENC_ARGS += -k ${ENC_KEY}
177c6ba9b45SSumit GargENC_ARGS += -n ${ENC_NONCE}
178c6ba9b45SSumit GargFIP_DEPS += enctool
179c6ba9b45SSumit GargFWU_FIP_DEPS += enctool
180c6ba9b45SSumit Gargendif
181c6ba9b45SSumit Garg
18273c99d4eSJuan Castillo################################################################################
18373c99d4eSJuan Castillo# Toolchain
18473c99d4eSJuan Castillo################################################################################
18573c99d4eSJuan Castillo
18672610c41Sdp-armHOSTCC			:=	gcc
18772610c41Sdp-armexport HOSTCC
18872610c41Sdp-arm
18973c99d4eSJuan CastilloCC			:=	${CROSS_COMPILE}gcc
19073c99d4eSJuan CastilloCPP			:=	${CROSS_COMPILE}cpp
19173c99d4eSJuan CastilloAS			:=	${CROSS_COMPILE}gcc
19273c99d4eSJuan CastilloAR			:=	${CROSS_COMPILE}ar
1932adee763SRoberto VargasLINKER			:=	${CROSS_COMPILE}ld
19473c99d4eSJuan CastilloOC			:=	${CROSS_COMPILE}objcopy
19573c99d4eSJuan CastilloOD			:=	${CROSS_COMPILE}objdump
19673c99d4eSJuan CastilloNM			:=	${CROSS_COMPILE}nm
19773c99d4eSJuan CastilloPP			:=	${CROSS_COMPILE}gcc -E
19838c14d88SSoby MathewDTC			:=	dtc
19973c99d4eSJuan Castillo
200b25a577fSJulius Werner# Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH).
201b25a577fSJulius Wernerifneq ($(strip $(wildcard ${LD}.bfd) \
2022adee763SRoberto Vargas	$(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),)
2032adee763SRoberto VargasLINKER			:=	${LINKER}.bfd
204b25a577fSJulius Wernerendif
205b25a577fSJulius Werner
20626e63c44SEtienne Carriereifeq (${ARM_ARCH_MAJOR},7)
20726e63c44SEtienne Carrieretarget32-directive	= 	-target arm-none-eabi
20826e63c44SEtienne Carriere# Will set march32-directive from platform configuration
20926e63c44SEtienne Carriereelse
21026e63c44SEtienne Carrieretarget32-directive	= 	-target armv8a-none-eabi
211fa6f774bSAlexei Fedorov
212f1821790SAlexei Fedorov# Set the compiler's target architecture profile based on
213f1821790SAlexei Fedorov# ARM_ARCH_MAJOR ARM_ARCH_MINOR options
214fa6f774bSAlexei Fedorovifeq (${ARM_ARCH_MINOR},0)
215f1821790SAlexei Fedorovmarch32-directive	= 	-march=armv${ARM_ARCH_MAJOR}-a
216f1821790SAlexei Fedorovmarch64-directive	= 	-march=armv${ARM_ARCH_MAJOR}-a
217fa6f774bSAlexei Fedorovelse
218f1821790SAlexei Fedorovmarch32-directive	= 	-march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a
219f1821790SAlexei Fedorovmarch64-directive	= 	-march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a
220fa6f774bSAlexei Fedorovendif
22126e63c44SEtienne Carriereendif
22226e63c44SEtienne Carriere
2237ff088d1SManish V Badarkhe# Memory tagging is supported in architecture Armv8.5-A AArch64 and onwards
2247ff088d1SManish V Badarkheifeq ($(ARCH), aarch64)
2254a565bd8SSami Mujawar# Check if revision is greater than or equal to 8.5
2264a565bd8SSami Mujawarifeq "8.5" "$(word 1, $(sort 8.5 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
2277ff088d1SManish V Badarkhemem_tag_arch_support	= 	yes
2287ff088d1SManish V Badarkheendif
2297ff088d1SManish V Badarkheendif
2307ff088d1SManish V Badarkhe
231f1821790SAlexei Fedorov# Get architecture feature modifiers
232f1821790SAlexei Fedorovarch-features		=	${ARM_ARCH_FEATURE}
233f1821790SAlexei Fedorov
234f1821790SAlexei Fedorov# Enable required options for memory stack tagging.
235f1821790SAlexei Fedorov# Currently, these options are enabled only for clang and armclang compiler.
2367ff088d1SManish V Badarkheifeq (${SUPPORT_STACK_MEMTAG},yes)
2377ff088d1SManish V Badarkheifdef mem_tag_arch_support
238f1821790SAlexei Fedorov# Check for armclang and clang compilers
2397ff088d1SManish V Badarkheifneq ( ,$(filter $(notdir $(CC)),armclang clang))
240f1821790SAlexei Fedorov# Add "memtag" architecture feature modifier if not specified
241f1821790SAlexei Fedorovifeq ( ,$(findstring memtag,$(arch-features)))
242f1821790SAlexei Fedorovarch-features       	:=       $(arch-features)+memtag
243f1821790SAlexei Fedorovendif	# memtag
2447ff088d1SManish V Badarkheifeq ($(notdir $(CC)),armclang)
2457ff088d1SManish V BadarkheTF_CFLAGS		+=	-mmemtag-stack
2467ff088d1SManish V Badarkheelse ifeq ($(notdir $(CC)),clang)
2477ff088d1SManish V BadarkheTF_CFLAGS		+=	-fsanitize=memtag
248f1821790SAlexei Fedorovendif	# armclang
249f1821790SAlexei Fedorovendif	# armclang clang
2507ff088d1SManish V Badarkheelse
2517ff088d1SManish V Badarkhe$(error "Error: stack memory tagging is not supported for architecture \
2527ff088d1SManish V Badarkhe	${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
253f1821790SAlexei Fedorovendif	# mem_tag_arch_support
254f1821790SAlexei Fedorovendif	# SUPPORT_STACK_MEMTAG
255f1821790SAlexei Fedorov
256f1821790SAlexei Fedorov# Set the compiler's architecture feature modifiers
257f1821790SAlexei Fedorovifneq ($(arch-features), none)
258f1821790SAlexei Fedorov# Strip "none+" from arch-features
259f1821790SAlexei Fedorovarch-features		:=	$(subst none+,,$(arch-features))
260f1821790SAlexei Fedorovifeq ($(ARCH), aarch32)
261f1821790SAlexei Fedorovmarch32-directive	:=	$(march32-directive)+$(arch-features)
262f1821790SAlexei Fedorovelse
263f1821790SAlexei Fedorovmarch64-directive	:=	$(march64-directive)+$(arch-features)
2647ff088d1SManish V Badarkheendif
265f1821790SAlexei Fedorov# Print features
266f1821790SAlexei Fedorov$(info Arm Architecture Features specified: $(subst +, ,$(arch-features)))
267f1821790SAlexei Fedorovendif	# arch-features
2687ff088d1SManish V Badarkhe
26912cd65e0STomas Pilar# Determine if FEAT_RNG is supported
27012cd65e0STomas PilarENABLE_FEAT_RNG		=	$(if $(findstring rng,${arch-features}),1,0)
27112cd65e0STomas Pilar
2724e04478aSChris Kay# Determine if FEAT_SB is supported
2734e04478aSChris KayENABLE_FEAT_SB		=	$(if $(findstring sb,${arch-features}),1,0)
2744e04478aSChris Kay
275c8a992fdSoriginifneq ($(findstring clang,$(notdir $(CC))),)
276fd18a8fcSVarun Wadekar	ifneq ($(findstring armclang,$(notdir $(CC))),)
277c8a992fdSorigin		TF_CFLAGS_aarch32	:=	-target arm-arm-none-eabi $(march32-directive)
278c8a992fdSorigin		TF_CFLAGS_aarch64	:=	-target aarch64-arm-none-eabi $(march64-directive)
279c8a992fdSorigin		LD			:=	$(LINKER)
280c8a992fdSorigin	else
28194eb1277SArvind Ram Prakash		TF_CFLAGS_aarch32	=	$(target32-directive) $(march32-directive)
282c8a992fdSorigin		TF_CFLAGS_aarch64	:=	-target aarch64-elf $(march64-directive)
283c8a992fdSorigin		LD			:=	$(shell $(CC) --print-prog-name ld.lld)
284c8a992fdSorigin
285c8a992fdSorigin		AR			:=	$(shell $(CC) --print-prog-name llvm-ar)
286c8a992fdSorigin		OD			:=	$(shell $(CC) --print-prog-name llvm-objdump)
287c8a992fdSorigin		OC			:=	$(shell $(CC) --print-prog-name llvm-objcopy)
288641f16e7SAmbroise Vincent	endif
289c8a992fdSorigin
290c8a992fdSorigin	CPP		:=	$(CC) -E $(TF_CFLAGS_$(ARCH))
291c8a992fdSorigin	PP		:=	$(CC) -E $(TF_CFLAGS_$(ARCH))
292c8a992fdSorigin	AS		:=	$(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
293edbce9aaSzelalem-awekeelse ifneq ($(findstring gcc,$(notdir $(CC))),)
294edbce9aaSzelalem-awekeTF_CFLAGS_aarch32	=	$(march32-directive)
295edbce9aaSzelalem-awekeTF_CFLAGS_aarch64	=	$(march64-directive)
296edbce9aaSzelalem-awekeifeq ($(ENABLE_LTO),1)
297edbce9aaSzelalem-aweke	# Enable LTO only for aarch64
298edbce9aaSzelalem-aweke	ifeq (${ARCH},aarch64)
299edbce9aaSzelalem-aweke		LTO_CFLAGS	=	-flto
300edbce9aaSzelalem-aweke		# Use gcc as a wrapper for the ld, recommended for LTO
301edbce9aaSzelalem-aweke		LINKER		:=	${CROSS_COMPILE}gcc
302edbce9aaSzelalem-aweke	endif
303edbce9aaSzelalem-awekeendif
304edbce9aaSzelalem-awekeLD			=	$(LINKER)
305d5461857Sdp-armelse
30626e63c44SEtienne CarriereTF_CFLAGS_aarch32	=	$(march32-directive)
307fa6f774bSAlexei FedorovTF_CFLAGS_aarch64	=	$(march64-directive)
3082adee763SRoberto VargasLD			=	$(LINKER)
309d5461857Sdp-armendif
310d5461857Sdp-arm
31132b209bfSAhmad Fatoum# Process Debug flag
31232b209bfSAhmad Fatoum$(eval $(call add_define,DEBUG))
31332b209bfSAhmad Fatoumifneq (${DEBUG}, 0)
31432b209bfSAhmad Fatoum        BUILD_TYPE	:=	debug
3154466cf82SDaniel Boulby        TF_CFLAGS	+=	-g -gdwarf-4
3164466cf82SDaniel Boulby        ASFLAGS		+=	-g -Wa,-gdwarf-4
31732b209bfSAhmad Fatoum
31832b209bfSAhmad Fatoum        # Use LOG_LEVEL_INFO by default for debug builds
31932b209bfSAhmad Fatoum        LOG_LEVEL	:=	40
32032b209bfSAhmad Fatoumelse
32132b209bfSAhmad Fatoum        BUILD_TYPE	:=	release
32232b209bfSAhmad Fatoum        # Use LOG_LEVEL_NOTICE by default for release builds
32332b209bfSAhmad Fatoum        LOG_LEVEL	:=	20
32432b209bfSAhmad Fatoumendif
32532b209bfSAhmad Fatoum
326f1de4c8fSPeiyuan Song# Default build string (git branch and commit)
327f1de4c8fSPeiyuan Songifeq (${BUILD_STRING},)
328f1de4c8fSPeiyuan Song        BUILD_STRING  :=  $(shell git describe --always --dirty --tags 2> /dev/null)
329f1de4c8fSPeiyuan Songendif
330dddf4283Slaurenw-armVERSION_STRING    :=  v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
331f1de4c8fSPeiyuan Song
3328fd9d4d5SAntonio Nino Diazifeq (${AARCH32_INSTRUCTION_SET},A32)
3338fd9d4d5SAntonio Nino DiazTF_CFLAGS_aarch32	+=	-marm
3348fd9d4d5SAntonio Nino Diazelse ifeq (${AARCH32_INSTRUCTION_SET},T32)
3358fd9d4d5SAntonio Nino DiazTF_CFLAGS_aarch32	+=	-mthumb
3368fd9d4d5SAntonio Nino Diazelse
3378fd9d4d5SAntonio Nino Diaz$(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
3388fd9d4d5SAntonio Nino Diazendif
3398fd9d4d5SAntonio Nino Diaz
340a9c4dde3SSandrine BailleuxTF_CFLAGS_aarch32	+=	-mno-unaligned-access
341d5461857Sdp-armTF_CFLAGS_aarch64	+=	-mgeneral-regs-only -mstrict-align
3429d29c227SSoby Mathew
3439fc59639SAlexei Fedorovifneq (${BP_OPTION},none)
3449fc59639SAlexei FedorovTF_CFLAGS_aarch64	+=	-mbranch-protection=${BP_OPTION}
3459fc59639SAlexei Fedorovendif
3469fc59639SAlexei Fedorov
34726e63c44SEtienne CarriereASFLAGS_aarch32		=	$(march32-directive)
348fa6f774bSAlexei FedorovASFLAGS_aarch64		=	$(march64-directive)
349b86048c4SAntonio Nino Diaz
3509ab81b5eSJustin Chadwell# General warnings
3519ab81b5eSJustin ChadwellWARNINGS		:=	-Wall -Wmissing-include-dirs -Wunused	\
352b7f6525dSJustin Chadwell				-Wdisabled-optimization -Wvla -Wshadow	\
353ca661a00SMadhukar Pappireddy				-Wno-unused-parameter -Wredundant-decls
3549ab81b5eSJustin Chadwell
3559ab81b5eSJustin Chadwell# Additional warnings
3569ab81b5eSJustin Chadwell# Level 1
357e7c645b5SYann GautierWARNING1 := -Wextra
358e7c645b5SYann GautierWARNING1 += -Wmissing-format-attribute
359e7c645b5SYann GautierWARNING1 += -Wmissing-prototypes
360e7c645b5SYann GautierWARNING1 += -Wold-style-definition
361e7c645b5SYann Gautier
362b7f6525dSJustin Chadwell# Level 2
363e7c645b5SYann GautierWARNING2 := -Waggregate-return
364e7c645b5SYann GautierWARNING2 += -Wcast-align
365e7c645b5SYann GautierWARNING2 += -Wnested-externs
366e7c645b5SYann Gautier
367e7c645b5SYann GautierWARNING3 := -Wbad-function-cast
368e7c645b5SYann GautierWARNING3 += -Wcast-qual
369e7c645b5SYann GautierWARNING3 += -Wconversion
370e7c645b5SYann GautierWARNING3 += -Wpacked
371e7c645b5SYann GautierWARNING3 += -Wpointer-arith
372e7c645b5SYann GautierWARNING3 += -Wswitch-default
373e7c645b5SYann Gautier
374e7c645b5SYann Gautierifeq (${W},1)
3759ab81b5eSJustin ChadwellWARNINGS += $(WARNING1)
376e7c645b5SYann Gautierelse ifeq (${W},2)
3779ab81b5eSJustin ChadwellWARNINGS += $(WARNING1) $(WARNING2)
378e7c645b5SYann Gautierelse ifeq (${W},3)
3799ab81b5eSJustin ChadwellWARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
380e7c645b5SYann Gautierendif
381e7c645b5SYann Gautier
3829ab81b5eSJustin Chadwell# Compiler specific warnings
38300296576SAmbroise Vincentifeq ($(findstring clang,$(notdir $(CC))),)
38493c690ebSJustin Chadwell# not using clang
385d7b4cd41SJustin ChadwellWARNINGS	+=		-Wunused-but-set-variable -Wmaybe-uninitialized	\
386d7b4cd41SJustin Chadwell				-Wpacked-bitfield-compat -Wshift-overflow=2 \
387d7b4cd41SJustin Chadwell				-Wlogical-op
38893c690ebSJustin Chadwellelse
38993c690ebSJustin Chadwell# using clang
390d7b4cd41SJustin ChadwellWARNINGS	+=		-Wshift-overflow -Wshift-sign-overflow \
391d7b4cd41SJustin Chadwell				-Wlogical-op-parentheses
39200296576SAmbroise Vincentendif
39300296576SAmbroise Vincent
3946336b07aSYann Gautierifneq (${E},0)
3956336b07aSYann GautierERRORS := -Werror
3966336b07aSYann Gautierendif
3976336b07aSYann Gautier
398ea7a57a3SRoberto VargasCPPFLAGS		=	${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc	\
3999ab81b5eSJustin Chadwell				$(ERRORS) $(WARNINGS)
40059de5096SMasahiro YamadaASFLAGS			+=	$(CPPFLAGS) $(ASFLAGS_$(ARCH))			\
401d5dfdeb6SJulius Werner				-ffreestanding -Wa,--fatal-warnings
40259de5096SMasahiro YamadaTF_CFLAGS		+=	$(CPPFLAGS) $(TF_CFLAGS_$(ARCH))		\
403ebd6efaeSSamuel Holland				-ffunction-sections -fdata-sections		\
404ebd6efaeSSamuel Holland				-ffreestanding -fno-builtin -fno-common		\
405ebd6efaeSSamuel Holland				-Os -std=gnu99
40673c99d4eSJuan Castillo
407bebcf27fSMark Brown$(eval $(call add_define,SVE_VECTOR_LEN))
408bebcf27fSMark Brown
4091f461979SJustin Chadwellifeq (${SANITIZE_UB},on)
4101f461979SJustin ChadwellTF_CFLAGS		+=	-fsanitize=undefined -fno-sanitize-recover
4111f461979SJustin Chadwellendif
4121f461979SJustin Chadwellifeq (${SANITIZE_UB},trap)
4131f461979SJustin ChadwellTF_CFLAGS		+=	-fsanitize=undefined -fno-sanitize-recover	\
4141f461979SJustin Chadwell				-fsanitize-undefined-trap-on-error
4151f461979SJustin Chadwellendif
4161f461979SJustin Chadwell
417f7ec31dbSdavid cunadoGCC_V_OUTPUT		:=	$(shell $(CC) -v 2>&1)
418f7ec31dbSdavid cunado
419641f16e7SAmbroise Vincent# LD = armlink
420c2ad38ceSVarun Wadekarifneq ($(findstring armlink,$(notdir $(LD))),)
421c2ad38ceSVarun WadekarTF_LDFLAGS		+=	--diag_error=warning --lto_level=O1
422c2ad38ceSVarun WadekarTF_LDFLAGS		+=	--remove --info=unused,unusedsymbols
423edbce9aaSzelalem-awekeTF_LDFLAGS		+=	$(TF_LDFLAGS_$(ARCH))
424641f16e7SAmbroise Vincent
425641f16e7SAmbroise Vincent# LD = gcc (used when GCC LTO is enabled)
426edbce9aaSzelalem-awekeelse ifneq ($(findstring gcc,$(notdir $(LD))),)
427edbce9aaSzelalem-aweke# Pass ld options with Wl or Xlinker switches
428edbce9aaSzelalem-awekeTF_LDFLAGS		+=	-Wl,--fatal-warnings -O1
429edbce9aaSzelalem-awekeTF_LDFLAGS		+=	-Wl,--gc-sections
430edbce9aaSzelalem-awekeifeq ($(ENABLE_LTO),1)
431edbce9aaSzelalem-aweke	ifeq (${ARCH},aarch64)
432edbce9aaSzelalem-aweke		TF_LDFLAGS	+=	-flto -fuse-linker-plugin
433edbce9aaSzelalem-aweke	endif
434edbce9aaSzelalem-awekeendif
435edbce9aaSzelalem-aweke# GCC automatically adds fix-cortex-a53-843419 flag when used to link
436edbce9aaSzelalem-aweke# which breaks some builds, so disable if errata fix is not explicitly enabled
437edbce9aaSzelalem-awekeifneq (${ERRATA_A53_843419},1)
438edbce9aaSzelalem-aweke	TF_LDFLAGS	+= 	-mno-fix-cortex-a53-843419
439edbce9aaSzelalem-awekeendif
440edbce9aaSzelalem-awekeTF_LDFLAGS		+= 	-nostdlib
441edbce9aaSzelalem-awekeTF_LDFLAGS		+=	$(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
442641f16e7SAmbroise Vincent
443641f16e7SAmbroise Vincent# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
444c2ad38ceSVarun Wadekarelse
445c2b8806fSDouglas RaillardTF_LDFLAGS		+=	--fatal-warnings -O1
446c2b8806fSDouglas RaillardTF_LDFLAGS		+=	--gc-sections
447641f16e7SAmbroise Vincent# ld.lld doesn't recognize the errata flags,
448641f16e7SAmbroise Vincent# therefore don't add those in that case
449641f16e7SAmbroise Vincentifeq ($(findstring ld.lld,$(notdir $(LD))),)
450c2b8806fSDouglas RaillardTF_LDFLAGS		+=	$(TF_LDFLAGS_$(ARCH))
451edbce9aaSzelalem-awekeendif
452641f16e7SAmbroise Vincentendif
45373c99d4eSJuan Castillo
45403b397a8SNishanth MenonDTC_FLAGS		+=	-I dts -O dtb
455a6de824fSLouis MayencourtDTC_CPPFLAGS		+=	-P -nostdinc -Iinclude -Ifdts -undef \
456a6de824fSLouis Mayencourt				-x assembler-with-cpp $(DEFINES)
45703b397a8SNishanth Menon
45873c99d4eSJuan Castillo################################################################################
45973c99d4eSJuan Castillo# Common sources and include directories
46073c99d4eSJuan Castillo################################################################################
4616a0da736SJayanth Dodderi Chidanandinclude ${MAKE_HELPERS_DIRECTORY}arch_features.mk
462d801fbb0Sdp-arminclude lib/compiler-rt/compiler-rt.mk
46373c99d4eSJuan Castillo
46473c99d4eSJuan CastilloBL_COMMON_SOURCES	+=	common/bl_common.c			\
4657f56e9a3SSoby Mathew				common/tf_log.c				\
4669d29c227SSoby Mathew				common/${ARCH}/debug.S			\
46791b48c9fSJulius Werner				drivers/console/multi_console.c		\
4689d29c227SSoby Mathew				lib/${ARCH}/cache_helpers.S		\
4699d29c227SSoby Mathew				lib/${ARCH}/misc_helpers.S		\
470566034fcSSoby Mathew				plat/common/plat_bl_common.c		\
4717f56e9a3SSoby Mathew				plat/common/plat_log_common.c		\
47275311203Sdp-arm				plat/common/${ARCH}/plat_common.c	\
4739d29c227SSoby Mathew				plat/common/${ARCH}/platform_helpers.S	\
47461f72a34SRoberto Vargas				${COMPILER_RT_SRCS}
475d7a6b0f8SRyan Harkin
4768422a840SAntonio Nino Diazifeq ($(notdir $(CC)),armclang)
4778422a840SAntonio Nino DiazBL_COMMON_SOURCES	+=	lib/${ARCH}/armclang_printf.S
4788422a840SAntonio Nino Diazendif
4798422a840SAntonio Nino Diaz
4801f461979SJustin Chadwellifeq (${SANITIZE_UB},on)
4811f461979SJustin ChadwellBL_COMMON_SOURCES	+=	plat/common/ubsan.c
4821f461979SJustin Chadwellendif
4831f461979SJustin Chadwell
48401d237cbSYann GautierINCLUDES		+=	-Iinclude				\
485f5478dedSAntonio Nino Diaz				-Iinclude/arch/${ARCH}			\
48609d40e0eSAntonio Nino Diaz				-Iinclude/lib/cpus/${ARCH}		\
48709d40e0eSAntonio Nino Diaz				-Iinclude/lib/el3_runtime/${ARCH}	\
48809d40e0eSAntonio Nino Diaz				${PLAT_INCLUDES}			\
48909d40e0eSAntonio Nino Diaz				${SPD_INCLUDES}
49009d40e0eSAntonio Nino Diaz
4919c6d1c50SAntonio Nino Diazinclude common/backtrace/backtrace.mk
4929c6d1c50SAntonio Nino Diaz
49373c99d4eSJuan Castillo################################################################################
49473c99d4eSJuan Castillo# Generic definitions
49573c99d4eSJuan Castillo################################################################################
49673c99d4eSJuan Castillo
497231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
498231c1470SEvan Lloyd
49929214e95SGrant Likelyifeq (${BUILD_BASE},)
50073c99d4eSJuan Castillo     BUILD_BASE		:=	./build
50129214e95SGrant Likelyendif
50229214e95SGrant LikelyBUILD_PLAT		:=	$(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
50373c99d4eSJuan Castillo
504231c1470SEvan LloydSPDS			:=	$(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
50573c99d4eSJuan Castillo
50673c99d4eSJuan Castillo# Platforms providing their own TBB makefile may override this value
50773c99d4eSJuan CastilloINCLUDE_TBBR_MK		:=	1
50873c99d4eSJuan Castillo
50973c99d4eSJuan Castillo
51073c99d4eSJuan Castillo################################################################################
51173c99d4eSJuan Castillo# Include SPD Makefile if one has been specified
51273c99d4eSJuan Castillo################################################################################
51373c99d4eSJuan Castillo
51473c99d4eSJuan Castilloifneq (${SPD},none)
5159d29c227SSoby Mathew    ifeq (${ARCH},aarch32)
5169d29c227SSoby Mathew        $(error "Error: SPD is incompatible with AArch32.")
5179d29c227SSoby Mathew    endif
51828f39f02SMax Shvetsov
5194c117f6cSSandrine Bailleux    ifdef EL3_PAYLOAD_BASE
5204c117f6cSSandrine Bailleux        $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
5214c117f6cSSandrine Bailleux        $(warning "The SPD and its BL32 companion will be present but ignored.")
5224c117f6cSSandrine Bailleux    endif
52328f39f02SMax Shvetsov
524c3fb00d9SAchin Gupta    ifeq (${SPD},spmd)
525c3fb00d9SAchin Gupta        # SPMD is located in std_svc directory
526c3fb00d9SAchin Gupta        SPD_DIR := std_svc
52728f39f02SMax Shvetsov
528033039f8SMax Shvetsov        ifeq ($(SPMD_SPM_AT_SEL2),1)
52928f39f02SMax Shvetsov            ifeq ($(CTX_INCLUDE_EL2_REGS),0)
530033039f8SMax Shvetsov                $(error SPMD with SPM at S-EL2 requires CTX_INCLUDE_EL2_REGS option)
531033039f8SMax Shvetsov            endif
5321d63ae4dSMarc Bonnici	    ifeq ($(SPMC_AT_EL3),1)
5331d63ae4dSMarc Bonnici                $(error SPM cannot be enabled in both S-EL2 and EL3.)
5341d63ae4dSMarc Bonnici            endif
53528f39f02SMax Shvetsov        endif
536db1ef41aSOlivier Deprez
537db1ef41aSOlivier Deprez        ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
538db1ef41aSOlivier Deprez            DTC_CPPFLAGS	+=	-DOPTEE_SP_FW_CONFIG
539db1ef41aSOlivier Deprez        endif
540ca932481SDavidson K
541ca932481SDavidson K        ifeq ($(TS_SP_FW_CONFIG),1)
542ca932481SDavidson K            DTC_CPPFLAGS	+=	-DTS_SP_FW_CONFIG
543ca932481SDavidson K        endif
54433993a37SBalint Dobszay
54533993a37SBalint Dobszay        ifneq ($(ARM_BL2_SP_LIST_DTS),)
54633993a37SBalint Dobszay            DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
54733993a37SBalint Dobszay        endif
54846789a7cSBalint Dobszay
54946789a7cSBalint Dobszay        ifneq ($(SP_LAYOUT_FILE),)
55046789a7cSBalint Dobszay            BL2_ENABLE_SP_LOAD := 1
55146789a7cSBalint Dobszay        endif
552c3fb00d9SAchin Gupta    else
553c3fb00d9SAchin Gupta        # All other SPDs in spd directory
554c3fb00d9SAchin Gupta        SPD_DIR := spd
555c3fb00d9SAchin Gupta    endif
556c3fb00d9SAchin Gupta
55773c99d4eSJuan Castillo    # We expect to locate an spd.mk under the specified SPD directory
558c3fb00d9SAchin Gupta    SPD_MAKE	:=	$(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
559c3fb00d9SAchin Gupta
56073c99d4eSJuan Castillo    ifeq (${SPD_MAKE},)
561c3fb00d9SAchin Gupta        $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
56273c99d4eSJuan Castillo    endif
56373c99d4eSJuan Castillo    $(info Including ${SPD_MAKE})
56473c99d4eSJuan Castillo    include ${SPD_MAKE}
56573c99d4eSJuan Castillo
56670d1fc53SJuan Castillo    # If there's BL32 companion for the chosen SPD, we expect that the SPD's
56770d1fc53SJuan Castillo    # Makefile would set NEED_BL32 to "yes". In this case, the build system
56870d1fc53SJuan Castillo    # supports two mutually exclusive options:
56970d1fc53SJuan Castillo    # * BL32 is built from source: then BL32_SOURCES must contain the list
57070d1fc53SJuan Castillo    #   of source files to build BL32
57170d1fc53SJuan Castillo    # * BL32 is a prebuilt binary: then BL32 must point to the image file
57270d1fc53SJuan Castillo    #   that will be included in the FIP
57370d1fc53SJuan Castillo    # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
57470d1fc53SJuan Castillo    # over the sources.
575e35c4045SJeenu Viswambharanendif
576e35c4045SJeenu Viswambharan
57751faada7SDouglas Raillard################################################################################
5785b18de09SZelalem Aweke# Include rmmd Makefile if RME is enabled
5795b18de09SZelalem Aweke################################################################################
5805b18de09SZelalem Aweke
5815b18de09SZelalem Awekeifneq (${ENABLE_RME},0)
5825b18de09SZelalem Awekeifneq (${ARCH},aarch64)
5835b18de09SZelalem Aweke	$(error ENABLE_RME requires AArch64)
5845b18de09SZelalem Awekeendif
5851d63ae4dSMarc Bonniciifeq ($(SPMC_AT_EL3),1)
5861d63ae4dSMarc Bonnici	$(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
5871d63ae4dSMarc Bonniciendif
5885b18de09SZelalem Awekeinclude services/std_svc/rmmd/rmmd.mk
5895b18de09SZelalem Aweke$(warning "RME is an experimental feature")
5905b18de09SZelalem Awekeendif
5915b18de09SZelalem Aweke
5925b18de09SZelalem Aweke################################################################################
59373c99d4eSJuan Castillo# Include the platform specific Makefile after the SPD Makefile (the platform
59473c99d4eSJuan Castillo# makefile may use all previous definitions in this file)
59573c99d4eSJuan Castillo################################################################################
5962da8d8bfSJeenu Viswambharan
59773c99d4eSJuan Castilloinclude ${PLAT_MAKEFILE_FULL}
5980f21c547SJuan Castillo
5998012cc5cSMasahiro Yamada$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
6008012cc5cSMasahiro Yamada
60126e63c44SEtienne Carriereifeq (${ARM_ARCH_MAJOR},7)
60226e63c44SEtienne Carriereinclude make_helpers/armv7-a-cpus.mk
60326e63c44SEtienne Carriereendif
60426e63c44SEtienne Carriere
6053bd17c0fSSoby MathewPIE_FOUND		:=	$(findstring --enable-default-pie,${GCC_V_OUTPUT})
6063bd17c0fSSoby Mathewifneq ($(PIE_FOUND),)
6073bd17c0fSSoby Mathew	TF_CFLAGS	+=	-fno-PIE
6087b592418SSamuel Hollandifneq ($(findstring gcc,$(notdir $(LD))),)
6097b592418SSamuel Holland	TF_LDFLAGS	+=	-no-pie
6107b592418SSamuel Hollandendif
6113bd17c0fSSoby Mathewendif
612320920c1SMasahiro Yamada
613320920c1SMasahiro Yamadaifneq ($(findstring gcc,$(notdir $(LD))),)
614320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-Wl,-pie -Wl,--no-dynamic-linker
615320920c1SMasahiro Yamadaelse
616320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-pie --no-dynamic-linker
617320920c1SMasahiro Yamadaendif
618320920c1SMasahiro Yamada
619320920c1SMasahiro Yamadaifeq ($(ENABLE_PIE),1)
62069af7fcfSMasahiro Yamadaifeq ($(BL2_AT_EL3),1)
62169af7fcfSMasahiro Yamadaifneq ($(BL2_IN_XIP_MEM),1)
62269af7fcfSMasahiro Yamada	BL2_CFLAGS	+=	-fpie
62369af7fcfSMasahiro Yamada	BL2_LDFLAGS	+=	$(PIE_LDFLAGS)
62469af7fcfSMasahiro Yamadaendif
62569af7fcfSMasahiro Yamadaendif
626320920c1SMasahiro Yamada	BL31_CFLAGS	+=	-fpie
627320920c1SMasahiro Yamada	BL31_LDFLAGS	+=	$(PIE_LDFLAGS)
628d974301dSMasahiro Yamada	BL32_CFLAGS	+=	-fpie
629d974301dSMasahiro Yamada	BL32_LDFLAGS	+=	$(PIE_LDFLAGS)
630d974301dSMasahiro Yamadaendif
6313bd17c0fSSoby Mathew
632d5e97a1dSMasahiro Yamadaifeq (${ARCH},aarch64)
6339cefb4b1SMasahiro YamadaBL1_CPPFLAGS += -DIMAGE_AT_EL3
634d5e97a1dSMasahiro Yamadaifeq ($(BL2_AT_EL3),1)
6359cefb4b1SMasahiro YamadaBL2_CPPFLAGS += -DIMAGE_AT_EL3
636d5e97a1dSMasahiro Yamadaelse
6379cefb4b1SMasahiro YamadaBL2_CPPFLAGS += -DIMAGE_AT_EL1
638d5e97a1dSMasahiro Yamadaendif
6399cefb4b1SMasahiro YamadaBL2U_CPPFLAGS += -DIMAGE_AT_EL1
6409cefb4b1SMasahiro YamadaBL31_CPPFLAGS += -DIMAGE_AT_EL3
6419cefb4b1SMasahiro YamadaBL32_CPPFLAGS += -DIMAGE_AT_EL1
642d5e97a1dSMasahiro Yamadaendif
643d5e97a1dSMasahiro Yamada
64454035fc4SSandrine Bailleux# Include the CPU specific operations makefile, which provides default
64554035fc4SSandrine Bailleux# values for all CPU errata workarounds and CPU specific optimisations.
64654035fc4SSandrine Bailleux# This can be overridden by the platform.
64773c99d4eSJuan Castilloinclude lib/cpus/cpu-ops.mk
6484f6ad66aSAchin Gupta
649a4409008Sdp-armifeq (${ARCH},aarch32)
650a4409008Sdp-armNEED_BL32 := yes
651a4409008Sdp-arm
652a4409008Sdp-arm################################################################################
653a4409008Sdp-arm# Build `AARCH32_SP` as BL32 image for AArch32
654a4409008Sdp-arm################################################################################
655a4409008Sdp-armifneq (${AARCH32_SP},none)
656a4409008Sdp-arm# We expect to locate an sp.mk under the specified AARCH32_SP directory
657a4409008Sdp-armAARCH32_SP_MAKE	:=	$(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
658a4409008Sdp-arm
659a4409008Sdp-armifeq (${AARCH32_SP_MAKE},)
660a4409008Sdp-arm  $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
661a4409008Sdp-armendif
662a4409008Sdp-arm
663a4409008Sdp-arm$(info Including ${AARCH32_SP_MAKE})
664a4409008Sdp-arminclude ${AARCH32_SP_MAKE}
665a4409008Sdp-armendif
666a4409008Sdp-arm
667a4409008Sdp-armendif
6684f6ad66aSAchin Gupta
66973c99d4eSJuan Castillo################################################################################
67077f1f7a1SVarun Wadekar# Include libc if not overridden
67177f1f7a1SVarun Wadekar################################################################################
67277f1f7a1SVarun Wadekarifeq (${OVERRIDE_LIBC},0)
67377f1f7a1SVarun Wadekarinclude lib/libc/libc.mk
67477f1f7a1SVarun Wadekarendif
67577f1f7a1SVarun Wadekar
67677f1f7a1SVarun Wadekar################################################################################
677cf2c8a33SAntonio Nino Diaz# Check incompatible options
678cf2c8a33SAntonio Nino Diaz################################################################################
679cf2c8a33SAntonio Nino Diaz
680cf2c8a33SAntonio Nino Diazifdef EL3_PAYLOAD_BASE
68168450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
68268450a6dSAntonio Nino Diaz                $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
68368450a6dSAntonio Nino Diaz                incompatible build options. EL3_PAYLOAD_BASE has priority.")
684cf2c8a33SAntonio Nino Diaz        endif
68576580f3dSQixiang Xu        ifneq (${GENERATE_COT},0)
68676580f3dSQixiang Xu                $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible build options.")
68776580f3dSQixiang Xu        endif
68876580f3dSQixiang Xu        ifneq (${TRUSTED_BOARD_BOOT},0)
68976580f3dSQixiang Xu                $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are incompatible build options.")
69076580f3dSQixiang Xu        endif
691cf2c8a33SAntonio Nino Diazendif
692cf2c8a33SAntonio Nino Diaz
693cf2c8a33SAntonio Nino Diazifeq (${NEED_BL33},yes)
694cf2c8a33SAntonio Nino Diaz        ifdef EL3_PAYLOAD_BASE
695cf2c8a33SAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
696cf2c8a33SAntonio Nino Diaz                BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
697cf2c8a33SAntonio Nino Diaz        endif
69868450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
69968450a6dSAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
70068450a6dSAntonio Nino Diaz                PRELOADED_BL33_BASE is used and won't be added to the FIP \
70168450a6dSAntonio Nino Diaz                file.")
702cf2c8a33SAntonio Nino Diaz        endif
703cf2c8a33SAntonio Nino Diazendif
704cf2c8a33SAntonio Nino Diaz
705d4593e47SJeenu Viswambharan# When building for systems with hardware-assisted coherency, there's no need to
706d4593e47SJeenu Viswambharan# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
707d4593e47SJeenu Viswambharanifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
708d4593e47SJeenu Viswambharan$(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
709d4593e47SJeenu Viswambharanendif
7101a0a3f06SYatharth Kochar
7117d173fc5SJiafei Pan#For now, BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is 1.
7127d173fc5SJiafei Panifeq ($(BL2_AT_EL3)-$(BL2_IN_XIP_MEM),0-1)
7137d173fc5SJiafei Pan$(error "BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is enabled")
7147d173fc5SJiafei Panendif
7157d173fc5SJiafei Pan
71614c6016aSJeenu Viswambharan# For RAS_EXTENSION, require that EAs are handled in EL3 first
71714c6016aSJeenu Viswambharanifeq ($(RAS_EXTENSION),1)
718*46cc41d5SManish Pandey    ifneq ($(HANDLE_EA_EL3_FIRST_NS),1)
719*46cc41d5SManish Pandey        $(error For RAS_EXTENSION, HANDLE_EA_EL3_FIRST_NS must also be 1)
72014c6016aSJeenu Viswambharan    endif
72114c6016aSJeenu Viswambharanendif
72214c6016aSJeenu Viswambharan
7231a7c1cfeSJeenu Viswambharan# When FAULT_INJECTION_SUPPORT is used, require that RAS_EXTENSION is enabled
7241a7c1cfeSJeenu Viswambharanifeq ($(FAULT_INJECTION_SUPPORT),1)
7251a7c1cfeSJeenu Viswambharan    ifneq ($(RAS_EXTENSION),1)
7261a7c1cfeSJeenu Viswambharan        $(error For FAULT_INJECTION_SUPPORT, RAS_EXTENSION must also be 1)
7271a7c1cfeSJeenu Viswambharan    endif
7281a7c1cfeSJeenu Viswambharanendif
7291a7c1cfeSJeenu Viswambharan
730ed51b51fSRoberto Vargas# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
731209a60ccSSoby Mathewifeq ($(DYN_DISABLE_AUTH), 1)
732209a60ccSSoby Mathew    ifeq (${TRUSTED_BOARD_BOOT}, 0)
733209a60ccSSoby Mathew        $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH to be set.")
734209a60ccSSoby Mathew    endif
735209a60ccSSoby Mathewendif
736209a60ccSSoby Mathew
7372bf4f27fSManish V Badarkheifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
7382bf4f27fSManish V Badarkhe# Support authentication verification and hash calculation
7392bf4f27fSManish V Badarkhe    CRYPTO_SUPPORT := 3
7402bf4f27fSManish V Badarkheelse ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
7412bf4f27fSManish V Badarkhe# Support authentication verification and hash calculation
7422bf4f27fSManish V Badarkhe    CRYPTO_SUPPORT := 3
7432bf4f27fSManish V Badarkheelse ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
7442bf4f27fSManish V Badarkhe# Support hash calculation only
7452bf4f27fSManish V Badarkhe    CRYPTO_SUPPORT := 2
7462bf4f27fSManish V Badarkheelse ifeq (${TRUSTED_BOARD_BOOT},1)
7472bf4f27fSManish V Badarkhe# Support authentication verification only
748c9c56f6eSManish V Badarkhe    CRYPTO_SUPPORT := 1
749c9c56f6eSManish V Badarkheelse
750c9c56f6eSManish V Badarkhe    CRYPTO_SUPPORT := 0
751c9c56f6eSManish V Badarkheendif
752c9c56f6eSManish V Badarkhe
753cbf9e84aSBalint Dobszay# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
754cbf9e84aSBalint Dobszayifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
755700e7685SManish Pandey$(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
75684ef9cd8SManish V Badarkheendif
75784ef9cd8SManish V Badarkhe
758b86048c4SAntonio Nino Diaz# If pointer authentication is used in the firmware, make sure that all the
7599fc59639SAlexei Fedorov# registers associated to it are also saved and restored.
7609fc59639SAlexei Fedorov# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
761b86048c4SAntonio Nino Diazifeq ($(ENABLE_PAUTH),1)
7629fc59639SAlexei Fedorov    ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
7639fc59639SAlexei Fedorov        $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
76406715f85SAlexei Fedorov    endif
7659fc59639SAlexei Fedorovendif
7669fc59639SAlexei Fedorov
76706715f85SAlexei Fedorovifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
7689fc59639SAlexei Fedorov    ifneq (${ARCH},aarch64)
7699fc59639SAlexei Fedorov        $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
770b86048c4SAntonio Nino Diaz    endif
771b86048c4SAntonio Nino Diazendif
7729fc59639SAlexei Fedorov
7739dd94382SJustin Chadwellifeq ($(CTX_INCLUDE_MTE_REGS),1)
7749dd94382SJustin Chadwell    ifneq (${ARCH},aarch64)
7759dd94382SJustin Chadwell        $(error CTX_INCLUDE_MTE_REGS requires AArch64)
7769dd94382SJustin Chadwell    endif
7779dd94382SJustin Chadwellendif
7789dd94382SJustin Chadwell
779396b339dSManish V Badarkheifeq ($(PSA_FWU_SUPPORT),1)
780396b339dSManish V Badarkhe    $(info PSA_FWU_SUPPORT is an experimental feature)
781396b339dSManish V Badarkheendif
782396b339dSManish V Badarkhe
7836a0da736SJayanth Dodderi Chidanandifeq ($(FEATURE_DETECTION),1)
7846a0da736SJayanth Dodderi Chidanand    $(info FEATURE_DETECTION is an experimental feature)
7856a0da736SJayanth Dodderi Chidanandendif
7866a0da736SJayanth Dodderi Chidanand
78760e8f3cfSPetre-Ionut Tudorifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
78860e8f3cfSPetre-Ionut Tudor    ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
78960e8f3cfSPetre-Ionut Tudor        $(error "ALLOW_RO_XLAT_TABLES requires translation tables library v2")
79060e8f3cfSPetre-Ionut Tudor    endif
79160e8f3cfSPetre-Ionut Tudorendif
79260e8f3cfSPetre-Ionut Tudor
7937cda17bbSSumit Gargifneq (${DECRYPTION_SUPPORT},none)
7947cda17bbSSumit Garg    ifeq (${TRUSTED_BOARD_BOOT}, 0)
7957cda17bbSSumit Garg        $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT to be set)
7967cda17bbSSumit Garg    endif
7977cda17bbSSumit Gargendif
7987cda17bbSSumit Garg
799744ad974Sjohpow01# Ensure that no Aarch64-only features are enabled in Aarch32 build
800dc78e62dSjohpow01ifeq (${ARCH},aarch32)
801744ad974Sjohpow01
802744ad974Sjohpow01    # SME/SVE only supported on AArch64
803dc78e62dSjohpow01    ifeq (${ENABLE_SME_FOR_NS},1)
804dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
805dc78e62dSjohpow01    endif
806dc78e62dSjohpow01    ifeq (${ENABLE_SVE_FOR_NS},1)
807dc78e62dSjohpow01        # Warning instead of error due to CI dependency on this
80824ab2c0aSYann Gautier        $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
809dc78e62dSjohpow01    endif
810744ad974Sjohpow01
811ff86e0b4SJuan Pablo Conde    # BRBE is not supported in AArch32
812744ad974Sjohpow01    ifeq (${ENABLE_BRBE_FOR_NS},1)
813744ad974Sjohpow01        $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
814744ad974Sjohpow01    endif
815744ad974Sjohpow01
816ff86e0b4SJuan Pablo Conde    # FEAT_RNG_TRAP is not supported in AArch32
817ff86e0b4SJuan Pablo Conde    ifeq (${ENABLE_FEAT_RNG_TRAP},1)
818ff86e0b4SJuan Pablo Conde        $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
819ff86e0b4SJuan Pablo Conde    endif
820dc78e62dSjohpow01endif
821dc78e62dSjohpow01
822dc78e62dSjohpow01# Ensure ENABLE_RME is not used with SME
823dc78e62dSjohpow01ifeq (${ENABLE_RME},1)
824dc78e62dSjohpow01    ifeq (${ENABLE_SME_FOR_NS},1)
825dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_NS cannot be used with ENABLE_RME")
826dc78e62dSjohpow01    endif
827dc78e62dSjohpow01endif
828dc78e62dSjohpow01
829dc78e62dSjohpow01# Secure SME/SVE requires the non-secure component as well
830dc78e62dSjohpow01ifeq (${ENABLE_SME_FOR_SWD},1)
831dc78e62dSjohpow01    ifeq (${ENABLE_SME_FOR_NS},0)
832dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
833dc78e62dSjohpow01    endif
834dc78e62dSjohpow01endif
835dc78e62dSjohpow01ifeq (${ENABLE_SVE_FOR_SWD},1)
836dc78e62dSjohpow01    ifeq (${ENABLE_SVE_FOR_NS},0)
837dc78e62dSjohpow01        $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
838dc78e62dSjohpow01    endif
839dc78e62dSjohpow01endif
840dc78e62dSjohpow01
841dc78e62dSjohpow01# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
842dc78e62dSjohpow01# its own context management including FPU registers.
843dc78e62dSjohpow01ifeq (${CTX_INCLUDE_FPREGS},1)
844dc78e62dSjohpow01    ifeq (${ENABLE_SME_FOR_NS},1)
845dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
846dc78e62dSjohpow01    endif
847dc78e62dSjohpow01    ifeq (${ENABLE_SVE_FOR_NS},1)
848dc78e62dSjohpow01        # Warning instead of error due to CI dependency on this
849dc78e62dSjohpow01        $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
850dc78e62dSjohpow01        $(warning "Forced ENABLE_SVE_FOR_NS=0")
851dc78e62dSjohpow01        override ENABLE_SVE_FOR_NS	:= 0
852dc78e62dSjohpow01    endif
853dc78e62dSjohpow01endif
854dc78e62dSjohpow01
85500e28874SManish V Badarkheifeq ($(DRTM_SUPPORT),1)
85600e28874SManish V Badarkhe    $(info DRTM_SUPPORT is an experimental feature)
85700e28874SManish V Badarkheendif
85800e28874SManish V Badarkhe
859274a69e7SChris Kayifeq (${ENABLE_RME},1)
860274a69e7SChris Kay    ifneq (${SEPARATE_CODE_AND_RODATA},1)
861274a69e7SChris Kay        $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
862274a69e7SChris Kay    endif
863274a69e7SChris Kayendif
864274a69e7SChris Kay
865cf2c8a33SAntonio Nino Diaz################################################################################
86673c99d4eSJuan Castillo# Process platform overrideable behaviour
86773c99d4eSJuan Castillo################################################################################
8684f6ad66aSAchin Gupta
8695f24ce96SManish Pandeyifdef BL1_SOURCES
8705f24ce96SManish PandeyNEED_BL1 := yes
8715f24ce96SManish Pandeyendif
8725f24ce96SManish Pandey
8735f24ce96SManish Pandeyifdef BL2_SOURCES
8745f24ce96SManish Pandey	NEED_BL2 := yes
8755f24ce96SManish Pandey
876bd97f83aSJohn Tsichritzis	# Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
877bd97f83aSJohn Tsichritzis	# Certificate generation tools. This flag can be overridden by the platform.
878cf2c8a33SAntonio Nino Diaz	ifdef EL3_PAYLOAD_BASE
879cf2c8a33SAntonio Nino Diaz                # If booting an EL3 payload there is no need for a BL33 image
880cf2c8a33SAntonio Nino Diaz                # in the FIP file.
8814c117f6cSSandrine Bailleux                NEED_BL33		:=	no
882cf2c8a33SAntonio Nino Diaz        else
88368450a6dSAntonio Nino Diaz                ifdef PRELOADED_BL33_BASE
884cf2c8a33SAntonio Nino Diaz                        # If booting a BL33 preloaded image there is no need of
885cf2c8a33SAntonio Nino Diaz                        # another one in the FIP file.
886cf2c8a33SAntonio Nino Diaz                        NEED_BL33		:=	no
887cf2c8a33SAntonio Nino Diaz                else
888cf2c8a33SAntonio Nino Diaz                        NEED_BL33		?=	yes
889cf2c8a33SAntonio Nino Diaz                endif
8904c117f6cSSandrine Bailleux        endif
89173c99d4eSJuan Castilloendif
8926f971622SJuan Castillo
8935f24ce96SManish Pandeyifdef BL2U_SOURCES
8945f24ce96SManish PandeyNEED_BL2U := yes
8955f24ce96SManish Pandeyendif
8965f24ce96SManish Pandey
8974d045d0eSMasahiro Yamada# If SCP_BL2 is given, we always want FIP to include it.
8984d045d0eSMasahiro Yamadaifdef SCP_BL2
8994d045d0eSMasahiro Yamada        NEED_SCP_BL2		:=	yes
9004d045d0eSMasahiro Yamadaendif
9014d045d0eSMasahiro Yamada
9025744e874SSoby Mathew# For AArch32, BL31 is not currently supported.
9035744e874SSoby Mathewifneq (${ARCH},aarch32)
9045744e874SSoby Mathew    ifdef BL31_SOURCES
9055744e874SSoby Mathew        # When booting an EL3 payload, there is no need to compile the BL31 image nor
9065744e874SSoby Mathew        # put it in the FIP.
9075744e874SSoby Mathew        ifndef EL3_PAYLOAD_BASE
9085744e874SSoby Mathew            NEED_BL31 := yes
9095744e874SSoby Mathew        endif
9105744e874SSoby Mathew    endif
9115744e874SSoby Mathewendif
9125744e874SSoby Mathew
91373c99d4eSJuan Castillo# Process TBB related flags
9146f971622SJuan Castilloifneq (${GENERATE_COT},0)
91573c99d4eSJuan Castillo        # Common cert_create options
9166f971622SJuan Castillo        ifneq (${CREATE_KEYS},0)
9176f971622SJuan Castillo                $(eval CRT_ARGS += -n)
9180191262dSYatharth Kochar                $(eval FWU_CRT_ARGS += -n)
919fd34e7baSJuan Castillo                ifneq (${SAVE_KEYS},0)
920fd34e7baSJuan Castillo                        $(eval CRT_ARGS += -k)
9210191262dSYatharth Kochar                        $(eval FWU_CRT_ARGS += -k)
922fd34e7baSJuan Castillo                endif
9236f971622SJuan Castillo        endif
92473c99d4eSJuan Castillo        # Include TBBR makefile (unless the platform indicates otherwise)
92573c99d4eSJuan Castillo        ifeq (${INCLUDE_TBBR_MK},1)
92673c99d4eSJuan Castillo                include make_helpers/tbbr/tbbr_tools.mk
92773c99d4eSJuan Castillo        endif
9286f971622SJuan Castilloendif
9296f971622SJuan Castillo
9301c75d5dfSMasahiro Yamadaifneq (${FIP_ALIGN},0)
9311c75d5dfSMasahiro YamadaFIP_ARGS += --align ${FIP_ALIGN}
9321c75d5dfSMasahiro Yamadaendif
9331c75d5dfSMasahiro Yamada
9345f24ce96SManish Pandeyifdef FDT_SOURCES
9355f24ce96SManish PandeyNEED_FDT := yes
9365f24ce96SManish Pandeyendif
9375f24ce96SManish Pandey
93873c99d4eSJuan Castillo################################################################################
93946e5e035SMichalis Pappas# Include libraries' Makefile that are used in all BL
94046e5e035SMichalis Pappas################################################################################
94146e5e035SMichalis Pappas
94246e5e035SMichalis Pappasinclude lib/stack_protector/stack_protector.mk
94346e5e035SMichalis Pappas
94446e5e035SMichalis Pappas################################################################################
945819281eeSdp-arm# Auxiliary tools (fiptool, cert_create, etc)
94673c99d4eSJuan Castillo################################################################################
94773c99d4eSJuan Castillo
94873c99d4eSJuan Castillo# Variables for use with Certificate Generation Tool
94973c99d4eSJuan CastilloCRTTOOLPATH		?=	tools/cert_create
95042a45b51SEvan LloydCRTTOOL			?=	${CRTTOOLPATH}/cert_create${BIN_EXT}
95173c99d4eSJuan Castillo
95290aa901fSSumit Garg# Variables for use with Firmware Encryption Tool
95390aa901fSSumit GargENCTOOLPATH		?=	tools/encrypt_fw
95490aa901fSSumit GargENCTOOL			?=	${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
95590aa901fSSumit Garg
95673c99d4eSJuan Castillo# Variables for use with Firmware Image Package
957819281eeSdp-armFIPTOOLPATH		?=	tools/fiptool
958819281eeSdp-armFIPTOOL			?=	${FIPTOOLPATH}/fiptool${BIN_EXT}
95973c99d4eSJuan Castillo
96026010da1SAntonio Nino Diaz# Variables for use with sptool
96126010da1SAntonio Nino DiazSPTOOLPATH		?=	tools/sptool
962822c7279SJ-AlvesSPTOOL			?=	${SPTOOLPATH}/sptool.py
963ce2b1ec6SManish PandeySP_MK_GEN		?=	${SPTOOLPATH}/sp_mk_generator.py
96426010da1SAntonio Nino Diaz
9655accce5bSRoberto Vargas# Variables for use with ROMLIB
9665accce5bSRoberto VargasROMLIBPATH		?=	lib/romlib
9675accce5bSRoberto Vargas
968cfe83910SLouis Mayencourt# Variable for use with Python
969cfe83910SLouis MayencourtPYTHON			?=	python3
970cfe83910SLouis Mayencourt
971cfe83910SLouis Mayencourt# Variables for use with PRINT_MEMORY_MAP
972cfe83910SLouis MayencourtPRINT_MEMORY_MAP_PATH		?=	tools/memory
973cfe83910SLouis MayencourtPRINT_MEMORY_MAP		?=	${PRINT_MEMORY_MAP_PATH}/print_memory_map.py
974cfe83910SLouis Mayencourt
9756de32378SMadhukar Pappireddy# Variables for use with documentation build using Sphinx tool
9766de32378SMadhukar PappireddyDOCS_PATH		?=	docs
9776de32378SMadhukar Pappireddy
9781f1c0206SAbdul Halim, Muhammad Hadi Asyrafi# Defination of SIMICS flag
9791f1c0206SAbdul Halim, Muhammad Hadi AsyrafiSIMICS_BUILD	?=	0
9801f1c0206SAbdul Halim, Muhammad Hadi Asyrafi
9818a86052dSSoby Mathew################################################################################
9828a86052dSSoby Mathew# Include BL specific makefiles
9838a86052dSSoby Mathew################################################################################
9845f24ce96SManish Pandey
9855f24ce96SManish Pandeyifeq (${NEED_BL1},yes)
9868a86052dSSoby Mathewinclude bl1/bl1.mk
9878a86052dSSoby Mathewendif
9888a86052dSSoby Mathew
9895f24ce96SManish Pandeyifeq (${NEED_BL2},yes)
9908a86052dSSoby Mathewinclude bl2/bl2.mk
9918a86052dSSoby Mathewendif
9928a86052dSSoby Mathew
9935f24ce96SManish Pandeyifeq (${NEED_BL2U},yes)
9948a86052dSSoby Mathewinclude bl2u/bl2u.mk
9958a86052dSSoby Mathewendif
9968a86052dSSoby Mathew
9975744e874SSoby Mathewifeq (${NEED_BL31},yes)
9988a86052dSSoby Mathewinclude bl31/bl31.mk
9998a86052dSSoby Mathewendif
100003b397a8SNishanth Menon
100173c99d4eSJuan Castillo################################################################################
100273c99d4eSJuan Castillo# Build options checks
100373c99d4eSJuan Castillo################################################################################
100473c99d4eSJuan Castillo
1005327131c4SLeonardo Sandoval$(eval $(call assert_booleans,\
1006327131c4SLeonardo Sandoval    $(sort \
1007327131c4SLeonardo Sandoval        ALLOW_RO_XLAT_TABLES \
100846789a7cSBalint Dobszay        BL2_ENABLE_SP_LOAD \
1009327131c4SLeonardo Sandoval        COLD_BOOT_SINGLE_CPU \
1010327131c4SLeonardo Sandoval        CREATE_KEYS \
1011327131c4SLeonardo Sandoval        CTX_INCLUDE_AARCH32_REGS \
1012327131c4SLeonardo Sandoval        CTX_INCLUDE_FPREGS \
1013327131c4SLeonardo Sandoval        CTX_INCLUDE_EL2_REGS \
1014327131c4SLeonardo Sandoval        DEBUG \
10150063dd17SJavier Almansa Sobrino        DISABLE_MTPMU \
1016327131c4SLeonardo Sandoval        DYN_DISABLE_AUTH \
1017327131c4SLeonardo Sandoval        EL3_EXCEPTION_HANDLING \
1018327131c4SLeonardo Sandoval        ENABLE_AMU \
10191fd685a7SChris Kay        ENABLE_AMU_AUXILIARY_COUNTERS \
1020742ca230SChris Kay        ENABLE_AMU_FCONF \
1021873d4241Sjohpow01        AMU_RESTRICT_COUNTERS \
1022327131c4SLeonardo Sandoval        ENABLE_ASSERTIONS \
1023327131c4SLeonardo Sandoval        ENABLE_PIE \
1024327131c4SLeonardo Sandoval        ENABLE_PMF \
1025327131c4SLeonardo Sandoval        ENABLE_PSCI_STAT \
1026327131c4SLeonardo Sandoval        ENABLE_RUNTIME_INSTRUMENTATION \
1027dc78e62dSjohpow01        ENABLE_SME_FOR_NS \
1028dc78e62dSjohpow01        ENABLE_SME_FOR_SWD \
1029327131c4SLeonardo Sandoval        ENABLE_SPE_FOR_LOWER_ELS \
1030327131c4SLeonardo Sandoval        ENABLE_SVE_FOR_NS \
10310c5e7d1cSMax Shvetsov        ENABLE_SVE_FOR_SWD \
1032327131c4SLeonardo Sandoval        ERROR_DEPRECATED \
1033327131c4SLeonardo Sandoval        FAULT_INJECTION_SUPPORT \
1034327131c4SLeonardo Sandoval        GENERATE_COT \
1035327131c4SLeonardo Sandoval        GICV2_G0_FOR_EL3 \
1036*46cc41d5SManish Pandey        HANDLE_EA_EL3_FIRST_NS \
1037327131c4SLeonardo Sandoval        HW_ASSISTED_COHERENCY \
1038327131c4SLeonardo Sandoval        INVERTED_MEMMAP \
1039327131c4SLeonardo Sandoval        MEASURED_BOOT \
104000e28874SManish V Badarkhe        DRTM_SUPPORT \
1041327131c4SLeonardo Sandoval        NS_TIMER_SWITCH \
1042327131c4SLeonardo Sandoval        OVERRIDE_LIBC \
1043327131c4SLeonardo Sandoval        PL011_GENERIC_UART \
10440ce2072dSTamas Ban        PLAT_RSS_NOT_SUPPORTED \
1045327131c4SLeonardo Sandoval        PROGRAMMABLE_RESET_ADDRESS \
1046327131c4SLeonardo Sandoval        PSCI_EXTENDED_STATE_ID \
1047327131c4SLeonardo Sandoval        RESET_TO_BL31 \
104825844ff7SJorge Ramirez-Ortiz        RESET_TO_BL31_WITH_PARAMS \
1049327131c4SLeonardo Sandoval        SAVE_KEYS \
1050327131c4SLeonardo Sandoval        SEPARATE_CODE_AND_RODATA \
105196a8ed14SJiafei Pan        SEPARATE_BL2_NOLOAD_REGION \
1052327131c4SLeonardo Sandoval        SEPARATE_NOBITS_REGION \
1053327131c4SLeonardo Sandoval        SPIN_ON_BL1_EXIT \
1054327131c4SLeonardo Sandoval        SPM_MM \
10551d63ae4dSMarc Bonnici        SPMC_AT_EL3 \
1056327131c4SLeonardo Sandoval        SPMD_SPM_AT_SEL2 \
1057327131c4SLeonardo Sandoval        TRUSTED_BOARD_BOOT \
1058327131c4SLeonardo Sandoval        USE_COHERENT_MEM \
1059327131c4SLeonardo Sandoval        USE_DEBUGFS \
1060327131c4SLeonardo Sandoval        ARM_IO_IN_DTB \
1061327131c4SLeonardo Sandoval        SDEI_IN_FCONF \
1062327131c4SLeonardo Sandoval        SEC_INT_DESC_IN_FCONF \
1063327131c4SLeonardo Sandoval        USE_ROMLIB \
1064327131c4SLeonardo Sandoval        USE_TBBR_DEFS \
1065327131c4SLeonardo Sandoval        WARMBOOT_ENABLE_DCACHE_EARLY \
1066327131c4SLeonardo Sandoval        BL2_AT_EL3 \
1067327131c4SLeonardo Sandoval        BL2_IN_XIP_MEM \
1068327131c4SLeonardo Sandoval        BL2_INV_DCACHE \
1069327131c4SLeonardo Sandoval        USE_SPINLOCK_CAS \
1070327131c4SLeonardo Sandoval        ENCRYPT_BL31 \
1071327131c4SLeonardo Sandoval        ENCRYPT_BL32 \
1072327131c4SLeonardo Sandoval        ERRATA_SPECULATIVE_AT \
107300e8f79cSManish Pandey        RAS_TRAP_NS_ERR_REC_ACCESS \
1074327131c4SLeonardo Sandoval        COT_DESC_IN_DTB \
1075327131c4SLeonardo Sandoval        USE_SP804_TIMER \
1076396b339dSManish V Badarkhe        PSA_FWU_SUPPORT \
1077d4582d30SManish V Badarkhe        ENABLE_SYS_REG_TRACE_FOR_NS \
107868120783SChris Kay        ENABLE_MPMM \
107968120783SChris Kay        ENABLE_MPMM_FCONF \
10801f1c0206SAbdul Halim, Muhammad Hadi Asyrafi        SIMICS_BUILD \
10816a0da736SJayanth Dodderi Chidanand        FEATURE_DETECTION \
1082327131c4SLeonardo Sandoval)))
108373c99d4eSJuan Castillo
1084327131c4SLeonardo Sandoval$(eval $(call assert_numerics,\
1085327131c4SLeonardo Sandoval    $(sort \
1086327131c4SLeonardo Sandoval        ARM_ARCH_MAJOR \
1087327131c4SLeonardo Sandoval        ARM_ARCH_MINOR \
1088327131c4SLeonardo Sandoval        BRANCH_PROTECTION \
10896a0da736SJayanth Dodderi Chidanand        CTX_INCLUDE_PAUTH_REGS \
10906a0da736SJayanth Dodderi Chidanand        CTX_INCLUDE_MTE_REGS \
10916a0da736SJayanth Dodderi Chidanand        CTX_INCLUDE_NEVE_REGS \
10922bf4f27fSManish V Badarkhe        CRYPTO_SUPPORT \
10931298f2f1SJayanth Dodderi Chidanand        ENABLE_BRBE_FOR_NS \
109447c681b7SJayanth Dodderi Chidanand        ENABLE_TRBE_FOR_NS \
10956a0da736SJayanth Dodderi Chidanand        ENABLE_BTI \
10966a0da736SJayanth Dodderi Chidanand        ENABLE_PAUTH \
10976a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_AMUv1 \
10986a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_AMUv1p1 \
10996a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_CSV2_2 \
11006a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_DIT \
11016a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_ECV \
11026a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_FGT \
11036a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_HCX \
11046a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_PAN \
11056a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_RNG \
1106ff86e0b4SJuan Pablo Conde        ENABLE_FEAT_RNG_TRAP \
11076a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_SB \
11086a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_SEL2 \
11096a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_VHE \
11106a0da736SJayanth Dodderi Chidanand        ENABLE_MPAM_FOR_LOWER_ELS \
11116a0da736SJayanth Dodderi Chidanand        ENABLE_RME \
11126a0da736SJayanth Dodderi Chidanand        ENABLE_TRF_FOR_NS \
1113327131c4SLeonardo Sandoval        FW_ENC_STATUS \
11145357f83dSManish V Badarkhe        NR_OF_FW_BANKS \
11155357f83dSManish V Badarkhe        NR_OF_IMAGES_IN_FW_BANK \
11166a0da736SJayanth Dodderi Chidanand        RAS_EXTENSION \
1117781d07a4SJayanth Dodderi Chidanand        TWED_DELAY \
1118781d07a4SJayanth Dodderi Chidanand        ENABLE_FEAT_TWED \
1119bebcf27fSMark Brown        SVE_VECTOR_LEN \
1120327131c4SLeonardo Sandoval)))
1121c877b414SJeenu Viswambharan
1122aacff749SJustin Chadwellifdef KEY_SIZE
1123aacff749SJustin Chadwell        $(eval $(call assert_numeric,KEY_SIZE))
1124aacff749SJustin Chadwellendif
1125aacff749SJustin Chadwell
11261f461979SJustin Chadwellifeq ($(filter $(SANITIZE_UB), on off trap),)
11271f461979SJustin Chadwell        $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
11281f461979SJustin Chadwellendif
11291f461979SJustin Chadwell
113073c99d4eSJuan Castillo################################################################################
113173c99d4eSJuan Castillo# Add definitions to the cpp preprocessor based on the current build options.
113273c99d4eSJuan Castillo# This is done after including the platform specific makefile to allow the
113373c99d4eSJuan Castillo# platform to overwrite the default options
113473c99d4eSJuan Castillo################################################################################
113573c99d4eSJuan Castillo
1136327131c4SLeonardo Sandoval$(eval $(call add_defines,\
1137327131c4SLeonardo Sandoval    $(sort \
1138327131c4SLeonardo Sandoval        ALLOW_RO_XLAT_TABLES \
1139327131c4SLeonardo Sandoval        ARM_ARCH_MAJOR \
1140327131c4SLeonardo Sandoval        ARM_ARCH_MINOR \
114146789a7cSBalint Dobszay        BL2_ENABLE_SP_LOAD \
1142327131c4SLeonardo Sandoval        COLD_BOOT_SINGLE_CPU \
1143327131c4SLeonardo Sandoval        CTX_INCLUDE_AARCH32_REGS \
1144327131c4SLeonardo Sandoval        CTX_INCLUDE_FPREGS \
1145327131c4SLeonardo Sandoval        CTX_INCLUDE_PAUTH_REGS \
1146327131c4SLeonardo Sandoval        EL3_EXCEPTION_HANDLING \
1147327131c4SLeonardo Sandoval        CTX_INCLUDE_MTE_REGS \
1148327131c4SLeonardo Sandoval        CTX_INCLUDE_EL2_REGS \
1149062f8aafSArunachalam Ganapathy        CTX_INCLUDE_NEVE_REGS \
1150327131c4SLeonardo Sandoval        DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
11510063dd17SJavier Almansa Sobrino        DISABLE_MTPMU \
1152327131c4SLeonardo Sandoval        ENABLE_AMU \
11531fd685a7SChris Kay        ENABLE_AMU_AUXILIARY_COUNTERS \
1154742ca230SChris Kay        ENABLE_AMU_FCONF \
1155873d4241Sjohpow01        AMU_RESTRICT_COUNTERS \
1156327131c4SLeonardo Sandoval        ENABLE_ASSERTIONS \
1157327131c4SLeonardo Sandoval        ENABLE_BTI \
1158327131c4SLeonardo Sandoval        ENABLE_MPAM_FOR_LOWER_ELS \
1159327131c4SLeonardo Sandoval        ENABLE_PAUTH \
1160327131c4SLeonardo Sandoval        ENABLE_PIE \
1161327131c4SLeonardo Sandoval        ENABLE_PMF \
1162327131c4SLeonardo Sandoval        ENABLE_PSCI_STAT \
11635b18de09SZelalem Aweke        ENABLE_RME \
1164327131c4SLeonardo Sandoval        ENABLE_RUNTIME_INSTRUMENTATION \
1165dc78e62dSjohpow01        ENABLE_SME_FOR_NS \
1166dc78e62dSjohpow01        ENABLE_SME_FOR_SWD \
1167327131c4SLeonardo Sandoval        ENABLE_SPE_FOR_LOWER_ELS \
1168327131c4SLeonardo Sandoval        ENABLE_SVE_FOR_NS \
11690c5e7d1cSMax Shvetsov        ENABLE_SVE_FOR_SWD \
1170327131c4SLeonardo Sandoval        ENCRYPT_BL31 \
1171327131c4SLeonardo Sandoval        ENCRYPT_BL32 \
1172327131c4SLeonardo Sandoval        ERROR_DEPRECATED \
1173327131c4SLeonardo Sandoval        FAULT_INJECTION_SUPPORT \
1174327131c4SLeonardo Sandoval        GICV2_G0_FOR_EL3 \
1175*46cc41d5SManish Pandey        HANDLE_EA_EL3_FIRST_NS \
1176327131c4SLeonardo Sandoval        HW_ASSISTED_COHERENCY \
1177327131c4SLeonardo Sandoval        LOG_LEVEL \
1178327131c4SLeonardo Sandoval        MEASURED_BOOT \
117900e28874SManish V Badarkhe        DRTM_SUPPORT \
1180327131c4SLeonardo Sandoval        NS_TIMER_SWITCH \
1181327131c4SLeonardo Sandoval        PL011_GENERIC_UART \
1182327131c4SLeonardo Sandoval        PLAT_${PLAT} \
11830ce2072dSTamas Ban        PLAT_RSS_NOT_SUPPORTED \
1184327131c4SLeonardo Sandoval        PROGRAMMABLE_RESET_ADDRESS \
1185327131c4SLeonardo Sandoval        PSCI_EXTENDED_STATE_ID \
1186327131c4SLeonardo Sandoval        RAS_EXTENSION \
1187327131c4SLeonardo Sandoval        RESET_TO_BL31 \
118825844ff7SJorge Ramirez-Ortiz        RESET_TO_BL31_WITH_PARAMS \
1189327131c4SLeonardo Sandoval        SEPARATE_CODE_AND_RODATA \
119096a8ed14SJiafei Pan        SEPARATE_BL2_NOLOAD_REGION \
1191327131c4SLeonardo Sandoval        SEPARATE_NOBITS_REGION \
1192327131c4SLeonardo Sandoval        RECLAIM_INIT_CODE \
1193327131c4SLeonardo Sandoval        SPD_${SPD} \
1194327131c4SLeonardo Sandoval        SPIN_ON_BL1_EXIT \
1195327131c4SLeonardo Sandoval        SPM_MM \
11961d63ae4dSMarc Bonnici        SPMC_AT_EL3 \
1197327131c4SLeonardo Sandoval        SPMD_SPM_AT_SEL2 \
1198327131c4SLeonardo Sandoval        TRUSTED_BOARD_BOOT \
1199c9c56f6eSManish V Badarkhe        CRYPTO_SUPPORT \
12007dfb9911SJimmy Brisson        TRNG_SUPPORT \
1201327131c4SLeonardo Sandoval        USE_COHERENT_MEM \
1202327131c4SLeonardo Sandoval        USE_DEBUGFS \
1203327131c4SLeonardo Sandoval        ARM_IO_IN_DTB \
1204327131c4SLeonardo Sandoval        SDEI_IN_FCONF \
1205327131c4SLeonardo Sandoval        SEC_INT_DESC_IN_FCONF \
1206327131c4SLeonardo Sandoval        USE_ROMLIB \
1207327131c4SLeonardo Sandoval        USE_TBBR_DEFS \
1208327131c4SLeonardo Sandoval        WARMBOOT_ENABLE_DCACHE_EARLY \
1209327131c4SLeonardo Sandoval        BL2_AT_EL3 \
1210327131c4SLeonardo Sandoval        BL2_IN_XIP_MEM \
1211327131c4SLeonardo Sandoval        BL2_INV_DCACHE \
1212327131c4SLeonardo Sandoval        USE_SPINLOCK_CAS \
1213327131c4SLeonardo Sandoval        ERRATA_SPECULATIVE_AT \
121400e8f79cSManish Pandey        RAS_TRAP_NS_ERR_REC_ACCESS \
1215327131c4SLeonardo Sandoval        COT_DESC_IN_DTB \
1216327131c4SLeonardo Sandoval        USE_SP804_TIMER \
121712cd65e0STomas Pilar        ENABLE_FEAT_RNG \
1218ff86e0b4SJuan Pablo Conde        ENABLE_FEAT_RNG_TRAP \
12194e04478aSChris Kay        ENABLE_FEAT_SB \
12207d33ffe4SDaniel Boulby        ENABLE_FEAT_DIT \
12215357f83dSManish V Badarkhe        NR_OF_FW_BANKS \
12225357f83dSManish V Badarkhe        NR_OF_IMAGES_IN_FW_BANK \
1223396b339dSManish V Badarkhe        PSA_FWU_SUPPORT \
1224744ad974Sjohpow01        ENABLE_BRBE_FOR_NS \
1225813524eaSManish V Badarkhe        ENABLE_TRBE_FOR_NS \
1226d4582d30SManish V Badarkhe        ENABLE_SYS_REG_TRACE_FOR_NS \
12278fcd3d96SManish V Badarkhe        ENABLE_TRF_FOR_NS \
1228cb4ec47bSjohpow01        ENABLE_FEAT_HCX \
122968120783SChris Kay        ENABLE_MPMM \
123068120783SChris Kay        ENABLE_MPMM_FCONF \
1231f74cb0beSJayanth Dodderi Chidanand        ENABLE_FEAT_FGT \
1232f74cb0beSJayanth Dodderi Chidanand        ENABLE_FEAT_AMUv1 \
1233f74cb0beSJayanth Dodderi Chidanand        ENABLE_FEAT_ECV \
12341f1c0206SAbdul Halim, Muhammad Hadi Asyrafi        SIMICS_BUILD \
12356a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_AMUv1p1 \
12366a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_SEL2 \
12376a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_VHE \
12386a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_CSV2_2 \
12396a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_PAN \
12406a0da736SJayanth Dodderi Chidanand        FEATURE_DETECTION \
1241781d07a4SJayanth Dodderi Chidanand        TWED_DELAY \
1242781d07a4SJayanth Dodderi Chidanand        ENABLE_FEAT_TWED \
1243327131c4SLeonardo Sandoval)))
12442fae4b1eSJeenu Viswambharan
12451f461979SJustin Chadwellifeq (${SANITIZE_UB},trap)
12461f461979SJustin Chadwell        $(eval $(call add_define,MONITOR_TRAPS))
12471f461979SJustin Chadwellendif
12481f461979SJustin Chadwell
12494c117f6cSSandrine Bailleux# Define the EL3_PAYLOAD_BASE flag only if it is provided.
12504c117f6cSSandrine Bailleuxifdef EL3_PAYLOAD_BASE
12514c117f6cSSandrine Bailleux        $(eval $(call add_define,EL3_PAYLOAD_BASE))
1252cf2c8a33SAntonio Nino Diazelse
125368450a6dSAntonio Nino Diaz        # Define the PRELOADED_BL33_BASE flag only if it is provided and
125468450a6dSAntonio Nino Diaz        # EL3_PAYLOAD_BASE is not defined, as it has priority.
125568450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
125668450a6dSAntonio Nino Diaz                $(eval $(call add_define,PRELOADED_BL33_BASE))
12574c117f6cSSandrine Bailleux        endif
1258cf2c8a33SAntonio Nino Diazendif
125973c99d4eSJuan Castillo
1260209a60ccSSoby Mathew# Define the DYN_DISABLE_AUTH flag only if set.
1261209a60ccSSoby Mathewifeq (${DYN_DISABLE_AUTH},1)
1262209a60ccSSoby Mathew$(eval $(call add_define,DYN_DISABLE_AUTH))
1263209a60ccSSoby Mathewendif
1264209a60ccSSoby Mathew
1265c2ad38ceSVarun Wadekarifneq ($(findstring armlink,$(notdir $(LD))),)
1266c2ad38ceSVarun Wadekar$(eval $(call add_define,USE_ARM_LINK))
1267c2ad38ceSVarun Wadekarendif
1268c2ad38ceSVarun Wadekar
1269ce2b1ec6SManish Pandey# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
1270ce2b1ec6SManish Pandeyifeq (${SPD},spmd)
1271c33ff198SOlivier Deprezifdef SP_LAYOUT_FILE
1272ce2b1ec6SManish Pandey        -include $(BUILD_PLAT)/sp_gen.mk
1273ce2b1ec6SManish Pandey        FIP_DEPS += sp
127407c44475SManish Pandey        CRT_DEPS += sp
1275ce2b1ec6SManish Pandey        NEED_SP_PKG := yes
1276ce2b1ec6SManish Pandeyelse
1277c33ff198SOlivier Deprez        ifeq (${SPMD_SPM_AT_SEL2},1)
1278c33ff198SOlivier Deprez            $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1279c33ff198SOlivier Deprez        endif
1280ce2b1ec6SManish Pandeyendif
1281ce2b1ec6SManish Pandeyendif
1282ce2b1ec6SManish Pandey
128373c99d4eSJuan Castillo################################################################################
128473c99d4eSJuan Castillo# Build targets
128573c99d4eSJuan Castillo################################################################################
128673c99d4eSJuan Castillo
128790aa901fSSumit Garg.PHONY:	all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp fwu_fip certtool dtbs memmap doc enctool
128873c99d4eSJuan Castillo.SUFFIXES:
128973c99d4eSJuan Castillo
129073c99d4eSJuan Castilloall: msg_start
129173c99d4eSJuan Castillo
129273c99d4eSJuan Castillomsg_start:
129373c99d4eSJuan Castillo	@echo "Building ${PLAT}"
129473c99d4eSJuan Castillo
12957a24cba5SSoby Mathewifeq (${ERROR_DEPRECATED},0)
1296d5dfdeb6SJulius Werner# Check if deprecated declarations and cpp warnings should be treated as error or not.
1297c2ad38ceSVarun Wadekarifneq ($(findstring clang,$(notdir $(CC))),)
1298c2ad38ceSVarun Wadekar    CPPFLAGS		+= 	-Wno-error=deprecated-declarations
1299c2ad38ceSVarun Wadekarelse
1300bc1a03c7SDan Handley    CPPFLAGS		+= 	-Wno-error=deprecated-declarations -Wno-error=cpp
13017a24cba5SSoby Mathewendif
1302d5dfdeb6SJulius Wernerendif # !ERROR_DEPRECATED
13037a24cba5SSoby Mathew
13045accce5bSRoberto Vargas$(eval $(call MAKE_LIB_DIRS))
130561f72a34SRoberto Vargas$(eval $(call MAKE_LIB,c))
13065fee0287SRoberto Vargas
130773c99d4eSJuan Castillo# Expand build macros for the different images
130873c99d4eSJuan Castilloifeq (${NEED_BL1},yes)
1309b34635a0SChris KayBL1_SOURCES := $(sort ${BL1_SOURCES})
1310b34635a0SChris Kay
1311434d0491SZelalem Aweke$(eval $(call MAKE_BL,bl1))
131273c99d4eSJuan Castilloendif
131373c99d4eSJuan Castillo
131473c99d4eSJuan Castilloifeq (${NEED_BL2},yes)
1315c9b31ae8SRoberto Vargasifeq (${BL2_AT_EL3}, 0)
1316c9b31ae8SRoberto VargasFIP_BL2_ARGS := tb-fw
1317c9b31ae8SRoberto Vargasendif
1318c9b31ae8SRoberto Vargas
1319eb1acfb6SChris KayBL2_SOURCES := $(sort ${BL2_SOURCES})
1320eb1acfb6SChris Kay
132133950dd8SMasahiro Yamada$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
1322434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
132373c99d4eSJuan Castilloendif
132473c99d4eSJuan Castillo
13254d045d0eSMasahiro Yamadaifeq (${NEED_SCP_BL2},yes)
132633950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
13274d045d0eSMasahiro Yamadaendif
13284d045d0eSMasahiro Yamada
132973c99d4eSJuan Castilloifeq (${NEED_BL31},yes)
133073c99d4eSJuan CastilloBL31_SOURCES += ${SPD_SOURCES}
133126d1e0c3SMadhukar Pappireddy# Sort BL31 source files to remove duplicates
133226d1e0c3SMadhukar PappireddyBL31_SOURCES := $(sort ${BL31_SOURCES})
1333c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1334c6ba9b45SSumit Garg$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
1335434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
1336c6ba9b45SSumit Gargelse
133733950dd8SMasahiro Yamada$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
1338434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl31,soc-fw)))
133973c99d4eSJuan Castilloendif
1340c6ba9b45SSumit Gargendif
134173c99d4eSJuan Castillo
134270d1fc53SJuan Castillo# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
1343c939d13aSMasahiro Yamada# build system will call TOOL_ADD_IMG to print a warning message and abort the
134470d1fc53SJuan Castillo# process. Note that the dependency on BL32 applies to the FIP only.
134573c99d4eSJuan Castilloifeq (${NEED_BL32},yes)
134626d1e0c3SMadhukar Pappireddy# Sort BL32 source files to remove duplicates
134726d1e0c3SMadhukar PappireddyBL32_SOURCES := $(sort ${BL32_SOURCES})
13489cd15239SMasahiro YamadaBUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
13499cd15239SMasahiro Yamada
1350c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1351434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
1352c6ba9b45SSumit Garg	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1353c6ba9b45SSumit Gargelse
1354434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
135533950dd8SMasahiro Yamada	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
135673c99d4eSJuan Castilloendif
1357c6ba9b45SSumit Gargendif
135873c99d4eSJuan Castillo
13595b18de09SZelalem Aweke# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
13605b18de09SZelalem Aweke# needs to be built from RMM_SOURCES.
13615b18de09SZelalem Awekeifeq (${NEED_RMM},yes)
13625b18de09SZelalem Aweke# Sort RMM source files to remove duplicates
13635b18de09SZelalem AwekeRMM_SOURCES := $(sort ${RMM_SOURCES})
13645b18de09SZelalem AwekeBUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
13655b18de09SZelalem Aweke
13665b18de09SZelalem Aweke$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
13675b18de09SZelalem Aweke         $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
13685b18de09SZelalem Awekeendif
13695b18de09SZelalem Aweke
137073c99d4eSJuan Castillo# Add the BL33 image if required by the platform
137173c99d4eSJuan Castilloifeq (${NEED_BL33},yes)
137233950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
1373db6071c9SJuan Castilloendif
1374db6071c9SJuan Castillo
13759003fa0bSYatharth Kocharifeq (${NEED_BL2U},yes)
137633950dd8SMasahiro Yamada$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
1377434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
13789003fa0bSYatharth Kocharendif
13799003fa0bSYatharth Kochar
138003b397a8SNishanth Menon# Expand build macros for the different images
138103b397a8SNishanth Menonifeq (${NEED_FDT},yes)
138203b397a8SNishanth Menon    $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
138303b397a8SNishanth Menonendif
138403b397a8SNishanth Menon
1385ce2b1ec6SManish Pandey# Add Secure Partition packages
1386ce2b1ec6SManish Pandeyifeq (${NEED_SP_PKG},yes)
1387ce2b1ec6SManish Pandey$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
13881e7528ecSRuari Phipps	${Q}${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT}
1389822c7279SJ-Alvessp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
1390ce2b1ec6SManish Pandey	@${ECHO_BLANK_LINE}
1391ce2b1ec6SManish Pandey	@echo "Built SP Images successfully"
1392ce2b1ec6SManish Pandey	@${ECHO_BLANK_LINE}
1393ce2b1ec6SManish Pandeyendif
1394ce2b1ec6SManish Pandey
139536eaaf37SIan Spraylocate-checkpatch:
139636eaaf37SIan Sprayifndef CHECKPATCH
139766079b04SEtienne Carriere	$(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
139836eaaf37SIan Sprayelse
139936eaaf37SIan Sprayifeq (,$(wildcard ${CHECKPATCH}))
140066079b04SEtienne Carriere	$(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
140136eaaf37SIan Sprayendif
140236eaaf37SIan Sprayendif
140336eaaf37SIan Spray
14044f6ad66aSAchin Guptaclean:
14054f6ad66aSAchin Gupta	@echo "  CLEAN"
1406f1477d4aSEvan Lloyd	$(call SHELL_REMOVE_DIR,${BUILD_PLAT})
140788a1cf1eSSami Mujawarifdef UNIX_MK
14082f2cef46SJeenu Viswambharan	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
140988a1cf1eSSami Mujawarelse
141088a1cf1eSSami Mujawar# Clear the MAKEFLAGS as we do not want
141188a1cf1eSSami Mujawar# to pass the gnumake flags to nmake.
141288a1cf1eSSami Mujawar	${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean
141388a1cf1eSSami Mujawarendif
14146f971622SJuan Castillo	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
141590aa901fSSumit Garg	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
14165accce5bSRoberto Vargas	${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
14174f6ad66aSAchin Gupta
1418eaaeece2SJames Morrisseyrealclean distclean:
1419eaaeece2SJames Morrissey	@echo "  REALCLEAN"
1420f1477d4aSEvan Lloyd	$(call SHELL_REMOVE_DIR,${BUILD_BASE})
1421f1477d4aSEvan Lloyd	$(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
142288a1cf1eSSami Mujawarifdef UNIX_MK
14232f2cef46SJeenu Viswambharan	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
142488a1cf1eSSami Mujawarelse
142588a1cf1eSSami Mujawar# Clear the MAKEFLAGS as we do not want
142688a1cf1eSSami Mujawar# to pass the gnumake flags to nmake.
142788a1cf1eSSami Mujawar	${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean
142888a1cf1eSSami Mujawarendif
1429e15591aaSNicolas Boulenguez	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
143090aa901fSSumit Garg	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
14315accce5bSRoberto Vargas	${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
14324f6ad66aSAchin Gupta
143336eaaf37SIan Spraycheckcodebase:		locate-checkpatch
143436eaaf37SIan Spray	@echo "  CHECKING STYLE"
143536eaaf37SIan Spray	@if test -d .git ; then						\
14361ef35512SPaul Beesley		git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' |	\
14371a41e8c1SDan Handley		while read GIT_FILE ;					\
14381a41e8c1SDan Handley		do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ;	\
14391a41e8c1SDan Handley		done ;							\
144036eaaf37SIan Spray	else								\
14411a41e8c1SDan Handley		 find . -type f -not -iwholename "*.git*"		\
14421a41e8c1SDan Handley		 -not -iwholename "*build*"				\
14431a41e8c1SDan Handley		 -not -iwholename "*libfdt*"				\
144461f72a34SRoberto Vargas		 -not -iwholename "*libc*"				\
14451a41e8c1SDan Handley		 -not -iwholename "*docs*"				\
14461ef35512SPaul Beesley		 -not -iwholename "*.rst"				\
14471a41e8c1SDan Handley		 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ;	\
144836eaaf37SIan Spray	fi
144936eaaf37SIan Spray
145036eaaf37SIan Spraycheckpatch:		locate-checkpatch
145136eaaf37SIan Spray	@echo "  CHECKING STYLE"
145202a76d5fSYann Gautier	@if test -n "${CHECKPATCH_OPTS}"; then				\
145302a76d5fSYann Gautier		echo "    with ${CHECKPATCH_OPTS} option(s)";		\
145402a76d5fSYann Gautier	fi
145551d28937SAntonio Nino Diaz	${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT});	\
145677a0a7f1SYann Gautier	for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`;	\
145777a0a7f1SYann Gautier	do								\
145851d28937SAntonio Nino Diaz		printf "\n[*] Checking style of '$$commit'\n\n";	\
145951d28937SAntonio Nino Diaz		git log --format=email "$$commit~..$$commit"		\
146002a76d5fSYann Gautier			-- ${CHECK_PATHS} |				\
146102a76d5fSYann Gautier			${CHECKPATCH} ${CHECKPATCH_OPTS} - || true;	\
146251d28937SAntonio Nino Diaz		git diff --format=email "$$commit~..$$commit"		\
146302a76d5fSYann Gautier			-- ${CHECK_PATHS} |				\
146402a76d5fSYann Gautier			${CHECKPATCH}  ${CHECKPATCH_OPTS} - || true;	\
146551d28937SAntonio Nino Diaz	done
146636eaaf37SIan Spray
146773c99d4eSJuan Castillocerttool: ${CRTTOOL}
146873c99d4eSJuan Castillo
1469a9812206SPali Rohár${CRTTOOL}: FORCE
1470fafd3ec9SManish V Badarkhe	${Q}${MAKE} PLAT=${PLAT} USE_TBBR_DEFS=${USE_TBBR_DEFS} COT=${COT} OPENSSL_DIR=${OPENSSL_DIR} CRTTOOL=${CRTTOOL} --no-print-directory -C ${CRTTOOLPATH}
1471f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
14726f971622SJuan Castillo	@echo "Built $@ successfully"
1473f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
14746f971622SJuan Castillo
14756f971622SJuan Castilloifneq (${GENERATE_COT},0)
147673c99d4eSJuan Castillocertificates: ${CRT_DEPS} ${CRTTOOL}
14776f971622SJuan Castillo	${Q}${CRTTOOL} ${CRT_ARGS}
1478f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
14796f971622SJuan Castillo	@echo "Built $@ successfully"
14806f971622SJuan Castillo	@echo "Certificates can be found in ${BUILD_PLAT}"
1481f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
148273c99d4eSJuan Castilloendif
148327713fb4SSoby Mathew
148473c99d4eSJuan Castillo${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
14854727fd13SPali Rohár	$(eval ${CHECK_FIP_CMD})
1486819281eeSdp-arm	${Q}${FIPTOOL} create ${FIP_ARGS} $@
1487819281eeSdp-arm	${Q}${FIPTOOL} info $@
1488f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
14892f2cef46SJeenu Viswambharan	@echo "Built $@ successfully"
1490f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
1491f58ad36fSHarry Liebel
14920191262dSYatharth Kocharifneq (${GENERATE_COT},0)
14930191262dSYatharth Kocharfwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
14940191262dSYatharth Kochar	${Q}${CRTTOOL} ${FWU_CRT_ARGS}
1495052ab529SEvan Lloyd	@${ECHO_BLANK_LINE}
14960191262dSYatharth Kochar	@echo "Built $@ successfully"
14970191262dSYatharth Kochar	@echo "FWU certificates can be found in ${BUILD_PLAT}"
1498052ab529SEvan Lloyd	@${ECHO_BLANK_LINE}
14990191262dSYatharth Kocharendif
15000191262dSYatharth Kochar
15010191262dSYatharth Kochar${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
15024727fd13SPali Rohár	$(eval ${CHECK_FWU_FIP_CMD})
1503819281eeSdp-arm	${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1504819281eeSdp-arm	${Q}${FIPTOOL} info $@
1505052ab529SEvan Lloyd	@${ECHO_BLANK_LINE}
15060191262dSYatharth Kochar	@echo "Built $@ successfully"
1507052ab529SEvan Lloyd	@${ECHO_BLANK_LINE}
15080191262dSYatharth Kochar
150973c99d4eSJuan Castillofiptool: ${FIPTOOL}
151073c99d4eSJuan Castillofip: ${BUILD_PLAT}/${FIP_NAME}
15110191262dSYatharth Kocharfwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
151273c99d4eSJuan Castillo
1513a9812206SPali Rohár${FIPTOOL}: FORCE
151488a1cf1eSSami Mujawarifdef UNIX_MK
15150a956f81SRoss Burton	${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} --no-print-directory -C ${FIPTOOLPATH}
151688a1cf1eSSami Mujawarelse
151788a1cf1eSSami Mujawar# Clear the MAKEFLAGS as we do not want
151888a1cf1eSSami Mujawar# to pass the gnumake flags to nmake.
151988a1cf1eSSami Mujawar	${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
152088a1cf1eSSami Mujawarendif
1521f58ad36fSHarry Liebel
1522a9812206SPali Rohárromlib.bin: libraries FORCE
1523bbb24f61SJohn Tsichritzis	${Q}${MAKE} PLAT_DIR=${PLAT_DIR} BUILD_PLAT=${BUILD_PLAT} ENABLE_BTI=${ENABLE_BTI} ARM_ARCH_MINOR=${ARM_ARCH_MINOR} INCLUDES='${INCLUDES}' DEFINES='${DEFINES}' --no-print-directory -C ${ROMLIBPATH} all
15245accce5bSRoberto Vargas
1525cfe83910SLouis Mayencourt# Call print_memory_map tool
1526cfe83910SLouis Mayencourtmemmap: all
1527b890b36dSLouis Mayencourt	${Q}${PYTHON} ${PRINT_MEMORY_MAP} ${BUILD_PLAT} ${INVERTED_MEMMAP}
1528cfe83910SLouis Mayencourt
15296de32378SMadhukar Pappireddydoc:
15306de32378SMadhukar Pappireddy	@echo "  BUILD DOCUMENTATION"
15316de32378SMadhukar Pappireddy	${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
15326de32378SMadhukar Pappireddy
153390aa901fSSumit Gargenctool: ${ENCTOOL}
153490aa901fSSumit Garg
1535a9812206SPali Rohár${ENCTOOL}: FORCE
1536fafd3ec9SManish V Badarkhe	${Q}${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} --no-print-directory -C ${ENCTOOLPATH}
153790aa901fSSumit Garg	@${ECHO_BLANK_LINE}
153890aa901fSSumit Garg	@echo "Built $@ successfully"
153990aa901fSSumit Garg	@${ECHO_BLANK_LINE}
154090aa901fSSumit Garg
154135fab8c9SJoakim Bechcscope:
154235fab8c9SJoakim Bech	@echo "  CSCOPE"
154335fab8c9SJoakim Bech	${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
154435fab8c9SJoakim Bech	${Q}cscope -b -q -k
154535fab8c9SJoakim Bech
154672ee3314SRyan Harkinhelp:
15477c23126cSJohn Tsichritzis	@echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
154872ee3314SRyan Harkin	@echo ""
154972ee3314SRyan Harkin	@echo "PLAT is used to specify which platform you wish to build."
155008c7ed0fSSandrine Bailleux	@echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
155172ee3314SRyan Harkin	@echo ""
15527c23126cSJohn Tsichritzis	@echo "platform = ${PLATFORM_LIST}"
15537c23126cSJohn Tsichritzis	@echo ""
15541b578596SSandrine Bailleux	@echo "Please refer to the User Guide for a list of all supported options."
15551b578596SSandrine Bailleux	@echo "Note that the build system doesn't track dependencies for build "
15561b578596SSandrine Bailleux	@echo "options. Therefore, if any of the build options are changed "
15571b578596SSandrine Bailleux	@echo "from a previous build, a clean build must be performed."
15581b578596SSandrine Bailleux	@echo ""
155972ee3314SRyan Harkin	@echo "Supported Targets:"
15601b578596SSandrine Bailleux	@echo "  all            Build all individual bootloader binaries"
156136eaaf37SIan Spray	@echo "  bl1            Build the BL1 binary"
15628aa559c0SJeenu Viswambharan	@echo "  bl2            Build the BL2 binary"
15639003fa0bSYatharth Kochar	@echo "  bl2u           Build the BL2U binary"
1564d178637dSJuan Castillo	@echo "  bl31           Build the BL31 binary"
15659d29c227SSoby Mathew	@echo "  bl32           Build the BL32 binary. If ARCH=aarch32, then "
15669d29c227SSoby Mathew	@echo "                 this builds secure payload specified by AARCH32_SP"
156773c99d4eSJuan Castillo	@echo "  certificates   Build the certificates (requires 'GENERATE_COT=1')"
15681b578596SSandrine Bailleux	@echo "  fip            Build the Firmware Image Package (FIP)"
15690191262dSYatharth Kochar	@echo "  fwu_fip        Build the FWU Firmware Image Package (FIP)"
157036eaaf37SIan Spray	@echo "  checkcodebase  Check the coding style of the entire source tree"
157136eaaf37SIan Spray	@echo "  checkpatch     Check the coding style on changes in the current"
157236eaaf37SIan Spray	@echo "                 branch against BASE_COMMIT (default origin/master)"
157372ee3314SRyan Harkin	@echo "  clean          Clean the build for the selected platform"
157435fab8c9SJoakim Bech	@echo "  cscope         Generate cscope index"
157572ee3314SRyan Harkin	@echo "  distclean      Remove all build artifacts for all platforms"
15766f971622SJuan Castillo	@echo "  certtool       Build the Certificate generation tool"
157790aa901fSSumit Garg	@echo "  enctool        Build the Firmware encryption tool"
1578f58ad36fSHarry Liebel	@echo "  fiptool        Build the Firmware Image Package (FIP) creation tool"
1579ce2b1ec6SManish Pandey	@echo "  sp             Build the Secure Partition Packages"
158026010da1SAntonio Nino Diaz	@echo "  sptool         Build the Secure Partition Package creation tool"
158138c14d88SSoby Mathew	@echo "  dtbs           Build the Device Tree Blobs (if required for the platform)"
1582cfe83910SLouis Mayencourt	@echo "  memmap         Print the memory map of the built binaries"
15836de32378SMadhukar Pappireddy	@echo "  doc            Build html based documentation using Sphinx tool"
158472ee3314SRyan Harkin	@echo ""
15851b578596SSandrine Bailleux	@echo "Note: most build targets require PLAT to be set to a specific platform."
158672ee3314SRyan Harkin	@echo ""
158772ee3314SRyan Harkin	@echo "example: build all targets for the FVP platform:"
158872ee3314SRyan Harkin	@echo "  CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
1589a9812206SPali Rohár
1590a9812206SPali Rohár.PHONY: FORCE
1591a9812206SPali RohárFORCE:;
1592