14f6ad66aSAchin Gupta# 2c04d2606SDan Handley# Copyright (c) 2013-2015, 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 35130ed88dSAchin GuptaVERSION_MINOR := 1 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 platform 46e35c4045SJeenu ViswambharanDEFAULT_PLAT := fvp 47e35c4045SJeenu ViswambharanPLAT := ${DEFAULT_PLAT} 48e35c4045SJeenu Viswambharan# SPD choice 49e35c4045SJeenu ViswambharanSPD := none 50e35c4045SJeenu Viswambharan# Base commit to perform code check on 51e35c4045SJeenu ViswambharanBASE_COMMIT := origin/master 522da8d8bfSJeenu Viswambharan# NS timer register save and restore 532da8d8bfSJeenu ViswambharanNS_TIMER_SWITCH := 0 54dbad1bacSVikram Kanigiri# By default, Bl1 acts as the reset handler, not BL31 55dbad1bacSVikram KanigiriRESET_TO_BL31 := 0 560f21c547SJuan Castillo# Include FP registers in cpu context 570f21c547SJuan CastilloCTX_INCLUDE_FPREGS := 0 582b98e789SSandrine Bailleux# Determine the version of ARM GIC architecture to use for interrupt management 592b98e789SSandrine Bailleux# in EL3. The platform port can change this value if needed. 602b98e789SSandrine BailleuxARM_GIC_ARCH := 2 6123e47edeSVikram Kanigiri# Determine the version of ARM CCI product used in the platform. The platform 6223e47edeSVikram Kanigiri# port can change this value if needed. 6323e47edeSVikram KanigiriARM_CCI_PRODUCT_ID := 400 64bc920128SSoby Mathew# Flag used to indicate if ASM_ASSERTION should be enabled for the build. 65bc920128SSoby Mathew# This defaults to being present in DEBUG builds only. 66bc920128SSoby MathewASM_ASSERTION := ${DEBUG} 678c5fe0b5SSoby Mathew# Build option to choose whether Trusted firmware uses Coherent memory or not. 688c5fe0b5SSoby MathewUSE_COHERENT_MEM := 1 697f48fab9SJuan Castillo# Default FIP file name 707f48fab9SJuan CastilloFIP_NAME := fip.bin 71db6071c9SJuan Castillo# By default, use the -pedantic option in the gcc command line 72db6071c9SJuan CastilloDISABLE_PEDANTIC := 0 736f971622SJuan Castillo# Flags to generate the Chain of Trust 746f971622SJuan CastilloGENERATE_COT := 0 756f971622SJuan CastilloCREATE_KEYS := 1 76fd34e7baSJuan CastilloSAVE_KEYS := 0 776eadf762SJuan Castillo# Flags to build TF with Trusted Boot support 786eadf762SJuan CastilloTRUSTED_BOARD_BOOT := 0 79bf031bbaSSandrine Bailleux# By default, consider that the platform's reset address is not programmable. 80bf031bbaSSandrine Bailleux# The platform Makefile is free to override this value. 81bf031bbaSSandrine BailleuxPROGRAMMABLE_RESET_ADDRESS := 0 824f6ad66aSAchin Gupta 837421b465SAchin Gupta# Checkpatch ignores 849b4ee6b3SJuan CastilloCHECK_IGNORE = --ignore COMPLEX_MACRO \ 859b4ee6b3SJuan Castillo --ignore GERRIT_CHANGE_ID \ 869b4ee6b3SJuan Castillo --ignore GIT_COMMIT_ID 877421b465SAchin Gupta 887421b465SAchin GuptaCHECKPATCH_ARGS = --no-tree --no-signoff ${CHECK_IGNORE} 897421b465SAchin GuptaCHECKCODE_ARGS = --no-patch --no-tree --no-signoff ${CHECK_IGNORE} 9095d5353cSSandrine Bailleux# Do not check the coding style on C library files 91662109a5SSandrine BailleuxCHECK_PATHS = $(shell ls -I include -I lib) \ 92662109a5SSandrine Bailleux $(addprefix include/,$(shell ls -I stdlib include)) \ 93662109a5SSandrine Bailleux $(addprefix lib/,$(shell ls -I stdlib lib)) 9436eaaf37SIan Spray 95e35c4045SJeenu Viswambharanifeq (${V},0) 964f6ad66aSAchin Gupta Q=@ 9736eaaf37SIan Spray CHECKCODE_ARGS += --no-summary --terse 984f6ad66aSAchin Guptaelse 994f6ad66aSAchin Gupta Q= 1004f6ad66aSAchin Guptaendif 1012f2cef46SJeenu Viswambharanexport Q 1022f2cef46SJeenu Viswambharan 103eaaeece2SJames Morrisseyifneq (${DEBUG}, 0) 104eaaeece2SJames Morrissey BUILD_TYPE := debug 105289c28a8SDan Handley # Use LOG_LEVEL_INFO by default for debug builds 106289c28a8SDan Handley LOG_LEVEL := 40 107eaaeece2SJames Morrisseyelse 108eaaeece2SJames Morrissey BUILD_TYPE := release 109289c28a8SDan Handley # Use LOG_LEVEL_NOTICE by default for release builds 110289c28a8SDan Handley LOG_LEVEL := 20 111eaaeece2SJames Morrisseyendif 112eaaeece2SJames Morrissey 113aaa3e722SJuan Castillo# Default build string (git branch and commit) 114aaa3e722SJuan Castilloifeq (${BUILD_STRING},) 115aaa3e722SJuan Castillo BUILD_STRING := $(shell git log -n 1 --pretty=format:"%h") 116aaa3e722SJuan Castilloendif 117aaa3e722SJuan Castillo 118aaa3e722SJuan CastilloVERSION_STRING := v${VERSION_MAJOR}.${VERSION_MINOR}(${BUILD_TYPE}):${BUILD_STRING} 119aaa3e722SJuan Castillo 120bee82417SDan HandleyBL_COMMON_SOURCES := common/bl_common.c \ 121b79af934SSoby Mathew common/tf_printf.c \ 122626ed510SSoby Mathew common/aarch64/debug.S \ 123bee82417SDan Handley lib/aarch64/cache_helpers.S \ 124bee82417SDan Handley lib/aarch64/misc_helpers.S \ 125bee82417SDan Handley lib/aarch64/xlat_helpers.c \ 126bee82417SDan Handley lib/stdlib/std.c \ 127bee82417SDan Handley plat/common/aarch64/platform_helpers.S 128d7a6b0f8SRyan Harkin 129eaaeece2SJames MorrisseyBUILD_BASE := ./build 13025cff83eSRyan HarkinBUILD_PLAT := ${BUILD_BASE}/${PLAT}/${BUILD_TYPE} 1314f6ad66aSAchin Gupta 132c04d2606SDan HandleyPLAT_MAKEFILE := platform.mk 133c04d2606SDan Handley# Generate the platforms list by recursively searching for all directories 134c04d2606SDan Handley# under /plat containing a PLAT_MAKEFILE. Append each platform with a `|` 135c04d2606SDan Handley# char and strip out the final '|'. 136c04d2606SDan HandleyPLATFORMS := $(shell find plat/ -name '${PLAT_MAKEFILE}' -print0 | \ 137c04d2606SDan Handley sed -r 's%[^\x00]*\/([^/]*)\/${PLAT_MAKEFILE}\x00%\1|%g' | \ 138c04d2606SDan Handley sed -r 's/\|$$//') 139375f538aSAchin GuptaSPDS := $(shell ls -I none services/spd) 14072ee3314SRyan Harkin 141289e0dadSJeenu Viswambharan# Convenience function for adding build definitions 142289e0dadSJeenu Viswambharan# $(eval $(call add_define,FOO)) will have: 143289e0dadSJeenu Viswambharan# -DFOO if $(FOO) is empty; -DFOO=$(FOO) otherwise 144289e0dadSJeenu Viswambharandefine add_define 145289e0dadSJeenu ViswambharanDEFINES += -D$(1)$(if $(value $(1)),=$(value $(1)),) 146289e0dadSJeenu Viswambharanendef 147289e0dadSJeenu Viswambharan 148289e0dadSJeenu Viswambharan# Convenience function for verifying option has a boolean value 149289e0dadSJeenu Viswambharan# $(eval $(call assert_boolean,FOO)) will assert FOO is 0 or 1 150289e0dadSJeenu Viswambharandefine assert_boolean 151289e0dadSJeenu Viswambharan$(and $(patsubst 0,,$(value $(1))),$(patsubst 1,,$(value $(1))),$(error $(1) must be boolean)) 152289e0dadSJeenu Viswambharanendef 153289e0dadSJeenu Viswambharan 15425cff83eSRyan Harkinifeq (${PLAT},) 155c04d2606SDan Handley $(error "Error: Unknown platform. Please use PLAT=<platform name> to specify the platform") 15625cff83eSRyan Harkinendif 157c04d2606SDan HandleyPLAT_MAKEFILE_FULL := $(shell find plat/ -wholename '*/${PLAT}/${PLAT_MAKEFILE}') 158c04d2606SDan Handleyifeq ($(PLAT_MAKEFILE_FULL),) 15925cff83eSRyan Harkin $(error "Error: Invalid platform. The following platforms are available: ${PLATFORMS}") 16025cff83eSRyan Harkinendif 1614f6ad66aSAchin Gupta 1624bfc2d21SJon Medhurstall: msg_start 16325cff83eSRyan Harkin 16425cff83eSRyan Harkinmsg_start: 16525cff83eSRyan Harkin @echo "Building ${PLAT}" 16625cff83eSRyan Harkin 167c04d2606SDan Handleyinclude ${PLAT_MAKEFILE_FULL} 1684bfc2d21SJon Medhurst 1695541bb3fSSoby Mathew# Include the CPU specific operations makefile. By default all CPU errata 1705541bb3fSSoby Mathew# workarounds and CPU specifc optimisations are disabled. This can be 171d9bdaf2dSSoby Mathew# overridden by the platform. 1725541bb3fSSoby Mathewinclude lib/cpus/cpu-ops.mk 173d9bdaf2dSSoby Mathew 1744bfc2d21SJon Medhurstifdef BL1_SOURCES 1754bfc2d21SJon MedhurstNEED_BL1 := yes 1764f6ad66aSAchin Guptainclude bl1/bl1.mk 1774bfc2d21SJon Medhurstendif 1784bfc2d21SJon Medhurst 1794bfc2d21SJon Medhurstifdef BL2_SOURCES 1804bfc2d21SJon MedhurstNEED_BL2 := yes 1814f6ad66aSAchin Guptainclude bl2/bl2.mk 18227713fb4SSoby Mathew# Using the ARM Trusted Firmware BL2 implies that a BL3-3 image also need to be supplied for the FIP. 18327713fb4SSoby Mathew# This flag can be overridden by the platform. 18427713fb4SSoby MathewNEED_BL33 ?= yes 1854bfc2d21SJon Medhurstendif 1864bfc2d21SJon Medhurst 1874bfc2d21SJon Medhurstifdef BL31_SOURCES 1884bfc2d21SJon MedhurstNEED_BL31 := yes 1894f6ad66aSAchin Guptainclude bl31/bl31.mk 19025cff83eSRyan Harkinendif 1914f6ad66aSAchin Gupta 192375f538aSAchin Gupta# Include SPD Makefile if one has been specified 193375f538aSAchin Guptaifneq (${SPD},none) 194375f538aSAchin Gupta # We expect to locate an spd.mk under the specified SPD directory 195375f538aSAchin Gupta SPD_MAKE := $(shell m="services/spd/${SPD}/${SPD}.mk"; [ -f "$$m" ] && echo "$$m") 196375f538aSAchin Gupta 197375f538aSAchin Gupta ifeq (${SPD_MAKE},) 198375f538aSAchin Gupta $(error Error: No services/spd/${SPD}/${SPD}.mk located) 199375f538aSAchin Gupta endif 200375f538aSAchin Gupta $(info Including ${SPD_MAKE}) 201375f538aSAchin Gupta include ${SPD_MAKE} 202375f538aSAchin Gupta 20327713fb4SSoby Mathew # If there's BL3-2 companion for the chosen SPD, and the SPD wants to build the 20427713fb4SSoby Mathew # BL3-2 from source, we expect that the SPD's Makefile would set NEED_BL32 20527713fb4SSoby Mathew # variable to "yes". In case the BL3-2 is a binary which needs to be included in 20627713fb4SSoby Mathew # fip, then the NEED_BL32 needs to be set and BL3-2 would need to point to the bin. 207375f538aSAchin Guptaendif 208375f538aSAchin Gupta 2096f971622SJuan Castillo.PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool fip certtool 210eaaeece2SJames Morrissey.SUFFIXES: 211eaaeece2SJames Morrissey 212a0df63efSSandrine BailleuxINCLUDES += -Iinclude/bl31 \ 2134ecca339SDan Handley -Iinclude/bl31/services \ 2144ecca339SDan Handley -Iinclude/common \ 2154ecca339SDan Handley -Iinclude/drivers \ 2164ecca339SDan Handley -Iinclude/drivers/arm \ 217*1779ba6bSJuan Castillo -Iinclude/drivers/auth \ 218935db693SDan Handley -Iinclude/drivers/io \ 219c13b2e32SVarun Wadekar -Iinclude/drivers/ti/uart \ 2204ecca339SDan Handley -Iinclude/lib \ 2214ecca339SDan Handley -Iinclude/lib/aarch64 \ 222add40351SSoby Mathew -Iinclude/lib/cpus/aarch64 \ 2235f0cdb05SDan Handley -Iinclude/plat/common \ 224d7a6b0f8SRyan Harkin -Iinclude/stdlib \ 225d7a6b0f8SRyan Harkin -Iinclude/stdlib/sys \ 226375f538aSAchin Gupta ${PLAT_INCLUDES} \ 227375f538aSAchin Gupta ${SPD_INCLUDES} 2284f6ad66aSAchin Gupta 229e35c4045SJeenu Viswambharan# Process DEBUG flag 230e35c4045SJeenu Viswambharan$(eval $(call assert_boolean,DEBUG)) 231e35c4045SJeenu Viswambharan$(eval $(call add_define,DEBUG)) 232e35c4045SJeenu Viswambharanifeq (${DEBUG},0) 233e35c4045SJeenu Viswambharan $(eval $(call add_define,NDEBUG)) 234e35c4045SJeenu Viswambharanelse 235e35c4045SJeenu ViswambharanCFLAGS += -g 236e35c4045SJeenu ViswambharanASFLAGS += -g -Wa,--gdwarf-2 237e35c4045SJeenu Viswambharanendif 238e35c4045SJeenu Viswambharan 239c04d2606SDan Handley# Process PLAT flag 240c04d2606SDan Handley$(eval $(call add_define,PLAT_${PLAT})) 241c04d2606SDan Handley 2422da8d8bfSJeenu Viswambharan# Process NS_TIMER_SWITCH flag 2432da8d8bfSJeenu Viswambharan$(eval $(call assert_boolean,NS_TIMER_SWITCH)) 2442da8d8bfSJeenu Viswambharan$(eval $(call add_define,NS_TIMER_SWITCH)) 2452da8d8bfSJeenu Viswambharan 246dbad1bacSVikram Kanigiri# Process RESET_TO_BL31 flag 247dbad1bacSVikram Kanigiri$(eval $(call assert_boolean,RESET_TO_BL31)) 248dbad1bacSVikram Kanigiri$(eval $(call add_define,RESET_TO_BL31)) 249dbad1bacSVikram Kanigiri 2500f21c547SJuan Castillo# Process CTX_INCLUDE_FPREGS flag 2510f21c547SJuan Castillo$(eval $(call assert_boolean,CTX_INCLUDE_FPREGS)) 2520f21c547SJuan Castillo$(eval $(call add_define,CTX_INCLUDE_FPREGS)) 2530f21c547SJuan Castillo 2542b98e789SSandrine Bailleux# Process ARM_GIC_ARCH flag 2552b98e789SSandrine Bailleux$(eval $(call add_define,ARM_GIC_ARCH)) 2562b98e789SSandrine Bailleux 25723e47edeSVikram Kanigiri# Process ARM_CCI_PRODUCT_ID flag 25823e47edeSVikram Kanigiri$(eval $(call add_define,ARM_CCI_PRODUCT_ID)) 25923e47edeSVikram Kanigiri 260bc920128SSoby Mathew# Process ASM_ASSERTION flag 261bc920128SSoby Mathew$(eval $(call assert_boolean,ASM_ASSERTION)) 262bc920128SSoby Mathew$(eval $(call add_define,ASM_ASSERTION)) 2632b98e789SSandrine Bailleux 264289c28a8SDan Handley# Process LOG_LEVEL flag 265289c28a8SDan Handley$(eval $(call add_define,LOG_LEVEL)) 266289c28a8SDan Handley 2678c5fe0b5SSoby Mathew# Process USE_COHERENT_MEM flag 2688c5fe0b5SSoby Mathew$(eval $(call assert_boolean,USE_COHERENT_MEM)) 2698c5fe0b5SSoby Mathew$(eval $(call add_define,USE_COHERENT_MEM)) 2708c5fe0b5SSoby Mathew 2716f971622SJuan Castillo# Process Generate CoT flags 2726f971622SJuan Castillo$(eval $(call assert_boolean,GENERATE_COT)) 2736f971622SJuan Castillo$(eval $(call assert_boolean,CREATE_KEYS)) 274fd34e7baSJuan Castillo$(eval $(call assert_boolean,SAVE_KEYS)) 2756f971622SJuan Castillo 2766eadf762SJuan Castillo# Process TRUSTED_BOARD_BOOT flag 2776eadf762SJuan Castillo$(eval $(call assert_boolean,TRUSTED_BOARD_BOOT)) 2786eadf762SJuan Castillo$(eval $(call add_define,TRUSTED_BOARD_BOOT)) 2796eadf762SJuan Castillo 280bf031bbaSSandrine Bailleux# Process PROGRAMMABLE_RESET_ADDRESS flag 281bf031bbaSSandrine Bailleux$(eval $(call assert_boolean,PROGRAMMABLE_RESET_ADDRESS)) 282bf031bbaSSandrine Bailleux$(eval $(call add_define,PROGRAMMABLE_RESET_ADDRESS)) 283bf031bbaSSandrine Bailleux 2840af6d64dSHarry LiebelASFLAGS += -nostdinc -ffreestanding -Wa,--fatal-warnings \ 285a0df63efSSandrine Bailleux -Werror -Wmissing-include-dirs \ 286e35c4045SJeenu Viswambharan -mgeneral-regs-only -D__ASSEMBLY__ \ 287e35c4045SJeenu Viswambharan ${DEFINES} ${INCLUDES} 288db6071c9SJuan CastilloCFLAGS += -nostdinc -ffreestanding -Wall \ 289a0df63efSSandrine Bailleux -Werror -Wmissing-include-dirs \ 290a0df63efSSandrine Bailleux -mgeneral-regs-only -std=c99 -c -Os \ 291e35c4045SJeenu Viswambharan ${DEFINES} ${INCLUDES} 292dccc537aSAndrew ThoelkeCFLAGS += -ffunction-sections -fdata-sections 2934f6ad66aSAchin Gupta 2943e850a84SSandrine BailleuxLDFLAGS += --fatal-warnings -O1 295dccc537aSAndrew ThoelkeLDFLAGS += --gc-sections 2964f6ad66aSAchin Gupta 2974f6ad66aSAchin Gupta 298eaaeece2SJames MorrisseyCC := ${CROSS_COMPILE}gcc 299eaaeece2SJames MorrisseyCPP := ${CROSS_COMPILE}cpp 300eaaeece2SJames MorrisseyAS := ${CROSS_COMPILE}gcc 301eaaeece2SJames MorrisseyAR := ${CROSS_COMPILE}ar 302eaaeece2SJames MorrisseyLD := ${CROSS_COMPILE}ld 303eaaeece2SJames MorrisseyOC := ${CROSS_COMPILE}objcopy 304eaaeece2SJames MorrisseyOD := ${CROSS_COMPILE}objdump 305eaaeece2SJames MorrisseyNM := ${CROSS_COMPILE}nm 306eaaeece2SJames MorrisseyPP := ${CROSS_COMPILE}gcc -E ${CFLAGS} 3074f6ad66aSAchin Gupta 308f58ad36fSHarry Liebel# Variables for use with Firmware Image Package 309f58ad36fSHarry LiebelFIPTOOLPATH ?= tools/fip_create 310f58ad36fSHarry LiebelFIPTOOL ?= ${FIPTOOLPATH}/fip_create 311f58ad36fSHarry Liebelfiptool: ${FIPTOOL} 3127f48fab9SJuan Castillofip: ${BUILD_PLAT}/${FIP_NAME} 313f58ad36fSHarry Liebel 3146f971622SJuan Castillo# Variables for use with Certificate Generation Tool 3156f971622SJuan CastilloCRTTOOLPATH ?= tools/cert_create 3166f971622SJuan CastilloCRTTOOL ?= ${CRTTOOLPATH}/cert_create 3176f971622SJuan Castillocerttool: ${CRTTOOL} 3186f971622SJuan Castillo 3196f971622SJuan Castillo# CoT generation tool default parameters 3206f971622SJuan CastilloTRUSTED_KEY_CERT := ${BUILD_PLAT}/trusted_key.crt 3216f971622SJuan Castillo 3226f971622SJuan Castillo# Pass the private keys to the CoT generation tool in the command line 3236f971622SJuan Castillo# If CREATE_KEYS is set, the '-n' option will be added, indicating the tool to create new keys 3246f971622SJuan Castilloifneq (${GENERATE_COT},0) 3256f971622SJuan Castillo $(eval CERTS := yes) 3266f971622SJuan Castillo 327b7124ea7SJuan Castillo $(eval FIP_DEPS += certificates) 328b7124ea7SJuan Castillo $(eval FIP_ARGS += --trusted-key-cert ${TRUSTED_KEY_CERT}) 329b7124ea7SJuan Castillo 3306f971622SJuan Castillo ifneq (${CREATE_KEYS},0) 3316f971622SJuan Castillo $(eval CRT_ARGS += -n) 332fd34e7baSJuan Castillo ifneq (${SAVE_KEYS},0) 333fd34e7baSJuan Castillo $(eval CRT_ARGS += -k) 334fd34e7baSJuan Castillo endif 3356f971622SJuan Castillo endif 3366f971622SJuan Castillo $(eval CRT_ARGS += $(if ${ROT_KEY}, --rot-key ${ROT_KEY})) 3376f971622SJuan Castillo $(eval CRT_ARGS += $(if ${TRUSTED_WORLD_KEY}, --trusted-world-key ${TRUSTED_WORLD_KEY})) 3386f971622SJuan Castillo $(eval CRT_ARGS += $(if ${NON_TRUSTED_WORLD_KEY}, --non-trusted-world-key ${NON_TRUSTED_WORLD_KEY})) 3396f971622SJuan Castillo $(eval CRT_ARGS += --trusted-key-cert ${TRUSTED_KEY_CERT}) 340ccbf890eSJuan Castillo $(eval CRT_ARGS += $(if ${KEY_ALG}, --key-alg ${KEY_ALG})) 3416f971622SJuan Castilloendif 3426f971622SJuan Castillo 343db6071c9SJuan Castillo# Check if -pedantic option should be used 344db6071c9SJuan Castilloifeq (${DISABLE_PEDANTIC},0) 345db6071c9SJuan Castillo CFLAGS += -pedantic 346db6071c9SJuan Castilloendif 347db6071c9SJuan Castillo 34836eaaf37SIan Spraylocate-checkpatch: 34936eaaf37SIan Sprayifndef CHECKPATCH 35036eaaf37SIan Spray $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/script/checkpatch.pl") 35136eaaf37SIan Sprayelse 35236eaaf37SIan Sprayifeq (,$(wildcard ${CHECKPATCH})) 35336eaaf37SIan Spray $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/script/checkpatch.pl") 35436eaaf37SIan Sprayendif 35536eaaf37SIan Sprayendif 35636eaaf37SIan Spray 3574f6ad66aSAchin Guptaclean: 3584f6ad66aSAchin Gupta @echo " CLEAN" 35925cff83eSRyan Harkin ${Q}rm -rf ${BUILD_PLAT} 3602f2cef46SJeenu Viswambharan ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean 3616f971622SJuan Castillo ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean 3624f6ad66aSAchin Gupta 363eaaeece2SJames Morrisseyrealclean distclean: 364eaaeece2SJames Morrissey @echo " REALCLEAN" 365eaaeece2SJames Morrissey ${Q}rm -rf ${BUILD_BASE} 36635fab8c9SJoakim Bech ${Q}rm -f ${CURDIR}/cscope.* 3672f2cef46SJeenu Viswambharan ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean 3686f971622SJuan Castillo ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean 3694f6ad66aSAchin Gupta 37036eaaf37SIan Spraycheckcodebase: locate-checkpatch 37136eaaf37SIan Spray @echo " CHECKING STYLE" 37236eaaf37SIan Spray @if test -d .git ; then \ 3734f2104ffSJuan Castillo git ls-files | grep -v stdlib | while read GIT_FILE ; do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; done ; \ 37436eaaf37SIan Spray else \ 3754f2104ffSJuan Castillo find . -type f -not -iwholename "*.git*" -not -iwholename "*build*" -not -iwholename "*stdlib*" -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \ 37636eaaf37SIan Spray fi 37736eaaf37SIan Spray 37836eaaf37SIan Spraycheckpatch: locate-checkpatch 37936eaaf37SIan Spray @echo " CHECKING STYLE" 380662109a5SSandrine Bailleux ${Q}git log -p ${BASE_COMMIT}..HEAD -- ${CHECK_PATHS} | ${CHECKPATCH} ${CHECKPATCH_ARGS} - || true 38136eaaf37SIan Spray 3826f971622SJuan Castillo.PHONY: ${CRTTOOL} 3836f971622SJuan Castillo${CRTTOOL}: 3846f971622SJuan Castillo ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} 3856f971622SJuan Castillo @echo 3866f971622SJuan Castillo @echo "Built $@ successfully" 3876f971622SJuan Castillo @echo 3886f971622SJuan Castillo 38907deed40SSandrine Bailleux.PHONY: ${FIPTOOL} 390f58ad36fSHarry Liebel${FIPTOOL}: 3912f2cef46SJeenu Viswambharan ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} 392f58ad36fSHarry Liebel 3936d55d109SJon Medhurstdefine match_goals 3946d55d109SJon Medhurst$(strip $(foreach goal,$(1),$(filter $(goal),$(MAKECMDGOALS)))) 3956d55d109SJon Medhurstendef 396eaaeece2SJames Morrissey 3978d2296f3SSandrine Bailleux# List of rules that involve building things 3988d2296f3SSandrine BailleuxBUILD_TARGETS := all bl1 bl2 bl31 bl32 fip 399eaaeece2SJames Morrissey 4008d2296f3SSandrine Bailleux# Does the list of goals specified on the command line include a build target? 4018d2296f3SSandrine Bailleuxifneq ($(call match_goals,${BUILD_TARGETS}),) 4028d2296f3SSandrine BailleuxIS_ANYTHING_TO_BUILD := 1 4038d2296f3SSandrine Bailleuxendif 4044f6ad66aSAchin Gupta 4056d55d109SJon Medhurstdefine MAKE_C 406eaaeece2SJames Morrissey 4076d55d109SJon Medhurst$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2)))) 4086d55d109SJon Medhurst$(eval PREREQUISITES := $(patsubst %.o,%.d,$(OBJ))) 409eaaeece2SJames Morrissey 4106d55d109SJon Medhurst$(OBJ) : $(2) 4116d55d109SJon Medhurst @echo " CC $$<" 41227905d0aSSoby Mathew $$(Q)$$(CC) $$(CFLAGS) -DIMAGE_BL$(3) -c $$< -o $$@ 413eaaeece2SJames Morrissey 4146d55d109SJon Medhurst 4156d55d109SJon Medhurst$(PREREQUISITES) : $(2) 4166d55d109SJon Medhurst @echo " DEPS $$@" 4176d55d109SJon Medhurst @mkdir -p $(1) 4186d55d109SJon Medhurst $$(Q)$$(CC) $$(CFLAGS) -M -MT $(OBJ) -MF $$@ $$< 4196d55d109SJon Medhurst 4208d2296f3SSandrine Bailleuxifdef IS_ANYTHING_TO_BUILD 4216d55d109SJon Medhurst-include $(PREREQUISITES) 4226d55d109SJon Medhurstendif 4236d55d109SJon Medhurst 4246d55d109SJon Medhurstendef 4256d55d109SJon Medhurst 4266d55d109SJon Medhurst 4276d55d109SJon Medhurstdefine MAKE_S 4286d55d109SJon Medhurst 4296d55d109SJon Medhurst$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2)))) 4306d55d109SJon Medhurst$(eval PREREQUISITES := $(patsubst %.o,%.d,$(OBJ))) 4316d55d109SJon Medhurst 4326d55d109SJon Medhurst$(OBJ) : $(2) 4336d55d109SJon Medhurst @echo " AS $$<" 43427905d0aSSoby Mathew $$(Q)$$(AS) $$(ASFLAGS) -DIMAGE_BL$(3) -c $$< -o $$@ 4356d55d109SJon Medhurst 4366d55d109SJon Medhurst$(PREREQUISITES) : $(2) 4376d55d109SJon Medhurst @echo " DEPS $$@" 4386d55d109SJon Medhurst @mkdir -p $(1) 4396d55d109SJon Medhurst $$(Q)$$(AS) $$(ASFLAGS) -M -MT $(OBJ) -MF $$@ $$< 4406d55d109SJon Medhurst 4418d2296f3SSandrine Bailleuxifdef IS_ANYTHING_TO_BUILD 4426d55d109SJon Medhurst-include $(PREREQUISITES) 4436d55d109SJon Medhurstendif 4446d55d109SJon Medhurst 4456d55d109SJon Medhurstendef 4466d55d109SJon Medhurst 4476d55d109SJon Medhurst 4486d55d109SJon Medhurstdefine MAKE_LD 4496d55d109SJon Medhurst 4506d55d109SJon Medhurst$(eval PREREQUISITES := $(1).d) 4516d55d109SJon Medhurst 4526d55d109SJon Medhurst$(1) : $(2) 4536d55d109SJon Medhurst @echo " PP $$<" 454513dd3a0SJuan Castillo $$(Q)$$(AS) $$(ASFLAGS) -P -E -D__LINKER__ -o $$@ $$< 4556d55d109SJon Medhurst 4566d55d109SJon Medhurst$(PREREQUISITES) : $(2) 4576d55d109SJon Medhurst @echo " DEPS $$@" 4586d55d109SJon Medhurst @mkdir -p $$(dir $$@) 4596d55d109SJon Medhurst $$(Q)$$(AS) $$(ASFLAGS) -M -MT $(1) -MF $$@ $$< 4606d55d109SJon Medhurst 4618d2296f3SSandrine Bailleuxifdef IS_ANYTHING_TO_BUILD 4626d55d109SJon Medhurst-include $(PREREQUISITES) 4636d55d109SJon Medhurstendif 4646d55d109SJon Medhurst 4656d55d109SJon Medhurstendef 4666d55d109SJon Medhurst 4676d55d109SJon Medhurst 4686d55d109SJon Medhurstdefine MAKE_OBJS 4696d55d109SJon Medhurst $(eval C_OBJS := $(filter %.c,$(2))) 4706d55d109SJon Medhurst $(eval REMAIN := $(filter-out %.c,$(2))) 47127905d0aSSoby Mathew $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj),$(3)))) 4726d55d109SJon Medhurst 4736d55d109SJon Medhurst $(eval S_OBJS := $(filter %.S,$(REMAIN))) 4746d55d109SJon Medhurst $(eval REMAIN := $(filter-out %.S,$(REMAIN))) 47527905d0aSSoby Mathew $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj),$(3)))) 4766d55d109SJon Medhurst 4776d55d109SJon Medhurst $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN))) 4786d55d109SJon Medhurstendef 4796d55d109SJon Medhurst 4806d55d109SJon Medhurst 4816d55d109SJon Medhurst# NOTE: The line continuation '\' is required in the next define otherwise we 4826d55d109SJon Medhurst# end up with a line-feed characer at the end of the last c filename. 4836d55d109SJon Medhurst# Also bare this issue in mind if extending the list of supported filetypes. 4846d55d109SJon Medhurstdefine SOURCES_TO_OBJS 4856d55d109SJon Medhurst $(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \ 4866d55d109SJon Medhurst $(notdir $(patsubst %.S,%.o,$(filter %.S,$(1)))) 4876d55d109SJon Medhurstendef 4886d55d109SJon Medhurst 4896f971622SJuan Castillo 4906f971622SJuan Castillo# MAKE_TOOL_ARGS macro defines the command line arguments for the FIP and CRT 4916f971622SJuan Castillo# tools at each BL stage. Arguments: 4926f971622SJuan Castillo# $(1) = BL stage (2, 30, 31, 32, 33) 4936f971622SJuan Castillo# $(2) = Binary file 4946f971622SJuan Castillo# $(3) = In FIP (false if empty) 4956f971622SJuan Castillo# $(4) = Create certificates (false if empty) 4966f971622SJuan Castillo# $(5) = Create key certificate (false if empty) 4976f971622SJuan Castillo# $(6) = Private key (optional) 4986f971622SJuan Castillodefine MAKE_TOOL_ARGS 4996f971622SJuan Castillo 5006f971622SJuan Castillo$(eval FIP_DEPS += $(if $3,$(2),)) 5016f971622SJuan Castillo$(eval FIP_ARGS += $(if $3,--bl$(1) $(2),)) 502b7124ea7SJuan Castillo$(eval FIP_ARGS += $(if $4,--bl$(1)-cert $(BUILD_PLAT)/bl$(1).crt)) 503b7124ea7SJuan Castillo$(eval FIP_ARGS += $(if $4,$(if $5,--bl$(1)-key-cert $(BUILD_PLAT)/bl$(1)_key.crt))) 5046f971622SJuan Castillo 5056f971622SJuan Castillo$(eval CRT_DEPS += $(if $4,$(2),)) 5066f971622SJuan Castillo$(eval CRT_ARGS += $(if $4,--bl$(1) $(2))) 5076f971622SJuan Castillo$(eval CRT_ARGS += $(if $4,$(if $6,--bl$(1)-key $(6)))) 5086f971622SJuan Castillo$(eval CRT_ARGS += $(if $4,--bl$(1)-cert $(BUILD_PLAT)/bl$(1).crt)) 5096f971622SJuan Castillo$(eval CRT_ARGS += $(if $4,$(if $5,--bl$(1)-key-cert $(BUILD_PLAT)/bl$(1)_key.crt))) 5106f971622SJuan Castillo 5116f971622SJuan Castilloendef 5126f971622SJuan Castillo 5136f971622SJuan Castillo 5146f971622SJuan Castillo# MAKE_BL macro defines the targets and options to build each BL image. 5156f971622SJuan Castillo# Arguments: 5166f971622SJuan Castillo# $(1) = BL stage (2, 30, 31, 32, 33) 5176f971622SJuan Castillo# $(2) = In FIP (false if empty) 5186f971622SJuan Castillo# $(3) = Create certificates (false if empty) 5196f971622SJuan Castillo# $(4) = Create key certificate (false if empty) 5206f971622SJuan Castillo# $(5) = Private key (optional) 5216d55d109SJon Medhurstdefine MAKE_BL 5226d55d109SJon Medhurst $(eval BUILD_DIR := ${BUILD_PLAT}/bl$(1)) 5236d55d109SJon Medhurst $(eval SOURCES := $(BL$(1)_SOURCES) $(BL_COMMON_SOURCES) $(PLAT_BL_COMMON_SOURCES)) 5246d55d109SJon Medhurst $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES)))) 5256d55d109SJon Medhurst $(eval LINKERFILE := $(BUILD_DIR)/bl$(1).ld) 5266d55d109SJon Medhurst $(eval MAPFILE := $(BUILD_DIR)/bl$(1).map) 5276d55d109SJon Medhurst $(eval ELF := $(BUILD_DIR)/bl$(1).elf) 5286d55d109SJon Medhurst $(eval DUMP := $(BUILD_DIR)/bl$(1).dump) 5296d55d109SJon Medhurst $(eval BIN := $(BUILD_PLAT)/bl$(1).bin) 5306d55d109SJon Medhurst 53127905d0aSSoby Mathew $(eval $(call MAKE_OBJS,$(BUILD_DIR),$(SOURCES),$(1))) 5326d55d109SJon Medhurst $(eval $(call MAKE_LD,$(LINKERFILE),$(BL$(1)_LINKERFILE))) 5336d55d109SJon Medhurst 5346d55d109SJon Medhurst$(BUILD_DIR) : 5356d55d109SJon Medhurst $$(Q)mkdir -p "$$@" 5366d55d109SJon Medhurst 5376d55d109SJon Medhurst$(ELF) : $(OBJS) $(LINKERFILE) 5386d55d109SJon Medhurst @echo " LD $$@" 539aaa3e722SJuan Castillo @echo 'const char build_message[] = "Built : "__TIME__", "__DATE__; \ 540aaa3e722SJuan Castillo const char version_string[] = "${VERSION_STRING}";' | \ 541fb052462SJon Medhurst $$(CC) $$(CFLAGS) -xc - -o $(BUILD_DIR)/build_message.o 5426d55d109SJon Medhurst $$(Q)$$(LD) -o $$@ $$(LDFLAGS) -Map=$(MAPFILE) --script $(LINKERFILE) \ 5439f98aa1aSJeenu Viswambharan $(BUILD_DIR)/build_message.o $(OBJS) 5446d55d109SJon Medhurst 5456d55d109SJon Medhurst$(DUMP) : $(ELF) 5466d55d109SJon Medhurst @echo " OD $$@" 5476d55d109SJon Medhurst $${Q}$${OD} -dx $$< > $$@ 5486d55d109SJon Medhurst 5496d55d109SJon Medhurst$(BIN) : $(ELF) 5506d55d109SJon Medhurst @echo " BIN $$@" 5516d55d109SJon Medhurst $$(Q)$$(OC) -O binary $$< $$@ 552eaaeece2SJames Morrissey @echo 5536d55d109SJon Medhurst @echo "Built $$@ successfully" 5544f6ad66aSAchin Gupta @echo 5554f6ad66aSAchin Gupta 5566d55d109SJon Medhurst.PHONY : bl$(1) 5576d55d109SJon Medhurstbl$(1) : $(BUILD_DIR) $(BIN) $(DUMP) 5584f6ad66aSAchin Gupta 5596d55d109SJon Medhurstall : bl$(1) 5606d55d109SJon Medhurst 5616f971622SJuan Castillo$(eval $(call MAKE_TOOL_ARGS,$(1),$(BIN),$(2),$(3),$(4),$(5))) 5626d55d109SJon Medhurst 5636d55d109SJon Medhurstendef 5646d55d109SJon Medhurst 5656d55d109SJon Medhurst 5664bfc2d21SJon Medhurstifeq (${NEED_BL1},yes) 5676d55d109SJon Medhurst$(eval $(call MAKE_BL,1)) 5684bfc2d21SJon Medhurstendif 5696d55d109SJon Medhurst 5704bfc2d21SJon Medhurstifeq (${NEED_BL2},yes) 5716f971622SJuan Castillo$(if ${BL2}, $(eval $(call MAKE_TOOL_ARGS,2,${BL2},in_fip,${CERTS})),\ 5726f971622SJuan Castillo $(eval $(call MAKE_BL,2,in_fip,${CERTS}))) 5734bfc2d21SJon Medhurstendif 5746d55d109SJon Medhurst 5754bfc2d21SJon Medhurstifeq (${NEED_BL31},yes) 5766d55d109SJon MedhurstBL31_SOURCES += ${SPD_SOURCES} 5776f971622SJuan Castillo$(if ${BL31}, $(eval $(call MAKE_TOOL_ARGS,31,${BL31},in_fip,${CERTS},${CERTS},${BL31_KEY})),\ 5786f971622SJuan Castillo $(eval $(call MAKE_BL,31,in_fip,${CERTS},${CERTS},${BL31_KEY}))) 5794bfc2d21SJon Medhurstendif 5806d55d109SJon Medhurst 5816d55d109SJon Medhurstifeq (${NEED_BL32},yes) 5826f971622SJuan Castillo$(if ${BL32}, $(eval $(call MAKE_TOOL_ARGS,32,${BL32},in_fip,${CERTS},${CERTS},${BL32_KEY})),\ 5836f971622SJuan Castillo $(eval $(call MAKE_BL,32,in_fip,${CERTS},${CERTS},${BL32_KEY}))) 5846d55d109SJon Medhurstendif 58572ee3314SRyan Harkin 58693d81d64SSandrine Bailleuxifeq (${NEED_BL30},yes) 5876f971622SJuan Castillo$(if ${BL30}, $(eval $(call MAKE_TOOL_ARGS,30,${BL30},in_fip,${CERTS},${CERTS},${BL30_KEY}))) 58893d81d64SSandrine Bailleux 58993d81d64SSandrine Bailleux# If BL3-0 is needed by the platform then 'BL30' variable must be defined. 59093d81d64SSandrine Bailleuxcheck_bl30: 59193d81d64SSandrine Bailleux $(if ${BL30},,$(error "To build a FIP for platform ${PLAT}, please set BL30 to point to the SCP firmware")) 59293d81d64SSandrine Bailleuxelse 59327713fb4SSoby Mathew 59493d81d64SSandrine Bailleux# If BL3-0 is not needed by the platform but the user still specified the path 59593d81d64SSandrine Bailleux# to a BL3-0 image then warn him that it will be ignored. 59693d81d64SSandrine Bailleuxcheck_bl30: 59793d81d64SSandrine Bailleux $(if ${BL30},$(warning "BL3-0 is not supported on platform ${PLAT}, it will just be ignored"),) 59893d81d64SSandrine Bailleuxendif 59993d81d64SSandrine Bailleux 60027713fb4SSoby Mathewifeq (${NEED_BL33},yes) 6016f971622SJuan Castillo$(if ${BL33}, $(eval $(call MAKE_TOOL_ARGS,33,${BL33},in_fip,${CERTS},${CERTS},${BL33_KEY}))) 60227713fb4SSoby Mathew 60327713fb4SSoby Mathew# If BL3-3 is needed by the platform then 'BL33' variable must be defined. 60427713fb4SSoby Mathewcheck_bl33: 6054bfc2d21SJon 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")) 60627713fb4SSoby Mathewelse 60727713fb4SSoby Mathew 60827713fb4SSoby Mathew# If BL3-3 is not needed by the platform but the user still specified the path 60927713fb4SSoby Mathew# to a BL3-3 image then warn him that it will be ignored. 61027713fb4SSoby Mathewcheck_bl33: 61127713fb4SSoby Mathew $(if ${BL33},$(warning "BL3-3 is not supported on platform ${PLAT}, it will just be ignored"),) 61227713fb4SSoby Mathewendif 61327713fb4SSoby Mathew 6146f971622SJuan Castillo# Add the dependency on the certificates 6156f971622SJuan Castilloifneq (${GENERATE_COT},0) 61685cdfdb2SJuan Castillo fip: certificates 6176f971622SJuan Castilloendif 6186f971622SJuan Castillo 6196f971622SJuan Castillocertificates: ${CRT_DEPS} ${CRTTOOL} check_bl30 check_bl33 6206f971622SJuan Castillo ${Q}${CRTTOOL} ${CRT_ARGS} 6216f971622SJuan Castillo @echo 6226f971622SJuan Castillo @echo "Built $@ successfully" 6236f971622SJuan Castillo @echo "Certificates can be found in ${BUILD_PLAT}" 6246f971622SJuan Castillo @echo 62527713fb4SSoby Mathew 6267f48fab9SJuan Castillo${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL} check_bl30 check_bl33 627f58ad36fSHarry Liebel ${Q}${FIPTOOL} --dump \ 628375f538aSAchin Gupta ${FIP_ARGS} \ 629f58ad36fSHarry Liebel $@ 630f58ad36fSHarry Liebel @echo 6312f2cef46SJeenu Viswambharan @echo "Built $@ successfully" 6322f2cef46SJeenu Viswambharan @echo 633f58ad36fSHarry Liebel 634f58ad36fSHarry Liebel 63535fab8c9SJoakim Bechcscope: 63635fab8c9SJoakim Bech @echo " CSCOPE" 63735fab8c9SJoakim Bech ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files 63835fab8c9SJoakim Bech ${Q}cscope -b -q -k 63935fab8c9SJoakim Bech 64072ee3314SRyan Harkinhelp: 641c04d2606SDan Handley @echo "usage: ${MAKE} PLAT=<${PLATFORMS}> [OPTIONS] [TARGET]" 64272ee3314SRyan Harkin @echo "" 64372ee3314SRyan Harkin @echo "PLAT is used to specify which platform you wish to build." 64408c7ed0fSSandrine Bailleux @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}" 64572ee3314SRyan Harkin @echo "" 6461b578596SSandrine Bailleux @echo "Please refer to the User Guide for a list of all supported options." 6471b578596SSandrine Bailleux @echo "Note that the build system doesn't track dependencies for build " 6481b578596SSandrine Bailleux @echo "options. Therefore, if any of the build options are changed " 6491b578596SSandrine Bailleux @echo "from a previous build, a clean build must be performed." 6501b578596SSandrine Bailleux @echo "" 65172ee3314SRyan Harkin @echo "Supported Targets:" 6521b578596SSandrine Bailleux @echo " all Build all individual bootloader binaries" 65336eaaf37SIan Spray @echo " bl1 Build the BL1 binary" 6548aa559c0SJeenu Viswambharan @echo " bl2 Build the BL2 binary" 6551b578596SSandrine Bailleux @echo " bl31 Build the BL3-1 binary" 6561b578596SSandrine Bailleux @echo " bl32 Build the BL3-2 binary" 6571b578596SSandrine Bailleux @echo " fip Build the Firmware Image Package (FIP)" 65836eaaf37SIan Spray @echo " checkcodebase Check the coding style of the entire source tree" 65936eaaf37SIan Spray @echo " checkpatch Check the coding style on changes in the current" 66036eaaf37SIan Spray @echo " branch against BASE_COMMIT (default origin/master)" 66172ee3314SRyan Harkin @echo " clean Clean the build for the selected platform" 66235fab8c9SJoakim Bech @echo " cscope Generate cscope index" 66372ee3314SRyan Harkin @echo " distclean Remove all build artifacts for all platforms" 6646f971622SJuan Castillo @echo " certtool Build the Certificate generation tool" 665f58ad36fSHarry Liebel @echo " fiptool Build the Firmware Image Package(FIP) creation tool" 66672ee3314SRyan Harkin @echo "" 6671b578596SSandrine Bailleux @echo "Note: most build targets require PLAT to be set to a specific platform." 66872ee3314SRyan Harkin @echo "" 66972ee3314SRyan Harkin @echo "example: build all targets for the FVP platform:" 67072ee3314SRyan Harkin @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all" 671