14f6ad66aSAchin Gupta# 210bcd761SJeenu Viswambharan# Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved. 34f6ad66aSAchin Gupta# 482cb2c1aSdp-arm# SPDX-License-Identifier: BSD-3-Clause 54f6ad66aSAchin Gupta# 64f6ad66aSAchin Gupta 7e35c4045SJeenu Viswambharan# 8aaa3e722SJuan Castillo# Trusted Firmware Version 9aaa3e722SJuan Castillo# 10c6249aaaSDan HandleyVERSION_MAJOR := 1 11d4e748f3SDavid CunadoVERSION_MINOR := 3 12aaa3e722SJuan Castillo 1388154678SJuan Castillo# Default goal is build all images 1488154678SJuan Castillo.DEFAULT_GOAL := all 1588154678SJuan Castillo 1672fc70edSDouglas Raillard# Avoid any implicit propagation of command line variable definitions to 1772fc70edSDouglas Raillard# sub-Makefiles, like CFLAGS that we reserved for the firmware images' 1872fc70edSDouglas Raillard# usage. Other command line options like "-s" are still propagated as usual. 1972fc70edSDouglas RaillardMAKEOVERRIDES = 2072fc70edSDouglas Raillard 21231c1470SEvan LloydMAKE_HELPERS_DIRECTORY := make_helpers/ 22231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_macros.mk 23e7f54dbdSEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_env.mk 2473c99d4eSJuan Castillo 2573c99d4eSJuan Castillo################################################################################ 262fae4b1eSJeenu Viswambharan# Default values for build configurations, and their dependencies 2773c99d4eSJuan Castillo################################################################################ 28e35c4045SJeenu Viswambharan 29044bb2faSAntonio Nino Diazifdef ASM_ASSERTION 30044bb2faSAntonio Nino Diaz $(warning ASM_ASSERTION is removed, use ENABLE_ASSERTIONS instead.) 31044bb2faSAntonio Nino Diazendif 32044bb2faSAntonio Nino Diaz 332fae4b1eSJeenu Viswambharaninclude ${MAKE_HELPERS_DIRECTORY}defaults.mk 34872be88aSdp-arm 35cc8b5632SAntonio Nino Diaz# Assertions enabled for DEBUG builds by default 36cc8b5632SAntonio Nino DiazENABLE_ASSERTIONS := ${DEBUG} 372fae4b1eSJeenu ViswambharanENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION} 382fae4b1eSJeenu ViswambharanPLAT := ${DEFAULT_PLAT} 3973c99d4eSJuan Castillo 4073c99d4eSJuan Castillo################################################################################ 4173c99d4eSJuan Castillo# Checkpatch script options 4273c99d4eSJuan Castillo################################################################################ 4373c99d4eSJuan Castillo 44f607739cSSandrine BailleuxCHECKCODE_ARGS := --no-patch 45f0b489c1SDan Handley# Do not check the coding style on imported library files or documentation files 46f0b489c1SDan HandleyINC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \ 471a41e8c1SDan Handley include/lib/libfdt \ 48f0b489c1SDan Handley include/lib/stdlib, \ 49f0b489c1SDan Handley $(wildcard include/lib/*))) 50f0b489c1SDan HandleyINC_DIRS_TO_CHECK := $(sort $(filter-out \ 51f0b489c1SDan Handley include/lib, \ 52f0b489c1SDan Handley $(wildcard include/*))) 53f0b489c1SDan HandleyLIB_DIRS_TO_CHECK := $(sort $(filter-out \ 54d801fbb0Sdp-arm lib/compiler-rt \ 5555cdcf75SAntonio Nino Diaz lib/libfdt% \ 56f0b489c1SDan Handley lib/stdlib, \ 57f0b489c1SDan Handley $(wildcard lib/*))) 58f0b489c1SDan HandleyROOT_DIRS_TO_CHECK := $(sort $(filter-out \ 59f0b489c1SDan Handley lib \ 60f0b489c1SDan Handley include \ 61f0b489c1SDan Handley docs \ 62f0b489c1SDan Handley %.md, \ 63f0b489c1SDan Handley $(wildcard *))) 64f0b489c1SDan HandleyCHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \ 65f0b489c1SDan Handley ${INC_DIRS_TO_CHECK} \ 66f0b489c1SDan Handley ${INC_LIB_DIRS_TO_CHECK} \ 67f0b489c1SDan Handley ${LIB_DIRS_TO_CHECK} 6836eaaf37SIan Spray 6973c99d4eSJuan Castillo 7073c99d4eSJuan Castillo################################################################################ 7173c99d4eSJuan Castillo# Process build options 7273c99d4eSJuan Castillo################################################################################ 7373c99d4eSJuan Castillo 7473c99d4eSJuan Castillo# Verbose flag 75e35c4045SJeenu Viswambharanifeq (${V},0) 76b169f6a9SEvan Lloyd Q:=@ 7736eaaf37SIan Spray CHECKCODE_ARGS += --no-summary --terse 784f6ad66aSAchin Guptaelse 79b169f6a9SEvan Lloyd Q:= 804f6ad66aSAchin Guptaendif 812f2cef46SJeenu Viswambharanexport Q 822f2cef46SJeenu Viswambharan 8373c99d4eSJuan Castillo# Process Debug flag 8473c99d4eSJuan Castillo$(eval $(call add_define,DEBUG)) 85eaaeece2SJames Morrisseyifneq (${DEBUG}, 0) 86eaaeece2SJames Morrissey BUILD_TYPE := debug 87403973c9SSandrine Bailleux TF_CFLAGS += -g 8873c99d4eSJuan Castillo ASFLAGS += -g -Wa,--gdwarf-2 89289c28a8SDan Handley # Use LOG_LEVEL_INFO by default for debug builds 90289c28a8SDan Handley LOG_LEVEL := 40 91eaaeece2SJames Morrisseyelse 92eaaeece2SJames Morrissey BUILD_TYPE := release 9373c99d4eSJuan Castillo $(eval $(call add_define,NDEBUG)) 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},) 100bee71c7aSMasahiro Yamada BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null) 101aaa3e722SJuan Castilloendif 102aaa3e722SJuan CastilloVERSION_STRING := v${VERSION_MAJOR}.${VERSION_MINOR}(${BUILD_TYPE}):${BUILD_STRING} 103aaa3e722SJuan Castillo 10473c99d4eSJuan Castillo# The cert_create tool cannot generate certificates individually, so we use the 10573c99d4eSJuan Castillo# target 'certificates' to create them all 10673c99d4eSJuan Castilloifneq (${GENERATE_COT},0) 10773c99d4eSJuan Castillo FIP_DEPS += certificates 1080191262dSYatharth Kochar FWU_FIP_DEPS += fwu_certificates 10973c99d4eSJuan Castilloendif 11073c99d4eSJuan Castillo 11173c99d4eSJuan Castillo 11273c99d4eSJuan Castillo################################################################################ 11373c99d4eSJuan Castillo# Toolchain 11473c99d4eSJuan Castillo################################################################################ 11573c99d4eSJuan Castillo 11672610c41Sdp-armHOSTCC := gcc 11772610c41Sdp-armexport HOSTCC 11872610c41Sdp-arm 11973c99d4eSJuan CastilloCC := ${CROSS_COMPILE}gcc 12073c99d4eSJuan CastilloCPP := ${CROSS_COMPILE}cpp 12173c99d4eSJuan CastilloAS := ${CROSS_COMPILE}gcc 12273c99d4eSJuan CastilloAR := ${CROSS_COMPILE}ar 12373c99d4eSJuan CastilloLD := ${CROSS_COMPILE}ld 12473c99d4eSJuan CastilloOC := ${CROSS_COMPILE}objcopy 12573c99d4eSJuan CastilloOD := ${CROSS_COMPILE}objdump 12673c99d4eSJuan CastilloNM := ${CROSS_COMPILE}nm 12773c99d4eSJuan CastilloPP := ${CROSS_COMPILE}gcc -E 12873c99d4eSJuan Castillo 1297559633bSdp-armifeq ($(notdir $(CC)),armclang) 1307559633bSdp-armTF_CFLAGS_aarch32 = -target arm-arm-none-eabi -march=armv8-a 1317559633bSdp-armTF_CFLAGS_aarch64 = -target aarch64-arm-none-eabi -march=armv8-a 1327559633bSdp-armelse ifneq ($(findstring clang,$(notdir $(CC))),) 133d5461857Sdp-armTF_CFLAGS_aarch32 = -target armv8a-none-eabi 134d5461857Sdp-armTF_CFLAGS_aarch64 = -target aarch64-elf 135d5461857Sdp-armelse 136d5461857Sdp-armTF_CFLAGS_aarch32 = -march=armv8-a 137d5461857Sdp-armTF_CFLAGS_aarch64 = -march=armv8-a 138d5461857Sdp-armendif 139d5461857Sdp-arm 140d5461857Sdp-armTF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align 1419d29c227SSoby Mathew 1429d29c227SSoby MathewASFLAGS_aarch32 = -march=armv8-a 143d5461857Sdp-armASFLAGS_aarch64 = -march=armv8-a 1449d29c227SSoby Mathew 14559de5096SMasahiro YamadaCPPFLAGS = ${DEFINES} ${INCLUDES} -nostdinc \ 14659de5096SMasahiro Yamada -Wmissing-include-dirs -Werror 14759de5096SMasahiro YamadaASFLAGS += $(CPPFLAGS) $(ASFLAGS_$(ARCH)) \ 14859de5096SMasahiro Yamada -D__ASSEMBLY__ -ffreestanding \ 14959de5096SMasahiro Yamada -Wa,--fatal-warnings 15059de5096SMasahiro YamadaTF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \ 151344af656Sdp-arm -ffreestanding -fno-builtin -Wall -std=gnu99 \ 152344af656Sdp-arm -Os -ffunction-sections -fdata-sections 15373c99d4eSJuan Castillo 154*c2b8806fSDouglas RaillardTF_LDFLAGS += --fatal-warnings -O1 155*c2b8806fSDouglas RaillardTF_LDFLAGS += --gc-sections 156*c2b8806fSDouglas RaillardTF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) 15773c99d4eSJuan Castillo 15873c99d4eSJuan Castillo################################################################################ 15973c99d4eSJuan Castillo# Common sources and include directories 16073c99d4eSJuan Castillo################################################################################ 161d801fbb0Sdp-arminclude lib/compiler-rt/compiler-rt.mk 162f0b489c1SDan Handleyinclude lib/stdlib/stdlib.mk 16373c99d4eSJuan Castillo 16473c99d4eSJuan CastilloBL_COMMON_SOURCES += common/bl_common.c \ 165b79af934SSoby Mathew common/tf_printf.c \ 166da5241cbSAntonio Nino Diaz common/tf_snprintf.c \ 1679d29c227SSoby Mathew common/${ARCH}/debug.S \ 1689d29c227SSoby Mathew lib/${ARCH}/cache_helpers.S \ 1699d29c227SSoby Mathew lib/${ARCH}/misc_helpers.S \ 17075311203Sdp-arm plat/common/${ARCH}/plat_common.c \ 1719d29c227SSoby Mathew plat/common/${ARCH}/platform_helpers.S \ 172d801fbb0Sdp-arm ${COMPILER_RT_SRCS} \ 173f0b489c1SDan Handley ${STDLIB_SRCS} 174d7a6b0f8SRyan Harkin 17548bfb88eSYatharth KocharINCLUDES += -Iinclude/bl1 \ 17648bfb88eSYatharth Kochar -Iinclude/bl31 \ 1774ecca339SDan Handley -Iinclude/common \ 1789d29c227SSoby Mathew -Iinclude/common/${ARCH} \ 1794ecca339SDan Handley -Iinclude/drivers \ 1804ecca339SDan Handley -Iinclude/drivers/arm \ 1811779ba6bSJuan Castillo -Iinclude/drivers/auth \ 182935db693SDan Handley -Iinclude/drivers/io \ 183c13b2e32SVarun Wadekar -Iinclude/drivers/ti/uart \ 1844ecca339SDan Handley -Iinclude/lib \ 1859d29c227SSoby Mathew -Iinclude/lib/${ARCH} \ 18610bcd761SJeenu Viswambharan -Iinclude/lib/cpus \ 1879d29c227SSoby Mathew -Iinclude/lib/cpus/${ARCH} \ 188532ed618SSoby Mathew -Iinclude/lib/el3_runtime \ 1899d29c227SSoby Mathew -Iinclude/lib/el3_runtime/${ARCH} \ 190afdda571Sdp-arm -Iinclude/lib/pmf \ 191532ed618SSoby Mathew -Iinclude/lib/psci \ 1927bb01fb2SAntonio Nino Diaz -Iinclude/lib/xlat_tables \ 1935f0cdb05SDan Handley -Iinclude/plat/common \ 194532ed618SSoby Mathew -Iinclude/services \ 195375f538aSAchin Gupta ${PLAT_INCLUDES} \ 1962a6c1a8fSMasahiro Yamada ${SPD_INCLUDES} \ 1972a6c1a8fSMasahiro Yamada -Iinclude/tools_share 1984f6ad66aSAchin Gupta 19973c99d4eSJuan Castillo 20073c99d4eSJuan Castillo################################################################################ 20173c99d4eSJuan Castillo# Generic definitions 20273c99d4eSJuan Castillo################################################################################ 20373c99d4eSJuan Castillo 204231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk 205231c1470SEvan Lloyd 20673c99d4eSJuan CastilloBUILD_BASE := ./build 20773c99d4eSJuan CastilloBUILD_PLAT := ${BUILD_BASE}/${PLAT}/${BUILD_TYPE} 20873c99d4eSJuan Castillo 209231c1470SEvan LloydSPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*)))) 21073c99d4eSJuan Castillo 21173c99d4eSJuan Castillo# Platforms providing their own TBB makefile may override this value 21273c99d4eSJuan CastilloINCLUDE_TBBR_MK := 1 21373c99d4eSJuan Castillo 21473c99d4eSJuan Castillo 21573c99d4eSJuan Castillo################################################################################ 21673c99d4eSJuan Castillo# Include SPD Makefile if one has been specified 21773c99d4eSJuan Castillo################################################################################ 21873c99d4eSJuan Castillo 21973c99d4eSJuan Castilloifneq (${SPD},none) 2209d29c227SSoby Mathewifeq (${ARCH},aarch32) 2219d29c227SSoby Mathew $(error "Error: SPD is incompatible with AArch32.") 2229d29c227SSoby Mathewendif 2234c117f6cSSandrine Bailleuxifdef EL3_PAYLOAD_BASE 2244c117f6cSSandrine Bailleux $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.") 2254c117f6cSSandrine Bailleux $(warning "The SPD and its BL32 companion will be present but ignored.") 2264c117f6cSSandrine Bailleuxendif 22773c99d4eSJuan Castillo # We expect to locate an spd.mk under the specified SPD directory 228231c1470SEvan Lloyd SPD_MAKE := $(wildcard services/spd/${SPD}/${SPD}.mk) 22973c99d4eSJuan Castillo 23073c99d4eSJuan Castillo ifeq (${SPD_MAKE},) 23173c99d4eSJuan Castillo $(error Error: No services/spd/${SPD}/${SPD}.mk located) 23273c99d4eSJuan Castillo endif 23373c99d4eSJuan Castillo $(info Including ${SPD_MAKE}) 23473c99d4eSJuan Castillo include ${SPD_MAKE} 23573c99d4eSJuan Castillo 23670d1fc53SJuan Castillo # If there's BL32 companion for the chosen SPD, we expect that the SPD's 23770d1fc53SJuan Castillo # Makefile would set NEED_BL32 to "yes". In this case, the build system 23870d1fc53SJuan Castillo # supports two mutually exclusive options: 23970d1fc53SJuan Castillo # * BL32 is built from source: then BL32_SOURCES must contain the list 24070d1fc53SJuan Castillo # of source files to build BL32 24170d1fc53SJuan Castillo # * BL32 is a prebuilt binary: then BL32 must point to the image file 24270d1fc53SJuan Castillo # that will be included in the FIP 24370d1fc53SJuan Castillo # If both BL32_SOURCES and BL32 are defined, the binary takes precedence 24470d1fc53SJuan Castillo # over the sources. 245e35c4045SJeenu Viswambharanendif 246e35c4045SJeenu Viswambharan 24751faada7SDouglas Raillard################################################################################ 24851faada7SDouglas Raillard# Include libraries' Makefile that are used in all BL 24951faada7SDouglas Raillard################################################################################ 25051faada7SDouglas Raillard 25151faada7SDouglas Raillardinclude lib/stack_protector/stack_protector.mk 25251faada7SDouglas Raillard 253c04d2606SDan Handley 25473c99d4eSJuan Castillo################################################################################ 25573c99d4eSJuan Castillo# Include the platform specific Makefile after the SPD Makefile (the platform 25673c99d4eSJuan Castillo# makefile may use all previous definitions in this file) 25773c99d4eSJuan Castillo################################################################################ 2582da8d8bfSJeenu Viswambharan 25973c99d4eSJuan Castilloinclude ${PLAT_MAKEFILE_FULL} 2600f21c547SJuan Castillo 2619d29c227SSoby Mathew# Platform compatibility is not supported in AArch32 2629d29c227SSoby Mathewifneq (${ARCH},aarch32) 26393271a1eSAchin Gupta# If the platform has not defined ENABLE_PLAT_COMPAT, then enable it by default 26493271a1eSAchin Guptaifndef ENABLE_PLAT_COMPAT 26593271a1eSAchin GuptaENABLE_PLAT_COMPAT := 1 26693271a1eSAchin Guptaendif 26793271a1eSAchin Gupta 26893271a1eSAchin Gupta# Include the platform compatibility helpers for PSCI 26993271a1eSAchin Guptaifneq (${ENABLE_PLAT_COMPAT}, 0) 27093271a1eSAchin Guptainclude plat/compat/plat_compat.mk 27193271a1eSAchin Guptaendif 2729d29c227SSoby Mathewendif 27393271a1eSAchin Gupta 27454035fc4SSandrine Bailleux# Include the CPU specific operations makefile, which provides default 27554035fc4SSandrine Bailleux# values for all CPU errata workarounds and CPU specific optimisations. 27654035fc4SSandrine Bailleux# This can be overridden by the platform. 27773c99d4eSJuan Castilloinclude lib/cpus/cpu-ops.mk 2784f6ad66aSAchin Gupta 279a4409008Sdp-armifeq (${ARCH},aarch32) 280a4409008Sdp-armNEED_BL32 := yes 281a4409008Sdp-arm 282a4409008Sdp-arm################################################################################ 283a4409008Sdp-arm# Build `AARCH32_SP` as BL32 image for AArch32 284a4409008Sdp-arm################################################################################ 285a4409008Sdp-armifneq (${AARCH32_SP},none) 286a4409008Sdp-arm# We expect to locate an sp.mk under the specified AARCH32_SP directory 287a4409008Sdp-armAARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk) 288a4409008Sdp-arm 289a4409008Sdp-armifeq (${AARCH32_SP_MAKE},) 290a4409008Sdp-arm $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located) 291a4409008Sdp-armendif 292a4409008Sdp-arm 293a4409008Sdp-arm$(info Including ${AARCH32_SP_MAKE}) 294a4409008Sdp-arminclude ${AARCH32_SP_MAKE} 295a4409008Sdp-armendif 296a4409008Sdp-arm 297a4409008Sdp-armendif 2984f6ad66aSAchin Gupta 29973c99d4eSJuan Castillo################################################################################ 300cf2c8a33SAntonio Nino Diaz# Check incompatible options 301cf2c8a33SAntonio Nino Diaz################################################################################ 302cf2c8a33SAntonio Nino Diaz 303cf2c8a33SAntonio Nino Diazifdef EL3_PAYLOAD_BASE 30468450a6dSAntonio Nino Diaz ifdef PRELOADED_BL33_BASE 30568450a6dSAntonio Nino Diaz $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \ 30668450a6dSAntonio Nino Diaz incompatible build options. EL3_PAYLOAD_BASE has priority.") 307cf2c8a33SAntonio Nino Diaz endif 308cf2c8a33SAntonio Nino Diazendif 309cf2c8a33SAntonio Nino Diaz 310cf2c8a33SAntonio Nino Diazifeq (${NEED_BL33},yes) 311cf2c8a33SAntonio Nino Diaz ifdef EL3_PAYLOAD_BASE 312cf2c8a33SAntonio Nino Diaz $(warning "BL33 image is not needed when option \ 313cf2c8a33SAntonio Nino Diaz BL33_PAYLOAD_BASE is used and won't be added to the FIP file.") 314cf2c8a33SAntonio Nino Diaz endif 31568450a6dSAntonio Nino Diaz ifdef PRELOADED_BL33_BASE 31668450a6dSAntonio Nino Diaz $(warning "BL33 image is not needed when option \ 31768450a6dSAntonio Nino Diaz PRELOADED_BL33_BASE is used and won't be added to the FIP \ 31868450a6dSAntonio Nino Diaz file.") 319cf2c8a33SAntonio Nino Diaz endif 320cf2c8a33SAntonio Nino Diazendif 321cf2c8a33SAntonio Nino Diaz 32253d703a5SYatharth Kochar# For AArch32, LOAD_IMAGE_V2 must be enabled. 323a4409008Sdp-armifeq (${ARCH},aarch32) 3241a0a3f06SYatharth Kochar ifeq (${LOAD_IMAGE_V2}, 0) 3251a0a3f06SYatharth Kochar $(error "For AArch32, LOAD_IMAGE_V2 must be enabled.") 3261a0a3f06SYatharth Kochar endif 3271a0a3f06SYatharth Kocharendif 3281a0a3f06SYatharth Kochar 329d4593e47SJeenu Viswambharan# When building for systems with hardware-assisted coherency, there's no need to 330d4593e47SJeenu Viswambharan# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too. 331d4593e47SJeenu Viswambharanifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1) 332d4593e47SJeenu Viswambharan$(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY) 333d4593e47SJeenu Viswambharanendif 3341a0a3f06SYatharth Kochar 335cf2c8a33SAntonio Nino Diaz################################################################################ 33673c99d4eSJuan Castillo# Process platform overrideable behaviour 33773c99d4eSJuan Castillo################################################################################ 3384f6ad66aSAchin Gupta 3391645d3eeSSandrine Bailleux# Using the ARM Trusted Firmware BL2 implies that a BL33 image also needs to be 34073c99d4eSJuan Castillo# supplied for the FIP and Certificate generation tools. This flag can be 34173c99d4eSJuan Castillo# overridden by the platform. 34273c99d4eSJuan Castilloifdef BL2_SOURCES 343cf2c8a33SAntonio Nino Diaz ifdef EL3_PAYLOAD_BASE 344cf2c8a33SAntonio Nino Diaz # If booting an EL3 payload there is no need for a BL33 image 345cf2c8a33SAntonio Nino Diaz # in the FIP file. 3464c117f6cSSandrine Bailleux NEED_BL33 := no 347cf2c8a33SAntonio Nino Diaz else 34868450a6dSAntonio Nino Diaz ifdef PRELOADED_BL33_BASE 349cf2c8a33SAntonio Nino Diaz # If booting a BL33 preloaded image there is no need of 350cf2c8a33SAntonio Nino Diaz # another one in the FIP file. 351cf2c8a33SAntonio Nino Diaz NEED_BL33 := no 352cf2c8a33SAntonio Nino Diaz else 353cf2c8a33SAntonio Nino Diaz NEED_BL33 ?= yes 354cf2c8a33SAntonio Nino Diaz endif 3554c117f6cSSandrine Bailleux endif 35673c99d4eSJuan Castilloendif 3576f971622SJuan Castillo 3584d045d0eSMasahiro Yamada# If SCP_BL2 is given, we always want FIP to include it. 3594d045d0eSMasahiro Yamadaifdef SCP_BL2 3604d045d0eSMasahiro Yamada NEED_SCP_BL2 := yes 3614d045d0eSMasahiro Yamadaendif 3624d045d0eSMasahiro Yamada 36373c99d4eSJuan Castillo# Process TBB related flags 3646f971622SJuan Castilloifneq (${GENERATE_COT},0) 36573c99d4eSJuan Castillo # Common cert_create options 3666f971622SJuan Castillo ifneq (${CREATE_KEYS},0) 3676f971622SJuan Castillo $(eval CRT_ARGS += -n) 3680191262dSYatharth Kochar $(eval FWU_CRT_ARGS += -n) 369fd34e7baSJuan Castillo ifneq (${SAVE_KEYS},0) 370fd34e7baSJuan Castillo $(eval CRT_ARGS += -k) 3710191262dSYatharth Kochar $(eval FWU_CRT_ARGS += -k) 372fd34e7baSJuan Castillo endif 3736f971622SJuan Castillo endif 37473c99d4eSJuan Castillo # Include TBBR makefile (unless the platform indicates otherwise) 37573c99d4eSJuan Castillo ifeq (${INCLUDE_TBBR_MK},1) 37673c99d4eSJuan Castillo include make_helpers/tbbr/tbbr_tools.mk 37773c99d4eSJuan Castillo endif 3786f971622SJuan Castilloendif 3796f971622SJuan Castillo 3801c75d5dfSMasahiro Yamadaifneq (${FIP_ALIGN},0) 3811c75d5dfSMasahiro YamadaFIP_ARGS += --align ${FIP_ALIGN} 3821c75d5dfSMasahiro Yamadaendif 3831c75d5dfSMasahiro Yamada 38473c99d4eSJuan Castillo################################################################################ 385819281eeSdp-arm# Auxiliary tools (fiptool, cert_create, etc) 38673c99d4eSJuan Castillo################################################################################ 38773c99d4eSJuan Castillo 38873c99d4eSJuan Castillo# Variables for use with Certificate Generation Tool 38973c99d4eSJuan CastilloCRTTOOLPATH ?= tools/cert_create 39042a45b51SEvan LloydCRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT} 39173c99d4eSJuan Castillo 39273c99d4eSJuan Castillo# Variables for use with Firmware Image Package 393819281eeSdp-armFIPTOOLPATH ?= tools/fiptool 394819281eeSdp-armFIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT} 39573c99d4eSJuan Castillo 3968a86052dSSoby Mathew################################################################################ 3978a86052dSSoby Mathew# Include BL specific makefiles 3988a86052dSSoby Mathew################################################################################ 3998a86052dSSoby Mathewifdef BL1_SOURCES 4008a86052dSSoby MathewNEED_BL1 := yes 4018a86052dSSoby Mathewinclude bl1/bl1.mk 4028a86052dSSoby Mathewendif 4038a86052dSSoby Mathew 4048a86052dSSoby Mathewifdef BL2_SOURCES 4058a86052dSSoby MathewNEED_BL2 := yes 4068a86052dSSoby Mathewinclude bl2/bl2.mk 4078a86052dSSoby Mathewendif 4088a86052dSSoby Mathew 4098a86052dSSoby Mathewifdef BL2U_SOURCES 4108a86052dSSoby MathewNEED_BL2U := yes 4118a86052dSSoby Mathewinclude bl2u/bl2u.mk 4128a86052dSSoby Mathewendif 4138a86052dSSoby Mathew 4141bd61d0aSYatharth Kochar# For AArch32, BL31 is not currently supported. 4151bd61d0aSYatharth Kocharifneq (${ARCH},aarch32) 4168a86052dSSoby Mathewifdef BL31_SOURCES 4178a86052dSSoby Mathew# When booting an EL3 payload, there is no need to compile the BL31 image nor 4188a86052dSSoby Mathew# put it in the FIP. 4198a86052dSSoby Mathewifndef EL3_PAYLOAD_BASE 4208a86052dSSoby MathewNEED_BL31 := yes 4218a86052dSSoby Mathewinclude bl31/bl31.mk 4228a86052dSSoby Mathewendif 4238a86052dSSoby Mathewendif 4248a86052dSSoby Mathewendif 4258a86052dSSoby Mathew 42673c99d4eSJuan Castillo################################################################################ 42773c99d4eSJuan Castillo# Build options checks 42873c99d4eSJuan Castillo################################################################################ 42973c99d4eSJuan Castillo 430a9bec67dSSandrine Bailleux$(eval $(call assert_boolean,COLD_BOOT_SINGLE_CPU)) 4312fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,CREATE_KEYS)) 4322fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,CTX_INCLUDE_AARCH32_REGS)) 4332fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,CTX_INCLUDE_FPREGS)) 4342fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,DEBUG)) 4352fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,DISABLE_PEDANTIC)) 436cc8b5632SAntonio Nino Diaz$(eval $(call assert_boolean,ENABLE_ASSERTIONS)) 43793271a1eSAchin Gupta$(eval $(call assert_boolean,ENABLE_PLAT_COMPAT)) 438a31d8983SYatharth Kochar$(eval $(call assert_boolean,ENABLE_PMF)) 439170fb93dSYatharth Kochar$(eval $(call assert_boolean,ENABLE_PSCI_STAT)) 440872be88aSdp-arm$(eval $(call assert_boolean,ENABLE_RUNTIME_INSTRUMENTATION)) 4412fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,ERROR_DEPRECATED)) 4422fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,GENERATE_COT)) 4433c251af3SJeenu Viswambharan$(eval $(call assert_boolean,HW_ASSISTED_COHERENCY)) 4442fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,LOAD_IMAGE_V2)) 4452fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,NS_TIMER_SWITCH)) 4462fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,PL011_GENERIC_UART)) 4472fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,PROGRAMMABLE_RESET_ADDRESS)) 4482fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,PSCI_EXTENDED_STATE_ID)) 4492fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,RESET_TO_BL31)) 4502fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,SAVE_KEYS)) 4512fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,SEPARATE_CODE_AND_RODATA)) 4522fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,SPIN_ON_BL1_EXIT)) 4532fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,TRUSTED_BOARD_BOOT)) 4542fae4b1eSJeenu Viswambharan$(eval $(call assert_boolean,USE_COHERENT_MEM)) 455bb41eb7aSMasahiro Yamada$(eval $(call assert_boolean,USE_TBBR_DEFS)) 456bcc3c49cSSoby Mathew$(eval $(call assert_boolean,WARMBOOT_ENABLE_DCACHE_EARLY)) 457d832aee9Sdp-arm$(eval $(call assert_boolean,ENABLE_SPE_FOR_LOWER_ELS)) 45873c99d4eSJuan Castillo 459c877b414SJeenu Viswambharan$(eval $(call assert_numeric,ARM_ARCH_MAJOR)) 460c877b414SJeenu Viswambharan$(eval $(call assert_numeric,ARM_ARCH_MINOR)) 461c877b414SJeenu Viswambharan 46273c99d4eSJuan Castillo################################################################################ 46373c99d4eSJuan Castillo# Add definitions to the cpp preprocessor based on the current build options. 46473c99d4eSJuan Castillo# This is done after including the platform specific makefile to allow the 46573c99d4eSJuan Castillo# platform to overwrite the default options 46673c99d4eSJuan Castillo################################################################################ 46773c99d4eSJuan Castillo 46873c99d4eSJuan Castillo$(eval $(call add_define,ARM_CCI_PRODUCT_ID)) 469c877b414SJeenu Viswambharan$(eval $(call add_define,ARM_ARCH_MAJOR)) 470c877b414SJeenu Viswambharan$(eval $(call add_define,ARM_ARCH_MINOR)) 4712fae4b1eSJeenu Viswambharan$(eval $(call add_define,ARM_GIC_ARCH)) 472a9bec67dSSandrine Bailleux$(eval $(call add_define,COLD_BOOT_SINGLE_CPU)) 4732fae4b1eSJeenu Viswambharan$(eval $(call add_define,CTX_INCLUDE_AARCH32_REGS)) 4742fae4b1eSJeenu Viswambharan$(eval $(call add_define,CTX_INCLUDE_FPREGS)) 475cc8b5632SAntonio Nino Diaz$(eval $(call add_define,ENABLE_ASSERTIONS)) 47693271a1eSAchin Gupta$(eval $(call add_define,ENABLE_PLAT_COMPAT)) 477a31d8983SYatharth Kochar$(eval $(call add_define,ENABLE_PMF)) 478170fb93dSYatharth Kochar$(eval $(call add_define,ENABLE_PSCI_STAT)) 479872be88aSdp-arm$(eval $(call add_define,ENABLE_RUNTIME_INSTRUMENTATION)) 4802fae4b1eSJeenu Viswambharan$(eval $(call add_define,ERROR_DEPRECATED)) 4813c251af3SJeenu Viswambharan$(eval $(call add_define,HW_ASSISTED_COHERENCY)) 4822fae4b1eSJeenu Viswambharan$(eval $(call add_define,LOAD_IMAGE_V2)) 4832fae4b1eSJeenu Viswambharan$(eval $(call add_define,LOG_LEVEL)) 4842fae4b1eSJeenu Viswambharan$(eval $(call add_define,NS_TIMER_SWITCH)) 4852fae4b1eSJeenu Viswambharan$(eval $(call add_define,PL011_GENERIC_UART)) 4862fae4b1eSJeenu Viswambharan$(eval $(call add_define,PLAT_${PLAT})) 4872fae4b1eSJeenu Viswambharan$(eval $(call add_define,PROGRAMMABLE_RESET_ADDRESS)) 4882fae4b1eSJeenu Viswambharan$(eval $(call add_define,PSCI_EXTENDED_STATE_ID)) 4892fae4b1eSJeenu Viswambharan$(eval $(call add_define,RESET_TO_BL31)) 4902fae4b1eSJeenu Viswambharan$(eval $(call add_define,SEPARATE_CODE_AND_RODATA)) 4912fae4b1eSJeenu Viswambharan$(eval $(call add_define,SPD_${SPD})) 4922fae4b1eSJeenu Viswambharan$(eval $(call add_define,SPIN_ON_BL1_EXIT)) 4932fae4b1eSJeenu Viswambharan$(eval $(call add_define,TRUSTED_BOARD_BOOT)) 4942fae4b1eSJeenu Viswambharan$(eval $(call add_define,USE_COHERENT_MEM)) 495bb41eb7aSMasahiro Yamada$(eval $(call add_define,USE_TBBR_DEFS)) 496bcc3c49cSSoby Mathew$(eval $(call add_define,WARMBOOT_ENABLE_DCACHE_EARLY)) 497d832aee9Sdp-arm$(eval $(call add_define,ENABLE_SPE_FOR_LOWER_ELS)) 4982fae4b1eSJeenu Viswambharan 4994c117f6cSSandrine Bailleux# Define the EL3_PAYLOAD_BASE flag only if it is provided. 5004c117f6cSSandrine Bailleuxifdef EL3_PAYLOAD_BASE 5014c117f6cSSandrine Bailleux $(eval $(call add_define,EL3_PAYLOAD_BASE)) 502cf2c8a33SAntonio Nino Diazelse 50368450a6dSAntonio Nino Diaz # Define the PRELOADED_BL33_BASE flag only if it is provided and 50468450a6dSAntonio Nino Diaz # EL3_PAYLOAD_BASE is not defined, as it has priority. 50568450a6dSAntonio Nino Diaz ifdef PRELOADED_BL33_BASE 50668450a6dSAntonio Nino Diaz $(eval $(call add_define,PRELOADED_BL33_BASE)) 5074c117f6cSSandrine Bailleux endif 508cf2c8a33SAntonio Nino Diazendif 509031dbb12SSoby Mathew# Define the AARCH32/AARCH64 flag based on the ARCH flag 510031dbb12SSoby Mathewifeq (${ARCH},aarch32) 511031dbb12SSoby Mathew $(eval $(call add_define,AARCH32)) 512031dbb12SSoby Mathewelse 513031dbb12SSoby Mathew $(eval $(call add_define,AARCH64)) 514031dbb12SSoby Mathewendif 51573c99d4eSJuan Castillo 51673c99d4eSJuan Castillo################################################################################ 51773c99d4eSJuan Castillo# Build targets 51873c99d4eSJuan Castillo################################################################################ 51973c99d4eSJuan Castillo 5200191262dSYatharth Kochar.PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool fip fwu_fip certtool 52173c99d4eSJuan Castillo.SUFFIXES: 52273c99d4eSJuan Castillo 52373c99d4eSJuan Castilloall: msg_start 52473c99d4eSJuan Castillo 52573c99d4eSJuan Castillomsg_start: 52673c99d4eSJuan Castillo @echo "Building ${PLAT}" 52773c99d4eSJuan Castillo 5287a24cba5SSoby Mathew# Check if deprecated declarations should be treated as error or not. 5297a24cba5SSoby Mathewifeq (${ERROR_DEPRECATED},0) 530403973c9SSandrine Bailleux TF_CFLAGS += -Wno-error=deprecated-declarations 5317a24cba5SSoby Mathewendif 5327a24cba5SSoby Mathew 53373c99d4eSJuan Castillo# Expand build macros for the different images 53473c99d4eSJuan Castilloifeq (${NEED_BL1},yes) 53573c99d4eSJuan Castillo$(eval $(call MAKE_BL,1)) 53673c99d4eSJuan Castilloendif 53773c99d4eSJuan Castillo 53873c99d4eSJuan Castilloifeq (${NEED_BL2},yes) 5398f0617efSJuan Castillo$(if ${BL2}, $(eval $(call MAKE_TOOL_ARGS,2,${BL2},tb-fw)),\ 5408f0617efSJuan Castillo $(eval $(call MAKE_BL,2,tb-fw))) 54173c99d4eSJuan Castilloendif 54273c99d4eSJuan Castillo 5434d045d0eSMasahiro Yamadaifeq (${NEED_SCP_BL2},yes) 5444d045d0eSMasahiro Yamada$(eval $(call FIP_ADD_IMG,SCP_BL2,--scp-fw)) 5454d045d0eSMasahiro Yamadaendif 5464d045d0eSMasahiro Yamada 54773c99d4eSJuan Castilloifeq (${NEED_BL31},yes) 54873c99d4eSJuan CastilloBL31_SOURCES += ${SPD_SOURCES} 5498f0617efSJuan Castillo$(if ${BL31}, $(eval $(call MAKE_TOOL_ARGS,31,${BL31},soc-fw)),\ 5508f0617efSJuan Castillo $(eval $(call MAKE_BL,31,soc-fw))) 55173c99d4eSJuan Castilloendif 55273c99d4eSJuan Castillo 55370d1fc53SJuan Castillo# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the 55470d1fc53SJuan Castillo# build system will call FIP_ADD_IMG to print a warning message and abort the 55570d1fc53SJuan Castillo# process. Note that the dependency on BL32 applies to the FIP only. 55673c99d4eSJuan Castilloifeq (${NEED_BL32},yes) 5578f0617efSJuan Castillo$(if ${BL32}, $(eval $(call MAKE_TOOL_ARGS,32,${BL32},tos-fw)),\ 5588f0617efSJuan Castillo $(if ${BL32_SOURCES}, $(eval $(call MAKE_BL,32,tos-fw)),\ 5598f0617efSJuan Castillo $(eval $(call FIP_ADD_IMG,BL32,--tos-fw)))) 56073c99d4eSJuan Castilloendif 56173c99d4eSJuan Castillo 56273c99d4eSJuan Castillo# Add the BL33 image if required by the platform 56373c99d4eSJuan Castilloifeq (${NEED_BL33},yes) 5648f0617efSJuan Castillo$(eval $(call FIP_ADD_IMG,BL33,--nt-fw)) 565db6071c9SJuan Castilloendif 566db6071c9SJuan Castillo 5679003fa0bSYatharth Kocharifeq (${NEED_BL2U},yes) 5689003fa0bSYatharth KocharBL2U_PATH := $(if ${BL2U},${BL2U},$(call IMG_BIN,2u)) 5699003fa0bSYatharth Kochar$(if ${BL2U}, ,$(eval $(call MAKE_BL,2u))) 5708f0617efSJuan Castillo$(eval $(call FWU_FIP_ADD_PAYLOAD,${BL2U_PATH},--ap-fwu-cfg)) 5719003fa0bSYatharth Kocharendif 5729003fa0bSYatharth Kochar 57336eaaf37SIan Spraylocate-checkpatch: 57436eaaf37SIan Sprayifndef CHECKPATCH 57536eaaf37SIan Spray $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/script/checkpatch.pl") 57636eaaf37SIan Sprayelse 57736eaaf37SIan Sprayifeq (,$(wildcard ${CHECKPATCH})) 57836eaaf37SIan Spray $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/script/checkpatch.pl") 57936eaaf37SIan Sprayendif 58036eaaf37SIan Sprayendif 58136eaaf37SIan Spray 5824f6ad66aSAchin Guptaclean: 5834f6ad66aSAchin Gupta @echo " CLEAN" 584f1477d4aSEvan Lloyd $(call SHELL_REMOVE_DIR,${BUILD_PLAT}) 5852f2cef46SJeenu Viswambharan ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean 5866f971622SJuan Castillo ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean 5874f6ad66aSAchin Gupta 588eaaeece2SJames Morrisseyrealclean distclean: 589eaaeece2SJames Morrissey @echo " REALCLEAN" 590f1477d4aSEvan Lloyd $(call SHELL_REMOVE_DIR,${BUILD_BASE}) 591f1477d4aSEvan Lloyd $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*) 5922f2cef46SJeenu Viswambharan ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean 5936f971622SJuan Castillo ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean 5944f6ad66aSAchin Gupta 59536eaaf37SIan Spraycheckcodebase: locate-checkpatch 59636eaaf37SIan Spray @echo " CHECKING STYLE" 59736eaaf37SIan Spray @if test -d .git ; then \ 59855cdcf75SAntonio Nino Diaz git ls-files | grep -E -v 'libfdt|stdlib|docs|\.md' | \ 5991a41e8c1SDan Handley while read GIT_FILE ; \ 6001a41e8c1SDan Handley do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \ 6011a41e8c1SDan Handley done ; \ 60236eaaf37SIan Spray else \ 6031a41e8c1SDan Handley find . -type f -not -iwholename "*.git*" \ 6041a41e8c1SDan Handley -not -iwholename "*build*" \ 6051a41e8c1SDan Handley -not -iwholename "*libfdt*" \ 6061a41e8c1SDan Handley -not -iwholename "*stdlib*" \ 6071a41e8c1SDan Handley -not -iwholename "*docs*" \ 6081a41e8c1SDan Handley -not -iwholename "*.md" \ 6091a41e8c1SDan Handley -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \ 61036eaaf37SIan Spray fi 61136eaaf37SIan Spray 61236eaaf37SIan Spraycheckpatch: locate-checkpatch 61336eaaf37SIan Spray @echo " CHECKING STYLE" 614c626311eSAntonio Nino Diaz ${Q}git format-patch --stdout ${BASE_COMMIT}..HEAD -- ${CHECK_PATHS} | ${CHECKPATCH} - || true 61536eaaf37SIan Spray 61673c99d4eSJuan Castillocerttool: ${CRTTOOL} 61773c99d4eSJuan Castillo 6186f971622SJuan Castillo.PHONY: ${CRTTOOL} 6196f971622SJuan Castillo${CRTTOOL}: 620bb41eb7aSMasahiro Yamada ${Q}${MAKE} PLAT=${PLAT} USE_TBBR_DEFS=${USE_TBBR_DEFS} --no-print-directory -C ${CRTTOOLPATH} 621f1477d4aSEvan Lloyd @${ECHO_BLANK_LINE} 6226f971622SJuan Castillo @echo "Built $@ successfully" 623f1477d4aSEvan Lloyd @${ECHO_BLANK_LINE} 6246f971622SJuan Castillo 6256f971622SJuan Castilloifneq (${GENERATE_COT},0) 62673c99d4eSJuan Castillocertificates: ${CRT_DEPS} ${CRTTOOL} 6276f971622SJuan Castillo ${Q}${CRTTOOL} ${CRT_ARGS} 628f1477d4aSEvan Lloyd @${ECHO_BLANK_LINE} 6296f971622SJuan Castillo @echo "Built $@ successfully" 6306f971622SJuan Castillo @echo "Certificates can be found in ${BUILD_PLAT}" 631f1477d4aSEvan Lloyd @${ECHO_BLANK_LINE} 63273c99d4eSJuan Castilloendif 63327713fb4SSoby Mathew 63473c99d4eSJuan Castillo${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL} 635819281eeSdp-arm ${Q}${FIPTOOL} create ${FIP_ARGS} $@ 636819281eeSdp-arm ${Q}${FIPTOOL} info $@ 637f1477d4aSEvan Lloyd @${ECHO_BLANK_LINE} 6382f2cef46SJeenu Viswambharan @echo "Built $@ successfully" 639f1477d4aSEvan Lloyd @${ECHO_BLANK_LINE} 640f58ad36fSHarry Liebel 6410191262dSYatharth Kocharifneq (${GENERATE_COT},0) 6420191262dSYatharth Kocharfwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL} 6430191262dSYatharth Kochar ${Q}${CRTTOOL} ${FWU_CRT_ARGS} 644052ab529SEvan Lloyd @${ECHO_BLANK_LINE} 6450191262dSYatharth Kochar @echo "Built $@ successfully" 6460191262dSYatharth Kochar @echo "FWU certificates can be found in ${BUILD_PLAT}" 647052ab529SEvan Lloyd @${ECHO_BLANK_LINE} 6480191262dSYatharth Kocharendif 6490191262dSYatharth Kochar 6500191262dSYatharth Kochar${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL} 651819281eeSdp-arm ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@ 652819281eeSdp-arm ${Q}${FIPTOOL} info $@ 653052ab529SEvan Lloyd @${ECHO_BLANK_LINE} 6540191262dSYatharth Kochar @echo "Built $@ successfully" 655052ab529SEvan Lloyd @${ECHO_BLANK_LINE} 6560191262dSYatharth Kochar 65773c99d4eSJuan Castillofiptool: ${FIPTOOL} 65873c99d4eSJuan Castillofip: ${BUILD_PLAT}/${FIP_NAME} 6590191262dSYatharth Kocharfwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME} 66073c99d4eSJuan Castillo 66173c99d4eSJuan Castillo.PHONY: ${FIPTOOL} 66273c99d4eSJuan Castillo${FIPTOOL}: 663819281eeSdp-arm ${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" --no-print-directory -C ${FIPTOOLPATH} 664f58ad36fSHarry Liebel 66535fab8c9SJoakim Bechcscope: 66635fab8c9SJoakim Bech @echo " CSCOPE" 66735fab8c9SJoakim Bech ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files 66835fab8c9SJoakim Bech ${Q}cscope -b -q -k 66935fab8c9SJoakim Bech 67072ee3314SRyan Harkinhelp: 671231c1470SEvan Lloyd @echo "usage: ${MAKE} PLAT=<${PLATFORM_LIST}> [OPTIONS] [TARGET]" 67272ee3314SRyan Harkin @echo "" 67372ee3314SRyan Harkin @echo "PLAT is used to specify which platform you wish to build." 67408c7ed0fSSandrine Bailleux @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}" 67572ee3314SRyan Harkin @echo "" 6761b578596SSandrine Bailleux @echo "Please refer to the User Guide for a list of all supported options." 6771b578596SSandrine Bailleux @echo "Note that the build system doesn't track dependencies for build " 6781b578596SSandrine Bailleux @echo "options. Therefore, if any of the build options are changed " 6791b578596SSandrine Bailleux @echo "from a previous build, a clean build must be performed." 6801b578596SSandrine Bailleux @echo "" 68172ee3314SRyan Harkin @echo "Supported Targets:" 6821b578596SSandrine Bailleux @echo " all Build all individual bootloader binaries" 68336eaaf37SIan Spray @echo " bl1 Build the BL1 binary" 6848aa559c0SJeenu Viswambharan @echo " bl2 Build the BL2 binary" 6859003fa0bSYatharth Kochar @echo " bl2u Build the BL2U binary" 686d178637dSJuan Castillo @echo " bl31 Build the BL31 binary" 6879d29c227SSoby Mathew @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then " 6889d29c227SSoby Mathew @echo " this builds secure payload specified by AARCH32_SP" 68973c99d4eSJuan Castillo @echo " certificates Build the certificates (requires 'GENERATE_COT=1')" 6901b578596SSandrine Bailleux @echo " fip Build the Firmware Image Package (FIP)" 6910191262dSYatharth Kochar @echo " fwu_fip Build the FWU Firmware Image Package (FIP)" 69236eaaf37SIan Spray @echo " checkcodebase Check the coding style of the entire source tree" 69336eaaf37SIan Spray @echo " checkpatch Check the coding style on changes in the current" 69436eaaf37SIan Spray @echo " branch against BASE_COMMIT (default origin/master)" 69572ee3314SRyan Harkin @echo " clean Clean the build for the selected platform" 69635fab8c9SJoakim Bech @echo " cscope Generate cscope index" 69772ee3314SRyan Harkin @echo " distclean Remove all build artifacts for all platforms" 6986f971622SJuan Castillo @echo " certtool Build the Certificate generation tool" 699f58ad36fSHarry Liebel @echo " fiptool Build the Firmware Image Package (FIP) creation tool" 70072ee3314SRyan Harkin @echo "" 7011b578596SSandrine Bailleux @echo "Note: most build targets require PLAT to be set to a specific platform." 70272ee3314SRyan Harkin @echo "" 70372ee3314SRyan Harkin @echo "example: build all targets for the FVP platform:" 70472ee3314SRyan Harkin @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all" 705