xref: /rk3399_ARM-atf/Makefile (revision 6f97162237603eb6e5c497e5ba903512bdd428a9)
14f6ad66aSAchin Gupta#
2e83b0cadSDan Handley# Copyright (c) 2013-2014, 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
35c6249aaaSDan HandleyVERSION_MINOR		:= 0
36aaa3e722SJuan Castillo
37aaa3e722SJuan Castillo#
38e35c4045SJeenu Viswambharan# Default values for build configurations
39e35c4045SJeenu Viswambharan#
40e35c4045SJeenu Viswambharan
41e35c4045SJeenu Viswambharan# Build verbosity
42e35c4045SJeenu ViswambharanV			:= 0
43e35c4045SJeenu Viswambharan# Debug build
44e35c4045SJeenu ViswambharanDEBUG			:= 0
45e35c4045SJeenu Viswambharan# Build architecture
46e35c4045SJeenu ViswambharanARCH 			:= aarch64
47e35c4045SJeenu Viswambharan# Build platform
48e35c4045SJeenu ViswambharanDEFAULT_PLAT		:= fvp
49e35c4045SJeenu ViswambharanPLAT			:= ${DEFAULT_PLAT}
50e35c4045SJeenu Viswambharan# SPD choice
51e35c4045SJeenu ViswambharanSPD			:= none
52e35c4045SJeenu Viswambharan# Base commit to perform code check on
53e35c4045SJeenu ViswambharanBASE_COMMIT		:= origin/master
542da8d8bfSJeenu Viswambharan# NS timer register save and restore
552da8d8bfSJeenu ViswambharanNS_TIMER_SWITCH		:= 0
56dbad1bacSVikram Kanigiri# By default, Bl1 acts as the reset handler, not BL31
57dbad1bacSVikram KanigiriRESET_TO_BL31		:= 0
580f21c547SJuan Castillo# Include FP registers in cpu context
590f21c547SJuan CastilloCTX_INCLUDE_FPREGS		:= 0
602b98e789SSandrine Bailleux# Determine the version of ARM GIC architecture to use for interrupt management
612b98e789SSandrine Bailleux# in EL3. The platform port can change this value if needed.
622b98e789SSandrine BailleuxARM_GIC_ARCH		:=	2
63bc920128SSoby Mathew# Flag used to indicate if ASM_ASSERTION should be enabled for the build.
64bc920128SSoby Mathew# This defaults to being present in DEBUG builds only.
65bc920128SSoby MathewASM_ASSERTION		:=	${DEBUG}
668c5fe0b5SSoby Mathew# Build option to choose whether Trusted firmware uses Coherent memory or not.
678c5fe0b5SSoby MathewUSE_COHERENT_MEM	:=	1
687f48fab9SJuan Castillo# Default FIP file name
697f48fab9SJuan CastilloFIP_NAME		:= fip.bin
70*6f971622SJuan Castillo# Flags to generate the Chain of Trust
71*6f971622SJuan CastilloGENERATE_COT		:= 0
72*6f971622SJuan CastilloCREATE_KEYS		:= 1
734f6ad66aSAchin Gupta
747421b465SAchin Gupta# Checkpatch ignores
757421b465SAchin GuptaCHECK_IGNORE		=	--ignore COMPLEX_MACRO
767421b465SAchin Gupta
777421b465SAchin GuptaCHECKPATCH_ARGS		=	--no-tree --no-signoff ${CHECK_IGNORE}
787421b465SAchin GuptaCHECKCODE_ARGS		=	--no-patch --no-tree --no-signoff ${CHECK_IGNORE}
7936eaaf37SIan Spray
80e35c4045SJeenu Viswambharanifeq (${V},0)
814f6ad66aSAchin Gupta	Q=@
8236eaaf37SIan Spray	CHECKCODE_ARGS	+=	--no-summary --terse
834f6ad66aSAchin Guptaelse
844f6ad66aSAchin Gupta	Q=
854f6ad66aSAchin Guptaendif
862f2cef46SJeenu Viswambharanexport Q
872f2cef46SJeenu Viswambharan
88eaaeece2SJames Morrisseyifneq (${DEBUG}, 0)
89eaaeece2SJames Morrissey	BUILD_TYPE	:=	debug
90289c28a8SDan Handley	# Use LOG_LEVEL_INFO by default for debug builds
91289c28a8SDan Handley	LOG_LEVEL	:=	40
92eaaeece2SJames Morrisseyelse
93eaaeece2SJames Morrissey	BUILD_TYPE	:=	release
94289c28a8SDan Handley	# Use LOG_LEVEL_NOTICE by default for release builds
95289c28a8SDan Handley	LOG_LEVEL	:=	20
96eaaeece2SJames Morrisseyendif
97eaaeece2SJames Morrissey
98aaa3e722SJuan Castillo# Default build string (git branch and commit)
99aaa3e722SJuan Castilloifeq (${BUILD_STRING},)
100aaa3e722SJuan Castillo	BUILD_STRING	:=	$(shell git log -n 1 --pretty=format:"%h")
101aaa3e722SJuan Castilloendif
102aaa3e722SJuan Castillo
103aaa3e722SJuan CastilloVERSION_STRING		:=	v${VERSION_MAJOR}.${VERSION_MINOR}(${BUILD_TYPE}):${BUILD_STRING}
104aaa3e722SJuan Castillo
105bee82417SDan HandleyBL_COMMON_SOURCES	:=	common/bl_common.c			\
106b79af934SSoby Mathew				common/tf_printf.c			\
107626ed510SSoby Mathew				common/aarch64/debug.S			\
108bee82417SDan Handley				lib/aarch64/cache_helpers.S		\
109bee82417SDan Handley				lib/aarch64/misc_helpers.S		\
110bee82417SDan Handley				lib/aarch64/xlat_helpers.c		\
111bee82417SDan Handley				lib/stdlib/std.c			\
112bee82417SDan Handley				plat/common/aarch64/platform_helpers.S
113d7a6b0f8SRyan Harkin
114eaaeece2SJames MorrisseyBUILD_BASE		:=	./build
11525cff83eSRyan HarkinBUILD_PLAT		:=	${BUILD_BASE}/${PLAT}/${BUILD_TYPE}
1164f6ad66aSAchin Gupta
11725cff83eSRyan HarkinPLATFORMS		:=	$(shell ls -I common plat/)
118375f538aSAchin GuptaSPDS			:=	$(shell ls -I none services/spd)
11972ee3314SRyan HarkinHELP_PLATFORMS		:=	$(shell echo ${PLATFORMS} | sed 's/ /|/g')
12072ee3314SRyan Harkin
121289e0dadSJeenu Viswambharan# Convenience function for adding build definitions
122289e0dadSJeenu Viswambharan# $(eval $(call add_define,FOO)) will have:
123289e0dadSJeenu Viswambharan# -DFOO if $(FOO) is empty; -DFOO=$(FOO) otherwise
124289e0dadSJeenu Viswambharandefine add_define
125289e0dadSJeenu ViswambharanDEFINES			+=	-D$(1)$(if $(value $(1)),=$(value $(1)),)
126289e0dadSJeenu Viswambharanendef
127289e0dadSJeenu Viswambharan
128289e0dadSJeenu Viswambharan# Convenience function for verifying option has a boolean value
129289e0dadSJeenu Viswambharan# $(eval $(call assert_boolean,FOO)) will assert FOO is 0 or 1
130289e0dadSJeenu Viswambharandefine assert_boolean
131289e0dadSJeenu Viswambharan$(and $(patsubst 0,,$(value $(1))),$(patsubst 1,,$(value $(1))),$(error $(1) must be boolean))
132289e0dadSJeenu Viswambharanendef
133289e0dadSJeenu Viswambharan
13425cff83eSRyan Harkinifeq (${PLAT},)
13525cff83eSRyan Harkin  $(error "Error: Unknown platform. Please use PLAT=<platform name> to specify the platform.")
13625cff83eSRyan Harkinendif
1374bfc2d21SJon Medhurstifeq ($(findstring ${PLAT},${PLATFORMS}),)
13825cff83eSRyan Harkin  $(error "Error: Invalid platform. The following platforms are available: ${PLATFORMS}")
13925cff83eSRyan Harkinendif
1404f6ad66aSAchin Gupta
1414bfc2d21SJon Medhurstall: msg_start
14225cff83eSRyan Harkin
14325cff83eSRyan Harkinmsg_start:
14425cff83eSRyan Harkin	@echo "Building ${PLAT}"
14525cff83eSRyan Harkin
14625cff83eSRyan Harkininclude plat/${PLAT}/platform.mk
1474bfc2d21SJon Medhurst
1485541bb3fSSoby Mathew# Include the CPU specific operations makefile. By default all CPU errata
1495541bb3fSSoby Mathew# workarounds and CPU specifc optimisations are disabled. This can be
150d9bdaf2dSSoby Mathew# overridden by the platform.
1515541bb3fSSoby Mathewinclude lib/cpus/cpu-ops.mk
152d9bdaf2dSSoby Mathew
1534bfc2d21SJon Medhurstifdef BL1_SOURCES
1544bfc2d21SJon MedhurstNEED_BL1 := yes
1554f6ad66aSAchin Guptainclude bl1/bl1.mk
1564bfc2d21SJon Medhurstendif
1574bfc2d21SJon Medhurst
1584bfc2d21SJon Medhurstifdef BL2_SOURCES
1594bfc2d21SJon MedhurstNEED_BL2 := yes
1604f6ad66aSAchin Guptainclude bl2/bl2.mk
16127713fb4SSoby Mathew# Using the ARM Trusted Firmware BL2 implies that a BL3-3 image also need to be supplied for the FIP.
16227713fb4SSoby Mathew# This flag can be overridden by the platform.
16327713fb4SSoby MathewNEED_BL33 ?= yes
1644bfc2d21SJon Medhurstendif
1654bfc2d21SJon Medhurst
1664bfc2d21SJon Medhurstifdef BL31_SOURCES
1674bfc2d21SJon MedhurstNEED_BL31 := yes
1684f6ad66aSAchin Guptainclude bl31/bl31.mk
16925cff83eSRyan Harkinendif
1704f6ad66aSAchin Gupta
171375f538aSAchin Gupta# Include SPD Makefile if one has been specified
172375f538aSAchin Guptaifneq (${SPD},none)
173375f538aSAchin Gupta  # We expect to locate an spd.mk under the specified SPD directory
174375f538aSAchin Gupta  SPD_MAKE		:=	$(shell m="services/spd/${SPD}/${SPD}.mk"; [ -f "$$m" ] && echo "$$m")
175375f538aSAchin Gupta
176375f538aSAchin Gupta  ifeq (${SPD_MAKE},)
177375f538aSAchin Gupta    $(error Error: No services/spd/${SPD}/${SPD}.mk located)
178375f538aSAchin Gupta  endif
179375f538aSAchin Gupta  $(info Including ${SPD_MAKE})
180375f538aSAchin Gupta  include ${SPD_MAKE}
181375f538aSAchin Gupta
18227713fb4SSoby Mathew  # If there's BL3-2 companion for the chosen SPD, and the SPD wants to build the
18327713fb4SSoby Mathew  # BL3-2 from source, we expect that the SPD's Makefile would set NEED_BL32
18427713fb4SSoby Mathew  # variable to "yes". In case the BL3-2 is a binary which needs to be included in
18527713fb4SSoby Mathew  # fip, then the NEED_BL32 needs to be set and BL3-2 would need to point to the bin.
186375f538aSAchin Guptaendif
187375f538aSAchin Gupta
188*6f971622SJuan Castillo.PHONY:			all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool fip certtool
189eaaeece2SJames Morrissey.SUFFIXES:
190eaaeece2SJames Morrissey
191a0df63efSSandrine BailleuxINCLUDES		+=	-Iinclude/bl31			\
1924ecca339SDan Handley				-Iinclude/bl31/services		\
1934ecca339SDan Handley				-Iinclude/common		\
1944ecca339SDan Handley				-Iinclude/drivers		\
1954ecca339SDan Handley				-Iinclude/drivers/arm		\
196935db693SDan Handley				-Iinclude/drivers/io		\
1974ecca339SDan Handley				-Iinclude/lib			\
1984ecca339SDan Handley				-Iinclude/lib/aarch64		\
199add40351SSoby Mathew				-Iinclude/lib/cpus/aarch64	\
2005f0cdb05SDan Handley				-Iinclude/plat/common		\
201d7a6b0f8SRyan Harkin				-Iinclude/stdlib		\
202d7a6b0f8SRyan Harkin				-Iinclude/stdlib/sys		\
203375f538aSAchin Gupta				${PLAT_INCLUDES}		\
204375f538aSAchin Gupta				${SPD_INCLUDES}
2054f6ad66aSAchin Gupta
206e35c4045SJeenu Viswambharan# Process DEBUG flag
207e35c4045SJeenu Viswambharan$(eval $(call assert_boolean,DEBUG))
208e35c4045SJeenu Viswambharan$(eval $(call add_define,DEBUG))
209e35c4045SJeenu Viswambharanifeq (${DEBUG},0)
210e35c4045SJeenu Viswambharan  $(eval $(call add_define,NDEBUG))
211e35c4045SJeenu Viswambharanelse
212e35c4045SJeenu ViswambharanCFLAGS			+= 	-g
213e35c4045SJeenu ViswambharanASFLAGS			+= 	-g -Wa,--gdwarf-2
214e35c4045SJeenu Viswambharanendif
215e35c4045SJeenu Viswambharan
2162da8d8bfSJeenu Viswambharan# Process NS_TIMER_SWITCH flag
2172da8d8bfSJeenu Viswambharan$(eval $(call assert_boolean,NS_TIMER_SWITCH))
2182da8d8bfSJeenu Viswambharan$(eval $(call add_define,NS_TIMER_SWITCH))
2192da8d8bfSJeenu Viswambharan
220dbad1bacSVikram Kanigiri# Process RESET_TO_BL31 flag
221dbad1bacSVikram Kanigiri$(eval $(call assert_boolean,RESET_TO_BL31))
222dbad1bacSVikram Kanigiri$(eval $(call add_define,RESET_TO_BL31))
223dbad1bacSVikram Kanigiri
2240f21c547SJuan Castillo# Process CTX_INCLUDE_FPREGS flag
2250f21c547SJuan Castillo$(eval $(call assert_boolean,CTX_INCLUDE_FPREGS))
2260f21c547SJuan Castillo$(eval $(call add_define,CTX_INCLUDE_FPREGS))
2270f21c547SJuan Castillo
2282b98e789SSandrine Bailleux# Process ARM_GIC_ARCH flag
2292b98e789SSandrine Bailleux$(eval $(call add_define,ARM_GIC_ARCH))
2302b98e789SSandrine Bailleux
231bc920128SSoby Mathew# Process ASM_ASSERTION flag
232bc920128SSoby Mathew$(eval $(call assert_boolean,ASM_ASSERTION))
233bc920128SSoby Mathew$(eval $(call add_define,ASM_ASSERTION))
2342b98e789SSandrine Bailleux
235289c28a8SDan Handley# Process LOG_LEVEL flag
236289c28a8SDan Handley$(eval $(call add_define,LOG_LEVEL))
237289c28a8SDan Handley
2388c5fe0b5SSoby Mathew# Process USE_COHERENT_MEM flag
2398c5fe0b5SSoby Mathew$(eval $(call assert_boolean,USE_COHERENT_MEM))
2408c5fe0b5SSoby Mathew$(eval $(call add_define,USE_COHERENT_MEM))
2418c5fe0b5SSoby Mathew
242*6f971622SJuan Castillo# Process Generate CoT flags
243*6f971622SJuan Castillo$(eval $(call assert_boolean,GENERATE_COT))
244*6f971622SJuan Castillo$(eval $(call assert_boolean,CREATE_KEYS))
245*6f971622SJuan Castillo
2460af6d64dSHarry LiebelASFLAGS			+= 	-nostdinc -ffreestanding -Wa,--fatal-warnings	\
247a0df63efSSandrine Bailleux				-Werror -Wmissing-include-dirs			\
248e35c4045SJeenu Viswambharan				-mgeneral-regs-only -D__ASSEMBLY__		\
249e35c4045SJeenu Viswambharan				${DEFINES} ${INCLUDES}
250e35c4045SJeenu ViswambharanCFLAGS			+= 	-nostdinc -pedantic -ffreestanding -Wall	\
251a0df63efSSandrine Bailleux				-Werror -Wmissing-include-dirs			\
252a0df63efSSandrine Bailleux				-mgeneral-regs-only -std=c99 -c -Os		\
253e35c4045SJeenu Viswambharan				${DEFINES} ${INCLUDES}
254dccc537aSAndrew ThoelkeCFLAGS			+=	-ffunction-sections -fdata-sections
2554f6ad66aSAchin Gupta
2563e850a84SSandrine BailleuxLDFLAGS			+=	--fatal-warnings -O1
257dccc537aSAndrew ThoelkeLDFLAGS			+=	--gc-sections
2584f6ad66aSAchin Gupta
2594f6ad66aSAchin Gupta
260eaaeece2SJames MorrisseyCC			:=	${CROSS_COMPILE}gcc
261eaaeece2SJames MorrisseyCPP			:=	${CROSS_COMPILE}cpp
262eaaeece2SJames MorrisseyAS			:=	${CROSS_COMPILE}gcc
263eaaeece2SJames MorrisseyAR			:=	${CROSS_COMPILE}ar
264eaaeece2SJames MorrisseyLD			:=	${CROSS_COMPILE}ld
265eaaeece2SJames MorrisseyOC			:=	${CROSS_COMPILE}objcopy
266eaaeece2SJames MorrisseyOD			:=	${CROSS_COMPILE}objdump
267eaaeece2SJames MorrisseyNM			:=	${CROSS_COMPILE}nm
268eaaeece2SJames MorrisseyPP			:=	${CROSS_COMPILE}gcc -E ${CFLAGS}
2694f6ad66aSAchin Gupta
270f58ad36fSHarry Liebel# Variables for use with Firmware Image Package
271f58ad36fSHarry LiebelFIPTOOLPATH		?=	tools/fip_create
272f58ad36fSHarry LiebelFIPTOOL			?=	${FIPTOOLPATH}/fip_create
273f58ad36fSHarry Liebelfiptool:		${FIPTOOL}
2747f48fab9SJuan Castillofip:			${BUILD_PLAT}/${FIP_NAME}
275f58ad36fSHarry Liebel
276*6f971622SJuan Castillo# Variables for use with Certificate Generation Tool
277*6f971622SJuan CastilloCRTTOOLPATH		?=	tools/cert_create
278*6f971622SJuan CastilloCRTTOOL			?=	${CRTTOOLPATH}/cert_create
279*6f971622SJuan Castillocerttool:		${CRTTOOL}
280*6f971622SJuan Castillo
281*6f971622SJuan Castillo# CoT generation tool default parameters
282*6f971622SJuan CastilloTRUSTED_KEY_CERT	:=	${BUILD_PLAT}/trusted_key.crt
283*6f971622SJuan Castillo
284*6f971622SJuan Castillo# Pass the private keys to the CoT generation tool in the command line
285*6f971622SJuan Castillo# If CREATE_KEYS is set, the '-n' option will be added, indicating the tool to create new keys
286*6f971622SJuan Castilloifneq (${GENERATE_COT},0)
287*6f971622SJuan Castillo    $(eval CERTS := yes)
288*6f971622SJuan Castillo
289*6f971622SJuan Castillo    ifneq (${CREATE_KEYS},0)
290*6f971622SJuan Castillo        $(eval CRT_ARGS += -n)
291*6f971622SJuan Castillo    endif
292*6f971622SJuan Castillo    $(eval CRT_ARGS += $(if ${ROT_KEY}, --rot-key ${ROT_KEY}))
293*6f971622SJuan Castillo    $(eval CRT_ARGS += $(if ${TRUSTED_WORLD_KEY}, --trusted-world-key ${TRUSTED_WORLD_KEY}))
294*6f971622SJuan Castillo    $(eval CRT_ARGS += $(if ${NON_TRUSTED_WORLD_KEY}, --non-trusted-world-key ${NON_TRUSTED_WORLD_KEY}))
295*6f971622SJuan Castillo    $(eval CRT_ARGS += --trusted-key-cert ${TRUSTED_KEY_CERT})
296*6f971622SJuan Castilloendif
297*6f971622SJuan Castillo
29836eaaf37SIan Spraylocate-checkpatch:
29936eaaf37SIan Sprayifndef CHECKPATCH
30036eaaf37SIan Spray	$(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/script/checkpatch.pl")
30136eaaf37SIan Sprayelse
30236eaaf37SIan Sprayifeq (,$(wildcard ${CHECKPATCH}))
30336eaaf37SIan Spray	$(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/script/checkpatch.pl")
30436eaaf37SIan Sprayendif
30536eaaf37SIan Sprayendif
30636eaaf37SIan Spray
3074f6ad66aSAchin Guptaclean:
3084f6ad66aSAchin Gupta			@echo "  CLEAN"
30925cff83eSRyan Harkin			${Q}rm -rf ${BUILD_PLAT}
3102f2cef46SJeenu Viswambharan			${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
311*6f971622SJuan Castillo			${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
3124f6ad66aSAchin Gupta
313eaaeece2SJames Morrisseyrealclean distclean:
314eaaeece2SJames Morrissey			@echo "  REALCLEAN"
315eaaeece2SJames Morrissey			${Q}rm -rf ${BUILD_BASE}
31635fab8c9SJoakim Bech			${Q}rm -f ${CURDIR}/cscope.*
3172f2cef46SJeenu Viswambharan			${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
318*6f971622SJuan Castillo			${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
3194f6ad66aSAchin Gupta
32036eaaf37SIan Spraycheckcodebase:		locate-checkpatch
32136eaaf37SIan Spray			@echo "  CHECKING STYLE"
32236eaaf37SIan Spray			@if test -d .git ; then	\
3234f2104ffSJuan Castillo				git ls-files | grep -v stdlib | while read GIT_FILE ; do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; done ;	\
32436eaaf37SIan Spray			 else			\
3254f2104ffSJuan Castillo				 find . -type f -not -iwholename "*.git*" -not -iwholename "*build*" -not -iwholename "*stdlib*" -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ;	\
32636eaaf37SIan Spray			 fi
32736eaaf37SIan Spray
32836eaaf37SIan Spraycheckpatch:		locate-checkpatch
32936eaaf37SIan Spray			@echo "  CHECKING STYLE"
33036eaaf37SIan Spray			@git format-patch --stdout ${BASE_COMMIT} | ${CHECKPATCH} ${CHECKPATCH_ARGS} - || true
33136eaaf37SIan Spray
332*6f971622SJuan Castillo.PHONY: ${CRTTOOL}
333*6f971622SJuan Castillo${CRTTOOL}:
334*6f971622SJuan Castillo			${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH}
335*6f971622SJuan Castillo			@echo
336*6f971622SJuan Castillo			@echo "Built $@ successfully"
337*6f971622SJuan Castillo			@echo
338*6f971622SJuan Castillo
33907deed40SSandrine Bailleux.PHONY: ${FIPTOOL}
340f58ad36fSHarry Liebel${FIPTOOL}:
3412f2cef46SJeenu Viswambharan			${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH}
342f58ad36fSHarry Liebel
3436d55d109SJon Medhurstdefine match_goals
3446d55d109SJon Medhurst$(strip $(foreach goal,$(1),$(filter $(goal),$(MAKECMDGOALS))))
3456d55d109SJon Medhurstendef
346eaaeece2SJames Morrissey
3478d2296f3SSandrine Bailleux# List of rules that involve building things
3488d2296f3SSandrine BailleuxBUILD_TARGETS := all bl1 bl2 bl31 bl32 fip
349eaaeece2SJames Morrissey
3508d2296f3SSandrine Bailleux# Does the list of goals specified on the command line include a build target?
3518d2296f3SSandrine Bailleuxifneq ($(call match_goals,${BUILD_TARGETS}),)
3528d2296f3SSandrine BailleuxIS_ANYTHING_TO_BUILD := 1
3538d2296f3SSandrine Bailleuxendif
3544f6ad66aSAchin Gupta
3556d55d109SJon Medhurstdefine MAKE_C
356eaaeece2SJames Morrissey
3576d55d109SJon Medhurst$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
3586d55d109SJon Medhurst$(eval PREREQUISITES := $(patsubst %.o,%.d,$(OBJ)))
359eaaeece2SJames Morrissey
3606d55d109SJon Medhurst$(OBJ) : $(2)
3616d55d109SJon Medhurst	@echo "  CC      $$<"
36227905d0aSSoby Mathew	$$(Q)$$(CC) $$(CFLAGS) -DIMAGE_BL$(3) -c $$< -o $$@
363eaaeece2SJames Morrissey
3646d55d109SJon Medhurst
3656d55d109SJon Medhurst$(PREREQUISITES) : $(2)
3666d55d109SJon Medhurst	@echo "  DEPS    $$@"
3676d55d109SJon Medhurst	@mkdir -p $(1)
3686d55d109SJon Medhurst	$$(Q)$$(CC) $$(CFLAGS) -M -MT $(OBJ) -MF $$@ $$<
3696d55d109SJon Medhurst
3708d2296f3SSandrine Bailleuxifdef IS_ANYTHING_TO_BUILD
3716d55d109SJon Medhurst-include $(PREREQUISITES)
3726d55d109SJon Medhurstendif
3736d55d109SJon Medhurst
3746d55d109SJon Medhurstendef
3756d55d109SJon Medhurst
3766d55d109SJon Medhurst
3776d55d109SJon Medhurstdefine MAKE_S
3786d55d109SJon Medhurst
3796d55d109SJon Medhurst$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
3806d55d109SJon Medhurst$(eval PREREQUISITES := $(patsubst %.o,%.d,$(OBJ)))
3816d55d109SJon Medhurst
3826d55d109SJon Medhurst$(OBJ) : $(2)
3836d55d109SJon Medhurst	@echo "  AS      $$<"
38427905d0aSSoby Mathew	$$(Q)$$(AS) $$(ASFLAGS) -DIMAGE_BL$(3) -c $$< -o $$@
3856d55d109SJon Medhurst
3866d55d109SJon Medhurst$(PREREQUISITES) : $(2)
3876d55d109SJon Medhurst	@echo "  DEPS    $$@"
3886d55d109SJon Medhurst	@mkdir -p $(1)
3896d55d109SJon Medhurst	$$(Q)$$(AS) $$(ASFLAGS) -M -MT $(OBJ) -MF $$@ $$<
3906d55d109SJon Medhurst
3918d2296f3SSandrine Bailleuxifdef IS_ANYTHING_TO_BUILD
3926d55d109SJon Medhurst-include $(PREREQUISITES)
3936d55d109SJon Medhurstendif
3946d55d109SJon Medhurst
3956d55d109SJon Medhurstendef
3966d55d109SJon Medhurst
3976d55d109SJon Medhurst
3986d55d109SJon Medhurstdefine MAKE_LD
3996d55d109SJon Medhurst
4006d55d109SJon Medhurst$(eval PREREQUISITES := $(1).d)
4016d55d109SJon Medhurst
4026d55d109SJon Medhurst$(1) : $(2)
4036d55d109SJon Medhurst	@echo "  PP      $$<"
404513dd3a0SJuan Castillo	$$(Q)$$(AS) $$(ASFLAGS) -P -E -D__LINKER__ -o $$@ $$<
4056d55d109SJon Medhurst
4066d55d109SJon Medhurst$(PREREQUISITES) : $(2)
4076d55d109SJon Medhurst	@echo "  DEPS    $$@"
4086d55d109SJon Medhurst	@mkdir -p $$(dir $$@)
4096d55d109SJon Medhurst	$$(Q)$$(AS) $$(ASFLAGS) -M -MT $(1) -MF $$@ $$<
4106d55d109SJon Medhurst
4118d2296f3SSandrine Bailleuxifdef IS_ANYTHING_TO_BUILD
4126d55d109SJon Medhurst-include $(PREREQUISITES)
4136d55d109SJon Medhurstendif
4146d55d109SJon Medhurst
4156d55d109SJon Medhurstendef
4166d55d109SJon Medhurst
4176d55d109SJon Medhurst
4186d55d109SJon Medhurstdefine MAKE_OBJS
4196d55d109SJon Medhurst	$(eval C_OBJS := $(filter %.c,$(2)))
4206d55d109SJon Medhurst	$(eval REMAIN := $(filter-out %.c,$(2)))
42127905d0aSSoby Mathew	$(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj),$(3))))
4226d55d109SJon Medhurst
4236d55d109SJon Medhurst	$(eval S_OBJS := $(filter %.S,$(REMAIN)))
4246d55d109SJon Medhurst	$(eval REMAIN := $(filter-out %.S,$(REMAIN)))
42527905d0aSSoby Mathew	$(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj),$(3))))
4266d55d109SJon Medhurst
4276d55d109SJon Medhurst	$(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
4286d55d109SJon Medhurstendef
4296d55d109SJon Medhurst
4306d55d109SJon Medhurst
4316d55d109SJon Medhurst# NOTE: The line continuation '\' is required in the next define otherwise we
4326d55d109SJon Medhurst# end up with a line-feed characer at the end of the last c filename.
4336d55d109SJon Medhurst# Also bare this issue in mind if extending the list of supported filetypes.
4346d55d109SJon Medhurstdefine SOURCES_TO_OBJS
4356d55d109SJon Medhurst	$(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \
4366d55d109SJon Medhurst	$(notdir $(patsubst %.S,%.o,$(filter %.S,$(1))))
4376d55d109SJon Medhurstendef
4386d55d109SJon Medhurst
439*6f971622SJuan Castillo
440*6f971622SJuan Castillo# MAKE_TOOL_ARGS macro defines the command line arguments for the FIP and CRT
441*6f971622SJuan Castillo# tools at each BL stage. Arguments:
442*6f971622SJuan Castillo#   $(1) = BL stage (2, 30, 31, 32, 33)
443*6f971622SJuan Castillo#   $(2) = Binary file
444*6f971622SJuan Castillo#   $(3) = In FIP (false if empty)
445*6f971622SJuan Castillo#   $(4) = Create certificates (false if empty)
446*6f971622SJuan Castillo#   $(5) = Create key certificate (false if empty)
447*6f971622SJuan Castillo#   $(6) = Private key (optional)
448*6f971622SJuan Castillodefine MAKE_TOOL_ARGS
449*6f971622SJuan Castillo
450*6f971622SJuan Castillo$(eval FIP_DEPS += $(if $3,$(2),))
451*6f971622SJuan Castillo$(eval FIP_ARGS += $(if $3,--bl$(1) $(2),))
452*6f971622SJuan Castillo
453*6f971622SJuan Castillo$(eval CRT_DEPS += $(if $4,$(2),))
454*6f971622SJuan Castillo$(eval CRT_DEPS += $(if $4,$(if $6,$(6),)))
455*6f971622SJuan Castillo$(eval CRT_ARGS += $(if $4,--bl$(1) $(2)))
456*6f971622SJuan Castillo$(eval CRT_ARGS += $(if $4,$(if $6,--bl$(1)-key $(6))))
457*6f971622SJuan Castillo$(eval CRT_ARGS += $(if $4,--bl$(1)-cert $(BUILD_PLAT)/bl$(1).crt))
458*6f971622SJuan Castillo$(eval CRT_ARGS += $(if $4,$(if $5,--bl$(1)-key-cert $(BUILD_PLAT)/bl$(1)_key.crt)))
459*6f971622SJuan Castillo
460*6f971622SJuan Castilloendef
461*6f971622SJuan Castillo
462*6f971622SJuan Castillo
463*6f971622SJuan Castillo# MAKE_BL macro defines the targets and options to build each BL image.
464*6f971622SJuan Castillo# Arguments:
465*6f971622SJuan Castillo#   $(1) = BL stage (2, 30, 31, 32, 33)
466*6f971622SJuan Castillo#   $(2) = In FIP (false if empty)
467*6f971622SJuan Castillo#   $(3) = Create certificates (false if empty)
468*6f971622SJuan Castillo#   $(4) = Create key certificate (false if empty)
469*6f971622SJuan Castillo#   $(5) = Private key (optional)
4706d55d109SJon Medhurstdefine MAKE_BL
4716d55d109SJon Medhurst	$(eval BUILD_DIR  := ${BUILD_PLAT}/bl$(1))
4726d55d109SJon Medhurst	$(eval SOURCES    := $(BL$(1)_SOURCES) $(BL_COMMON_SOURCES) $(PLAT_BL_COMMON_SOURCES))
4736d55d109SJon Medhurst	$(eval OBJS       := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
4746d55d109SJon Medhurst	$(eval LINKERFILE := $(BUILD_DIR)/bl$(1).ld)
4756d55d109SJon Medhurst	$(eval MAPFILE    := $(BUILD_DIR)/bl$(1).map)
4766d55d109SJon Medhurst	$(eval ELF        := $(BUILD_DIR)/bl$(1).elf)
4776d55d109SJon Medhurst	$(eval DUMP       := $(BUILD_DIR)/bl$(1).dump)
4786d55d109SJon Medhurst	$(eval BIN        := $(BUILD_PLAT)/bl$(1).bin)
4796d55d109SJon Medhurst
48027905d0aSSoby Mathew	$(eval $(call MAKE_OBJS,$(BUILD_DIR),$(SOURCES),$(1)))
4816d55d109SJon Medhurst	$(eval $(call MAKE_LD,$(LINKERFILE),$(BL$(1)_LINKERFILE)))
4826d55d109SJon Medhurst
4836d55d109SJon Medhurst$(BUILD_DIR) :
4846d55d109SJon Medhurst	$$(Q)mkdir -p "$$@"
4856d55d109SJon Medhurst
4866d55d109SJon Medhurst$(ELF) : $(OBJS) $(LINKERFILE)
4876d55d109SJon Medhurst	@echo "  LD      $$@"
488aaa3e722SJuan Castillo	@echo 'const char build_message[] = "Built : "__TIME__", "__DATE__; \
489aaa3e722SJuan Castillo	       const char version_string[] = "${VERSION_STRING}";' | \
490fb052462SJon Medhurst		$$(CC) $$(CFLAGS) -xc - -o $(BUILD_DIR)/build_message.o
4916d55d109SJon Medhurst	$$(Q)$$(LD) -o $$@ $$(LDFLAGS) -Map=$(MAPFILE) --script $(LINKERFILE) \
4929f98aa1aSJeenu Viswambharan					$(BUILD_DIR)/build_message.o $(OBJS)
4936d55d109SJon Medhurst
4946d55d109SJon Medhurst$(DUMP) : $(ELF)
4956d55d109SJon Medhurst	@echo "  OD      $$@"
4966d55d109SJon Medhurst	$${Q}$${OD} -dx $$< > $$@
4976d55d109SJon Medhurst
4986d55d109SJon Medhurst$(BIN) : $(ELF)
4996d55d109SJon Medhurst	@echo "  BIN     $$@"
5006d55d109SJon Medhurst	$$(Q)$$(OC) -O binary $$< $$@
501eaaeece2SJames Morrissey	@echo
5026d55d109SJon Medhurst	@echo "Built $$@ successfully"
5034f6ad66aSAchin Gupta	@echo
5044f6ad66aSAchin Gupta
5056d55d109SJon Medhurst.PHONY : bl$(1)
5066d55d109SJon Medhurstbl$(1) : $(BUILD_DIR) $(BIN) $(DUMP)
5074f6ad66aSAchin Gupta
5086d55d109SJon Medhurstall : bl$(1)
5096d55d109SJon Medhurst
510*6f971622SJuan Castillo$(eval $(call MAKE_TOOL_ARGS,$(1),$(BIN),$(2),$(3),$(4),$(5)))
5116d55d109SJon Medhurst
5126d55d109SJon Medhurstendef
5136d55d109SJon Medhurst
5146d55d109SJon Medhurst
5154bfc2d21SJon Medhurstifeq (${NEED_BL1},yes)
5166d55d109SJon Medhurst$(eval $(call MAKE_BL,1))
5174bfc2d21SJon Medhurstendif
5186d55d109SJon Medhurst
5194bfc2d21SJon Medhurstifeq (${NEED_BL2},yes)
520*6f971622SJuan Castillo$(if ${BL2}, $(eval $(call MAKE_TOOL_ARGS,2,${BL2},in_fip,${CERTS})),\
521*6f971622SJuan Castillo	$(eval $(call MAKE_BL,2,in_fip,${CERTS})))
5224bfc2d21SJon Medhurstendif
5236d55d109SJon Medhurst
5244bfc2d21SJon Medhurstifeq (${NEED_BL31},yes)
5256d55d109SJon MedhurstBL31_SOURCES += ${SPD_SOURCES}
526*6f971622SJuan Castillo$(if ${BL31}, $(eval $(call MAKE_TOOL_ARGS,31,${BL31},in_fip,${CERTS},${CERTS},${BL31_KEY})),\
527*6f971622SJuan Castillo	$(eval $(call MAKE_BL,31,in_fip,${CERTS},${CERTS},${BL31_KEY})))
5284bfc2d21SJon Medhurstendif
5296d55d109SJon Medhurst
5306d55d109SJon Medhurstifeq (${NEED_BL32},yes)
531*6f971622SJuan Castillo$(if ${BL32}, $(eval $(call MAKE_TOOL_ARGS,32,${BL32},in_fip,${CERTS},${CERTS},${BL32_KEY})),\
532*6f971622SJuan Castillo	$(eval $(call MAKE_BL,32,in_fip,${CERTS},${CERTS},${BL32_KEY})))
5336d55d109SJon Medhurstendif
53472ee3314SRyan Harkin
53593d81d64SSandrine Bailleuxifeq (${NEED_BL30},yes)
536*6f971622SJuan Castillo$(if ${BL30}, $(eval $(call MAKE_TOOL_ARGS,30,${BL30},in_fip,${CERTS},${CERTS},${BL30_KEY})))
53793d81d64SSandrine Bailleux
53893d81d64SSandrine Bailleux# If BL3-0 is needed by the platform then 'BL30' variable must be defined.
53993d81d64SSandrine Bailleuxcheck_bl30:
54093d81d64SSandrine Bailleux	$(if ${BL30},,$(error "To build a FIP for platform ${PLAT}, please set BL30 to point to the SCP firmware"))
54193d81d64SSandrine Bailleuxelse
54227713fb4SSoby Mathew
54393d81d64SSandrine Bailleux# If BL3-0 is not needed by the platform but the user still specified the path
54493d81d64SSandrine Bailleux# to a BL3-0 image then warn him that it will be ignored.
54593d81d64SSandrine Bailleuxcheck_bl30:
54693d81d64SSandrine Bailleux	$(if ${BL30},$(warning "BL3-0 is not supported on platform ${PLAT}, it will just be ignored"),)
54793d81d64SSandrine Bailleuxendif
54893d81d64SSandrine Bailleux
54927713fb4SSoby Mathewifeq (${NEED_BL33},yes)
550*6f971622SJuan Castillo$(if ${BL33}, $(eval $(call MAKE_TOOL_ARGS,33,${BL33},in_fip,${CERTS},${CERTS},${BL33_KEY})))
55127713fb4SSoby Mathew
55227713fb4SSoby Mathew# If BL3-3 is needed by the platform then 'BL33' variable must be defined.
55327713fb4SSoby Mathewcheck_bl33:
5544bfc2d21SJon Medhurst	$(if ${BL33},,$(error "To build a FIP, please set BL33 to point to the Normal World binary, eg: BL33=../uefi/FVP_AARCH64_EFI.fd"))
55527713fb4SSoby Mathewelse
55627713fb4SSoby Mathew
55727713fb4SSoby Mathew# If BL3-3 is not needed by the platform but the user still specified the path
55827713fb4SSoby Mathew# to a BL3-3 image then warn him that it will be ignored.
55927713fb4SSoby Mathewcheck_bl33:
56027713fb4SSoby Mathew	$(if ${BL33},$(warning "BL3-3 is not supported on platform ${PLAT}, it will just be ignored"),)
56127713fb4SSoby Mathewendif
56227713fb4SSoby Mathew
563*6f971622SJuan Castillo# Add the dependency on the certificates
564*6f971622SJuan Castilloifneq (${GENERATE_COT},0)
565*6f971622SJuan Castillo    all: certificates
566*6f971622SJuan Castilloendif
567*6f971622SJuan Castillo
568*6f971622SJuan Castillocertificates: ${CRT_DEPS} ${CRTTOOL} check_bl30 check_bl33
569*6f971622SJuan Castillo			${Q}${CRTTOOL} ${CRT_ARGS}
570*6f971622SJuan Castillo			@echo
571*6f971622SJuan Castillo			@echo "Built $@ successfully"
572*6f971622SJuan Castillo			@echo "Certificates can be found in ${BUILD_PLAT}"
573*6f971622SJuan Castillo			@echo
57427713fb4SSoby Mathew
5757f48fab9SJuan Castillo${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL} check_bl30 check_bl33
576f58ad36fSHarry Liebel			${Q}${FIPTOOL} --dump \
577375f538aSAchin Gupta				${FIP_ARGS} \
578f58ad36fSHarry Liebel				$@
579f58ad36fSHarry Liebel			@echo
5802f2cef46SJeenu Viswambharan			@echo "Built $@ successfully"
5812f2cef46SJeenu Viswambharan			@echo
582f58ad36fSHarry Liebel
583f58ad36fSHarry Liebel
58435fab8c9SJoakim Bechcscope:
58535fab8c9SJoakim Bech	@echo "  CSCOPE"
58635fab8c9SJoakim Bech	${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
58735fab8c9SJoakim Bech	${Q}cscope -b -q -k
58835fab8c9SJoakim Bech
58972ee3314SRyan Harkinhelp:
59008c7ed0fSSandrine Bailleux	@echo "usage: ${MAKE} PLAT=<${HELP_PLATFORMS}> <all|bl1|bl2|bl31|distclean|clean|checkcodebase|checkpatch>"
59172ee3314SRyan Harkin	@echo ""
59272ee3314SRyan Harkin	@echo "PLAT is used to specify which platform you wish to build."
59308c7ed0fSSandrine Bailleux	@echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
59472ee3314SRyan Harkin	@echo ""
59572ee3314SRyan Harkin	@echo "Supported Targets:"
5968aa559c0SJeenu Viswambharan	@echo "  all            Build the BL1, BL2 and BL31 binaries"
59736eaaf37SIan Spray	@echo "  bl1            Build the BL1 binary"
5988aa559c0SJeenu Viswambharan	@echo "  bl2            Build the BL2 binary"
59936eaaf37SIan Spray	@echo "  bl31           Build the BL31 binary"
60036eaaf37SIan Spray	@echo "  checkcodebase  Check the coding style of the entire source tree"
60136eaaf37SIan Spray	@echo "  checkpatch     Check the coding style on changes in the current"
60236eaaf37SIan Spray	@echo "                 branch against BASE_COMMIT (default origin/master)"
60372ee3314SRyan Harkin	@echo "  clean          Clean the build for the selected platform"
60435fab8c9SJoakim Bech	@echo "  cscope         Generate cscope index"
60572ee3314SRyan Harkin	@echo "  distclean      Remove all build artifacts for all platforms"
606*6f971622SJuan Castillo	@echo "  certtool       Build the Certificate generation tool"
607f58ad36fSHarry Liebel	@echo "  fiptool        Build the Firmware Image Package(FIP) creation tool"
60872ee3314SRyan Harkin	@echo ""
60972ee3314SRyan Harkin	@echo "note: most build targets require PLAT to be set to a specific platform."
61072ee3314SRyan Harkin	@echo ""
61172ee3314SRyan Harkin	@echo "example: build all targets for the FVP platform:"
61272ee3314SRyan Harkin	@echo "  CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
613