xref: /rk3399_ARM-atf/Makefile (revision cbf9e84a193883f11a99b2f61417710a69e36e0d)
14f6ad66aSAchin Gupta#
22d51b55eSBalint Dobszay# Copyright (c) 2013-2020, 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
11eca80334SMadhukar PappireddyVERSION_MINOR			:= 3
12aaa3e722SJuan Castillo
1388154678SJuan Castillo# Default goal is build all images
1488154678SJuan Castillo.DEFAULT_GOAL			:= all
1588154678SJuan Castillo
1672fc70edSDouglas Raillard# Avoid any implicit propagation of command line variable definitions to
1772fc70edSDouglas Raillard# sub-Makefiles, like CFLAGS that we reserved for the firmware images'
1872fc70edSDouglas Raillard# usage. Other command line options like "-s" are still propagated as usual.
1972fc70edSDouglas RaillardMAKEOVERRIDES =
2072fc70edSDouglas Raillard
21231c1470SEvan LloydMAKE_HELPERS_DIRECTORY := make_helpers/
22231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_macros.mk
23e7f54dbdSEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_env.mk
2473c99d4eSJuan Castillo
2573c99d4eSJuan Castillo################################################################################
262fae4b1eSJeenu Viswambharan# Default values for build configurations, and their dependencies
2773c99d4eSJuan Castillo################################################################################
28e35c4045SJeenu Viswambharan
292fae4b1eSJeenu Viswambharaninclude ${MAKE_HELPERS_DIRECTORY}defaults.mk
30872be88aSdp-arm
31cc8b5632SAntonio Nino Diaz# Assertions enabled for DEBUG builds by default
32cc8b5632SAntonio Nino DiazENABLE_ASSERTIONS		:= ${DEBUG}
332fae4b1eSJeenu ViswambharanENABLE_PMF			:= ${ENABLE_RUNTIME_INSTRUMENTATION}
342fae4b1eSJeenu ViswambharanPLAT				:= ${DEFAULT_PLAT}
3573c99d4eSJuan Castillo
3673c99d4eSJuan Castillo################################################################################
3773c99d4eSJuan Castillo# Checkpatch script options
3873c99d4eSJuan Castillo################################################################################
3973c99d4eSJuan Castillo
40f607739cSSandrine BailleuxCHECKCODE_ARGS		:=	--no-patch
41f0b489c1SDan Handley# Do not check the coding style on imported library files or documentation files
424501843fSGilad Ben-YossefINC_ARM_DIRS_TO_CHECK	:=	$(sort $(filter-out                     \
434501843fSGilad Ben-Yossef					include/drivers/arm/cryptocell,	\
444501843fSGilad Ben-Yossef					$(wildcard include/drivers/arm/*)))
454501843fSGilad Ben-YossefINC_ARM_DIRS_TO_CHECK	+=	include/drivers/arm/cryptocell/*.h
464501843fSGilad Ben-YossefINC_DRV_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
474501843fSGilad Ben-Yossef					include/drivers/arm,		\
484501843fSGilad Ben-Yossef					$(wildcard include/drivers/*)))
49f0b489c1SDan HandleyINC_LIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
501a41e8c1SDan Handley					include/lib/libfdt		\
5161f72a34SRoberto Vargas					include/lib/libc,		\
52f0b489c1SDan Handley					$(wildcard include/lib/*)))
53f0b489c1SDan HandleyINC_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
544501843fSGilad Ben-Yossef					include/lib			\
554501843fSGilad Ben-Yossef					include/drivers,		\
56f0b489c1SDan Handley					$(wildcard include/*)))
57f0b489c1SDan HandleyLIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
58d801fbb0Sdp-arm					lib/compiler-rt			\
5955cdcf75SAntonio Nino Diaz					lib/libfdt%			\
6061f72a34SRoberto Vargas					lib/libc,			\
61f0b489c1SDan Handley					$(wildcard lib/*)))
62f0b489c1SDan HandleyROOT_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
63f0b489c1SDan Handley					lib				\
64f0b489c1SDan Handley					include				\
65f0b489c1SDan Handley					docs				\
661ef35512SPaul Beesley					%.rst,				\
67f0b489c1SDan Handley					$(wildcard *)))
68f0b489c1SDan HandleyCHECK_PATHS		:=	${ROOT_DIRS_TO_CHECK}			\
69f0b489c1SDan Handley				${INC_DIRS_TO_CHECK}			\
70f0b489c1SDan Handley				${INC_LIB_DIRS_TO_CHECK}		\
714501843fSGilad Ben-Yossef				${LIB_DIRS_TO_CHECK}			\
724501843fSGilad Ben-Yossef				${INC_DRV_DIRS_TO_CHECK}		\
734501843fSGilad Ben-Yossef				${INC_ARM_DIRS_TO_CHECK}
7436eaaf37SIan Spray
7573c99d4eSJuan Castillo
7673c99d4eSJuan Castillo################################################################################
7773c99d4eSJuan Castillo# Process build options
7873c99d4eSJuan Castillo################################################################################
7973c99d4eSJuan Castillo
8073c99d4eSJuan Castillo# Verbose flag
81e35c4045SJeenu Viswambharanifeq (${V},0)
82b169f6a9SEvan Lloyd        Q:=@
83ee1ba6d4SAndre Przywara        ECHO:=@echo
8436eaaf37SIan Spray        CHECKCODE_ARGS	+=	--no-summary --terse
854f6ad66aSAchin Guptaelse
86b169f6a9SEvan Lloyd        Q:=
87b5a0f4bdSAntonio Nino Diaz        ECHO:=$(ECHO_QUIET)
884f6ad66aSAchin Guptaendif
89ee1ba6d4SAndre Przywara
90ee1ba6d4SAndre Przywaraifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
91ee1ba6d4SAndre Przywara        Q:=@
92b5a0f4bdSAntonio Nino Diaz        ECHO:=$(ECHO_QUIET)
93ee1ba6d4SAndre Przywaraendif
94ee1ba6d4SAndre Przywara
95ee1ba6d4SAndre Przywaraexport Q ECHO
962f2cef46SJeenu Viswambharan
9773c99d4eSJuan Castillo# The cert_create tool cannot generate certificates individually, so we use the
9873c99d4eSJuan Castillo# target 'certificates' to create them all
9973c99d4eSJuan Castilloifneq (${GENERATE_COT},0)
10073c99d4eSJuan Castillo        FIP_DEPS += certificates
1010191262dSYatharth Kochar        FWU_FIP_DEPS += fwu_certificates
10273c99d4eSJuan Castilloendif
10373c99d4eSJuan Castillo
1049fc59639SAlexei Fedorov# Process BRANCH_PROTECTION value and set
1059fc59639SAlexei Fedorov# Pointer Authentication and Branch Target Identification flags
1069fc59639SAlexei Fedorovifeq (${BRANCH_PROTECTION},0)
1079fc59639SAlexei Fedorov	# Default value turns off all types of branch protection
1089fc59639SAlexei Fedorov	BP_OPTION := none
1099fc59639SAlexei Fedorovelse ifneq (${ARCH},aarch64)
1109fc59639SAlexei Fedorov        $(error BRANCH_PROTECTION requires AArch64)
1119fc59639SAlexei Fedorovelse ifeq (${BRANCH_PROTECTION},1)
1129fc59639SAlexei Fedorov	# Enables all types of branch protection features
1139fc59639SAlexei Fedorov	BP_OPTION := standard
1149fc59639SAlexei Fedorov	ENABLE_BTI := 1
1159fc59639SAlexei Fedorov	ENABLE_PAUTH := 1
1169fc59639SAlexei Fedorovelse ifeq (${BRANCH_PROTECTION},2)
1179fc59639SAlexei Fedorov	# Return address signing to its standard level
1189fc59639SAlexei Fedorov	BP_OPTION := pac-ret
1199fc59639SAlexei Fedorov	ENABLE_PAUTH := 1
1209fc59639SAlexei Fedorovelse ifeq (${BRANCH_PROTECTION},3)
1219fc59639SAlexei Fedorov	# Extend the signing to include leaf functions
1229fc59639SAlexei Fedorov	BP_OPTION := pac-ret+leaf
1239fc59639SAlexei Fedorov	ENABLE_PAUTH := 1
1249fc59639SAlexei Fedorovelse
1259fc59639SAlexei Fedorov        $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
1269fc59639SAlexei Fedorovendif
12773c99d4eSJuan Castillo
128c97cba4eSSoby Mathew# USE_SPINLOCK_CAS requires AArch64 build
129c97cba4eSSoby Mathewifeq (${USE_SPINLOCK_CAS},1)
130c97cba4eSSoby Mathewifneq (${ARCH},aarch64)
131c97cba4eSSoby Mathew        $(error USE_SPINLOCK_CAS requires AArch64)
132c97cba4eSSoby Mathewelse
133c97cba4eSSoby Mathew        $(info USE_SPINLOCK_CAS is an experimental feature)
134c97cba4eSSoby Mathewendif
135c97cba4eSSoby Mathewendif
136c97cba4eSSoby Mathew
1370ca3913dSOlivier Deprez# USE_DEBUGFS experimental feature recommended only in debug builds
1380ca3913dSOlivier Deprezifeq (${USE_DEBUGFS},1)
1390ca3913dSOlivier Deprezifeq (${DEBUG},1)
1400ca3913dSOlivier Deprez        $(warning DEBUGFS experimental feature is enabled.)
1410ca3913dSOlivier Deprezelse
1420ca3913dSOlivier Deprez        $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
1430ca3913dSOlivier Deprezendif
1440ca3913dSOlivier Deprezendif
1450ca3913dSOlivier Deprez
146c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
147c6ba9b45SSumit GargENC_ARGS += -f ${FW_ENC_STATUS}
148c6ba9b45SSumit GargENC_ARGS += -k ${ENC_KEY}
149c6ba9b45SSumit GargENC_ARGS += -n ${ENC_NONCE}
150c6ba9b45SSumit GargFIP_DEPS += enctool
151c6ba9b45SSumit GargFWU_FIP_DEPS += enctool
152c6ba9b45SSumit Gargendif
153c6ba9b45SSumit Garg
15473c99d4eSJuan Castillo################################################################################
15573c99d4eSJuan Castillo# Toolchain
15673c99d4eSJuan Castillo################################################################################
15773c99d4eSJuan Castillo
15872610c41Sdp-armHOSTCC			:=	gcc
15972610c41Sdp-armexport HOSTCC
16072610c41Sdp-arm
16173c99d4eSJuan CastilloCC			:=	${CROSS_COMPILE}gcc
16273c99d4eSJuan CastilloCPP			:=	${CROSS_COMPILE}cpp
16373c99d4eSJuan CastilloAS			:=	${CROSS_COMPILE}gcc
16473c99d4eSJuan CastilloAR			:=	${CROSS_COMPILE}ar
1652adee763SRoberto VargasLINKER			:=	${CROSS_COMPILE}ld
16673c99d4eSJuan CastilloOC			:=	${CROSS_COMPILE}objcopy
16773c99d4eSJuan CastilloOD			:=	${CROSS_COMPILE}objdump
16873c99d4eSJuan CastilloNM			:=	${CROSS_COMPILE}nm
16973c99d4eSJuan CastilloPP			:=	${CROSS_COMPILE}gcc -E
17038c14d88SSoby MathewDTC			:=	dtc
17173c99d4eSJuan Castillo
172b25a577fSJulius Werner# Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH).
173b25a577fSJulius Wernerifneq ($(strip $(wildcard ${LD}.bfd) \
1742adee763SRoberto Vargas	$(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),)
1752adee763SRoberto VargasLINKER			:=	${LINKER}.bfd
176b25a577fSJulius Wernerendif
177b25a577fSJulius Werner
17826e63c44SEtienne Carriereifeq (${ARM_ARCH_MAJOR},7)
17926e63c44SEtienne Carrieretarget32-directive	= 	-target arm-none-eabi
18026e63c44SEtienne Carriere# Will set march32-directive from platform configuration
18126e63c44SEtienne Carriereelse
18226e63c44SEtienne Carrieretarget32-directive	= 	-target armv8a-none-eabi
183fa6f774bSAlexei Fedorov
184fa6f774bSAlexei Fedorov# Set the compiler's target architecture profile based on ARM_ARCH_MINOR option
185fa6f774bSAlexei Fedorovifeq (${ARM_ARCH_MINOR},0)
186da547d4bSSandrine Bailleuxmarch32-directive	= 	-march=armv8-a
187fa6f774bSAlexei Fedorovmarch64-directive	= 	-march=armv8-a
188fa6f774bSAlexei Fedorovelse
189fa6f774bSAlexei Fedorovmarch32-directive	= 	-march=armv8.${ARM_ARCH_MINOR}-a
190fa6f774bSAlexei Fedorovmarch64-directive	= 	-march=armv8.${ARM_ARCH_MINOR}-a
191fa6f774bSAlexei Fedorovendif
19226e63c44SEtienne Carriereendif
19326e63c44SEtienne Carriere
1947ff088d1SManish V Badarkhe# Memory tagging is supported in architecture Armv8.5-A AArch64 and onwards
1957ff088d1SManish V Badarkheifeq ($(ARCH), aarch64)
1967ff088d1SManish V Badarkheifeq ($(shell test $(ARM_ARCH_MAJOR) -gt 8; echo $$?),0)
1977ff088d1SManish V Badarkhemem_tag_arch_support	= 	yes
1987ff088d1SManish V Badarkheelse ifeq ($(shell test $(ARM_ARCH_MAJOR) -eq 8 -a $(ARM_ARCH_MINOR) -ge 5; \
1997ff088d1SManish V Badarkhe	   echo $$?),0)
2007ff088d1SManish V Badarkhemem_tag_arch_support	= 	yes
2017ff088d1SManish V Badarkheendif
2027ff088d1SManish V Badarkheendif
2037ff088d1SManish V Badarkhe
2047ff088d1SManish V Badarkhe# Enabled required option for memory stack tagging. Currently, these options are
2057ff088d1SManish V Badarkhe# enabled only for clang and armclang compiler.
2067ff088d1SManish V Badarkheifeq (${SUPPORT_STACK_MEMTAG},yes)
2077ff088d1SManish V Badarkheifdef mem_tag_arch_support
2087ff088d1SManish V Badarkheifneq ( ,$(filter $(notdir $(CC)),armclang clang))
2097ff088d1SManish V Badarkhemarch64-directive       =       -march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a+memtag
2107ff088d1SManish V Badarkheifeq ($(notdir $(CC)),armclang)
2117ff088d1SManish V BadarkheTF_CFLAGS		+=	-mmemtag-stack
2127ff088d1SManish V Badarkheelse ifeq ($(notdir $(CC)),clang)
2137ff088d1SManish V BadarkheTF_CFLAGS		+=	-fsanitize=memtag
2147ff088d1SManish V Badarkheendif
2157ff088d1SManish V Badarkheendif
2167ff088d1SManish V Badarkheelse
2177ff088d1SManish V Badarkhe$(error "Error: stack memory tagging is not supported for architecture \
2187ff088d1SManish V Badarkhe	${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
2197ff088d1SManish V Badarkheendif
2207ff088d1SManish V Badarkheendif
2217ff088d1SManish V Badarkhe
222fd18a8fcSVarun Wadekarifneq ($(findstring armclang,$(notdir $(CC))),)
22326e63c44SEtienne CarriereTF_CFLAGS_aarch32	=	-target arm-arm-none-eabi $(march32-directive)
224fa6f774bSAlexei FedorovTF_CFLAGS_aarch64	=	-target aarch64-arm-none-eabi $(march64-directive)
2252adee763SRoberto VargasLD			=	$(LINKER)
2261684b873SRoberto VargasAS			=	$(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
2277040155eSRoberto VargasCPP			=	$(CC) -E $(TF_CFLAGS_$(ARCH))
2287040155eSRoberto VargasPP			=	$(CC) -E $(TF_CFLAGS_$(ARCH))
2297559633bSdp-armelse ifneq ($(findstring clang,$(notdir $(CC))),)
230eff737c1SArve HjønnevågCLANG_CCDIR		=	$(if $(filter-out ./,$(dir $(CC))),$(dir $(CC)),)
231e2bfec0bSYann GautierTF_CFLAGS_aarch32	=	$(target32-directive) $(march32-directive)
232fa6f774bSAlexei FedorovTF_CFLAGS_aarch64	=	-target aarch64-elf $(march64-directive)
233eff737c1SArve HjønnevågLD			=	$(CLANG_CCDIR)ld.lld
234641f16e7SAmbroise Vincentifeq (, $(shell which $(LD)))
235641f16e7SAmbroise Vincent$(error "No $(LD) in PATH, make sure it is installed or set LD to a different linker")
236641f16e7SAmbroise Vincentendif
2371684b873SRoberto VargasAS			=	$(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
2387040155eSRoberto VargasCPP			=	$(CC) -E
2397040155eSRoberto VargasPP			=	$(CC) -E
240edbce9aaSzelalem-awekeelse ifneq ($(findstring gcc,$(notdir $(CC))),)
241edbce9aaSzelalem-awekeTF_CFLAGS_aarch32	=	$(march32-directive)
242edbce9aaSzelalem-awekeTF_CFLAGS_aarch64	=	$(march64-directive)
243edbce9aaSzelalem-awekeifeq ($(ENABLE_LTO),1)
244edbce9aaSzelalem-aweke	# Enable LTO only for aarch64
245edbce9aaSzelalem-aweke	ifeq (${ARCH},aarch64)
246edbce9aaSzelalem-aweke		LTO_CFLAGS	=	-flto
247edbce9aaSzelalem-aweke		# Use gcc as a wrapper for the ld, recommended for LTO
248edbce9aaSzelalem-aweke		LINKER		:=	${CROSS_COMPILE}gcc
249edbce9aaSzelalem-aweke	endif
250edbce9aaSzelalem-awekeendif
251edbce9aaSzelalem-awekeLD			=	$(LINKER)
252d5461857Sdp-armelse
25326e63c44SEtienne CarriereTF_CFLAGS_aarch32	=	$(march32-directive)
254fa6f774bSAlexei FedorovTF_CFLAGS_aarch64	=	$(march64-directive)
2552adee763SRoberto VargasLD			=	$(LINKER)
256d5461857Sdp-armendif
257d5461857Sdp-arm
25832b209bfSAhmad Fatoum# Process Debug flag
25932b209bfSAhmad Fatoum$(eval $(call add_define,DEBUG))
26032b209bfSAhmad Fatoumifneq (${DEBUG}, 0)
26132b209bfSAhmad Fatoum        BUILD_TYPE	:=	debug
26232b209bfSAhmad Fatoum        TF_CFLAGS	+= 	-g
26332b209bfSAhmad Fatoum
26432b209bfSAhmad Fatoum        ifneq ($(findstring clang,$(notdir $(CC))),)
26532b209bfSAhmad Fatoum             ASFLAGS		+= 	-g
26632b209bfSAhmad Fatoum        else
26732b209bfSAhmad Fatoum             ASFLAGS		+= 	-g -Wa,--gdwarf-2
26832b209bfSAhmad Fatoum        endif
26932b209bfSAhmad Fatoum
27032b209bfSAhmad Fatoum        # Use LOG_LEVEL_INFO by default for debug builds
27132b209bfSAhmad Fatoum        LOG_LEVEL	:=	40
27232b209bfSAhmad Fatoumelse
27332b209bfSAhmad Fatoum        BUILD_TYPE	:=	release
27432b209bfSAhmad Fatoum        # Use LOG_LEVEL_NOTICE by default for release builds
27532b209bfSAhmad Fatoum        LOG_LEVEL	:=	20
27632b209bfSAhmad Fatoumendif
27732b209bfSAhmad Fatoum
278f1de4c8fSPeiyuan Song# Default build string (git branch and commit)
279f1de4c8fSPeiyuan Songifeq (${BUILD_STRING},)
280f1de4c8fSPeiyuan Song        BUILD_STRING  :=  $(shell git describe --always --dirty --tags 2> /dev/null)
281f1de4c8fSPeiyuan Songendif
282f1de4c8fSPeiyuan SongVERSION_STRING    :=  v${VERSION_MAJOR}.${VERSION_MINOR}(${BUILD_TYPE}):${BUILD_STRING}
283f1de4c8fSPeiyuan Song
2848fd9d4d5SAntonio Nino Diazifeq (${AARCH32_INSTRUCTION_SET},A32)
2858fd9d4d5SAntonio Nino DiazTF_CFLAGS_aarch32	+=	-marm
2868fd9d4d5SAntonio Nino Diazelse ifeq (${AARCH32_INSTRUCTION_SET},T32)
2878fd9d4d5SAntonio Nino DiazTF_CFLAGS_aarch32	+=	-mthumb
2888fd9d4d5SAntonio Nino Diazelse
2898fd9d4d5SAntonio Nino Diaz$(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
2908fd9d4d5SAntonio Nino Diazendif
2918fd9d4d5SAntonio Nino Diaz
292a9c4dde3SSandrine BailleuxTF_CFLAGS_aarch32	+=	-mno-unaligned-access
293d5461857Sdp-armTF_CFLAGS_aarch64	+=	-mgeneral-regs-only -mstrict-align
2949d29c227SSoby Mathew
2959fc59639SAlexei Fedorovifneq (${BP_OPTION},none)
2969fc59639SAlexei FedorovTF_CFLAGS_aarch64	+=	-mbranch-protection=${BP_OPTION}
2979fc59639SAlexei Fedorovendif
2989fc59639SAlexei Fedorov
29926e63c44SEtienne CarriereASFLAGS_aarch32		=	$(march32-directive)
300fa6f774bSAlexei FedorovASFLAGS_aarch64		=	$(march64-directive)
301b86048c4SAntonio Nino Diaz
3029ab81b5eSJustin Chadwell# General warnings
3039ab81b5eSJustin ChadwellWARNINGS		:=	-Wall -Wmissing-include-dirs -Wunused	\
304b7f6525dSJustin Chadwell				-Wdisabled-optimization	-Wvla -Wshadow	\
305ca661a00SMadhukar Pappireddy				-Wno-unused-parameter -Wredundant-decls
3069ab81b5eSJustin Chadwell
3079ab81b5eSJustin Chadwell# Additional warnings
3089ab81b5eSJustin Chadwell# Level 1
309e7c645b5SYann GautierWARNING1 := -Wextra
310e7c645b5SYann GautierWARNING1 += -Wmissing-format-attribute
311e7c645b5SYann GautierWARNING1 += -Wmissing-prototypes
312e7c645b5SYann GautierWARNING1 += -Wold-style-definition
313e7c645b5SYann Gautier
314b7f6525dSJustin Chadwell# Level 2
315e7c645b5SYann GautierWARNING2 := -Waggregate-return
316e7c645b5SYann GautierWARNING2 += -Wcast-align
317e7c645b5SYann GautierWARNING2 += -Wnested-externs
318e7c645b5SYann Gautier
319e7c645b5SYann GautierWARNING3 := -Wbad-function-cast
320e7c645b5SYann GautierWARNING3 += -Wcast-qual
321e7c645b5SYann GautierWARNING3 += -Wconversion
322e7c645b5SYann GautierWARNING3 += -Wpacked
323e7c645b5SYann GautierWARNING3 += -Wpointer-arith
324e7c645b5SYann GautierWARNING3 += -Wswitch-default
325e7c645b5SYann Gautier
326e7c645b5SYann Gautierifeq (${W},1)
3279ab81b5eSJustin ChadwellWARNINGS += $(WARNING1)
328e7c645b5SYann Gautierelse ifeq (${W},2)
3299ab81b5eSJustin ChadwellWARNINGS += $(WARNING1) $(WARNING2)
330e7c645b5SYann Gautierelse ifeq (${W},3)
3319ab81b5eSJustin ChadwellWARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
332e7c645b5SYann Gautierendif
333e7c645b5SYann Gautier
3349ab81b5eSJustin Chadwell# Compiler specific warnings
33500296576SAmbroise Vincentifeq ($(findstring clang,$(notdir $(CC))),)
33693c690ebSJustin Chadwell# not using clang
337d7b4cd41SJustin ChadwellWARNINGS	+=		-Wunused-but-set-variable -Wmaybe-uninitialized	\
338d7b4cd41SJustin Chadwell				-Wpacked-bitfield-compat -Wshift-overflow=2 \
339d7b4cd41SJustin Chadwell				-Wlogical-op
34093c690ebSJustin Chadwellelse
34193c690ebSJustin Chadwell# using clang
342d7b4cd41SJustin ChadwellWARNINGS	+=		-Wshift-overflow -Wshift-sign-overflow \
343d7b4cd41SJustin Chadwell				-Wlogical-op-parentheses
34400296576SAmbroise Vincentendif
34500296576SAmbroise Vincent
3466336b07aSYann Gautierifneq (${E},0)
3476336b07aSYann GautierERRORS := -Werror
3486336b07aSYann Gautierendif
3496336b07aSYann Gautier
350ea7a57a3SRoberto VargasCPPFLAGS		=	${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc	\
3519ab81b5eSJustin Chadwell				$(ERRORS) $(WARNINGS)
35259de5096SMasahiro YamadaASFLAGS			+=	$(CPPFLAGS) $(ASFLAGS_$(ARCH))			\
353d5dfdeb6SJulius Werner				-ffreestanding -Wa,--fatal-warnings
35459de5096SMasahiro YamadaTF_CFLAGS		+=	$(CPPFLAGS) $(TF_CFLAGS_$(ARCH))		\
355ebd6efaeSSamuel Holland				-ffunction-sections -fdata-sections		\
356ebd6efaeSSamuel Holland				-ffreestanding -fno-builtin -fno-common		\
357ebd6efaeSSamuel Holland				-Os -std=gnu99
35873c99d4eSJuan Castillo
3591f461979SJustin Chadwellifeq (${SANITIZE_UB},on)
3601f461979SJustin ChadwellTF_CFLAGS		+=	-fsanitize=undefined -fno-sanitize-recover
3611f461979SJustin Chadwellendif
3621f461979SJustin Chadwellifeq (${SANITIZE_UB},trap)
3631f461979SJustin ChadwellTF_CFLAGS		+=	-fsanitize=undefined -fno-sanitize-recover	\
3641f461979SJustin Chadwell				-fsanitize-undefined-trap-on-error
3651f461979SJustin Chadwellendif
3661f461979SJustin Chadwell
367f7ec31dbSdavid cunadoGCC_V_OUTPUT		:=	$(shell $(CC) -v 2>&1)
368f7ec31dbSdavid cunado
369641f16e7SAmbroise Vincent# LD = armlink
370c2ad38ceSVarun Wadekarifneq ($(findstring armlink,$(notdir $(LD))),)
371c2ad38ceSVarun WadekarTF_LDFLAGS		+=	--diag_error=warning --lto_level=O1
372c2ad38ceSVarun WadekarTF_LDFLAGS		+=	--remove --info=unused,unusedsymbols
373edbce9aaSzelalem-awekeTF_LDFLAGS		+=	$(TF_LDFLAGS_$(ARCH))
374641f16e7SAmbroise Vincent
375641f16e7SAmbroise Vincent# LD = gcc (used when GCC LTO is enabled)
376edbce9aaSzelalem-awekeelse ifneq ($(findstring gcc,$(notdir $(LD))),)
377edbce9aaSzelalem-aweke# Pass ld options with Wl or Xlinker switches
378edbce9aaSzelalem-awekeTF_LDFLAGS		+=	-Wl,--fatal-warnings -O1
379edbce9aaSzelalem-awekeTF_LDFLAGS		+=	-Wl,--gc-sections
380edbce9aaSzelalem-awekeifeq ($(ENABLE_LTO),1)
381edbce9aaSzelalem-aweke	ifeq (${ARCH},aarch64)
382edbce9aaSzelalem-aweke		TF_LDFLAGS	+=	-flto -fuse-linker-plugin
383edbce9aaSzelalem-aweke	endif
384edbce9aaSzelalem-awekeendif
385edbce9aaSzelalem-aweke# GCC automatically adds fix-cortex-a53-843419 flag when used to link
386edbce9aaSzelalem-aweke# which breaks some builds, so disable if errata fix is not explicitly enabled
387edbce9aaSzelalem-awekeifneq (${ERRATA_A53_843419},1)
388edbce9aaSzelalem-aweke	TF_LDFLAGS	+= 	-mno-fix-cortex-a53-843419
389edbce9aaSzelalem-awekeendif
390edbce9aaSzelalem-awekeTF_LDFLAGS		+= 	-nostdlib
391edbce9aaSzelalem-awekeTF_LDFLAGS		+=	$(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
392641f16e7SAmbroise Vincent
393641f16e7SAmbroise Vincent# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
394c2ad38ceSVarun Wadekarelse
395c2b8806fSDouglas RaillardTF_LDFLAGS		+=	--fatal-warnings -O1
396c2b8806fSDouglas RaillardTF_LDFLAGS		+=	--gc-sections
397641f16e7SAmbroise Vincent# ld.lld doesn't recognize the errata flags,
398641f16e7SAmbroise Vincent# therefore don't add those in that case
399641f16e7SAmbroise Vincentifeq ($(findstring ld.lld,$(notdir $(LD))),)
400c2b8806fSDouglas RaillardTF_LDFLAGS		+=	$(TF_LDFLAGS_$(ARCH))
401edbce9aaSzelalem-awekeendif
402641f16e7SAmbroise Vincentendif
40373c99d4eSJuan Castillo
40403b397a8SNishanth MenonDTC_FLAGS		+=	-I dts -O dtb
405a6de824fSLouis MayencourtDTC_CPPFLAGS		+=	-P -nostdinc -Iinclude -Ifdts -undef \
406a6de824fSLouis Mayencourt				-x assembler-with-cpp $(DEFINES)
40703b397a8SNishanth Menon
4080ab49645SAlexei Fedorovifeq ($(MEASURED_BOOT),1)
4090ab49645SAlexei FedorovDTC_CPPFLAGS		+=	-DMEASURED_BOOT -DBL2_HASH_SIZE=${TCG_DIGEST_SIZE}
4100ab49645SAlexei Fedorovendif
4110ab49645SAlexei Fedorov
41273c99d4eSJuan Castillo################################################################################
41373c99d4eSJuan Castillo# Common sources and include directories
41473c99d4eSJuan Castillo################################################################################
415d801fbb0Sdp-arminclude lib/compiler-rt/compiler-rt.mk
41673c99d4eSJuan Castillo
41773c99d4eSJuan CastilloBL_COMMON_SOURCES	+=	common/bl_common.c			\
4187f56e9a3SSoby Mathew				common/tf_log.c				\
4199d29c227SSoby Mathew				common/${ARCH}/debug.S			\
42091b48c9fSJulius Werner				drivers/console/multi_console.c		\
4219d29c227SSoby Mathew				lib/${ARCH}/cache_helpers.S		\
4229d29c227SSoby Mathew				lib/${ARCH}/misc_helpers.S		\
423566034fcSSoby Mathew				plat/common/plat_bl_common.c		\
4247f56e9a3SSoby Mathew				plat/common/plat_log_common.c		\
42575311203Sdp-arm				plat/common/${ARCH}/plat_common.c	\
4269d29c227SSoby Mathew				plat/common/${ARCH}/platform_helpers.S	\
42761f72a34SRoberto Vargas				${COMPILER_RT_SRCS}
428d7a6b0f8SRyan Harkin
4298422a840SAntonio Nino Diazifeq ($(notdir $(CC)),armclang)
4308422a840SAntonio Nino DiazBL_COMMON_SOURCES	+=	lib/${ARCH}/armclang_printf.S
4318422a840SAntonio Nino Diazendif
4328422a840SAntonio Nino Diaz
4331f461979SJustin Chadwellifeq (${SANITIZE_UB},on)
4341f461979SJustin ChadwellBL_COMMON_SOURCES	+=	plat/common/ubsan.c
4351f461979SJustin Chadwellendif
4361f461979SJustin Chadwell
43701d237cbSYann GautierINCLUDES		+=	-Iinclude				\
438f5478dedSAntonio Nino Diaz				-Iinclude/arch/${ARCH}			\
43909d40e0eSAntonio Nino Diaz				-Iinclude/lib/cpus/${ARCH}		\
44009d40e0eSAntonio Nino Diaz				-Iinclude/lib/el3_runtime/${ARCH}	\
44109d40e0eSAntonio Nino Diaz				${PLAT_INCLUDES}			\
44209d40e0eSAntonio Nino Diaz				${SPD_INCLUDES}
44309d40e0eSAntonio Nino Diaz
4449c6d1c50SAntonio Nino Diazinclude common/backtrace/backtrace.mk
4459c6d1c50SAntonio Nino Diaz
44673c99d4eSJuan Castillo################################################################################
44773c99d4eSJuan Castillo# Generic definitions
44873c99d4eSJuan Castillo################################################################################
44973c99d4eSJuan Castillo
450231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
451231c1470SEvan Lloyd
45273c99d4eSJuan CastilloBUILD_BASE		:=	./build
45373c99d4eSJuan CastilloBUILD_PLAT		:=	${BUILD_BASE}/${PLAT}/${BUILD_TYPE}
45473c99d4eSJuan Castillo
455231c1470SEvan LloydSPDS			:=	$(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
45673c99d4eSJuan Castillo
45773c99d4eSJuan Castillo# Platforms providing their own TBB makefile may override this value
45873c99d4eSJuan CastilloINCLUDE_TBBR_MK		:=	1
45973c99d4eSJuan Castillo
46073c99d4eSJuan Castillo
46173c99d4eSJuan Castillo################################################################################
46273c99d4eSJuan Castillo# Include SPD Makefile if one has been specified
46373c99d4eSJuan Castillo################################################################################
46473c99d4eSJuan Castillo
46573c99d4eSJuan Castilloifneq (${SPD},none)
4669d29c227SSoby Mathew    ifeq (${ARCH},aarch32)
4679d29c227SSoby Mathew        $(error "Error: SPD is incompatible with AArch32.")
4689d29c227SSoby Mathew    endif
46928f39f02SMax Shvetsov
4704c117f6cSSandrine Bailleux    ifdef EL3_PAYLOAD_BASE
4714c117f6cSSandrine Bailleux        $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
4724c117f6cSSandrine Bailleux        $(warning "The SPD and its BL32 companion will be present but ignored.")
4734c117f6cSSandrine Bailleux    endif
47428f39f02SMax Shvetsov
475c3fb00d9SAchin Gupta    ifeq (${SPD},spmd)
476033039f8SMax Shvetsov        $(warning "SPMD is an experimental feature")
477c3fb00d9SAchin Gupta        # SPMD is located in std_svc directory
478c3fb00d9SAchin Gupta        SPD_DIR := std_svc
47928f39f02SMax Shvetsov
480033039f8SMax Shvetsov        ifeq ($(SPMD_SPM_AT_SEL2),1)
48128f39f02SMax Shvetsov            ifeq ($(CTX_INCLUDE_EL2_REGS),0)
482033039f8SMax Shvetsov                $(error SPMD with SPM at S-EL2 requires CTX_INCLUDE_EL2_REGS option)
483033039f8SMax Shvetsov            endif
48428f39f02SMax Shvetsov        endif
485c3fb00d9SAchin Gupta    else
486c3fb00d9SAchin Gupta        # All other SPDs in spd directory
487c3fb00d9SAchin Gupta        SPD_DIR := spd
488c3fb00d9SAchin Gupta    endif
489c3fb00d9SAchin Gupta
49073c99d4eSJuan Castillo    # We expect to locate an spd.mk under the specified SPD directory
491c3fb00d9SAchin Gupta    SPD_MAKE	:=	$(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
492c3fb00d9SAchin Gupta
49373c99d4eSJuan Castillo    ifeq (${SPD_MAKE},)
494c3fb00d9SAchin Gupta        $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
49573c99d4eSJuan Castillo    endif
49673c99d4eSJuan Castillo    $(info Including ${SPD_MAKE})
49773c99d4eSJuan Castillo    include ${SPD_MAKE}
49873c99d4eSJuan Castillo
49970d1fc53SJuan Castillo    # If there's BL32 companion for the chosen SPD, we expect that the SPD's
50070d1fc53SJuan Castillo    # Makefile would set NEED_BL32 to "yes". In this case, the build system
50170d1fc53SJuan Castillo    # supports two mutually exclusive options:
50270d1fc53SJuan Castillo    # * BL32 is built from source: then BL32_SOURCES must contain the list
50370d1fc53SJuan Castillo    #   of source files to build BL32
50470d1fc53SJuan Castillo    # * BL32 is a prebuilt binary: then BL32 must point to the image file
50570d1fc53SJuan Castillo    #   that will be included in the FIP
50670d1fc53SJuan Castillo    # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
50770d1fc53SJuan Castillo    # over the sources.
508e35c4045SJeenu Viswambharanendif
509e35c4045SJeenu Viswambharan
51051faada7SDouglas Raillard################################################################################
51173c99d4eSJuan Castillo# Include the platform specific Makefile after the SPD Makefile (the platform
51273c99d4eSJuan Castillo# makefile may use all previous definitions in this file)
51373c99d4eSJuan Castillo################################################################################
5142da8d8bfSJeenu Viswambharan
51573c99d4eSJuan Castilloinclude ${PLAT_MAKEFILE_FULL}
5160f21c547SJuan Castillo
5178012cc5cSMasahiro Yamada$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
5188012cc5cSMasahiro Yamada
51926e63c44SEtienne Carriereifeq (${ARM_ARCH_MAJOR},7)
52026e63c44SEtienne Carriereinclude make_helpers/armv7-a-cpus.mk
52126e63c44SEtienne Carriereendif
52226e63c44SEtienne Carriere
5233bd17c0fSSoby MathewPIE_FOUND		:=	$(findstring --enable-default-pie,${GCC_V_OUTPUT})
5243bd17c0fSSoby Mathewifneq ($(PIE_FOUND),)
5253bd17c0fSSoby Mathew	TF_CFLAGS	+=	-fno-PIE
5263bd17c0fSSoby Mathewendif
527320920c1SMasahiro Yamada
528320920c1SMasahiro Yamadaifneq ($(findstring gcc,$(notdir $(LD))),)
529320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-Wl,-pie -Wl,--no-dynamic-linker
530320920c1SMasahiro Yamadaelse
531320920c1SMasahiro Yamada	PIE_LDFLAGS	+=	-pie --no-dynamic-linker
532320920c1SMasahiro Yamadaendif
533320920c1SMasahiro Yamada
534320920c1SMasahiro Yamadaifeq ($(ENABLE_PIE),1)
53569af7fcfSMasahiro Yamadaifeq ($(BL2_AT_EL3),1)
53669af7fcfSMasahiro Yamadaifneq ($(BL2_IN_XIP_MEM),1)
53769af7fcfSMasahiro Yamada	BL2_CFLAGS	+=	-fpie
53869af7fcfSMasahiro Yamada	BL2_LDFLAGS	+=	$(PIE_LDFLAGS)
53969af7fcfSMasahiro Yamadaendif
54069af7fcfSMasahiro Yamadaendif
541320920c1SMasahiro Yamada	BL31_CFLAGS	+=	-fpie
542320920c1SMasahiro Yamada	BL31_LDFLAGS	+=	$(PIE_LDFLAGS)
543d974301dSMasahiro Yamadaifeq ($(ARCH),aarch64)
544d974301dSMasahiro Yamada	BL32_CFLAGS	+=	-fpie
545d974301dSMasahiro Yamada	BL32_LDFLAGS	+=	$(PIE_LDFLAGS)
546d974301dSMasahiro Yamadaendif
5473bd17c0fSSoby Mathewendif
5483bd17c0fSSoby Mathew
549d5e97a1dSMasahiro Yamadaifeq (${ARCH},aarch64)
5509cefb4b1SMasahiro YamadaBL1_CPPFLAGS += -DIMAGE_AT_EL3
551d5e97a1dSMasahiro Yamadaifeq ($(BL2_AT_EL3),1)
5529cefb4b1SMasahiro YamadaBL2_CPPFLAGS += -DIMAGE_AT_EL3
553d5e97a1dSMasahiro Yamadaelse
5549cefb4b1SMasahiro YamadaBL2_CPPFLAGS += -DIMAGE_AT_EL1
555d5e97a1dSMasahiro Yamadaendif
5569cefb4b1SMasahiro YamadaBL2U_CPPFLAGS += -DIMAGE_AT_EL1
5579cefb4b1SMasahiro YamadaBL31_CPPFLAGS += -DIMAGE_AT_EL3
5589cefb4b1SMasahiro YamadaBL32_CPPFLAGS += -DIMAGE_AT_EL1
559d5e97a1dSMasahiro Yamadaendif
560d5e97a1dSMasahiro Yamada
56154035fc4SSandrine Bailleux# Include the CPU specific operations makefile, which provides default
56254035fc4SSandrine Bailleux# values for all CPU errata workarounds and CPU specific optimisations.
56354035fc4SSandrine Bailleux# This can be overridden by the platform.
56473c99d4eSJuan Castilloinclude lib/cpus/cpu-ops.mk
5654f6ad66aSAchin Gupta
566a4409008Sdp-armifeq (${ARCH},aarch32)
567a4409008Sdp-armNEED_BL32 := yes
568a4409008Sdp-arm
569a4409008Sdp-arm################################################################################
570a4409008Sdp-arm# Build `AARCH32_SP` as BL32 image for AArch32
571a4409008Sdp-arm################################################################################
572a4409008Sdp-armifneq (${AARCH32_SP},none)
573a4409008Sdp-arm# We expect to locate an sp.mk under the specified AARCH32_SP directory
574a4409008Sdp-armAARCH32_SP_MAKE	:=	$(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
575a4409008Sdp-arm
576a4409008Sdp-armifeq (${AARCH32_SP_MAKE},)
577a4409008Sdp-arm  $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
578a4409008Sdp-armendif
579a4409008Sdp-arm
580a4409008Sdp-arm$(info Including ${AARCH32_SP_MAKE})
581a4409008Sdp-arminclude ${AARCH32_SP_MAKE}
582a4409008Sdp-armendif
583a4409008Sdp-arm
584a4409008Sdp-armendif
5854f6ad66aSAchin Gupta
58673c99d4eSJuan Castillo################################################################################
58777f1f7a1SVarun Wadekar# Include libc if not overridden
58877f1f7a1SVarun Wadekar################################################################################
58977f1f7a1SVarun Wadekarifeq (${OVERRIDE_LIBC},0)
59077f1f7a1SVarun Wadekarinclude lib/libc/libc.mk
59177f1f7a1SVarun Wadekarendif
59277f1f7a1SVarun Wadekar
59377f1f7a1SVarun Wadekar################################################################################
594cf2c8a33SAntonio Nino Diaz# Check incompatible options
595cf2c8a33SAntonio Nino Diaz################################################################################
596cf2c8a33SAntonio Nino Diaz
597cf2c8a33SAntonio Nino Diazifdef EL3_PAYLOAD_BASE
59868450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
59968450a6dSAntonio Nino Diaz                $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
60068450a6dSAntonio Nino Diaz                incompatible build options. EL3_PAYLOAD_BASE has priority.")
601cf2c8a33SAntonio Nino Diaz        endif
60276580f3dSQixiang Xu        ifneq (${GENERATE_COT},0)
60376580f3dSQixiang Xu                $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible build options.")
60476580f3dSQixiang Xu        endif
60576580f3dSQixiang Xu        ifneq (${TRUSTED_BOARD_BOOT},0)
60676580f3dSQixiang Xu                $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are incompatible build options.")
60776580f3dSQixiang Xu        endif
608cf2c8a33SAntonio Nino Diazendif
609cf2c8a33SAntonio Nino Diaz
610cf2c8a33SAntonio Nino Diazifeq (${NEED_BL33},yes)
611cf2c8a33SAntonio Nino Diaz        ifdef EL3_PAYLOAD_BASE
612cf2c8a33SAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
613cf2c8a33SAntonio Nino Diaz                BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
614cf2c8a33SAntonio Nino Diaz        endif
61568450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
61668450a6dSAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
61768450a6dSAntonio Nino Diaz                PRELOADED_BL33_BASE is used and won't be added to the FIP \
61868450a6dSAntonio Nino Diaz                file.")
619cf2c8a33SAntonio Nino Diaz        endif
620cf2c8a33SAntonio Nino Diazendif
621cf2c8a33SAntonio Nino Diaz
622d4593e47SJeenu Viswambharan# When building for systems with hardware-assisted coherency, there's no need to
623d4593e47SJeenu Viswambharan# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
624d4593e47SJeenu Viswambharanifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
625d4593e47SJeenu Viswambharan$(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
626d4593e47SJeenu Viswambharanendif
6271a0a3f06SYatharth Kochar
6287d173fc5SJiafei Pan#For now, BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is 1.
6297d173fc5SJiafei Panifeq ($(BL2_AT_EL3)-$(BL2_IN_XIP_MEM),0-1)
6307d173fc5SJiafei Pan$(error "BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is enabled")
6317d173fc5SJiafei Panendif
6327d173fc5SJiafei Pan
63314c6016aSJeenu Viswambharan# For RAS_EXTENSION, require that EAs are handled in EL3 first
63414c6016aSJeenu Viswambharanifeq ($(RAS_EXTENSION),1)
63514c6016aSJeenu Viswambharan    ifneq ($(HANDLE_EA_EL3_FIRST),1)
63614c6016aSJeenu Viswambharan        $(error For RAS_EXTENSION, HANDLE_EA_EL3_FIRST must also be 1)
63714c6016aSJeenu Viswambharan    endif
63814c6016aSJeenu Viswambharanendif
63914c6016aSJeenu Viswambharan
6401a7c1cfeSJeenu Viswambharan# When FAULT_INJECTION_SUPPORT is used, require that RAS_EXTENSION is enabled
6411a7c1cfeSJeenu Viswambharanifeq ($(FAULT_INJECTION_SUPPORT),1)
6421a7c1cfeSJeenu Viswambharan    ifneq ($(RAS_EXTENSION),1)
6431a7c1cfeSJeenu Viswambharan        $(error For FAULT_INJECTION_SUPPORT, RAS_EXTENSION must also be 1)
6441a7c1cfeSJeenu Viswambharan    endif
6451a7c1cfeSJeenu Viswambharanendif
6461a7c1cfeSJeenu Viswambharan
647ed51b51fSRoberto Vargas# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
648209a60ccSSoby Mathewifeq ($(DYN_DISABLE_AUTH), 1)
649209a60ccSSoby Mathew    ifeq (${TRUSTED_BOARD_BOOT}, 0)
650209a60ccSSoby Mathew        $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH to be set.")
651209a60ccSSoby Mathew    endif
652209a60ccSSoby Mathewendif
653209a60ccSSoby Mathew
654*cbf9e84aSBalint Dobszay# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
655*cbf9e84aSBalint Dobszayifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
656*cbf9e84aSBalint Dobszay$(error "SDEI_IN_FCONF is an experimental feature and is only supported when \
657*cbf9e84aSBalint Dobszay	SDEI_SUPPORT is enabled")
658*cbf9e84aSBalint Dobszayendif
659*cbf9e84aSBalint Dobszay
660b86048c4SAntonio Nino Diaz# If pointer authentication is used in the firmware, make sure that all the
6619fc59639SAlexei Fedorov# registers associated to it are also saved and restored.
6629fc59639SAlexei Fedorov# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
663b86048c4SAntonio Nino Diazifeq ($(ENABLE_PAUTH),1)
6649fc59639SAlexei Fedorov    ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
6659fc59639SAlexei Fedorov        $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
66606715f85SAlexei Fedorov    endif
6679fc59639SAlexei Fedorovendif
6689fc59639SAlexei Fedorov
66906715f85SAlexei Fedorovifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
6709fc59639SAlexei Fedorov    ifneq (${ARCH},aarch64)
6719fc59639SAlexei Fedorov        $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
672dfc66a17SJohn Tsichritzis    else
67306715f85SAlexei Fedorov        $(info CTX_INCLUDE_PAUTH_REGS is an experimental feature)
674b86048c4SAntonio Nino Diaz    endif
675b86048c4SAntonio Nino Diazendif
6769fc59639SAlexei Fedorov
6779fc59639SAlexei Fedorovifeq ($(ENABLE_PAUTH),1)
6789fc59639SAlexei Fedorov    $(info Pointer Authentication is an experimental feature)
6799fc59639SAlexei Fedorovendif
6809fc59639SAlexei Fedorov
6819fc59639SAlexei Fedorovifeq ($(ENABLE_BTI),1)
6829fc59639SAlexei Fedorov    $(info Branch Protection is an experimental feature)
683dfc66a17SJohn Tsichritzisendif
684b86048c4SAntonio Nino Diaz
6859dd94382SJustin Chadwellifeq ($(CTX_INCLUDE_MTE_REGS),1)
6869dd94382SJustin Chadwell    ifneq (${ARCH},aarch64)
6879dd94382SJustin Chadwell        $(error CTX_INCLUDE_MTE_REGS requires AArch64)
6889dd94382SJustin Chadwell    else
6899dd94382SJustin Chadwell        $(info CTX_INCLUDE_MTE_REGS is an experimental feature)
6909dd94382SJustin Chadwell    endif
6919dd94382SJustin Chadwellendif
6929dd94382SJustin Chadwell
6938c105290SAlexei Fedorovifeq ($(MEASURED_BOOT),1)
6948c105290SAlexei Fedorov    ifneq (${TRUSTED_BOARD_BOOT},1)
6957cda17bbSSumit Garg        $(error MEASURED_BOOT requires TRUSTED_BOARD_BOOT=1)
6968c105290SAlexei Fedorov    else
6978c105290SAlexei Fedorov        $(info MEASURED_BOOT is an experimental feature)
6988c105290SAlexei Fedorov    endif
6998c105290SAlexei Fedorovendif
7008c105290SAlexei Fedorov
70160e8f3cfSPetre-Ionut Tudorifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
70260e8f3cfSPetre-Ionut Tudor    ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
70360e8f3cfSPetre-Ionut Tudor        $(error "ALLOW_RO_XLAT_TABLES requires translation tables library v2")
70460e8f3cfSPetre-Ionut Tudor    endif
70560e8f3cfSPetre-Ionut Tudorendif
70660e8f3cfSPetre-Ionut Tudor
7077cda17bbSSumit Gargifneq (${DECRYPTION_SUPPORT},none)
7087cda17bbSSumit Garg    ifeq (${TRUSTED_BOARD_BOOT}, 0)
7097cda17bbSSumit Garg        $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT to be set)
7107cda17bbSSumit Garg    else
7117cda17bbSSumit Garg        $(info DECRYPTION_SUPPORT is an experimental feature)
7127cda17bbSSumit Garg    endif
7137cda17bbSSumit Gargendif
7147cda17bbSSumit Garg
715cf2c8a33SAntonio Nino Diaz################################################################################
71673c99d4eSJuan Castillo# Process platform overrideable behaviour
71773c99d4eSJuan Castillo################################################################################
7184f6ad66aSAchin Gupta
719bd97f83aSJohn Tsichritzis# Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
720bd97f83aSJohn Tsichritzis# Certificate generation tools. This flag can be overridden by the platform.
72173c99d4eSJuan Castilloifdef BL2_SOURCES
722cf2c8a33SAntonio Nino Diaz        ifdef EL3_PAYLOAD_BASE
723cf2c8a33SAntonio Nino Diaz                # If booting an EL3 payload there is no need for a BL33 image
724cf2c8a33SAntonio Nino Diaz                # in the FIP file.
7254c117f6cSSandrine Bailleux                NEED_BL33		:=	no
726cf2c8a33SAntonio Nino Diaz        else
72768450a6dSAntonio Nino Diaz                ifdef PRELOADED_BL33_BASE
728cf2c8a33SAntonio Nino Diaz                        # If booting a BL33 preloaded image there is no need of
729cf2c8a33SAntonio Nino Diaz                        # another one in the FIP file.
730cf2c8a33SAntonio Nino Diaz                        NEED_BL33		:=	no
731cf2c8a33SAntonio Nino Diaz                else
732cf2c8a33SAntonio Nino Diaz                        NEED_BL33		?=	yes
733cf2c8a33SAntonio Nino Diaz                endif
7344c117f6cSSandrine Bailleux        endif
73573c99d4eSJuan Castilloendif
7366f971622SJuan Castillo
7374d045d0eSMasahiro Yamada# If SCP_BL2 is given, we always want FIP to include it.
7384d045d0eSMasahiro Yamadaifdef SCP_BL2
7394d045d0eSMasahiro Yamada        NEED_SCP_BL2		:=	yes
7404d045d0eSMasahiro Yamadaendif
7414d045d0eSMasahiro Yamada
7425744e874SSoby Mathew# For AArch32, BL31 is not currently supported.
7435744e874SSoby Mathewifneq (${ARCH},aarch32)
7445744e874SSoby Mathew    ifdef BL31_SOURCES
7455744e874SSoby Mathew        # When booting an EL3 payload, there is no need to compile the BL31 image nor
7465744e874SSoby Mathew        # put it in the FIP.
7475744e874SSoby Mathew        ifndef EL3_PAYLOAD_BASE
7485744e874SSoby Mathew            NEED_BL31 := yes
7495744e874SSoby Mathew        endif
7505744e874SSoby Mathew    endif
7515744e874SSoby Mathewendif
7525744e874SSoby Mathew
75373c99d4eSJuan Castillo# Process TBB related flags
7546f971622SJuan Castilloifneq (${GENERATE_COT},0)
75573c99d4eSJuan Castillo        # Common cert_create options
7566f971622SJuan Castillo        ifneq (${CREATE_KEYS},0)
7576f971622SJuan Castillo                $(eval CRT_ARGS += -n)
7580191262dSYatharth Kochar                $(eval FWU_CRT_ARGS += -n)
759fd34e7baSJuan Castillo                ifneq (${SAVE_KEYS},0)
760fd34e7baSJuan Castillo                        $(eval CRT_ARGS += -k)
7610191262dSYatharth Kochar                        $(eval FWU_CRT_ARGS += -k)
762fd34e7baSJuan Castillo                endif
7636f971622SJuan Castillo        endif
76473c99d4eSJuan Castillo        # Include TBBR makefile (unless the platform indicates otherwise)
76573c99d4eSJuan Castillo        ifeq (${INCLUDE_TBBR_MK},1)
76673c99d4eSJuan Castillo                include make_helpers/tbbr/tbbr_tools.mk
76773c99d4eSJuan Castillo        endif
7686f971622SJuan Castilloendif
7696f971622SJuan Castillo
7701c75d5dfSMasahiro Yamadaifneq (${FIP_ALIGN},0)
7711c75d5dfSMasahiro YamadaFIP_ARGS += --align ${FIP_ALIGN}
7721c75d5dfSMasahiro Yamadaendif
7731c75d5dfSMasahiro Yamada
77473c99d4eSJuan Castillo################################################################################
77546e5e035SMichalis Pappas# Include libraries' Makefile that are used in all BL
77646e5e035SMichalis Pappas################################################################################
77746e5e035SMichalis Pappas
77846e5e035SMichalis Pappasinclude lib/stack_protector/stack_protector.mk
77946e5e035SMichalis Pappas
78046e5e035SMichalis Pappas################################################################################
781819281eeSdp-arm# Auxiliary tools (fiptool, cert_create, etc)
78273c99d4eSJuan Castillo################################################################################
78373c99d4eSJuan Castillo
78473c99d4eSJuan Castillo# Variables for use with Certificate Generation Tool
78573c99d4eSJuan CastilloCRTTOOLPATH		?=	tools/cert_create
78642a45b51SEvan LloydCRTTOOL			?=	${CRTTOOLPATH}/cert_create${BIN_EXT}
78773c99d4eSJuan Castillo
78890aa901fSSumit Garg# Variables for use with Firmware Encryption Tool
78990aa901fSSumit GargENCTOOLPATH		?=	tools/encrypt_fw
79090aa901fSSumit GargENCTOOL			?=	${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
79190aa901fSSumit Garg
79273c99d4eSJuan Castillo# Variables for use with Firmware Image Package
793819281eeSdp-armFIPTOOLPATH		?=	tools/fiptool
794819281eeSdp-armFIPTOOL			?=	${FIPTOOLPATH}/fiptool${BIN_EXT}
79573c99d4eSJuan Castillo
79626010da1SAntonio Nino Diaz# Variables for use with sptool
79726010da1SAntonio Nino DiazSPTOOLPATH		?=	tools/sptool
79826010da1SAntonio Nino DiazSPTOOL			?=	${SPTOOLPATH}/sptool${BIN_EXT}
799ce2b1ec6SManish PandeySP_MK_GEN		?=	${SPTOOLPATH}/sp_mk_generator.py
80026010da1SAntonio Nino Diaz
8015accce5bSRoberto Vargas# Variables for use with ROMLIB
8025accce5bSRoberto VargasROMLIBPATH		?=	lib/romlib
8035accce5bSRoberto Vargas
804cfe83910SLouis Mayencourt# Variable for use with Python
805cfe83910SLouis MayencourtPYTHON			?=	python3
806cfe83910SLouis Mayencourt
807cfe83910SLouis Mayencourt# Variables for use with PRINT_MEMORY_MAP
808cfe83910SLouis MayencourtPRINT_MEMORY_MAP_PATH		?=	tools/memory
809cfe83910SLouis MayencourtPRINT_MEMORY_MAP		?=	${PRINT_MEMORY_MAP_PATH}/print_memory_map.py
810cfe83910SLouis Mayencourt
8116de32378SMadhukar Pappireddy# Variables for use with documentation build using Sphinx tool
8126de32378SMadhukar PappireddyDOCS_PATH		?=	docs
8136de32378SMadhukar Pappireddy
8148a86052dSSoby Mathew################################################################################
8158a86052dSSoby Mathew# Include BL specific makefiles
8168a86052dSSoby Mathew################################################################################
8178a86052dSSoby Mathewifdef BL1_SOURCES
8188a86052dSSoby MathewNEED_BL1 := yes
8198a86052dSSoby Mathewinclude bl1/bl1.mk
8208a86052dSSoby Mathewendif
8218a86052dSSoby Mathew
8228a86052dSSoby Mathewifdef BL2_SOURCES
8238a86052dSSoby MathewNEED_BL2 := yes
8248a86052dSSoby Mathewinclude bl2/bl2.mk
8258a86052dSSoby Mathewendif
8268a86052dSSoby Mathew
8278a86052dSSoby Mathewifdef BL2U_SOURCES
8288a86052dSSoby MathewNEED_BL2U := yes
8298a86052dSSoby Mathewinclude bl2u/bl2u.mk
8308a86052dSSoby Mathewendif
8318a86052dSSoby Mathew
8325744e874SSoby Mathewifeq (${NEED_BL31},yes)
8338a86052dSSoby Mathewifdef BL31_SOURCES
8348a86052dSSoby Mathewinclude bl31/bl31.mk
8358a86052dSSoby Mathewendif
8368a86052dSSoby Mathewendif
8378a86052dSSoby Mathew
83803b397a8SNishanth Menonifdef FDT_SOURCES
83903b397a8SNishanth MenonNEED_FDT := yes
84003b397a8SNishanth Menonendif
84103b397a8SNishanth Menon
84273c99d4eSJuan Castillo################################################################################
84373c99d4eSJuan Castillo# Build options checks
84473c99d4eSJuan Castillo################################################################################
84573c99d4eSJuan Castillo
84660e8f3cfSPetre-Ionut Tudor$(eval $(call assert_boolean,ALLOW_RO_XLAT_TABLES))
847a9bec67dSSandrine Bailleux$(eval $(call assert_boolean,COLD_BOOT_SINGLE_CPU))
8482fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,CREATE_KEYS))
8492fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,CTX_INCLUDE_AARCH32_REGS))
8502fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,CTX_INCLUDE_FPREGS))
8515283962eSAntonio Nino Diaz$(eval $(call assert_boolean,CTX_INCLUDE_PAUTH_REGS))
8529dd94382SJustin Chadwell$(eval $(call assert_boolean,CTX_INCLUDE_MTE_REGS))
85328f39f02SMax Shvetsov$(eval $(call assert_boolean,CTX_INCLUDE_EL2_REGS))
8542fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,DEBUG))
855209a60ccSSoby Mathew$(eval $(call assert_boolean,DYN_DISABLE_AUTH))
856c8b55b8fSJeenu Viswambharan$(eval $(call assert_boolean,EL3_EXCEPTION_HANDLING))
8570319a977SDimitris Papastamos$(eval $(call assert_boolean,ENABLE_AMU))
858cc8b5632SAntonio Nino Diaz$(eval $(call assert_boolean,ENABLE_ASSERTIONS))
8595f835918SJeenu Viswambharan$(eval $(call assert_boolean,ENABLE_MPAM_FOR_LOWER_ELS))
8603bd17c0fSSoby Mathew$(eval $(call assert_boolean,ENABLE_PIE))
861a31d8983SYatharth Kochar$(eval $(call assert_boolean,ENABLE_PMF))
862170fb93dSYatharth Kochar$(eval $(call assert_boolean,ENABLE_PSCI_STAT))
863872be88aSdp-arm$(eval $(call assert_boolean,ENABLE_RUNTIME_INSTRUMENTATION))
864c1232c31SJeenu Viswambharan$(eval $(call assert_boolean,ENABLE_SPE_FOR_LOWER_ELS))
8651a853370SDavid Cunado$(eval $(call assert_boolean,ENABLE_SVE_FOR_NS))
8662fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,ERROR_DEPRECATED))
8671a7c1cfeSJeenu Viswambharan$(eval $(call assert_boolean,FAULT_INJECTION_SUPPORT))
8682fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,GENERATE_COT))
86974dce7faSJeenu Viswambharan$(eval $(call assert_boolean,GICV2_G0_FOR_EL3))
87076454abfSJeenu Viswambharan$(eval $(call assert_boolean,HANDLE_EA_EL3_FIRST))
8713c251af3SJeenu Viswambharan$(eval $(call assert_boolean,HW_ASSISTED_COHERENCY))
872b890b36dSLouis Mayencourt$(eval $(call assert_boolean,INVERTED_MEMMAP))
8738c105290SAlexei Fedorov$(eval $(call assert_boolean,MEASURED_BOOT))
8742fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,NS_TIMER_SWITCH))
87577f1f7a1SVarun Wadekar$(eval $(call assert_boolean,OVERRIDE_LIBC))
8762fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,PL011_GENERIC_UART))
8772fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,PROGRAMMABLE_RESET_ADDRESS))
8782fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,PSCI_EXTENDED_STATE_ID))
87914c6016aSJeenu Viswambharan$(eval $(call assert_boolean,RAS_EXTENSION))
8802fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,RESET_TO_BL31))
8812fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,SAVE_KEYS))
8822fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,SEPARATE_CODE_AND_RODATA))
883f8578e64SSamuel Holland$(eval $(call assert_boolean,SEPARATE_NOBITS_REGION))
8842fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,SPIN_ON_BL1_EXIT))
8858855e52eSAntonio Nino Diaz$(eval $(call assert_boolean,SPM_MM))
886033039f8SMax Shvetsov$(eval $(call assert_boolean,SPMD_SPM_AT_SEL2))
8872fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,TRUSTED_BOARD_BOOT))
8882fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,USE_COHERENT_MEM))
8890ca3913dSOlivier Deprez$(eval $(call assert_boolean,USE_DEBUGFS))
890a6de824fSLouis Mayencourt$(eval $(call assert_boolean,ARM_IO_IN_DTB))
891*cbf9e84aSBalint Dobszay$(eval $(call assert_boolean,SDEI_IN_FCONF))
8925accce5bSRoberto Vargas$(eval $(call assert_boolean,USE_ROMLIB))
893bb41eb7aSMasahiro Yamada$(eval $(call assert_boolean,USE_TBBR_DEFS))
894bcc3c49cSSoby Mathew$(eval $(call assert_boolean,WARMBOOT_ENABLE_DCACHE_EARLY))
895b1d27b48SRoberto Vargas$(eval $(call assert_boolean,BL2_AT_EL3))
8967d173fc5SJiafei Pan$(eval $(call assert_boolean,BL2_IN_XIP_MEM))
897b90f207aSHadi Asyrafi$(eval $(call assert_boolean,BL2_INV_DCACHE))
898c97cba4eSSoby Mathew$(eval $(call assert_boolean,USE_SPINLOCK_CAS))
899c6ba9b45SSumit Garg$(eval $(call assert_boolean,ENCRYPT_BL31))
900c6ba9b45SSumit Garg$(eval $(call assert_boolean,ENCRYPT_BL32))
90145aecff0SManish V Badarkhe$(eval $(call assert_boolean,ERRATA_SPECULATIVE_AT))
90273c99d4eSJuan Castillo
903c877b414SJeenu Viswambharan$(eval $(call assert_numeric,ARM_ARCH_MAJOR))
904c877b414SJeenu Viswambharan$(eval $(call assert_numeric,ARM_ARCH_MINOR))
9059fc59639SAlexei Fedorov$(eval $(call assert_numeric,BRANCH_PROTECTION))
906c6ba9b45SSumit Garg$(eval $(call assert_numeric,FW_ENC_STATUS))
907c877b414SJeenu Viswambharan
908aacff749SJustin Chadwellifdef KEY_SIZE
909aacff749SJustin Chadwell        $(eval $(call assert_numeric,KEY_SIZE))
910aacff749SJustin Chadwellendif
911aacff749SJustin Chadwell
9121f461979SJustin Chadwellifeq ($(filter $(SANITIZE_UB), on off trap),)
9131f461979SJustin Chadwell        $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
9141f461979SJustin Chadwellendif
9151f461979SJustin Chadwell
91673c99d4eSJuan Castillo################################################################################
91773c99d4eSJuan Castillo# Add definitions to the cpp preprocessor based on the current build options.
91873c99d4eSJuan Castillo# This is done after including the platform specific makefile to allow the
91973c99d4eSJuan Castillo# platform to overwrite the default options
92073c99d4eSJuan Castillo################################################################################
92173c99d4eSJuan Castillo
92260e8f3cfSPetre-Ionut Tudor$(eval $(call add_define,ALLOW_RO_XLAT_TABLES))
923c877b414SJeenu Viswambharan$(eval $(call add_define,ARM_ARCH_MAJOR))
924c877b414SJeenu Viswambharan$(eval $(call add_define,ARM_ARCH_MINOR))
925a9bec67dSSandrine Bailleux$(eval $(call add_define,COLD_BOOT_SINGLE_CPU))
9262fae4b1eSJeenu Viswambharan$(eval $(call add_define,CTX_INCLUDE_AARCH32_REGS))
9272fae4b1eSJeenu Viswambharan$(eval $(call add_define,CTX_INCLUDE_FPREGS))
9285283962eSAntonio Nino Diaz$(eval $(call add_define,CTX_INCLUDE_PAUTH_REGS))
929c8b55b8fSJeenu Viswambharan$(eval $(call add_define,EL3_EXCEPTION_HANDLING))
9309dd94382SJustin Chadwell$(eval $(call add_define,CTX_INCLUDE_MTE_REGS))
93128f39f02SMax Shvetsov$(eval $(call add_define,CTX_INCLUDE_EL2_REGS))
9327cda17bbSSumit Garg$(eval $(call add_define,DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT}))
9330319a977SDimitris Papastamos$(eval $(call add_define,ENABLE_AMU))
934cc8b5632SAntonio Nino Diaz$(eval $(call add_define,ENABLE_ASSERTIONS))
9359fc59639SAlexei Fedorov$(eval $(call add_define,ENABLE_BTI))
9365f835918SJeenu Viswambharan$(eval $(call add_define,ENABLE_MPAM_FOR_LOWER_ELS))
937b86048c4SAntonio Nino Diaz$(eval $(call add_define,ENABLE_PAUTH))
9383bd17c0fSSoby Mathew$(eval $(call add_define,ENABLE_PIE))
939a31d8983SYatharth Kochar$(eval $(call add_define,ENABLE_PMF))
940170fb93dSYatharth Kochar$(eval $(call add_define,ENABLE_PSCI_STAT))
941872be88aSdp-arm$(eval $(call add_define,ENABLE_RUNTIME_INSTRUMENTATION))
942c1232c31SJeenu Viswambharan$(eval $(call add_define,ENABLE_SPE_FOR_LOWER_ELS))
9431a853370SDavid Cunado$(eval $(call add_define,ENABLE_SVE_FOR_NS))
944c6ba9b45SSumit Garg$(eval $(call add_define,ENCRYPT_BL31))
945c6ba9b45SSumit Garg$(eval $(call add_define,ENCRYPT_BL32))
9462fae4b1eSJeenu Viswambharan$(eval $(call add_define,ERROR_DEPRECATED))
9471a7c1cfeSJeenu Viswambharan$(eval $(call add_define,FAULT_INJECTION_SUPPORT))
94874dce7faSJeenu Viswambharan$(eval $(call add_define,GICV2_G0_FOR_EL3))
94976454abfSJeenu Viswambharan$(eval $(call add_define,HANDLE_EA_EL3_FIRST))
9503c251af3SJeenu Viswambharan$(eval $(call add_define,HW_ASSISTED_COHERENCY))
9512fae4b1eSJeenu Viswambharan$(eval $(call add_define,LOG_LEVEL))
9528c105290SAlexei Fedorov$(eval $(call add_define,MEASURED_BOOT))
9532fae4b1eSJeenu Viswambharan$(eval $(call add_define,NS_TIMER_SWITCH))
9542fae4b1eSJeenu Viswambharan$(eval $(call add_define,PL011_GENERIC_UART))
9552fae4b1eSJeenu Viswambharan$(eval $(call add_define,PLAT_${PLAT}))
9562fae4b1eSJeenu Viswambharan$(eval $(call add_define,PROGRAMMABLE_RESET_ADDRESS))
9572fae4b1eSJeenu Viswambharan$(eval $(call add_define,PSCI_EXTENDED_STATE_ID))
95814c6016aSJeenu Viswambharan$(eval $(call add_define,RAS_EXTENSION))
9592fae4b1eSJeenu Viswambharan$(eval $(call add_define,RESET_TO_BL31))
9602fae4b1eSJeenu Viswambharan$(eval $(call add_define,SEPARATE_CODE_AND_RODATA))
961f8578e64SSamuel Holland$(eval $(call add_define,SEPARATE_NOBITS_REGION))
9621dcc28cfSDaniel Boulby$(eval $(call add_define,RECLAIM_INIT_CODE))
9632fae4b1eSJeenu Viswambharan$(eval $(call add_define,SPD_${SPD}))
9642fae4b1eSJeenu Viswambharan$(eval $(call add_define,SPIN_ON_BL1_EXIT))
9658855e52eSAntonio Nino Diaz$(eval $(call add_define,SPM_MM))
966033039f8SMax Shvetsov$(eval $(call add_define,SPMD_SPM_AT_SEL2))
9672fae4b1eSJeenu Viswambharan$(eval $(call add_define,TRUSTED_BOARD_BOOT))
9682fae4b1eSJeenu Viswambharan$(eval $(call add_define,USE_COHERENT_MEM))
9690ca3913dSOlivier Deprez$(eval $(call add_define,USE_DEBUGFS))
970a6de824fSLouis Mayencourt$(eval $(call add_define,ARM_IO_IN_DTB))
971*cbf9e84aSBalint Dobszay$(eval $(call add_define,SDEI_IN_FCONF))
9725accce5bSRoberto Vargas$(eval $(call add_define,USE_ROMLIB))
973bb41eb7aSMasahiro Yamada$(eval $(call add_define,USE_TBBR_DEFS))
974bcc3c49cSSoby Mathew$(eval $(call add_define,WARMBOOT_ENABLE_DCACHE_EARLY))
975b1d27b48SRoberto Vargas$(eval $(call add_define,BL2_AT_EL3))
9767d173fc5SJiafei Pan$(eval $(call add_define,BL2_IN_XIP_MEM))
977b90f207aSHadi Asyrafi$(eval $(call add_define,BL2_INV_DCACHE))
978c97cba4eSSoby Mathew$(eval $(call add_define,USE_SPINLOCK_CAS))
97945aecff0SManish V Badarkhe$(eval $(call add_define,ERRATA_SPECULATIVE_AT))
9802fae4b1eSJeenu Viswambharan
9811f461979SJustin Chadwellifeq (${SANITIZE_UB},trap)
9821f461979SJustin Chadwell        $(eval $(call add_define,MONITOR_TRAPS))
9831f461979SJustin Chadwellendif
9841f461979SJustin Chadwell
9854c117f6cSSandrine Bailleux# Define the EL3_PAYLOAD_BASE flag only if it is provided.
9864c117f6cSSandrine Bailleuxifdef EL3_PAYLOAD_BASE
9874c117f6cSSandrine Bailleux        $(eval $(call add_define,EL3_PAYLOAD_BASE))
988cf2c8a33SAntonio Nino Diazelse
98968450a6dSAntonio Nino Diaz        # Define the PRELOADED_BL33_BASE flag only if it is provided and
99068450a6dSAntonio Nino Diaz        # EL3_PAYLOAD_BASE is not defined, as it has priority.
99168450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
99268450a6dSAntonio Nino Diaz                $(eval $(call add_define,PRELOADED_BL33_BASE))
9934c117f6cSSandrine Bailleux        endif
994cf2c8a33SAntonio Nino Diazendif
99573c99d4eSJuan Castillo
996209a60ccSSoby Mathew# Define the DYN_DISABLE_AUTH flag only if set.
997209a60ccSSoby Mathewifeq (${DYN_DISABLE_AUTH},1)
998209a60ccSSoby Mathew$(eval $(call add_define,DYN_DISABLE_AUTH))
999209a60ccSSoby Mathewendif
1000209a60ccSSoby Mathew
1001c2ad38ceSVarun Wadekarifneq ($(findstring armlink,$(notdir $(LD))),)
1002c2ad38ceSVarun Wadekar$(eval $(call add_define,USE_ARM_LINK))
1003c2ad38ceSVarun Wadekarendif
1004c2ad38ceSVarun Wadekar
1005ce2b1ec6SManish Pandey# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
1006ce2b1ec6SManish Pandeyifeq (${SPD},spmd)
1007c33ff198SOlivier Deprezifdef SP_LAYOUT_FILE
1008c33ff198SOlivier Deprez        ifeq (${SPMD_SPM_AT_SEL2},0)
1009c33ff198SOlivier Deprez            $(error "SPMD with SPM at S-EL1 does not require SP_LAYOUT_FILE")
1010c33ff198SOlivier Deprez        endif
1011ce2b1ec6SManish Pandey        -include $(BUILD_PLAT)/sp_gen.mk
1012ce2b1ec6SManish Pandey        FIP_DEPS += sp
1013ce2b1ec6SManish Pandey        NEED_SP_PKG := yes
1014ce2b1ec6SManish Pandeyelse
1015c33ff198SOlivier Deprez        ifeq (${SPMD_SPM_AT_SEL2},1)
1016c33ff198SOlivier Deprez            $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1017c33ff198SOlivier Deprez        endif
1018ce2b1ec6SManish Pandeyendif
1019ce2b1ec6SManish Pandeyendif
1020ce2b1ec6SManish Pandey
102173c99d4eSJuan Castillo################################################################################
102273c99d4eSJuan Castillo# Build targets
102373c99d4eSJuan Castillo################################################################################
102473c99d4eSJuan Castillo
102590aa901fSSumit Garg.PHONY:	all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp fwu_fip certtool dtbs memmap doc enctool
102673c99d4eSJuan Castillo.SUFFIXES:
102773c99d4eSJuan Castillo
102873c99d4eSJuan Castilloall: msg_start
102973c99d4eSJuan Castillo
103073c99d4eSJuan Castillomsg_start:
103173c99d4eSJuan Castillo	@echo "Building ${PLAT}"
103273c99d4eSJuan Castillo
10337a24cba5SSoby Mathewifeq (${ERROR_DEPRECATED},0)
1034d5dfdeb6SJulius Werner# Check if deprecated declarations and cpp warnings should be treated as error or not.
1035c2ad38ceSVarun Wadekarifneq ($(findstring clang,$(notdir $(CC))),)
1036c2ad38ceSVarun Wadekar    CPPFLAGS		+= 	-Wno-error=deprecated-declarations
1037c2ad38ceSVarun Wadekarelse
1038bc1a03c7SDan Handley    CPPFLAGS		+= 	-Wno-error=deprecated-declarations -Wno-error=cpp
10397a24cba5SSoby Mathewendif
1040d5dfdeb6SJulius Werner# __ASSEMBLY__ is deprecated in favor of the compiler-builtin __ASSEMBLER__.
1041d5dfdeb6SJulius WernerASFLAGS	+= -D__ASSEMBLY__
1042402b3cf8SJulius Werner# AARCH32/AARCH64 macros are deprecated in favor of the compiler-builtin __aarch64__.
1043402b3cf8SJulius Wernerifeq (${ARCH},aarch32)
1044402b3cf8SJulius Werner        $(eval $(call add_define,AARCH32))
1045402b3cf8SJulius Wernerelse
1046402b3cf8SJulius Werner        $(eval $(call add_define,AARCH64))
1047402b3cf8SJulius Wernerendif
1048d5dfdeb6SJulius Wernerendif # !ERROR_DEPRECATED
10497a24cba5SSoby Mathew
10505accce5bSRoberto Vargas$(eval $(call MAKE_LIB_DIRS))
105161f72a34SRoberto Vargas$(eval $(call MAKE_LIB,c))
10525fee0287SRoberto Vargas
105373c99d4eSJuan Castillo# Expand build macros for the different images
105473c99d4eSJuan Castilloifeq (${NEED_BL1},yes)
105573c99d4eSJuan Castillo$(eval $(call MAKE_BL,1))
105673c99d4eSJuan Castilloendif
105773c99d4eSJuan Castillo
105873c99d4eSJuan Castilloifeq (${NEED_BL2},yes)
1059c9b31ae8SRoberto Vargasifeq (${BL2_AT_EL3}, 0)
1060c9b31ae8SRoberto VargasFIP_BL2_ARGS := tb-fw
1061c9b31ae8SRoberto Vargasendif
1062c9b31ae8SRoberto Vargas
106333950dd8SMasahiro Yamada$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
1064c9b31ae8SRoberto Vargas	$(eval $(call MAKE_BL,2,${FIP_BL2_ARGS})))
106573c99d4eSJuan Castilloendif
106673c99d4eSJuan Castillo
10674d045d0eSMasahiro Yamadaifeq (${NEED_SCP_BL2},yes)
106833950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
10694d045d0eSMasahiro Yamadaendif
10704d045d0eSMasahiro Yamada
107173c99d4eSJuan Castilloifeq (${NEED_BL31},yes)
107273c99d4eSJuan CastilloBL31_SOURCES += ${SPD_SOURCES}
107326d1e0c3SMadhukar Pappireddy# Sort BL31 source files to remove duplicates
107426d1e0c3SMadhukar PappireddyBL31_SOURCES := $(sort ${BL31_SOURCES})
1075c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1076c6ba9b45SSumit Garg$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
1077c6ba9b45SSumit Garg	$(eval $(call MAKE_BL,31,soc-fw,,$(ENCRYPT_BL31))))
1078c6ba9b45SSumit Gargelse
107933950dd8SMasahiro Yamada$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
10808f0617efSJuan Castillo	$(eval $(call MAKE_BL,31,soc-fw)))
108173c99d4eSJuan Castilloendif
1082c6ba9b45SSumit Gargendif
108373c99d4eSJuan Castillo
108470d1fc53SJuan Castillo# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
1085c939d13aSMasahiro Yamada# build system will call TOOL_ADD_IMG to print a warning message and abort the
108670d1fc53SJuan Castillo# process. Note that the dependency on BL32 applies to the FIP only.
108773c99d4eSJuan Castilloifeq (${NEED_BL32},yes)
108826d1e0c3SMadhukar Pappireddy# Sort BL32 source files to remove duplicates
108926d1e0c3SMadhukar PappireddyBL32_SOURCES := $(sort ${BL32_SOURCES})
10909cd15239SMasahiro YamadaBUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
10919cd15239SMasahiro Yamada
1092c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none)
1093c6ba9b45SSumit Garg$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,32,tos-fw,,$(ENCRYPT_BL32))),\
1094c6ba9b45SSumit Garg	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1095c6ba9b45SSumit Gargelse
10969cd15239SMasahiro Yamada$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,32,tos-fw)),\
109733950dd8SMasahiro Yamada	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
109873c99d4eSJuan Castilloendif
1099c6ba9b45SSumit Gargendif
110073c99d4eSJuan Castillo
110173c99d4eSJuan Castillo# Add the BL33 image if required by the platform
110273c99d4eSJuan Castilloifeq (${NEED_BL33},yes)
110333950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
1104db6071c9SJuan Castilloendif
1105db6071c9SJuan Castillo
11069003fa0bSYatharth Kocharifeq (${NEED_BL2U},yes)
110733950dd8SMasahiro Yamada$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
11081dc0714fSMasahiro Yamada	$(eval $(call MAKE_BL,2u,ap-fwu-cfg,FWU_)))
11099003fa0bSYatharth Kocharendif
11109003fa0bSYatharth Kochar
111103b397a8SNishanth Menon# Expand build macros for the different images
111203b397a8SNishanth Menonifeq (${NEED_FDT},yes)
111303b397a8SNishanth Menon    $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
111403b397a8SNishanth Menonendif
111503b397a8SNishanth Menon
1116ce2b1ec6SManish Pandey# Add Secure Partition packages
1117ce2b1ec6SManish Pandeyifeq (${NEED_SP_PKG},yes)
1118ce2b1ec6SManish Pandey$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
1119ce2b1ec6SManish Pandey	${Q}${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT)
1120ce2b1ec6SManish Pandeysp: $(SPTOOL) $(DTBS) $(BUILD_PLAT)/sp_gen.mk
1121ce2b1ec6SManish Pandey	${Q}$(SPTOOL) $(SPTOOL_ARGS)
1122ce2b1ec6SManish Pandey	@${ECHO_BLANK_LINE}
1123ce2b1ec6SManish Pandey	@echo "Built SP Images successfully"
1124ce2b1ec6SManish Pandey	@${ECHO_BLANK_LINE}
1125ce2b1ec6SManish Pandeyendif
1126ce2b1ec6SManish Pandey
112736eaaf37SIan Spraylocate-checkpatch:
112836eaaf37SIan Sprayifndef CHECKPATCH
112966079b04SEtienne Carriere	$(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
113036eaaf37SIan Sprayelse
113136eaaf37SIan Sprayifeq (,$(wildcard ${CHECKPATCH}))
113266079b04SEtienne Carriere	$(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
113336eaaf37SIan Sprayendif
113436eaaf37SIan Sprayendif
113536eaaf37SIan Spray
11364f6ad66aSAchin Guptaclean:
11374f6ad66aSAchin Gupta	@echo "  CLEAN"
1138f1477d4aSEvan Lloyd	$(call SHELL_REMOVE_DIR,${BUILD_PLAT})
11392f2cef46SJeenu Viswambharan	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
11406f971622SJuan Castillo	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
114190aa901fSSumit Garg	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
11425accce5bSRoberto Vargas	${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
11434f6ad66aSAchin Gupta
1144eaaeece2SJames Morrisseyrealclean distclean:
1145eaaeece2SJames Morrissey	@echo "  REALCLEAN"
1146f1477d4aSEvan Lloyd	$(call SHELL_REMOVE_DIR,${BUILD_BASE})
1147f1477d4aSEvan Lloyd	$(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
11482f2cef46SJeenu Viswambharan	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
114926010da1SAntonio Nino Diaz	${Q}${MAKE} --no-print-directory -C ${SPTOOLPATH} clean
11506f971622SJuan Castillo	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
115190aa901fSSumit Garg	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
11525accce5bSRoberto Vargas	${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
11534f6ad66aSAchin Gupta
115436eaaf37SIan Spraycheckcodebase:		locate-checkpatch
115536eaaf37SIan Spray	@echo "  CHECKING STYLE"
115636eaaf37SIan Spray	@if test -d .git ; then						\
11571ef35512SPaul Beesley		git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' |	\
11581a41e8c1SDan Handley		while read GIT_FILE ;					\
11591a41e8c1SDan Handley		do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ;	\
11601a41e8c1SDan Handley		done ;							\
116136eaaf37SIan Spray	else								\
11621a41e8c1SDan Handley		 find . -type f -not -iwholename "*.git*"		\
11631a41e8c1SDan Handley		 -not -iwholename "*build*"				\
11641a41e8c1SDan Handley		 -not -iwholename "*libfdt*"				\
116561f72a34SRoberto Vargas		 -not -iwholename "*libc*"				\
11661a41e8c1SDan Handley		 -not -iwholename "*docs*"				\
11671ef35512SPaul Beesley		 -not -iwholename "*.rst"				\
11681a41e8c1SDan Handley		 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ;	\
116936eaaf37SIan Spray	fi
117036eaaf37SIan Spray
117136eaaf37SIan Spraycheckpatch:		locate-checkpatch
117236eaaf37SIan Spray	@echo "  CHECKING STYLE"
117302a76d5fSYann Gautier	@if test -n "${CHECKPATCH_OPTS}"; then				\
117402a76d5fSYann Gautier		echo "    with ${CHECKPATCH_OPTS} option(s)";		\
117502a76d5fSYann Gautier	fi
117651d28937SAntonio Nino Diaz	${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT});	\
117751d28937SAntonio Nino Diaz	for commit in `git rev-list $$COMMON_COMMIT..HEAD`; do		\
117851d28937SAntonio Nino Diaz		printf "\n[*] Checking style of '$$commit'\n\n";	\
117951d28937SAntonio Nino Diaz		git log --format=email "$$commit~..$$commit"		\
118002a76d5fSYann Gautier			-- ${CHECK_PATHS} |				\
118102a76d5fSYann Gautier			${CHECKPATCH} ${CHECKPATCH_OPTS} - || true;	\
118251d28937SAntonio Nino Diaz		git diff --format=email "$$commit~..$$commit"		\
118302a76d5fSYann Gautier			-- ${CHECK_PATHS} |				\
118402a76d5fSYann Gautier			${CHECKPATCH}  ${CHECKPATCH_OPTS} - || true;	\
118551d28937SAntonio Nino Diaz	done
118636eaaf37SIan Spray
118773c99d4eSJuan Castillocerttool: ${CRTTOOL}
118873c99d4eSJuan Castillo
11896f971622SJuan Castillo.PHONY: ${CRTTOOL}
11906f971622SJuan Castillo${CRTTOOL}:
11913bff910dSSandrine Bailleux	${Q}${MAKE} PLAT=${PLAT} USE_TBBR_DEFS=${USE_TBBR_DEFS} COT=${COT} --no-print-directory -C ${CRTTOOLPATH}
1192f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
11936f971622SJuan Castillo	@echo "Built $@ successfully"
1194f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
11956f971622SJuan Castillo
11966f971622SJuan Castilloifneq (${GENERATE_COT},0)
119773c99d4eSJuan Castillocertificates: ${CRT_DEPS} ${CRTTOOL}
11986f971622SJuan Castillo	${Q}${CRTTOOL} ${CRT_ARGS}
1199f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
12006f971622SJuan Castillo	@echo "Built $@ successfully"
12016f971622SJuan Castillo	@echo "Certificates can be found in ${BUILD_PLAT}"
1202f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
120373c99d4eSJuan Castilloendif
120427713fb4SSoby Mathew
120573c99d4eSJuan Castillo${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
1206819281eeSdp-arm	${Q}${FIPTOOL} create ${FIP_ARGS} $@
1207819281eeSdp-arm	${Q}${FIPTOOL} info $@
1208f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
12092f2cef46SJeenu Viswambharan	@echo "Built $@ successfully"
1210f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
1211f58ad36fSHarry Liebel
12120191262dSYatharth Kocharifneq (${GENERATE_COT},0)
12130191262dSYatharth Kocharfwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
12140191262dSYatharth Kochar	${Q}${CRTTOOL} ${FWU_CRT_ARGS}
1215052ab529SEvan Lloyd	@${ECHO_BLANK_LINE}
12160191262dSYatharth Kochar	@echo "Built $@ successfully"
12170191262dSYatharth Kochar	@echo "FWU certificates can be found in ${BUILD_PLAT}"
1218052ab529SEvan Lloyd	@${ECHO_BLANK_LINE}
12190191262dSYatharth Kocharendif
12200191262dSYatharth Kochar
12210191262dSYatharth Kochar${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
1222819281eeSdp-arm	${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1223819281eeSdp-arm	${Q}${FIPTOOL} info $@
1224052ab529SEvan Lloyd	@${ECHO_BLANK_LINE}
12250191262dSYatharth Kochar	@echo "Built $@ successfully"
1226052ab529SEvan Lloyd	@${ECHO_BLANK_LINE}
12270191262dSYatharth Kochar
122873c99d4eSJuan Castillofiptool: ${FIPTOOL}
122973c99d4eSJuan Castillofip: ${BUILD_PLAT}/${FIP_NAME}
12300191262dSYatharth Kocharfwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
123173c99d4eSJuan Castillo
123273c99d4eSJuan Castillo.PHONY: ${FIPTOOL}
123373c99d4eSJuan Castillo${FIPTOOL}:
1234819281eeSdp-arm	${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" --no-print-directory -C ${FIPTOOLPATH}
1235f58ad36fSHarry Liebel
123626010da1SAntonio Nino Diazsptool: ${SPTOOL}
123726010da1SAntonio Nino Diaz.PHONY: ${SPTOOL}
123826010da1SAntonio Nino Diaz${SPTOOL}:
123926010da1SAntonio Nino Diaz	${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" --no-print-directory -C ${SPTOOLPATH}
124026010da1SAntonio Nino Diaz
12415accce5bSRoberto Vargas.PHONY: libraries
12425accce5bSRoberto Vargasromlib.bin: libraries
1243bbb24f61SJohn 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
12445accce5bSRoberto Vargas
1245cfe83910SLouis Mayencourt# Call print_memory_map tool
1246cfe83910SLouis Mayencourtmemmap: all
1247b890b36dSLouis Mayencourt	${Q}${PYTHON} ${PRINT_MEMORY_MAP} ${BUILD_PLAT} ${INVERTED_MEMMAP}
1248cfe83910SLouis Mayencourt
12496de32378SMadhukar Pappireddydoc:
12506de32378SMadhukar Pappireddy	@echo "  BUILD DOCUMENTATION"
12516de32378SMadhukar Pappireddy	${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
12526de32378SMadhukar Pappireddy
125390aa901fSSumit Gargenctool: ${ENCTOOL}
125490aa901fSSumit Garg
125590aa901fSSumit Garg.PHONY: ${ENCTOOL}
125690aa901fSSumit Garg${ENCTOOL}:
125790aa901fSSumit Garg	${Q}${MAKE} PLAT=${PLAT} BUILD_INFO=0 --no-print-directory -C ${ENCTOOLPATH}
125890aa901fSSumit Garg	@${ECHO_BLANK_LINE}
125990aa901fSSumit Garg	@echo "Built $@ successfully"
126090aa901fSSumit Garg	@${ECHO_BLANK_LINE}
126190aa901fSSumit Garg
126235fab8c9SJoakim Bechcscope:
126335fab8c9SJoakim Bech	@echo "  CSCOPE"
126435fab8c9SJoakim Bech	${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
126535fab8c9SJoakim Bech	${Q}cscope -b -q -k
126635fab8c9SJoakim Bech
126772ee3314SRyan Harkinhelp:
12687c23126cSJohn Tsichritzis	@echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
126972ee3314SRyan Harkin	@echo ""
127072ee3314SRyan Harkin	@echo "PLAT is used to specify which platform you wish to build."
127108c7ed0fSSandrine Bailleux	@echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
127272ee3314SRyan Harkin	@echo ""
12737c23126cSJohn Tsichritzis	@echo "platform = ${PLATFORM_LIST}"
12747c23126cSJohn Tsichritzis	@echo ""
12751b578596SSandrine Bailleux	@echo "Please refer to the User Guide for a list of all supported options."
12761b578596SSandrine Bailleux	@echo "Note that the build system doesn't track dependencies for build "
12771b578596SSandrine Bailleux	@echo "options. Therefore, if any of the build options are changed "
12781b578596SSandrine Bailleux	@echo "from a previous build, a clean build must be performed."
12791b578596SSandrine Bailleux	@echo ""
128072ee3314SRyan Harkin	@echo "Supported Targets:"
12811b578596SSandrine Bailleux	@echo "  all            Build all individual bootloader binaries"
128236eaaf37SIan Spray	@echo "  bl1            Build the BL1 binary"
12838aa559c0SJeenu Viswambharan	@echo "  bl2            Build the BL2 binary"
12849003fa0bSYatharth Kochar	@echo "  bl2u           Build the BL2U binary"
1285d178637dSJuan Castillo	@echo "  bl31           Build the BL31 binary"
12869d29c227SSoby Mathew	@echo "  bl32           Build the BL32 binary. If ARCH=aarch32, then "
12879d29c227SSoby Mathew	@echo "                 this builds secure payload specified by AARCH32_SP"
128873c99d4eSJuan Castillo	@echo "  certificates   Build the certificates (requires 'GENERATE_COT=1')"
12891b578596SSandrine Bailleux	@echo "  fip            Build the Firmware Image Package (FIP)"
12900191262dSYatharth Kochar	@echo "  fwu_fip        Build the FWU Firmware Image Package (FIP)"
129136eaaf37SIan Spray	@echo "  checkcodebase  Check the coding style of the entire source tree"
129236eaaf37SIan Spray	@echo "  checkpatch     Check the coding style on changes in the current"
129336eaaf37SIan Spray	@echo "                 branch against BASE_COMMIT (default origin/master)"
129472ee3314SRyan Harkin	@echo "  clean          Clean the build for the selected platform"
129535fab8c9SJoakim Bech	@echo "  cscope         Generate cscope index"
129672ee3314SRyan Harkin	@echo "  distclean      Remove all build artifacts for all platforms"
12976f971622SJuan Castillo	@echo "  certtool       Build the Certificate generation tool"
129890aa901fSSumit Garg	@echo "  enctool        Build the Firmware encryption tool"
1299f58ad36fSHarry Liebel	@echo "  fiptool        Build the Firmware Image Package (FIP) creation tool"
1300ce2b1ec6SManish Pandey	@echo "  sp             Build the Secure Partition Packages"
130126010da1SAntonio Nino Diaz	@echo "  sptool         Build the Secure Partition Package creation tool"
130238c14d88SSoby Mathew	@echo "  dtbs           Build the Device Tree Blobs (if required for the platform)"
1303cfe83910SLouis Mayencourt	@echo "  memmap         Print the memory map of the built binaries"
13046de32378SMadhukar Pappireddy	@echo "  doc            Build html based documentation using Sphinx tool"
130572ee3314SRyan Harkin	@echo ""
13061b578596SSandrine Bailleux	@echo "Note: most build targets require PLAT to be set to a specific platform."
130772ee3314SRyan Harkin	@echo ""
130872ee3314SRyan Harkin	@echo "example: build all targets for the FVP platform:"
130972ee3314SRyan Harkin	@echo "  CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
1310