xref: /rk3399_ARM-atf/Makefile (revision 872be88a2916f45d3de38120ede8c8b199b7498f)
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
489d29c227SSoby Mathew# The Target build architecture. Supported values are: aarch64, aarch32.
49031dbb12SSoby MathewARCH				:= aarch64
50e35c4045SJeenu Viswambharan# Build verbosity
51e35c4045SJeenu ViswambharanV				:= 0
52e35c4045SJeenu Viswambharan# Debug build
53e35c4045SJeenu ViswambharanDEBUG				:= 0
54e35c4045SJeenu Viswambharan# Build platform
55e35c4045SJeenu ViswambharanDEFAULT_PLAT			:= fvp
56e35c4045SJeenu ViswambharanPLAT				:= ${DEFAULT_PLAT}
57e35c4045SJeenu Viswambharan# SPD choice
58e35c4045SJeenu ViswambharanSPD				:= none
599d29c227SSoby Mathew# The AArch32 Secure Payload to be built as BL32 image
609d29c227SSoby MathewAARCH32_SP			:= none
61e35c4045SJeenu Viswambharan# Base commit to perform code check on
62e35c4045SJeenu ViswambharanBASE_COMMIT			:= origin/master
632da8d8bfSJeenu Viswambharan# NS timer register save and restore
642da8d8bfSJeenu ViswambharanNS_TIMER_SWITCH			:= 0
651645d3eeSSandrine Bailleux# By default, BL1 acts as the reset handler, not BL31
66dbad1bacSVikram KanigiriRESET_TO_BL31			:= 0
670f21c547SJuan Castillo# Include FP registers in cpu context
680f21c547SJuan CastilloCTX_INCLUDE_FPREGS		:= 0
698cd16e6bSSoby Mathew# Build flag to include AArch32 registers in cpu context save and restore
708cd16e6bSSoby Mathew# during world switch. This flag must be set to 0 for AArch64-only platforms.
718cd16e6bSSoby MathewCTX_INCLUDE_AARCH32_REGS	:= 1
722b98e789SSandrine Bailleux# Determine the version of ARM GIC architecture to use for interrupt management
732b98e789SSandrine Bailleux# in EL3. The platform port can change this value if needed.
742b98e789SSandrine BailleuxARM_GIC_ARCH			:= 2
7523e47edeSVikram Kanigiri# Determine the version of ARM CCI product used in the platform. The platform
7623e47edeSVikram Kanigiri# port can change this value if needed.
7723e47edeSVikram KanigiriARM_CCI_PRODUCT_ID		:= 400
78bc920128SSoby Mathew# Flag used to indicate if ASM_ASSERTION should be enabled for the build.
79bc920128SSoby Mathew# This defaults to being present in DEBUG builds only.
80bc920128SSoby MathewASM_ASSERTION			:= ${DEBUG}
818c5fe0b5SSoby Mathew# Build option to choose whether Trusted firmware uses Coherent memory or not.
828c5fe0b5SSoby MathewUSE_COHERENT_MEM		:= 1
838ee24980SSoby Mathew# Flag used to choose the power state format viz Extended State-ID or the Original
848ee24980SSoby Mathew# format.
858ee24980SSoby MathewPSCI_EXTENDED_STATE_ID		:= 0
867f48fab9SJuan Castillo# Default FIP file name
877f48fab9SJuan CastilloFIP_NAME			:= fip.bin
880191262dSYatharth Kochar# Default FWU_FIP file name
890191262dSYatharth KocharFWU_FIP_NAME			:= fwu_fip.bin
90db6071c9SJuan Castillo# By default, use the -pedantic option in the gcc command line
91db6071c9SJuan CastilloDISABLE_PEDANTIC		:= 0
926f971622SJuan Castillo# Flags to generate the Chain of Trust
936f971622SJuan CastilloGENERATE_COT			:= 0
946f971622SJuan CastilloCREATE_KEYS			:= 1
95fd34e7baSJuan CastilloSAVE_KEYS			:= 0
966eadf762SJuan Castillo# Flags to build TF with Trusted Boot support
976eadf762SJuan CastilloTRUSTED_BOARD_BOOT		:= 0
98bf031bbaSSandrine Bailleux# By default, consider that the platform's reset address is not programmable.
99bf031bbaSSandrine Bailleux# The platform Makefile is free to override this value.
100bf031bbaSSandrine BailleuxPROGRAMMABLE_RESET_ADDRESS	:= 0
1017a24cba5SSoby Mathew# Build flag to treat usage of deprecated platform and framework APIs as error.
1027a24cba5SSoby MathewERROR_DEPRECATED		:= 0
103a9bec67dSSandrine Bailleux# By default, consider that the platform may release several CPUs out of reset.
104a9bec67dSSandrine Bailleux# The platform Makefile is free to override this value.
105a9bec67dSSandrine BailleuxCOLD_BOOT_SINGLE_CPU		:= 0
10635e8c766SSandrine Bailleux# Flag to introduce an infinite loop in BL1 just before it exits into the next
10735e8c766SSandrine Bailleux# image. This is meant to help debugging the post-BL2 phase.
10835e8c766SSandrine BailleuxSPIN_ON_BL1_EXIT		:= 0
10912f654b6SJuan Castillo# Build PL011 UART driver in minimal generic UART mode
11012f654b6SJuan CastilloPL011_GENERIC_UART		:= 0
111a31d8983SYatharth Kochar# Flag to enable Performance Measurement Framework
112a31d8983SYatharth KocharENABLE_PMF			:= 0
113170fb93dSYatharth Kochar# Flag to enable PSCI STATs functionality
114170fb93dSYatharth KocharENABLE_PSCI_STAT	:= 0
1155d1c104fSSandrine Bailleux# Whether code and read-only data should be put on separate memory pages.
1165d1c104fSSandrine Bailleux# The platform Makefile is free to override this value.
1175d1c104fSSandrine BailleuxSEPARATE_CODE_AND_RODATA	:= 0
11872600226SYatharth Kochar# Flag to enable new version of image loading
11972600226SYatharth KocharLOAD_IMAGE_V2		:= 0
120*872be88aSdp-arm# Flag to enable runtime instrumentation using PMF
121*872be88aSdp-armENABLE_RUNTIME_INSTRUMENTATION	:= 0
122*872be88aSdp-arm
123*872be88aSdp-armifeq (${ENABLE_RUNTIME_INSTRUMENTATION}, 1)
124*872be88aSdp-armENABLE_PMF			:= 1
125*872be88aSdp-armendif
12673c99d4eSJuan Castillo
12773c99d4eSJuan Castillo################################################################################
12873c99d4eSJuan Castillo# Checkpatch script options
12973c99d4eSJuan Castillo################################################################################
13073c99d4eSJuan Castillo
131f607739cSSandrine BailleuxCHECKCODE_ARGS		:=	--no-patch
132f0b489c1SDan Handley# Do not check the coding style on imported library files or documentation files
133f0b489c1SDan HandleyINC_LIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
1341a41e8c1SDan Handley					include/lib/libfdt		\
135f0b489c1SDan Handley					include/lib/stdlib,		\
136f0b489c1SDan Handley					$(wildcard include/lib/*)))
137f0b489c1SDan HandleyINC_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
138f0b489c1SDan Handley					include/lib,			\
139f0b489c1SDan Handley					$(wildcard include/*)))
140f0b489c1SDan HandleyLIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
1411a41e8c1SDan Handley					lib/libfdt			\
142f0b489c1SDan Handley					lib/stdlib,			\
143f0b489c1SDan Handley					$(wildcard lib/*)))
144f0b489c1SDan HandleyROOT_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
145f0b489c1SDan Handley					lib				\
146f0b489c1SDan Handley					include				\
147f0b489c1SDan Handley					docs				\
148f0b489c1SDan Handley					%.md,				\
149f0b489c1SDan Handley					$(wildcard *)))
150f0b489c1SDan HandleyCHECK_PATHS		:=	${ROOT_DIRS_TO_CHECK}			\
151f0b489c1SDan Handley				${INC_DIRS_TO_CHECK}			\
152f0b489c1SDan Handley				${INC_LIB_DIRS_TO_CHECK}		\
153f0b489c1SDan Handley				${LIB_DIRS_TO_CHECK}
15436eaaf37SIan Spray
15573c99d4eSJuan Castillo
15673c99d4eSJuan Castillo################################################################################
15773c99d4eSJuan Castillo# Process build options
15873c99d4eSJuan Castillo################################################################################
15973c99d4eSJuan Castillo
16073c99d4eSJuan Castillo# Verbose flag
161e35c4045SJeenu Viswambharanifeq (${V},0)
162b169f6a9SEvan Lloyd        Q:=@
16336eaaf37SIan Spray        CHECKCODE_ARGS	+=	--no-summary --terse
1644f6ad66aSAchin Guptaelse
165b169f6a9SEvan Lloyd        Q:=
1664f6ad66aSAchin Guptaendif
1672f2cef46SJeenu Viswambharanexport Q
1682f2cef46SJeenu Viswambharan
16973c99d4eSJuan Castillo# Process Debug flag
17073c99d4eSJuan Castillo$(eval $(call add_define,DEBUG))
171eaaeece2SJames Morrisseyifneq (${DEBUG}, 0)
172eaaeece2SJames Morrissey        BUILD_TYPE	:=	debug
173403973c9SSandrine Bailleux        TF_CFLAGS	+= 	-g
17473c99d4eSJuan Castillo        ASFLAGS		+= 	-g -Wa,--gdwarf-2
175289c28a8SDan Handley        # Use LOG_LEVEL_INFO by default for debug builds
176289c28a8SDan Handley        LOG_LEVEL	:=	40
177eaaeece2SJames Morrisseyelse
178eaaeece2SJames Morrissey        BUILD_TYPE	:=	release
17973c99d4eSJuan Castillo        $(eval $(call add_define,NDEBUG))
180289c28a8SDan Handley        # Use LOG_LEVEL_NOTICE by default for release builds
181289c28a8SDan Handley        LOG_LEVEL	:=	20
182eaaeece2SJames Morrisseyendif
183eaaeece2SJames Morrissey
184aaa3e722SJuan Castillo# Default build string (git branch and commit)
185aaa3e722SJuan Castilloifeq (${BUILD_STRING},)
186aaa3e722SJuan Castillo        BUILD_STRING	:=	$(shell git log -n 1 --pretty=format:"%h")
187aaa3e722SJuan Castilloendif
188aaa3e722SJuan CastilloVERSION_STRING		:=	v${VERSION_MAJOR}.${VERSION_MINOR}(${BUILD_TYPE}):${BUILD_STRING}
189aaa3e722SJuan Castillo
19073c99d4eSJuan Castillo# The cert_create tool cannot generate certificates individually, so we use the
19173c99d4eSJuan Castillo# target 'certificates' to create them all
19273c99d4eSJuan Castilloifneq (${GENERATE_COT},0)
19373c99d4eSJuan Castillo        FIP_DEPS += certificates
1940191262dSYatharth Kochar        FWU_FIP_DEPS += fwu_certificates
19573c99d4eSJuan Castilloendif
19673c99d4eSJuan Castillo
1971a0a3f06SYatharth Kochar# For AArch32, enable new version of image loading.
1981a0a3f06SYatharth Kocharifeq (${ARCH},aarch32)
1991a0a3f06SYatharth Kochar        LOAD_IMAGE_V2	:=	1
2001a0a3f06SYatharth Kocharendif
20173c99d4eSJuan Castillo
20273c99d4eSJuan Castillo################################################################################
20373c99d4eSJuan Castillo# Toolchain
20473c99d4eSJuan Castillo################################################################################
20573c99d4eSJuan Castillo
20673c99d4eSJuan CastilloCC			:=	${CROSS_COMPILE}gcc
20773c99d4eSJuan CastilloCPP			:=	${CROSS_COMPILE}cpp
20873c99d4eSJuan CastilloAS			:=	${CROSS_COMPILE}gcc
20973c99d4eSJuan CastilloAR			:=	${CROSS_COMPILE}ar
21073c99d4eSJuan CastilloLD			:=	${CROSS_COMPILE}ld
21173c99d4eSJuan CastilloOC			:=	${CROSS_COMPILE}objcopy
21273c99d4eSJuan CastilloOD			:=	${CROSS_COMPILE}objdump
21373c99d4eSJuan CastilloNM			:=	${CROSS_COMPILE}nm
21473c99d4eSJuan CastilloPP			:=	${CROSS_COMPILE}gcc -E
21573c99d4eSJuan Castillo
2169d29c227SSoby MathewASFLAGS_aarch64		=	-mgeneral-regs-only
2179d29c227SSoby MathewTF_CFLAGS_aarch64	=	-mgeneral-regs-only -mstrict-align
2189d29c227SSoby Mathew
2199d29c227SSoby MathewASFLAGS_aarch32		=	-march=armv8-a
2209d29c227SSoby MathewTF_CFLAGS_aarch32	=	-march=armv8-a
2219d29c227SSoby Mathew
22273c99d4eSJuan CastilloASFLAGS			+= 	-nostdinc -ffreestanding -Wa,--fatal-warnings	\
22373c99d4eSJuan Castillo				-Werror -Wmissing-include-dirs			\
2249d29c227SSoby Mathew				-D__ASSEMBLY__ $(ASFLAGS_$(ARCH))		\
22573c99d4eSJuan Castillo				${DEFINES} ${INCLUDES}
226403973c9SSandrine BailleuxTF_CFLAGS		+= 	-nostdinc -ffreestanding -Wall			\
22773c99d4eSJuan Castillo				-Werror -Wmissing-include-dirs			\
228fa1d3712SJuan Castillo				-std=c99 -c -Os					\
2299d29c227SSoby Mathew				$(TF_CFLAGS_$(ARCH))				\
23073c99d4eSJuan Castillo				${DEFINES} ${INCLUDES}
231403973c9SSandrine BailleuxTF_CFLAGS		+=	-ffunction-sections -fdata-sections
23273c99d4eSJuan Castillo
23373c99d4eSJuan CastilloLDFLAGS			+=	--fatal-warnings -O1
23473c99d4eSJuan CastilloLDFLAGS			+=	--gc-sections
23573c99d4eSJuan Castillo
23673c99d4eSJuan Castillo
23773c99d4eSJuan Castillo################################################################################
23873c99d4eSJuan Castillo# Common sources and include directories
23973c99d4eSJuan Castillo################################################################################
240f0b489c1SDan Handleyinclude lib/stdlib/stdlib.mk
24173c99d4eSJuan Castillo
24273c99d4eSJuan CastilloBL_COMMON_SOURCES	+=	common/bl_common.c			\
243b79af934SSoby Mathew				common/tf_printf.c			\
2449d29c227SSoby Mathew				common/${ARCH}/debug.S			\
2459d29c227SSoby Mathew				lib/${ARCH}/cache_helpers.S		\
2469d29c227SSoby Mathew				lib/${ARCH}/misc_helpers.S		\
2479d29c227SSoby Mathew				plat/common/${ARCH}/platform_helpers.S	\
248f0b489c1SDan Handley				${STDLIB_SRCS}
249d7a6b0f8SRyan Harkin
25048bfb88eSYatharth KocharINCLUDES		+=	-Iinclude/bl1				\
25148bfb88eSYatharth Kochar				-Iinclude/bl31				\
2524ecca339SDan Handley				-Iinclude/common			\
2539d29c227SSoby Mathew				-Iinclude/common/${ARCH}		\
2544ecca339SDan Handley				-Iinclude/drivers			\
2554ecca339SDan Handley				-Iinclude/drivers/arm			\
2561779ba6bSJuan Castillo				-Iinclude/drivers/auth			\
257935db693SDan Handley				-Iinclude/drivers/io			\
258c13b2e32SVarun Wadekar				-Iinclude/drivers/ti/uart		\
2594ecca339SDan Handley				-Iinclude/lib				\
2609d29c227SSoby Mathew				-Iinclude/lib/${ARCH}			\
2619d29c227SSoby Mathew				-Iinclude/lib/cpus/${ARCH}		\
262532ed618SSoby Mathew				-Iinclude/lib/el3_runtime		\
2639d29c227SSoby Mathew				-Iinclude/lib/el3_runtime/${ARCH}	\
264afdda571Sdp-arm				-Iinclude/lib/pmf			\
265532ed618SSoby Mathew				-Iinclude/lib/psci			\
2665f0cdb05SDan Handley				-Iinclude/plat/common			\
267532ed618SSoby Mathew				-Iinclude/services			\
268375f538aSAchin Gupta				${PLAT_INCLUDES}			\
269375f538aSAchin Gupta				${SPD_INCLUDES}
2704f6ad66aSAchin Gupta
27173c99d4eSJuan Castillo
27273c99d4eSJuan Castillo################################################################################
27373c99d4eSJuan Castillo# Generic definitions
27473c99d4eSJuan Castillo################################################################################
27573c99d4eSJuan Castillo
276231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
277231c1470SEvan Lloyd
27873c99d4eSJuan CastilloBUILD_BASE		:=	./build
27973c99d4eSJuan CastilloBUILD_PLAT		:=	${BUILD_BASE}/${PLAT}/${BUILD_TYPE}
28073c99d4eSJuan Castillo
281231c1470SEvan LloydSPDS			:=	$(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
28273c99d4eSJuan Castillo
28373c99d4eSJuan Castillo# Platforms providing their own TBB makefile may override this value
28473c99d4eSJuan CastilloINCLUDE_TBBR_MK		:=	1
28573c99d4eSJuan Castillo
28673c99d4eSJuan Castillo
28773c99d4eSJuan Castillo################################################################################
28873c99d4eSJuan Castillo# Include SPD Makefile if one has been specified
28973c99d4eSJuan Castillo################################################################################
29073c99d4eSJuan Castillo
29173c99d4eSJuan Castilloifneq (${SPD},none)
2929d29c227SSoby Mathewifeq (${ARCH},aarch32)
2939d29c227SSoby Mathew	$(error "Error: SPD is incompatible with AArch32.")
2949d29c227SSoby Mathewendif
2954c117f6cSSandrine Bailleuxifdef EL3_PAYLOAD_BASE
2964c117f6cSSandrine Bailleux        $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
2974c117f6cSSandrine Bailleux        $(warning "The SPD and its BL32 companion will be present but ignored.")
2984c117f6cSSandrine Bailleuxendif
29973c99d4eSJuan Castillo        # We expect to locate an spd.mk under the specified SPD directory
300231c1470SEvan Lloyd        SPD_MAKE	:=	$(wildcard services/spd/${SPD}/${SPD}.mk)
30173c99d4eSJuan Castillo
30273c99d4eSJuan Castillo        ifeq (${SPD_MAKE},)
30373c99d4eSJuan Castillo                $(error Error: No services/spd/${SPD}/${SPD}.mk located)
30473c99d4eSJuan Castillo        endif
30573c99d4eSJuan Castillo        $(info Including ${SPD_MAKE})
30673c99d4eSJuan Castillo        include ${SPD_MAKE}
30773c99d4eSJuan Castillo
30870d1fc53SJuan Castillo        # If there's BL32 companion for the chosen SPD, we expect that the SPD's
30970d1fc53SJuan Castillo        # Makefile would set NEED_BL32 to "yes". In this case, the build system
31070d1fc53SJuan Castillo        # supports two mutually exclusive options:
31170d1fc53SJuan Castillo        # * BL32 is built from source: then BL32_SOURCES must contain the list
31270d1fc53SJuan Castillo        #   of source files to build BL32
31370d1fc53SJuan Castillo        # * BL32 is a prebuilt binary: then BL32 must point to the image file
31470d1fc53SJuan Castillo        #   that will be included in the FIP
31570d1fc53SJuan Castillo        # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
31670d1fc53SJuan Castillo        # over the sources.
317e35c4045SJeenu Viswambharanendif
318e35c4045SJeenu Viswambharan
319c04d2606SDan Handley
32073c99d4eSJuan Castillo################################################################################
32173c99d4eSJuan Castillo# Include the platform specific Makefile after the SPD Makefile (the platform
32273c99d4eSJuan Castillo# makefile may use all previous definitions in this file)
32373c99d4eSJuan Castillo################################################################################
3242da8d8bfSJeenu Viswambharan
32573c99d4eSJuan Castilloinclude ${PLAT_MAKEFILE_FULL}
3260f21c547SJuan Castillo
3279d29c227SSoby Mathew# Platform compatibility is not supported in AArch32
3289d29c227SSoby Mathewifneq (${ARCH},aarch32)
32993271a1eSAchin Gupta# If the platform has not defined ENABLE_PLAT_COMPAT, then enable it by default
33093271a1eSAchin Guptaifndef ENABLE_PLAT_COMPAT
33193271a1eSAchin GuptaENABLE_PLAT_COMPAT := 1
33293271a1eSAchin Guptaendif
33393271a1eSAchin Gupta
33493271a1eSAchin Gupta# Include the platform compatibility helpers for PSCI
33593271a1eSAchin Guptaifneq (${ENABLE_PLAT_COMPAT}, 0)
33693271a1eSAchin Guptainclude plat/compat/plat_compat.mk
33793271a1eSAchin Guptaendif
3389d29c227SSoby Mathewendif
33993271a1eSAchin Gupta
34054035fc4SSandrine Bailleux# Include the CPU specific operations makefile, which provides default
34154035fc4SSandrine Bailleux# values for all CPU errata workarounds and CPU specific optimisations.
34254035fc4SSandrine Bailleux# This can be overridden by the platform.
34373c99d4eSJuan Castilloinclude lib/cpus/cpu-ops.mk
3444f6ad66aSAchin Gupta
3454f6ad66aSAchin Gupta
34673c99d4eSJuan Castillo################################################################################
347cf2c8a33SAntonio Nino Diaz# Check incompatible options
348cf2c8a33SAntonio Nino Diaz################################################################################
349cf2c8a33SAntonio Nino Diaz
350cf2c8a33SAntonio Nino Diazifdef EL3_PAYLOAD_BASE
35168450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
35268450a6dSAntonio Nino Diaz                $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
35368450a6dSAntonio Nino Diaz                incompatible build options. EL3_PAYLOAD_BASE has priority.")
354cf2c8a33SAntonio Nino Diaz        endif
355cf2c8a33SAntonio Nino Diazendif
356cf2c8a33SAntonio Nino Diaz
357cf2c8a33SAntonio Nino Diazifeq (${NEED_BL33},yes)
358cf2c8a33SAntonio Nino Diaz        ifdef EL3_PAYLOAD_BASE
359cf2c8a33SAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
360cf2c8a33SAntonio Nino Diaz                BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
361cf2c8a33SAntonio Nino Diaz        endif
36268450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
36368450a6dSAntonio Nino Diaz                $(warning "BL33 image is not needed when option \
36468450a6dSAntonio Nino Diaz                PRELOADED_BL33_BASE is used and won't be added to the FIP \
36568450a6dSAntonio Nino Diaz                file.")
366cf2c8a33SAntonio Nino Diaz        endif
367cf2c8a33SAntonio Nino Diazendif
368cf2c8a33SAntonio Nino Diaz
36972600226SYatharth Kochar# TRUSTED_BOARD_BOOT is currently not supported when LOAD_IMAGE_V2 is enabled.
37072600226SYatharth Kocharifeq (${LOAD_IMAGE_V2},1)
37172600226SYatharth Kochar        ifeq (${TRUSTED_BOARD_BOOT},1)
37272600226SYatharth Kochar                $(error "TRUSTED_BOARD_BOOT is currently not supported	\
37372600226SYatharth Kochar                for LOAD_IMAGE_V2=1")
37472600226SYatharth Kochar        endif
37572600226SYatharth Kocharendif
376cf2c8a33SAntonio Nino Diaz
3771a0a3f06SYatharth Kochar# For AArch32, LOAD_IMAGE_V2 must be enabled.
3781a0a3f06SYatharth Kocharifeq (${ARCH},aarch32)
3791a0a3f06SYatharth Kochar    ifeq (${LOAD_IMAGE_V2}, 0)
3801a0a3f06SYatharth Kochar        $(error "For AArch32, LOAD_IMAGE_V2 must be enabled.")
3811a0a3f06SYatharth Kochar    endif
3821a0a3f06SYatharth Kocharendif
3831a0a3f06SYatharth Kochar
3841a0a3f06SYatharth Kochar
385cf2c8a33SAntonio Nino Diaz################################################################################
38673c99d4eSJuan Castillo# Process platform overrideable behaviour
38773c99d4eSJuan Castillo################################################################################
3884f6ad66aSAchin Gupta
38973c99d4eSJuan Castillo# Check if -pedantic option should be used
39073c99d4eSJuan Castilloifeq (${DISABLE_PEDANTIC},0)
391403973c9SSandrine Bailleux        TF_CFLAGS	+= 	-pedantic
39273c99d4eSJuan Castilloendif
393f58ad36fSHarry Liebel
3941645d3eeSSandrine Bailleux# Using the ARM Trusted Firmware BL2 implies that a BL33 image also needs to be
39573c99d4eSJuan Castillo# supplied for the FIP and Certificate generation tools. This flag can be
39673c99d4eSJuan Castillo# overridden by the platform.
39773c99d4eSJuan Castilloifdef BL2_SOURCES
398cf2c8a33SAntonio Nino Diaz        ifdef EL3_PAYLOAD_BASE
399cf2c8a33SAntonio Nino Diaz                # If booting an EL3 payload there is no need for a BL33 image
400cf2c8a33SAntonio Nino Diaz                # in the FIP file.
4014c117f6cSSandrine Bailleux                NEED_BL33		:=	no
402cf2c8a33SAntonio Nino Diaz        else
40368450a6dSAntonio Nino Diaz                ifdef PRELOADED_BL33_BASE
404cf2c8a33SAntonio Nino Diaz                        # If booting a BL33 preloaded image there is no need of
405cf2c8a33SAntonio Nino Diaz                        # another one in the FIP file.
406cf2c8a33SAntonio Nino Diaz                        NEED_BL33		:=	no
407cf2c8a33SAntonio Nino Diaz                else
408cf2c8a33SAntonio Nino Diaz                        NEED_BL33		?=	yes
409cf2c8a33SAntonio Nino Diaz                endif
4104c117f6cSSandrine Bailleux        endif
41173c99d4eSJuan Castilloendif
4126f971622SJuan Castillo
41373c99d4eSJuan Castillo# Process TBB related flags
4146f971622SJuan Castilloifneq (${GENERATE_COT},0)
41573c99d4eSJuan Castillo        # Common cert_create options
4166f971622SJuan Castillo        ifneq (${CREATE_KEYS},0)
4176f971622SJuan Castillo                $(eval CRT_ARGS += -n)
4180191262dSYatharth Kochar                $(eval FWU_CRT_ARGS += -n)
419fd34e7baSJuan Castillo                ifneq (${SAVE_KEYS},0)
420fd34e7baSJuan Castillo                        $(eval CRT_ARGS += -k)
4210191262dSYatharth Kochar                        $(eval FWU_CRT_ARGS += -k)
422fd34e7baSJuan Castillo                endif
4236f971622SJuan Castillo        endif
42473c99d4eSJuan Castillo        # Include TBBR makefile (unless the platform indicates otherwise)
42573c99d4eSJuan Castillo        ifeq (${INCLUDE_TBBR_MK},1)
42673c99d4eSJuan Castillo                include make_helpers/tbbr/tbbr_tools.mk
42773c99d4eSJuan Castillo        endif
4286f971622SJuan Castilloendif
4296f971622SJuan Castillo
430170fb93dSYatharth Kochar# Make sure PMF is enabled if PSCI STAT is enabled.
431170fb93dSYatharth Kocharifeq (${ENABLE_PSCI_STAT},1)
432170fb93dSYatharth KocharENABLE_PMF			:= 1
433170fb93dSYatharth Kocharendif
43473c99d4eSJuan Castillo
43573c99d4eSJuan Castillo################################################################################
436819281eeSdp-arm# Auxiliary tools (fiptool, cert_create, etc)
43773c99d4eSJuan Castillo################################################################################
43873c99d4eSJuan Castillo
43973c99d4eSJuan Castillo# Variables for use with Certificate Generation Tool
44073c99d4eSJuan CastilloCRTTOOLPATH		?=	tools/cert_create
44142a45b51SEvan LloydCRTTOOL			?=	${CRTTOOLPATH}/cert_create${BIN_EXT}
44273c99d4eSJuan Castillo
44373c99d4eSJuan Castillo# Variables for use with Firmware Image Package
444819281eeSdp-armFIPTOOLPATH		?=	tools/fiptool
445819281eeSdp-armFIPTOOL			?=	${FIPTOOLPATH}/fiptool${BIN_EXT}
44673c99d4eSJuan Castillo
44773c99d4eSJuan Castillo
44873c99d4eSJuan Castillo################################################################################
44973c99d4eSJuan Castillo# Build options checks
45073c99d4eSJuan Castillo################################################################################
45173c99d4eSJuan Castillo
45273c99d4eSJuan Castillo$(eval $(call assert_boolean,DEBUG))
45373c99d4eSJuan Castillo$(eval $(call assert_boolean,NS_TIMER_SWITCH))
45473c99d4eSJuan Castillo$(eval $(call assert_boolean,RESET_TO_BL31))
45573c99d4eSJuan Castillo$(eval $(call assert_boolean,CTX_INCLUDE_FPREGS))
4568cd16e6bSSoby Mathew$(eval $(call assert_boolean,CTX_INCLUDE_AARCH32_REGS))
45773c99d4eSJuan Castillo$(eval $(call assert_boolean,ASM_ASSERTION))
45873c99d4eSJuan Castillo$(eval $(call assert_boolean,USE_COHERENT_MEM))
45973c99d4eSJuan Castillo$(eval $(call assert_boolean,DISABLE_PEDANTIC))
46073c99d4eSJuan Castillo$(eval $(call assert_boolean,GENERATE_COT))
46173c99d4eSJuan Castillo$(eval $(call assert_boolean,CREATE_KEYS))
46273c99d4eSJuan Castillo$(eval $(call assert_boolean,SAVE_KEYS))
46373c99d4eSJuan Castillo$(eval $(call assert_boolean,TRUSTED_BOARD_BOOT))
46473c99d4eSJuan Castillo$(eval $(call assert_boolean,PROGRAMMABLE_RESET_ADDRESS))
465a9bec67dSSandrine Bailleux$(eval $(call assert_boolean,COLD_BOOT_SINGLE_CPU))
46673c99d4eSJuan Castillo$(eval $(call assert_boolean,PSCI_EXTENDED_STATE_ID))
4677a24cba5SSoby Mathew$(eval $(call assert_boolean,ERROR_DEPRECATED))
46893271a1eSAchin Gupta$(eval $(call assert_boolean,ENABLE_PLAT_COMPAT))
46935e8c766SSandrine Bailleux$(eval $(call assert_boolean,SPIN_ON_BL1_EXIT))
47012f654b6SJuan Castillo$(eval $(call assert_boolean,PL011_GENERIC_UART))
471a31d8983SYatharth Kochar$(eval $(call assert_boolean,ENABLE_PMF))
472170fb93dSYatharth Kochar$(eval $(call assert_boolean,ENABLE_PSCI_STAT))
4735d1c104fSSandrine Bailleux$(eval $(call assert_boolean,SEPARATE_CODE_AND_RODATA))
47472600226SYatharth Kochar$(eval $(call assert_boolean,LOAD_IMAGE_V2))
475*872be88aSdp-arm$(eval $(call assert_boolean,ENABLE_RUNTIME_INSTRUMENTATION))
47673c99d4eSJuan Castillo
47773c99d4eSJuan Castillo
47873c99d4eSJuan Castillo################################################################################
47973c99d4eSJuan Castillo# Add definitions to the cpp preprocessor based on the current build options.
48073c99d4eSJuan Castillo# This is done after including the platform specific makefile to allow the
48173c99d4eSJuan Castillo# platform to overwrite the default options
48273c99d4eSJuan Castillo################################################################################
48373c99d4eSJuan Castillo
48473c99d4eSJuan Castillo$(eval $(call add_define,PLAT_${PLAT}))
48581d139d5SAntonio Nino Diaz$(eval $(call add_define,SPD_${SPD}))
48673c99d4eSJuan Castillo$(eval $(call add_define,NS_TIMER_SWITCH))
48773c99d4eSJuan Castillo$(eval $(call add_define,RESET_TO_BL31))
48873c99d4eSJuan Castillo$(eval $(call add_define,CTX_INCLUDE_FPREGS))
4898cd16e6bSSoby Mathew$(eval $(call add_define,CTX_INCLUDE_AARCH32_REGS))
49073c99d4eSJuan Castillo$(eval $(call add_define,ARM_GIC_ARCH))
49173c99d4eSJuan Castillo$(eval $(call add_define,ARM_CCI_PRODUCT_ID))
49273c99d4eSJuan Castillo$(eval $(call add_define,ASM_ASSERTION))
49373c99d4eSJuan Castillo$(eval $(call add_define,LOG_LEVEL))
49473c99d4eSJuan Castillo$(eval $(call add_define,USE_COHERENT_MEM))
49573c99d4eSJuan Castillo$(eval $(call add_define,TRUSTED_BOARD_BOOT))
49673c99d4eSJuan Castillo$(eval $(call add_define,PROGRAMMABLE_RESET_ADDRESS))
497a9bec67dSSandrine Bailleux$(eval $(call add_define,COLD_BOOT_SINGLE_CPU))
49873c99d4eSJuan Castillo$(eval $(call add_define,PSCI_EXTENDED_STATE_ID))
4997a24cba5SSoby Mathew$(eval $(call add_define,ERROR_DEPRECATED))
50093271a1eSAchin Gupta$(eval $(call add_define,ENABLE_PLAT_COMPAT))
50135e8c766SSandrine Bailleux$(eval $(call add_define,SPIN_ON_BL1_EXIT))
502cf2c8a33SAntonio Nino Diaz$(eval $(call add_define,PL011_GENERIC_UART))
503a31d8983SYatharth Kochar$(eval $(call add_define,ENABLE_PMF))
504170fb93dSYatharth Kochar$(eval $(call add_define,ENABLE_PSCI_STAT))
5055d1c104fSSandrine Bailleux$(eval $(call add_define,SEPARATE_CODE_AND_RODATA))
50672600226SYatharth Kochar$(eval $(call add_define,LOAD_IMAGE_V2))
507*872be88aSdp-arm$(eval $(call add_define,ENABLE_RUNTIME_INSTRUMENTATION))
5084c117f6cSSandrine Bailleux# Define the EL3_PAYLOAD_BASE flag only if it is provided.
5094c117f6cSSandrine Bailleuxifdef EL3_PAYLOAD_BASE
5104c117f6cSSandrine Bailleux        $(eval $(call add_define,EL3_PAYLOAD_BASE))
511cf2c8a33SAntonio Nino Diazelse
51268450a6dSAntonio Nino Diaz        # Define the PRELOADED_BL33_BASE flag only if it is provided and
51368450a6dSAntonio Nino Diaz        # EL3_PAYLOAD_BASE is not defined, as it has priority.
51468450a6dSAntonio Nino Diaz        ifdef PRELOADED_BL33_BASE
51568450a6dSAntonio Nino Diaz                $(eval $(call add_define,PRELOADED_BL33_BASE))
5164c117f6cSSandrine Bailleux        endif
517cf2c8a33SAntonio Nino Diazendif
518031dbb12SSoby Mathew# Define the AARCH32/AARCH64 flag based on the ARCH flag
519031dbb12SSoby Mathewifeq (${ARCH},aarch32)
520031dbb12SSoby Mathew        $(eval $(call add_define,AARCH32))
521031dbb12SSoby Mathewelse
522031dbb12SSoby Mathew        $(eval $(call add_define,AARCH64))
523031dbb12SSoby Mathewendif
52473c99d4eSJuan Castillo
52573c99d4eSJuan Castillo################################################################################
52673c99d4eSJuan Castillo# Include BL specific makefiles
52773c99d4eSJuan Castillo################################################################################
52873c99d4eSJuan Castilloifdef BL1_SOURCES
52973c99d4eSJuan CastilloNEED_BL1 := yes
53073c99d4eSJuan Castilloinclude bl1/bl1.mk
53173c99d4eSJuan Castilloendif
53273c99d4eSJuan Castillo
53373c99d4eSJuan Castilloifdef BL2_SOURCES
53473c99d4eSJuan CastilloNEED_BL2 := yes
53573c99d4eSJuan Castilloinclude bl2/bl2.mk
53673c99d4eSJuan Castilloendif
53773c99d4eSJuan Castillo
5386fe8aa2fSYatharth Kochar# For AArch32, BL31 is not applicable, and BL2U is not supported at present.
5396fe8aa2fSYatharth Kocharifneq (${ARCH},aarch32)
5409003fa0bSYatharth Kocharifdef BL2U_SOURCES
5419003fa0bSYatharth KocharNEED_BL2U := yes
5429003fa0bSYatharth Kocharinclude bl2u/bl2u.mk
5439003fa0bSYatharth Kocharendif
5449003fa0bSYatharth Kochar
54573c99d4eSJuan Castilloifdef BL31_SOURCES
5464c117f6cSSandrine Bailleux# When booting an EL3 payload, there is no need to compile the BL31 image nor
5474c117f6cSSandrine Bailleux# put it in the FIP.
5484c117f6cSSandrine Bailleuxifndef EL3_PAYLOAD_BASE
54973c99d4eSJuan CastilloNEED_BL31 := yes
55073c99d4eSJuan Castilloinclude bl31/bl31.mk
55173c99d4eSJuan Castilloendif
5524c117f6cSSandrine Bailleuxendif
5539d29c227SSoby Mathewendif
55473c99d4eSJuan Castillo
5559d29c227SSoby Mathewifeq (${ARCH},aarch32)
5569d29c227SSoby MathewNEED_BL32 := yes
5579d29c227SSoby Mathew
5589d29c227SSoby Mathew################################################################################
5599d29c227SSoby Mathew# Build `AARCH32_SP` as BL32 image for AArch32
5609d29c227SSoby Mathew################################################################################
5619d29c227SSoby Mathewifneq (${AARCH32_SP},none)
5629d29c227SSoby Mathew# We expect to locate an sp.mk under the specified AARCH32_SP directory
5639d29c227SSoby MathewAARCH32_SP_MAKE	:=	$(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
5649d29c227SSoby Mathew
5659d29c227SSoby Mathewifeq (${AARCH32_SP_MAKE},)
5669d29c227SSoby Mathew  $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
5679d29c227SSoby Mathewendif
5689d29c227SSoby Mathew
5699d29c227SSoby Mathew$(info Including ${AARCH32_SP_MAKE})
5709d29c227SSoby Mathewinclude ${AARCH32_SP_MAKE}
5719d29c227SSoby Mathewendif
5729d29c227SSoby Mathew
5739d29c227SSoby Mathewendif
57473c99d4eSJuan Castillo
57573c99d4eSJuan Castillo################################################################################
57673c99d4eSJuan Castillo# Build targets
57773c99d4eSJuan Castillo################################################################################
57873c99d4eSJuan Castillo
5790191262dSYatharth Kochar.PHONY:	all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool fip fwu_fip certtool
58073c99d4eSJuan Castillo.SUFFIXES:
58173c99d4eSJuan Castillo
58273c99d4eSJuan Castilloall: msg_start
58373c99d4eSJuan Castillo
58473c99d4eSJuan Castillomsg_start:
58573c99d4eSJuan Castillo	@echo "Building ${PLAT}"
58673c99d4eSJuan Castillo
5877a24cba5SSoby Mathew# Check if deprecated declarations should be treated as error or not.
5887a24cba5SSoby Mathewifeq (${ERROR_DEPRECATED},0)
589403973c9SSandrine Bailleux    TF_CFLAGS		+= 	-Wno-error=deprecated-declarations
5907a24cba5SSoby Mathewendif
5917a24cba5SSoby Mathew
59273c99d4eSJuan Castillo# Expand build macros for the different images
59373c99d4eSJuan Castilloifeq (${NEED_BL1},yes)
59473c99d4eSJuan Castillo$(eval $(call MAKE_BL,1))
59573c99d4eSJuan Castilloendif
59673c99d4eSJuan Castillo
59773c99d4eSJuan Castilloifeq (${NEED_BL2},yes)
5988f0617efSJuan Castillo$(if ${BL2}, $(eval $(call MAKE_TOOL_ARGS,2,${BL2},tb-fw)),\
5998f0617efSJuan Castillo	$(eval $(call MAKE_BL,2,tb-fw)))
60073c99d4eSJuan Castilloendif
60173c99d4eSJuan Castillo
60273c99d4eSJuan Castilloifeq (${NEED_BL31},yes)
60373c99d4eSJuan CastilloBL31_SOURCES += ${SPD_SOURCES}
6048f0617efSJuan Castillo$(if ${BL31}, $(eval $(call MAKE_TOOL_ARGS,31,${BL31},soc-fw)),\
6058f0617efSJuan Castillo	$(eval $(call MAKE_BL,31,soc-fw)))
60673c99d4eSJuan Castilloendif
60773c99d4eSJuan Castillo
60870d1fc53SJuan Castillo# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
60970d1fc53SJuan Castillo# build system will call FIP_ADD_IMG to print a warning message and abort the
61070d1fc53SJuan Castillo# process. Note that the dependency on BL32 applies to the FIP only.
61173c99d4eSJuan Castilloifeq (${NEED_BL32},yes)
6128f0617efSJuan Castillo$(if ${BL32}, $(eval $(call MAKE_TOOL_ARGS,32,${BL32},tos-fw)),\
6138f0617efSJuan Castillo	$(if ${BL32_SOURCES}, $(eval $(call MAKE_BL,32,tos-fw)),\
6148f0617efSJuan Castillo		$(eval $(call FIP_ADD_IMG,BL32,--tos-fw))))
61573c99d4eSJuan Castilloendif
61673c99d4eSJuan Castillo
61773c99d4eSJuan Castillo# Add the BL33 image if required by the platform
61873c99d4eSJuan Castilloifeq (${NEED_BL33},yes)
6198f0617efSJuan Castillo$(eval $(call FIP_ADD_IMG,BL33,--nt-fw))
620db6071c9SJuan Castilloendif
621db6071c9SJuan Castillo
6229003fa0bSYatharth Kocharifeq (${NEED_BL2U},yes)
6239003fa0bSYatharth KocharBL2U_PATH	:= $(if ${BL2U},${BL2U},$(call IMG_BIN,2u))
6249003fa0bSYatharth Kochar$(if ${BL2U}, ,$(eval $(call MAKE_BL,2u)))
6258f0617efSJuan Castillo$(eval $(call FWU_FIP_ADD_PAYLOAD,${BL2U_PATH},--ap-fwu-cfg))
6269003fa0bSYatharth Kocharendif
6279003fa0bSYatharth Kochar
62836eaaf37SIan Spraylocate-checkpatch:
62936eaaf37SIan Sprayifndef CHECKPATCH
63036eaaf37SIan Spray	$(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/script/checkpatch.pl")
63136eaaf37SIan Sprayelse
63236eaaf37SIan Sprayifeq (,$(wildcard ${CHECKPATCH}))
63336eaaf37SIan Spray	$(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/script/checkpatch.pl")
63436eaaf37SIan Sprayendif
63536eaaf37SIan Sprayendif
63636eaaf37SIan Spray
6374f6ad66aSAchin Guptaclean:
6384f6ad66aSAchin Gupta	@echo "  CLEAN"
639f1477d4aSEvan Lloyd	$(call SHELL_REMOVE_DIR,${BUILD_PLAT})
6402f2cef46SJeenu Viswambharan	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
6416f971622SJuan Castillo	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
6424f6ad66aSAchin Gupta
643eaaeece2SJames Morrisseyrealclean distclean:
644eaaeece2SJames Morrissey	@echo "  REALCLEAN"
645f1477d4aSEvan Lloyd	$(call SHELL_REMOVE_DIR,${BUILD_BASE})
646f1477d4aSEvan Lloyd	$(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
6472f2cef46SJeenu Viswambharan	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
6486f971622SJuan Castillo	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
6494f6ad66aSAchin Gupta
65036eaaf37SIan Spraycheckcodebase:		locate-checkpatch
65136eaaf37SIan Spray	@echo "  CHECKING STYLE"
65236eaaf37SIan Spray	@if test -d .git ; then						\
6531a41e8c1SDan Handley		git ls-files | grep -E -v libfdt\|stdlib\|docs\|\.md |	\
6541a41e8c1SDan Handley		while read GIT_FILE ;					\
6551a41e8c1SDan Handley		do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ;	\
6561a41e8c1SDan Handley		done ;							\
65736eaaf37SIan Spray	else								\
6581a41e8c1SDan Handley		 find . -type f -not -iwholename "*.git*"		\
6591a41e8c1SDan Handley		 -not -iwholename "*build*"				\
6601a41e8c1SDan Handley		 -not -iwholename "*libfdt*"				\
6611a41e8c1SDan Handley		 -not -iwholename "*stdlib*"				\
6621a41e8c1SDan Handley		 -not -iwholename "*docs*"				\
6631a41e8c1SDan Handley		 -not -iwholename "*.md"				\
6641a41e8c1SDan Handley		 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ;	\
66536eaaf37SIan Spray	fi
66636eaaf37SIan Spray
66736eaaf37SIan Spraycheckpatch:		locate-checkpatch
66836eaaf37SIan Spray	@echo "  CHECKING STYLE"
669f607739cSSandrine Bailleux	${Q}git log -p ${BASE_COMMIT}..HEAD -- ${CHECK_PATHS} | ${CHECKPATCH} - || true
67036eaaf37SIan Spray
67173c99d4eSJuan Castillocerttool: ${CRTTOOL}
67273c99d4eSJuan Castillo
6736f971622SJuan Castillo.PHONY: ${CRTTOOL}
6746f971622SJuan Castillo${CRTTOOL}:
6756f971622SJuan Castillo	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH}
676f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
6776f971622SJuan Castillo	@echo "Built $@ successfully"
678f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
6796f971622SJuan Castillo
6806f971622SJuan Castilloifneq (${GENERATE_COT},0)
68173c99d4eSJuan Castillocertificates: ${CRT_DEPS} ${CRTTOOL}
6826f971622SJuan Castillo	${Q}${CRTTOOL} ${CRT_ARGS}
683f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
6846f971622SJuan Castillo	@echo "Built $@ successfully"
6856f971622SJuan Castillo	@echo "Certificates can be found in ${BUILD_PLAT}"
686f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
68773c99d4eSJuan Castilloendif
68827713fb4SSoby Mathew
68973c99d4eSJuan Castillo${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
690819281eeSdp-arm	${Q}${FIPTOOL} create ${FIP_ARGS} $@
691819281eeSdp-arm	${Q}${FIPTOOL} info $@
692f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
6932f2cef46SJeenu Viswambharan	@echo "Built $@ successfully"
694f1477d4aSEvan Lloyd	@${ECHO_BLANK_LINE}
695f58ad36fSHarry Liebel
6960191262dSYatharth Kocharifneq (${GENERATE_COT},0)
6970191262dSYatharth Kocharfwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
6980191262dSYatharth Kochar	${Q}${CRTTOOL} ${FWU_CRT_ARGS}
6990191262dSYatharth Kochar	@echo
7000191262dSYatharth Kochar	@echo "Built $@ successfully"
7010191262dSYatharth Kochar	@echo "FWU certificates can be found in ${BUILD_PLAT}"
7020191262dSYatharth Kochar	@echo
7030191262dSYatharth Kocharendif
7040191262dSYatharth Kochar
7050191262dSYatharth Kochar${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
706819281eeSdp-arm	${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
707819281eeSdp-arm	${Q}${FIPTOOL} info $@
7080191262dSYatharth Kochar	@echo
7090191262dSYatharth Kochar	@echo "Built $@ successfully"
7100191262dSYatharth Kochar	@echo
7110191262dSYatharth Kochar
71273c99d4eSJuan Castillofiptool: ${FIPTOOL}
71373c99d4eSJuan Castillofip: ${BUILD_PLAT}/${FIP_NAME}
7140191262dSYatharth Kocharfwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
71573c99d4eSJuan Castillo
71673c99d4eSJuan Castillo.PHONY: ${FIPTOOL}
71773c99d4eSJuan Castillo${FIPTOOL}:
718819281eeSdp-arm	${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" --no-print-directory -C ${FIPTOOLPATH}
719f58ad36fSHarry Liebel
72035fab8c9SJoakim Bechcscope:
72135fab8c9SJoakim Bech	@echo "  CSCOPE"
72235fab8c9SJoakim Bech	${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
72335fab8c9SJoakim Bech	${Q}cscope -b -q -k
72435fab8c9SJoakim Bech
72572ee3314SRyan Harkinhelp:
726231c1470SEvan Lloyd	@echo "usage: ${MAKE} PLAT=<${PLATFORM_LIST}> [OPTIONS] [TARGET]"
72772ee3314SRyan Harkin	@echo ""
72872ee3314SRyan Harkin	@echo "PLAT is used to specify which platform you wish to build."
72908c7ed0fSSandrine Bailleux	@echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
73072ee3314SRyan Harkin	@echo ""
7311b578596SSandrine Bailleux	@echo "Please refer to the User Guide for a list of all supported options."
7321b578596SSandrine Bailleux	@echo "Note that the build system doesn't track dependencies for build "
7331b578596SSandrine Bailleux	@echo "options. Therefore, if any of the build options are changed "
7341b578596SSandrine Bailleux	@echo "from a previous build, a clean build must be performed."
7351b578596SSandrine Bailleux	@echo ""
73672ee3314SRyan Harkin	@echo "Supported Targets:"
7371b578596SSandrine Bailleux	@echo "  all            Build all individual bootloader binaries"
73836eaaf37SIan Spray	@echo "  bl1            Build the BL1 binary"
7398aa559c0SJeenu Viswambharan	@echo "  bl2            Build the BL2 binary"
7409003fa0bSYatharth Kochar	@echo "  bl2u           Build the BL2U binary"
741d178637dSJuan Castillo	@echo "  bl31           Build the BL31 binary"
7429d29c227SSoby Mathew	@echo "  bl32           Build the BL32 binary. If ARCH=aarch32, then "
7439d29c227SSoby Mathew	@echo "                 this builds secure payload specified by AARCH32_SP"
74473c99d4eSJuan Castillo	@echo "  certificates   Build the certificates (requires 'GENERATE_COT=1')"
7451b578596SSandrine Bailleux	@echo "  fip            Build the Firmware Image Package (FIP)"
7460191262dSYatharth Kochar	@echo "  fwu_fip        Build the FWU Firmware Image Package (FIP)"
74736eaaf37SIan Spray	@echo "  checkcodebase  Check the coding style of the entire source tree"
74836eaaf37SIan Spray	@echo "  checkpatch     Check the coding style on changes in the current"
74936eaaf37SIan Spray	@echo "                 branch against BASE_COMMIT (default origin/master)"
75072ee3314SRyan Harkin	@echo "  clean          Clean the build for the selected platform"
75135fab8c9SJoakim Bech	@echo "  cscope         Generate cscope index"
75272ee3314SRyan Harkin	@echo "  distclean      Remove all build artifacts for all platforms"
7536f971622SJuan Castillo	@echo "  certtool       Build the Certificate generation tool"
754f58ad36fSHarry Liebel	@echo "  fiptool        Build the Firmware Image Package(FIP) creation tool"
75572ee3314SRyan Harkin	@echo ""
7561b578596SSandrine Bailleux	@echo "Note: most build targets require PLAT to be set to a specific platform."
75772ee3314SRyan Harkin	@echo ""
75872ee3314SRyan Harkin	@echo "example: build all targets for the FVP platform:"
75972ee3314SRyan Harkin	@echo "  CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
760