xref: /rk3399_ARM-atf/Makefile (revision 1f49db5f25cdd4e43825c9bcc0575070b80f628c)
14f6ad66aSAchin Gupta#
201cf14ddSMaksims Svecovs# Copyright (c) 2013-2023, 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
15601cf14ddSMaksims Svecovs# RME enables CSV2_2 extension by default.
15701cf14ddSMaksims SvecovsENABLE_FEAT_CSV2_2 = 1
15801cf14ddSMaksims Svecovs
1595b18de09SZelalem Awekeendif
1605b18de09SZelalem Aweke
161c97cba4eSSoby Mathew# USE_SPINLOCK_CAS requires AArch64 build
162c97cba4eSSoby Mathewifeq (${USE_SPINLOCK_CAS},1)
163c97cba4eSSoby Mathewifneq (${ARCH},aarch64)
164c97cba4eSSoby Mathew        $(error USE_SPINLOCK_CAS requires AArch64)
165c97cba4eSSoby Mathewendif
166c97cba4eSSoby Mathewendif
167c97cba4eSSoby Mathew
1680ca3913dSOlivier Deprez# USE_DEBUGFS experimental feature recommended only in debug builds
1690ca3913dSOlivier Deprezifeq (${USE_DEBUGFS},1)
1700ca3913dSOlivier Deprezifeq (${DEBUG},1)
1710ca3913dSOlivier Deprez        $(warning DEBUGFS experimental feature is enabled.)
1720ca3913dSOlivier Deprezelse
1730ca3913dSOlivier Deprez        $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
1740ca3913dSOlivier Deprezendif
1750ca3913dSOlivier Deprezendif
1760ca3913dSOlivier Deprez
177c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
178c6ba9b45SSumit GargENC_ARGS += -f ${FW_ENC_STATUS}
179c6ba9b45SSumit GargENC_ARGS += -k ${ENC_KEY}
180c6ba9b45SSumit GargENC_ARGS += -n ${ENC_NONCE}
181c6ba9b45SSumit GargFIP_DEPS += enctool
182c6ba9b45SSumit GargFWU_FIP_DEPS += enctool
183c6ba9b45SSumit Gargendif
184c6ba9b45SSumit Garg
18573c99d4eSJuan Castillo################################################################################
18673c99d4eSJuan Castillo# Toolchain
18773c99d4eSJuan Castillo################################################################################
18873c99d4eSJuan Castillo
18972610c41Sdp-armHOSTCC			:=	gcc
19072610c41Sdp-armexport HOSTCC
19172610c41Sdp-arm
19273c99d4eSJuan CastilloCC			:=	${CROSS_COMPILE}gcc
19373c99d4eSJuan CastilloCPP			:=	${CROSS_COMPILE}cpp
19473c99d4eSJuan CastilloAS			:=	${CROSS_COMPILE}gcc
19573c99d4eSJuan CastilloAR			:=	${CROSS_COMPILE}ar
1962adee763SRoberto VargasLINKER			:=	${CROSS_COMPILE}ld
19773c99d4eSJuan CastilloOC			:=	${CROSS_COMPILE}objcopy
19873c99d4eSJuan CastilloOD			:=	${CROSS_COMPILE}objdump
19973c99d4eSJuan CastilloNM			:=	${CROSS_COMPILE}nm
20073c99d4eSJuan CastilloPP			:=	${CROSS_COMPILE}gcc -E
20138c14d88SSoby MathewDTC			:=	dtc
20273c99d4eSJuan Castillo
203b25a577fSJulius Werner# Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH).
204b25a577fSJulius Wernerifneq ($(strip $(wildcard ${LD}.bfd) \
2052adee763SRoberto Vargas	$(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),)
2062adee763SRoberto VargasLINKER			:=	${LINKER}.bfd
207b25a577fSJulius Wernerendif
208b25a577fSJulius Werner
20926e63c44SEtienne Carriereifeq (${ARM_ARCH_MAJOR},7)
21026e63c44SEtienne Carrieretarget32-directive	= 	-target arm-none-eabi
21126e63c44SEtienne Carriere# Will set march32-directive from platform configuration
21226e63c44SEtienne Carriereelse
21326e63c44SEtienne Carrieretarget32-directive	= 	-target armv8a-none-eabi
214fa6f774bSAlexei Fedorov
215f1821790SAlexei Fedorov# Set the compiler's target architecture profile based on
216f1821790SAlexei Fedorov# ARM_ARCH_MAJOR ARM_ARCH_MINOR options
217fa6f774bSAlexei Fedorovifeq (${ARM_ARCH_MINOR},0)
218f1821790SAlexei Fedorovmarch32-directive	= 	-march=armv${ARM_ARCH_MAJOR}-a
219f1821790SAlexei Fedorovmarch64-directive	= 	-march=armv${ARM_ARCH_MAJOR}-a
220fa6f774bSAlexei Fedorovelse
221f1821790SAlexei Fedorovmarch32-directive	= 	-march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a
222f1821790SAlexei Fedorovmarch64-directive	= 	-march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a
223fa6f774bSAlexei Fedorovendif
22426e63c44SEtienne Carriereendif
22526e63c44SEtienne Carriere
2267ff088d1SManish V Badarkhe# Memory tagging is supported in architecture Armv8.5-A AArch64 and onwards
2277ff088d1SManish V Badarkheifeq ($(ARCH), aarch64)
2284a565bd8SSami Mujawar# Check if revision is greater than or equal to 8.5
2294a565bd8SSami Mujawarifeq "8.5" "$(word 1, $(sort 8.5 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
2307ff088d1SManish V Badarkhemem_tag_arch_support	= 	yes
2317ff088d1SManish V Badarkheendif
2327ff088d1SManish V Badarkheendif
2337ff088d1SManish V Badarkhe
234f1821790SAlexei Fedorov# Get architecture feature modifiers
235f1821790SAlexei Fedorovarch-features		=	${ARM_ARCH_FEATURE}
236f1821790SAlexei Fedorov
237f1821790SAlexei Fedorov# Enable required options for memory stack tagging.
238f1821790SAlexei Fedorov# Currently, these options are enabled only for clang and armclang compiler.
2397ff088d1SManish V Badarkheifeq (${SUPPORT_STACK_MEMTAG},yes)
2407ff088d1SManish V Badarkheifdef mem_tag_arch_support
241f1821790SAlexei Fedorov# Check for armclang and clang compilers
2427ff088d1SManish V Badarkheifneq ( ,$(filter $(notdir $(CC)),armclang clang))
243f1821790SAlexei Fedorov# Add "memtag" architecture feature modifier if not specified
244f1821790SAlexei Fedorovifeq ( ,$(findstring memtag,$(arch-features)))
245f1821790SAlexei Fedorovarch-features       	:=       $(arch-features)+memtag
246f1821790SAlexei Fedorovendif	# memtag
2477ff088d1SManish V Badarkheifeq ($(notdir $(CC)),armclang)
2487ff088d1SManish V BadarkheTF_CFLAGS		+=	-mmemtag-stack
2497ff088d1SManish V Badarkheelse ifeq ($(notdir $(CC)),clang)
2507ff088d1SManish V BadarkheTF_CFLAGS		+=	-fsanitize=memtag
251f1821790SAlexei Fedorovendif	# armclang
252f1821790SAlexei Fedorovendif	# armclang clang
2537ff088d1SManish V Badarkheelse
2547ff088d1SManish V Badarkhe$(error "Error: stack memory tagging is not supported for architecture \
2557ff088d1SManish V Badarkhe	${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
256f1821790SAlexei Fedorovendif	# mem_tag_arch_support
257f1821790SAlexei Fedorovendif	# SUPPORT_STACK_MEMTAG
258f1821790SAlexei Fedorov
259f1821790SAlexei Fedorov# Set the compiler's architecture feature modifiers
260f1821790SAlexei Fedorovifneq ($(arch-features), none)
261f1821790SAlexei Fedorov# Strip "none+" from arch-features
262f1821790SAlexei Fedorovarch-features		:=	$(subst none+,,$(arch-features))
263f1821790SAlexei Fedorovifeq ($(ARCH), aarch32)
264f1821790SAlexei Fedorovmarch32-directive	:=	$(march32-directive)+$(arch-features)
265f1821790SAlexei Fedorovelse
266f1821790SAlexei Fedorovmarch64-directive	:=	$(march64-directive)+$(arch-features)
2677ff088d1SManish V Badarkheendif
268f1821790SAlexei Fedorov# Print features
269f1821790SAlexei Fedorov$(info Arm Architecture Features specified: $(subst +, ,$(arch-features)))
270f1821790SAlexei Fedorovendif	# arch-features
2717ff088d1SManish V Badarkhe
27212cd65e0STomas Pilar# Determine if FEAT_RNG is supported
27312cd65e0STomas PilarENABLE_FEAT_RNG		=	$(if $(findstring rng,${arch-features}),1,0)
27412cd65e0STomas Pilar
2754e04478aSChris Kay# Determine if FEAT_SB is supported
2764e04478aSChris KayENABLE_FEAT_SB		=	$(if $(findstring sb,${arch-features}),1,0)
2774e04478aSChris Kay
278c8a992fdSoriginifneq ($(findstring clang,$(notdir $(CC))),)
279fd18a8fcSVarun Wadekar	ifneq ($(findstring armclang,$(notdir $(CC))),)
280c8a992fdSorigin		TF_CFLAGS_aarch32	:=	-target arm-arm-none-eabi $(march32-directive)
281c8a992fdSorigin		TF_CFLAGS_aarch64	:=	-target aarch64-arm-none-eabi $(march64-directive)
282c8a992fdSorigin		LD			:=	$(LINKER)
283c8a992fdSorigin	else
28494eb1277SArvind Ram Prakash		TF_CFLAGS_aarch32	=	$(target32-directive) $(march32-directive)
285c8a992fdSorigin		TF_CFLAGS_aarch64	:=	-target aarch64-elf $(march64-directive)
286c8a992fdSorigin		LD			:=	$(shell $(CC) --print-prog-name ld.lld)
287c8a992fdSorigin
288c8a992fdSorigin		AR			:=	$(shell $(CC) --print-prog-name llvm-ar)
289c8a992fdSorigin		OD			:=	$(shell $(CC) --print-prog-name llvm-objdump)
290c8a992fdSorigin		OC			:=	$(shell $(CC) --print-prog-name llvm-objcopy)
291641f16e7SAmbroise Vincent	endif
292c8a992fdSorigin
293c8a992fdSorigin	CPP		:=	$(CC) -E $(TF_CFLAGS_$(ARCH))
294c8a992fdSorigin	PP		:=	$(CC) -E $(TF_CFLAGS_$(ARCH))
295c8a992fdSorigin	AS		:=	$(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
296edbce9aaSzelalem-awekeelse ifneq ($(findstring gcc,$(notdir $(CC))),)
297edbce9aaSzelalem-awekeTF_CFLAGS_aarch32	=	$(march32-directive)
298edbce9aaSzelalem-awekeTF_CFLAGS_aarch64	=	$(march64-directive)
299edbce9aaSzelalem-awekeifeq ($(ENABLE_LTO),1)
300edbce9aaSzelalem-aweke	# Enable LTO only for aarch64
301edbce9aaSzelalem-aweke	ifeq (${ARCH},aarch64)
302edbce9aaSzelalem-aweke		LTO_CFLAGS	=	-flto
303edbce9aaSzelalem-aweke		# Use gcc as a wrapper for the ld, recommended for LTO
304edbce9aaSzelalem-aweke		LINKER		:=	${CROSS_COMPILE}gcc
305edbce9aaSzelalem-aweke	endif
306edbce9aaSzelalem-awekeendif
307edbce9aaSzelalem-awekeLD			=	$(LINKER)
308d5461857Sdp-armelse
30926e63c44SEtienne CarriereTF_CFLAGS_aarch32	=	$(march32-directive)
310fa6f774bSAlexei FedorovTF_CFLAGS_aarch64	=	$(march64-directive)
3112adee763SRoberto VargasLD			=	$(LINKER)
312d5461857Sdp-armendif
313d5461857Sdp-arm
31432b209bfSAhmad Fatoum# Process Debug flag
31532b209bfSAhmad Fatoum$(eval $(call add_define,DEBUG))
31632b209bfSAhmad Fatoumifneq (${DEBUG}, 0)
31732b209bfSAhmad Fatoum        BUILD_TYPE	:=	debug
3184466cf82SDaniel Boulby        TF_CFLAGS	+=	-g -gdwarf-4
3194466cf82SDaniel Boulby        ASFLAGS		+=	-g -Wa,-gdwarf-4
32032b209bfSAhmad Fatoum
32132b209bfSAhmad Fatoum        # Use LOG_LEVEL_INFO by default for debug builds
32232b209bfSAhmad Fatoum        LOG_LEVEL	:=	40
32332b209bfSAhmad Fatoumelse
32432b209bfSAhmad Fatoum        BUILD_TYPE	:=	release
32532b209bfSAhmad Fatoum        # Use LOG_LEVEL_NOTICE by default for release builds
32632b209bfSAhmad Fatoum        LOG_LEVEL	:=	20
32732b209bfSAhmad Fatoumendif
32832b209bfSAhmad Fatoum
329f1de4c8fSPeiyuan Song# Default build string (git branch and commit)
330f1de4c8fSPeiyuan Songifeq (${BUILD_STRING},)
331f1de4c8fSPeiyuan Song        BUILD_STRING  :=  $(shell git describe --always --dirty --tags 2> /dev/null)
332f1de4c8fSPeiyuan Songendif
333dddf4283Slaurenw-armVERSION_STRING    :=  v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
334f1de4c8fSPeiyuan Song
3358fd9d4d5SAntonio Nino Diazifeq (${AARCH32_INSTRUCTION_SET},A32)
3368fd9d4d5SAntonio Nino DiazTF_CFLAGS_aarch32	+=	-marm
3378fd9d4d5SAntonio Nino Diazelse ifeq (${AARCH32_INSTRUCTION_SET},T32)
3388fd9d4d5SAntonio Nino DiazTF_CFLAGS_aarch32	+=	-mthumb
3398fd9d4d5SAntonio Nino Diazelse
3408fd9d4d5SAntonio Nino Diaz$(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
3418fd9d4d5SAntonio Nino Diazendif
3428fd9d4d5SAntonio Nino Diaz
343a9c4dde3SSandrine BailleuxTF_CFLAGS_aarch32	+=	-mno-unaligned-access
344d5461857Sdp-armTF_CFLAGS_aarch64	+=	-mgeneral-regs-only -mstrict-align
3459d29c227SSoby Mathew
3469fc59639SAlexei Fedorovifneq (${BP_OPTION},none)
3479fc59639SAlexei FedorovTF_CFLAGS_aarch64	+=	-mbranch-protection=${BP_OPTION}
3489fc59639SAlexei Fedorovendif
3499fc59639SAlexei Fedorov
35026e63c44SEtienne CarriereASFLAGS_aarch32		=	$(march32-directive)
351fa6f774bSAlexei FedorovASFLAGS_aarch64		=	$(march64-directive)
352b86048c4SAntonio Nino Diaz
3539ab81b5eSJustin Chadwell# General warnings
3549ab81b5eSJustin ChadwellWARNINGS		:=	-Wall -Wmissing-include-dirs -Wunused	\
355b7f6525dSJustin Chadwell				-Wdisabled-optimization -Wvla -Wshadow	\
356d75a9ecdSBoyan Karatotev				-Wredundant-decls
357d75a9ecdSBoyan Karatotev# stricter warnings
358d75a9ecdSBoyan KaratotevWARNINGS		+=	-Wextra -Wno-trigraphs
359d75a9ecdSBoyan Karatotev# too verbose for generic build
360d75a9ecdSBoyan KaratotevWARNINGS		+=	-Wno-missing-field-initializers \
361d75a9ecdSBoyan Karatotev				-Wno-type-limits -Wno-sign-compare \
362d75a9ecdSBoyan Karatotev# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
363d75a9ecdSBoyan KaratotevWARNINGS		+=	-Wno-unused-parameter
3649ab81b5eSJustin Chadwell
3659ab81b5eSJustin Chadwell# Additional warnings
366d75a9ecdSBoyan Karatotev# Level 1 - infrequent warnings we should have none of
367d75a9ecdSBoyan Karatotev# full -Wextra
368d75a9ecdSBoyan KaratotevWARNING1 += -Wsign-compare
369d75a9ecdSBoyan KaratotevWARNING1 += -Wtype-limits
370d75a9ecdSBoyan KaratotevWARNING1 += -Wmissing-field-initializers
371e7c645b5SYann Gautier
372d75a9ecdSBoyan Karatotev# Level 2 - problematic warnings that we want
373d75a9ecdSBoyan Karatotev# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
374d75a9ecdSBoyan Karatotev# TODO: disable just for them and move into default build
375d75a9ecdSBoyan KaratotevWARNING2 += -Wold-style-definition
376d75a9ecdSBoyan KaratotevWARNING2 += -Wmissing-prototypes
377d75a9ecdSBoyan KaratotevWARNING2 += -Wmissing-format-attribute
378d75a9ecdSBoyan Karatotev# TF-A aims to comply with this eventually. Effort too large at present
379d75a9ecdSBoyan KaratotevWARNING2 += -Wundef
380d141e638SBoyan Karatotev# currently very involved and many platforms set this off
381d141e638SBoyan KaratotevWARNING2 += -Wunused-const-variable=2
382e7c645b5SYann Gautier
383d75a9ecdSBoyan Karatotev# Level 3 - very pedantic, frequently ignored
384e7c645b5SYann GautierWARNING3 := -Wbad-function-cast
385d75a9ecdSBoyan KaratotevWARNING3 += -Waggregate-return
386d75a9ecdSBoyan KaratotevWARNING3 += -Wnested-externs
387d75a9ecdSBoyan KaratotevWARNING3 += -Wcast-align
388e7c645b5SYann GautierWARNING3 += -Wcast-qual
389e7c645b5SYann GautierWARNING3 += -Wconversion
390e7c645b5SYann GautierWARNING3 += -Wpacked
391e7c645b5SYann GautierWARNING3 += -Wpointer-arith
392e7c645b5SYann GautierWARNING3 += -Wswitch-default
393e7c645b5SYann Gautier
394d75a9ecdSBoyan Karatotev# Setting W is quite verbose and most warnings will be pre-existing issues
395d75a9ecdSBoyan Karatotev# outside of the contributor's control. Don't fail the build on them so warnings
396d75a9ecdSBoyan Karatotev# can be seen and hopefully addressed
397d75a9ecdSBoyan Karatotevifdef W
398d75a9ecdSBoyan Karatotevifneq (${W},0)
399d75a9ecdSBoyan KaratotevE	 ?= 0
400d75a9ecdSBoyan Karatotevendif
401d75a9ecdSBoyan Karatotevendif
402d75a9ecdSBoyan Karatotev
403e7c645b5SYann Gautierifeq (${W},1)
4049ab81b5eSJustin ChadwellWARNINGS += $(WARNING1)
405e7c645b5SYann Gautierelse ifeq (${W},2)
4069ab81b5eSJustin ChadwellWARNINGS += $(WARNING1) $(WARNING2)
407e7c645b5SYann Gautierelse ifeq (${W},3)
4089ab81b5eSJustin ChadwellWARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
409e7c645b5SYann Gautierendif
410e7c645b5SYann Gautier
4119ab81b5eSJustin Chadwell# Compiler specific warnings
41200296576SAmbroise Vincentifeq ($(findstring clang,$(notdir $(CC))),)
41393c690ebSJustin Chadwell# not using clang
414d7b4cd41SJustin ChadwellWARNINGS	+=		-Wunused-but-set-variable -Wmaybe-uninitialized	\
415d7b4cd41SJustin Chadwell				-Wpacked-bitfield-compat -Wshift-overflow=2 \
416d7b4cd41SJustin Chadwell				-Wlogical-op
41793c690ebSJustin Chadwellelse
41893c690ebSJustin Chadwell# using clang
419d7b4cd41SJustin ChadwellWARNINGS	+=		-Wshift-overflow -Wshift-sign-overflow \
420d7b4cd41SJustin Chadwell				-Wlogical-op-parentheses
42100296576SAmbroise Vincentendif
42200296576SAmbroise Vincent
4236336b07aSYann Gautierifneq (${E},0)
4246336b07aSYann GautierERRORS := -Werror
4256336b07aSYann Gautierendif
4266336b07aSYann Gautier
427ea7a57a3SRoberto VargasCPPFLAGS		=	${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc	\
4289ab81b5eSJustin Chadwell				$(ERRORS) $(WARNINGS)
42959de5096SMasahiro YamadaASFLAGS			+=	$(CPPFLAGS) $(ASFLAGS_$(ARCH))			\
430d5dfdeb6SJulius Werner				-ffreestanding -Wa,--fatal-warnings
43159de5096SMasahiro YamadaTF_CFLAGS		+=	$(CPPFLAGS) $(TF_CFLAGS_$(ARCH))		\
432ebd6efaeSSamuel Holland				-ffunction-sections -fdata-sections		\
433ebd6efaeSSamuel Holland				-ffreestanding -fno-builtin -fno-common		\
434ebd6efaeSSamuel Holland				-Os -std=gnu99
43573c99d4eSJuan Castillo
436bebcf27fSMark Brown$(eval $(call add_define,SVE_VECTOR_LEN))
437bebcf27fSMark Brown
4381f461979SJustin Chadwellifeq (${SANITIZE_UB},on)
4391f461979SJustin ChadwellTF_CFLAGS		+=	-fsanitize=undefined -fno-sanitize-recover
4401f461979SJustin Chadwellendif
4411f461979SJustin Chadwellifeq (${SANITIZE_UB},trap)
4421f461979SJustin ChadwellTF_CFLAGS		+=	-fsanitize=undefined -fno-sanitize-recover	\
4431f461979SJustin Chadwell				-fsanitize-undefined-trap-on-error
4441f461979SJustin Chadwellendif
4451f461979SJustin Chadwell
446f7ec31dbSdavid cunadoGCC_V_OUTPUT		:=	$(shell $(CC) -v 2>&1)
447f7ec31dbSdavid cunado
448*1f49db5fSMarco FelschTF_LDFLAGS		+=	-z noexecstack
449*1f49db5fSMarco Felsch
450641f16e7SAmbroise Vincent# LD = armlink
451c2ad38ceSVarun Wadekarifneq ($(findstring armlink,$(notdir $(LD))),)
452c2ad38ceSVarun WadekarTF_LDFLAGS		+=	--diag_error=warning --lto_level=O1
453c2ad38ceSVarun WadekarTF_LDFLAGS		+=	--remove --info=unused,unusedsymbols
454edbce9aaSzelalem-awekeTF_LDFLAGS		+=	$(TF_LDFLAGS_$(ARCH))
455641f16e7SAmbroise Vincent
456641f16e7SAmbroise Vincent# LD = gcc (used when GCC LTO is enabled)
457edbce9aaSzelalem-awekeelse ifneq ($(findstring gcc,$(notdir $(LD))),)
458edbce9aaSzelalem-aweke# Pass ld options with Wl or Xlinker switches
459edbce9aaSzelalem-awekeTF_LDFLAGS		+=	-Wl,--fatal-warnings -O1
460edbce9aaSzelalem-awekeTF_LDFLAGS		+=	-Wl,--gc-sections
461ac98b82aSChris Kay
462ac98b82aSChris KayTF_LDFLAGS		+=	-Wl,-z,common-page-size=4096 # Configure page size constants
463ac98b82aSChris KayTF_LDFLAGS		+=	-Wl,-z,max-page-size=4096
464ac98b82aSChris Kay
465edbce9aaSzelalem-awekeifeq ($(ENABLE_LTO),1)
466edbce9aaSzelalem-aweke	ifeq (${ARCH},aarch64)
467edbce9aaSzelalem-aweke		TF_LDFLAGS	+=	-flto -fuse-linker-plugin
468edbce9aaSzelalem-aweke	endif
469edbce9aaSzelalem-awekeendif
470edbce9aaSzelalem-aweke# GCC automatically adds fix-cortex-a53-843419 flag when used to link
471edbce9aaSzelalem-aweke# which breaks some builds, so disable if errata fix is not explicitly enabled
472edbce9aaSzelalem-awekeifneq (${ERRATA_A53_843419},1)
473edbce9aaSzelalem-aweke	TF_LDFLAGS	+= 	-mno-fix-cortex-a53-843419
474edbce9aaSzelalem-awekeendif
475edbce9aaSzelalem-awekeTF_LDFLAGS		+= 	-nostdlib
476edbce9aaSzelalem-awekeTF_LDFLAGS		+=	$(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
477641f16e7SAmbroise Vincent
478641f16e7SAmbroise Vincent# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
479c2ad38ceSVarun Wadekarelse
480*1f49db5fSMarco Felsch# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
481*1f49db5fSMarco Felsch# are not loaded by a elf loader.
482*1f49db5fSMarco FelschTF_LDFLAGS		+=	$(call ld_option, --no-warn-rwx-segments)
483ebac6922SYabin CuiTF_LDFLAGS		+=	-O1
484c2b8806fSDouglas RaillardTF_LDFLAGS		+=	--gc-sections
485ac98b82aSChris Kay
486ac98b82aSChris KayTF_LDFLAGS		+=	-z common-page-size=4096 # Configure page size constants
487ac98b82aSChris KayTF_LDFLAGS		+=	-z max-page-size=4096
488ac98b82aSChris Kay
489641f16e7SAmbroise Vincent# ld.lld doesn't recognize the errata flags,
490ebac6922SYabin Cui# therefore don't add those in that case.
491ebac6922SYabin Cui# ld.lld reports section type mismatch warnings,
492ebac6922SYabin Cui# therefore don't add --fatal-warnings to it.
493641f16e7SAmbroise Vincentifeq ($(findstring ld.lld,$(notdir $(LD))),)
494ebac6922SYabin CuiTF_LDFLAGS		+=	$(TF_LDFLAGS_$(ARCH)) --fatal-warnings
495edbce9aaSzelalem-awekeendif
496641f16e7SAmbroise Vincentendif
49773c99d4eSJuan Castillo
49803b397a8SNishanth MenonDTC_FLAGS		+=	-I dts -O dtb
499a6de824fSLouis MayencourtDTC_CPPFLAGS		+=	-P -nostdinc -Iinclude -Ifdts -undef \
500a6de824fSLouis Mayencourt				-x assembler-with-cpp $(DEFINES)
50103b397a8SNishanth Menon
50273c99d4eSJuan Castillo################################################################################
50373c99d4eSJuan Castillo# Common sources and include directories
50473c99d4eSJuan Castillo################################################################################
5056a0da736SJayanth Dodderi Chidanandinclude ${MAKE_HELPERS_DIRECTORY}arch_features.mk
506d801fbb0Sdp-arminclude lib/compiler-rt/compiler-rt.mk
50773c99d4eSJuan Castillo
50873c99d4eSJuan CastilloBL_COMMON_SOURCES	+=	common/bl_common.c			\
5097f56e9a3SSoby Mathew				common/tf_log.c				\
5109d29c227SSoby Mathew				common/${ARCH}/debug.S			\
51191b48c9fSJulius Werner				drivers/console/multi_console.c		\
5129d29c227SSoby Mathew				lib/${ARCH}/cache_helpers.S		\
5139d29c227SSoby Mathew				lib/${ARCH}/misc_helpers.S		\
514566034fcSSoby Mathew				plat/common/plat_bl_common.c		\
5157f56e9a3SSoby Mathew				plat/common/plat_log_common.c		\
51675311203Sdp-arm				plat/common/${ARCH}/plat_common.c	\
5179d29c227SSoby Mathew				plat/common/${ARCH}/platform_helpers.S	\
51861f72a34SRoberto Vargas				${COMPILER_RT_SRCS}
519d7a6b0f8SRyan Harkin
5208422a840SAntonio Nino Diazifeq ($(notdir $(CC)),armclang)
5218422a840SAntonio Nino DiazBL_COMMON_SOURCES	+=	lib/${ARCH}/armclang_printf.S
5228422a840SAntonio Nino Diazendif
5238422a840SAntonio Nino Diaz
5241f461979SJustin Chadwellifeq (${SANITIZE_UB},on)
5251f461979SJustin ChadwellBL_COMMON_SOURCES	+=	plat/common/ubsan.c
5261f461979SJustin Chadwellendif
5271f461979SJustin Chadwell
52801d237cbSYann GautierINCLUDES		+=	-Iinclude				\
529f5478dedSAntonio Nino Diaz				-Iinclude/arch/${ARCH}			\
53009d40e0eSAntonio Nino Diaz				-Iinclude/lib/cpus/${ARCH}		\
53109d40e0eSAntonio Nino Diaz				-Iinclude/lib/el3_runtime/${ARCH}	\
53209d40e0eSAntonio Nino Diaz				${PLAT_INCLUDES}			\
53309d40e0eSAntonio Nino Diaz				${SPD_INCLUDES}
53409d40e0eSAntonio Nino Diaz
5359c6d1c50SAntonio Nino Diazinclude common/backtrace/backtrace.mk
5369c6d1c50SAntonio Nino Diaz
53773c99d4eSJuan Castillo################################################################################
53873c99d4eSJuan Castillo# Generic definitions
53973c99d4eSJuan Castillo################################################################################
54073c99d4eSJuan Castillo
541231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
542231c1470SEvan Lloyd
54329214e95SGrant Likelyifeq (${BUILD_BASE},)
54473c99d4eSJuan Castillo     BUILD_BASE		:=	./build
54529214e95SGrant Likelyendif
54629214e95SGrant LikelyBUILD_PLAT		:=	$(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
54773c99d4eSJuan Castillo
548231c1470SEvan LloydSPDS			:=	$(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
54973c99d4eSJuan Castillo
55073c99d4eSJuan Castillo# Platforms providing their own TBB makefile may override this value
55173c99d4eSJuan CastilloINCLUDE_TBBR_MK		:=	1
55273c99d4eSJuan Castillo
55373c99d4eSJuan Castillo
55473c99d4eSJuan Castillo################################################################################
55573c99d4eSJuan Castillo# Include SPD Makefile if one has been specified
55673c99d4eSJuan Castillo################################################################################
55773c99d4eSJuan Castillo
55873c99d4eSJuan Castilloifneq (${SPD},none)
5599d29c227SSoby Mathew    ifeq (${ARCH},aarch32)
5609d29c227SSoby Mathew        $(error "Error: SPD is incompatible with AArch32.")
5619d29c227SSoby Mathew    endif
56228f39f02SMax Shvetsov
5634c117f6cSSandrine Bailleux    ifdef EL3_PAYLOAD_BASE
5644c117f6cSSandrine Bailleux        $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
5654c117f6cSSandrine Bailleux        $(warning "The SPD and its BL32 companion will be present but ignored.")
5664c117f6cSSandrine Bailleux    endif
56728f39f02SMax Shvetsov
568c3fb00d9SAchin Gupta    ifeq (${SPD},spmd)
569c3fb00d9SAchin Gupta        # SPMD is located in std_svc directory
570c3fb00d9SAchin Gupta        SPD_DIR := std_svc
57128f39f02SMax Shvetsov
572033039f8SMax Shvetsov        ifeq ($(SPMD_SPM_AT_SEL2),1)
573f1910cc1SGovindraj Raja            CTX_INCLUDE_EL2_REGS := 1
5741d63ae4dSMarc Bonnici	    ifeq ($(SPMC_AT_EL3),1)
5751d63ae4dSMarc Bonnici                $(error SPM cannot be enabled in both S-EL2 and EL3.)
5761d63ae4dSMarc Bonnici            endif
57728f39f02SMax Shvetsov        endif
578db1ef41aSOlivier Deprez
579db1ef41aSOlivier Deprez        ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
580db1ef41aSOlivier Deprez            DTC_CPPFLAGS	+=	-DOPTEE_SP_FW_CONFIG
581db1ef41aSOlivier Deprez        endif
582ca932481SDavidson K
583ca932481SDavidson K        ifeq ($(TS_SP_FW_CONFIG),1)
584ca932481SDavidson K            DTC_CPPFLAGS	+=	-DTS_SP_FW_CONFIG
585ca932481SDavidson K        endif
58633993a37SBalint Dobszay
58733993a37SBalint Dobszay        ifneq ($(ARM_BL2_SP_LIST_DTS),)
58833993a37SBalint Dobszay            DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
58933993a37SBalint Dobszay        endif
59046789a7cSBalint Dobszay
59146789a7cSBalint Dobszay        ifneq ($(SP_LAYOUT_FILE),)
59246789a7cSBalint Dobszay            BL2_ENABLE_SP_LOAD := 1
59346789a7cSBalint Dobszay        endif
594c3fb00d9SAchin Gupta    else
595c3fb00d9SAchin Gupta        # All other SPDs in spd directory
596c3fb00d9SAchin Gupta        SPD_DIR := spd
597c3fb00d9SAchin Gupta    endif
598c3fb00d9SAchin Gupta
59973c99d4eSJuan Castillo    # We expect to locate an spd.mk under the specified SPD directory
600c3fb00d9SAchin Gupta    SPD_MAKE	:=	$(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
601c3fb00d9SAchin Gupta
60273c99d4eSJuan Castillo    ifeq (${SPD_MAKE},)
603c3fb00d9SAchin Gupta        $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
60473c99d4eSJuan Castillo    endif
60573c99d4eSJuan Castillo    $(info Including ${SPD_MAKE})
60673c99d4eSJuan Castillo    include ${SPD_MAKE}
60773c99d4eSJuan Castillo
60870d1fc53SJuan Castillo    # If there's BL32 companion for the chosen SPD, we expect that the SPD's
60970d1fc53SJuan Castillo    # Makefile would set NEED_BL32 to "yes". In this case, the build system
61070d1fc53SJuan Castillo    # supports two mutually exclusive options:
61170d1fc53SJuan Castillo    # * BL32 is built from source: then BL32_SOURCES must contain the list
61270d1fc53SJuan Castillo    #   of source files to build BL32
61370d1fc53SJuan Castillo    # * BL32 is a prebuilt binary: then BL32 must point to the image file
61470d1fc53SJuan Castillo    #   that will be included in the FIP
61570d1fc53SJuan Castillo    # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
61670d1fc53SJuan Castillo    # over the sources.
617e35c4045SJeenu Viswambharanendif
618e35c4045SJeenu Viswambharan
619f1910cc1SGovindraj Rajaifeq (${CTX_INCLUDE_EL2_REGS}, 1)
620f1910cc1SGovindraj Rajaifeq (${SPD},none)
621f1910cc1SGovindraj Rajaifeq (${ENABLE_RME},0)
622f1910cc1SGovindraj Raja    $(error CTX_INCLUDE_EL2_REGS is available only when SPD or RME is enabled)
623f1910cc1SGovindraj Rajaendif
624f1910cc1SGovindraj Rajaendif
625f1910cc1SGovindraj Rajaendif
626f1910cc1SGovindraj Raja
62751faada7SDouglas Raillard################################################################################
6285b18de09SZelalem Aweke# Include rmmd Makefile if RME is enabled
6295b18de09SZelalem Aweke################################################################################
6305b18de09SZelalem Aweke
6315b18de09SZelalem Awekeifneq (${ENABLE_RME},0)
6325b18de09SZelalem Awekeifneq (${ARCH},aarch64)
6335b18de09SZelalem Aweke	$(error ENABLE_RME requires AArch64)
6345b18de09SZelalem Awekeendif
6351d63ae4dSMarc Bonniciifeq ($(SPMC_AT_EL3),1)
6361d63ae4dSMarc Bonnici	$(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
6371d63ae4dSMarc Bonniciendif
6385b18de09SZelalem Awekeinclude services/std_svc/rmmd/rmmd.mk
6395b18de09SZelalem Aweke$(warning "RME is an experimental feature")
6405b18de09SZelalem Awekeendif
6415b18de09SZelalem Aweke
6425b18de09SZelalem Aweke################################################################################
64373c99d4eSJuan Castillo# Include the platform specific Makefile after the SPD Makefile (the platform
64473c99d4eSJuan Castillo# makefile may use all previous definitions in this file)
64573c99d4eSJuan Castillo################################################################################
6462da8d8bfSJeenu Viswambharan
64773c99d4eSJuan Castilloinclude ${PLAT_MAKEFILE_FULL}
6480f21c547SJuan Castillo
6498012cc5cSMasahiro Yamada$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
6508012cc5cSMasahiro Yamada
65126e63c44SEtienne Carriereifeq (${ARM_ARCH_MAJOR},7)
65226e63c44SEtienne Carriereinclude make_helpers/armv7-a-cpus.mk
65326e63c44SEtienne Carriereendif
65426e63c44SEtienne Carriere
6553bd17c0fSSoby MathewPIE_FOUND		:=	$(findstring --enable-default-pie,${GCC_V_OUTPUT})
6563bd17c0fSSoby Mathewifneq ($(PIE_FOUND),)
6573bd17c0fSSoby Mathew	TF_CFLAGS	+=	-fno-PIE
6587b592418SSamuel Hollandifneq ($(findstring gcc,$(notdir $(LD))),)
6597b592418SSamuel Holland	TF_LDFLAGS	+=	-no-pie
6607b592418SSamuel Hollandendif
6613bd17c0fSSoby Mathewendif
662320920c1SMasahiro Yamada
663320920c1SMasahiro Yamadaifneq ($(findstring gcc,$(notdir $(LD))),)
664320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-Wl,-pie -Wl,--no-dynamic-linker
665320920c1SMasahiro Yamadaelse
666320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-pie --no-dynamic-linker
667320920c1SMasahiro Yamadaendif
668320920c1SMasahiro Yamada
669320920c1SMasahiro Yamadaifeq ($(ENABLE_PIE),1)
67069af7fcfSMasahiro Yamadaifeq ($(BL2_AT_EL3),1)
67169af7fcfSMasahiro Yamadaifneq ($(BL2_IN_XIP_MEM),1)
672966660ecSChris Kay	BL2_CPPFLAGS	+=	-fpie
67369af7fcfSMasahiro Yamada	BL2_CFLAGS	+=	-fpie
67469af7fcfSMasahiro Yamada	BL2_LDFLAGS	+=	$(PIE_LDFLAGS)
67569af7fcfSMasahiro Yamadaendif
67669af7fcfSMasahiro Yamadaendif
677966660ecSChris Kay	BL31_CPPFLAGS	+=	-fpie
678320920c1SMasahiro Yamada	BL31_CFLAGS 	+=	-fpie
679320920c1SMasahiro Yamada	BL31_LDFLAGS	+=	$(PIE_LDFLAGS)
680966660ecSChris Kay
681966660ecSChris Kay	BL32_CPPFLAGS	+=	-fpie
682d974301dSMasahiro Yamada	BL32_CFLAGS	+=	-fpie
683d974301dSMasahiro Yamada	BL32_LDFLAGS	+=	$(PIE_LDFLAGS)
684d974301dSMasahiro Yamadaendif
6853bd17c0fSSoby Mathew
686d5e97a1dSMasahiro Yamadaifeq (${ARCH},aarch64)
6879cefb4b1SMasahiro YamadaBL1_CPPFLAGS += -DIMAGE_AT_EL3
688d5e97a1dSMasahiro Yamadaifeq ($(BL2_AT_EL3),1)
6899cefb4b1SMasahiro YamadaBL2_CPPFLAGS += -DIMAGE_AT_EL3
690d5e97a1dSMasahiro Yamadaelse
6919cefb4b1SMasahiro YamadaBL2_CPPFLAGS += -DIMAGE_AT_EL1
692d5e97a1dSMasahiro Yamadaendif
6939cefb4b1SMasahiro YamadaBL2U_CPPFLAGS += -DIMAGE_AT_EL1
6949cefb4b1SMasahiro YamadaBL31_CPPFLAGS += -DIMAGE_AT_EL3
6959cefb4b1SMasahiro YamadaBL32_CPPFLAGS += -DIMAGE_AT_EL1
696d5e97a1dSMasahiro Yamadaendif
697d5e97a1dSMasahiro Yamada
69854035fc4SSandrine Bailleux# Include the CPU specific operations makefile, which provides default
69954035fc4SSandrine Bailleux# values for all CPU errata workarounds and CPU specific optimisations.
70054035fc4SSandrine Bailleux# This can be overridden by the platform.
70173c99d4eSJuan Castilloinclude lib/cpus/cpu-ops.mk
7024f6ad66aSAchin Gupta
703a4409008Sdp-armifeq (${ARCH},aarch32)
704a4409008Sdp-armNEED_BL32 := yes
705a4409008Sdp-arm
706a4409008Sdp-arm################################################################################
707a4409008Sdp-arm# Build `AARCH32_SP` as BL32 image for AArch32
708a4409008Sdp-arm################################################################################
709a4409008Sdp-armifneq (${AARCH32_SP},none)
710a4409008Sdp-arm# We expect to locate an sp.mk under the specified AARCH32_SP directory
711a4409008Sdp-armAARCH32_SP_MAKE	:=	$(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
712a4409008Sdp-arm
713a4409008Sdp-armifeq (${AARCH32_SP_MAKE},)
714a4409008Sdp-arm  $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
715a4409008Sdp-armendif
716a4409008Sdp-arm
717a4409008Sdp-arm$(info Including ${AARCH32_SP_MAKE})
718a4409008Sdp-arminclude ${AARCH32_SP_MAKE}
719a4409008Sdp-armendif
720a4409008Sdp-arm
721a4409008Sdp-armendif
7224f6ad66aSAchin Gupta
72373c99d4eSJuan Castillo################################################################################
72477f1f7a1SVarun Wadekar# Include libc if not overridden
72577f1f7a1SVarun Wadekar################################################################################
72677f1f7a1SVarun Wadekarifeq (${OVERRIDE_LIBC},0)
72777f1f7a1SVarun Wadekarinclude lib/libc/libc.mk
72877f1f7a1SVarun Wadekarendif
72977f1f7a1SVarun Wadekar
73077f1f7a1SVarun Wadekar################################################################################
731cf2c8a33SAntonio Nino Diaz# Check incompatible options
732cf2c8a33SAntonio Nino Diaz################################################################################
733cf2c8a33SAntonio Nino Diaz
734cf2c8a33SAntonio Nino Diazifdef EL3_PAYLOAD_BASE
73568450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
73668450a6dSAntonio Nino Diaz                $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
73768450a6dSAntonio Nino Diaz                incompatible build options. EL3_PAYLOAD_BASE has priority.")
738cf2c8a33SAntonio Nino Diaz        endif
73976580f3dSQixiang Xu        ifneq (${GENERATE_COT},0)
74076580f3dSQixiang Xu                $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible build options.")
74176580f3dSQixiang Xu        endif
74276580f3dSQixiang Xu        ifneq (${TRUSTED_BOARD_BOOT},0)
74376580f3dSQixiang Xu                $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are incompatible build options.")
74476580f3dSQixiang Xu        endif
745cf2c8a33SAntonio Nino Diazendif
746cf2c8a33SAntonio Nino Diaz
747cf2c8a33SAntonio Nino Diazifeq (${NEED_BL33},yes)
748cf2c8a33SAntonio Nino Diaz        ifdef EL3_PAYLOAD_BASE
749cf2c8a33SAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
750cf2c8a33SAntonio Nino Diaz                BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
751cf2c8a33SAntonio Nino Diaz        endif
75268450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
75368450a6dSAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
75468450a6dSAntonio Nino Diaz                PRELOADED_BL33_BASE is used and won't be added to the FIP \
75568450a6dSAntonio Nino Diaz                file.")
756cf2c8a33SAntonio Nino Diaz        endif
757cf2c8a33SAntonio Nino Diazendif
758cf2c8a33SAntonio Nino Diaz
759d4593e47SJeenu Viswambharan# When building for systems with hardware-assisted coherency, there's no need to
760d4593e47SJeenu Viswambharan# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
761d4593e47SJeenu Viswambharanifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
762d4593e47SJeenu Viswambharan$(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
763d4593e47SJeenu Viswambharanendif
7641a0a3f06SYatharth Kochar
7657d173fc5SJiafei Pan#For now, BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is 1.
7667d173fc5SJiafei Panifeq ($(BL2_AT_EL3)-$(BL2_IN_XIP_MEM),0-1)
7677d173fc5SJiafei Pan$(error "BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is enabled")
7687d173fc5SJiafei Panendif
7697d173fc5SJiafei Pan
77014c6016aSJeenu Viswambharan# For RAS_EXTENSION, require that EAs are handled in EL3 first
77114c6016aSJeenu Viswambharanifeq ($(RAS_EXTENSION),1)
77246cc41d5SManish Pandey    ifneq ($(HANDLE_EA_EL3_FIRST_NS),1)
77346cc41d5SManish Pandey        $(error For RAS_EXTENSION, HANDLE_EA_EL3_FIRST_NS must also be 1)
77414c6016aSJeenu Viswambharan    endif
77514c6016aSJeenu Viswambharanendif
77614c6016aSJeenu Viswambharan
7771a7c1cfeSJeenu Viswambharan# When FAULT_INJECTION_SUPPORT is used, require that RAS_EXTENSION is enabled
7781a7c1cfeSJeenu Viswambharanifeq ($(FAULT_INJECTION_SUPPORT),1)
7791a7c1cfeSJeenu Viswambharan    ifneq ($(RAS_EXTENSION),1)
7801a7c1cfeSJeenu Viswambharan        $(error For FAULT_INJECTION_SUPPORT, RAS_EXTENSION must also be 1)
7811a7c1cfeSJeenu Viswambharan    endif
7821a7c1cfeSJeenu Viswambharanendif
7831a7c1cfeSJeenu Viswambharan
784ed51b51fSRoberto Vargas# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
785209a60ccSSoby Mathewifeq ($(DYN_DISABLE_AUTH), 1)
786209a60ccSSoby Mathew    ifeq (${TRUSTED_BOARD_BOOT}, 0)
787209a60ccSSoby Mathew        $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH to be set.")
788209a60ccSSoby Mathew    endif
789209a60ccSSoby Mathewendif
790209a60ccSSoby Mathew
7912bf4f27fSManish V Badarkheifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
7922bf4f27fSManish V Badarkhe# Support authentication verification and hash calculation
7932bf4f27fSManish V Badarkhe    CRYPTO_SUPPORT := 3
7942bf4f27fSManish V Badarkheelse ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
7952bf4f27fSManish V Badarkhe# Support authentication verification and hash calculation
7962bf4f27fSManish V Badarkhe    CRYPTO_SUPPORT := 3
7972bf4f27fSManish V Badarkheelse ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
7982bf4f27fSManish V Badarkhe# Support hash calculation only
7992bf4f27fSManish V Badarkhe    CRYPTO_SUPPORT := 2
8002bf4f27fSManish V Badarkheelse ifeq (${TRUSTED_BOARD_BOOT},1)
8012bf4f27fSManish V Badarkhe# Support authentication verification only
802c9c56f6eSManish V Badarkhe    CRYPTO_SUPPORT := 1
803c9c56f6eSManish V Badarkheelse
804c9c56f6eSManish V Badarkhe    CRYPTO_SUPPORT := 0
805c9c56f6eSManish V Badarkheendif
806c9c56f6eSManish V Badarkhe
807cbf9e84aSBalint Dobszay# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
808cbf9e84aSBalint Dobszayifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
809700e7685SManish Pandey$(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
81084ef9cd8SManish V Badarkheendif
81184ef9cd8SManish V Badarkhe
812b86048c4SAntonio Nino Diaz# If pointer authentication is used in the firmware, make sure that all the
8139fc59639SAlexei Fedorov# registers associated to it are also saved and restored.
8149fc59639SAlexei Fedorov# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
815b86048c4SAntonio Nino Diazifeq ($(ENABLE_PAUTH),1)
8169fc59639SAlexei Fedorov    ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
8179fc59639SAlexei Fedorov        $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
81806715f85SAlexei Fedorov    endif
8199fc59639SAlexei Fedorovendif
8209fc59639SAlexei Fedorov
82106715f85SAlexei Fedorovifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
8229fc59639SAlexei Fedorov    ifneq (${ARCH},aarch64)
8239fc59639SAlexei Fedorov        $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
824b86048c4SAntonio Nino Diaz    endif
825b86048c4SAntonio Nino Diazendif
8269fc59639SAlexei Fedorov
8279dd94382SJustin Chadwellifeq ($(CTX_INCLUDE_MTE_REGS),1)
8289dd94382SJustin Chadwell    ifneq (${ARCH},aarch64)
8299dd94382SJustin Chadwell        $(error CTX_INCLUDE_MTE_REGS requires AArch64)
8309dd94382SJustin Chadwell    endif
8319dd94382SJustin Chadwellendif
8329dd94382SJustin Chadwell
833396b339dSManish V Badarkheifeq ($(PSA_FWU_SUPPORT),1)
834396b339dSManish V Badarkhe    $(info PSA_FWU_SUPPORT is an experimental feature)
835396b339dSManish V Badarkheendif
836396b339dSManish V Badarkhe
8376a0da736SJayanth Dodderi Chidanandifeq ($(FEATURE_DETECTION),1)
8386a0da736SJayanth Dodderi Chidanand    $(info FEATURE_DETECTION is an experimental feature)
8396a0da736SJayanth Dodderi Chidanandendif
8406a0da736SJayanth Dodderi Chidanand
84160e8f3cfSPetre-Ionut Tudorifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
84260e8f3cfSPetre-Ionut Tudor    ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
84360e8f3cfSPetre-Ionut Tudor        $(error "ALLOW_RO_XLAT_TABLES requires translation tables library v2")
84460e8f3cfSPetre-Ionut Tudor    endif
84560e8f3cfSPetre-Ionut Tudorendif
84660e8f3cfSPetre-Ionut Tudor
8477cda17bbSSumit Gargifneq (${DECRYPTION_SUPPORT},none)
8487cda17bbSSumit Garg    ifeq (${TRUSTED_BOARD_BOOT}, 0)
8497cda17bbSSumit Garg        $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT to be set)
8507cda17bbSSumit Garg    endif
8517cda17bbSSumit Gargendif
8527cda17bbSSumit Garg
853744ad974Sjohpow01# Ensure that no Aarch64-only features are enabled in Aarch32 build
854dc78e62dSjohpow01ifeq (${ARCH},aarch32)
855744ad974Sjohpow01
856744ad974Sjohpow01    # SME/SVE only supported on AArch64
857dc78e62dSjohpow01    ifeq (${ENABLE_SME_FOR_NS},1)
858dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
859dc78e62dSjohpow01    endif
860dc78e62dSjohpow01    ifeq (${ENABLE_SVE_FOR_NS},1)
861dc78e62dSjohpow01        # Warning instead of error due to CI dependency on this
86224ab2c0aSYann Gautier        $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
863dc78e62dSjohpow01    endif
864744ad974Sjohpow01
865ff86e0b4SJuan Pablo Conde    # BRBE is not supported in AArch32
866744ad974Sjohpow01    ifeq (${ENABLE_BRBE_FOR_NS},1)
867744ad974Sjohpow01        $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
868744ad974Sjohpow01    endif
869744ad974Sjohpow01
870ff86e0b4SJuan Pablo Conde    # FEAT_RNG_TRAP is not supported in AArch32
871ff86e0b4SJuan Pablo Conde    ifeq (${ENABLE_FEAT_RNG_TRAP},1)
872ff86e0b4SJuan Pablo Conde        $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
873ff86e0b4SJuan Pablo Conde    endif
874dc78e62dSjohpow01endif
875dc78e62dSjohpow01
876dc78e62dSjohpow01# Ensure ENABLE_RME is not used with SME
877dc78e62dSjohpow01ifeq (${ENABLE_RME},1)
878dc78e62dSjohpow01    ifeq (${ENABLE_SME_FOR_NS},1)
879dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_NS cannot be used with ENABLE_RME")
880dc78e62dSjohpow01    endif
881dc78e62dSjohpow01endif
882dc78e62dSjohpow01
883dc78e62dSjohpow01# Secure SME/SVE requires the non-secure component as well
884dc78e62dSjohpow01ifeq (${ENABLE_SME_FOR_SWD},1)
885dc78e62dSjohpow01    ifeq (${ENABLE_SME_FOR_NS},0)
886dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
887dc78e62dSjohpow01    endif
888dc78e62dSjohpow01endif
889dc78e62dSjohpow01ifeq (${ENABLE_SVE_FOR_SWD},1)
890dc78e62dSjohpow01    ifeq (${ENABLE_SVE_FOR_NS},0)
891dc78e62dSjohpow01        $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
892dc78e62dSjohpow01    endif
893dc78e62dSjohpow01endif
894dc78e62dSjohpow01
895dc78e62dSjohpow01# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
896dc78e62dSjohpow01# its own context management including FPU registers.
897dc78e62dSjohpow01ifeq (${CTX_INCLUDE_FPREGS},1)
898dc78e62dSjohpow01    ifeq (${ENABLE_SME_FOR_NS},1)
899dc78e62dSjohpow01        $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
900dc78e62dSjohpow01    endif
901dc78e62dSjohpow01    ifeq (${ENABLE_SVE_FOR_NS},1)
902dc78e62dSjohpow01        # Warning instead of error due to CI dependency on this
903dc78e62dSjohpow01        $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
904dc78e62dSjohpow01        $(warning "Forced ENABLE_SVE_FOR_NS=0")
905dc78e62dSjohpow01        override ENABLE_SVE_FOR_NS	:= 0
906dc78e62dSjohpow01    endif
907dc78e62dSjohpow01endif
908dc78e62dSjohpow01
90900e28874SManish V Badarkheifeq ($(DRTM_SUPPORT),1)
91000e28874SManish V Badarkhe    $(info DRTM_SUPPORT is an experimental feature)
91100e28874SManish V Badarkheendif
91200e28874SManish V Badarkhe
913274a69e7SChris Kayifeq (${ENABLE_RME},1)
914274a69e7SChris Kay    ifneq (${SEPARATE_CODE_AND_RODATA},1)
915274a69e7SChris Kay        $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
916274a69e7SChris Kay    endif
917274a69e7SChris Kayendif
918274a69e7SChris Kay
919cf2c8a33SAntonio Nino Diaz################################################################################
92073c99d4eSJuan Castillo# Process platform overrideable behaviour
92173c99d4eSJuan Castillo################################################################################
9224f6ad66aSAchin Gupta
9235f24ce96SManish Pandeyifdef BL1_SOURCES
9245f24ce96SManish PandeyNEED_BL1 := yes
9255f24ce96SManish Pandeyendif
9265f24ce96SManish Pandey
9275f24ce96SManish Pandeyifdef BL2_SOURCES
9285f24ce96SManish Pandey	NEED_BL2 := yes
9295f24ce96SManish Pandey
930bd97f83aSJohn Tsichritzis	# Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
931bd97f83aSJohn Tsichritzis	# Certificate generation tools. This flag can be overridden by the platform.
932cf2c8a33SAntonio Nino Diaz	ifdef EL3_PAYLOAD_BASE
933cf2c8a33SAntonio Nino Diaz                # If booting an EL3 payload there is no need for a BL33 image
934cf2c8a33SAntonio Nino Diaz                # in the FIP file.
9354c117f6cSSandrine Bailleux                NEED_BL33		:=	no
936cf2c8a33SAntonio Nino Diaz        else
93768450a6dSAntonio Nino Diaz                ifdef PRELOADED_BL33_BASE
938cf2c8a33SAntonio Nino Diaz                        # If booting a BL33 preloaded image there is no need of
939cf2c8a33SAntonio Nino Diaz                        # another one in the FIP file.
940cf2c8a33SAntonio Nino Diaz                        NEED_BL33		:=	no
941cf2c8a33SAntonio Nino Diaz                else
942cf2c8a33SAntonio Nino Diaz                        NEED_BL33		?=	yes
943cf2c8a33SAntonio Nino Diaz                endif
9444c117f6cSSandrine Bailleux        endif
94573c99d4eSJuan Castilloendif
9466f971622SJuan Castillo
9475f24ce96SManish Pandeyifdef BL2U_SOURCES
9485f24ce96SManish PandeyNEED_BL2U := yes
9495f24ce96SManish Pandeyendif
9505f24ce96SManish Pandey
9514d045d0eSMasahiro Yamada# If SCP_BL2 is given, we always want FIP to include it.
9524d045d0eSMasahiro Yamadaifdef SCP_BL2
9534d045d0eSMasahiro Yamada        NEED_SCP_BL2		:=	yes
9544d045d0eSMasahiro Yamadaendif
9554d045d0eSMasahiro Yamada
9565744e874SSoby Mathew# For AArch32, BL31 is not currently supported.
9575744e874SSoby Mathewifneq (${ARCH},aarch32)
9585744e874SSoby Mathew    ifdef BL31_SOURCES
9595744e874SSoby Mathew        # When booting an EL3 payload, there is no need to compile the BL31 image nor
9605744e874SSoby Mathew        # put it in the FIP.
9615744e874SSoby Mathew        ifndef EL3_PAYLOAD_BASE
9625744e874SSoby Mathew            NEED_BL31 := yes
9635744e874SSoby Mathew        endif
9645744e874SSoby Mathew    endif
9655744e874SSoby Mathewendif
9665744e874SSoby Mathew
96773c99d4eSJuan Castillo# Process TBB related flags
9686f971622SJuan Castilloifneq (${GENERATE_COT},0)
96973c99d4eSJuan Castillo        # Common cert_create options
9706f971622SJuan Castillo        ifneq (${CREATE_KEYS},0)
9716f971622SJuan Castillo                $(eval CRT_ARGS += -n)
9720191262dSYatharth Kochar                $(eval FWU_CRT_ARGS += -n)
973fd34e7baSJuan Castillo                ifneq (${SAVE_KEYS},0)
974fd34e7baSJuan Castillo                        $(eval CRT_ARGS += -k)
9750191262dSYatharth Kochar                        $(eval FWU_CRT_ARGS += -k)
976fd34e7baSJuan Castillo                endif
9776f971622SJuan Castillo        endif
97873c99d4eSJuan Castillo        # Include TBBR makefile (unless the platform indicates otherwise)
97973c99d4eSJuan Castillo        ifeq (${INCLUDE_TBBR_MK},1)
98073c99d4eSJuan Castillo                include make_helpers/tbbr/tbbr_tools.mk
98173c99d4eSJuan Castillo        endif
9826f971622SJuan Castilloendif
9836f971622SJuan Castillo
9841c75d5dfSMasahiro Yamadaifneq (${FIP_ALIGN},0)
9851c75d5dfSMasahiro YamadaFIP_ARGS += --align ${FIP_ALIGN}
9861c75d5dfSMasahiro Yamadaendif
9871c75d5dfSMasahiro Yamada
9885f24ce96SManish Pandeyifdef FDT_SOURCES
9895f24ce96SManish PandeyNEED_FDT := yes
9905f24ce96SManish Pandeyendif
9915f24ce96SManish Pandey
99273c99d4eSJuan Castillo################################################################################
99346e5e035SMichalis Pappas# Include libraries' Makefile that are used in all BL
99446e5e035SMichalis Pappas################################################################################
99546e5e035SMichalis Pappas
99646e5e035SMichalis Pappasinclude lib/stack_protector/stack_protector.mk
99746e5e035SMichalis Pappas
99846e5e035SMichalis Pappas################################################################################
999819281eeSdp-arm# Auxiliary tools (fiptool, cert_create, etc)
100073c99d4eSJuan Castillo################################################################################
100173c99d4eSJuan Castillo
100273c99d4eSJuan Castillo# Variables for use with Certificate Generation Tool
100373c99d4eSJuan CastilloCRTTOOLPATH		?=	tools/cert_create
100442a45b51SEvan LloydCRTTOOL			?=	${CRTTOOLPATH}/cert_create${BIN_EXT}
100573c99d4eSJuan Castillo
100690aa901fSSumit Garg# Variables for use with Firmware Encryption Tool
100790aa901fSSumit GargENCTOOLPATH		?=	tools/encrypt_fw
100890aa901fSSumit GargENCTOOL			?=	${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
100990aa901fSSumit Garg
101073c99d4eSJuan Castillo# Variables for use with Firmware Image Package
1011819281eeSdp-armFIPTOOLPATH		?=	tools/fiptool
1012819281eeSdp-armFIPTOOL			?=	${FIPTOOLPATH}/fiptool${BIN_EXT}
101373c99d4eSJuan Castillo
101426010da1SAntonio Nino Diaz# Variables for use with sptool
101526010da1SAntonio Nino DiazSPTOOLPATH		?=	tools/sptool
1016822c7279SJ-AlvesSPTOOL			?=	${SPTOOLPATH}/sptool.py
1017ce2b1ec6SManish PandeySP_MK_GEN		?=	${SPTOOLPATH}/sp_mk_generator.py
101826010da1SAntonio Nino Diaz
10195accce5bSRoberto Vargas# Variables for use with ROMLIB
10205accce5bSRoberto VargasROMLIBPATH		?=	lib/romlib
10215accce5bSRoberto Vargas
1022cfe83910SLouis Mayencourt# Variable for use with Python
1023cfe83910SLouis MayencourtPYTHON			?=	python3
1024cfe83910SLouis Mayencourt
1025cfe83910SLouis Mayencourt# Variables for use with PRINT_MEMORY_MAP
1026cfe83910SLouis MayencourtPRINT_MEMORY_MAP_PATH		?=	tools/memory
1027cfe83910SLouis MayencourtPRINT_MEMORY_MAP		?=	${PRINT_MEMORY_MAP_PATH}/print_memory_map.py
1028cfe83910SLouis Mayencourt
10296de32378SMadhukar Pappireddy# Variables for use with documentation build using Sphinx tool
10306de32378SMadhukar PappireddyDOCS_PATH		?=	docs
10316de32378SMadhukar Pappireddy
10321f1c0206SAbdul Halim, Muhammad Hadi Asyrafi# Defination of SIMICS flag
10331f1c0206SAbdul Halim, Muhammad Hadi AsyrafiSIMICS_BUILD	?=	0
10341f1c0206SAbdul Halim, Muhammad Hadi Asyrafi
10358a86052dSSoby Mathew################################################################################
10368a86052dSSoby Mathew# Include BL specific makefiles
10378a86052dSSoby Mathew################################################################################
10385f24ce96SManish Pandey
10395f24ce96SManish Pandeyifeq (${NEED_BL1},yes)
10408a86052dSSoby Mathewinclude bl1/bl1.mk
10418a86052dSSoby Mathewendif
10428a86052dSSoby Mathew
10435f24ce96SManish Pandeyifeq (${NEED_BL2},yes)
10448a86052dSSoby Mathewinclude bl2/bl2.mk
10458a86052dSSoby Mathewendif
10468a86052dSSoby Mathew
10475f24ce96SManish Pandeyifeq (${NEED_BL2U},yes)
10488a86052dSSoby Mathewinclude bl2u/bl2u.mk
10498a86052dSSoby Mathewendif
10508a86052dSSoby Mathew
10515744e874SSoby Mathewifeq (${NEED_BL31},yes)
10528a86052dSSoby Mathewinclude bl31/bl31.mk
10538a86052dSSoby Mathewendif
105403b397a8SNishanth Menon
105573c99d4eSJuan Castillo################################################################################
105673c99d4eSJuan Castillo# Build options checks
105773c99d4eSJuan Castillo################################################################################
105873c99d4eSJuan Castillo
1059327131c4SLeonardo Sandoval$(eval $(call assert_booleans,\
1060327131c4SLeonardo Sandoval    $(sort \
1061327131c4SLeonardo Sandoval        ALLOW_RO_XLAT_TABLES \
106246789a7cSBalint Dobszay        BL2_ENABLE_SP_LOAD \
1063327131c4SLeonardo Sandoval        COLD_BOOT_SINGLE_CPU \
1064327131c4SLeonardo Sandoval        CREATE_KEYS \
1065327131c4SLeonardo Sandoval        CTX_INCLUDE_AARCH32_REGS \
1066327131c4SLeonardo Sandoval        CTX_INCLUDE_FPREGS \
1067327131c4SLeonardo Sandoval        CTX_INCLUDE_EL2_REGS \
1068327131c4SLeonardo Sandoval        DEBUG \
10690063dd17SJavier Almansa Sobrino        DISABLE_MTPMU \
1070327131c4SLeonardo Sandoval        DYN_DISABLE_AUTH \
1071327131c4SLeonardo Sandoval        EL3_EXCEPTION_HANDLING \
1072327131c4SLeonardo Sandoval        ENABLE_AMU \
10731fd685a7SChris Kay        ENABLE_AMU_AUXILIARY_COUNTERS \
1074742ca230SChris Kay        ENABLE_AMU_FCONF \
1075873d4241Sjohpow01        AMU_RESTRICT_COUNTERS \
1076327131c4SLeonardo Sandoval        ENABLE_ASSERTIONS \
1077327131c4SLeonardo Sandoval        ENABLE_PIE \
1078327131c4SLeonardo Sandoval        ENABLE_PMF \
1079327131c4SLeonardo Sandoval        ENABLE_PSCI_STAT \
1080327131c4SLeonardo Sandoval        ENABLE_RUNTIME_INSTRUMENTATION \
1081dc78e62dSjohpow01        ENABLE_SME_FOR_NS \
1082dc78e62dSjohpow01        ENABLE_SME_FOR_SWD \
1083327131c4SLeonardo Sandoval        ENABLE_SPE_FOR_LOWER_ELS \
1084327131c4SLeonardo Sandoval        ENABLE_SVE_FOR_NS \
10850c5e7d1cSMax Shvetsov        ENABLE_SVE_FOR_SWD \
1086327131c4SLeonardo Sandoval        ERROR_DEPRECATED \
1087327131c4SLeonardo Sandoval        FAULT_INJECTION_SUPPORT \
1088327131c4SLeonardo Sandoval        GENERATE_COT \
1089327131c4SLeonardo Sandoval        GICV2_G0_FOR_EL3 \
109046cc41d5SManish Pandey        HANDLE_EA_EL3_FIRST_NS \
1091327131c4SLeonardo Sandoval        HW_ASSISTED_COHERENCY \
1092327131c4SLeonardo Sandoval        INVERTED_MEMMAP \
1093327131c4SLeonardo Sandoval        MEASURED_BOOT \
109400e28874SManish V Badarkhe        DRTM_SUPPORT \
1095327131c4SLeonardo Sandoval        NS_TIMER_SWITCH \
1096327131c4SLeonardo Sandoval        OVERRIDE_LIBC \
1097327131c4SLeonardo Sandoval        PL011_GENERIC_UART \
10980ce2072dSTamas Ban        PLAT_RSS_NOT_SUPPORTED \
1099327131c4SLeonardo Sandoval        PROGRAMMABLE_RESET_ADDRESS \
1100327131c4SLeonardo Sandoval        PSCI_EXTENDED_STATE_ID \
1101327131c4SLeonardo Sandoval        RESET_TO_BL31 \
110225844ff7SJorge Ramirez-Ortiz        RESET_TO_BL31_WITH_PARAMS \
1103327131c4SLeonardo Sandoval        SAVE_KEYS \
1104327131c4SLeonardo Sandoval        SEPARATE_CODE_AND_RODATA \
110596a8ed14SJiafei Pan        SEPARATE_BL2_NOLOAD_REGION \
1106327131c4SLeonardo Sandoval        SEPARATE_NOBITS_REGION \
1107327131c4SLeonardo Sandoval        SPIN_ON_BL1_EXIT \
1108327131c4SLeonardo Sandoval        SPM_MM \
11091d63ae4dSMarc Bonnici        SPMC_AT_EL3 \
1110327131c4SLeonardo Sandoval        SPMD_SPM_AT_SEL2 \
1111327131c4SLeonardo Sandoval        TRUSTED_BOARD_BOOT \
1112327131c4SLeonardo Sandoval        USE_COHERENT_MEM \
1113327131c4SLeonardo Sandoval        USE_DEBUGFS \
1114327131c4SLeonardo Sandoval        ARM_IO_IN_DTB \
1115327131c4SLeonardo Sandoval        SDEI_IN_FCONF \
1116327131c4SLeonardo Sandoval        SEC_INT_DESC_IN_FCONF \
1117327131c4SLeonardo Sandoval        USE_ROMLIB \
1118327131c4SLeonardo Sandoval        USE_TBBR_DEFS \
1119327131c4SLeonardo Sandoval        WARMBOOT_ENABLE_DCACHE_EARLY \
1120327131c4SLeonardo Sandoval        BL2_AT_EL3 \
1121327131c4SLeonardo Sandoval        BL2_IN_XIP_MEM \
1122327131c4SLeonardo Sandoval        BL2_INV_DCACHE \
1123327131c4SLeonardo Sandoval        USE_SPINLOCK_CAS \
1124327131c4SLeonardo Sandoval        ENCRYPT_BL31 \
1125327131c4SLeonardo Sandoval        ENCRYPT_BL32 \
1126327131c4SLeonardo Sandoval        ERRATA_SPECULATIVE_AT \
112700e8f79cSManish Pandey        RAS_TRAP_NS_ERR_REC_ACCESS \
1128327131c4SLeonardo Sandoval        COT_DESC_IN_DTB \
1129327131c4SLeonardo Sandoval        USE_SP804_TIMER \
1130396b339dSManish V Badarkhe        PSA_FWU_SUPPORT \
1131d4582d30SManish V Badarkhe        ENABLE_SYS_REG_TRACE_FOR_NS \
113268120783SChris Kay        ENABLE_MPMM \
113368120783SChris Kay        ENABLE_MPMM_FCONF \
11341f1c0206SAbdul Halim, Muhammad Hadi Asyrafi        SIMICS_BUILD \
11356a0da736SJayanth Dodderi Chidanand        FEATURE_DETECTION \
11360b22e591SJayanth Dodderi Chidanand	TRNG_SUPPORT \
113704c7303bSOkash Khawaja	CONDITIONAL_CMO \
1138327131c4SLeonardo Sandoval)))
113973c99d4eSJuan Castillo
1140327131c4SLeonardo Sandoval$(eval $(call assert_numerics,\
1141327131c4SLeonardo Sandoval    $(sort \
1142327131c4SLeonardo Sandoval        ARM_ARCH_MAJOR \
1143327131c4SLeonardo Sandoval        ARM_ARCH_MINOR \
1144327131c4SLeonardo Sandoval        BRANCH_PROTECTION \
11456a0da736SJayanth Dodderi Chidanand        CTX_INCLUDE_PAUTH_REGS \
11466a0da736SJayanth Dodderi Chidanand        CTX_INCLUDE_MTE_REGS \
11476a0da736SJayanth Dodderi Chidanand        CTX_INCLUDE_NEVE_REGS \
11482bf4f27fSManish V Badarkhe        CRYPTO_SUPPORT \
11491298f2f1SJayanth Dodderi Chidanand        ENABLE_BRBE_FOR_NS \
115047c681b7SJayanth Dodderi Chidanand        ENABLE_TRBE_FOR_NS \
11516a0da736SJayanth Dodderi Chidanand        ENABLE_BTI \
11526a0da736SJayanth Dodderi Chidanand        ENABLE_PAUTH \
11536a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_AMUv1 \
11546a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_AMUv1p1 \
11556a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_CSV2_2 \
11566a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_DIT \
11576a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_ECV \
11586a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_FGT \
11596a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_HCX \
11606a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_PAN \
11616a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_RNG \
1162ff86e0b4SJuan Pablo Conde        ENABLE_FEAT_RNG_TRAP \
11636a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_SB \
11646a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_SEL2 \
11656a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_VHE \
11666a0da736SJayanth Dodderi Chidanand        ENABLE_MPAM_FOR_LOWER_ELS \
11676a0da736SJayanth Dodderi Chidanand        ENABLE_RME \
11686a0da736SJayanth Dodderi Chidanand        ENABLE_TRF_FOR_NS \
1169327131c4SLeonardo Sandoval        FW_ENC_STATUS \
11705357f83dSManish V Badarkhe        NR_OF_FW_BANKS \
11715357f83dSManish V Badarkhe        NR_OF_IMAGES_IN_FW_BANK \
11726a0da736SJayanth Dodderi Chidanand        RAS_EXTENSION \
1173781d07a4SJayanth Dodderi Chidanand        TWED_DELAY \
1174781d07a4SJayanth Dodderi Chidanand        ENABLE_FEAT_TWED \
1175bebcf27fSMark Brown        SVE_VECTOR_LEN \
1176327131c4SLeonardo Sandoval)))
1177c877b414SJeenu Viswambharan
1178aacff749SJustin Chadwellifdef KEY_SIZE
1179aacff749SJustin Chadwell        $(eval $(call assert_numeric,KEY_SIZE))
1180aacff749SJustin Chadwellendif
1181aacff749SJustin Chadwell
11821f461979SJustin Chadwellifeq ($(filter $(SANITIZE_UB), on off trap),)
11831f461979SJustin Chadwell        $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
11841f461979SJustin Chadwellendif
11851f461979SJustin Chadwell
118673c99d4eSJuan Castillo################################################################################
118773c99d4eSJuan Castillo# Add definitions to the cpp preprocessor based on the current build options.
118873c99d4eSJuan Castillo# This is done after including the platform specific makefile to allow the
118973c99d4eSJuan Castillo# platform to overwrite the default options
119073c99d4eSJuan Castillo################################################################################
119173c99d4eSJuan Castillo
1192327131c4SLeonardo Sandoval$(eval $(call add_defines,\
1193327131c4SLeonardo Sandoval    $(sort \
1194327131c4SLeonardo Sandoval        ALLOW_RO_XLAT_TABLES \
1195327131c4SLeonardo Sandoval        ARM_ARCH_MAJOR \
1196327131c4SLeonardo Sandoval        ARM_ARCH_MINOR \
119746789a7cSBalint Dobszay        BL2_ENABLE_SP_LOAD \
1198327131c4SLeonardo Sandoval        COLD_BOOT_SINGLE_CPU \
1199327131c4SLeonardo Sandoval        CTX_INCLUDE_AARCH32_REGS \
1200327131c4SLeonardo Sandoval        CTX_INCLUDE_FPREGS \
1201327131c4SLeonardo Sandoval        CTX_INCLUDE_PAUTH_REGS \
1202327131c4SLeonardo Sandoval        EL3_EXCEPTION_HANDLING \
1203327131c4SLeonardo Sandoval        CTX_INCLUDE_MTE_REGS \
1204327131c4SLeonardo Sandoval        CTX_INCLUDE_EL2_REGS \
1205062f8aafSArunachalam Ganapathy        CTX_INCLUDE_NEVE_REGS \
1206327131c4SLeonardo Sandoval        DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
12070063dd17SJavier Almansa Sobrino        DISABLE_MTPMU \
1208327131c4SLeonardo Sandoval        ENABLE_AMU \
12091fd685a7SChris Kay        ENABLE_AMU_AUXILIARY_COUNTERS \
1210742ca230SChris Kay        ENABLE_AMU_FCONF \
1211873d4241Sjohpow01        AMU_RESTRICT_COUNTERS \
1212327131c4SLeonardo Sandoval        ENABLE_ASSERTIONS \
1213327131c4SLeonardo Sandoval        ENABLE_BTI \
1214327131c4SLeonardo Sandoval        ENABLE_MPAM_FOR_LOWER_ELS \
1215327131c4SLeonardo Sandoval        ENABLE_PAUTH \
1216327131c4SLeonardo Sandoval        ENABLE_PIE \
1217327131c4SLeonardo Sandoval        ENABLE_PMF \
1218327131c4SLeonardo Sandoval        ENABLE_PSCI_STAT \
12195b18de09SZelalem Aweke        ENABLE_RME \
1220327131c4SLeonardo Sandoval        ENABLE_RUNTIME_INSTRUMENTATION \
1221dc78e62dSjohpow01        ENABLE_SME_FOR_NS \
1222dc78e62dSjohpow01        ENABLE_SME_FOR_SWD \
1223327131c4SLeonardo Sandoval        ENABLE_SPE_FOR_LOWER_ELS \
1224327131c4SLeonardo Sandoval        ENABLE_SVE_FOR_NS \
12250c5e7d1cSMax Shvetsov        ENABLE_SVE_FOR_SWD \
1226327131c4SLeonardo Sandoval        ENCRYPT_BL31 \
1227327131c4SLeonardo Sandoval        ENCRYPT_BL32 \
1228327131c4SLeonardo Sandoval        ERROR_DEPRECATED \
1229327131c4SLeonardo Sandoval        FAULT_INJECTION_SUPPORT \
1230327131c4SLeonardo Sandoval        GICV2_G0_FOR_EL3 \
123146cc41d5SManish Pandey        HANDLE_EA_EL3_FIRST_NS \
1232327131c4SLeonardo Sandoval        HW_ASSISTED_COHERENCY \
1233327131c4SLeonardo Sandoval        LOG_LEVEL \
1234327131c4SLeonardo Sandoval        MEASURED_BOOT \
123500e28874SManish V Badarkhe        DRTM_SUPPORT \
1236327131c4SLeonardo Sandoval        NS_TIMER_SWITCH \
1237327131c4SLeonardo Sandoval        PL011_GENERIC_UART \
1238327131c4SLeonardo Sandoval        PLAT_${PLAT} \
12390ce2072dSTamas Ban        PLAT_RSS_NOT_SUPPORTED \
1240327131c4SLeonardo Sandoval        PROGRAMMABLE_RESET_ADDRESS \
1241327131c4SLeonardo Sandoval        PSCI_EXTENDED_STATE_ID \
1242327131c4SLeonardo Sandoval        RAS_EXTENSION \
1243327131c4SLeonardo Sandoval        RESET_TO_BL31 \
124425844ff7SJorge Ramirez-Ortiz        RESET_TO_BL31_WITH_PARAMS \
1245327131c4SLeonardo Sandoval        SEPARATE_CODE_AND_RODATA \
124696a8ed14SJiafei Pan        SEPARATE_BL2_NOLOAD_REGION \
1247327131c4SLeonardo Sandoval        SEPARATE_NOBITS_REGION \
1248327131c4SLeonardo Sandoval        RECLAIM_INIT_CODE \
1249327131c4SLeonardo Sandoval        SPD_${SPD} \
1250327131c4SLeonardo Sandoval        SPIN_ON_BL1_EXIT \
1251327131c4SLeonardo Sandoval        SPM_MM \
12521d63ae4dSMarc Bonnici        SPMC_AT_EL3 \
1253327131c4SLeonardo Sandoval        SPMD_SPM_AT_SEL2 \
1254327131c4SLeonardo Sandoval        TRUSTED_BOARD_BOOT \
1255c9c56f6eSManish V Badarkhe        CRYPTO_SUPPORT \
12567dfb9911SJimmy Brisson        TRNG_SUPPORT \
1257327131c4SLeonardo Sandoval        USE_COHERENT_MEM \
1258327131c4SLeonardo Sandoval        USE_DEBUGFS \
1259327131c4SLeonardo Sandoval        ARM_IO_IN_DTB \
1260327131c4SLeonardo Sandoval        SDEI_IN_FCONF \
1261327131c4SLeonardo Sandoval        SEC_INT_DESC_IN_FCONF \
1262327131c4SLeonardo Sandoval        USE_ROMLIB \
1263327131c4SLeonardo Sandoval        USE_TBBR_DEFS \
1264327131c4SLeonardo Sandoval        WARMBOOT_ENABLE_DCACHE_EARLY \
1265327131c4SLeonardo Sandoval        BL2_AT_EL3 \
1266327131c4SLeonardo Sandoval        BL2_IN_XIP_MEM \
1267327131c4SLeonardo Sandoval        BL2_INV_DCACHE \
1268327131c4SLeonardo Sandoval        USE_SPINLOCK_CAS \
1269327131c4SLeonardo Sandoval        ERRATA_SPECULATIVE_AT \
127000e8f79cSManish Pandey        RAS_TRAP_NS_ERR_REC_ACCESS \
1271327131c4SLeonardo Sandoval        COT_DESC_IN_DTB \
1272327131c4SLeonardo Sandoval        USE_SP804_TIMER \
127312cd65e0STomas Pilar        ENABLE_FEAT_RNG \
1274ff86e0b4SJuan Pablo Conde        ENABLE_FEAT_RNG_TRAP \
12754e04478aSChris Kay        ENABLE_FEAT_SB \
12767d33ffe4SDaniel Boulby        ENABLE_FEAT_DIT \
12775357f83dSManish V Badarkhe        NR_OF_FW_BANKS \
12785357f83dSManish V Badarkhe        NR_OF_IMAGES_IN_FW_BANK \
1279396b339dSManish V Badarkhe        PSA_FWU_SUPPORT \
1280744ad974Sjohpow01        ENABLE_BRBE_FOR_NS \
1281813524eaSManish V Badarkhe        ENABLE_TRBE_FOR_NS \
1282d4582d30SManish V Badarkhe        ENABLE_SYS_REG_TRACE_FOR_NS \
12838fcd3d96SManish V Badarkhe        ENABLE_TRF_FOR_NS \
1284cb4ec47bSjohpow01        ENABLE_FEAT_HCX \
128568120783SChris Kay        ENABLE_MPMM \
128668120783SChris Kay        ENABLE_MPMM_FCONF \
1287f74cb0beSJayanth Dodderi Chidanand        ENABLE_FEAT_FGT \
1288f74cb0beSJayanth Dodderi Chidanand        ENABLE_FEAT_AMUv1 \
1289f74cb0beSJayanth Dodderi Chidanand        ENABLE_FEAT_ECV \
12901f1c0206SAbdul Halim, Muhammad Hadi Asyrafi        SIMICS_BUILD \
12916a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_AMUv1p1 \
12926a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_SEL2 \
12936a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_VHE \
12946a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_CSV2_2 \
12956a0da736SJayanth Dodderi Chidanand        ENABLE_FEAT_PAN \
12966a0da736SJayanth Dodderi Chidanand        FEATURE_DETECTION \
1297781d07a4SJayanth Dodderi Chidanand        TWED_DELAY \
1298781d07a4SJayanth Dodderi Chidanand        ENABLE_FEAT_TWED \
129904c7303bSOkash Khawaja	CONDITIONAL_CMO \
1300327131c4SLeonardo Sandoval)))
13012fae4b1eSJeenu Viswambharan
13021f461979SJustin Chadwellifeq (${SANITIZE_UB},trap)
13031f461979SJustin Chadwell        $(eval $(call add_define,MONITOR_TRAPS))
13041f461979SJustin Chadwellendif
13051f461979SJustin Chadwell
13064c117f6cSSandrine Bailleux# Define the EL3_PAYLOAD_BASE flag only if it is provided.
13074c117f6cSSandrine Bailleuxifdef EL3_PAYLOAD_BASE
13084c117f6cSSandrine Bailleux        $(eval $(call add_define,EL3_PAYLOAD_BASE))
1309cf2c8a33SAntonio Nino Diazelse
131068450a6dSAntonio Nino Diaz        # Define the PRELOADED_BL33_BASE flag only if it is provided and
131168450a6dSAntonio Nino Diaz        # EL3_PAYLOAD_BASE is not defined, as it has priority.
131268450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
131368450a6dSAntonio Nino Diaz                $(eval $(call add_define,PRELOADED_BL33_BASE))
13144c117f6cSSandrine Bailleux        endif
1315cf2c8a33SAntonio Nino Diazendif
131673c99d4eSJuan Castillo
1317209a60ccSSoby Mathew# Define the DYN_DISABLE_AUTH flag only if set.
1318209a60ccSSoby Mathewifeq (${DYN_DISABLE_AUTH},1)
1319209a60ccSSoby Mathew$(eval $(call add_define,DYN_DISABLE_AUTH))
1320209a60ccSSoby Mathewendif
1321209a60ccSSoby Mathew
1322c2ad38ceSVarun Wadekarifneq ($(findstring armlink,$(notdir $(LD))),)
1323c2ad38ceSVarun Wadekar$(eval $(call add_define,USE_ARM_LINK))
1324c2ad38ceSVarun Wadekarendif
1325c2ad38ceSVarun Wadekar
1326ce2b1ec6SManish Pandey# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
1327ce2b1ec6SManish Pandeyifeq (${SPD},spmd)
1328c33ff198SOlivier Deprezifdef SP_LAYOUT_FILE
1329ce2b1ec6SManish Pandey        -include $(BUILD_PLAT)/sp_gen.mk
1330ce2b1ec6SManish Pandey        FIP_DEPS += sp
133107c44475SManish Pandey        CRT_DEPS += sp
1332ce2b1ec6SManish Pandey        NEED_SP_PKG := yes
1333ce2b1ec6SManish Pandeyelse
1334c33ff198SOlivier Deprez        ifeq (${SPMD_SPM_AT_SEL2},1)
1335c33ff198SOlivier Deprez            $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1336c33ff198SOlivier Deprez        endif
1337ce2b1ec6SManish Pandeyendif
1338ce2b1ec6SManish Pandeyendif
1339ce2b1ec6SManish Pandey
134073c99d4eSJuan Castillo################################################################################
134173c99d4eSJuan Castillo# Build targets
134273c99d4eSJuan Castillo################################################################################
134373c99d4eSJuan Castillo
134490aa901fSSumit Garg.PHONY:	all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp fwu_fip certtool dtbs memmap doc enctool
134573c99d4eSJuan Castillo.SUFFIXES:
134673c99d4eSJuan Castillo
134773c99d4eSJuan Castilloall: msg_start
134873c99d4eSJuan Castillo
134973c99d4eSJuan Castillomsg_start:
135073c99d4eSJuan Castillo	@echo "Building ${PLAT}"
135173c99d4eSJuan Castillo
13527a24cba5SSoby Mathewifeq (${ERROR_DEPRECATED},0)
1353d5dfdeb6SJulius Werner# Check if deprecated declarations and cpp warnings should be treated as error or not.
1354c2ad38ceSVarun Wadekarifneq ($(findstring clang,$(notdir $(CC))),)
1355c2ad38ceSVarun Wadekar    CPPFLAGS		+= 	-Wno-error=deprecated-declarations
1356c2ad38ceSVarun Wadekarelse
1357bc1a03c7SDan Handley    CPPFLAGS		+= 	-Wno-error=deprecated-declarations -Wno-error=cpp
13587a24cba5SSoby Mathewendif
1359d5dfdeb6SJulius Wernerendif # !ERROR_DEPRECATED
13607a24cba5SSoby Mathew
13615accce5bSRoberto Vargas$(eval $(call MAKE_LIB_DIRS))
136261f72a34SRoberto Vargas$(eval $(call MAKE_LIB,c))
13635fee0287SRoberto Vargas
136473c99d4eSJuan Castillo# Expand build macros for the different images
136573c99d4eSJuan Castilloifeq (${NEED_BL1},yes)
1366b34635a0SChris KayBL1_SOURCES := $(sort ${BL1_SOURCES})
1367b34635a0SChris Kay
1368434d0491SZelalem Aweke$(eval $(call MAKE_BL,bl1))
136973c99d4eSJuan Castilloendif
137073c99d4eSJuan Castillo
137173c99d4eSJuan Castilloifeq (${NEED_BL2},yes)
1372c9b31ae8SRoberto Vargasifeq (${BL2_AT_EL3}, 0)
1373c9b31ae8SRoberto VargasFIP_BL2_ARGS := tb-fw
1374c9b31ae8SRoberto Vargasendif
1375c9b31ae8SRoberto Vargas
1376eb1acfb6SChris KayBL2_SOURCES := $(sort ${BL2_SOURCES})
1377eb1acfb6SChris Kay
137833950dd8SMasahiro Yamada$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
1379434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
138073c99d4eSJuan Castilloendif
138173c99d4eSJuan Castillo
13824d045d0eSMasahiro Yamadaifeq (${NEED_SCP_BL2},yes)
138333950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
13844d045d0eSMasahiro Yamadaendif
13854d045d0eSMasahiro Yamada
138673c99d4eSJuan Castilloifeq (${NEED_BL31},yes)
138773c99d4eSJuan CastilloBL31_SOURCES += ${SPD_SOURCES}
138826d1e0c3SMadhukar Pappireddy# Sort BL31 source files to remove duplicates
138926d1e0c3SMadhukar PappireddyBL31_SOURCES := $(sort ${BL31_SOURCES})
1390c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1391c6ba9b45SSumit Garg$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
1392434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
1393c6ba9b45SSumit Gargelse
139433950dd8SMasahiro Yamada$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
1395434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl31,soc-fw)))
139673c99d4eSJuan Castilloendif
1397c6ba9b45SSumit Gargendif
139873c99d4eSJuan Castillo
139970d1fc53SJuan Castillo# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
1400c939d13aSMasahiro Yamada# build system will call TOOL_ADD_IMG to print a warning message and abort the
140170d1fc53SJuan Castillo# process. Note that the dependency on BL32 applies to the FIP only.
140273c99d4eSJuan Castilloifeq (${NEED_BL32},yes)
140326d1e0c3SMadhukar Pappireddy# Sort BL32 source files to remove duplicates
140426d1e0c3SMadhukar PappireddyBL32_SOURCES := $(sort ${BL32_SOURCES})
14059cd15239SMasahiro YamadaBUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
14069cd15239SMasahiro Yamada
1407c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1408434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
1409c6ba9b45SSumit Garg	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1410c6ba9b45SSumit Gargelse
1411434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
141233950dd8SMasahiro Yamada	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
141373c99d4eSJuan Castilloendif
1414c6ba9b45SSumit Gargendif
141573c99d4eSJuan Castillo
14165b18de09SZelalem Aweke# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
14175b18de09SZelalem Aweke# needs to be built from RMM_SOURCES.
14185b18de09SZelalem Awekeifeq (${NEED_RMM},yes)
14195b18de09SZelalem Aweke# Sort RMM source files to remove duplicates
14205b18de09SZelalem AwekeRMM_SOURCES := $(sort ${RMM_SOURCES})
14215b18de09SZelalem AwekeBUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
14225b18de09SZelalem Aweke
14235b18de09SZelalem Aweke$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
14245b18de09SZelalem Aweke         $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
14255b18de09SZelalem Awekeendif
14265b18de09SZelalem Aweke
142773c99d4eSJuan Castillo# Add the BL33 image if required by the platform
142873c99d4eSJuan Castilloifeq (${NEED_BL33},yes)
142933950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
1430db6071c9SJuan Castilloendif
1431db6071c9SJuan Castillo
14329003fa0bSYatharth Kocharifeq (${NEED_BL2U},yes)
143333950dd8SMasahiro Yamada$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
1434434d0491SZelalem Aweke	$(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
14359003fa0bSYatharth Kocharendif
14369003fa0bSYatharth Kochar
143703b397a8SNishanth Menon# Expand build macros for the different images
143803b397a8SNishanth Menonifeq (${NEED_FDT},yes)
143903b397a8SNishanth Menon    $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
144003b397a8SNishanth Menonendif
144103b397a8SNishanth Menon
1442ce2b1ec6SManish Pandey# Add Secure Partition packages
1443ce2b1ec6SManish Pandeyifeq (${NEED_SP_PKG},yes)
1444ce2b1ec6SManish Pandey$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
14451e7528ecSRuari Phipps	${Q}${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT}
1446822c7279SJ-Alvessp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
1447ce2b1ec6SManish Pandey	@${ECHO_BLANK_LINE}
1448ce2b1ec6SManish Pandey	@echo "Built SP Images successfully"
1449ce2b1ec6SManish Pandey	@${ECHO_BLANK_LINE}
1450ce2b1ec6SManish Pandeyendif
1451ce2b1ec6SManish Pandey
145236eaaf37SIan Spraylocate-checkpatch:
145336eaaf37SIan Sprayifndef CHECKPATCH
145466079b04SEtienne Carriere	$(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
145536eaaf37SIan Sprayelse
145636eaaf37SIan Sprayifeq (,$(wildcard ${CHECKPATCH}))
145766079b04SEtienne Carriere	$(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
145836eaaf37SIan Sprayendif
145936eaaf37SIan Sprayendif
146036eaaf37SIan Spray
14614f6ad66aSAchin Guptaclean:
14624f6ad66aSAchin Gupta	@echo "  CLEAN"
1463f1477d4aSEvan Lloyd	$(call SHELL_REMOVE_DIR,${BUILD_PLAT})
146488a1cf1eSSami Mujawarifdef UNIX_MK
14652f2cef46SJeenu Viswambharan	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
146688a1cf1eSSami Mujawarelse
146788a1cf1eSSami Mujawar# Clear the MAKEFLAGS as we do not want
146888a1cf1eSSami Mujawar# to pass the gnumake flags to nmake.
146988a1cf1eSSami Mujawar	${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean
147088a1cf1eSSami Mujawarendif
14716f971622SJuan Castillo	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
147290aa901fSSumit Garg	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
14735accce5bSRoberto Vargas	${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
14744f6ad66aSAchin Gupta
1475eaaeece2SJames Morrisseyrealclean distclean:
1476eaaeece2SJames Morrissey	@echo "  REALCLEAN"
1477f1477d4aSEvan Lloyd	$(call SHELL_REMOVE_DIR,${BUILD_BASE})
1478f1477d4aSEvan Lloyd	$(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
147988a1cf1eSSami Mujawarifdef UNIX_MK
14802f2cef46SJeenu Viswambharan	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
148188a1cf1eSSami Mujawarelse
148288a1cf1eSSami Mujawar# Clear the MAKEFLAGS as we do not want
148388a1cf1eSSami Mujawar# to pass the gnumake flags to nmake.
148488a1cf1eSSami Mujawar	${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean
148588a1cf1eSSami Mujawarendif
1486e15591aaSNicolas Boulenguez	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
148790aa901fSSumit Garg	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
14885accce5bSRoberto Vargas	${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
14894f6ad66aSAchin Gupta
149036eaaf37SIan Spraycheckcodebase:		locate-checkpatch
149136eaaf37SIan Spray	@echo "  CHECKING STYLE"
149236eaaf37SIan Spray	@if test -d .git ; then						\
14931ef35512SPaul Beesley		git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' |	\
14941a41e8c1SDan Handley		while read GIT_FILE ;					\
14951a41e8c1SDan Handley		do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ;	\
14961a41e8c1SDan Handley		done ;							\
149736eaaf37SIan Spray	else								\
14981a41e8c1SDan Handley		 find . -type f -not -iwholename "*.git*"		\
14991a41e8c1SDan Handley		 -not -iwholename "*build*"				\
15001a41e8c1SDan Handley		 -not -iwholename "*libfdt*"				\
150161f72a34SRoberto Vargas		 -not -iwholename "*libc*"				\
15021a41e8c1SDan Handley		 -not -iwholename "*docs*"				\
15031ef35512SPaul Beesley		 -not -iwholename "*.rst"				\
15041a41e8c1SDan Handley		 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ;	\
150536eaaf37SIan Spray	fi
150636eaaf37SIan Spray
150736eaaf37SIan Spraycheckpatch:		locate-checkpatch
150836eaaf37SIan Spray	@echo "  CHECKING STYLE"
150902a76d5fSYann Gautier	@if test -n "${CHECKPATCH_OPTS}"; then				\
151002a76d5fSYann Gautier		echo "    with ${CHECKPATCH_OPTS} option(s)";		\
151102a76d5fSYann Gautier	fi
151251d28937SAntonio Nino Diaz	${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT});	\
151377a0a7f1SYann Gautier	for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`;	\
151477a0a7f1SYann Gautier	do								\
151551d28937SAntonio Nino Diaz		printf "\n[*] Checking style of '$$commit'\n\n";	\
151651d28937SAntonio Nino Diaz		git log --format=email "$$commit~..$$commit"		\
151702a76d5fSYann Gautier			-- ${CHECK_PATHS} |				\
151802a76d5fSYann Gautier			${CHECKPATCH} ${CHECKPATCH_OPTS} - || true;	\
151951d28937SAntonio Nino Diaz		git diff --format=email "$$commit~..$$commit"		\
152002a76d5fSYann Gautier			-- ${CHECK_PATHS} |				\
152102a76d5fSYann Gautier			${CHECKPATCH}  ${CHECKPATCH_OPTS} - || true;	\
152251d28937SAntonio Nino Diaz	done
152336eaaf37SIan Spray
152473c99d4eSJuan Castillocerttool: ${CRTTOOL}
152573c99d4eSJuan Castillo
1526a9812206SPali Rohár${CRTTOOL}: FORCE
1527598b166bSLionel 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
1528f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
15296f971622SJuan Castillo	@echo "Built $@ successfully"
1530f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
15316f971622SJuan Castillo
15326f971622SJuan Castilloifneq (${GENERATE_COT},0)
153373c99d4eSJuan Castillocertificates: ${CRT_DEPS} ${CRTTOOL}
15346f971622SJuan Castillo	${Q}${CRTTOOL} ${CRT_ARGS}
1535f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
15366f971622SJuan Castillo	@echo "Built $@ successfully"
15376f971622SJuan Castillo	@echo "Certificates can be found in ${BUILD_PLAT}"
1538f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
153973c99d4eSJuan Castilloendif
154027713fb4SSoby Mathew
154173c99d4eSJuan Castillo${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
15424727fd13SPali Rohár	$(eval ${CHECK_FIP_CMD})
1543819281eeSdp-arm	${Q}${FIPTOOL} create ${FIP_ARGS} $@
1544819281eeSdp-arm	${Q}${FIPTOOL} info $@
1545f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
15462f2cef46SJeenu Viswambharan	@echo "Built $@ successfully"
1547f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
1548f58ad36fSHarry Liebel
15490191262dSYatharth Kocharifneq (${GENERATE_COT},0)
15500191262dSYatharth Kocharfwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
15510191262dSYatharth Kochar	${Q}${CRTTOOL} ${FWU_CRT_ARGS}
1552052ab529SEvan Lloyd	@${ECHO_BLANK_LINE}
15530191262dSYatharth Kochar	@echo "Built $@ successfully"
15540191262dSYatharth Kochar	@echo "FWU certificates can be found in ${BUILD_PLAT}"
1555052ab529SEvan Lloyd	@${ECHO_BLANK_LINE}
15560191262dSYatharth Kocharendif
15570191262dSYatharth Kochar
15580191262dSYatharth Kochar${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
15594727fd13SPali Rohár	$(eval ${CHECK_FWU_FIP_CMD})
1560819281eeSdp-arm	${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1561819281eeSdp-arm	${Q}${FIPTOOL} info $@
1562052ab529SEvan Lloyd	@${ECHO_BLANK_LINE}
15630191262dSYatharth Kochar	@echo "Built $@ successfully"
1564052ab529SEvan Lloyd	@${ECHO_BLANK_LINE}
15650191262dSYatharth Kochar
156673c99d4eSJuan Castillofiptool: ${FIPTOOL}
156773c99d4eSJuan Castillofip: ${BUILD_PLAT}/${FIP_NAME}
15680191262dSYatharth Kocharfwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
156973c99d4eSJuan Castillo
1570a9812206SPali Rohár${FIPTOOL}: FORCE
157188a1cf1eSSami Mujawarifdef UNIX_MK
1572598b166bSLionel Debieve	${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${FIPTOOLPATH} all
157388a1cf1eSSami Mujawarelse
157488a1cf1eSSami Mujawar# Clear the MAKEFLAGS as we do not want
157588a1cf1eSSami Mujawar# to pass the gnumake flags to nmake.
157688a1cf1eSSami Mujawar	${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
157788a1cf1eSSami Mujawarendif
1578f58ad36fSHarry Liebel
1579a9812206SPali Rohárromlib.bin: libraries FORCE
1580bbb24f61SJohn 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
15815accce5bSRoberto Vargas
1582cfe83910SLouis Mayencourt# Call print_memory_map tool
1583cfe83910SLouis Mayencourtmemmap: all
1584b890b36dSLouis Mayencourt	${Q}${PYTHON} ${PRINT_MEMORY_MAP} ${BUILD_PLAT} ${INVERTED_MEMMAP}
1585cfe83910SLouis Mayencourt
15866de32378SMadhukar Pappireddydoc:
15876de32378SMadhukar Pappireddy	@echo "  BUILD DOCUMENTATION"
15886de32378SMadhukar Pappireddy	${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
15896de32378SMadhukar Pappireddy
159090aa901fSSumit Gargenctool: ${ENCTOOL}
159190aa901fSSumit Garg
1592a9812206SPali Rohár${ENCTOOL}: FORCE
1593598b166bSLionel Debieve	${Q}${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${ENCTOOLPATH} all
159490aa901fSSumit Garg	@${ECHO_BLANK_LINE}
159590aa901fSSumit Garg	@echo "Built $@ successfully"
159690aa901fSSumit Garg	@${ECHO_BLANK_LINE}
159790aa901fSSumit Garg
159835fab8c9SJoakim Bechcscope:
159935fab8c9SJoakim Bech	@echo "  CSCOPE"
160035fab8c9SJoakim Bech	${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
160135fab8c9SJoakim Bech	${Q}cscope -b -q -k
160235fab8c9SJoakim Bech
160372ee3314SRyan Harkinhelp:
16047c23126cSJohn Tsichritzis	@echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
160572ee3314SRyan Harkin	@echo ""
160672ee3314SRyan Harkin	@echo "PLAT is used to specify which platform you wish to build."
160708c7ed0fSSandrine Bailleux	@echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
160872ee3314SRyan Harkin	@echo ""
16097c23126cSJohn Tsichritzis	@echo "platform = ${PLATFORM_LIST}"
16107c23126cSJohn Tsichritzis	@echo ""
16111b578596SSandrine Bailleux	@echo "Please refer to the User Guide for a list of all supported options."
16121b578596SSandrine Bailleux	@echo "Note that the build system doesn't track dependencies for build "
16131b578596SSandrine Bailleux	@echo "options. Therefore, if any of the build options are changed "
16141b578596SSandrine Bailleux	@echo "from a previous build, a clean build must be performed."
16151b578596SSandrine Bailleux	@echo ""
161672ee3314SRyan Harkin	@echo "Supported Targets:"
16171b578596SSandrine Bailleux	@echo "  all            Build all individual bootloader binaries"
161836eaaf37SIan Spray	@echo "  bl1            Build the BL1 binary"
16198aa559c0SJeenu Viswambharan	@echo "  bl2            Build the BL2 binary"
16209003fa0bSYatharth Kochar	@echo "  bl2u           Build the BL2U binary"
1621d178637dSJuan Castillo	@echo "  bl31           Build the BL31 binary"
16229d29c227SSoby Mathew	@echo "  bl32           Build the BL32 binary. If ARCH=aarch32, then "
16239d29c227SSoby Mathew	@echo "                 this builds secure payload specified by AARCH32_SP"
162473c99d4eSJuan Castillo	@echo "  certificates   Build the certificates (requires 'GENERATE_COT=1')"
16251b578596SSandrine Bailleux	@echo "  fip            Build the Firmware Image Package (FIP)"
16260191262dSYatharth Kochar	@echo "  fwu_fip        Build the FWU Firmware Image Package (FIP)"
162736eaaf37SIan Spray	@echo "  checkcodebase  Check the coding style of the entire source tree"
162836eaaf37SIan Spray	@echo "  checkpatch     Check the coding style on changes in the current"
162936eaaf37SIan Spray	@echo "                 branch against BASE_COMMIT (default origin/master)"
163072ee3314SRyan Harkin	@echo "  clean          Clean the build for the selected platform"
163135fab8c9SJoakim Bech	@echo "  cscope         Generate cscope index"
163272ee3314SRyan Harkin	@echo "  distclean      Remove all build artifacts for all platforms"
16336f971622SJuan Castillo	@echo "  certtool       Build the Certificate generation tool"
163490aa901fSSumit Garg	@echo "  enctool        Build the Firmware encryption tool"
1635f58ad36fSHarry Liebel	@echo "  fiptool        Build the Firmware Image Package (FIP) creation tool"
1636ce2b1ec6SManish Pandey	@echo "  sp             Build the Secure Partition Packages"
163726010da1SAntonio Nino Diaz	@echo "  sptool         Build the Secure Partition Package creation tool"
163838c14d88SSoby Mathew	@echo "  dtbs           Build the Device Tree Blobs (if required for the platform)"
1639cfe83910SLouis Mayencourt	@echo "  memmap         Print the memory map of the built binaries"
16406de32378SMadhukar Pappireddy	@echo "  doc            Build html based documentation using Sphinx tool"
164172ee3314SRyan Harkin	@echo ""
16421b578596SSandrine Bailleux	@echo "Note: most build targets require PLAT to be set to a specific platform."
164372ee3314SRyan Harkin	@echo ""
164472ee3314SRyan Harkin	@echo "example: build all targets for the FVP platform:"
164572ee3314SRyan Harkin	@echo "  CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
1646a9812206SPali Rohár
1647a9812206SPali Rohár.PHONY: FORCE
1648a9812206SPali RohárFORCE:;
1649