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