xref: /rk3399_ARM-atf/Makefile (revision ebac6922d1f6fc16c5d3953dfb512553001dcdd3)
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
110fa7fe59Slaurenw-armVERSION_MINOR			:= 8
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	\
353d75a9ecdSBoyan Karatotev				-Wredundant-decls
354d75a9ecdSBoyan Karatotev# stricter warnings
355d75a9ecdSBoyan KaratotevWARNINGS		+=	-Wextra -Wno-trigraphs
356d75a9ecdSBoyan Karatotev# too verbose for generic build
357d75a9ecdSBoyan KaratotevWARNINGS		+=	-Wno-missing-field-initializers \
358d75a9ecdSBoyan Karatotev				-Wno-type-limits -Wno-sign-compare \
359d75a9ecdSBoyan Karatotev# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
360d75a9ecdSBoyan KaratotevWARNINGS		+=	-Wno-unused-parameter
3619ab81b5eSJustin Chadwell
3629ab81b5eSJustin Chadwell# Additional warnings
363d75a9ecdSBoyan Karatotev# Level 1 - infrequent warnings we should have none of
364d75a9ecdSBoyan Karatotev# full -Wextra
365d75a9ecdSBoyan KaratotevWARNING1 += -Wsign-compare
366d75a9ecdSBoyan KaratotevWARNING1 += -Wtype-limits
367d75a9ecdSBoyan KaratotevWARNING1 += -Wmissing-field-initializers
368e7c645b5SYann Gautier
369d75a9ecdSBoyan Karatotev# Level 2 - problematic warnings that we want
370d75a9ecdSBoyan Karatotev# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
371d75a9ecdSBoyan Karatotev# TODO: disable just for them and move into default build
372d75a9ecdSBoyan KaratotevWARNING2 += -Wold-style-definition
373d75a9ecdSBoyan KaratotevWARNING2 += -Wmissing-prototypes
374d75a9ecdSBoyan KaratotevWARNING2 += -Wmissing-format-attribute
375d75a9ecdSBoyan Karatotev# TF-A aims to comply with this eventually. Effort too large at present
376d75a9ecdSBoyan KaratotevWARNING2 += -Wundef
377d141e638SBoyan Karatotev# currently very involved and many platforms set this off
378d141e638SBoyan KaratotevWARNING2 += -Wunused-const-variable=2
379e7c645b5SYann Gautier
380d75a9ecdSBoyan Karatotev# Level 3 - very pedantic, frequently ignored
381e7c645b5SYann GautierWARNING3 := -Wbad-function-cast
382d75a9ecdSBoyan KaratotevWARNING3 += -Waggregate-return
383d75a9ecdSBoyan KaratotevWARNING3 += -Wnested-externs
384d75a9ecdSBoyan KaratotevWARNING3 += -Wcast-align
385e7c645b5SYann GautierWARNING3 += -Wcast-qual
386e7c645b5SYann GautierWARNING3 += -Wconversion
387e7c645b5SYann GautierWARNING3 += -Wpacked
388e7c645b5SYann GautierWARNING3 += -Wpointer-arith
389e7c645b5SYann GautierWARNING3 += -Wswitch-default
390e7c645b5SYann Gautier
391d75a9ecdSBoyan Karatotev# Setting W is quite verbose and most warnings will be pre-existing issues
392d75a9ecdSBoyan Karatotev# outside of the contributor's control. Don't fail the build on them so warnings
393d75a9ecdSBoyan Karatotev# can be seen and hopefully addressed
394d75a9ecdSBoyan Karatotevifdef W
395d75a9ecdSBoyan Karatotevifneq (${W},0)
396d75a9ecdSBoyan KaratotevE	 ?= 0
397d75a9ecdSBoyan Karatotevendif
398d75a9ecdSBoyan Karatotevendif
399d75a9ecdSBoyan Karatotev
400e7c645b5SYann Gautierifeq (${W},1)
4019ab81b5eSJustin ChadwellWARNINGS += $(WARNING1)
402e7c645b5SYann Gautierelse ifeq (${W},2)
4039ab81b5eSJustin ChadwellWARNINGS += $(WARNING1) $(WARNING2)
404e7c645b5SYann Gautierelse ifeq (${W},3)
4059ab81b5eSJustin ChadwellWARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
406e7c645b5SYann Gautierendif
407e7c645b5SYann Gautier
4089ab81b5eSJustin Chadwell# Compiler specific warnings
40900296576SAmbroise Vincentifeq ($(findstring clang,$(notdir $(CC))),)
41093c690ebSJustin Chadwell# not using clang
411d7b4cd41SJustin ChadwellWARNINGS	+=		-Wunused-but-set-variable -Wmaybe-uninitialized	\
412d7b4cd41SJustin Chadwell				-Wpacked-bitfield-compat -Wshift-overflow=2 \
413d7b4cd41SJustin Chadwell				-Wlogical-op
41493c690ebSJustin Chadwellelse
41593c690ebSJustin Chadwell# using clang
416d7b4cd41SJustin ChadwellWARNINGS	+=		-Wshift-overflow -Wshift-sign-overflow \
417d7b4cd41SJustin Chadwell				-Wlogical-op-parentheses
41800296576SAmbroise Vincentendif
41900296576SAmbroise Vincent
4206336b07aSYann Gautierifneq (${E},0)
4216336b07aSYann GautierERRORS := -Werror
4226336b07aSYann Gautierendif
4236336b07aSYann Gautier
424ea7a57a3SRoberto VargasCPPFLAGS		=	${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc	\
4259ab81b5eSJustin Chadwell				$(ERRORS) $(WARNINGS)
42659de5096SMasahiro YamadaASFLAGS			+=	$(CPPFLAGS) $(ASFLAGS_$(ARCH))			\
427d5dfdeb6SJulius Werner				-ffreestanding -Wa,--fatal-warnings
42859de5096SMasahiro YamadaTF_CFLAGS		+=	$(CPPFLAGS) $(TF_CFLAGS_$(ARCH))		\
429ebd6efaeSSamuel Holland				-ffunction-sections -fdata-sections		\
430ebd6efaeSSamuel Holland				-ffreestanding -fno-builtin -fno-common		\
431ebd6efaeSSamuel Holland				-Os -std=gnu99
43273c99d4eSJuan Castillo
433bebcf27fSMark Brown$(eval $(call add_define,SVE_VECTOR_LEN))
434bebcf27fSMark Brown
4351f461979SJustin Chadwellifeq (${SANITIZE_UB},on)
4361f461979SJustin ChadwellTF_CFLAGS		+=	-fsanitize=undefined -fno-sanitize-recover
4371f461979SJustin Chadwellendif
4381f461979SJustin Chadwellifeq (${SANITIZE_UB},trap)
4391f461979SJustin ChadwellTF_CFLAGS		+=	-fsanitize=undefined -fno-sanitize-recover	\
4401f461979SJustin Chadwell				-fsanitize-undefined-trap-on-error
4411f461979SJustin Chadwellendif
4421f461979SJustin Chadwell
443f7ec31dbSdavid cunadoGCC_V_OUTPUT		:=	$(shell $(CC) -v 2>&1)
444f7ec31dbSdavid cunado
445641f16e7SAmbroise Vincent# LD = armlink
446c2ad38ceSVarun Wadekarifneq ($(findstring armlink,$(notdir $(LD))),)
447c2ad38ceSVarun WadekarTF_LDFLAGS		+=	--diag_error=warning --lto_level=O1
448c2ad38ceSVarun WadekarTF_LDFLAGS		+=	--remove --info=unused,unusedsymbols
449edbce9aaSzelalem-awekeTF_LDFLAGS		+=	$(TF_LDFLAGS_$(ARCH))
450641f16e7SAmbroise Vincent
451641f16e7SAmbroise Vincent# LD = gcc (used when GCC LTO is enabled)
452edbce9aaSzelalem-awekeelse ifneq ($(findstring gcc,$(notdir $(LD))),)
453edbce9aaSzelalem-aweke# Pass ld options with Wl or Xlinker switches
454edbce9aaSzelalem-awekeTF_LDFLAGS		+=	-Wl,--fatal-warnings -O1
455edbce9aaSzelalem-awekeTF_LDFLAGS		+=	-Wl,--gc-sections
456edbce9aaSzelalem-awekeifeq ($(ENABLE_LTO),1)
457edbce9aaSzelalem-aweke	ifeq (${ARCH},aarch64)
458edbce9aaSzelalem-aweke		TF_LDFLAGS	+=	-flto -fuse-linker-plugin
459edbce9aaSzelalem-aweke	endif
460edbce9aaSzelalem-awekeendif
461edbce9aaSzelalem-aweke# GCC automatically adds fix-cortex-a53-843419 flag when used to link
462edbce9aaSzelalem-aweke# which breaks some builds, so disable if errata fix is not explicitly enabled
463edbce9aaSzelalem-awekeifneq (${ERRATA_A53_843419},1)
464edbce9aaSzelalem-aweke	TF_LDFLAGS	+= 	-mno-fix-cortex-a53-843419
465edbce9aaSzelalem-awekeendif
466edbce9aaSzelalem-awekeTF_LDFLAGS		+= 	-nostdlib
467edbce9aaSzelalem-awekeTF_LDFLAGS		+=	$(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
468641f16e7SAmbroise Vincent
469641f16e7SAmbroise Vincent# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
470c2ad38ceSVarun Wadekarelse
471*ebac6922SYabin CuiTF_LDFLAGS		+=	-O1
472c2b8806fSDouglas RaillardTF_LDFLAGS		+=	--gc-sections
473641f16e7SAmbroise Vincent# ld.lld doesn't recognize the errata flags,
474*ebac6922SYabin Cui# therefore don't add those in that case.
475*ebac6922SYabin Cui# ld.lld reports section type mismatch warnings,
476*ebac6922SYabin Cui# therefore don't add --fatal-warnings to it.
477641f16e7SAmbroise Vincentifeq ($(findstring ld.lld,$(notdir $(LD))),)
478*ebac6922SYabin CuiTF_LDFLAGS		+=	$(TF_LDFLAGS_$(ARCH)) --fatal-warnings
479edbce9aaSzelalem-awekeendif
480641f16e7SAmbroise Vincentendif
48173c99d4eSJuan Castillo
48203b397a8SNishanth MenonDTC_FLAGS		+=	-I dts -O dtb
483a6de824fSLouis MayencourtDTC_CPPFLAGS		+=	-P -nostdinc -Iinclude -Ifdts -undef \
484a6de824fSLouis Mayencourt				-x assembler-with-cpp $(DEFINES)
48503b397a8SNishanth Menon
48673c99d4eSJuan Castillo################################################################################
48773c99d4eSJuan Castillo# Common sources and include directories
48873c99d4eSJuan Castillo################################################################################
4896a0da736SJayanth Dodderi Chidanandinclude ${MAKE_HELPERS_DIRECTORY}arch_features.mk
490d801fbb0Sdp-arminclude lib/compiler-rt/compiler-rt.mk
49173c99d4eSJuan Castillo
49273c99d4eSJuan CastilloBL_COMMON_SOURCES	+=	common/bl_common.c			\
4937f56e9a3SSoby Mathew				common/tf_log.c				\
4949d29c227SSoby Mathew				common/${ARCH}/debug.S			\
49591b48c9fSJulius Werner				drivers/console/multi_console.c		\
4969d29c227SSoby Mathew				lib/${ARCH}/cache_helpers.S		\
4979d29c227SSoby Mathew				lib/${ARCH}/misc_helpers.S		\
498566034fcSSoby Mathew				plat/common/plat_bl_common.c		\
4997f56e9a3SSoby Mathew				plat/common/plat_log_common.c		\
50075311203Sdp-arm				plat/common/${ARCH}/plat_common.c	\
5019d29c227SSoby Mathew				plat/common/${ARCH}/platform_helpers.S	\
50261f72a34SRoberto Vargas				${COMPILER_RT_SRCS}
503d7a6b0f8SRyan Harkin
5048422a840SAntonio Nino Diazifeq ($(notdir $(CC)),armclang)
5058422a840SAntonio Nino DiazBL_COMMON_SOURCES	+=	lib/${ARCH}/armclang_printf.S
5068422a840SAntonio Nino Diazendif
5078422a840SAntonio Nino Diaz
5081f461979SJustin Chadwellifeq (${SANITIZE_UB},on)
5091f461979SJustin ChadwellBL_COMMON_SOURCES	+=	plat/common/ubsan.c
5101f461979SJustin Chadwellendif
5111f461979SJustin Chadwell
51201d237cbSYann GautierINCLUDES		+=	-Iinclude				\
513f5478dedSAntonio Nino Diaz				-Iinclude/arch/${ARCH}			\
51409d40e0eSAntonio Nino Diaz				-Iinclude/lib/cpus/${ARCH}		\
51509d40e0eSAntonio Nino Diaz				-Iinclude/lib/el3_runtime/${ARCH}	\
51609d40e0eSAntonio Nino Diaz				${PLAT_INCLUDES}			\
51709d40e0eSAntonio Nino Diaz				${SPD_INCLUDES}
51809d40e0eSAntonio Nino Diaz
5199c6d1c50SAntonio Nino Diazinclude common/backtrace/backtrace.mk
5209c6d1c50SAntonio Nino Diaz
52173c99d4eSJuan Castillo################################################################################
52273c99d4eSJuan Castillo# Generic definitions
52373c99d4eSJuan Castillo################################################################################
52473c99d4eSJuan Castillo
525231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
526231c1470SEvan Lloyd
52729214e95SGrant Likelyifeq (${BUILD_BASE},)
52873c99d4eSJuan Castillo     BUILD_BASE		:=	./build
52929214e95SGrant Likelyendif
53029214e95SGrant LikelyBUILD_PLAT		:=	$(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
53173c99d4eSJuan Castillo
532231c1470SEvan LloydSPDS			:=	$(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
53373c99d4eSJuan Castillo
53473c99d4eSJuan Castillo# Platforms providing their own TBB makefile may override this value
53573c99d4eSJuan CastilloINCLUDE_TBBR_MK		:=	1
53673c99d4eSJuan Castillo
53773c99d4eSJuan Castillo
53873c99d4eSJuan Castillo################################################################################
53973c99d4eSJuan Castillo# Include SPD Makefile if one has been specified
54073c99d4eSJuan Castillo################################################################################
54173c99d4eSJuan Castillo
54273c99d4eSJuan Castilloifneq (${SPD},none)
5439d29c227SSoby Mathew    ifeq (${ARCH},aarch32)
5449d29c227SSoby Mathew        $(error "Error: SPD is incompatible with AArch32.")
5459d29c227SSoby Mathew    endif
54628f39f02SMax Shvetsov
5474c117f6cSSandrine Bailleux    ifdef EL3_PAYLOAD_BASE
5484c117f6cSSandrine Bailleux        $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
5494c117f6cSSandrine Bailleux        $(warning "The SPD and its BL32 companion will be present but ignored.")
5504c117f6cSSandrine Bailleux    endif
55128f39f02SMax Shvetsov
552c3fb00d9SAchin Gupta    ifeq (${SPD},spmd)
553c3fb00d9SAchin Gupta        # SPMD is located in std_svc directory
554c3fb00d9SAchin Gupta        SPD_DIR := std_svc
55528f39f02SMax Shvetsov
556033039f8SMax Shvetsov        ifeq ($(SPMD_SPM_AT_SEL2),1)
557f1910cc1SGovindraj Raja            CTX_INCLUDE_EL2_REGS := 1
5581d63ae4dSMarc Bonnici	    ifeq ($(SPMC_AT_EL3),1)
5591d63ae4dSMarc Bonnici                $(error SPM cannot be enabled in both S-EL2 and EL3.)
5601d63ae4dSMarc Bonnici            endif
56128f39f02SMax Shvetsov        endif
562db1ef41aSOlivier Deprez
563db1ef41aSOlivier Deprez        ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
564db1ef41aSOlivier Deprez            DTC_CPPFLAGS	+=	-DOPTEE_SP_FW_CONFIG
565db1ef41aSOlivier Deprez        endif
566ca932481SDavidson K
567ca932481SDavidson K        ifeq ($(TS_SP_FW_CONFIG),1)
568ca932481SDavidson K            DTC_CPPFLAGS	+=	-DTS_SP_FW_CONFIG
569ca932481SDavidson K        endif
57033993a37SBalint Dobszay
57133993a37SBalint Dobszay        ifneq ($(ARM_BL2_SP_LIST_DTS),)
57233993a37SBalint Dobszay            DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
57333993a37SBalint Dobszay        endif
57446789a7cSBalint Dobszay
57546789a7cSBalint Dobszay        ifneq ($(SP_LAYOUT_FILE),)
57646789a7cSBalint Dobszay            BL2_ENABLE_SP_LOAD := 1
57746789a7cSBalint Dobszay        endif
578c3fb00d9SAchin Gupta    else
579c3fb00d9SAchin Gupta        # All other SPDs in spd directory
580c3fb00d9SAchin Gupta        SPD_DIR := spd
581c3fb00d9SAchin Gupta    endif
582c3fb00d9SAchin Gupta
58373c99d4eSJuan Castillo    # We expect to locate an spd.mk under the specified SPD directory
584c3fb00d9SAchin Gupta    SPD_MAKE	:=	$(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
585c3fb00d9SAchin Gupta
58673c99d4eSJuan Castillo    ifeq (${SPD_MAKE},)
587c3fb00d9SAchin Gupta        $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
58873c99d4eSJuan Castillo    endif
58973c99d4eSJuan Castillo    $(info Including ${SPD_MAKE})
59073c99d4eSJuan Castillo    include ${SPD_MAKE}
59173c99d4eSJuan Castillo
59270d1fc53SJuan Castillo    # If there's BL32 companion for the chosen SPD, we expect that the SPD's
59370d1fc53SJuan Castillo    # Makefile would set NEED_BL32 to "yes". In this case, the build system
59470d1fc53SJuan Castillo    # supports two mutually exclusive options:
59570d1fc53SJuan Castillo    # * BL32 is built from source: then BL32_SOURCES must contain the list
59670d1fc53SJuan Castillo    #   of source files to build BL32
59770d1fc53SJuan Castillo    # * BL32 is a prebuilt binary: then BL32 must point to the image file
59870d1fc53SJuan Castillo    #   that will be included in the FIP
59970d1fc53SJuan Castillo    # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
60070d1fc53SJuan Castillo    # over the sources.
601e35c4045SJeenu Viswambharanendif
602e35c4045SJeenu Viswambharan
603f1910cc1SGovindraj Rajaifeq (${CTX_INCLUDE_EL2_REGS}, 1)
604f1910cc1SGovindraj Rajaifeq (${SPD},none)
605f1910cc1SGovindraj Rajaifeq (${ENABLE_RME},0)
606f1910cc1SGovindraj Raja    $(error CTX_INCLUDE_EL2_REGS is available only when SPD or RME is enabled)
607f1910cc1SGovindraj Rajaendif
608f1910cc1SGovindraj Rajaendif
609f1910cc1SGovindraj Rajaendif
610f1910cc1SGovindraj Raja
61151faada7SDouglas Raillard################################################################################
6125b18de09SZelalem Aweke# Include rmmd Makefile if RME is enabled
6135b18de09SZelalem Aweke################################################################################
6145b18de09SZelalem Aweke
6155b18de09SZelalem Awekeifneq (${ENABLE_RME},0)
6165b18de09SZelalem Awekeifneq (${ARCH},aarch64)
6175b18de09SZelalem Aweke	$(error ENABLE_RME requires AArch64)
6185b18de09SZelalem Awekeendif
6191d63ae4dSMarc Bonniciifeq ($(SPMC_AT_EL3),1)
6201d63ae4dSMarc Bonnici	$(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
6211d63ae4dSMarc Bonniciendif
6225b18de09SZelalem Awekeinclude services/std_svc/rmmd/rmmd.mk
6235b18de09SZelalem Aweke$(warning "RME is an experimental feature")
6245b18de09SZelalem Awekeendif
6255b18de09SZelalem Aweke
6265b18de09SZelalem Aweke################################################################################
62773c99d4eSJuan Castillo# Include the platform specific Makefile after the SPD Makefile (the platform
62873c99d4eSJuan Castillo# makefile may use all previous definitions in this file)
62973c99d4eSJuan Castillo################################################################################
6302da8d8bfSJeenu Viswambharan
63173c99d4eSJuan Castilloinclude ${PLAT_MAKEFILE_FULL}
6320f21c547SJuan Castillo
6338012cc5cSMasahiro Yamada$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
6348012cc5cSMasahiro Yamada
63526e63c44SEtienne Carriereifeq (${ARM_ARCH_MAJOR},7)
63626e63c44SEtienne Carriereinclude make_helpers/armv7-a-cpus.mk
63726e63c44SEtienne Carriereendif
63826e63c44SEtienne Carriere
6393bd17c0fSSoby MathewPIE_FOUND		:=	$(findstring --enable-default-pie,${GCC_V_OUTPUT})
6403bd17c0fSSoby Mathewifneq ($(PIE_FOUND),)
6413bd17c0fSSoby Mathew	TF_CFLAGS	+=	-fno-PIE
6427b592418SSamuel Hollandifneq ($(findstring gcc,$(notdir $(LD))),)
6437b592418SSamuel Holland	TF_LDFLAGS	+=	-no-pie
6447b592418SSamuel Hollandendif
6453bd17c0fSSoby Mathewendif
646320920c1SMasahiro Yamada
647320920c1SMasahiro Yamadaifneq ($(findstring gcc,$(notdir $(LD))),)
648320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-Wl,-pie -Wl,--no-dynamic-linker
649320920c1SMasahiro Yamadaelse
650320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-pie --no-dynamic-linker
651320920c1SMasahiro Yamadaendif
652320920c1SMasahiro Yamada
653320920c1SMasahiro Yamadaifeq ($(ENABLE_PIE),1)
65469af7fcfSMasahiro Yamadaifeq ($(BL2_AT_EL3),1)
65569af7fcfSMasahiro Yamadaifneq ($(BL2_IN_XIP_MEM),1)
65669af7fcfSMasahiro Yamada	BL2_CFLAGS	+=	-fpie
65769af7fcfSMasahiro Yamada	BL2_LDFLAGS	+=	$(PIE_LDFLAGS)
65869af7fcfSMasahiro Yamadaendif
65969af7fcfSMasahiro Yamadaendif
660320920c1SMasahiro Yamada	BL31_CFLAGS	+=	-fpie
661320920c1SMasahiro Yamada	BL31_LDFLAGS	+=	$(PIE_LDFLAGS)
662d974301dSMasahiro Yamada	BL32_CFLAGS	+=	-fpie
663d974301dSMasahiro Yamada	BL32_LDFLAGS	+=	$(PIE_LDFLAGS)
664d974301dSMasahiro Yamadaendif
6653bd17c0fSSoby Mathew
666d5e97a1dSMasahiro Yamadaifeq (${ARCH},aarch64)
6679cefb4b1SMasahiro YamadaBL1_CPPFLAGS += -DIMAGE_AT_EL3
668d5e97a1dSMasahiro Yamadaifeq ($(BL2_AT_EL3),1)
6699cefb4b1SMasahiro YamadaBL2_CPPFLAGS += -DIMAGE_AT_EL3
670d5e97a1dSMasahiro Yamadaelse
6719cefb4b1SMasahiro YamadaBL2_CPPFLAGS += -DIMAGE_AT_EL1
672d5e97a1dSMasahiro Yamadaendif
6739cefb4b1SMasahiro YamadaBL2U_CPPFLAGS += -DIMAGE_AT_EL1
6749cefb4b1SMasahiro YamadaBL31_CPPFLAGS += -DIMAGE_AT_EL3
6759cefb4b1SMasahiro YamadaBL32_CPPFLAGS += -DIMAGE_AT_EL1
676d5e97a1dSMasahiro Yamadaendif
677d5e97a1dSMasahiro Yamada
67854035fc4SSandrine Bailleux# Include the CPU specific operations makefile, which provides default
67954035fc4SSandrine Bailleux# values for all CPU errata workarounds and CPU specific optimisations.
68054035fc4SSandrine Bailleux# This can be overridden by the platform.
68173c99d4eSJuan Castilloinclude lib/cpus/cpu-ops.mk
6824f6ad66aSAchin Gupta
683a4409008Sdp-armifeq (${ARCH},aarch32)
684a4409008Sdp-armNEED_BL32 := yes
685a4409008Sdp-arm
686a4409008Sdp-arm################################################################################
687a4409008Sdp-arm# Build `AARCH32_SP` as BL32 image for AArch32
688a4409008Sdp-arm################################################################################
689a4409008Sdp-armifneq (${AARCH32_SP},none)
690a4409008Sdp-arm# We expect to locate an sp.mk under the specified AARCH32_SP directory
691a4409008Sdp-armAARCH32_SP_MAKE	:=	$(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
692a4409008Sdp-arm
693a4409008Sdp-armifeq (${AARCH32_SP_MAKE},)
694a4409008Sdp-arm  $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
695a4409008Sdp-armendif
696a4409008Sdp-arm
697a4409008Sdp-arm$(info Including ${AARCH32_SP_MAKE})
698a4409008Sdp-arminclude ${AARCH32_SP_MAKE}
699a4409008Sdp-armendif
700a4409008Sdp-arm
701a4409008Sdp-armendif
7024f6ad66aSAchin Gupta
70373c99d4eSJuan Castillo################################################################################
70477f1f7a1SVarun Wadekar# Include libc if not overridden
70577f1f7a1SVarun Wadekar################################################################################
70677f1f7a1SVarun Wadekarifeq (${OVERRIDE_LIBC},0)
70777f1f7a1SVarun Wadekarinclude lib/libc/libc.mk
70877f1f7a1SVarun Wadekarendif
70977f1f7a1SVarun Wadekar
71077f1f7a1SVarun Wadekar################################################################################
711cf2c8a33SAntonio Nino Diaz# Check incompatible options
712cf2c8a33SAntonio Nino Diaz################################################################################
713cf2c8a33SAntonio Nino Diaz
714cf2c8a33SAntonio Nino Diazifdef EL3_PAYLOAD_BASE
71568450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
71668450a6dSAntonio Nino Diaz                $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
71768450a6dSAntonio Nino Diaz                incompatible build options. EL3_PAYLOAD_BASE has priority.")
718cf2c8a33SAntonio Nino Diaz        endif
71976580f3dSQixiang Xu        ifneq (${GENERATE_COT},0)
72076580f3dSQixiang Xu                $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible build options.")
72176580f3dSQixiang Xu        endif
72276580f3dSQixiang Xu        ifneq (${TRUSTED_BOARD_BOOT},0)
72376580f3dSQixiang Xu                $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are incompatible build options.")
72476580f3dSQixiang Xu        endif
725cf2c8a33SAntonio Nino Diazendif
726cf2c8a33SAntonio Nino Diaz
727cf2c8a33SAntonio Nino Diazifeq (${NEED_BL33},yes)
728cf2c8a33SAntonio Nino Diaz        ifdef EL3_PAYLOAD_BASE
729cf2c8a33SAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
730cf2c8a33SAntonio Nino Diaz                BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
731cf2c8a33SAntonio Nino Diaz        endif
73268450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
73368450a6dSAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
73468450a6dSAntonio Nino Diaz                PRELOADED_BL33_BASE is used and won't be added to the FIP \
73568450a6dSAntonio Nino Diaz                file.")
736cf2c8a33SAntonio Nino Diaz        endif
737cf2c8a33SAntonio Nino Diazendif
738cf2c8a33SAntonio Nino Diaz
739d4593e47SJeenu Viswambharan# When building for systems with hardware-assisted coherency, there's no need to
740d4593e47SJeenu Viswambharan# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
741d4593e47SJeenu Viswambharanifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
742d4593e47SJeenu Viswambharan$(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
743d4593e47SJeenu Viswambharanendif
7441a0a3f06SYatharth Kochar
7457d173fc5SJiafei Pan#For now, BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is 1.
7467d173fc5SJiafei Panifeq ($(BL2_AT_EL3)-$(BL2_IN_XIP_MEM),0-1)
7477d173fc5SJiafei Pan$(error "BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is enabled")
7487d173fc5SJiafei Panendif
7497d173fc5SJiafei Pan
75014c6016aSJeenu Viswambharan# For RAS_EXTENSION, require that EAs are handled in EL3 first
75114c6016aSJeenu Viswambharanifeq ($(RAS_EXTENSION),1)
75246cc41d5SManish Pandey    ifneq ($(HANDLE_EA_EL3_FIRST_NS),1)
75346cc41d5SManish Pandey        $(error For RAS_EXTENSION, HANDLE_EA_EL3_FIRST_NS must also be 1)
75414c6016aSJeenu Viswambharan    endif
75514c6016aSJeenu Viswambharanendif
75614c6016aSJeenu Viswambharan
7571a7c1cfeSJeenu Viswambharan# When FAULT_INJECTION_SUPPORT is used, require that RAS_EXTENSION is enabled
7581a7c1cfeSJeenu Viswambharanifeq ($(FAULT_INJECTION_SUPPORT),1)
7591a7c1cfeSJeenu Viswambharan    ifneq ($(RAS_EXTENSION),1)
7601a7c1cfeSJeenu Viswambharan        $(error For FAULT_INJECTION_SUPPORT, RAS_EXTENSION must also be 1)
7611a7c1cfeSJeenu Viswambharan    endif
7621a7c1cfeSJeenu Viswambharanendif
7631a7c1cfeSJeenu Viswambharan
764ed51b51fSRoberto Vargas# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
765209a60ccSSoby Mathewifeq ($(DYN_DISABLE_AUTH), 1)
766209a60ccSSoby Mathew    ifeq (${TRUSTED_BOARD_BOOT}, 0)
767209a60ccSSoby Mathew        $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH to be set.")
768209a60ccSSoby Mathew    endif
769209a60ccSSoby Mathewendif
770209a60ccSSoby Mathew
7712bf4f27fSManish V Badarkheifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
7722bf4f27fSManish V Badarkhe# Support authentication verification and hash calculation
7732bf4f27fSManish V Badarkhe    CRYPTO_SUPPORT := 3
7742bf4f27fSManish V Badarkheelse ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
7752bf4f27fSManish V Badarkhe# Support authentication verification and hash calculation
7762bf4f27fSManish V Badarkhe    CRYPTO_SUPPORT := 3
7772bf4f27fSManish V Badarkheelse ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
7782bf4f27fSManish V Badarkhe# Support hash calculation only
7792bf4f27fSManish V Badarkhe    CRYPTO_SUPPORT := 2
7802bf4f27fSManish V Badarkheelse ifeq (${TRUSTED_BOARD_BOOT},1)
7812bf4f27fSManish V Badarkhe# Support authentication verification only
782c9c56f6eSManish V Badarkhe    CRYPTO_SUPPORT := 1
783c9c56f6eSManish V Badarkheelse
784c9c56f6eSManish V Badarkhe    CRYPTO_SUPPORT := 0
785c9c56f6eSManish V Badarkheendif
786c9c56f6eSManish V Badarkhe
787cbf9e84aSBalint Dobszay# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
788cbf9e84aSBalint Dobszayifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
789700e7685SManish Pandey$(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
79084ef9cd8SManish V Badarkheendif
79184ef9cd8SManish V Badarkhe
792b86048c4SAntonio Nino Diaz# If pointer authentication is used in the firmware, make sure that all the
7939fc59639SAlexei Fedorov# registers associated to it are also saved and restored.
7949fc59639SAlexei Fedorov# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
795b86048c4SAntonio Nino Diazifeq ($(ENABLE_PAUTH),1)
7969fc59639SAlexei Fedorov    ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
7979fc59639SAlexei Fedorov        $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
79806715f85SAlexei Fedorov    endif
7999fc59639SAlexei Fedorovendif
8009fc59639SAlexei Fedorov
80106715f85SAlexei Fedorovifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
8029fc59639SAlexei Fedorov    ifneq (${ARCH},aarch64)
8039fc59639SAlexei Fedorov        $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
804b86048c4SAntonio Nino Diaz    endif
805b86048c4SAntonio Nino Diazendif
8069fc59639SAlexei Fedorov
8079dd94382SJustin Chadwellifeq ($(CTX_INCLUDE_MTE_REGS),1)
8089dd94382SJustin Chadwell    ifneq (${ARCH},aarch64)
8099dd94382SJustin Chadwell        $(error CTX_INCLUDE_MTE_REGS requires AArch64)
8109dd94382SJustin Chadwell    endif
8119dd94382SJustin Chadwellendif
8129dd94382SJustin Chadwell
813396b339dSManish V Badarkheifeq ($(PSA_FWU_SUPPORT),1)
814396b339dSManish V Badarkhe    $(info PSA_FWU_SUPPORT is an experimental feature)
815396b339dSManish V Badarkheendif
816396b339dSManish V Badarkhe
8176a0da736SJayanth Dodderi Chidanandifeq ($(FEATURE_DETECTION),1)
8186a0da736SJayanth Dodderi Chidanand    $(info FEATURE_DETECTION is an experimental feature)
8196a0da736SJayanth Dodderi Chidanandendif
8206a0da736SJayanth Dodderi Chidanand
82160e8f3cfSPetre-Ionut Tudorifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
82260e8f3cfSPetre-Ionut Tudor    ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
82360e8f3cfSPetre-Ionut Tudor        $(error "ALLOW_RO_XLAT_TABLES requires translation tables library v2")
82460e8f3cfSPetre-Ionut Tudor    endif
82560e8f3cfSPetre-Ionut Tudorendif
82660e8f3cfSPetre-Ionut Tudor
8277cda17bbSSumit Gargifneq (${DECRYPTION_SUPPORT},none)
8287cda17bbSSumit Garg    ifeq (${TRUSTED_BOARD_BOOT}, 0)
8297cda17bbSSumit Garg        $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT to be set)
8307cda17bbSSumit Garg    endif
8317cda17bbSSumit Gargendif
8327cda17bbSSumit Garg
833744ad974Sjohpow01# Ensure that no Aarch64-only features are enabled in Aarch32 build
834dc78e62dSjohpow01ifeq (${ARCH},aarch32)
835744ad974Sjohpow01
836744ad974Sjohpow01    # SME/SVE only supported on AArch64
837dc78e62dSjohpow01    ifeq (${ENABLE_SME_FOR_NS},1)
838dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
839dc78e62dSjohpow01    endif
840dc78e62dSjohpow01    ifeq (${ENABLE_SVE_FOR_NS},1)
841dc78e62dSjohpow01        # Warning instead of error due to CI dependency on this
84224ab2c0aSYann Gautier        $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
843dc78e62dSjohpow01    endif
844744ad974Sjohpow01
845ff86e0b4SJuan Pablo Conde    # BRBE is not supported in AArch32
846744ad974Sjohpow01    ifeq (${ENABLE_BRBE_FOR_NS},1)
847744ad974Sjohpow01        $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
848744ad974Sjohpow01    endif
849744ad974Sjohpow01
850ff86e0b4SJuan Pablo Conde    # FEAT_RNG_TRAP is not supported in AArch32
851ff86e0b4SJuan Pablo Conde    ifeq (${ENABLE_FEAT_RNG_TRAP},1)
852ff86e0b4SJuan Pablo Conde        $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
853ff86e0b4SJuan Pablo Conde    endif
854dc78e62dSjohpow01endif
855dc78e62dSjohpow01
856dc78e62dSjohpow01# Ensure ENABLE_RME is not used with SME
857dc78e62dSjohpow01ifeq (${ENABLE_RME},1)
858dc78e62dSjohpow01    ifeq (${ENABLE_SME_FOR_NS},1)
859dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_NS cannot be used with ENABLE_RME")
860dc78e62dSjohpow01    endif
861dc78e62dSjohpow01endif
862dc78e62dSjohpow01
863dc78e62dSjohpow01# Secure SME/SVE requires the non-secure component as well
864dc78e62dSjohpow01ifeq (${ENABLE_SME_FOR_SWD},1)
865dc78e62dSjohpow01    ifeq (${ENABLE_SME_FOR_NS},0)
866dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
867dc78e62dSjohpow01    endif
868dc78e62dSjohpow01endif
869dc78e62dSjohpow01ifeq (${ENABLE_SVE_FOR_SWD},1)
870dc78e62dSjohpow01    ifeq (${ENABLE_SVE_FOR_NS},0)
871dc78e62dSjohpow01        $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
872dc78e62dSjohpow01    endif
873dc78e62dSjohpow01endif
874dc78e62dSjohpow01
875dc78e62dSjohpow01# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
876dc78e62dSjohpow01# its own context management including FPU registers.
877dc78e62dSjohpow01ifeq (${CTX_INCLUDE_FPREGS},1)
878dc78e62dSjohpow01    ifeq (${ENABLE_SME_FOR_NS},1)
879dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
880dc78e62dSjohpow01    endif
881dc78e62dSjohpow01    ifeq (${ENABLE_SVE_FOR_NS},1)
882dc78e62dSjohpow01        # Warning instead of error due to CI dependency on this
883dc78e62dSjohpow01        $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
884dc78e62dSjohpow01        $(warning "Forced ENABLE_SVE_FOR_NS=0")
885dc78e62dSjohpow01        override ENABLE_SVE_FOR_NS	:= 0
886dc78e62dSjohpow01    endif
887dc78e62dSjohpow01endif
888dc78e62dSjohpow01
88900e28874SManish V Badarkheifeq ($(DRTM_SUPPORT),1)
89000e28874SManish V Badarkhe    $(info DRTM_SUPPORT is an experimental feature)
89100e28874SManish V Badarkheendif
89200e28874SManish V Badarkhe
893274a69e7SChris Kayifeq (${ENABLE_RME},1)
894274a69e7SChris Kay    ifneq (${SEPARATE_CODE_AND_RODATA},1)
895274a69e7SChris Kay        $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
896274a69e7SChris Kay    endif
897274a69e7SChris Kayendif
898274a69e7SChris Kay
899cf2c8a33SAntonio Nino Diaz################################################################################
90073c99d4eSJuan Castillo# Process platform overrideable behaviour
90173c99d4eSJuan Castillo################################################################################
9024f6ad66aSAchin Gupta
9035f24ce96SManish Pandeyifdef BL1_SOURCES
9045f24ce96SManish PandeyNEED_BL1 := yes
9055f24ce96SManish Pandeyendif
9065f24ce96SManish Pandey
9075f24ce96SManish Pandeyifdef BL2_SOURCES
9085f24ce96SManish Pandey	NEED_BL2 := yes
9095f24ce96SManish Pandey
910bd97f83aSJohn Tsichritzis	# Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
911bd97f83aSJohn Tsichritzis	# Certificate generation tools. This flag can be overridden by the platform.
912cf2c8a33SAntonio Nino Diaz	ifdef EL3_PAYLOAD_BASE
913cf2c8a33SAntonio Nino Diaz                # If booting an EL3 payload there is no need for a BL33 image
914cf2c8a33SAntonio Nino Diaz                # in the FIP file.
9154c117f6cSSandrine Bailleux                NEED_BL33		:=	no
916cf2c8a33SAntonio Nino Diaz        else
91768450a6dSAntonio Nino Diaz                ifdef PRELOADED_BL33_BASE
918cf2c8a33SAntonio Nino Diaz                        # If booting a BL33 preloaded image there is no need of
919cf2c8a33SAntonio Nino Diaz                        # another one in the FIP file.
920cf2c8a33SAntonio Nino Diaz                        NEED_BL33		:=	no
921cf2c8a33SAntonio Nino Diaz                else
922cf2c8a33SAntonio Nino Diaz                        NEED_BL33		?=	yes
923cf2c8a33SAntonio Nino Diaz                endif
9244c117f6cSSandrine Bailleux        endif
92573c99d4eSJuan Castilloendif
9266f971622SJuan Castillo
9275f24ce96SManish Pandeyifdef BL2U_SOURCES
9285f24ce96SManish PandeyNEED_BL2U := yes
9295f24ce96SManish Pandeyendif
9305f24ce96SManish Pandey
9314d045d0eSMasahiro Yamada# If SCP_BL2 is given, we always want FIP to include it.
9324d045d0eSMasahiro Yamadaifdef SCP_BL2
9334d045d0eSMasahiro Yamada        NEED_SCP_BL2		:=	yes
9344d045d0eSMasahiro Yamadaendif
9354d045d0eSMasahiro Yamada
9365744e874SSoby Mathew# For AArch32, BL31 is not currently supported.
9375744e874SSoby Mathewifneq (${ARCH},aarch32)
9385744e874SSoby Mathew    ifdef BL31_SOURCES
9395744e874SSoby Mathew        # When booting an EL3 payload, there is no need to compile the BL31 image nor
9405744e874SSoby Mathew        # put it in the FIP.
9415744e874SSoby Mathew        ifndef EL3_PAYLOAD_BASE
9425744e874SSoby Mathew            NEED_BL31 := yes
9435744e874SSoby Mathew        endif
9445744e874SSoby Mathew    endif
9455744e874SSoby Mathewendif
9465744e874SSoby Mathew
94773c99d4eSJuan Castillo# Process TBB related flags
9486f971622SJuan Castilloifneq (${GENERATE_COT},0)
94973c99d4eSJuan Castillo        # Common cert_create options
9506f971622SJuan Castillo        ifneq (${CREATE_KEYS},0)
9516f971622SJuan Castillo                $(eval CRT_ARGS += -n)
9520191262dSYatharth Kochar                $(eval FWU_CRT_ARGS += -n)
953fd34e7baSJuan Castillo                ifneq (${SAVE_KEYS},0)
954fd34e7baSJuan Castillo                        $(eval CRT_ARGS += -k)
9550191262dSYatharth Kochar                        $(eval FWU_CRT_ARGS += -k)
956fd34e7baSJuan Castillo                endif
9576f971622SJuan Castillo        endif
95873c99d4eSJuan Castillo        # Include TBBR makefile (unless the platform indicates otherwise)
95973c99d4eSJuan Castillo        ifeq (${INCLUDE_TBBR_MK},1)
96073c99d4eSJuan Castillo                include make_helpers/tbbr/tbbr_tools.mk
96173c99d4eSJuan Castillo        endif
9626f971622SJuan Castilloendif
9636f971622SJuan Castillo
9641c75d5dfSMasahiro Yamadaifneq (${FIP_ALIGN},0)
9651c75d5dfSMasahiro YamadaFIP_ARGS += --align ${FIP_ALIGN}
9661c75d5dfSMasahiro Yamadaendif
9671c75d5dfSMasahiro Yamada
9685f24ce96SManish Pandeyifdef FDT_SOURCES
9695f24ce96SManish PandeyNEED_FDT := yes
9705f24ce96SManish Pandeyendif
9715f24ce96SManish Pandey
97273c99d4eSJuan Castillo################################################################################
97346e5e035SMichalis Pappas# Include libraries' Makefile that are used in all BL
97446e5e035SMichalis Pappas################################################################################
97546e5e035SMichalis Pappas
97646e5e035SMichalis Pappasinclude lib/stack_protector/stack_protector.mk
97746e5e035SMichalis Pappas
97846e5e035SMichalis Pappas################################################################################
979819281eeSdp-arm# Auxiliary tools (fiptool, cert_create, etc)
98073c99d4eSJuan Castillo################################################################################
98173c99d4eSJuan Castillo
98273c99d4eSJuan Castillo# Variables for use with Certificate Generation Tool
98373c99d4eSJuan CastilloCRTTOOLPATH		?=	tools/cert_create
98442a45b51SEvan LloydCRTTOOL			?=	${CRTTOOLPATH}/cert_create${BIN_EXT}
98573c99d4eSJuan Castillo
98690aa901fSSumit Garg# Variables for use with Firmware Encryption Tool
98790aa901fSSumit GargENCTOOLPATH		?=	tools/encrypt_fw
98890aa901fSSumit GargENCTOOL			?=	${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
98990aa901fSSumit Garg
99073c99d4eSJuan Castillo# Variables for use with Firmware Image Package
991819281eeSdp-armFIPTOOLPATH		?=	tools/fiptool
992819281eeSdp-armFIPTOOL			?=	${FIPTOOLPATH}/fiptool${BIN_EXT}
99373c99d4eSJuan Castillo
99426010da1SAntonio Nino Diaz# Variables for use with sptool
99526010da1SAntonio Nino DiazSPTOOLPATH		?=	tools/sptool
996822c7279SJ-AlvesSPTOOL			?=	${SPTOOLPATH}/sptool.py
997ce2b1ec6SManish PandeySP_MK_GEN		?=	${SPTOOLPATH}/sp_mk_generator.py
99826010da1SAntonio Nino Diaz
9995accce5bSRoberto Vargas# Variables for use with ROMLIB
10005accce5bSRoberto VargasROMLIBPATH		?=	lib/romlib
10015accce5bSRoberto Vargas
1002cfe83910SLouis Mayencourt# Variable for use with Python
1003cfe83910SLouis MayencourtPYTHON			?=	python3
1004cfe83910SLouis Mayencourt
1005cfe83910SLouis Mayencourt# Variables for use with PRINT_MEMORY_MAP
1006cfe83910SLouis MayencourtPRINT_MEMORY_MAP_PATH		?=	tools/memory
1007cfe83910SLouis MayencourtPRINT_MEMORY_MAP		?=	${PRINT_MEMORY_MAP_PATH}/print_memory_map.py
1008cfe83910SLouis Mayencourt
10096de32378SMadhukar Pappireddy# Variables for use with documentation build using Sphinx tool
10106de32378SMadhukar PappireddyDOCS_PATH		?=	docs
10116de32378SMadhukar Pappireddy
10121f1c0206SAbdul Halim, Muhammad Hadi Asyrafi# Defination of SIMICS flag
10131f1c0206SAbdul Halim, Muhammad Hadi AsyrafiSIMICS_BUILD	?=	0
10141f1c0206SAbdul Halim, Muhammad Hadi Asyrafi
10158a86052dSSoby Mathew################################################################################
10168a86052dSSoby Mathew# Include BL specific makefiles
10178a86052dSSoby Mathew################################################################################
10185f24ce96SManish Pandey
10195f24ce96SManish Pandeyifeq (${NEED_BL1},yes)
10208a86052dSSoby Mathewinclude bl1/bl1.mk
10218a86052dSSoby Mathewendif
10228a86052dSSoby Mathew
10235f24ce96SManish Pandeyifeq (${NEED_BL2},yes)
10248a86052dSSoby Mathewinclude bl2/bl2.mk
10258a86052dSSoby Mathewendif
10268a86052dSSoby Mathew
10275f24ce96SManish Pandeyifeq (${NEED_BL2U},yes)
10288a86052dSSoby Mathewinclude bl2u/bl2u.mk
10298a86052dSSoby Mathewendif
10308a86052dSSoby Mathew
10315744e874SSoby Mathewifeq (${NEED_BL31},yes)
10328a86052dSSoby Mathewinclude bl31/bl31.mk
10338a86052dSSoby Mathewendif
103403b397a8SNishanth Menon
103573c99d4eSJuan Castillo################################################################################
103673c99d4eSJuan Castillo# Build options checks
103773c99d4eSJuan Castillo################################################################################
103873c99d4eSJuan Castillo
1039327131c4SLeonardo Sandoval$(eval $(call assert_booleans,\
1040327131c4SLeonardo Sandoval    $(sort \
1041327131c4SLeonardo Sandoval        ALLOW_RO_XLAT_TABLES \
104246789a7cSBalint Dobszay        BL2_ENABLE_SP_LOAD \
1043327131c4SLeonardo Sandoval        COLD_BOOT_SINGLE_CPU \
1044327131c4SLeonardo Sandoval        CREATE_KEYS \
1045327131c4SLeonardo Sandoval        CTX_INCLUDE_AARCH32_REGS \
1046327131c4SLeonardo Sandoval        CTX_INCLUDE_FPREGS \
1047327131c4SLeonardo Sandoval        CTX_INCLUDE_EL2_REGS \
1048327131c4SLeonardo Sandoval        DEBUG \
10490063dd17SJavier Almansa Sobrino        DISABLE_MTPMU \
1050327131c4SLeonardo Sandoval        DYN_DISABLE_AUTH \
1051327131c4SLeonardo Sandoval        EL3_EXCEPTION_HANDLING \
1052327131c4SLeonardo Sandoval        ENABLE_AMU \
10531fd685a7SChris Kay        ENABLE_AMU_AUXILIARY_COUNTERS \
1054742ca230SChris Kay        ENABLE_AMU_FCONF \
1055873d4241Sjohpow01        AMU_RESTRICT_COUNTERS \
1056327131c4SLeonardo Sandoval        ENABLE_ASSERTIONS \
1057327131c4SLeonardo Sandoval        ENABLE_PIE \
1058327131c4SLeonardo Sandoval        ENABLE_PMF \
1059327131c4SLeonardo Sandoval        ENABLE_PSCI_STAT \
1060327131c4SLeonardo Sandoval        ENABLE_RUNTIME_INSTRUMENTATION \
1061dc78e62dSjohpow01        ENABLE_SME_FOR_NS \
1062dc78e62dSjohpow01        ENABLE_SME_FOR_SWD \
1063327131c4SLeonardo Sandoval        ENABLE_SPE_FOR_LOWER_ELS \
1064327131c4SLeonardo Sandoval        ENABLE_SVE_FOR_NS \
10650c5e7d1cSMax Shvetsov        ENABLE_SVE_FOR_SWD \
1066327131c4SLeonardo Sandoval        ERROR_DEPRECATED \
1067327131c4SLeonardo Sandoval        FAULT_INJECTION_SUPPORT \
1068327131c4SLeonardo Sandoval        GENERATE_COT \
1069327131c4SLeonardo Sandoval        GICV2_G0_FOR_EL3 \
107046cc41d5SManish Pandey        HANDLE_EA_EL3_FIRST_NS \
1071327131c4SLeonardo Sandoval        HW_ASSISTED_COHERENCY \
1072327131c4SLeonardo Sandoval        INVERTED_MEMMAP \
1073327131c4SLeonardo Sandoval        MEASURED_BOOT \
107400e28874SManish V Badarkhe        DRTM_SUPPORT \
1075327131c4SLeonardo Sandoval        NS_TIMER_SWITCH \
1076327131c4SLeonardo Sandoval        OVERRIDE_LIBC \
1077327131c4SLeonardo Sandoval        PL011_GENERIC_UART \
10780ce2072dSTamas Ban        PLAT_RSS_NOT_SUPPORTED \
1079327131c4SLeonardo Sandoval        PROGRAMMABLE_RESET_ADDRESS \
1080327131c4SLeonardo Sandoval        PSCI_EXTENDED_STATE_ID \
1081327131c4SLeonardo Sandoval        RESET_TO_BL31 \
108225844ff7SJorge Ramirez-Ortiz        RESET_TO_BL31_WITH_PARAMS \
1083327131c4SLeonardo Sandoval        SAVE_KEYS \
1084327131c4SLeonardo Sandoval        SEPARATE_CODE_AND_RODATA \
108596a8ed14SJiafei Pan        SEPARATE_BL2_NOLOAD_REGION \
1086327131c4SLeonardo Sandoval        SEPARATE_NOBITS_REGION \
1087327131c4SLeonardo Sandoval        SPIN_ON_BL1_EXIT \
1088327131c4SLeonardo Sandoval        SPM_MM \
10891d63ae4dSMarc Bonnici        SPMC_AT_EL3 \
1090327131c4SLeonardo Sandoval        SPMD_SPM_AT_SEL2 \
1091327131c4SLeonardo Sandoval        TRUSTED_BOARD_BOOT \
1092327131c4SLeonardo Sandoval        USE_COHERENT_MEM \
1093327131c4SLeonardo Sandoval        USE_DEBUGFS \
1094327131c4SLeonardo Sandoval        ARM_IO_IN_DTB \
1095327131c4SLeonardo Sandoval        SDEI_IN_FCONF \
1096327131c4SLeonardo Sandoval        SEC_INT_DESC_IN_FCONF \
1097327131c4SLeonardo Sandoval        USE_ROMLIB \
1098327131c4SLeonardo Sandoval        USE_TBBR_DEFS \
1099327131c4SLeonardo Sandoval        WARMBOOT_ENABLE_DCACHE_EARLY \
1100327131c4SLeonardo Sandoval        BL2_AT_EL3 \
1101327131c4SLeonardo Sandoval        BL2_IN_XIP_MEM \
1102327131c4SLeonardo Sandoval        BL2_INV_DCACHE \
1103327131c4SLeonardo Sandoval        USE_SPINLOCK_CAS \
1104327131c4SLeonardo Sandoval        ENCRYPT_BL31 \
1105327131c4SLeonardo Sandoval        ENCRYPT_BL32 \
1106327131c4SLeonardo Sandoval        ERRATA_SPECULATIVE_AT \
110700e8f79cSManish Pandey        RAS_TRAP_NS_ERR_REC_ACCESS \
1108327131c4SLeonardo Sandoval        COT_DESC_IN_DTB \
1109327131c4SLeonardo Sandoval        USE_SP804_TIMER \
1110396b339dSManish V Badarkhe        PSA_FWU_SUPPORT \
1111d4582d30SManish V Badarkhe        ENABLE_SYS_REG_TRACE_FOR_NS \
111268120783SChris Kay        ENABLE_MPMM \
111368120783SChris Kay        ENABLE_MPMM_FCONF \
11141f1c0206SAbdul Halim, Muhammad Hadi Asyrafi        SIMICS_BUILD \
11156a0da736SJayanth Dodderi Chidanand        FEATURE_DETECTION \
11160b22e591SJayanth Dodderi Chidanand	TRNG_SUPPORT \
111704c7303bSOkash Khawaja	CONDITIONAL_CMO \
1118327131c4SLeonardo Sandoval)))
111973c99d4eSJuan Castillo
1120327131c4SLeonardo Sandoval$(eval $(call assert_numerics,\
1121327131c4SLeonardo Sandoval    $(sort \
1122327131c4SLeonardo Sandoval        ARM_ARCH_MAJOR \
1123327131c4SLeonardo Sandoval        ARM_ARCH_MINOR \
1124327131c4SLeonardo Sandoval        BRANCH_PROTECTION \
11256a0da736SJayanth Dodderi Chidanand        CTX_INCLUDE_PAUTH_REGS \
11266a0da736SJayanth Dodderi Chidanand        CTX_INCLUDE_MTE_REGS \
11276a0da736SJayanth Dodderi Chidanand        CTX_INCLUDE_NEVE_REGS \
11282bf4f27fSManish V Badarkhe        CRYPTO_SUPPORT \
11291298f2f1SJayanth Dodderi Chidanand        ENABLE_BRBE_FOR_NS \
113047c681b7SJayanth Dodderi Chidanand        ENABLE_TRBE_FOR_NS \
11316a0da736SJayanth Dodderi Chidanand        ENABLE_BTI \
11326a0da736SJayanth Dodderi Chidanand        ENABLE_PAUTH \
11336a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_AMUv1 \
11346a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_AMUv1p1 \
11356a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_CSV2_2 \
11366a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_DIT \
11376a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_ECV \
11386a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_FGT \
11396a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_HCX \
11406a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_PAN \
11416a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_RNG \
1142ff86e0b4SJuan Pablo Conde        ENABLE_FEAT_RNG_TRAP \
11436a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_SB \
11446a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_SEL2 \
11456a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_VHE \
11466a0da736SJayanth Dodderi Chidanand        ENABLE_MPAM_FOR_LOWER_ELS \
11476a0da736SJayanth Dodderi Chidanand        ENABLE_RME \
11486a0da736SJayanth Dodderi Chidanand        ENABLE_TRF_FOR_NS \
1149327131c4SLeonardo Sandoval        FW_ENC_STATUS \
11505357f83dSManish V Badarkhe        NR_OF_FW_BANKS \
11515357f83dSManish V Badarkhe        NR_OF_IMAGES_IN_FW_BANK \
11526a0da736SJayanth Dodderi Chidanand        RAS_EXTENSION \
1153781d07a4SJayanth Dodderi Chidanand        TWED_DELAY \
1154781d07a4SJayanth Dodderi Chidanand        ENABLE_FEAT_TWED \
1155bebcf27fSMark Brown        SVE_VECTOR_LEN \
1156327131c4SLeonardo Sandoval)))
1157c877b414SJeenu Viswambharan
1158aacff749SJustin Chadwellifdef KEY_SIZE
1159aacff749SJustin Chadwell        $(eval $(call assert_numeric,KEY_SIZE))
1160aacff749SJustin Chadwellendif
1161aacff749SJustin Chadwell
11621f461979SJustin Chadwellifeq ($(filter $(SANITIZE_UB), on off trap),)
11631f461979SJustin Chadwell        $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
11641f461979SJustin Chadwellendif
11651f461979SJustin Chadwell
116673c99d4eSJuan Castillo################################################################################
116773c99d4eSJuan Castillo# Add definitions to the cpp preprocessor based on the current build options.
116873c99d4eSJuan Castillo# This is done after including the platform specific makefile to allow the
116973c99d4eSJuan Castillo# platform to overwrite the default options
117073c99d4eSJuan Castillo################################################################################
117173c99d4eSJuan Castillo
1172327131c4SLeonardo Sandoval$(eval $(call add_defines,\
1173327131c4SLeonardo Sandoval    $(sort \
1174327131c4SLeonardo Sandoval        ALLOW_RO_XLAT_TABLES \
1175327131c4SLeonardo Sandoval        ARM_ARCH_MAJOR \
1176327131c4SLeonardo Sandoval        ARM_ARCH_MINOR \
117746789a7cSBalint Dobszay        BL2_ENABLE_SP_LOAD \
1178327131c4SLeonardo Sandoval        COLD_BOOT_SINGLE_CPU \
1179327131c4SLeonardo Sandoval        CTX_INCLUDE_AARCH32_REGS \
1180327131c4SLeonardo Sandoval        CTX_INCLUDE_FPREGS \
1181327131c4SLeonardo Sandoval        CTX_INCLUDE_PAUTH_REGS \
1182327131c4SLeonardo Sandoval        EL3_EXCEPTION_HANDLING \
1183327131c4SLeonardo Sandoval        CTX_INCLUDE_MTE_REGS \
1184327131c4SLeonardo Sandoval        CTX_INCLUDE_EL2_REGS \
1185062f8aafSArunachalam Ganapathy        CTX_INCLUDE_NEVE_REGS \
1186327131c4SLeonardo Sandoval        DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
11870063dd17SJavier Almansa Sobrino        DISABLE_MTPMU \
1188327131c4SLeonardo Sandoval        ENABLE_AMU \
11891fd685a7SChris Kay        ENABLE_AMU_AUXILIARY_COUNTERS \
1190742ca230SChris Kay        ENABLE_AMU_FCONF \
1191873d4241Sjohpow01        AMU_RESTRICT_COUNTERS \
1192327131c4SLeonardo Sandoval        ENABLE_ASSERTIONS \
1193327131c4SLeonardo Sandoval        ENABLE_BTI \
1194327131c4SLeonardo Sandoval        ENABLE_MPAM_FOR_LOWER_ELS \
1195327131c4SLeonardo Sandoval        ENABLE_PAUTH \
1196327131c4SLeonardo Sandoval        ENABLE_PIE \
1197327131c4SLeonardo Sandoval        ENABLE_PMF \
1198327131c4SLeonardo Sandoval        ENABLE_PSCI_STAT \
11995b18de09SZelalem Aweke        ENABLE_RME \
1200327131c4SLeonardo Sandoval        ENABLE_RUNTIME_INSTRUMENTATION \
1201dc78e62dSjohpow01        ENABLE_SME_FOR_NS \
1202dc78e62dSjohpow01        ENABLE_SME_FOR_SWD \
1203327131c4SLeonardo Sandoval        ENABLE_SPE_FOR_LOWER_ELS \
1204327131c4SLeonardo Sandoval        ENABLE_SVE_FOR_NS \
12050c5e7d1cSMax Shvetsov        ENABLE_SVE_FOR_SWD \
1206327131c4SLeonardo Sandoval        ENCRYPT_BL31 \
1207327131c4SLeonardo Sandoval        ENCRYPT_BL32 \
1208327131c4SLeonardo Sandoval        ERROR_DEPRECATED \
1209327131c4SLeonardo Sandoval        FAULT_INJECTION_SUPPORT \
1210327131c4SLeonardo Sandoval        GICV2_G0_FOR_EL3 \
121146cc41d5SManish Pandey        HANDLE_EA_EL3_FIRST_NS \
1212327131c4SLeonardo Sandoval        HW_ASSISTED_COHERENCY \
1213327131c4SLeonardo Sandoval        LOG_LEVEL \
1214327131c4SLeonardo Sandoval        MEASURED_BOOT \
121500e28874SManish V Badarkhe        DRTM_SUPPORT \
1216327131c4SLeonardo Sandoval        NS_TIMER_SWITCH \
1217327131c4SLeonardo Sandoval        PL011_GENERIC_UART \
1218327131c4SLeonardo Sandoval        PLAT_${PLAT} \
12190ce2072dSTamas Ban        PLAT_RSS_NOT_SUPPORTED \
1220327131c4SLeonardo Sandoval        PROGRAMMABLE_RESET_ADDRESS \
1221327131c4SLeonardo Sandoval        PSCI_EXTENDED_STATE_ID \
1222327131c4SLeonardo Sandoval        RAS_EXTENSION \
1223327131c4SLeonardo Sandoval        RESET_TO_BL31 \
122425844ff7SJorge Ramirez-Ortiz        RESET_TO_BL31_WITH_PARAMS \
1225327131c4SLeonardo Sandoval        SEPARATE_CODE_AND_RODATA \
122696a8ed14SJiafei Pan        SEPARATE_BL2_NOLOAD_REGION \
1227327131c4SLeonardo Sandoval        SEPARATE_NOBITS_REGION \
1228327131c4SLeonardo Sandoval        RECLAIM_INIT_CODE \
1229327131c4SLeonardo Sandoval        SPD_${SPD} \
1230327131c4SLeonardo Sandoval        SPIN_ON_BL1_EXIT \
1231327131c4SLeonardo Sandoval        SPM_MM \
12321d63ae4dSMarc Bonnici        SPMC_AT_EL3 \
1233327131c4SLeonardo Sandoval        SPMD_SPM_AT_SEL2 \
1234327131c4SLeonardo Sandoval        TRUSTED_BOARD_BOOT \
1235c9c56f6eSManish V Badarkhe        CRYPTO_SUPPORT \
12367dfb9911SJimmy Brisson        TRNG_SUPPORT \
1237327131c4SLeonardo Sandoval        USE_COHERENT_MEM \
1238327131c4SLeonardo Sandoval        USE_DEBUGFS \
1239327131c4SLeonardo Sandoval        ARM_IO_IN_DTB \
1240327131c4SLeonardo Sandoval        SDEI_IN_FCONF \
1241327131c4SLeonardo Sandoval        SEC_INT_DESC_IN_FCONF \
1242327131c4SLeonardo Sandoval        USE_ROMLIB \
1243327131c4SLeonardo Sandoval        USE_TBBR_DEFS \
1244327131c4SLeonardo Sandoval        WARMBOOT_ENABLE_DCACHE_EARLY \
1245327131c4SLeonardo Sandoval        BL2_AT_EL3 \
1246327131c4SLeonardo Sandoval        BL2_IN_XIP_MEM \
1247327131c4SLeonardo Sandoval        BL2_INV_DCACHE \
1248327131c4SLeonardo Sandoval        USE_SPINLOCK_CAS \
1249327131c4SLeonardo Sandoval        ERRATA_SPECULATIVE_AT \
125000e8f79cSManish Pandey        RAS_TRAP_NS_ERR_REC_ACCESS \
1251327131c4SLeonardo Sandoval        COT_DESC_IN_DTB \
1252327131c4SLeonardo Sandoval        USE_SP804_TIMER \
125312cd65e0STomas Pilar        ENABLE_FEAT_RNG \
1254ff86e0b4SJuan Pablo Conde        ENABLE_FEAT_RNG_TRAP \
12554e04478aSChris Kay        ENABLE_FEAT_SB \
12567d33ffe4SDaniel Boulby        ENABLE_FEAT_DIT \
12575357f83dSManish V Badarkhe        NR_OF_FW_BANKS \
12585357f83dSManish V Badarkhe        NR_OF_IMAGES_IN_FW_BANK \
1259396b339dSManish V Badarkhe        PSA_FWU_SUPPORT \
1260744ad974Sjohpow01        ENABLE_BRBE_FOR_NS \
1261813524eaSManish V Badarkhe        ENABLE_TRBE_FOR_NS \
1262d4582d30SManish V Badarkhe        ENABLE_SYS_REG_TRACE_FOR_NS \
12638fcd3d96SManish V Badarkhe        ENABLE_TRF_FOR_NS \
1264cb4ec47bSjohpow01        ENABLE_FEAT_HCX \
126568120783SChris Kay        ENABLE_MPMM \
126668120783SChris Kay        ENABLE_MPMM_FCONF \
1267f74cb0beSJayanth Dodderi Chidanand        ENABLE_FEAT_FGT \
1268f74cb0beSJayanth Dodderi Chidanand        ENABLE_FEAT_AMUv1 \
1269f74cb0beSJayanth Dodderi Chidanand        ENABLE_FEAT_ECV \
12701f1c0206SAbdul Halim, Muhammad Hadi Asyrafi        SIMICS_BUILD \
12716a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_AMUv1p1 \
12726a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_SEL2 \
12736a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_VHE \
12746a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_CSV2_2 \
12756a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_PAN \
12766a0da736SJayanth Dodderi Chidanand        FEATURE_DETECTION \
1277781d07a4SJayanth Dodderi Chidanand        TWED_DELAY \
1278781d07a4SJayanth Dodderi Chidanand        ENABLE_FEAT_TWED \
127904c7303bSOkash Khawaja	CONDITIONAL_CMO \
1280327131c4SLeonardo Sandoval)))
12812fae4b1eSJeenu Viswambharan
12821f461979SJustin Chadwellifeq (${SANITIZE_UB},trap)
12831f461979SJustin Chadwell        $(eval $(call add_define,MONITOR_TRAPS))
12841f461979SJustin Chadwellendif
12851f461979SJustin Chadwell
12864c117f6cSSandrine Bailleux# Define the EL3_PAYLOAD_BASE flag only if it is provided.
12874c117f6cSSandrine Bailleuxifdef EL3_PAYLOAD_BASE
12884c117f6cSSandrine Bailleux        $(eval $(call add_define,EL3_PAYLOAD_BASE))
1289cf2c8a33SAntonio Nino Diazelse
129068450a6dSAntonio Nino Diaz        # Define the PRELOADED_BL33_BASE flag only if it is provided and
129168450a6dSAntonio Nino Diaz        # EL3_PAYLOAD_BASE is not defined, as it has priority.
129268450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
129368450a6dSAntonio Nino Diaz                $(eval $(call add_define,PRELOADED_BL33_BASE))
12944c117f6cSSandrine Bailleux        endif
1295cf2c8a33SAntonio Nino Diazendif
129673c99d4eSJuan Castillo
1297209a60ccSSoby Mathew# Define the DYN_DISABLE_AUTH flag only if set.
1298209a60ccSSoby Mathewifeq (${DYN_DISABLE_AUTH},1)
1299209a60ccSSoby Mathew$(eval $(call add_define,DYN_DISABLE_AUTH))
1300209a60ccSSoby Mathewendif
1301209a60ccSSoby Mathew
1302c2ad38ceSVarun Wadekarifneq ($(findstring armlink,$(notdir $(LD))),)
1303c2ad38ceSVarun Wadekar$(eval $(call add_define,USE_ARM_LINK))
1304c2ad38ceSVarun Wadekarendif
1305c2ad38ceSVarun Wadekar
1306ce2b1ec6SManish Pandey# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
1307ce2b1ec6SManish Pandeyifeq (${SPD},spmd)
1308c33ff198SOlivier Deprezifdef SP_LAYOUT_FILE
1309ce2b1ec6SManish Pandey        -include $(BUILD_PLAT)/sp_gen.mk
1310ce2b1ec6SManish Pandey        FIP_DEPS += sp
131107c44475SManish Pandey        CRT_DEPS += sp
1312ce2b1ec6SManish Pandey        NEED_SP_PKG := yes
1313ce2b1ec6SManish Pandeyelse
1314c33ff198SOlivier Deprez        ifeq (${SPMD_SPM_AT_SEL2},1)
1315c33ff198SOlivier Deprez            $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1316c33ff198SOlivier Deprez        endif
1317ce2b1ec6SManish Pandeyendif
1318ce2b1ec6SManish Pandeyendif
1319ce2b1ec6SManish Pandey
132073c99d4eSJuan Castillo################################################################################
132173c99d4eSJuan Castillo# Build targets
132273c99d4eSJuan Castillo################################################################################
132373c99d4eSJuan Castillo
132490aa901fSSumit Garg.PHONY:	all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp fwu_fip certtool dtbs memmap doc enctool
132573c99d4eSJuan Castillo.SUFFIXES:
132673c99d4eSJuan Castillo
132773c99d4eSJuan Castilloall: msg_start
132873c99d4eSJuan Castillo
132973c99d4eSJuan Castillomsg_start:
133073c99d4eSJuan Castillo	@echo "Building ${PLAT}"
133173c99d4eSJuan Castillo
13327a24cba5SSoby Mathewifeq (${ERROR_DEPRECATED},0)
1333d5dfdeb6SJulius Werner# Check if deprecated declarations and cpp warnings should be treated as error or not.
1334c2ad38ceSVarun Wadekarifneq ($(findstring clang,$(notdir $(CC))),)
1335c2ad38ceSVarun Wadekar    CPPFLAGS		+= 	-Wno-error=deprecated-declarations
1336c2ad38ceSVarun Wadekarelse
1337bc1a03c7SDan Handley    CPPFLAGS		+= 	-Wno-error=deprecated-declarations -Wno-error=cpp
13387a24cba5SSoby Mathewendif
1339d5dfdeb6SJulius Wernerendif # !ERROR_DEPRECATED
13407a24cba5SSoby Mathew
13415accce5bSRoberto Vargas$(eval $(call MAKE_LIB_DIRS))
134261f72a34SRoberto Vargas$(eval $(call MAKE_LIB,c))
13435fee0287SRoberto Vargas
134473c99d4eSJuan Castillo# Expand build macros for the different images
134573c99d4eSJuan Castilloifeq (${NEED_BL1},yes)
1346b34635a0SChris KayBL1_SOURCES := $(sort ${BL1_SOURCES})
1347b34635a0SChris Kay
1348434d0491SZelalem Aweke$(eval $(call MAKE_BL,bl1))
134973c99d4eSJuan Castilloendif
135073c99d4eSJuan Castillo
135173c99d4eSJuan Castilloifeq (${NEED_BL2},yes)
1352c9b31ae8SRoberto Vargasifeq (${BL2_AT_EL3}, 0)
1353c9b31ae8SRoberto VargasFIP_BL2_ARGS := tb-fw
1354c9b31ae8SRoberto Vargasendif
1355c9b31ae8SRoberto Vargas
1356eb1acfb6SChris KayBL2_SOURCES := $(sort ${BL2_SOURCES})
1357eb1acfb6SChris Kay
135833950dd8SMasahiro Yamada$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
1359434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
136073c99d4eSJuan Castilloendif
136173c99d4eSJuan Castillo
13624d045d0eSMasahiro Yamadaifeq (${NEED_SCP_BL2},yes)
136333950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
13644d045d0eSMasahiro Yamadaendif
13654d045d0eSMasahiro Yamada
136673c99d4eSJuan Castilloifeq (${NEED_BL31},yes)
136773c99d4eSJuan CastilloBL31_SOURCES += ${SPD_SOURCES}
136826d1e0c3SMadhukar Pappireddy# Sort BL31 source files to remove duplicates
136926d1e0c3SMadhukar PappireddyBL31_SOURCES := $(sort ${BL31_SOURCES})
1370c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1371c6ba9b45SSumit Garg$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
1372434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
1373c6ba9b45SSumit Gargelse
137433950dd8SMasahiro Yamada$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
1375434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl31,soc-fw)))
137673c99d4eSJuan Castilloendif
1377c6ba9b45SSumit Gargendif
137873c99d4eSJuan Castillo
137970d1fc53SJuan Castillo# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
1380c939d13aSMasahiro Yamada# build system will call TOOL_ADD_IMG to print a warning message and abort the
138170d1fc53SJuan Castillo# process. Note that the dependency on BL32 applies to the FIP only.
138273c99d4eSJuan Castilloifeq (${NEED_BL32},yes)
138326d1e0c3SMadhukar Pappireddy# Sort BL32 source files to remove duplicates
138426d1e0c3SMadhukar PappireddyBL32_SOURCES := $(sort ${BL32_SOURCES})
13859cd15239SMasahiro YamadaBUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
13869cd15239SMasahiro Yamada
1387c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1388434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
1389c6ba9b45SSumit Garg	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1390c6ba9b45SSumit Gargelse
1391434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
139233950dd8SMasahiro Yamada	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
139373c99d4eSJuan Castilloendif
1394c6ba9b45SSumit Gargendif
139573c99d4eSJuan Castillo
13965b18de09SZelalem Aweke# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
13975b18de09SZelalem Aweke# needs to be built from RMM_SOURCES.
13985b18de09SZelalem Awekeifeq (${NEED_RMM},yes)
13995b18de09SZelalem Aweke# Sort RMM source files to remove duplicates
14005b18de09SZelalem AwekeRMM_SOURCES := $(sort ${RMM_SOURCES})
14015b18de09SZelalem AwekeBUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
14025b18de09SZelalem Aweke
14035b18de09SZelalem Aweke$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
14045b18de09SZelalem Aweke         $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
14055b18de09SZelalem Awekeendif
14065b18de09SZelalem Aweke
140773c99d4eSJuan Castillo# Add the BL33 image if required by the platform
140873c99d4eSJuan Castilloifeq (${NEED_BL33},yes)
140933950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
1410db6071c9SJuan Castilloendif
1411db6071c9SJuan Castillo
14129003fa0bSYatharth Kocharifeq (${NEED_BL2U},yes)
141333950dd8SMasahiro Yamada$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
1414434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
14159003fa0bSYatharth Kocharendif
14169003fa0bSYatharth Kochar
141703b397a8SNishanth Menon# Expand build macros for the different images
141803b397a8SNishanth Menonifeq (${NEED_FDT},yes)
141903b397a8SNishanth Menon    $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
142003b397a8SNishanth Menonendif
142103b397a8SNishanth Menon
1422ce2b1ec6SManish Pandey# Add Secure Partition packages
1423ce2b1ec6SManish Pandeyifeq (${NEED_SP_PKG},yes)
1424ce2b1ec6SManish Pandey$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
14251e7528ecSRuari Phipps	${Q}${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT}
1426822c7279SJ-Alvessp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
1427ce2b1ec6SManish Pandey	@${ECHO_BLANK_LINE}
1428ce2b1ec6SManish Pandey	@echo "Built SP Images successfully"
1429ce2b1ec6SManish Pandey	@${ECHO_BLANK_LINE}
1430ce2b1ec6SManish Pandeyendif
1431ce2b1ec6SManish Pandey
143236eaaf37SIan Spraylocate-checkpatch:
143336eaaf37SIan Sprayifndef CHECKPATCH
143466079b04SEtienne Carriere	$(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
143536eaaf37SIan Sprayelse
143636eaaf37SIan Sprayifeq (,$(wildcard ${CHECKPATCH}))
143766079b04SEtienne Carriere	$(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
143836eaaf37SIan Sprayendif
143936eaaf37SIan Sprayendif
144036eaaf37SIan Spray
14414f6ad66aSAchin Guptaclean:
14424f6ad66aSAchin Gupta	@echo "  CLEAN"
1443f1477d4aSEvan Lloyd	$(call SHELL_REMOVE_DIR,${BUILD_PLAT})
144488a1cf1eSSami Mujawarifdef UNIX_MK
14452f2cef46SJeenu Viswambharan	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
144688a1cf1eSSami Mujawarelse
144788a1cf1eSSami Mujawar# Clear the MAKEFLAGS as we do not want
144888a1cf1eSSami Mujawar# to pass the gnumake flags to nmake.
144988a1cf1eSSami Mujawar	${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean
145088a1cf1eSSami Mujawarendif
14516f971622SJuan Castillo	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
145290aa901fSSumit Garg	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
14535accce5bSRoberto Vargas	${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
14544f6ad66aSAchin Gupta
1455eaaeece2SJames Morrisseyrealclean distclean:
1456eaaeece2SJames Morrissey	@echo "  REALCLEAN"
1457f1477d4aSEvan Lloyd	$(call SHELL_REMOVE_DIR,${BUILD_BASE})
1458f1477d4aSEvan Lloyd	$(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
145988a1cf1eSSami Mujawarifdef UNIX_MK
14602f2cef46SJeenu Viswambharan	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
146188a1cf1eSSami Mujawarelse
146288a1cf1eSSami Mujawar# Clear the MAKEFLAGS as we do not want
146388a1cf1eSSami Mujawar# to pass the gnumake flags to nmake.
146488a1cf1eSSami Mujawar	${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean
146588a1cf1eSSami Mujawarendif
1466e15591aaSNicolas Boulenguez	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
146790aa901fSSumit Garg	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
14685accce5bSRoberto Vargas	${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
14694f6ad66aSAchin Gupta
147036eaaf37SIan Spraycheckcodebase:		locate-checkpatch
147136eaaf37SIan Spray	@echo "  CHECKING STYLE"
147236eaaf37SIan Spray	@if test -d .git ; then						\
14731ef35512SPaul Beesley		git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' |	\
14741a41e8c1SDan Handley		while read GIT_FILE ;					\
14751a41e8c1SDan Handley		do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ;	\
14761a41e8c1SDan Handley		done ;							\
147736eaaf37SIan Spray	else								\
14781a41e8c1SDan Handley		 find . -type f -not -iwholename "*.git*"		\
14791a41e8c1SDan Handley		 -not -iwholename "*build*"				\
14801a41e8c1SDan Handley		 -not -iwholename "*libfdt*"				\
148161f72a34SRoberto Vargas		 -not -iwholename "*libc*"				\
14821a41e8c1SDan Handley		 -not -iwholename "*docs*"				\
14831ef35512SPaul Beesley		 -not -iwholename "*.rst"				\
14841a41e8c1SDan Handley		 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ;	\
148536eaaf37SIan Spray	fi
148636eaaf37SIan Spray
148736eaaf37SIan Spraycheckpatch:		locate-checkpatch
148836eaaf37SIan Spray	@echo "  CHECKING STYLE"
148902a76d5fSYann Gautier	@if test -n "${CHECKPATCH_OPTS}"; then				\
149002a76d5fSYann Gautier		echo "    with ${CHECKPATCH_OPTS} option(s)";		\
149102a76d5fSYann Gautier	fi
149251d28937SAntonio Nino Diaz	${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT});	\
149377a0a7f1SYann Gautier	for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`;	\
149477a0a7f1SYann Gautier	do								\
149551d28937SAntonio Nino Diaz		printf "\n[*] Checking style of '$$commit'\n\n";	\
149651d28937SAntonio Nino Diaz		git log --format=email "$$commit~..$$commit"		\
149702a76d5fSYann Gautier			-- ${CHECK_PATHS} |				\
149802a76d5fSYann Gautier			${CHECKPATCH} ${CHECKPATCH_OPTS} - || true;	\
149951d28937SAntonio Nino Diaz		git diff --format=email "$$commit~..$$commit"		\
150002a76d5fSYann Gautier			-- ${CHECK_PATHS} |				\
150102a76d5fSYann Gautier			${CHECKPATCH}  ${CHECKPATCH_OPTS} - || true;	\
150251d28937SAntonio Nino Diaz	done
150336eaaf37SIan Spray
150473c99d4eSJuan Castillocerttool: ${CRTTOOL}
150573c99d4eSJuan Castillo
1506a9812206SPali Rohár${CRTTOOL}: FORCE
1507598b166bSLionel Debieve	${Q}${MAKE} PLAT=${PLAT} USE_TBBR_DEFS=${USE_TBBR_DEFS} COT=${COT} OPENSSL_DIR=${OPENSSL_DIR} CRTTOOL=${CRTTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${CRTTOOLPATH} all
1508f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
15096f971622SJuan Castillo	@echo "Built $@ successfully"
1510f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
15116f971622SJuan Castillo
15126f971622SJuan Castilloifneq (${GENERATE_COT},0)
151373c99d4eSJuan Castillocertificates: ${CRT_DEPS} ${CRTTOOL}
15146f971622SJuan Castillo	${Q}${CRTTOOL} ${CRT_ARGS}
1515f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
15166f971622SJuan Castillo	@echo "Built $@ successfully"
15176f971622SJuan Castillo	@echo "Certificates can be found in ${BUILD_PLAT}"
1518f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
151973c99d4eSJuan Castilloendif
152027713fb4SSoby Mathew
152173c99d4eSJuan Castillo${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
15224727fd13SPali Rohár	$(eval ${CHECK_FIP_CMD})
1523819281eeSdp-arm	${Q}${FIPTOOL} create ${FIP_ARGS} $@
1524819281eeSdp-arm	${Q}${FIPTOOL} info $@
1525f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
15262f2cef46SJeenu Viswambharan	@echo "Built $@ successfully"
1527f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
1528f58ad36fSHarry Liebel
15290191262dSYatharth Kocharifneq (${GENERATE_COT},0)
15300191262dSYatharth Kocharfwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
15310191262dSYatharth Kochar	${Q}${CRTTOOL} ${FWU_CRT_ARGS}
1532052ab529SEvan Lloyd	@${ECHO_BLANK_LINE}
15330191262dSYatharth Kochar	@echo "Built $@ successfully"
15340191262dSYatharth Kochar	@echo "FWU certificates can be found in ${BUILD_PLAT}"
1535052ab529SEvan Lloyd	@${ECHO_BLANK_LINE}
15360191262dSYatharth Kocharendif
15370191262dSYatharth Kochar
15380191262dSYatharth Kochar${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
15394727fd13SPali Rohár	$(eval ${CHECK_FWU_FIP_CMD})
1540819281eeSdp-arm	${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1541819281eeSdp-arm	${Q}${FIPTOOL} info $@
1542052ab529SEvan Lloyd	@${ECHO_BLANK_LINE}
15430191262dSYatharth Kochar	@echo "Built $@ successfully"
1544052ab529SEvan Lloyd	@${ECHO_BLANK_LINE}
15450191262dSYatharth Kochar
154673c99d4eSJuan Castillofiptool: ${FIPTOOL}
154773c99d4eSJuan Castillofip: ${BUILD_PLAT}/${FIP_NAME}
15480191262dSYatharth Kocharfwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
154973c99d4eSJuan Castillo
1550a9812206SPali Rohár${FIPTOOL}: FORCE
155188a1cf1eSSami Mujawarifdef UNIX_MK
1552598b166bSLionel Debieve	${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${FIPTOOLPATH} all
155388a1cf1eSSami Mujawarelse
155488a1cf1eSSami Mujawar# Clear the MAKEFLAGS as we do not want
155588a1cf1eSSami Mujawar# to pass the gnumake flags to nmake.
155688a1cf1eSSami Mujawar	${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
155788a1cf1eSSami Mujawarendif
1558f58ad36fSHarry Liebel
1559a9812206SPali Rohárromlib.bin: libraries FORCE
1560bbb24f61SJohn 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
15615accce5bSRoberto Vargas
1562cfe83910SLouis Mayencourt# Call print_memory_map tool
1563cfe83910SLouis Mayencourtmemmap: all
1564b890b36dSLouis Mayencourt	${Q}${PYTHON} ${PRINT_MEMORY_MAP} ${BUILD_PLAT} ${INVERTED_MEMMAP}
1565cfe83910SLouis Mayencourt
15666de32378SMadhukar Pappireddydoc:
15676de32378SMadhukar Pappireddy	@echo "  BUILD DOCUMENTATION"
15686de32378SMadhukar Pappireddy	${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
15696de32378SMadhukar Pappireddy
157090aa901fSSumit Gargenctool: ${ENCTOOL}
157190aa901fSSumit Garg
1572a9812206SPali Rohár${ENCTOOL}: FORCE
1573598b166bSLionel Debieve	${Q}${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${ENCTOOLPATH} all
157490aa901fSSumit Garg	@${ECHO_BLANK_LINE}
157590aa901fSSumit Garg	@echo "Built $@ successfully"
157690aa901fSSumit Garg	@${ECHO_BLANK_LINE}
157790aa901fSSumit Garg
157835fab8c9SJoakim Bechcscope:
157935fab8c9SJoakim Bech	@echo "  CSCOPE"
158035fab8c9SJoakim Bech	${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
158135fab8c9SJoakim Bech	${Q}cscope -b -q -k
158235fab8c9SJoakim Bech
158372ee3314SRyan Harkinhelp:
15847c23126cSJohn Tsichritzis	@echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
158572ee3314SRyan Harkin	@echo ""
158672ee3314SRyan Harkin	@echo "PLAT is used to specify which platform you wish to build."
158708c7ed0fSSandrine Bailleux	@echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
158872ee3314SRyan Harkin	@echo ""
15897c23126cSJohn Tsichritzis	@echo "platform = ${PLATFORM_LIST}"
15907c23126cSJohn Tsichritzis	@echo ""
15911b578596SSandrine Bailleux	@echo "Please refer to the User Guide for a list of all supported options."
15921b578596SSandrine Bailleux	@echo "Note that the build system doesn't track dependencies for build "
15931b578596SSandrine Bailleux	@echo "options. Therefore, if any of the build options are changed "
15941b578596SSandrine Bailleux	@echo "from a previous build, a clean build must be performed."
15951b578596SSandrine Bailleux	@echo ""
159672ee3314SRyan Harkin	@echo "Supported Targets:"
15971b578596SSandrine Bailleux	@echo "  all            Build all individual bootloader binaries"
159836eaaf37SIan Spray	@echo "  bl1            Build the BL1 binary"
15998aa559c0SJeenu Viswambharan	@echo "  bl2            Build the BL2 binary"
16009003fa0bSYatharth Kochar	@echo "  bl2u           Build the BL2U binary"
1601d178637dSJuan Castillo	@echo "  bl31           Build the BL31 binary"
16029d29c227SSoby Mathew	@echo "  bl32           Build the BL32 binary. If ARCH=aarch32, then "
16039d29c227SSoby Mathew	@echo "                 this builds secure payload specified by AARCH32_SP"
160473c99d4eSJuan Castillo	@echo "  certificates   Build the certificates (requires 'GENERATE_COT=1')"
16051b578596SSandrine Bailleux	@echo "  fip            Build the Firmware Image Package (FIP)"
16060191262dSYatharth Kochar	@echo "  fwu_fip        Build the FWU Firmware Image Package (FIP)"
160736eaaf37SIan Spray	@echo "  checkcodebase  Check the coding style of the entire source tree"
160836eaaf37SIan Spray	@echo "  checkpatch     Check the coding style on changes in the current"
160936eaaf37SIan Spray	@echo "                 branch against BASE_COMMIT (default origin/master)"
161072ee3314SRyan Harkin	@echo "  clean          Clean the build for the selected platform"
161135fab8c9SJoakim Bech	@echo "  cscope         Generate cscope index"
161272ee3314SRyan Harkin	@echo "  distclean      Remove all build artifacts for all platforms"
16136f971622SJuan Castillo	@echo "  certtool       Build the Certificate generation tool"
161490aa901fSSumit Garg	@echo "  enctool        Build the Firmware encryption tool"
1615f58ad36fSHarry Liebel	@echo "  fiptool        Build the Firmware Image Package (FIP) creation tool"
1616ce2b1ec6SManish Pandey	@echo "  sp             Build the Secure Partition Packages"
161726010da1SAntonio Nino Diaz	@echo "  sptool         Build the Secure Partition Package creation tool"
161838c14d88SSoby Mathew	@echo "  dtbs           Build the Device Tree Blobs (if required for the platform)"
1619cfe83910SLouis Mayencourt	@echo "  memmap         Print the memory map of the built binaries"
16206de32378SMadhukar Pappireddy	@echo "  doc            Build html based documentation using Sphinx tool"
162172ee3314SRyan Harkin	@echo ""
16221b578596SSandrine Bailleux	@echo "Note: most build targets require PLAT to be set to a specific platform."
162372ee3314SRyan Harkin	@echo ""
162472ee3314SRyan Harkin	@echo "example: build all targets for the FVP platform:"
162572ee3314SRyan Harkin	@echo "  CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
1626a9812206SPali Rohár
1627a9812206SPali Rohár.PHONY: FORCE
1628a9812206SPali RohárFORCE:;
1629