xref: /rk3399_ARM-atf/Makefile (revision 5d1c104f9aa7e1f52607679db96e5695cac266e7)
14f6ad66aSAchin Gupta#
254035fc4SSandrine Bailleux# Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved.
34f6ad66aSAchin Gupta#
44f6ad66aSAchin Gupta# Redistribution and use in source and binary forms, with or without
54f6ad66aSAchin Gupta# modification, are permitted provided that the following conditions are met:
64f6ad66aSAchin Gupta#
74f6ad66aSAchin Gupta# Redistributions of source code must retain the above copyright notice, this
84f6ad66aSAchin Gupta# list of conditions and the following disclaimer.
94f6ad66aSAchin Gupta#
104f6ad66aSAchin Gupta# Redistributions in binary form must reproduce the above copyright notice,
114f6ad66aSAchin Gupta# this list of conditions and the following disclaimer in the documentation
124f6ad66aSAchin Gupta# and/or other materials provided with the distribution.
134f6ad66aSAchin Gupta#
144f6ad66aSAchin Gupta# Neither the name of ARM nor the names of its contributors may be used
154f6ad66aSAchin Gupta# to endorse or promote products derived from this software without specific
164f6ad66aSAchin Gupta# prior written permission.
174f6ad66aSAchin Gupta#
184f6ad66aSAchin Gupta# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
194f6ad66aSAchin Gupta# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
204f6ad66aSAchin Gupta# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
214f6ad66aSAchin Gupta# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
224f6ad66aSAchin Gupta# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
234f6ad66aSAchin Gupta# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
244f6ad66aSAchin Gupta# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
254f6ad66aSAchin Gupta# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
264f6ad66aSAchin Gupta# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
274f6ad66aSAchin Gupta# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
284f6ad66aSAchin Gupta# POSSIBILITY OF SUCH DAMAGE.
294f6ad66aSAchin Gupta#
304f6ad66aSAchin Gupta
31e35c4045SJeenu Viswambharan#
32aaa3e722SJuan Castillo# Trusted Firmware Version
33aaa3e722SJuan Castillo#
34c6249aaaSDan HandleyVERSION_MAJOR			:= 1
356791f52eSDan HandleyVERSION_MINOR			:= 2
36aaa3e722SJuan Castillo
3788154678SJuan Castillo# Default goal is build all images
3888154678SJuan Castillo.DEFAULT_GOAL			:= all
3988154678SJuan Castillo
40231c1470SEvan LloydMAKE_HELPERS_DIRECTORY := make_helpers/
41231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_macros.mk
42e7f54dbdSEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_env.mk
4373c99d4eSJuan Castillo
4473c99d4eSJuan Castillo################################################################################
45e35c4045SJeenu Viswambharan# Default values for build configurations
4673c99d4eSJuan Castillo################################################################################
47e35c4045SJeenu Viswambharan
48e35c4045SJeenu Viswambharan# Build verbosity
49e35c4045SJeenu ViswambharanV				:= 0
50e35c4045SJeenu Viswambharan# Debug build
51e35c4045SJeenu ViswambharanDEBUG				:= 0
52e35c4045SJeenu Viswambharan# Build platform
53e35c4045SJeenu ViswambharanDEFAULT_PLAT			:= fvp
54e35c4045SJeenu ViswambharanPLAT				:= ${DEFAULT_PLAT}
55e35c4045SJeenu Viswambharan# SPD choice
56e35c4045SJeenu ViswambharanSPD				:= none
57e35c4045SJeenu Viswambharan# Base commit to perform code check on
58e35c4045SJeenu ViswambharanBASE_COMMIT			:= origin/master
592da8d8bfSJeenu Viswambharan# NS timer register save and restore
602da8d8bfSJeenu ViswambharanNS_TIMER_SWITCH			:= 0
611645d3eeSSandrine Bailleux# By default, BL1 acts as the reset handler, not BL31
62dbad1bacSVikram KanigiriRESET_TO_BL31			:= 0
630f21c547SJuan Castillo# Include FP registers in cpu context
640f21c547SJuan CastilloCTX_INCLUDE_FPREGS		:= 0
658cd16e6bSSoby Mathew# Build flag to include AArch32 registers in cpu context save and restore
668cd16e6bSSoby Mathew# during world switch. This flag must be set to 0 for AArch64-only platforms.
678cd16e6bSSoby MathewCTX_INCLUDE_AARCH32_REGS	:= 1
682b98e789SSandrine Bailleux# Determine the version of ARM GIC architecture to use for interrupt management
692b98e789SSandrine Bailleux# in EL3. The platform port can change this value if needed.
702b98e789SSandrine BailleuxARM_GIC_ARCH			:= 2
7123e47edeSVikram Kanigiri# Determine the version of ARM CCI product used in the platform. The platform
7223e47edeSVikram Kanigiri# port can change this value if needed.
7323e47edeSVikram KanigiriARM_CCI_PRODUCT_ID		:= 400
74bc920128SSoby Mathew# Flag used to indicate if ASM_ASSERTION should be enabled for the build.
75bc920128SSoby Mathew# This defaults to being present in DEBUG builds only.
76bc920128SSoby MathewASM_ASSERTION			:= ${DEBUG}
778c5fe0b5SSoby Mathew# Build option to choose whether Trusted firmware uses Coherent memory or not.
788c5fe0b5SSoby MathewUSE_COHERENT_MEM		:= 1
798ee24980SSoby Mathew# Flag used to choose the power state format viz Extended State-ID or the Original
808ee24980SSoby Mathew# format.
818ee24980SSoby MathewPSCI_EXTENDED_STATE_ID		:= 0
827f48fab9SJuan Castillo# Default FIP file name
837f48fab9SJuan CastilloFIP_NAME			:= fip.bin
840191262dSYatharth Kochar# Default FWU_FIP file name
850191262dSYatharth KocharFWU_FIP_NAME			:= fwu_fip.bin
86db6071c9SJuan Castillo# By default, use the -pedantic option in the gcc command line
87db6071c9SJuan CastilloDISABLE_PEDANTIC		:= 0
886f971622SJuan Castillo# Flags to generate the Chain of Trust
896f971622SJuan CastilloGENERATE_COT			:= 0
906f971622SJuan CastilloCREATE_KEYS			:= 1
91fd34e7baSJuan CastilloSAVE_KEYS			:= 0
926eadf762SJuan Castillo# Flags to build TF with Trusted Boot support
936eadf762SJuan CastilloTRUSTED_BOARD_BOOT		:= 0
94bf031bbaSSandrine Bailleux# By default, consider that the platform's reset address is not programmable.
95bf031bbaSSandrine Bailleux# The platform Makefile is free to override this value.
96bf031bbaSSandrine BailleuxPROGRAMMABLE_RESET_ADDRESS	:= 0
977a24cba5SSoby Mathew# Build flag to treat usage of deprecated platform and framework APIs as error.
987a24cba5SSoby MathewERROR_DEPRECATED		:= 0
99a9bec67dSSandrine Bailleux# By default, consider that the platform may release several CPUs out of reset.
100a9bec67dSSandrine Bailleux# The platform Makefile is free to override this value.
101a9bec67dSSandrine BailleuxCOLD_BOOT_SINGLE_CPU		:= 0
10235e8c766SSandrine Bailleux# Flag to introduce an infinite loop in BL1 just before it exits into the next
10335e8c766SSandrine Bailleux# image. This is meant to help debugging the post-BL2 phase.
10435e8c766SSandrine BailleuxSPIN_ON_BL1_EXIT		:= 0
10512f654b6SJuan Castillo# Build PL011 UART driver in minimal generic UART mode
10612f654b6SJuan CastilloPL011_GENERIC_UART		:= 0
107a31d8983SYatharth Kochar# Flag to enable Performance Measurement Framework
108a31d8983SYatharth KocharENABLE_PMF			:= 0
109170fb93dSYatharth Kochar# Flag to enable PSCI STATs functionality
110170fb93dSYatharth KocharENABLE_PSCI_STAT	:= 0
111*5d1c104fSSandrine Bailleux# Whether code and read-only data should be put on separate memory pages.
112*5d1c104fSSandrine Bailleux# The platform Makefile is free to override this value.
113*5d1c104fSSandrine BailleuxSEPARATE_CODE_AND_RODATA	:= 0
114*5d1c104fSSandrine Bailleux
11573c99d4eSJuan Castillo
11673c99d4eSJuan Castillo################################################################################
11773c99d4eSJuan Castillo# Checkpatch script options
11873c99d4eSJuan Castillo################################################################################
11973c99d4eSJuan Castillo
120f607739cSSandrine BailleuxCHECKCODE_ARGS		:=	--no-patch
121f0b489c1SDan Handley# Do not check the coding style on imported library files or documentation files
122f0b489c1SDan HandleyINC_LIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
1231a41e8c1SDan Handley					include/lib/libfdt		\
124f0b489c1SDan Handley					include/lib/stdlib,		\
125f0b489c1SDan Handley					$(wildcard include/lib/*)))
126f0b489c1SDan HandleyINC_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
127f0b489c1SDan Handley					include/lib,			\
128f0b489c1SDan Handley					$(wildcard include/*)))
129f0b489c1SDan HandleyLIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
1301a41e8c1SDan Handley					lib/libfdt			\
131f0b489c1SDan Handley					lib/stdlib,			\
132f0b489c1SDan Handley					$(wildcard lib/*)))
133f0b489c1SDan HandleyROOT_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
134f0b489c1SDan Handley					lib				\
135f0b489c1SDan Handley					include				\
136f0b489c1SDan Handley					docs				\
137f0b489c1SDan Handley					%.md,				\
138f0b489c1SDan Handley					$(wildcard *)))
139f0b489c1SDan HandleyCHECK_PATHS		:=	${ROOT_DIRS_TO_CHECK}			\
140f0b489c1SDan Handley				${INC_DIRS_TO_CHECK}			\
141f0b489c1SDan Handley				${INC_LIB_DIRS_TO_CHECK}		\
142f0b489c1SDan Handley				${LIB_DIRS_TO_CHECK}
14336eaaf37SIan Spray
14473c99d4eSJuan Castillo
14573c99d4eSJuan Castillo################################################################################
14673c99d4eSJuan Castillo# Process build options
14773c99d4eSJuan Castillo################################################################################
14873c99d4eSJuan Castillo
14973c99d4eSJuan Castillo# Verbose flag
150e35c4045SJeenu Viswambharanifeq (${V},0)
151b169f6a9SEvan Lloyd        Q:=@
15236eaaf37SIan Spray        CHECKCODE_ARGS	+=	--no-summary --terse
1534f6ad66aSAchin Guptaelse
154b169f6a9SEvan Lloyd        Q:=
1554f6ad66aSAchin Guptaendif
1562f2cef46SJeenu Viswambharanexport Q
1572f2cef46SJeenu Viswambharan
15873c99d4eSJuan Castillo# Process Debug flag
15973c99d4eSJuan Castillo$(eval $(call add_define,DEBUG))
160eaaeece2SJames Morrisseyifneq (${DEBUG}, 0)
161eaaeece2SJames Morrissey        BUILD_TYPE	:=	debug
162403973c9SSandrine Bailleux        TF_CFLAGS	+= 	-g
16373c99d4eSJuan Castillo        ASFLAGS		+= 	-g -Wa,--gdwarf-2
164289c28a8SDan Handley        # Use LOG_LEVEL_INFO by default for debug builds
165289c28a8SDan Handley        LOG_LEVEL	:=	40
166eaaeece2SJames Morrisseyelse
167eaaeece2SJames Morrissey        BUILD_TYPE	:=	release
16873c99d4eSJuan Castillo        $(eval $(call add_define,NDEBUG))
169289c28a8SDan Handley        # Use LOG_LEVEL_NOTICE by default for release builds
170289c28a8SDan Handley        LOG_LEVEL	:=	20
171eaaeece2SJames Morrisseyendif
172eaaeece2SJames Morrissey
173aaa3e722SJuan Castillo# Default build string (git branch and commit)
174aaa3e722SJuan Castilloifeq (${BUILD_STRING},)
175aaa3e722SJuan Castillo        BUILD_STRING	:=	$(shell git log -n 1 --pretty=format:"%h")
176aaa3e722SJuan Castilloendif
177aaa3e722SJuan CastilloVERSION_STRING		:=	v${VERSION_MAJOR}.${VERSION_MINOR}(${BUILD_TYPE}):${BUILD_STRING}
178aaa3e722SJuan Castillo
17973c99d4eSJuan Castillo# The cert_create tool cannot generate certificates individually, so we use the
18073c99d4eSJuan Castillo# target 'certificates' to create them all
18173c99d4eSJuan Castilloifneq (${GENERATE_COT},0)
18273c99d4eSJuan Castillo        FIP_DEPS += certificates
1830191262dSYatharth Kochar        FWU_FIP_DEPS += fwu_certificates
18473c99d4eSJuan Castilloendif
18573c99d4eSJuan Castillo
18673c99d4eSJuan Castillo
18773c99d4eSJuan Castillo################################################################################
18873c99d4eSJuan Castillo# Toolchain
18973c99d4eSJuan Castillo################################################################################
19073c99d4eSJuan Castillo
19173c99d4eSJuan CastilloCC			:=	${CROSS_COMPILE}gcc
19273c99d4eSJuan CastilloCPP			:=	${CROSS_COMPILE}cpp
19373c99d4eSJuan CastilloAS			:=	${CROSS_COMPILE}gcc
19473c99d4eSJuan CastilloAR			:=	${CROSS_COMPILE}ar
19573c99d4eSJuan CastilloLD			:=	${CROSS_COMPILE}ld
19673c99d4eSJuan CastilloOC			:=	${CROSS_COMPILE}objcopy
19773c99d4eSJuan CastilloOD			:=	${CROSS_COMPILE}objdump
19873c99d4eSJuan CastilloNM			:=	${CROSS_COMPILE}nm
19973c99d4eSJuan CastilloPP			:=	${CROSS_COMPILE}gcc -E
20073c99d4eSJuan Castillo
20173c99d4eSJuan CastilloASFLAGS			+= 	-nostdinc -ffreestanding -Wa,--fatal-warnings	\
20273c99d4eSJuan Castillo				-Werror -Wmissing-include-dirs			\
20373c99d4eSJuan Castillo				-mgeneral-regs-only -D__ASSEMBLY__		\
20473c99d4eSJuan Castillo				${DEFINES} ${INCLUDES}
205403973c9SSandrine BailleuxTF_CFLAGS		+= 	-nostdinc -ffreestanding -Wall			\
20673c99d4eSJuan Castillo				-Werror -Wmissing-include-dirs			\
207fa1d3712SJuan Castillo				-mgeneral-regs-only -mstrict-align		\
208fa1d3712SJuan Castillo				-std=c99 -c -Os					\
20973c99d4eSJuan Castillo				${DEFINES} ${INCLUDES}
210403973c9SSandrine BailleuxTF_CFLAGS		+=	-ffunction-sections -fdata-sections
21173c99d4eSJuan Castillo
21273c99d4eSJuan CastilloLDFLAGS			+=	--fatal-warnings -O1
21373c99d4eSJuan CastilloLDFLAGS			+=	--gc-sections
21473c99d4eSJuan Castillo
21573c99d4eSJuan Castillo
21673c99d4eSJuan Castillo################################################################################
21773c99d4eSJuan Castillo# Common sources and include directories
21873c99d4eSJuan Castillo################################################################################
219f0b489c1SDan Handleyinclude lib/stdlib/stdlib.mk
22073c99d4eSJuan Castillo
22173c99d4eSJuan CastilloBL_COMMON_SOURCES	+=	common/bl_common.c			\
222b79af934SSoby Mathew				common/tf_printf.c			\
223626ed510SSoby Mathew				common/aarch64/debug.S			\
224bee82417SDan Handley				lib/aarch64/cache_helpers.S		\
225bee82417SDan Handley				lib/aarch64/misc_helpers.S		\
226f0b489c1SDan Handley				plat/common/aarch64/platform_helpers.S	\
227f0b489c1SDan Handley				${STDLIB_SRCS}
228d7a6b0f8SRyan Harkin
22948bfb88eSYatharth KocharINCLUDES		+=	-Iinclude/bl1			\
23048bfb88eSYatharth Kochar				-Iinclude/bl31			\
2314ecca339SDan Handley				-Iinclude/bl31/services		\
2324ecca339SDan Handley				-Iinclude/common		\
2334ecca339SDan Handley				-Iinclude/drivers		\
2344ecca339SDan Handley				-Iinclude/drivers/arm		\
2351779ba6bSJuan Castillo				-Iinclude/drivers/auth		\
236935db693SDan Handley				-Iinclude/drivers/io		\
237c13b2e32SVarun Wadekar				-Iinclude/drivers/ti/uart	\
2384ecca339SDan Handley				-Iinclude/lib			\
2394ecca339SDan Handley				-Iinclude/lib/aarch64		\
240add40351SSoby Mathew				-Iinclude/lib/cpus/aarch64	\
2415f0cdb05SDan Handley				-Iinclude/plat/common		\
242375f538aSAchin Gupta				${PLAT_INCLUDES}		\
243375f538aSAchin Gupta				${SPD_INCLUDES}
2444f6ad66aSAchin Gupta
24573c99d4eSJuan Castillo
24673c99d4eSJuan Castillo################################################################################
24773c99d4eSJuan Castillo# Generic definitions
24873c99d4eSJuan Castillo################################################################################
24973c99d4eSJuan Castillo
250231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
251231c1470SEvan Lloyd
25273c99d4eSJuan CastilloBUILD_BASE		:=	./build
25373c99d4eSJuan CastilloBUILD_PLAT		:=	${BUILD_BASE}/${PLAT}/${BUILD_TYPE}
25473c99d4eSJuan Castillo
255231c1470SEvan LloydSPDS			:=	$(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
25673c99d4eSJuan Castillo
25773c99d4eSJuan Castillo# Platforms providing their own TBB makefile may override this value
25873c99d4eSJuan CastilloINCLUDE_TBBR_MK		:=	1
25973c99d4eSJuan Castillo
26073c99d4eSJuan Castillo
26173c99d4eSJuan Castillo################################################################################
26273c99d4eSJuan Castillo# Include SPD Makefile if one has been specified
26373c99d4eSJuan Castillo################################################################################
26473c99d4eSJuan Castillo
26573c99d4eSJuan Castilloifneq (${SPD},none)
2664c117f6cSSandrine Bailleuxifdef EL3_PAYLOAD_BASE
2674c117f6cSSandrine Bailleux        $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
2684c117f6cSSandrine Bailleux        $(warning "The SPD and its BL32 companion will be present but ignored.")
2694c117f6cSSandrine Bailleuxendif
27073c99d4eSJuan Castillo        # We expect to locate an spd.mk under the specified SPD directory
271231c1470SEvan Lloyd        SPD_MAKE	:=	$(wildcard services/spd/${SPD}/${SPD}.mk)
27273c99d4eSJuan Castillo
27373c99d4eSJuan Castillo        ifeq (${SPD_MAKE},)
27473c99d4eSJuan Castillo                $(error Error: No services/spd/${SPD}/${SPD}.mk located)
27573c99d4eSJuan Castillo        endif
27673c99d4eSJuan Castillo        $(info Including ${SPD_MAKE})
27773c99d4eSJuan Castillo        include ${SPD_MAKE}
27873c99d4eSJuan Castillo
27970d1fc53SJuan Castillo        # If there's BL32 companion for the chosen SPD, we expect that the SPD's
28070d1fc53SJuan Castillo        # Makefile would set NEED_BL32 to "yes". In this case, the build system
28170d1fc53SJuan Castillo        # supports two mutually exclusive options:
28270d1fc53SJuan Castillo        # * BL32 is built from source: then BL32_SOURCES must contain the list
28370d1fc53SJuan Castillo        #   of source files to build BL32
28470d1fc53SJuan Castillo        # * BL32 is a prebuilt binary: then BL32 must point to the image file
28570d1fc53SJuan Castillo        #   that will be included in the FIP
28670d1fc53SJuan Castillo        # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
28770d1fc53SJuan Castillo        # over the sources.
288e35c4045SJeenu Viswambharanendif
289e35c4045SJeenu Viswambharan
290c04d2606SDan Handley
29173c99d4eSJuan Castillo################################################################################
29273c99d4eSJuan Castillo# Include the platform specific Makefile after the SPD Makefile (the platform
29373c99d4eSJuan Castillo# makefile may use all previous definitions in this file)
29473c99d4eSJuan Castillo################################################################################
2952da8d8bfSJeenu Viswambharan
29673c99d4eSJuan Castilloinclude ${PLAT_MAKEFILE_FULL}
2970f21c547SJuan Castillo
29893271a1eSAchin Gupta# If the platform has not defined ENABLE_PLAT_COMPAT, then enable it by default
29993271a1eSAchin Guptaifndef ENABLE_PLAT_COMPAT
30093271a1eSAchin GuptaENABLE_PLAT_COMPAT := 1
30193271a1eSAchin Guptaendif
30293271a1eSAchin Gupta
30393271a1eSAchin Gupta# Include the platform compatibility helpers for PSCI
30493271a1eSAchin Guptaifneq (${ENABLE_PLAT_COMPAT}, 0)
30593271a1eSAchin Guptainclude plat/compat/plat_compat.mk
30693271a1eSAchin Guptaendif
30793271a1eSAchin Gupta
30854035fc4SSandrine Bailleux# Include the CPU specific operations makefile, which provides default
30954035fc4SSandrine Bailleux# values for all CPU errata workarounds and CPU specific optimisations.
31054035fc4SSandrine Bailleux# This can be overridden by the platform.
31173c99d4eSJuan Castilloinclude lib/cpus/cpu-ops.mk
3124f6ad66aSAchin Gupta
3134f6ad66aSAchin Gupta
31473c99d4eSJuan Castillo################################################################################
315cf2c8a33SAntonio Nino Diaz# Check incompatible options
316cf2c8a33SAntonio Nino Diaz################################################################################
317cf2c8a33SAntonio Nino Diaz
318cf2c8a33SAntonio Nino Diazifdef EL3_PAYLOAD_BASE
31968450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
32068450a6dSAntonio Nino Diaz                $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
32168450a6dSAntonio Nino Diaz                incompatible build options. EL3_PAYLOAD_BASE has priority.")
322cf2c8a33SAntonio Nino Diaz        endif
323cf2c8a33SAntonio Nino Diazendif
324cf2c8a33SAntonio Nino Diaz
325cf2c8a33SAntonio Nino Diazifeq (${NEED_BL33},yes)
326cf2c8a33SAntonio Nino Diaz        ifdef EL3_PAYLOAD_BASE
327cf2c8a33SAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
328cf2c8a33SAntonio Nino Diaz                BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
329cf2c8a33SAntonio Nino Diaz        endif
33068450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
33168450a6dSAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
33268450a6dSAntonio Nino Diaz                PRELOADED_BL33_BASE is used and won't be added to the FIP \
33368450a6dSAntonio Nino Diaz                file.")
334cf2c8a33SAntonio Nino Diaz        endif
335cf2c8a33SAntonio Nino Diazendif
336cf2c8a33SAntonio Nino Diaz
337cf2c8a33SAntonio Nino Diaz
338cf2c8a33SAntonio Nino Diaz################################################################################
33973c99d4eSJuan Castillo# Process platform overrideable behaviour
34073c99d4eSJuan Castillo################################################################################
3414f6ad66aSAchin Gupta
34273c99d4eSJuan Castillo# Check if -pedantic option should be used
34373c99d4eSJuan Castilloifeq (${DISABLE_PEDANTIC},0)
344403973c9SSandrine Bailleux        TF_CFLAGS	+= 	-pedantic
34573c99d4eSJuan Castilloendif
346f58ad36fSHarry Liebel
3471645d3eeSSandrine Bailleux# Using the ARM Trusted Firmware BL2 implies that a BL33 image also needs to be
34873c99d4eSJuan Castillo# supplied for the FIP and Certificate generation tools. This flag can be
34973c99d4eSJuan Castillo# overridden by the platform.
35073c99d4eSJuan Castilloifdef BL2_SOURCES
351cf2c8a33SAntonio Nino Diaz        ifdef EL3_PAYLOAD_BASE
352cf2c8a33SAntonio Nino Diaz                # If booting an EL3 payload there is no need for a BL33 image
353cf2c8a33SAntonio Nino Diaz                # in the FIP file.
3544c117f6cSSandrine Bailleux                NEED_BL33		:=	no
355cf2c8a33SAntonio Nino Diaz        else
35668450a6dSAntonio Nino Diaz                ifdef PRELOADED_BL33_BASE
357cf2c8a33SAntonio Nino Diaz                        # If booting a BL33 preloaded image there is no need of
358cf2c8a33SAntonio Nino Diaz                        # another one in the FIP file.
359cf2c8a33SAntonio Nino Diaz                        NEED_BL33		:=	no
360cf2c8a33SAntonio Nino Diaz                else
361cf2c8a33SAntonio Nino Diaz                        NEED_BL33		?=	yes
362cf2c8a33SAntonio Nino Diaz                endif
3634c117f6cSSandrine Bailleux        endif
36473c99d4eSJuan Castilloendif
3656f971622SJuan Castillo
36673c99d4eSJuan Castillo# Process TBB related flags
3676f971622SJuan Castilloifneq (${GENERATE_COT},0)
36873c99d4eSJuan Castillo        # Common cert_create options
3696f971622SJuan Castillo        ifneq (${CREATE_KEYS},0)
3706f971622SJuan Castillo                $(eval CRT_ARGS += -n)
3710191262dSYatharth Kochar                $(eval FWU_CRT_ARGS += -n)
372fd34e7baSJuan Castillo                ifneq (${SAVE_KEYS},0)
373fd34e7baSJuan Castillo                        $(eval CRT_ARGS += -k)
3740191262dSYatharth Kochar                        $(eval FWU_CRT_ARGS += -k)
375fd34e7baSJuan Castillo                endif
3766f971622SJuan Castillo        endif
37773c99d4eSJuan Castillo        # Include TBBR makefile (unless the platform indicates otherwise)
37873c99d4eSJuan Castillo        ifeq (${INCLUDE_TBBR_MK},1)
37973c99d4eSJuan Castillo                include make_helpers/tbbr/tbbr_tools.mk
38073c99d4eSJuan Castillo        endif
3816f971622SJuan Castilloendif
3826f971622SJuan Castillo
383170fb93dSYatharth Kochar# Make sure PMF is enabled if PSCI STAT is enabled.
384170fb93dSYatharth Kocharifeq (${ENABLE_PSCI_STAT},1)
385170fb93dSYatharth KocharENABLE_PMF			:= 1
386170fb93dSYatharth Kocharendif
38773c99d4eSJuan Castillo
38873c99d4eSJuan Castillo################################################################################
38973c99d4eSJuan Castillo# Auxiliary tools (fip_create, cert_create, etc)
39073c99d4eSJuan Castillo################################################################################
39173c99d4eSJuan Castillo
39273c99d4eSJuan Castillo# Variables for use with Certificate Generation Tool
39373c99d4eSJuan CastilloCRTTOOLPATH		?=	tools/cert_create
39442a45b51SEvan LloydCRTTOOL			?=	${CRTTOOLPATH}/cert_create${BIN_EXT}
39573c99d4eSJuan Castillo
39673c99d4eSJuan Castillo# Variables for use with Firmware Image Package
39773c99d4eSJuan CastilloFIPTOOLPATH		?=	tools/fip_create
39842a45b51SEvan LloydFIPTOOL			?=	${FIPTOOLPATH}/fip_create${BIN_EXT}
39973c99d4eSJuan Castillo
40073c99d4eSJuan Castillo
40173c99d4eSJuan Castillo################################################################################
40273c99d4eSJuan Castillo# Build options checks
40373c99d4eSJuan Castillo################################################################################
40473c99d4eSJuan Castillo
40573c99d4eSJuan Castillo$(eval $(call assert_boolean,DEBUG))
40673c99d4eSJuan Castillo$(eval $(call assert_boolean,NS_TIMER_SWITCH))
40773c99d4eSJuan Castillo$(eval $(call assert_boolean,RESET_TO_BL31))
40873c99d4eSJuan Castillo$(eval $(call assert_boolean,CTX_INCLUDE_FPREGS))
4098cd16e6bSSoby Mathew$(eval $(call assert_boolean,CTX_INCLUDE_AARCH32_REGS))
41073c99d4eSJuan Castillo$(eval $(call assert_boolean,ASM_ASSERTION))
41173c99d4eSJuan Castillo$(eval $(call assert_boolean,USE_COHERENT_MEM))
41273c99d4eSJuan Castillo$(eval $(call assert_boolean,DISABLE_PEDANTIC))
41373c99d4eSJuan Castillo$(eval $(call assert_boolean,GENERATE_COT))
41473c99d4eSJuan Castillo$(eval $(call assert_boolean,CREATE_KEYS))
41573c99d4eSJuan Castillo$(eval $(call assert_boolean,SAVE_KEYS))
41673c99d4eSJuan Castillo$(eval $(call assert_boolean,TRUSTED_BOARD_BOOT))
41773c99d4eSJuan Castillo$(eval $(call assert_boolean,PROGRAMMABLE_RESET_ADDRESS))
418a9bec67dSSandrine Bailleux$(eval $(call assert_boolean,COLD_BOOT_SINGLE_CPU))
41973c99d4eSJuan Castillo$(eval $(call assert_boolean,PSCI_EXTENDED_STATE_ID))
4207a24cba5SSoby Mathew$(eval $(call assert_boolean,ERROR_DEPRECATED))
42193271a1eSAchin Gupta$(eval $(call assert_boolean,ENABLE_PLAT_COMPAT))
42235e8c766SSandrine Bailleux$(eval $(call assert_boolean,SPIN_ON_BL1_EXIT))
42312f654b6SJuan Castillo$(eval $(call assert_boolean,PL011_GENERIC_UART))
424a31d8983SYatharth Kochar$(eval $(call assert_boolean,ENABLE_PMF))
425170fb93dSYatharth Kochar$(eval $(call assert_boolean,ENABLE_PSCI_STAT))
426*5d1c104fSSandrine Bailleux$(eval $(call assert_boolean,SEPARATE_CODE_AND_RODATA))
42773c99d4eSJuan Castillo
42873c99d4eSJuan Castillo
42973c99d4eSJuan Castillo################################################################################
43073c99d4eSJuan Castillo# Add definitions to the cpp preprocessor based on the current build options.
43173c99d4eSJuan Castillo# This is done after including the platform specific makefile to allow the
43273c99d4eSJuan Castillo# platform to overwrite the default options
43373c99d4eSJuan Castillo################################################################################
43473c99d4eSJuan Castillo
43573c99d4eSJuan Castillo$(eval $(call add_define,PLAT_${PLAT}))
43681d139d5SAntonio Nino Diaz$(eval $(call add_define,SPD_${SPD}))
43773c99d4eSJuan Castillo$(eval $(call add_define,NS_TIMER_SWITCH))
43873c99d4eSJuan Castillo$(eval $(call add_define,RESET_TO_BL31))
43973c99d4eSJuan Castillo$(eval $(call add_define,CTX_INCLUDE_FPREGS))
4408cd16e6bSSoby Mathew$(eval $(call add_define,CTX_INCLUDE_AARCH32_REGS))
44173c99d4eSJuan Castillo$(eval $(call add_define,ARM_GIC_ARCH))
44273c99d4eSJuan Castillo$(eval $(call add_define,ARM_CCI_PRODUCT_ID))
44373c99d4eSJuan Castillo$(eval $(call add_define,ASM_ASSERTION))
44473c99d4eSJuan Castillo$(eval $(call add_define,LOG_LEVEL))
44573c99d4eSJuan Castillo$(eval $(call add_define,USE_COHERENT_MEM))
44673c99d4eSJuan Castillo$(eval $(call add_define,TRUSTED_BOARD_BOOT))
44773c99d4eSJuan Castillo$(eval $(call add_define,PROGRAMMABLE_RESET_ADDRESS))
448a9bec67dSSandrine Bailleux$(eval $(call add_define,COLD_BOOT_SINGLE_CPU))
44973c99d4eSJuan Castillo$(eval $(call add_define,PSCI_EXTENDED_STATE_ID))
4507a24cba5SSoby Mathew$(eval $(call add_define,ERROR_DEPRECATED))
45193271a1eSAchin Gupta$(eval $(call add_define,ENABLE_PLAT_COMPAT))
45235e8c766SSandrine Bailleux$(eval $(call add_define,SPIN_ON_BL1_EXIT))
453cf2c8a33SAntonio Nino Diaz$(eval $(call add_define,PL011_GENERIC_UART))
454a31d8983SYatharth Kochar$(eval $(call add_define,ENABLE_PMF))
455170fb93dSYatharth Kochar$(eval $(call add_define,ENABLE_PSCI_STAT))
456*5d1c104fSSandrine Bailleux$(eval $(call add_define,SEPARATE_CODE_AND_RODATA))
4574c117f6cSSandrine Bailleux# Define the EL3_PAYLOAD_BASE flag only if it is provided.
4584c117f6cSSandrine Bailleuxifdef EL3_PAYLOAD_BASE
4594c117f6cSSandrine Bailleux        $(eval $(call add_define,EL3_PAYLOAD_BASE))
460cf2c8a33SAntonio Nino Diazelse
46168450a6dSAntonio Nino Diaz        # Define the PRELOADED_BL33_BASE flag only if it is provided and
46268450a6dSAntonio Nino Diaz        # EL3_PAYLOAD_BASE is not defined, as it has priority.
46368450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
46468450a6dSAntonio Nino Diaz                $(eval $(call add_define,PRELOADED_BL33_BASE))
4654c117f6cSSandrine Bailleux        endif
466cf2c8a33SAntonio Nino Diazendif
46773c99d4eSJuan Castillo
46873c99d4eSJuan Castillo################################################################################
46973c99d4eSJuan Castillo# Include BL specific makefiles
47073c99d4eSJuan Castillo################################################################################
47173c99d4eSJuan Castillo
47273c99d4eSJuan Castilloifdef BL1_SOURCES
47373c99d4eSJuan CastilloNEED_BL1 := yes
47473c99d4eSJuan Castilloinclude bl1/bl1.mk
47573c99d4eSJuan Castilloendif
47673c99d4eSJuan Castillo
47773c99d4eSJuan Castilloifdef BL2_SOURCES
47873c99d4eSJuan CastilloNEED_BL2 := yes
47973c99d4eSJuan Castilloinclude bl2/bl2.mk
48073c99d4eSJuan Castilloendif
48173c99d4eSJuan Castillo
4829003fa0bSYatharth Kocharifdef BL2U_SOURCES
4839003fa0bSYatharth KocharNEED_BL2U := yes
4849003fa0bSYatharth Kocharinclude bl2u/bl2u.mk
4859003fa0bSYatharth Kocharendif
4869003fa0bSYatharth Kochar
48773c99d4eSJuan Castilloifdef BL31_SOURCES
4884c117f6cSSandrine Bailleux# When booting an EL3 payload, there is no need to compile the BL31 image nor
4894c117f6cSSandrine Bailleux# put it in the FIP.
4904c117f6cSSandrine Bailleuxifndef EL3_PAYLOAD_BASE
49173c99d4eSJuan CastilloNEED_BL31 := yes
49273c99d4eSJuan Castilloinclude bl31/bl31.mk
49373c99d4eSJuan Castilloendif
4944c117f6cSSandrine Bailleuxendif
49573c99d4eSJuan Castillo
49673c99d4eSJuan Castillo
49773c99d4eSJuan Castillo################################################################################
49873c99d4eSJuan Castillo# Build targets
49973c99d4eSJuan Castillo################################################################################
50073c99d4eSJuan Castillo
5010191262dSYatharth Kochar.PHONY:	all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool fip fwu_fip certtool
50273c99d4eSJuan Castillo.SUFFIXES:
50373c99d4eSJuan Castillo
50473c99d4eSJuan Castilloall: msg_start
50573c99d4eSJuan Castillo
50673c99d4eSJuan Castillomsg_start:
50773c99d4eSJuan Castillo	@echo "Building ${PLAT}"
50873c99d4eSJuan Castillo
5097a24cba5SSoby Mathew# Check if deprecated declarations should be treated as error or not.
5107a24cba5SSoby Mathewifeq (${ERROR_DEPRECATED},0)
511403973c9SSandrine Bailleux    TF_CFLAGS		+= 	-Wno-error=deprecated-declarations
5127a24cba5SSoby Mathewendif
5137a24cba5SSoby Mathew
51473c99d4eSJuan Castillo# Expand build macros for the different images
51573c99d4eSJuan Castilloifeq (${NEED_BL1},yes)
51673c99d4eSJuan Castillo$(eval $(call MAKE_BL,1))
51773c99d4eSJuan Castilloendif
51873c99d4eSJuan Castillo
51973c99d4eSJuan Castilloifeq (${NEED_BL2},yes)
5208f0617efSJuan Castillo$(if ${BL2}, $(eval $(call MAKE_TOOL_ARGS,2,${BL2},tb-fw)),\
5218f0617efSJuan Castillo	$(eval $(call MAKE_BL,2,tb-fw)))
52273c99d4eSJuan Castilloendif
52373c99d4eSJuan Castillo
52473c99d4eSJuan Castilloifeq (${NEED_BL31},yes)
52573c99d4eSJuan CastilloBL31_SOURCES += ${SPD_SOURCES}
5268f0617efSJuan Castillo$(if ${BL31}, $(eval $(call MAKE_TOOL_ARGS,31,${BL31},soc-fw)),\
5278f0617efSJuan Castillo	$(eval $(call MAKE_BL,31,soc-fw)))
52873c99d4eSJuan Castilloendif
52973c99d4eSJuan Castillo
53070d1fc53SJuan Castillo# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
53170d1fc53SJuan Castillo# build system will call FIP_ADD_IMG to print a warning message and abort the
53270d1fc53SJuan Castillo# process. Note that the dependency on BL32 applies to the FIP only.
53373c99d4eSJuan Castilloifeq (${NEED_BL32},yes)
5348f0617efSJuan Castillo$(if ${BL32}, $(eval $(call MAKE_TOOL_ARGS,32,${BL32},tos-fw)),\
5358f0617efSJuan Castillo	$(if ${BL32_SOURCES}, $(eval $(call MAKE_BL,32,tos-fw)),\
5368f0617efSJuan Castillo		$(eval $(call FIP_ADD_IMG,BL32,--tos-fw))))
53773c99d4eSJuan Castilloendif
53873c99d4eSJuan Castillo
53973c99d4eSJuan Castillo# Add the BL33 image if required by the platform
54073c99d4eSJuan Castilloifeq (${NEED_BL33},yes)
5418f0617efSJuan Castillo$(eval $(call FIP_ADD_IMG,BL33,--nt-fw))
542db6071c9SJuan Castilloendif
543db6071c9SJuan Castillo
5449003fa0bSYatharth Kocharifeq (${NEED_BL2U},yes)
5459003fa0bSYatharth KocharBL2U_PATH	:= $(if ${BL2U},${BL2U},$(call IMG_BIN,2u))
5469003fa0bSYatharth Kochar$(if ${BL2U}, ,$(eval $(call MAKE_BL,2u)))
5478f0617efSJuan Castillo$(eval $(call FWU_FIP_ADD_PAYLOAD,${BL2U_PATH},--ap-fwu-cfg))
5489003fa0bSYatharth Kocharendif
5499003fa0bSYatharth Kochar
55036eaaf37SIan Spraylocate-checkpatch:
55136eaaf37SIan Sprayifndef CHECKPATCH
55236eaaf37SIan Spray	$(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/script/checkpatch.pl")
55336eaaf37SIan Sprayelse
55436eaaf37SIan Sprayifeq (,$(wildcard ${CHECKPATCH}))
55536eaaf37SIan Spray	$(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/script/checkpatch.pl")
55636eaaf37SIan Sprayendif
55736eaaf37SIan Sprayendif
55836eaaf37SIan Spray
5594f6ad66aSAchin Guptaclean:
5604f6ad66aSAchin Gupta	@echo "  CLEAN"
561f1477d4aSEvan Lloyd	$(call SHELL_REMOVE_DIR,${BUILD_PLAT})
5622f2cef46SJeenu Viswambharan	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
5636f971622SJuan Castillo	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
5644f6ad66aSAchin Gupta
565eaaeece2SJames Morrisseyrealclean distclean:
566eaaeece2SJames Morrissey	@echo "  REALCLEAN"
567f1477d4aSEvan Lloyd	$(call SHELL_REMOVE_DIR,${BUILD_BASE})
568f1477d4aSEvan Lloyd	$(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
5692f2cef46SJeenu Viswambharan	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
5706f971622SJuan Castillo	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
5714f6ad66aSAchin Gupta
57236eaaf37SIan Spraycheckcodebase:		locate-checkpatch
57336eaaf37SIan Spray	@echo "  CHECKING STYLE"
57436eaaf37SIan Spray	@if test -d .git ; then						\
5751a41e8c1SDan Handley		git ls-files | grep -E -v libfdt\|stdlib\|docs\|\.md |	\
5761a41e8c1SDan Handley		while read GIT_FILE ;					\
5771a41e8c1SDan Handley		do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ;	\
5781a41e8c1SDan Handley		done ;							\
57936eaaf37SIan Spray	else								\
5801a41e8c1SDan Handley		 find . -type f -not -iwholename "*.git*"		\
5811a41e8c1SDan Handley		 -not -iwholename "*build*"				\
5821a41e8c1SDan Handley		 -not -iwholename "*libfdt*"				\
5831a41e8c1SDan Handley		 -not -iwholename "*stdlib*"				\
5841a41e8c1SDan Handley		 -not -iwholename "*docs*"				\
5851a41e8c1SDan Handley		 -not -iwholename "*.md"				\
5861a41e8c1SDan Handley		 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ;	\
58736eaaf37SIan Spray	fi
58836eaaf37SIan Spray
58936eaaf37SIan Spraycheckpatch:		locate-checkpatch
59036eaaf37SIan Spray	@echo "  CHECKING STYLE"
591f607739cSSandrine Bailleux	${Q}git log -p ${BASE_COMMIT}..HEAD -- ${CHECK_PATHS} | ${CHECKPATCH} - || true
59236eaaf37SIan Spray
59373c99d4eSJuan Castillocerttool: ${CRTTOOL}
59473c99d4eSJuan Castillo
5956f971622SJuan Castillo.PHONY: ${CRTTOOL}
5966f971622SJuan Castillo${CRTTOOL}:
5976f971622SJuan Castillo	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH}
598f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
5996f971622SJuan Castillo	@echo "Built $@ successfully"
600f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
6016f971622SJuan Castillo
6026f971622SJuan Castilloifneq (${GENERATE_COT},0)
60373c99d4eSJuan Castillocertificates: ${CRT_DEPS} ${CRTTOOL}
6046f971622SJuan Castillo	${Q}${CRTTOOL} ${CRT_ARGS}
605f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
6066f971622SJuan Castillo	@echo "Built $@ successfully"
6076f971622SJuan Castillo	@echo "Certificates can be found in ${BUILD_PLAT}"
608f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
60973c99d4eSJuan Castilloendif
61027713fb4SSoby Mathew
61173c99d4eSJuan Castillo${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
61273c99d4eSJuan Castillo	${Q}${FIPTOOL} --dump ${FIP_ARGS} $@
613f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
6142f2cef46SJeenu Viswambharan	@echo "Built $@ successfully"
615f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
616f58ad36fSHarry Liebel
6170191262dSYatharth Kocharifneq (${GENERATE_COT},0)
6180191262dSYatharth Kocharfwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
6190191262dSYatharth Kochar	${Q}${CRTTOOL} ${FWU_CRT_ARGS}
6200191262dSYatharth Kochar	@echo
6210191262dSYatharth Kochar	@echo "Built $@ successfully"
6220191262dSYatharth Kochar	@echo "FWU certificates can be found in ${BUILD_PLAT}"
6230191262dSYatharth Kochar	@echo
6240191262dSYatharth Kocharendif
6250191262dSYatharth Kochar
6260191262dSYatharth Kochar${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
6270191262dSYatharth Kochar	${Q}${FIPTOOL} --dump ${FWU_FIP_ARGS} $@
6280191262dSYatharth Kochar	@echo
6290191262dSYatharth Kochar	@echo "Built $@ successfully"
6300191262dSYatharth Kochar	@echo
6310191262dSYatharth Kochar
63273c99d4eSJuan Castillofiptool: ${FIPTOOL}
63373c99d4eSJuan Castillofip: ${BUILD_PLAT}/${FIP_NAME}
6340191262dSYatharth Kocharfwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
63573c99d4eSJuan Castillo
63673c99d4eSJuan Castillo.PHONY: ${FIPTOOL}
63773c99d4eSJuan Castillo${FIPTOOL}:
63873c99d4eSJuan Castillo	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH}
639f58ad36fSHarry Liebel
64035fab8c9SJoakim Bechcscope:
64135fab8c9SJoakim Bech	@echo "  CSCOPE"
64235fab8c9SJoakim Bech	${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
64335fab8c9SJoakim Bech	${Q}cscope -b -q -k
64435fab8c9SJoakim Bech
64572ee3314SRyan Harkinhelp:
646231c1470SEvan Lloyd	@echo "usage: ${MAKE} PLAT=<${PLATFORM_LIST}> [OPTIONS] [TARGET]"
64772ee3314SRyan Harkin	@echo ""
64872ee3314SRyan Harkin	@echo "PLAT is used to specify which platform you wish to build."
64908c7ed0fSSandrine Bailleux	@echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
65072ee3314SRyan Harkin	@echo ""
6511b578596SSandrine Bailleux	@echo "Please refer to the User Guide for a list of all supported options."
6521b578596SSandrine Bailleux	@echo "Note that the build system doesn't track dependencies for build "
6531b578596SSandrine Bailleux	@echo "options. Therefore, if any of the build options are changed "
6541b578596SSandrine Bailleux	@echo "from a previous build, a clean build must be performed."
6551b578596SSandrine Bailleux	@echo ""
65672ee3314SRyan Harkin	@echo "Supported Targets:"
6571b578596SSandrine Bailleux	@echo "  all            Build all individual bootloader binaries"
65836eaaf37SIan Spray	@echo "  bl1            Build the BL1 binary"
6598aa559c0SJeenu Viswambharan	@echo "  bl2            Build the BL2 binary"
6609003fa0bSYatharth Kochar	@echo "  bl2u           Build the BL2U binary"
661d178637dSJuan Castillo	@echo "  bl31           Build the BL31 binary"
662d178637dSJuan Castillo	@echo "  bl32           Build the BL32 binary"
66373c99d4eSJuan Castillo	@echo "  certificates   Build the certificates (requires 'GENERATE_COT=1')"
6641b578596SSandrine Bailleux	@echo "  fip            Build the Firmware Image Package (FIP)"
6650191262dSYatharth Kochar	@echo "  fwu_fip        Build the FWU Firmware Image Package (FIP)"
66636eaaf37SIan Spray	@echo "  checkcodebase  Check the coding style of the entire source tree"
66736eaaf37SIan Spray	@echo "  checkpatch     Check the coding style on changes in the current"
66836eaaf37SIan Spray	@echo "                 branch against BASE_COMMIT (default origin/master)"
66972ee3314SRyan Harkin	@echo "  clean          Clean the build for the selected platform"
67035fab8c9SJoakim Bech	@echo "  cscope         Generate cscope index"
67172ee3314SRyan Harkin	@echo "  distclean      Remove all build artifacts for all platforms"
6726f971622SJuan Castillo	@echo "  certtool       Build the Certificate generation tool"
673f58ad36fSHarry Liebel	@echo "  fiptool        Build the Firmware Image Package(FIP) creation tool"
67472ee3314SRyan Harkin	@echo ""
6751b578596SSandrine Bailleux	@echo "Note: most build targets require PLAT to be set to a specific platform."
67672ee3314SRyan Harkin	@echo ""
67772ee3314SRyan Harkin	@echo "example: build all targets for the FVP platform:"
67872ee3314SRyan Harkin	@echo "  CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
679