1# 2# Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved. 3# 4# Redistribution and use in source and binary forms, with or without 5# modification, are permitted provided that the following conditions are met: 6# 7# Redistributions of source code must retain the above copyright notice, this 8# list of conditions and the following disclaimer. 9# 10# Redistributions in binary form must reproduce the above copyright notice, 11# this list of conditions and the following disclaimer in the documentation 12# and/or other materials provided with the distribution. 13# 14# Neither the name of ARM nor the names of its contributors may be used 15# to endorse or promote products derived from this software without specific 16# prior written permission. 17# 18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 19# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 22# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28# POSSIBILITY OF SUCH DAMAGE. 29# 30 31# 32# Trusted Firmware Version 33# 34VERSION_MAJOR := 1 35VERSION_MINOR := 3 36 37# Default goal is build all images 38.DEFAULT_GOAL := all 39 40# Avoid any implicit propagation of command line variable definitions to 41# sub-Makefiles, like CFLAGS that we reserved for the firmware images' 42# usage. Other command line options like "-s" are still propagated as usual. 43MAKEOVERRIDES = 44 45MAKE_HELPERS_DIRECTORY := make_helpers/ 46include ${MAKE_HELPERS_DIRECTORY}build_macros.mk 47include ${MAKE_HELPERS_DIRECTORY}build_env.mk 48 49################################################################################ 50# Default values for build configurations, and their dependencies 51################################################################################ 52 53ifdef ASM_ASSERTION 54 $(warning ASM_ASSERTION is removed, use ENABLE_ASSERTIONS instead.) 55endif 56 57include ${MAKE_HELPERS_DIRECTORY}defaults.mk 58 59# Assertions enabled for DEBUG builds by default 60ENABLE_ASSERTIONS := ${DEBUG} 61ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION} 62PLAT := ${DEFAULT_PLAT} 63 64################################################################################ 65# Checkpatch script options 66################################################################################ 67 68CHECKCODE_ARGS := --no-patch 69# Do not check the coding style on imported library files or documentation files 70INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \ 71 include/lib/libfdt \ 72 include/lib/stdlib, \ 73 $(wildcard include/lib/*))) 74INC_DIRS_TO_CHECK := $(sort $(filter-out \ 75 include/lib, \ 76 $(wildcard include/*))) 77LIB_DIRS_TO_CHECK := $(sort $(filter-out \ 78 lib/libfdt% \ 79 lib/stdlib, \ 80 $(wildcard lib/*))) 81ROOT_DIRS_TO_CHECK := $(sort $(filter-out \ 82 lib \ 83 include \ 84 docs \ 85 %.md, \ 86 $(wildcard *))) 87CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \ 88 ${INC_DIRS_TO_CHECK} \ 89 ${INC_LIB_DIRS_TO_CHECK} \ 90 ${LIB_DIRS_TO_CHECK} 91 92 93################################################################################ 94# Process build options 95################################################################################ 96 97# Verbose flag 98ifeq (${V},0) 99 Q:=@ 100 CHECKCODE_ARGS += --no-summary --terse 101else 102 Q:= 103endif 104export Q 105 106# Process Debug flag 107$(eval $(call add_define,DEBUG)) 108ifneq (${DEBUG}, 0) 109 BUILD_TYPE := debug 110 TF_CFLAGS += -g 111 ASFLAGS += -g -Wa,--gdwarf-2 112 # Use LOG_LEVEL_INFO by default for debug builds 113 LOG_LEVEL := 40 114else 115 BUILD_TYPE := release 116 $(eval $(call add_define,NDEBUG)) 117 # Use LOG_LEVEL_NOTICE by default for release builds 118 LOG_LEVEL := 20 119endif 120 121# Default build string (git branch and commit) 122ifeq (${BUILD_STRING},) 123 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null) 124endif 125VERSION_STRING := v${VERSION_MAJOR}.${VERSION_MINOR}(${BUILD_TYPE}):${BUILD_STRING} 126 127# The cert_create tool cannot generate certificates individually, so we use the 128# target 'certificates' to create them all 129ifneq (${GENERATE_COT},0) 130 FIP_DEPS += certificates 131 FWU_FIP_DEPS += fwu_certificates 132endif 133 134 135################################################################################ 136# Toolchain 137################################################################################ 138 139CC := ${CROSS_COMPILE}gcc 140CPP := ${CROSS_COMPILE}cpp 141AS := ${CROSS_COMPILE}gcc 142AR := ${CROSS_COMPILE}ar 143LD := ${CROSS_COMPILE}ld 144OC := ${CROSS_COMPILE}objcopy 145OD := ${CROSS_COMPILE}objdump 146NM := ${CROSS_COMPILE}nm 147PP := ${CROSS_COMPILE}gcc -E 148 149ASFLAGS_aarch64 = -mgeneral-regs-only 150TF_CFLAGS_aarch64 = -mgeneral-regs-only -mstrict-align 151 152ASFLAGS_aarch32 = -march=armv8-a 153TF_CFLAGS_aarch32 = -march=armv8-a 154 155CPPFLAGS = ${DEFINES} ${INCLUDES} -nostdinc \ 156 -Wmissing-include-dirs -Werror 157ASFLAGS += $(CPPFLAGS) $(ASFLAGS_$(ARCH)) \ 158 -D__ASSEMBLY__ -ffreestanding \ 159 -Wa,--fatal-warnings 160TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \ 161 -ffreestanding -fno-builtin -Wall -std=c99 -Os \ 162 -ffunction-sections -fdata-sections 163 164LDFLAGS += --fatal-warnings -O1 165LDFLAGS += --gc-sections 166 167 168################################################################################ 169# Common sources and include directories 170################################################################################ 171include lib/stdlib/stdlib.mk 172 173BL_COMMON_SOURCES += common/bl_common.c \ 174 common/tf_printf.c \ 175 common/${ARCH}/debug.S \ 176 lib/${ARCH}/cache_helpers.S \ 177 lib/${ARCH}/misc_helpers.S \ 178 plat/common/${ARCH}/plat_common.c \ 179 plat/common/${ARCH}/platform_helpers.S \ 180 ${STDLIB_SRCS} 181 182INCLUDES += -Iinclude/bl1 \ 183 -Iinclude/bl31 \ 184 -Iinclude/common \ 185 -Iinclude/common/${ARCH} \ 186 -Iinclude/drivers \ 187 -Iinclude/drivers/arm \ 188 -Iinclude/drivers/auth \ 189 -Iinclude/drivers/io \ 190 -Iinclude/drivers/ti/uart \ 191 -Iinclude/lib \ 192 -Iinclude/lib/${ARCH} \ 193 -Iinclude/lib/cpus \ 194 -Iinclude/lib/cpus/${ARCH} \ 195 -Iinclude/lib/el3_runtime \ 196 -Iinclude/lib/el3_runtime/${ARCH} \ 197 -Iinclude/lib/pmf \ 198 -Iinclude/lib/psci \ 199 -Iinclude/lib/xlat_tables \ 200 -Iinclude/plat/common \ 201 -Iinclude/services \ 202 ${PLAT_INCLUDES} \ 203 ${SPD_INCLUDES} 204 205 206################################################################################ 207# Generic definitions 208################################################################################ 209 210include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk 211 212BUILD_BASE := ./build 213BUILD_PLAT := ${BUILD_BASE}/${PLAT}/${BUILD_TYPE} 214 215SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*)))) 216 217# Platforms providing their own TBB makefile may override this value 218INCLUDE_TBBR_MK := 1 219 220 221################################################################################ 222# Include SPD Makefile if one has been specified 223################################################################################ 224 225ifneq (${SPD},none) 226ifeq (${ARCH},aarch32) 227 $(error "Error: SPD is incompatible with AArch32.") 228endif 229ifdef EL3_PAYLOAD_BASE 230 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.") 231 $(warning "The SPD and its BL32 companion will be present but ignored.") 232endif 233 # We expect to locate an spd.mk under the specified SPD directory 234 SPD_MAKE := $(wildcard services/spd/${SPD}/${SPD}.mk) 235 236 ifeq (${SPD_MAKE},) 237 $(error Error: No services/spd/${SPD}/${SPD}.mk located) 238 endif 239 $(info Including ${SPD_MAKE}) 240 include ${SPD_MAKE} 241 242 # If there's BL32 companion for the chosen SPD, we expect that the SPD's 243 # Makefile would set NEED_BL32 to "yes". In this case, the build system 244 # supports two mutually exclusive options: 245 # * BL32 is built from source: then BL32_SOURCES must contain the list 246 # of source files to build BL32 247 # * BL32 is a prebuilt binary: then BL32 must point to the image file 248 # that will be included in the FIP 249 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence 250 # over the sources. 251endif 252 253################################################################################ 254# Include libraries' Makefile that are used in all BL 255################################################################################ 256 257include lib/stack_protector/stack_protector.mk 258 259 260################################################################################ 261# Include the platform specific Makefile after the SPD Makefile (the platform 262# makefile may use all previous definitions in this file) 263################################################################################ 264 265include ${PLAT_MAKEFILE_FULL} 266 267# Platform compatibility is not supported in AArch32 268ifneq (${ARCH},aarch32) 269# If the platform has not defined ENABLE_PLAT_COMPAT, then enable it by default 270ifndef ENABLE_PLAT_COMPAT 271ENABLE_PLAT_COMPAT := 1 272endif 273 274# Include the platform compatibility helpers for PSCI 275ifneq (${ENABLE_PLAT_COMPAT}, 0) 276include plat/compat/plat_compat.mk 277endif 278endif 279 280# Include the CPU specific operations makefile, which provides default 281# values for all CPU errata workarounds and CPU specific optimisations. 282# This can be overridden by the platform. 283include lib/cpus/cpu-ops.mk 284 285 286################################################################################ 287# Check incompatible options 288################################################################################ 289 290ifdef EL3_PAYLOAD_BASE 291 ifdef PRELOADED_BL33_BASE 292 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \ 293 incompatible build options. EL3_PAYLOAD_BASE has priority.") 294 endif 295endif 296 297ifeq (${NEED_BL33},yes) 298 ifdef EL3_PAYLOAD_BASE 299 $(warning "BL33 image is not needed when option \ 300 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.") 301 endif 302 ifdef PRELOADED_BL33_BASE 303 $(warning "BL33 image is not needed when option \ 304 PRELOADED_BL33_BASE is used and won't be added to the FIP \ 305 file.") 306 endif 307endif 308 309ifeq (${ARCH},aarch32) 310 # For AArch32, LOAD_IMAGE_V2 must be enabled. 311 ifeq (${LOAD_IMAGE_V2}, 0) 312 $(error "For AArch32, LOAD_IMAGE_V2 must be enabled.") 313 endif 314 # TRUSTED_BOARD_BOOT is currently not supported for AArch32. 315 ifeq (${TRUSTED_BOARD_BOOT},1) 316 $(error "TRUSTED_BOARD_BOOT is currently not supported for AArch32") 317 endif 318endif 319 320# When building for systems with hardware-assisted coherency, there's no need to 321# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too. 322ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1) 323$(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY) 324endif 325 326################################################################################ 327# Process platform overrideable behaviour 328################################################################################ 329 330# Check if -pedantic option should be used 331ifeq (${DISABLE_PEDANTIC},0) 332 TF_CFLAGS += -pedantic 333endif 334 335# Using the ARM Trusted Firmware BL2 implies that a BL33 image also needs to be 336# supplied for the FIP and Certificate generation tools. This flag can be 337# overridden by the platform. 338ifdef BL2_SOURCES 339 ifdef EL3_PAYLOAD_BASE 340 # If booting an EL3 payload there is no need for a BL33 image 341 # in the FIP file. 342 NEED_BL33 := no 343 else 344 ifdef PRELOADED_BL33_BASE 345 # If booting a BL33 preloaded image there is no need of 346 # another one in the FIP file. 347 NEED_BL33 := no 348 else 349 NEED_BL33 ?= yes 350 endif 351 endif 352endif 353 354# If SCP_BL2 is given, we always want FIP to include it. 355ifdef SCP_BL2 356 NEED_SCP_BL2 := yes 357endif 358 359# Process TBB related flags 360ifneq (${GENERATE_COT},0) 361 # Common cert_create options 362 ifneq (${CREATE_KEYS},0) 363 $(eval CRT_ARGS += -n) 364 $(eval FWU_CRT_ARGS += -n) 365 ifneq (${SAVE_KEYS},0) 366 $(eval CRT_ARGS += -k) 367 $(eval FWU_CRT_ARGS += -k) 368 endif 369 endif 370 # Include TBBR makefile (unless the platform indicates otherwise) 371 ifeq (${INCLUDE_TBBR_MK},1) 372 include make_helpers/tbbr/tbbr_tools.mk 373 endif 374endif 375 376ifneq (${FIP_ALIGN},0) 377FIP_ARGS += --align ${FIP_ALIGN} 378endif 379 380################################################################################ 381# Auxiliary tools (fiptool, cert_create, etc) 382################################################################################ 383 384# Variables for use with Certificate Generation Tool 385CRTTOOLPATH ?= tools/cert_create 386CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT} 387 388# Variables for use with Firmware Image Package 389FIPTOOLPATH ?= tools/fiptool 390FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT} 391 392################################################################################ 393# Include BL specific makefiles 394################################################################################ 395ifdef BL1_SOURCES 396NEED_BL1 := yes 397include bl1/bl1.mk 398endif 399 400ifdef BL2_SOURCES 401NEED_BL2 := yes 402include bl2/bl2.mk 403endif 404 405# For AArch32, BL31 is not applicable, and BL2U is not supported at present. 406ifneq (${ARCH},aarch32) 407ifdef BL2U_SOURCES 408NEED_BL2U := yes 409include bl2u/bl2u.mk 410endif 411 412ifdef BL31_SOURCES 413# When booting an EL3 payload, there is no need to compile the BL31 image nor 414# put it in the FIP. 415ifndef EL3_PAYLOAD_BASE 416NEED_BL31 := yes 417include bl31/bl31.mk 418endif 419endif 420endif 421 422ifeq (${ARCH},aarch32) 423NEED_BL32 := yes 424 425################################################################################ 426# Build `AARCH32_SP` as BL32 image for AArch32 427################################################################################ 428ifneq (${AARCH32_SP},none) 429# We expect to locate an sp.mk under the specified AARCH32_SP directory 430AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk) 431 432ifeq (${AARCH32_SP_MAKE},) 433 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located) 434endif 435 436$(info Including ${AARCH32_SP_MAKE}) 437include ${AARCH32_SP_MAKE} 438endif 439 440endif 441 442################################################################################ 443# Build options checks 444################################################################################ 445 446$(eval $(call assert_boolean,COLD_BOOT_SINGLE_CPU)) 447$(eval $(call assert_boolean,CREATE_KEYS)) 448$(eval $(call assert_boolean,CTX_INCLUDE_AARCH32_REGS)) 449$(eval $(call assert_boolean,CTX_INCLUDE_FPREGS)) 450$(eval $(call assert_boolean,DEBUG)) 451$(eval $(call assert_boolean,DISABLE_PEDANTIC)) 452$(eval $(call assert_boolean,ENABLE_ASSERTIONS)) 453$(eval $(call assert_boolean,ENABLE_PLAT_COMPAT)) 454$(eval $(call assert_boolean,ENABLE_PMF)) 455$(eval $(call assert_boolean,ENABLE_PSCI_STAT)) 456$(eval $(call assert_boolean,ENABLE_RUNTIME_INSTRUMENTATION)) 457$(eval $(call assert_boolean,ERROR_DEPRECATED)) 458$(eval $(call assert_boolean,GENERATE_COT)) 459$(eval $(call assert_boolean,HW_ASSISTED_COHERENCY)) 460$(eval $(call assert_boolean,LOAD_IMAGE_V2)) 461$(eval $(call assert_boolean,NS_TIMER_SWITCH)) 462$(eval $(call assert_boolean,PL011_GENERIC_UART)) 463$(eval $(call assert_boolean,PROGRAMMABLE_RESET_ADDRESS)) 464$(eval $(call assert_boolean,PSCI_EXTENDED_STATE_ID)) 465$(eval $(call assert_boolean,RESET_TO_BL31)) 466$(eval $(call assert_boolean,SAVE_KEYS)) 467$(eval $(call assert_boolean,SEPARATE_CODE_AND_RODATA)) 468$(eval $(call assert_boolean,SPIN_ON_BL1_EXIT)) 469$(eval $(call assert_boolean,TRUSTED_BOARD_BOOT)) 470$(eval $(call assert_boolean,USE_COHERENT_MEM)) 471$(eval $(call assert_boolean,WARMBOOT_ENABLE_DCACHE_EARLY)) 472 473$(eval $(call assert_numeric,ARM_ARCH_MAJOR)) 474$(eval $(call assert_numeric,ARM_ARCH_MINOR)) 475 476################################################################################ 477# Add definitions to the cpp preprocessor based on the current build options. 478# This is done after including the platform specific makefile to allow the 479# platform to overwrite the default options 480################################################################################ 481 482$(eval $(call add_define,ARM_CCI_PRODUCT_ID)) 483$(eval $(call add_define,ARM_ARCH_MAJOR)) 484$(eval $(call add_define,ARM_ARCH_MINOR)) 485$(eval $(call add_define,ARM_GIC_ARCH)) 486$(eval $(call add_define,COLD_BOOT_SINGLE_CPU)) 487$(eval $(call add_define,CTX_INCLUDE_AARCH32_REGS)) 488$(eval $(call add_define,CTX_INCLUDE_FPREGS)) 489$(eval $(call add_define,ENABLE_ASSERTIONS)) 490$(eval $(call add_define,ENABLE_PLAT_COMPAT)) 491$(eval $(call add_define,ENABLE_PMF)) 492$(eval $(call add_define,ENABLE_PSCI_STAT)) 493$(eval $(call add_define,ENABLE_RUNTIME_INSTRUMENTATION)) 494$(eval $(call add_define,ERROR_DEPRECATED)) 495$(eval $(call add_define,HW_ASSISTED_COHERENCY)) 496$(eval $(call add_define,LOAD_IMAGE_V2)) 497$(eval $(call add_define,LOG_LEVEL)) 498$(eval $(call add_define,NS_TIMER_SWITCH)) 499$(eval $(call add_define,PL011_GENERIC_UART)) 500$(eval $(call add_define,PLAT_${PLAT})) 501$(eval $(call add_define,PROGRAMMABLE_RESET_ADDRESS)) 502$(eval $(call add_define,PSCI_EXTENDED_STATE_ID)) 503$(eval $(call add_define,RESET_TO_BL31)) 504$(eval $(call add_define,SEPARATE_CODE_AND_RODATA)) 505$(eval $(call add_define,SPD_${SPD})) 506$(eval $(call add_define,SPIN_ON_BL1_EXIT)) 507$(eval $(call add_define,TRUSTED_BOARD_BOOT)) 508$(eval $(call add_define,USE_COHERENT_MEM)) 509$(eval $(call add_define,WARMBOOT_ENABLE_DCACHE_EARLY)) 510 511# Define the EL3_PAYLOAD_BASE flag only if it is provided. 512ifdef EL3_PAYLOAD_BASE 513 $(eval $(call add_define,EL3_PAYLOAD_BASE)) 514else 515 # Define the PRELOADED_BL33_BASE flag only if it is provided and 516 # EL3_PAYLOAD_BASE is not defined, as it has priority. 517 ifdef PRELOADED_BL33_BASE 518 $(eval $(call add_define,PRELOADED_BL33_BASE)) 519 endif 520endif 521# Define the AARCH32/AARCH64 flag based on the ARCH flag 522ifeq (${ARCH},aarch32) 523 $(eval $(call add_define,AARCH32)) 524else 525 $(eval $(call add_define,AARCH64)) 526endif 527 528################################################################################ 529# Build targets 530################################################################################ 531 532.PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool fip fwu_fip certtool 533.SUFFIXES: 534 535all: msg_start 536 537msg_start: 538 @echo "Building ${PLAT}" 539 540# Check if deprecated declarations should be treated as error or not. 541ifeq (${ERROR_DEPRECATED},0) 542 TF_CFLAGS += -Wno-error=deprecated-declarations 543endif 544 545# Expand build macros for the different images 546ifeq (${NEED_BL1},yes) 547$(eval $(call MAKE_BL,1)) 548endif 549 550ifeq (${NEED_BL2},yes) 551$(if ${BL2}, $(eval $(call MAKE_TOOL_ARGS,2,${BL2},tb-fw)),\ 552 $(eval $(call MAKE_BL,2,tb-fw))) 553endif 554 555ifeq (${NEED_SCP_BL2},yes) 556$(eval $(call FIP_ADD_IMG,SCP_BL2,--scp-fw)) 557endif 558 559ifeq (${NEED_BL31},yes) 560BL31_SOURCES += ${SPD_SOURCES} 561$(if ${BL31}, $(eval $(call MAKE_TOOL_ARGS,31,${BL31},soc-fw)),\ 562 $(eval $(call MAKE_BL,31,soc-fw))) 563endif 564 565# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the 566# build system will call FIP_ADD_IMG to print a warning message and abort the 567# process. Note that the dependency on BL32 applies to the FIP only. 568ifeq (${NEED_BL32},yes) 569$(if ${BL32}, $(eval $(call MAKE_TOOL_ARGS,32,${BL32},tos-fw)),\ 570 $(if ${BL32_SOURCES}, $(eval $(call MAKE_BL,32,tos-fw)),\ 571 $(eval $(call FIP_ADD_IMG,BL32,--tos-fw)))) 572endif 573 574# Add the BL33 image if required by the platform 575ifeq (${NEED_BL33},yes) 576$(eval $(call FIP_ADD_IMG,BL33,--nt-fw)) 577endif 578 579ifeq (${NEED_BL2U},yes) 580BL2U_PATH := $(if ${BL2U},${BL2U},$(call IMG_BIN,2u)) 581$(if ${BL2U}, ,$(eval $(call MAKE_BL,2u))) 582$(eval $(call FWU_FIP_ADD_PAYLOAD,${BL2U_PATH},--ap-fwu-cfg)) 583endif 584 585locate-checkpatch: 586ifndef CHECKPATCH 587 $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/script/checkpatch.pl") 588else 589ifeq (,$(wildcard ${CHECKPATCH})) 590 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/script/checkpatch.pl") 591endif 592endif 593 594clean: 595 @echo " CLEAN" 596 $(call SHELL_REMOVE_DIR,${BUILD_PLAT}) 597 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean 598 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean 599 600realclean distclean: 601 @echo " REALCLEAN" 602 $(call SHELL_REMOVE_DIR,${BUILD_BASE}) 603 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*) 604 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean 605 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean 606 607checkcodebase: locate-checkpatch 608 @echo " CHECKING STYLE" 609 @if test -d .git ; then \ 610 git ls-files | grep -E -v 'libfdt|stdlib|docs|\.md' | \ 611 while read GIT_FILE ; \ 612 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \ 613 done ; \ 614 else \ 615 find . -type f -not -iwholename "*.git*" \ 616 -not -iwholename "*build*" \ 617 -not -iwholename "*libfdt*" \ 618 -not -iwholename "*stdlib*" \ 619 -not -iwholename "*docs*" \ 620 -not -iwholename "*.md" \ 621 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \ 622 fi 623 624checkpatch: locate-checkpatch 625 @echo " CHECKING STYLE" 626 ${Q}git format-patch --stdout ${BASE_COMMIT}..HEAD -- ${CHECK_PATHS} | ${CHECKPATCH} - || true 627 628certtool: ${CRTTOOL} 629 630.PHONY: ${CRTTOOL} 631${CRTTOOL}: 632 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} 633 @${ECHO_BLANK_LINE} 634 @echo "Built $@ successfully" 635 @${ECHO_BLANK_LINE} 636 637ifneq (${GENERATE_COT},0) 638certificates: ${CRT_DEPS} ${CRTTOOL} 639 ${Q}${CRTTOOL} ${CRT_ARGS} 640 @${ECHO_BLANK_LINE} 641 @echo "Built $@ successfully" 642 @echo "Certificates can be found in ${BUILD_PLAT}" 643 @${ECHO_BLANK_LINE} 644endif 645 646${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL} 647 ${Q}${FIPTOOL} create ${FIP_ARGS} $@ 648 ${Q}${FIPTOOL} info $@ 649 @${ECHO_BLANK_LINE} 650 @echo "Built $@ successfully" 651 @${ECHO_BLANK_LINE} 652 653ifneq (${GENERATE_COT},0) 654fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL} 655 ${Q}${CRTTOOL} ${FWU_CRT_ARGS} 656 @echo 657 @echo "Built $@ successfully" 658 @echo "FWU certificates can be found in ${BUILD_PLAT}" 659 @echo 660endif 661 662${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL} 663 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@ 664 ${Q}${FIPTOOL} info $@ 665 @echo 666 @echo "Built $@ successfully" 667 @echo 668 669fiptool: ${FIPTOOL} 670fip: ${BUILD_PLAT}/${FIP_NAME} 671fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME} 672 673.PHONY: ${FIPTOOL} 674${FIPTOOL}: 675 ${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" --no-print-directory -C ${FIPTOOLPATH} 676 677cscope: 678 @echo " CSCOPE" 679 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files 680 ${Q}cscope -b -q -k 681 682help: 683 @echo "usage: ${MAKE} PLAT=<${PLATFORM_LIST}> [OPTIONS] [TARGET]" 684 @echo "" 685 @echo "PLAT is used to specify which platform you wish to build." 686 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}" 687 @echo "" 688 @echo "Please refer to the User Guide for a list of all supported options." 689 @echo "Note that the build system doesn't track dependencies for build " 690 @echo "options. Therefore, if any of the build options are changed " 691 @echo "from a previous build, a clean build must be performed." 692 @echo "" 693 @echo "Supported Targets:" 694 @echo " all Build all individual bootloader binaries" 695 @echo " bl1 Build the BL1 binary" 696 @echo " bl2 Build the BL2 binary" 697 @echo " bl2u Build the BL2U binary" 698 @echo " bl31 Build the BL31 binary" 699 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then " 700 @echo " this builds secure payload specified by AARCH32_SP" 701 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')" 702 @echo " fip Build the Firmware Image Package (FIP)" 703 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)" 704 @echo " checkcodebase Check the coding style of the entire source tree" 705 @echo " checkpatch Check the coding style on changes in the current" 706 @echo " branch against BASE_COMMIT (default origin/master)" 707 @echo " clean Clean the build for the selected platform" 708 @echo " cscope Generate cscope index" 709 @echo " distclean Remove all build artifacts for all platforms" 710 @echo " certtool Build the Certificate generation tool" 711 @echo " fiptool Build the Firmware Image Package (FIP) creation tool" 712 @echo "" 713 @echo "Note: most build targets require PLAT to be set to a specific platform." 714 @echo "" 715 @echo "example: build all targets for the FVP platform:" 716 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all" 717