1# 2# Copyright (c) 2013-2021, ARM Limited and Contributors. All rights reserved. 3# 4# SPDX-License-Identifier: BSD-3-Clause 5# 6 7# 8# Trusted Firmware Version 9# 10VERSION_MAJOR := 2 11VERSION_MINOR := 4 12 13# Default goal is build all images 14.DEFAULT_GOAL := all 15 16# Avoid any implicit propagation of command line variable definitions to 17# sub-Makefiles, like CFLAGS that we reserved for the firmware images' 18# usage. Other command line options like "-s" are still propagated as usual. 19MAKEOVERRIDES = 20 21MAKE_HELPERS_DIRECTORY := make_helpers/ 22include ${MAKE_HELPERS_DIRECTORY}build_macros.mk 23include ${MAKE_HELPERS_DIRECTORY}build_env.mk 24 25################################################################################ 26# Default values for build configurations, and their dependencies 27################################################################################ 28 29include ${MAKE_HELPERS_DIRECTORY}defaults.mk 30 31# Assertions enabled for DEBUG builds by default 32ENABLE_ASSERTIONS := ${DEBUG} 33ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION} 34PLAT := ${DEFAULT_PLAT} 35 36################################################################################ 37# Checkpatch script options 38################################################################################ 39 40CHECKCODE_ARGS := --no-patch 41# Do not check the coding style on imported library files or documentation files 42INC_ARM_DIRS_TO_CHECK := $(sort $(filter-out \ 43 include/drivers/arm/cryptocell, \ 44 $(wildcard include/drivers/arm/*))) 45INC_ARM_DIRS_TO_CHECK += include/drivers/arm/cryptocell/*.h 46INC_DRV_DIRS_TO_CHECK := $(sort $(filter-out \ 47 include/drivers/arm, \ 48 $(wildcard include/drivers/*))) 49INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \ 50 include/lib/libfdt \ 51 include/lib/libc, \ 52 $(wildcard include/lib/*))) 53INC_DIRS_TO_CHECK := $(sort $(filter-out \ 54 include/lib \ 55 include/drivers, \ 56 $(wildcard include/*))) 57LIB_DIRS_TO_CHECK := $(sort $(filter-out \ 58 lib/compiler-rt \ 59 lib/libfdt% \ 60 lib/libc, \ 61 $(wildcard lib/*))) 62ROOT_DIRS_TO_CHECK := $(sort $(filter-out \ 63 lib \ 64 include \ 65 docs \ 66 %.rst, \ 67 $(wildcard *))) 68CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \ 69 ${INC_DIRS_TO_CHECK} \ 70 ${INC_LIB_DIRS_TO_CHECK} \ 71 ${LIB_DIRS_TO_CHECK} \ 72 ${INC_DRV_DIRS_TO_CHECK} \ 73 ${INC_ARM_DIRS_TO_CHECK} 74 75 76################################################################################ 77# Process build options 78################################################################################ 79 80# Verbose flag 81ifeq (${V},0) 82 Q:=@ 83 ECHO:=@echo 84 CHECKCODE_ARGS += --no-summary --terse 85else 86 Q:= 87 ECHO:=$(ECHO_QUIET) 88endif 89 90ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),) 91 Q:=@ 92 ECHO:=$(ECHO_QUIET) 93endif 94 95export Q ECHO 96 97# The cert_create tool cannot generate certificates individually, so we use the 98# target 'certificates' to create them all 99ifneq (${GENERATE_COT},0) 100 FIP_DEPS += certificates 101 FWU_FIP_DEPS += fwu_certificates 102endif 103 104# Process BRANCH_PROTECTION value and set 105# Pointer Authentication and Branch Target Identification flags 106ifeq (${BRANCH_PROTECTION},0) 107 # Default value turns off all types of branch protection 108 BP_OPTION := none 109else ifneq (${ARCH},aarch64) 110 $(error BRANCH_PROTECTION requires AArch64) 111else ifeq (${BRANCH_PROTECTION},1) 112 # Enables all types of branch protection features 113 BP_OPTION := standard 114 ENABLE_BTI := 1 115 ENABLE_PAUTH := 1 116else ifeq (${BRANCH_PROTECTION},2) 117 # Return address signing to its standard level 118 BP_OPTION := pac-ret 119 ENABLE_PAUTH := 1 120else ifeq (${BRANCH_PROTECTION},3) 121 # Extend the signing to include leaf functions 122 BP_OPTION := pac-ret+leaf 123 ENABLE_PAUTH := 1 124else ifeq (${BRANCH_PROTECTION},4) 125 # Turn on branch target identification mechanism 126 BP_OPTION := bti 127 ENABLE_BTI := 1 128else 129 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION}) 130endif 131 132# USE_SPINLOCK_CAS requires AArch64 build 133ifeq (${USE_SPINLOCK_CAS},1) 134ifneq (${ARCH},aarch64) 135 $(error USE_SPINLOCK_CAS requires AArch64) 136else 137 $(info USE_SPINLOCK_CAS is an experimental feature) 138endif 139endif 140 141# USE_DEBUGFS experimental feature recommended only in debug builds 142ifeq (${USE_DEBUGFS},1) 143ifeq (${DEBUG},1) 144 $(warning DEBUGFS experimental feature is enabled.) 145else 146 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY) 147endif 148endif 149 150ifneq (${DECRYPTION_SUPPORT},none) 151ENC_ARGS += -f ${FW_ENC_STATUS} 152ENC_ARGS += -k ${ENC_KEY} 153ENC_ARGS += -n ${ENC_NONCE} 154FIP_DEPS += enctool 155FWU_FIP_DEPS += enctool 156endif 157 158################################################################################ 159# Toolchain 160################################################################################ 161 162HOSTCC := gcc 163export HOSTCC 164 165CC := ${CROSS_COMPILE}gcc 166CPP := ${CROSS_COMPILE}cpp 167AS := ${CROSS_COMPILE}gcc 168AR := ${CROSS_COMPILE}ar 169LINKER := ${CROSS_COMPILE}ld 170OC := ${CROSS_COMPILE}objcopy 171OD := ${CROSS_COMPILE}objdump 172NM := ${CROSS_COMPILE}nm 173PP := ${CROSS_COMPILE}gcc -E 174DTC := dtc 175 176# Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH). 177ifneq ($(strip $(wildcard ${LD}.bfd) \ 178 $(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),) 179LINKER := ${LINKER}.bfd 180endif 181 182ifeq (${ARM_ARCH_MAJOR},7) 183target32-directive = -target arm-none-eabi 184# Will set march32-directive from platform configuration 185else 186target32-directive = -target armv8a-none-eabi 187 188# Set the compiler's target architecture profile based on 189# ARM_ARCH_MAJOR ARM_ARCH_MINOR options 190ifeq (${ARM_ARCH_MINOR},0) 191march32-directive = -march=armv${ARM_ARCH_MAJOR}-a 192march64-directive = -march=armv${ARM_ARCH_MAJOR}-a 193else 194march32-directive = -march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a 195march64-directive = -march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a 196endif 197endif 198 199# Memory tagging is supported in architecture Armv8.5-A AArch64 and onwards 200ifeq ($(ARCH), aarch64) 201# Check if revision is greater than or equal to 8.5 202ifeq "8.5" "$(word 1, $(sort 8.5 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))" 203mem_tag_arch_support = yes 204endif 205endif 206 207# Get architecture feature modifiers 208arch-features = ${ARM_ARCH_FEATURE} 209 210# Enable required options for memory stack tagging. 211# Currently, these options are enabled only for clang and armclang compiler. 212ifeq (${SUPPORT_STACK_MEMTAG},yes) 213ifdef mem_tag_arch_support 214# Check for armclang and clang compilers 215ifneq ( ,$(filter $(notdir $(CC)),armclang clang)) 216# Add "memtag" architecture feature modifier if not specified 217ifeq ( ,$(findstring memtag,$(arch-features))) 218arch-features := $(arch-features)+memtag 219endif # memtag 220ifeq ($(notdir $(CC)),armclang) 221TF_CFLAGS += -mmemtag-stack 222else ifeq ($(notdir $(CC)),clang) 223TF_CFLAGS += -fsanitize=memtag 224endif # armclang 225endif # armclang clang 226else 227$(error "Error: stack memory tagging is not supported for architecture \ 228 ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a") 229endif # mem_tag_arch_support 230endif # SUPPORT_STACK_MEMTAG 231 232# Set the compiler's architecture feature modifiers 233ifneq ($(arch-features), none) 234# Strip "none+" from arch-features 235arch-features := $(subst none+,,$(arch-features)) 236ifeq ($(ARCH), aarch32) 237march32-directive := $(march32-directive)+$(arch-features) 238else 239march64-directive := $(march64-directive)+$(arch-features) 240endif 241# Print features 242$(info Arm Architecture Features specified: $(subst +, ,$(arch-features))) 243endif # arch-features 244 245# Determine if FEAT_RNG is supported 246ENABLE_FEAT_RNG = $(if $(findstring rng,${arch-features}),1,0) 247 248# Determine if FEAT_SB is supported 249ENABLE_FEAT_SB = $(if $(findstring sb,${arch-features}),1,0) 250 251ifeq "8.5" "$(word 1, $(sort 8.5 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))" 252ENABLE_FEAT_SB = 1 253endif 254 255ifneq ($(findstring armclang,$(notdir $(CC))),) 256TF_CFLAGS_aarch32 = -target arm-arm-none-eabi $(march32-directive) 257TF_CFLAGS_aarch64 = -target aarch64-arm-none-eabi $(march64-directive) 258LD = $(LINKER) 259AS = $(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH)) 260CPP = $(CC) -E $(TF_CFLAGS_$(ARCH)) 261PP = $(CC) -E $(TF_CFLAGS_$(ARCH)) 262else ifneq ($(findstring clang,$(notdir $(CC))),) 263CLANG_CCDIR = $(if $(filter-out ./,$(dir $(CC))),$(dir $(CC)),) 264TF_CFLAGS_aarch32 = $(target32-directive) $(march32-directive) 265TF_CFLAGS_aarch64 = -target aarch64-elf $(march64-directive) 266LD = $(CLANG_CCDIR)ld.lld 267ifeq (, $(shell which $(LD))) 268$(error "No $(LD) in PATH, make sure it is installed or set LD to a different linker") 269endif 270AS = $(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH)) 271CPP = $(CC) -E 272PP = $(CC) -E 273else ifneq ($(findstring gcc,$(notdir $(CC))),) 274TF_CFLAGS_aarch32 = $(march32-directive) 275TF_CFLAGS_aarch64 = $(march64-directive) 276ifeq ($(ENABLE_LTO),1) 277 # Enable LTO only for aarch64 278 ifeq (${ARCH},aarch64) 279 LTO_CFLAGS = -flto 280 # Use gcc as a wrapper for the ld, recommended for LTO 281 LINKER := ${CROSS_COMPILE}gcc 282 endif 283endif 284LD = $(LINKER) 285else 286TF_CFLAGS_aarch32 = $(march32-directive) 287TF_CFLAGS_aarch64 = $(march64-directive) 288LD = $(LINKER) 289endif 290 291# Process Debug flag 292$(eval $(call add_define,DEBUG)) 293ifneq (${DEBUG}, 0) 294 BUILD_TYPE := debug 295 TF_CFLAGS += -g 296 297 ifneq ($(findstring clang,$(notdir $(CC))),) 298 ASFLAGS += -g 299 else 300 ASFLAGS += -g -Wa,--gdwarf-2 301 endif 302 303 # Use LOG_LEVEL_INFO by default for debug builds 304 LOG_LEVEL := 40 305else 306 BUILD_TYPE := release 307 # Use LOG_LEVEL_NOTICE by default for release builds 308 LOG_LEVEL := 20 309endif 310 311# Default build string (git branch and commit) 312ifeq (${BUILD_STRING},) 313 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null) 314endif 315VERSION_STRING := v${VERSION_MAJOR}.${VERSION_MINOR}(${BUILD_TYPE}):${BUILD_STRING} 316 317ifeq (${AARCH32_INSTRUCTION_SET},A32) 318TF_CFLAGS_aarch32 += -marm 319else ifeq (${AARCH32_INSTRUCTION_SET},T32) 320TF_CFLAGS_aarch32 += -mthumb 321else 322$(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET}) 323endif 324 325TF_CFLAGS_aarch32 += -mno-unaligned-access 326TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align 327 328ifneq (${BP_OPTION},none) 329TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION} 330endif 331 332ASFLAGS_aarch32 = $(march32-directive) 333ASFLAGS_aarch64 = $(march64-directive) 334 335# General warnings 336WARNINGS := -Wall -Wmissing-include-dirs -Wunused \ 337 -Wdisabled-optimization -Wvla -Wshadow \ 338 -Wno-unused-parameter -Wredundant-decls 339 340# Additional warnings 341# Level 1 342WARNING1 := -Wextra 343WARNING1 += -Wmissing-format-attribute 344WARNING1 += -Wmissing-prototypes 345WARNING1 += -Wold-style-definition 346 347# Level 2 348WARNING2 := -Waggregate-return 349WARNING2 += -Wcast-align 350WARNING2 += -Wnested-externs 351 352WARNING3 := -Wbad-function-cast 353WARNING3 += -Wcast-qual 354WARNING3 += -Wconversion 355WARNING3 += -Wpacked 356WARNING3 += -Wpointer-arith 357WARNING3 += -Wswitch-default 358 359ifeq (${W},1) 360WARNINGS += $(WARNING1) 361else ifeq (${W},2) 362WARNINGS += $(WARNING1) $(WARNING2) 363else ifeq (${W},3) 364WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3) 365endif 366 367# Compiler specific warnings 368ifeq ($(findstring clang,$(notdir $(CC))),) 369# not using clang 370WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \ 371 -Wpacked-bitfield-compat -Wshift-overflow=2 \ 372 -Wlogical-op 373else 374# using clang 375WARNINGS += -Wshift-overflow -Wshift-sign-overflow \ 376 -Wlogical-op-parentheses 377endif 378 379ifneq (${E},0) 380ERRORS := -Werror 381endif 382 383CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \ 384 $(ERRORS) $(WARNINGS) 385ASFLAGS += $(CPPFLAGS) $(ASFLAGS_$(ARCH)) \ 386 -ffreestanding -Wa,--fatal-warnings 387TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \ 388 -ffunction-sections -fdata-sections \ 389 -ffreestanding -fno-builtin -fno-common \ 390 -Os -std=gnu99 391 392ifeq (${SANITIZE_UB},on) 393TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover 394endif 395ifeq (${SANITIZE_UB},trap) 396TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \ 397 -fsanitize-undefined-trap-on-error 398endif 399 400GCC_V_OUTPUT := $(shell $(CC) -v 2>&1) 401 402# LD = armlink 403ifneq ($(findstring armlink,$(notdir $(LD))),) 404TF_LDFLAGS += --diag_error=warning --lto_level=O1 405TF_LDFLAGS += --remove --info=unused,unusedsymbols 406TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) 407 408# LD = gcc (used when GCC LTO is enabled) 409else ifneq ($(findstring gcc,$(notdir $(LD))),) 410# Pass ld options with Wl or Xlinker switches 411TF_LDFLAGS += -Wl,--fatal-warnings -O1 412TF_LDFLAGS += -Wl,--gc-sections 413ifeq ($(ENABLE_LTO),1) 414 ifeq (${ARCH},aarch64) 415 TF_LDFLAGS += -flto -fuse-linker-plugin 416 endif 417endif 418# GCC automatically adds fix-cortex-a53-843419 flag when used to link 419# which breaks some builds, so disable if errata fix is not explicitly enabled 420ifneq (${ERRATA_A53_843419},1) 421 TF_LDFLAGS += -mno-fix-cortex-a53-843419 422endif 423TF_LDFLAGS += -nostdlib 424TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH))) 425 426# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other 427else 428TF_LDFLAGS += --fatal-warnings -O1 429TF_LDFLAGS += --gc-sections 430# ld.lld doesn't recognize the errata flags, 431# therefore don't add those in that case 432ifeq ($(findstring ld.lld,$(notdir $(LD))),) 433TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) 434endif 435endif 436 437DTC_FLAGS += -I dts -O dtb 438DTC_CPPFLAGS += -P -nostdinc -Iinclude -Ifdts -undef \ 439 -x assembler-with-cpp $(DEFINES) 440 441ifeq ($(MEASURED_BOOT),1) 442DTC_CPPFLAGS += -DMEASURED_BOOT -DBL2_HASH_SIZE=${TCG_DIGEST_SIZE} 443endif 444 445################################################################################ 446# Common sources and include directories 447################################################################################ 448include lib/compiler-rt/compiler-rt.mk 449 450BL_COMMON_SOURCES += common/bl_common.c \ 451 common/tf_log.c \ 452 common/${ARCH}/debug.S \ 453 drivers/console/multi_console.c \ 454 lib/${ARCH}/cache_helpers.S \ 455 lib/${ARCH}/misc_helpers.S \ 456 plat/common/plat_bl_common.c \ 457 plat/common/plat_log_common.c \ 458 plat/common/${ARCH}/plat_common.c \ 459 plat/common/${ARCH}/platform_helpers.S \ 460 ${COMPILER_RT_SRCS} 461 462ifeq ($(notdir $(CC)),armclang) 463BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S 464endif 465 466ifeq (${SANITIZE_UB},on) 467BL_COMMON_SOURCES += plat/common/ubsan.c 468endif 469 470INCLUDES += -Iinclude \ 471 -Iinclude/arch/${ARCH} \ 472 -Iinclude/lib/cpus/${ARCH} \ 473 -Iinclude/lib/el3_runtime/${ARCH} \ 474 ${PLAT_INCLUDES} \ 475 ${SPD_INCLUDES} 476 477include common/backtrace/backtrace.mk 478 479################################################################################ 480# Generic definitions 481################################################################################ 482 483include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk 484 485ifeq (${BUILD_BASE},) 486 BUILD_BASE := ./build 487endif 488BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE} 489 490SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*)))) 491 492# Platforms providing their own TBB makefile may override this value 493INCLUDE_TBBR_MK := 1 494 495 496################################################################################ 497# Include SPD Makefile if one has been specified 498################################################################################ 499 500ifneq (${SPD},none) 501 ifeq (${ARCH},aarch32) 502 $(error "Error: SPD is incompatible with AArch32.") 503 endif 504 505 ifdef EL3_PAYLOAD_BASE 506 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.") 507 $(warning "The SPD and its BL32 companion will be present but ignored.") 508 endif 509 510 ifeq (${SPD},spmd) 511 $(warning "SPMD is an experimental feature") 512 # SPMD is located in std_svc directory 513 SPD_DIR := std_svc 514 515 ifeq ($(SPMD_SPM_AT_SEL2),1) 516 ifeq ($(CTX_INCLUDE_EL2_REGS),0) 517 $(error SPMD with SPM at S-EL2 requires CTX_INCLUDE_EL2_REGS option) 518 endif 519 endif 520 521 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp) 522 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG 523 endif 524 else 525 # All other SPDs in spd directory 526 SPD_DIR := spd 527 endif 528 529 # We expect to locate an spd.mk under the specified SPD directory 530 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk) 531 532 ifeq (${SPD_MAKE},) 533 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located) 534 endif 535 $(info Including ${SPD_MAKE}) 536 include ${SPD_MAKE} 537 538 # If there's BL32 companion for the chosen SPD, we expect that the SPD's 539 # Makefile would set NEED_BL32 to "yes". In this case, the build system 540 # supports two mutually exclusive options: 541 # * BL32 is built from source: then BL32_SOURCES must contain the list 542 # of source files to build BL32 543 # * BL32 is a prebuilt binary: then BL32 must point to the image file 544 # that will be included in the FIP 545 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence 546 # over the sources. 547endif 548 549################################################################################ 550# Include the platform specific Makefile after the SPD Makefile (the platform 551# makefile may use all previous definitions in this file) 552################################################################################ 553 554include ${PLAT_MAKEFILE_FULL} 555 556$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT})) 557 558ifeq (${ARM_ARCH_MAJOR},7) 559include make_helpers/armv7-a-cpus.mk 560endif 561 562PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT}) 563ifneq ($(PIE_FOUND),) 564 TF_CFLAGS += -fno-PIE 565endif 566 567ifneq ($(findstring gcc,$(notdir $(LD))),) 568 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker 569else 570 PIE_LDFLAGS += -pie --no-dynamic-linker 571endif 572 573ifeq ($(ENABLE_PIE),1) 574ifeq ($(BL2_AT_EL3),1) 575ifneq ($(BL2_IN_XIP_MEM),1) 576 BL2_CFLAGS += -fpie 577 BL2_LDFLAGS += $(PIE_LDFLAGS) 578endif 579endif 580 BL31_CFLAGS += -fpie 581 BL31_LDFLAGS += $(PIE_LDFLAGS) 582 BL32_CFLAGS += -fpie 583 BL32_LDFLAGS += $(PIE_LDFLAGS) 584endif 585 586ifeq (${ARCH},aarch64) 587BL1_CPPFLAGS += -DIMAGE_AT_EL3 588ifeq ($(BL2_AT_EL3),1) 589BL2_CPPFLAGS += -DIMAGE_AT_EL3 590else 591BL2_CPPFLAGS += -DIMAGE_AT_EL1 592endif 593BL2U_CPPFLAGS += -DIMAGE_AT_EL1 594BL31_CPPFLAGS += -DIMAGE_AT_EL3 595BL32_CPPFLAGS += -DIMAGE_AT_EL1 596endif 597 598# Include the CPU specific operations makefile, which provides default 599# values for all CPU errata workarounds and CPU specific optimisations. 600# This can be overridden by the platform. 601include lib/cpus/cpu-ops.mk 602 603ifeq (${ARCH},aarch32) 604NEED_BL32 := yes 605 606################################################################################ 607# Build `AARCH32_SP` as BL32 image for AArch32 608################################################################################ 609ifneq (${AARCH32_SP},none) 610# We expect to locate an sp.mk under the specified AARCH32_SP directory 611AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk) 612 613ifeq (${AARCH32_SP_MAKE},) 614 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located) 615endif 616 617$(info Including ${AARCH32_SP_MAKE}) 618include ${AARCH32_SP_MAKE} 619endif 620 621endif 622 623################################################################################ 624# Include libc if not overridden 625################################################################################ 626ifeq (${OVERRIDE_LIBC},0) 627include lib/libc/libc.mk 628endif 629 630################################################################################ 631# Check incompatible options 632################################################################################ 633 634ifdef EL3_PAYLOAD_BASE 635 ifdef PRELOADED_BL33_BASE 636 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \ 637 incompatible build options. EL3_PAYLOAD_BASE has priority.") 638 endif 639 ifneq (${GENERATE_COT},0) 640 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible build options.") 641 endif 642 ifneq (${TRUSTED_BOARD_BOOT},0) 643 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are incompatible build options.") 644 endif 645endif 646 647ifeq (${NEED_BL33},yes) 648 ifdef EL3_PAYLOAD_BASE 649 $(warning "BL33 image is not needed when option \ 650 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.") 651 endif 652 ifdef PRELOADED_BL33_BASE 653 $(warning "BL33 image is not needed when option \ 654 PRELOADED_BL33_BASE is used and won't be added to the FIP \ 655 file.") 656 endif 657endif 658 659# When building for systems with hardware-assisted coherency, there's no need to 660# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too. 661ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1) 662$(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY) 663endif 664 665#For now, BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is 1. 666ifeq ($(BL2_AT_EL3)-$(BL2_IN_XIP_MEM),0-1) 667$(error "BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is enabled") 668endif 669 670# For RAS_EXTENSION, require that EAs are handled in EL3 first 671ifeq ($(RAS_EXTENSION),1) 672 ifneq ($(HANDLE_EA_EL3_FIRST),1) 673 $(error For RAS_EXTENSION, HANDLE_EA_EL3_FIRST must also be 1) 674 endif 675endif 676 677# When FAULT_INJECTION_SUPPORT is used, require that RAS_EXTENSION is enabled 678ifeq ($(FAULT_INJECTION_SUPPORT),1) 679 ifneq ($(RAS_EXTENSION),1) 680 $(error For FAULT_INJECTION_SUPPORT, RAS_EXTENSION must also be 1) 681 endif 682endif 683 684# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1 685ifeq ($(DYN_DISABLE_AUTH), 1) 686 ifeq (${TRUSTED_BOARD_BOOT}, 0) 687 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH to be set.") 688 endif 689endif 690 691# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled. 692ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1) 693$(error "SDEI_IN_FCONF is an experimental feature and is only supported when \ 694 SDEI_SUPPORT is enabled") 695endif 696 697ifeq ($(COT_DESC_IN_DTB),1) 698 $(info CoT in device tree is an experimental feature) 699endif 700 701# If pointer authentication is used in the firmware, make sure that all the 702# registers associated to it are also saved and restored. 703# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1. 704ifeq ($(ENABLE_PAUTH),1) 705 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0) 706 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1) 707 endif 708endif 709 710ifeq ($(CTX_INCLUDE_PAUTH_REGS),1) 711 ifneq (${ARCH},aarch64) 712 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64) 713 else 714 $(info CTX_INCLUDE_PAUTH_REGS is an experimental feature) 715 endif 716endif 717 718ifeq ($(ENABLE_PAUTH),1) 719 $(info Pointer Authentication is an experimental feature) 720endif 721 722ifeq ($(ENABLE_BTI),1) 723 $(info Branch Protection is an experimental feature) 724endif 725 726ifeq ($(CTX_INCLUDE_MTE_REGS),1) 727 ifneq (${ARCH},aarch64) 728 $(error CTX_INCLUDE_MTE_REGS requires AArch64) 729 else 730 $(info CTX_INCLUDE_MTE_REGS is an experimental feature) 731 endif 732endif 733 734ifeq ($(MEASURED_BOOT),1) 735 ifneq (${TRUSTED_BOARD_BOOT},1) 736 $(error MEASURED_BOOT requires TRUSTED_BOARD_BOOT=1) 737 else 738 $(info MEASURED_BOOT is an experimental feature) 739 endif 740endif 741 742ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1) 743 ifeq (${ALLOW_RO_XLAT_TABLES}, 1) 744 $(error "ALLOW_RO_XLAT_TABLES requires translation tables library v2") 745 endif 746endif 747 748ifneq (${DECRYPTION_SUPPORT},none) 749 ifeq (${TRUSTED_BOARD_BOOT}, 0) 750 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT to be set) 751 else 752 $(info DECRYPTION_SUPPORT is an experimental feature) 753 endif 754endif 755 756################################################################################ 757# Process platform overrideable behaviour 758################################################################################ 759 760# Using BL2 implies that a BL33 image also needs to be supplied for the FIP and 761# Certificate generation tools. This flag can be overridden by the platform. 762ifdef BL2_SOURCES 763 ifdef EL3_PAYLOAD_BASE 764 # If booting an EL3 payload there is no need for a BL33 image 765 # in the FIP file. 766 NEED_BL33 := no 767 else 768 ifdef PRELOADED_BL33_BASE 769 # If booting a BL33 preloaded image there is no need of 770 # another one in the FIP file. 771 NEED_BL33 := no 772 else 773 NEED_BL33 ?= yes 774 endif 775 endif 776endif 777 778# If SCP_BL2 is given, we always want FIP to include it. 779ifdef SCP_BL2 780 NEED_SCP_BL2 := yes 781endif 782 783# For AArch32, BL31 is not currently supported. 784ifneq (${ARCH},aarch32) 785 ifdef BL31_SOURCES 786 # When booting an EL3 payload, there is no need to compile the BL31 image nor 787 # put it in the FIP. 788 ifndef EL3_PAYLOAD_BASE 789 NEED_BL31 := yes 790 endif 791 endif 792endif 793 794# Process TBB related flags 795ifneq (${GENERATE_COT},0) 796 # Common cert_create options 797 ifneq (${CREATE_KEYS},0) 798 $(eval CRT_ARGS += -n) 799 $(eval FWU_CRT_ARGS += -n) 800 ifneq (${SAVE_KEYS},0) 801 $(eval CRT_ARGS += -k) 802 $(eval FWU_CRT_ARGS += -k) 803 endif 804 endif 805 # Include TBBR makefile (unless the platform indicates otherwise) 806 ifeq (${INCLUDE_TBBR_MK},1) 807 include make_helpers/tbbr/tbbr_tools.mk 808 endif 809endif 810 811ifneq (${FIP_ALIGN},0) 812FIP_ARGS += --align ${FIP_ALIGN} 813endif 814 815################################################################################ 816# Include libraries' Makefile that are used in all BL 817################################################################################ 818 819include lib/stack_protector/stack_protector.mk 820 821################################################################################ 822# Auxiliary tools (fiptool, cert_create, etc) 823################################################################################ 824 825# Variables for use with Certificate Generation Tool 826CRTTOOLPATH ?= tools/cert_create 827CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT} 828 829# Variables for use with Firmware Encryption Tool 830ENCTOOLPATH ?= tools/encrypt_fw 831ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT} 832 833# Variables for use with Firmware Image Package 834FIPTOOLPATH ?= tools/fiptool 835FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT} 836 837# Variables for use with sptool 838SPTOOLPATH ?= tools/sptool 839SPTOOL ?= ${SPTOOLPATH}/sptool${BIN_EXT} 840SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py 841 842# Variables for use with ROMLIB 843ROMLIBPATH ?= lib/romlib 844 845# Variable for use with Python 846PYTHON ?= python3 847 848# Variables for use with PRINT_MEMORY_MAP 849PRINT_MEMORY_MAP_PATH ?= tools/memory 850PRINT_MEMORY_MAP ?= ${PRINT_MEMORY_MAP_PATH}/print_memory_map.py 851 852# Variables for use with documentation build using Sphinx tool 853DOCS_PATH ?= docs 854 855################################################################################ 856# Include BL specific makefiles 857################################################################################ 858ifdef BL1_SOURCES 859NEED_BL1 := yes 860include bl1/bl1.mk 861endif 862 863ifdef BL2_SOURCES 864NEED_BL2 := yes 865include bl2/bl2.mk 866endif 867 868ifdef BL2U_SOURCES 869NEED_BL2U := yes 870include bl2u/bl2u.mk 871endif 872 873ifeq (${NEED_BL31},yes) 874ifdef BL31_SOURCES 875include bl31/bl31.mk 876endif 877endif 878 879ifdef FDT_SOURCES 880NEED_FDT := yes 881endif 882 883################################################################################ 884# Build options checks 885################################################################################ 886 887$(eval $(call assert_booleans,\ 888 $(sort \ 889 ALLOW_RO_XLAT_TABLES \ 890 COLD_BOOT_SINGLE_CPU \ 891 CREATE_KEYS \ 892 CTX_INCLUDE_AARCH32_REGS \ 893 CTX_INCLUDE_FPREGS \ 894 CTX_INCLUDE_PAUTH_REGS \ 895 CTX_INCLUDE_MTE_REGS \ 896 CTX_INCLUDE_EL2_REGS \ 897 CTX_INCLUDE_NEVE_REGS \ 898 DEBUG \ 899 DISABLE_MTPMU \ 900 DYN_DISABLE_AUTH \ 901 EL3_EXCEPTION_HANDLING \ 902 ENABLE_AMU \ 903 AMU_RESTRICT_COUNTERS \ 904 ENABLE_ASSERTIONS \ 905 ENABLE_MPAM_FOR_LOWER_ELS \ 906 ENABLE_PIE \ 907 ENABLE_PMF \ 908 ENABLE_PSCI_STAT \ 909 ENABLE_RUNTIME_INSTRUMENTATION \ 910 ENABLE_SPE_FOR_LOWER_ELS \ 911 ENABLE_SVE_FOR_NS \ 912 ERROR_DEPRECATED \ 913 FAULT_INJECTION_SUPPORT \ 914 GENERATE_COT \ 915 GICV2_G0_FOR_EL3 \ 916 HANDLE_EA_EL3_FIRST \ 917 HW_ASSISTED_COHERENCY \ 918 INVERTED_MEMMAP \ 919 MEASURED_BOOT \ 920 NS_TIMER_SWITCH \ 921 OVERRIDE_LIBC \ 922 PL011_GENERIC_UART \ 923 PROGRAMMABLE_RESET_ADDRESS \ 924 PSCI_EXTENDED_STATE_ID \ 925 RAS_EXTENSION \ 926 RESET_TO_BL31 \ 927 SAVE_KEYS \ 928 SEPARATE_CODE_AND_RODATA \ 929 SEPARATE_NOBITS_REGION \ 930 SPIN_ON_BL1_EXIT \ 931 SPM_MM \ 932 SPMD_SPM_AT_SEL2 \ 933 TRUSTED_BOARD_BOOT \ 934 USE_COHERENT_MEM \ 935 USE_DEBUGFS \ 936 ARM_IO_IN_DTB \ 937 SDEI_IN_FCONF \ 938 SEC_INT_DESC_IN_FCONF \ 939 USE_ROMLIB \ 940 USE_TBBR_DEFS \ 941 WARMBOOT_ENABLE_DCACHE_EARLY \ 942 BL2_AT_EL3 \ 943 BL2_IN_XIP_MEM \ 944 BL2_INV_DCACHE \ 945 USE_SPINLOCK_CAS \ 946 ENCRYPT_BL31 \ 947 ENCRYPT_BL32 \ 948 ERRATA_SPECULATIVE_AT \ 949 RAS_TRAP_LOWER_EL_ERR_ACCESS \ 950 COT_DESC_IN_DTB \ 951 USE_SP804_TIMER \ 952 ENABLE_FEAT_RNG \ 953 ENABLE_FEAT_SB \ 954))) 955 956$(eval $(call assert_numerics,\ 957 $(sort \ 958 ARM_ARCH_MAJOR \ 959 ARM_ARCH_MINOR \ 960 BRANCH_PROTECTION \ 961 FW_ENC_STATUS \ 962))) 963 964ifdef KEY_SIZE 965 $(eval $(call assert_numeric,KEY_SIZE)) 966endif 967 968ifeq ($(filter $(SANITIZE_UB), on off trap),) 969 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap") 970endif 971 972################################################################################ 973# Add definitions to the cpp preprocessor based on the current build options. 974# This is done after including the platform specific makefile to allow the 975# platform to overwrite the default options 976################################################################################ 977 978$(eval $(call add_defines,\ 979 $(sort \ 980 ALLOW_RO_XLAT_TABLES \ 981 ARM_ARCH_MAJOR \ 982 ARM_ARCH_MINOR \ 983 COLD_BOOT_SINGLE_CPU \ 984 CTX_INCLUDE_AARCH32_REGS \ 985 CTX_INCLUDE_FPREGS \ 986 CTX_INCLUDE_PAUTH_REGS \ 987 EL3_EXCEPTION_HANDLING \ 988 CTX_INCLUDE_MTE_REGS \ 989 CTX_INCLUDE_EL2_REGS \ 990 CTX_INCLUDE_NEVE_REGS \ 991 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \ 992 DISABLE_MTPMU \ 993 ENABLE_AMU \ 994 AMU_RESTRICT_COUNTERS \ 995 ENABLE_ASSERTIONS \ 996 ENABLE_BTI \ 997 ENABLE_MPAM_FOR_LOWER_ELS \ 998 ENABLE_PAUTH \ 999 ENABLE_PIE \ 1000 ENABLE_PMF \ 1001 ENABLE_PSCI_STAT \ 1002 ENABLE_RUNTIME_INSTRUMENTATION \ 1003 ENABLE_SPE_FOR_LOWER_ELS \ 1004 ENABLE_SVE_FOR_NS \ 1005 ENCRYPT_BL31 \ 1006 ENCRYPT_BL32 \ 1007 ERROR_DEPRECATED \ 1008 FAULT_INJECTION_SUPPORT \ 1009 GICV2_G0_FOR_EL3 \ 1010 HANDLE_EA_EL3_FIRST \ 1011 HW_ASSISTED_COHERENCY \ 1012 LOG_LEVEL \ 1013 MEASURED_BOOT \ 1014 NS_TIMER_SWITCH \ 1015 PL011_GENERIC_UART \ 1016 PLAT_${PLAT} \ 1017 PROGRAMMABLE_RESET_ADDRESS \ 1018 PSCI_EXTENDED_STATE_ID \ 1019 RAS_EXTENSION \ 1020 RESET_TO_BL31 \ 1021 SEPARATE_CODE_AND_RODATA \ 1022 SEPARATE_NOBITS_REGION \ 1023 RECLAIM_INIT_CODE \ 1024 SPD_${SPD} \ 1025 SPIN_ON_BL1_EXIT \ 1026 SPM_MM \ 1027 SPMD_SPM_AT_SEL2 \ 1028 TRUSTED_BOARD_BOOT \ 1029 TRNG_SUPPORT \ 1030 USE_COHERENT_MEM \ 1031 USE_DEBUGFS \ 1032 ARM_IO_IN_DTB \ 1033 SDEI_IN_FCONF \ 1034 SEC_INT_DESC_IN_FCONF \ 1035 USE_ROMLIB \ 1036 USE_TBBR_DEFS \ 1037 WARMBOOT_ENABLE_DCACHE_EARLY \ 1038 BL2_AT_EL3 \ 1039 BL2_IN_XIP_MEM \ 1040 BL2_INV_DCACHE \ 1041 USE_SPINLOCK_CAS \ 1042 ERRATA_SPECULATIVE_AT \ 1043 RAS_TRAP_LOWER_EL_ERR_ACCESS \ 1044 COT_DESC_IN_DTB \ 1045 USE_SP804_TIMER \ 1046 ENABLE_FEAT_RNG \ 1047 ENABLE_FEAT_SB \ 1048))) 1049 1050ifeq (${SANITIZE_UB},trap) 1051 $(eval $(call add_define,MONITOR_TRAPS)) 1052endif 1053 1054# Define the EL3_PAYLOAD_BASE flag only if it is provided. 1055ifdef EL3_PAYLOAD_BASE 1056 $(eval $(call add_define,EL3_PAYLOAD_BASE)) 1057else 1058 # Define the PRELOADED_BL33_BASE flag only if it is provided and 1059 # EL3_PAYLOAD_BASE is not defined, as it has priority. 1060 ifdef PRELOADED_BL33_BASE 1061 $(eval $(call add_define,PRELOADED_BL33_BASE)) 1062 endif 1063endif 1064 1065# Define the DYN_DISABLE_AUTH flag only if set. 1066ifeq (${DYN_DISABLE_AUTH},1) 1067$(eval $(call add_define,DYN_DISABLE_AUTH)) 1068endif 1069 1070ifneq ($(findstring armlink,$(notdir $(LD))),) 1071$(eval $(call add_define,USE_ARM_LINK)) 1072endif 1073 1074# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined 1075ifeq (${SPD},spmd) 1076ifdef SP_LAYOUT_FILE 1077 ifeq (${SPMD_SPM_AT_SEL2},0) 1078 $(error "SPMD with SPM at S-EL1 does not require SP_LAYOUT_FILE") 1079 endif 1080 -include $(BUILD_PLAT)/sp_gen.mk 1081 FIP_DEPS += sp 1082 CRT_DEPS += sp 1083 NEED_SP_PKG := yes 1084else 1085 ifeq (${SPMD_SPM_AT_SEL2},1) 1086 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE") 1087 endif 1088endif 1089endif 1090 1091################################################################################ 1092# Build targets 1093################################################################################ 1094 1095.PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp fwu_fip certtool dtbs memmap doc enctool 1096.SUFFIXES: 1097 1098all: msg_start 1099 1100msg_start: 1101 @echo "Building ${PLAT}" 1102 1103ifeq (${ERROR_DEPRECATED},0) 1104# Check if deprecated declarations and cpp warnings should be treated as error or not. 1105ifneq ($(findstring clang,$(notdir $(CC))),) 1106 CPPFLAGS += -Wno-error=deprecated-declarations 1107else 1108 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp 1109endif 1110endif # !ERROR_DEPRECATED 1111 1112$(eval $(call MAKE_LIB_DIRS)) 1113$(eval $(call MAKE_LIB,c)) 1114 1115# Expand build macros for the different images 1116ifeq (${NEED_BL1},yes) 1117$(eval $(call MAKE_BL,1)) 1118endif 1119 1120ifeq (${NEED_BL2},yes) 1121ifeq (${BL2_AT_EL3}, 0) 1122FIP_BL2_ARGS := tb-fw 1123endif 1124 1125$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\ 1126 $(eval $(call MAKE_BL,2,${FIP_BL2_ARGS}))) 1127endif 1128 1129ifeq (${NEED_SCP_BL2},yes) 1130$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw)) 1131endif 1132 1133ifeq (${NEED_BL31},yes) 1134BL31_SOURCES += ${SPD_SOURCES} 1135# Sort BL31 source files to remove duplicates 1136BL31_SOURCES := $(sort ${BL31_SOURCES}) 1137ifneq (${DECRYPTION_SUPPORT},none) 1138$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\ 1139 $(eval $(call MAKE_BL,31,soc-fw,,$(ENCRYPT_BL31)))) 1140else 1141$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\ 1142 $(eval $(call MAKE_BL,31,soc-fw))) 1143endif 1144endif 1145 1146# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the 1147# build system will call TOOL_ADD_IMG to print a warning message and abort the 1148# process. Note that the dependency on BL32 applies to the FIP only. 1149ifeq (${NEED_BL32},yes) 1150# Sort BL32 source files to remove duplicates 1151BL32_SOURCES := $(sort ${BL32_SOURCES}) 1152BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1)) 1153 1154ifneq (${DECRYPTION_SUPPORT},none) 1155$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,32,tos-fw,,$(ENCRYPT_BL32))),\ 1156 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32)))) 1157else 1158$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,32,tos-fw)),\ 1159 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw))) 1160endif 1161endif 1162 1163# Add the BL33 image if required by the platform 1164ifeq (${NEED_BL33},yes) 1165$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw)) 1166endif 1167 1168ifeq (${NEED_BL2U},yes) 1169$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\ 1170 $(eval $(call MAKE_BL,2u,ap-fwu-cfg,FWU_))) 1171endif 1172 1173# Expand build macros for the different images 1174ifeq (${NEED_FDT},yes) 1175 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES))) 1176endif 1177 1178# Add Secure Partition packages 1179ifeq (${NEED_SP_PKG},yes) 1180$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT} 1181 ${Q}${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} 1182sp: $(SPTOOL) $(DTBS) $(BUILD_PLAT)/sp_gen.mk 1183 ${Q}$(SPTOOL) $(SPTOOL_ARGS) 1184 @${ECHO_BLANK_LINE} 1185 @echo "Built SP Images successfully" 1186 @${ECHO_BLANK_LINE} 1187endif 1188 1189locate-checkpatch: 1190ifndef CHECKPATCH 1191 $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl") 1192else 1193ifeq (,$(wildcard ${CHECKPATCH})) 1194 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl") 1195endif 1196endif 1197 1198clean: 1199 @echo " CLEAN" 1200 $(call SHELL_REMOVE_DIR,${BUILD_PLAT}) 1201ifdef UNIX_MK 1202 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean 1203else 1204# Clear the MAKEFLAGS as we do not want 1205# to pass the gnumake flags to nmake. 1206 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean 1207endif 1208 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean 1209 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean 1210 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean 1211 1212realclean distclean: 1213 @echo " REALCLEAN" 1214 $(call SHELL_REMOVE_DIR,${BUILD_BASE}) 1215 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*) 1216ifdef UNIX_MK 1217 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean 1218else 1219# Clear the MAKEFLAGS as we do not want 1220# to pass the gnumake flags to nmake. 1221 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean 1222endif 1223 ${Q}${MAKE} --no-print-directory -C ${SPTOOLPATH} clean 1224 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean 1225 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean 1226 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean 1227 1228checkcodebase: locate-checkpatch 1229 @echo " CHECKING STYLE" 1230 @if test -d .git ; then \ 1231 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \ 1232 while read GIT_FILE ; \ 1233 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \ 1234 done ; \ 1235 else \ 1236 find . -type f -not -iwholename "*.git*" \ 1237 -not -iwholename "*build*" \ 1238 -not -iwholename "*libfdt*" \ 1239 -not -iwholename "*libc*" \ 1240 -not -iwholename "*docs*" \ 1241 -not -iwholename "*.rst" \ 1242 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \ 1243 fi 1244 1245checkpatch: locate-checkpatch 1246 @echo " CHECKING STYLE" 1247 @if test -n "${CHECKPATCH_OPTS}"; then \ 1248 echo " with ${CHECKPATCH_OPTS} option(s)"; \ 1249 fi 1250 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \ 1251 for commit in `git rev-list $$COMMON_COMMIT..HEAD`; do \ 1252 printf "\n[*] Checking style of '$$commit'\n\n"; \ 1253 git log --format=email "$$commit~..$$commit" \ 1254 -- ${CHECK_PATHS} | \ 1255 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \ 1256 git diff --format=email "$$commit~..$$commit" \ 1257 -- ${CHECK_PATHS} | \ 1258 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \ 1259 done 1260 1261certtool: ${CRTTOOL} 1262 1263${CRTTOOL}: FORCE 1264 ${Q}${MAKE} PLAT=${PLAT} USE_TBBR_DEFS=${USE_TBBR_DEFS} COT=${COT} OPENSSL_DIR=${OPENSSL_DIR} CRTTOOL=${CRTTOOL} --no-print-directory -C ${CRTTOOLPATH} 1265 @${ECHO_BLANK_LINE} 1266 @echo "Built $@ successfully" 1267 @${ECHO_BLANK_LINE} 1268 1269ifneq (${GENERATE_COT},0) 1270certificates: ${CRT_DEPS} ${CRTTOOL} 1271 ${Q}${CRTTOOL} ${CRT_ARGS} 1272 @${ECHO_BLANK_LINE} 1273 @echo "Built $@ successfully" 1274 @echo "Certificates can be found in ${BUILD_PLAT}" 1275 @${ECHO_BLANK_LINE} 1276endif 1277 1278${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL} 1279 $(eval ${CHECK_FIP_CMD}) 1280 ${Q}${FIPTOOL} create ${FIP_ARGS} $@ 1281 ${Q}${FIPTOOL} info $@ 1282 @${ECHO_BLANK_LINE} 1283 @echo "Built $@ successfully" 1284 @${ECHO_BLANK_LINE} 1285 1286ifneq (${GENERATE_COT},0) 1287fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL} 1288 ${Q}${CRTTOOL} ${FWU_CRT_ARGS} 1289 @${ECHO_BLANK_LINE} 1290 @echo "Built $@ successfully" 1291 @echo "FWU certificates can be found in ${BUILD_PLAT}" 1292 @${ECHO_BLANK_LINE} 1293endif 1294 1295${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL} 1296 $(eval ${CHECK_FWU_FIP_CMD}) 1297 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@ 1298 ${Q}${FIPTOOL} info $@ 1299 @${ECHO_BLANK_LINE} 1300 @echo "Built $@ successfully" 1301 @${ECHO_BLANK_LINE} 1302 1303fiptool: ${FIPTOOL} 1304fip: ${BUILD_PLAT}/${FIP_NAME} 1305fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME} 1306 1307${FIPTOOL}: FORCE 1308ifdef UNIX_MK 1309 ${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} --no-print-directory -C ${FIPTOOLPATH} 1310else 1311# Clear the MAKEFLAGS as we do not want 1312# to pass the gnumake flags to nmake. 1313 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) 1314endif 1315 1316sptool: ${SPTOOL} 1317${SPTOOL}: FORCE 1318 ${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" SPTOOL=${SPTOOL} --no-print-directory -C ${SPTOOLPATH} 1319 1320romlib.bin: libraries FORCE 1321 ${Q}${MAKE} PLAT_DIR=${PLAT_DIR} BUILD_PLAT=${BUILD_PLAT} ENABLE_BTI=${ENABLE_BTI} ARM_ARCH_MINOR=${ARM_ARCH_MINOR} INCLUDES='${INCLUDES}' DEFINES='${DEFINES}' --no-print-directory -C ${ROMLIBPATH} all 1322 1323# Call print_memory_map tool 1324memmap: all 1325 ${Q}${PYTHON} ${PRINT_MEMORY_MAP} ${BUILD_PLAT} ${INVERTED_MEMMAP} 1326 1327doc: 1328 @echo " BUILD DOCUMENTATION" 1329 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html 1330 1331enctool: ${ENCTOOL} 1332 1333${ENCTOOL}: FORCE 1334 ${Q}${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} --no-print-directory -C ${ENCTOOLPATH} 1335 @${ECHO_BLANK_LINE} 1336 @echo "Built $@ successfully" 1337 @${ECHO_BLANK_LINE} 1338 1339cscope: 1340 @echo " CSCOPE" 1341 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files 1342 ${Q}cscope -b -q -k 1343 1344help: 1345 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]" 1346 @echo "" 1347 @echo "PLAT is used to specify which platform you wish to build." 1348 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}" 1349 @echo "" 1350 @echo "platform = ${PLATFORM_LIST}" 1351 @echo "" 1352 @echo "Please refer to the User Guide for a list of all supported options." 1353 @echo "Note that the build system doesn't track dependencies for build " 1354 @echo "options. Therefore, if any of the build options are changed " 1355 @echo "from a previous build, a clean build must be performed." 1356 @echo "" 1357 @echo "Supported Targets:" 1358 @echo " all Build all individual bootloader binaries" 1359 @echo " bl1 Build the BL1 binary" 1360 @echo " bl2 Build the BL2 binary" 1361 @echo " bl2u Build the BL2U binary" 1362 @echo " bl31 Build the BL31 binary" 1363 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then " 1364 @echo " this builds secure payload specified by AARCH32_SP" 1365 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')" 1366 @echo " fip Build the Firmware Image Package (FIP)" 1367 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)" 1368 @echo " checkcodebase Check the coding style of the entire source tree" 1369 @echo " checkpatch Check the coding style on changes in the current" 1370 @echo " branch against BASE_COMMIT (default origin/master)" 1371 @echo " clean Clean the build for the selected platform" 1372 @echo " cscope Generate cscope index" 1373 @echo " distclean Remove all build artifacts for all platforms" 1374 @echo " certtool Build the Certificate generation tool" 1375 @echo " enctool Build the Firmware encryption tool" 1376 @echo " fiptool Build the Firmware Image Package (FIP) creation tool" 1377 @echo " sp Build the Secure Partition Packages" 1378 @echo " sptool Build the Secure Partition Package creation tool" 1379 @echo " dtbs Build the Device Tree Blobs (if required for the platform)" 1380 @echo " memmap Print the memory map of the built binaries" 1381 @echo " doc Build html based documentation using Sphinx tool" 1382 @echo "" 1383 @echo "Note: most build targets require PLAT to be set to a specific platform." 1384 @echo "" 1385 @echo "example: build all targets for the FVP platform:" 1386 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all" 1387 1388.PHONY: FORCE 1389FORCE:; 1390