14f6ad66aSAchin Gupta# 2c3273703SChris Kay# Copyright (c) 2013-2025, Arm Limited and Contributors. All rights reserved. 34f6ad66aSAchin Gupta# 482cb2c1aSdp-arm# SPDX-License-Identifier: BSD-3-Clause 54f6ad66aSAchin Gupta# 64f6ad66aSAchin Gupta 7e35c4045SJeenu Viswambharan# 8aaa3e722SJuan Castillo# Trusted Firmware Version 9aaa3e722SJuan Castillo# 101a0f1121SSoby MathewVERSION_MAJOR := 2 111c26b186SArvind Ram PrakashVERSION_MINOR := 14 12c25d1ccfSYann Gautier# VERSION_PATCH is only used for LTS releases 13c25d1ccfSYann GautierVERSION_PATCH := 0 14055ebecaSYann GautierVERSION := ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH} 15aaa3e722SJuan Castillo 1688154678SJuan Castillo# Default goal is build all images 1788154678SJuan Castillo.DEFAULT_GOAL := all 1888154678SJuan Castillo 1972fc70edSDouglas Raillard# Avoid any implicit propagation of command line variable definitions to 2072fc70edSDouglas Raillard# sub-Makefiles, like CFLAGS that we reserved for the firmware images' 2172fc70edSDouglas Raillard# usage. Other command line options like "-s" are still propagated as usual. 2272fc70edSDouglas RaillardMAKEOVERRIDES = 2372fc70edSDouglas Raillard 24231c1470SEvan LloydMAKE_HELPERS_DIRECTORY := make_helpers/ 25231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_macros.mk 26f4dd18c2SChris Kayinclude ${MAKE_HELPERS_DIRECTORY}build-rules.mk 277c4e1eeaSChris Kayinclude ${MAKE_HELPERS_DIRECTORY}common.mk 2873c99d4eSJuan Castillo 2973c99d4eSJuan Castillo################################################################################ 302fae4b1eSJeenu Viswambharan# Default values for build configurations, and their dependencies 3173c99d4eSJuan Castillo################################################################################ 32e35c4045SJeenu Viswambharan 332fae4b1eSJeenu Viswambharaninclude ${MAKE_HELPERS_DIRECTORY}defaults.mk 3428973741SBoyan Karatotev# Include the CPU specific operations makefile, which provides default 3528973741SBoyan Karatotev# values for all CPU errata workarounds and CPU specific optimisations. 3628973741SBoyan Karatotev# This can be overridden by the platform. 3728973741SBoyan Karatotevinclude lib/cpus/cpu-ops.mk 3828973741SBoyan Karatotev 39422b181fSYann GautierPLAT := ${DEFAULT_PLAT} 401b2fb6adSAndrey Skvortsovinclude ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk 411b2fb6adSAndrey Skvortsov 421b2fb6adSAndrey Skvortsov# To be able to set platform specific defaults 431b2fb6adSAndrey Skvortsovifneq ($(PLAT_DEFAULTS_MAKEFILE_FULL),) 441b2fb6adSAndrey Skvortsovinclude ${PLAT_DEFAULTS_MAKEFILE_FULL} 451b2fb6adSAndrey Skvortsovendif 46872be88aSdp-arm 47cc277de8SChris Kay################################################################################ 48cc277de8SChris Kay# Configure the toolchains used to build TF-A and its tools 49cc277de8SChris Kay################################################################################ 50cc277de8SChris Kay 51cc277de8SChris Kayinclude ${MAKE_HELPERS_DIRECTORY}toolchain.mk 52cc277de8SChris Kay 53cc8b5632SAntonio Nino Diaz# Assertions enabled for DEBUG builds by default 54cc8b5632SAntonio Nino DiazENABLE_ASSERTIONS := ${DEBUG} 552fae4b1eSJeenu ViswambharanENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION} 5673c99d4eSJuan Castillo 5773c99d4eSJuan Castillo################################################################################ 5873c99d4eSJuan Castillo# Checkpatch script options 5973c99d4eSJuan Castillo################################################################################ 6073c99d4eSJuan Castillo 61f607739cSSandrine BailleuxCHECKCODE_ARGS := --no-patch 62f0b489c1SDan Handley# Do not check the coding style on imported library files or documentation files 634501843fSGilad Ben-YossefINC_DRV_DIRS_TO_CHECK := $(sort $(filter-out \ 644501843fSGilad Ben-Yossef include/drivers/arm, \ 654501843fSGilad Ben-Yossef $(wildcard include/drivers/*))) 66f0b489c1SDan HandleyINC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \ 6718818426SChris Kay lib/libfdt \ 6861f72a34SRoberto Vargas include/lib/libc, \ 69f0b489c1SDan Handley $(wildcard include/lib/*))) 70f0b489c1SDan HandleyINC_DIRS_TO_CHECK := $(sort $(filter-out \ 714501843fSGilad Ben-Yossef include/lib \ 724501843fSGilad Ben-Yossef include/drivers, \ 73f0b489c1SDan Handley $(wildcard include/*))) 74f0b489c1SDan HandleyLIB_DIRS_TO_CHECK := $(sort $(filter-out \ 75d801fbb0Sdp-arm lib/compiler-rt \ 7655cdcf75SAntonio Nino Diaz lib/libfdt% \ 7761f72a34SRoberto Vargas lib/libc, \ 78a194255dSDaniel Boulby lib/zlib \ 79f0b489c1SDan Handley $(wildcard lib/*))) 80f0b489c1SDan HandleyROOT_DIRS_TO_CHECK := $(sort $(filter-out \ 81f0b489c1SDan Handley lib \ 82f0b489c1SDan Handley include \ 83f0b489c1SDan Handley docs \ 841ef35512SPaul Beesley %.rst, \ 85f0b489c1SDan Handley $(wildcard *))) 86f0b489c1SDan HandleyCHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \ 87f0b489c1SDan Handley ${INC_DIRS_TO_CHECK} \ 88f0b489c1SDan Handley ${INC_LIB_DIRS_TO_CHECK} \ 894501843fSGilad Ben-Yossef ${LIB_DIRS_TO_CHECK} \ 904501843fSGilad Ben-Yossef ${INC_DRV_DIRS_TO_CHECK} \ 914501843fSGilad Ben-Yossef ${INC_ARM_DIRS_TO_CHECK} 9236eaaf37SIan Spray 9373c99d4eSJuan Castillo################################################################################ 9473c99d4eSJuan Castillo# Process build options 9573c99d4eSJuan Castillo################################################################################ 9673c99d4eSJuan Castillo 977c4e1eeaSChris Kayifeq ($(verbose),) 9836eaaf37SIan Spray CHECKCODE_ARGS += --no-summary --terse 994f6ad66aSAchin Guptaendif 100ee1ba6d4SAndre Przywara 10173c99d4eSJuan Castillo################################################################################ 102c5e1da83SJayanth Dodderi Chidanand# Auxiliary tools (fiptool, cert_create, etc) 103c5e1da83SJayanth Dodderi Chidanand################################################################################ 104c5e1da83SJayanth Dodderi Chidanand 105c5e1da83SJayanth Dodderi Chidanand# Variables for use with Certificate Generation Tool 106c5e1da83SJayanth Dodderi ChidanandCRTTOOLPATH ?= tools/cert_create 107f4595e6eSBoyan KaratotevCRTTOOL ?= ${BUILD_PLAT}/${CRTTOOLPATH}/cert_create$(.exe) 108c5e1da83SJayanth Dodderi Chidanand 109c5e1da83SJayanth Dodderi Chidanand# Variables for use with Firmware Encryption Tool 110c5e1da83SJayanth Dodderi ChidanandENCTOOLPATH ?= tools/encrypt_fw 11196fbe884SBoyan KaratotevENCTOOL ?= ${BUILD_PLAT}/${ENCTOOLPATH}/encrypt_fw$(.exe) 112c5e1da83SJayanth Dodderi Chidanand 113c5e1da83SJayanth Dodderi Chidanand# Variables for use with Firmware Image Package 114c5e1da83SJayanth Dodderi ChidanandFIPTOOLPATH ?= tools/fiptool 115cbd6cec3SBoyan KaratotevFIPTOOL ?= ${BUILD_PLAT}/${FIPTOOLPATH}/fiptool$(.exe) 116c5e1da83SJayanth Dodderi Chidanand 117c5e1da83SJayanth Dodderi Chidanand# Variables for use with sptool 118c5e1da83SJayanth Dodderi ChidanandSPTOOLPATH ?= tools/sptool 119c5e1da83SJayanth Dodderi ChidanandSPTOOL ?= ${SPTOOLPATH}/sptool.py 120c5e1da83SJayanth Dodderi ChidanandSP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py 12120629b31SKarl MeakinSP_DTS_LIST_FRAGMENT ?= ${BUILD_PLAT}/sp_list_fragment.dts 122c5e1da83SJayanth Dodderi Chidanand 1230fe374efSJ-Alves# Variables for use with sptool 1240fe374efSJ-AlvesTLCTOOL ?= poetry run tlc 1250fe374efSJ-Alves 126c5e1da83SJayanth Dodderi Chidanand# Variables for use with ROMLIB 127c5e1da83SJayanth Dodderi ChidanandROMLIBPATH ?= lib/romlib 128c5e1da83SJayanth Dodderi Chidanand 129c5e1da83SJayanth Dodderi Chidanand# Variable for use with Python 130c5e1da83SJayanth Dodderi ChidanandPYTHON ?= python3 131c5e1da83SJayanth Dodderi Chidanand 132c5e1da83SJayanth Dodderi Chidanand# Variables for use with documentation build using Sphinx tool 133c5e1da83SJayanth Dodderi ChidanandDOCS_PATH ?= docs 134c5e1da83SJayanth Dodderi Chidanand 13532b209bfSAhmad Fatoum# Process Debug flag 13632b209bfSAhmad Fatoumifneq (${DEBUG}, 0) 13732b209bfSAhmad Fatoum BUILD_TYPE := debug 13832b209bfSAhmad Fatoum # Use LOG_LEVEL_INFO by default for debug builds 13932b209bfSAhmad Fatoum LOG_LEVEL := 40 14032b209bfSAhmad Fatoumelse 14132b209bfSAhmad Fatoum BUILD_TYPE := release 14232b209bfSAhmad Fatoum # Use LOG_LEVEL_NOTICE by default for release builds 14332b209bfSAhmad Fatoum LOG_LEVEL := 20 144fa28b3afSBoyan Karatotev # Enable link-time optimization (AKA "inter-procedural optimization") 145fa28b3afSBoyan Karatotev ifeq (${ARCH},aarch64) 146fa28b3afSBoyan Karatotev ifeq ($($(ARCH)-ld-id),$($(ARCH)-cc-id)) 147fa28b3afSBoyan Karatotev ENABLE_LTO := 1 148fa28b3afSBoyan Karatotev endif 149fa28b3afSBoyan Karatotev endif 150c5e1da83SJayanth Dodderi Chidanandendif #(Debug) 15132b209bfSAhmad Fatoum 152f1de4c8fSPeiyuan Song# Default build string (git branch and commit) 153f1de4c8fSPeiyuan Songifeq (${BUILD_STRING},) 154f1de4c8fSPeiyuan Song BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null) 155f1de4c8fSPeiyuan Songendif 156dddf4283Slaurenw-armVERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING} 157f1de4c8fSPeiyuan Song 158d75a9ecdSBoyan Karatotev# Setting W is quite verbose and most warnings will be pre-existing issues 159d75a9ecdSBoyan Karatotev# outside of the contributor's control. Don't fail the build on them so warnings 160d75a9ecdSBoyan Karatotev# can be seen and hopefully addressed 161d75a9ecdSBoyan Karatotevifdef W 162d75a9ecdSBoyan Karatotev ifneq (${W},0) 163d75a9ecdSBoyan Karatotev E ?= 0 164d75a9ecdSBoyan Karatotev endif 165d75a9ecdSBoyan Karatotevendif 166d75a9ecdSBoyan Karatotev 16773c99d4eSJuan Castillo################################################################################ 168f5211420SGovindraj Raja# Setup ARCH_MAJOR/MINOR before parsing arch_features. 169f5211420SGovindraj Raja################################################################################ 170f5211420SGovindraj Rajaifeq (${ENABLE_RME},1) 1717d5fc98fSAlexeiFedorov ARM_ARCH_MAJOR := 9 1727d5fc98fSAlexeiFedorov ARM_ARCH_MINOR := 2 173f5211420SGovindraj Rajaendif 174f5211420SGovindraj Raja 175f5211420SGovindraj Raja################################################################################ 17673c99d4eSJuan Castillo# Common sources and include directories 17773c99d4eSJuan Castillo################################################################################ 178d801fbb0Sdp-arminclude lib/compiler-rt/compiler-rt.mk 17973c99d4eSJuan Castillo 180758ccb80SChris Kay# Allow overriding the timestamp, for example for reproducible builds, or to 181758ccb80SChris Kay# synchronize timestamps across multiple projects. 182758ccb80SChris Kay# This must be set to a C string (including quotes where applicable). 183758ccb80SChris KayBUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__ 184758ccb80SChris Kay 185758ccb80SChris KayDEFINES += -DBUILD_MESSAGE_TIMESTAMP='$(BUILD_MESSAGE_TIMESTAMP)' 186758ccb80SChris KayDEFINES += -DBUILD_MESSAGE_VERSION_STRING='"$(VERSION_STRING)"' 187758ccb80SChris KayDEFINES += -DBUILD_MESSAGE_VERSION='"$(VERSION)"' 188758ccb80SChris Kay 18973c99d4eSJuan CastilloBL_COMMON_SOURCES += common/bl_common.c \ 1907f56e9a3SSoby Mathew common/tf_log.c \ 1919d29c227SSoby Mathew common/${ARCH}/debug.S \ 19291b48c9fSJulius Werner drivers/console/multi_console.c \ 1939d29c227SSoby Mathew lib/${ARCH}/cache_helpers.S \ 1949d29c227SSoby Mathew lib/${ARCH}/misc_helpers.S \ 195c73686a1SBoyan Karatotev lib/extensions/pmuv3/${ARCH}/pmuv3.c \ 196566034fcSSoby Mathew plat/common/plat_bl_common.c \ 1977f56e9a3SSoby Mathew plat/common/plat_log_common.c \ 19875311203Sdp-arm plat/common/${ARCH}/plat_common.c \ 1999d29c227SSoby Mathew plat/common/${ARCH}/platform_helpers.S \ 20061f72a34SRoberto Vargas ${COMPILER_RT_SRCS} 201d7a6b0f8SRyan Harkin 2028620bd0bSChris Kayifeq ($($(ARCH)-cc-id),arm-clang) 2038422a840SAntonio Nino Diaz BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S 2048422a840SAntonio Nino Diazendif 2058422a840SAntonio Nino Diaz 2061f461979SJustin Chadwellifeq (${SANITIZE_UB},on) 2071f461979SJustin Chadwell BL_COMMON_SOURCES += plat/common/ubsan.c 2081f461979SJustin Chadwellendif 2091f461979SJustin Chadwell 21001d237cbSYann GautierINCLUDES += -Iinclude \ 211f5478dedSAntonio Nino Diaz -Iinclude/arch/${ARCH} \ 21209d40e0eSAntonio Nino Diaz -Iinclude/lib/cpus/${ARCH} \ 21309d40e0eSAntonio Nino Diaz -Iinclude/lib/el3_runtime/${ARCH} \ 21409d40e0eSAntonio Nino Diaz ${PLAT_INCLUDES} \ 21509d40e0eSAntonio Nino Diaz ${SPD_INCLUDES} 21609d40e0eSAntonio Nino Diaz 2179c6d1c50SAntonio Nino Diazinclude common/backtrace/backtrace.mk 2189c6d1c50SAntonio Nino Diaz 21973c99d4eSJuan Castillo################################################################################ 2203547270fSGovindraj Raja# Generic definitions 2213547270fSGovindraj Raja################################################################################ 2223547270fSGovindraj Raja 2233547270fSGovindraj Rajaifeq (${BUILD_BASE},) 2243547270fSGovindraj Raja BUILD_BASE := ./build 2253547270fSGovindraj Rajaendif 2263547270fSGovindraj RajaBUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE} 2273547270fSGovindraj Raja 2283547270fSGovindraj RajaSPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*)))) 2293547270fSGovindraj Raja 2303547270fSGovindraj Raja# Platforms providing their own TBB makefile may override this value 2313547270fSGovindraj RajaINCLUDE_TBBR_MK := 1 2323547270fSGovindraj Raja 2333547270fSGovindraj Raja################################################################################ 2343547270fSGovindraj Raja# Include SPD Makefile if one has been specified 2353547270fSGovindraj Raja################################################################################ 2363547270fSGovindraj Raja 2373547270fSGovindraj Rajaifneq (${SPD},none) 2383547270fSGovindraj Raja ifeq (${SPD},spmd) 2393547270fSGovindraj Raja # SPMD is located in std_svc directory 2403547270fSGovindraj Raja SPD_DIR := std_svc 2413547270fSGovindraj Raja 2423547270fSGovindraj Raja ifeq ($(SPMD_SPM_AT_SEL2),1) 2433547270fSGovindraj Raja CTX_INCLUDE_EL2_REGS := 1 2443547270fSGovindraj Raja endif 2453547270fSGovindraj Raja 2463547270fSGovindraj Raja ifneq ($(SP_LAYOUT_FILE),) 2473547270fSGovindraj Raja BL2_ENABLE_SP_LOAD := 1 2483547270fSGovindraj Raja endif 2493547270fSGovindraj Raja else 2503547270fSGovindraj Raja # All other SPDs in spd directory 2513547270fSGovindraj Raja SPD_DIR := spd 2523547270fSGovindraj Raja endif #(SPD) 2533547270fSGovindraj Raja 2543547270fSGovindraj Raja # We expect to locate an spd.mk under the specified SPD directory 2553547270fSGovindraj Raja SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk) 2563547270fSGovindraj Raja 2573547270fSGovindraj Raja ifeq (${SPD_MAKE},) 2583547270fSGovindraj Raja $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located) 2593547270fSGovindraj Raja endif 2603547270fSGovindraj Raja $(info Including ${SPD_MAKE}) 2613547270fSGovindraj Raja include ${SPD_MAKE} 2623547270fSGovindraj Raja 2633547270fSGovindraj Raja # If there's BL32 companion for the chosen SPD, we expect that the SPD's 2643547270fSGovindraj Raja # Makefile would set NEED_BL32 to "yes". In this case, the build system 2653547270fSGovindraj Raja # supports two mutually exclusive options: 2663547270fSGovindraj Raja # * BL32 is built from source: then BL32_SOURCES must contain the list 2673547270fSGovindraj Raja # of source files to build BL32 2683547270fSGovindraj Raja # * BL32 is a prebuilt binary: then BL32 must point to the image file 2693547270fSGovindraj Raja # that will be included in the FIP 2703547270fSGovindraj Raja # If both BL32_SOURCES and BL32 are defined, the binary takes precedence 2713547270fSGovindraj Raja # over the sources. 2723547270fSGovindraj Rajaendif #(SPD=none) 2733547270fSGovindraj Raja 2743547270fSGovindraj Raja################################################################################ 275696ed168SOlivier Deprez# Include the platform specific Makefile after the SPD Makefile (the platform 276696ed168SOlivier Deprez# makefile may use all previous definitions in this file) 277696ed168SOlivier Deprez################################################################################ 278696ed168SOlivier Deprezinclude ${PLAT_MAKEFILE_FULL} 279696ed168SOlivier Deprez 280696ed168SOlivier Deprez################################################################################ 2818d9f5f25SBoyan Karatotev# Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from 2828d9f5f25SBoyan Karatotev# platform. 2838d9f5f25SBoyan Karatotev################################################################################ 2848d9f5f25SBoyan Karatotev 2858d9f5f25SBoyan Karatotevinclude ${MAKE_HELPERS_DIRECTORY}arch_features.mk 2868d9f5f25SBoyan Karatotev################################################################################ 287f5211420SGovindraj Raja# Process BRANCH_PROTECTION value and set 288f5211420SGovindraj Raja# Pointer Authentication and Branch Target Identification flags 289f5211420SGovindraj Raja################################################################################ 290f5211420SGovindraj Rajaifeq (${BRANCH_PROTECTION},0) 291f5211420SGovindraj Raja # Default value turns off all types of branch protection 292f5211420SGovindraj Raja BP_OPTION := none 293f5211420SGovindraj Rajaelse ifneq (${ARCH},aarch64) 294f5211420SGovindraj Raja $(error BRANCH_PROTECTION requires AArch64) 295f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},1) 296f5211420SGovindraj Raja # Enables all types of branch protection features 297f5211420SGovindraj Raja BP_OPTION := standard 298f5211420SGovindraj Raja ENABLE_BTI := 1 299f5211420SGovindraj Raja ENABLE_PAUTH := 1 300f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},2) 301f5211420SGovindraj Raja # Return address signing to its standard level 302f5211420SGovindraj Raja BP_OPTION := pac-ret 303f5211420SGovindraj Raja ENABLE_PAUTH := 1 304f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},3) 305f5211420SGovindraj Raja # Extend the signing to include leaf functions 306f5211420SGovindraj Raja BP_OPTION := pac-ret+leaf 307f5211420SGovindraj Raja ENABLE_PAUTH := 1 308f5211420SGovindraj Rajaelse ifeq (${BRANCH_PROTECTION},4) 309f5211420SGovindraj Raja # Turn on branch target identification mechanism 310f5211420SGovindraj Raja BP_OPTION := bti 311f5211420SGovindraj Raja ENABLE_BTI := 1 3128d9f5f25SBoyan Karatotevelse ifeq (${BRANCH_PROTECTION},5) 3138d9f5f25SBoyan Karatotev # Turn on branch target identification mechanism 3148d9f5f25SBoyan Karatotev BP_OPTION := standard 3158d9f5f25SBoyan Karatotev ENABLE_BTI := 2 3168d9f5f25SBoyan Karatotev ENABLE_PAUTH := 2 317f5211420SGovindraj Rajaelse 318f5211420SGovindraj Raja $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION}) 319f5211420SGovindraj Rajaendif #(BRANCH_PROTECTION) 320f5211420SGovindraj Raja 3218d9f5f25SBoyan Karatotevifneq ($(ENABLE_PAUTH),0) 3228d9f5f25SBoyan Karatotev CTX_INCLUDE_PAUTH_REGS := ${ENABLE_PAUTH} 323f5211420SGovindraj Rajaendif 324f5211420SGovindraj Raja 325f5211420SGovindraj Raja# Pointer Authentication sources 3268d9f5f25SBoyan Karatotevifneq (${ENABLE_PAUTH},0) 327f5211420SGovindraj Raja# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the 328f5211420SGovindraj Raja# Pauth support. As it's not secure, it must be reimplemented for real platforms 3298d9f5f25SBoyan Karatotev BL_COMMON_SOURCES += lib/extensions/pauth/pauth.c 330f5211420SGovindraj Rajaendif 331f5211420SGovindraj Raja 332f5211420SGovindraj Raja################################################################################ 333f5211420SGovindraj Raja# RME dependent flags configuration, Enable optional features for RME. 334f5211420SGovindraj Raja################################################################################ 335f5211420SGovindraj Raja# FEAT_RME 336f5211420SGovindraj Rajaifeq (${ENABLE_RME},1) 337cbba59c4SSona Mathew # RMM relies on SMCCC_ARCH_FEATURE_AVAILABILITY to discover EL3 enablement 338cbba59c4SSona Mathew ARCH_FEATURE_AVAILABILITY := 1 339cbba59c4SSona Mathew 340f5211420SGovindraj Raja # RME requires el2 context to be saved for now. 341f5211420SGovindraj Raja CTX_INCLUDE_EL2_REGS := 1 342f5211420SGovindraj Raja CTX_INCLUDE_AARCH32_REGS := 0 343f5211420SGovindraj Raja CTX_INCLUDE_PAUTH_REGS := 1 344f5211420SGovindraj Raja 345d048af0dSJavier Almansa Sobrino ifneq ($(ENABLE_FEAT_MPAM), 0) 346d048af0dSJavier Almansa Sobrino CTX_INCLUDE_MPAM_REGS := 1 347d048af0dSJavier Almansa Sobrino endif 348d048af0dSJavier Almansa Sobrino 349f5211420SGovindraj Raja # RME enables CSV2_2 extension by default. 350f5211420SGovindraj Raja ENABLE_FEAT_CSV2_2 = 1 351f5211420SGovindraj Rajaendif #(FEAT_RME) 352f5211420SGovindraj Raja 353f5211420SGovindraj Raja################################################################################ 3545b18de09SZelalem Aweke# Include rmmd Makefile if RME is enabled 3555b18de09SZelalem Aweke################################################################################ 3565b18de09SZelalem Awekeifneq (${ENABLE_RME},0) 3575b18de09SZelalem Awekeinclude services/std_svc/rmmd/rmmd.mk 3585b18de09SZelalem Aweke$(warning "RME is an experimental feature") 3595b18de09SZelalem Awekeendif 3605b18de09SZelalem Aweke 3617e84f3cfSTushar Khandelwal################################################################################ 36230655136SGovindraj Raja# Make 128-Bit sysreg read/writes availabe when FEAT_D128 is enabled. 36330655136SGovindraj Raja################################################################################ 36430655136SGovindraj Rajaifneq (${ENABLE_FEAT_D128}, 0) 36530655136SGovindraj Raja BL_COMMON_SOURCES += lib/extensions/sysreg128/sysreg128.S 36630655136SGovindraj Rajaendif 36730655136SGovindraj Raja 36842d4d3baSArvind Ram Prakash# This internal flag is common option which is set to 1 for scenarios 36942d4d3baSArvind Ram Prakash# when the BL2 is running in EL3 level. This occurs in two scenarios - 37042d4d3baSArvind Ram Prakash# 4 world system running BL2 at EL3 and two world system without BL1 running 37142d4d3baSArvind Ram Prakash# BL2 in EL3 37242d4d3baSArvind Ram Prakash 37342d4d3baSArvind Ram Prakashifeq (${RESET_TO_BL2},1) 37442d4d3baSArvind Ram Prakash BL2_RUNS_AT_EL3 := 1 37542d4d3baSArvind Ram Prakash ifeq (${ENABLE_RME},1) 376c5e1da83SJayanth Dodderi Chidanand $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \ 377c5e1da83SJayanth Dodderi Chidanand supported at the moment.) 37842d4d3baSArvind Ram Prakash endif 37942d4d3baSArvind Ram Prakashelse ifeq (${ENABLE_RME},1) 38042d4d3baSArvind Ram Prakash BL2_RUNS_AT_EL3 := 1 38142d4d3baSArvind Ram Prakashelse 38242d4d3baSArvind Ram Prakash BL2_RUNS_AT_EL3 := 0 38342d4d3baSArvind Ram Prakashendif 38442d4d3baSArvind Ram Prakash 385f87e54f7SManish Pandey# This internal flag is set to 1 when Firmware First handling of External aborts 386f87e54f7SManish Pandey# is required by lowe ELs. Currently only NS requires this support. 387f87e54f7SManish Pandeyifeq ($(HANDLE_EA_EL3_FIRST_NS),1) 388f87e54f7SManish Pandey FFH_SUPPORT := 1 389f87e54f7SManish Pandeyelse 390f87e54f7SManish Pandey FFH_SUPPORT := 0 391f87e54f7SManish Pandeyendif 392f87e54f7SManish Pandey 393c2dc5129SBoyan Karatotevifneq ($(filter 1,${ERRATA_A53_1530924} ${ERRATA_A55_1530923} \ 394*8177e1efSXialin Liu ${ERRATA_A57_1319537} ${ERRATA_A65_1541130} ${ERRATA_A72_1319367} \ 395*8177e1efSXialin Liu ${ERRATA_A76_1165522}),) 396c2dc5129SBoyan KaratotevERRATA_SPECULATIVE_AT := 1 397c2dc5129SBoyan Karatotevelse 398c2dc5129SBoyan KaratotevERRATA_SPECULATIVE_AT := 0 399c2dc5129SBoyan Karatotevendif 400c2dc5129SBoyan Karatotev 401a4409008Sdp-arm################################################################################ 402a4409008Sdp-arm# Build `AARCH32_SP` as BL32 image for AArch32 403a4409008Sdp-arm################################################################################ 404c5e1da83SJayanth Dodderi Chidanandifeq (${ARCH},aarch32) 405c5e1da83SJayanth Dodderi Chidanand NEED_BL32 := yes 406c5e1da83SJayanth Dodderi Chidanand 407a4409008Sdp-arm ifneq (${AARCH32_SP},none) 408a4409008Sdp-arm # We expect to locate an sp.mk under the specified AARCH32_SP directory 409a4409008Sdp-arm AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk) 410a4409008Sdp-arm 411a4409008Sdp-arm ifeq (${AARCH32_SP_MAKE},) 412a4409008Sdp-arm $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located) 413a4409008Sdp-arm endif 414a4409008Sdp-arm $(info Including ${AARCH32_SP_MAKE}) 415a4409008Sdp-arm include ${AARCH32_SP_MAKE} 416a4409008Sdp-arm endif 417c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch32) 4184f6ad66aSAchin Gupta 41973c99d4eSJuan Castillo################################################################################ 42077f1f7a1SVarun Wadekar# Include libc if not overridden 42177f1f7a1SVarun Wadekar################################################################################ 42277f1f7a1SVarun Wadekarifeq (${OVERRIDE_LIBC},0) 42377f1f7a1SVarun Wadekarinclude lib/libc/libc.mk 42477f1f7a1SVarun Wadekarendif 42577f1f7a1SVarun Wadekar 4265d893410SBoyan Karatotevifneq (${USE_GIC_DRIVER},0) 4275d893410SBoyan Karatotevinclude drivers/arm/gic/gic.mk 4285d893410SBoyan Karatotevendif 4295d893410SBoyan Karatotev 43077f1f7a1SVarun Wadekar################################################################################ 431c5e1da83SJayanth Dodderi Chidanand# Check incompatible options and dependencies 432cf2c8a33SAntonio Nino Diaz################################################################################ 433b14987cfSBoyan Karatotevinclude ${MAKE_HELPERS_DIRECTORY}constraints.mk 434c5e1da83SJayanth Dodderi Chidanand 435c5e1da83SJayanth Dodderi Chidanand# The cert_create tool cannot generate certificates individually, so we use the 436c5e1da83SJayanth Dodderi Chidanand# target 'certificates' to create them all 437c5e1da83SJayanth Dodderi Chidanandifneq (${GENERATE_COT},0) 438c5e1da83SJayanth Dodderi Chidanand FIP_DEPS += certificates 439c5e1da83SJayanth Dodderi Chidanand FWU_FIP_DEPS += fwu_certificates 440d57362bdSXialin Liu BL2_FIP_DEPS += bl2_certificates 441c5e1da83SJayanth Dodderi Chidanandendif 442c5e1da83SJayanth Dodderi Chidanand 443c5e1da83SJayanth Dodderi Chidanandifneq (${DECRYPTION_SUPPORT},none) 444c5e1da83SJayanth Dodderi Chidanand ENC_ARGS += -f ${FW_ENC_STATUS} 445c5e1da83SJayanth Dodderi Chidanand ENC_ARGS += -k ${ENC_KEY} 446c5e1da83SJayanth Dodderi Chidanand ENC_ARGS += -n ${ENC_NONCE} 447c5e1da83SJayanth Dodderi Chidanand FIP_DEPS += enctool 448c5e1da83SJayanth Dodderi Chidanand FWU_FIP_DEPS += enctool 449d57362bdSXialin Liu BL2_FIP_DEPS += enctool 450c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT) 451c5e1da83SJayanth Dodderi Chidanand 452cf2c8a33SAntonio Nino Diaz################################################################################ 45373c99d4eSJuan Castillo# Process platform overrideable behaviour 45473c99d4eSJuan Castillo################################################################################ 4554f6ad66aSAchin Gupta 4565f24ce96SManish Pandeyifdef BL1_SOURCES 4575f24ce96SManish Pandey NEED_BL1 := yes 458c5e1da83SJayanth Dodderi Chidanandendif #(BL1_SOURCES) 4595f24ce96SManish Pandey 4605f24ce96SManish Pandeyifdef BL2_SOURCES 4615f24ce96SManish Pandey NEED_BL2 := yes 4625f24ce96SManish Pandey 463bd97f83aSJohn Tsichritzis # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and 464bd97f83aSJohn Tsichritzis # Certificate generation tools. This flag can be overridden by the platform. 465cf2c8a33SAntonio Nino Diaz ifdef EL3_PAYLOAD_BASE 466cf2c8a33SAntonio Nino Diaz # If booting an EL3 payload there is no need for a BL33 image 467cf2c8a33SAntonio Nino Diaz # in the FIP file. 4684c117f6cSSandrine Bailleux NEED_BL33 := no 469cf2c8a33SAntonio Nino Diaz else 47068450a6dSAntonio Nino Diaz ifdef PRELOADED_BL33_BASE 471cf2c8a33SAntonio Nino Diaz # If booting a BL33 preloaded image there is no need of 472cf2c8a33SAntonio Nino Diaz # another one in the FIP file. 473cf2c8a33SAntonio Nino Diaz NEED_BL33 := no 474cf2c8a33SAntonio Nino Diaz else 475cf2c8a33SAntonio Nino Diaz NEED_BL33 ?= yes 476cf2c8a33SAntonio Nino Diaz endif 4774c117f6cSSandrine Bailleux endif 478c5e1da83SJayanth Dodderi Chidanandendif #(BL2_SOURCES) 4796f971622SJuan Castillo 4805f24ce96SManish Pandeyifdef BL2U_SOURCES 4815f24ce96SManish Pandey NEED_BL2U := yes 482c5e1da83SJayanth Dodderi Chidanandendif #(BL2U_SOURCES) 4835f24ce96SManish Pandey 4844d045d0eSMasahiro Yamada# If SCP_BL2 is given, we always want FIP to include it. 4854d045d0eSMasahiro Yamadaifdef SCP_BL2 4864d045d0eSMasahiro Yamada NEED_SCP_BL2 := yes 487c5e1da83SJayanth Dodderi Chidanandendif #(SCP_BL2) 4884d045d0eSMasahiro Yamada 4895744e874SSoby Mathew# For AArch32, BL31 is not currently supported. 4905744e874SSoby Mathewifneq (${ARCH},aarch32) 4915744e874SSoby Mathew ifdef BL31_SOURCES 492c5e1da83SJayanth Dodderi Chidanand # When booting an EL3 payload, there is no need to compile the BL31 493c5e1da83SJayanth Dodderi Chidanand # image nor put it in the FIP. 4945744e874SSoby Mathew ifndef EL3_PAYLOAD_BASE 4955744e874SSoby Mathew NEED_BL31 := yes 4965744e874SSoby Mathew endif 4975744e874SSoby Mathew endif 498c5e1da83SJayanth Dodderi Chidanandendif #(ARCH=aarch64) 4995744e874SSoby Mathew 50073c99d4eSJuan Castillo# Process TBB related flags 5016f971622SJuan Castilloifneq (${GENERATE_COT},0) 50273c99d4eSJuan Castillo # Common cert_create options 5036f971622SJuan Castillo ifneq (${CREATE_KEYS},0) 5046f971622SJuan Castillo $(eval CRT_ARGS += -n) 5050191262dSYatharth Kochar $(eval FWU_CRT_ARGS += -n) 506d57362bdSXialin Liu $(eval BL2_CRT_ARGS += -n) 507fd34e7baSJuan Castillo ifneq (${SAVE_KEYS},0) 508fd34e7baSJuan Castillo $(eval CRT_ARGS += -k) 5090191262dSYatharth Kochar $(eval FWU_CRT_ARGS += -k) 510d57362bdSXialin Liu $(eval BL2_CRT_ARGS += -k) 511fd34e7baSJuan Castillo endif 5126f971622SJuan Castillo endif 51373c99d4eSJuan Castillo # Include TBBR makefile (unless the platform indicates otherwise) 51473c99d4eSJuan Castillo ifeq (${INCLUDE_TBBR_MK},1) 51573c99d4eSJuan Castillo include make_helpers/tbbr/tbbr_tools.mk 51673c99d4eSJuan Castillo endif 517c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT) 5186f971622SJuan Castillo 5191c75d5dfSMasahiro Yamadaifneq (${FIP_ALIGN},0) 5201c75d5dfSMasahiro Yamada FIP_ARGS += --align ${FIP_ALIGN} 521c5e1da83SJayanth Dodderi Chidanandendif #(FIP_ALIGN) 5221c75d5dfSMasahiro Yamada 5235f24ce96SManish Pandeyifdef FDT_SOURCES 5245f24ce96SManish Pandey NEED_FDT := yes 525c5e1da83SJayanth Dodderi Chidanandendif #(FDT_SOURCES) 5265f24ce96SManish Pandey 52773c99d4eSJuan Castillo################################################################################ 52846e5e035SMichalis Pappas# Include libraries' Makefile that are used in all BL 52946e5e035SMichalis Pappas################################################################################ 53046e5e035SMichalis Pappas 53146e5e035SMichalis Pappasinclude lib/stack_protector/stack_protector.mk 53246e5e035SMichalis Pappas 53346e5e035SMichalis Pappas################################################################################ 5348a86052dSSoby Mathew# Include BL specific makefiles 5358a86052dSSoby Mathew################################################################################ 5365f24ce96SManish Pandey 5375f24ce96SManish Pandeyifeq (${NEED_BL1},yes) 5388a86052dSSoby Mathewinclude bl1/bl1.mk 5398a86052dSSoby Mathewendif 5408a86052dSSoby Mathew 5415f24ce96SManish Pandeyifeq (${NEED_BL2},yes) 5428a86052dSSoby Mathewinclude bl2/bl2.mk 5438a86052dSSoby Mathewendif 5448a86052dSSoby Mathew 5455f24ce96SManish Pandeyifeq (${NEED_BL2U},yes) 5468a86052dSSoby Mathewinclude bl2u/bl2u.mk 5478a86052dSSoby Mathewendif 5488a86052dSSoby Mathew 5495744e874SSoby Mathewifeq (${NEED_BL31},yes) 5508a86052dSSoby Mathewinclude bl31/bl31.mk 5518a86052dSSoby Mathewendif 55203b397a8SNishanth Menon 55373c99d4eSJuan Castillo################################################################################ 55473c99d4eSJuan Castillo# Build options checks 55573c99d4eSJuan Castillo################################################################################ 55673c99d4eSJuan Castillo 557c5e1da83SJayanth Dodderi Chidanand# Boolean_Flags 558327131c4SLeonardo Sandoval$(eval $(call assert_booleans,\ 559327131c4SLeonardo Sandoval $(sort \ 560327131c4SLeonardo Sandoval ALLOW_RO_XLAT_TABLES \ 56146789a7cSBalint Dobszay BL2_ENABLE_SP_LOAD \ 562327131c4SLeonardo Sandoval COLD_BOOT_SINGLE_CPU \ 56328973741SBoyan Karatotev $(CPU_FLAG_LIST) \ 564327131c4SLeonardo Sandoval CREATE_KEYS \ 565327131c4SLeonardo Sandoval CTX_INCLUDE_AARCH32_REGS \ 566327131c4SLeonardo Sandoval CTX_INCLUDE_FPREGS \ 56742422622SMadhukar Pappireddy CTX_INCLUDE_SVE_REGS \ 568327131c4SLeonardo Sandoval CTX_INCLUDE_EL2_REGS \ 5699acff28aSArvind Ram Prakash CTX_INCLUDE_MPAM_REGS \ 570327131c4SLeonardo Sandoval DEBUG \ 571327131c4SLeonardo Sandoval DYN_DISABLE_AUTH \ 572327131c4SLeonardo Sandoval EL3_EXCEPTION_HANDLING \ 5731fd685a7SChris Kay ENABLE_AMU_AUXILIARY_COUNTERS \ 574873d4241Sjohpow01 AMU_RESTRICT_COUNTERS \ 575327131c4SLeonardo Sandoval ENABLE_ASSERTIONS \ 576327131c4SLeonardo Sandoval ENABLE_PIE \ 577327131c4SLeonardo Sandoval ENABLE_PMF \ 578327131c4SLeonardo Sandoval ENABLE_PSCI_STAT \ 579327131c4SLeonardo Sandoval ENABLE_RUNTIME_INSTRUMENTATION \ 580dc78e62dSjohpow01 ENABLE_SME_FOR_SWD \ 5810c5e7d1cSMax Shvetsov ENABLE_SVE_FOR_SWD \ 5828cef63d6SBoyan Karatotev ENABLE_FEAT_GCIE \ 583970a4a8dSManish Pandey ENABLE_FEAT_RAS \ 584f87e54f7SManish Pandey FFH_SUPPORT \ 585327131c4SLeonardo Sandoval ERROR_DEPRECATED \ 586327131c4SLeonardo Sandoval FAULT_INJECTION_SUPPORT \ 587327131c4SLeonardo Sandoval GENERATE_COT \ 588327131c4SLeonardo Sandoval GICV2_G0_FOR_EL3 \ 58946cc41d5SManish Pandey HANDLE_EA_EL3_FIRST_NS \ 590538516f5SBipin Ravi HARDEN_SLS \ 591327131c4SLeonardo Sandoval HW_ASSISTED_COHERENCY \ 592327131c4SLeonardo Sandoval MEASURED_BOOT \ 59336e3d877SAbhi.Singh DISCRETE_TPM \ 594e7f1181fSTamas Ban DICE_PROTECTION_ENVIRONMENT \ 5956a88ec8bSRaghu Krishnamurthy RMMD_ENABLE_EL3_TOKEN_SIGN \ 5962132c707SSona Mathew RMMD_ENABLE_IDE_KEY_PROG \ 59700e28874SManish V Badarkhe DRTM_SUPPORT \ 598327131c4SLeonardo Sandoval NS_TIMER_SWITCH \ 599327131c4SLeonardo Sandoval OVERRIDE_LIBC \ 600327131c4SLeonardo Sandoval PL011_GENERIC_UART \ 6015be66449SBoyan Karatotev PLAT_EXTRA_LD_SCRIPT \ 602327131c4SLeonardo Sandoval PROGRAMMABLE_RESET_ADDRESS \ 603327131c4SLeonardo Sandoval PSCI_EXTENDED_STATE_ID \ 60464b4710bSWing Li PSCI_OS_INIT_MODE \ 6058db17052SBoyan Karatotev ARCH_FEATURE_AVAILABILITY \ 606327131c4SLeonardo Sandoval RESET_TO_BL31 \ 607327131c4SLeonardo Sandoval SAVE_KEYS \ 608327131c4SLeonardo Sandoval SEPARATE_CODE_AND_RODATA \ 60996a8ed14SJiafei Pan SEPARATE_BL2_NOLOAD_REGION \ 610327131c4SLeonardo Sandoval SEPARATE_NOBITS_REGION \ 61186acbbe2SYe Li SEPARATE_RWDATA_REGION \ 612308ebfa1SMadhukar Pappireddy SEPARATE_SIMD_SECTION \ 613327131c4SLeonardo Sandoval SPIN_ON_BL1_EXIT \ 614327131c4SLeonardo Sandoval SPM_MM \ 6151d63ae4dSMarc Bonnici SPMC_AT_EL3 \ 616801cd3c8SNishant Sharma SPMC_AT_EL3_SEL0_SP \ 617327131c4SLeonardo Sandoval SPMD_SPM_AT_SEL2 \ 618890b5088SRaghu Krishnamurthy ENABLE_SPMD_LP \ 6193ba2c151SRaymond Mao TRANSFER_LIST \ 620327131c4SLeonardo Sandoval TRUSTED_BOARD_BOOT \ 621327131c4SLeonardo Sandoval USE_COHERENT_MEM \ 622327131c4SLeonardo Sandoval USE_DEBUGFS \ 623291e493dSHarrison Mutai USE_KERNEL_DT_CONVENTION \ 624327131c4SLeonardo Sandoval ARM_IO_IN_DTB \ 625327131c4SLeonardo Sandoval SDEI_IN_FCONF \ 626327131c4SLeonardo Sandoval SEC_INT_DESC_IN_FCONF \ 627327131c4SLeonardo Sandoval USE_ROMLIB \ 628327131c4SLeonardo Sandoval USE_TBBR_DEFS \ 629327131c4SLeonardo Sandoval WARMBOOT_ENABLE_DCACHE_EARLY \ 63042d4d3baSArvind Ram Prakash RESET_TO_BL2 \ 631327131c4SLeonardo Sandoval BL2_IN_XIP_MEM \ 632327131c4SLeonardo Sandoval BL2_INV_DCACHE \ 633327131c4SLeonardo Sandoval USE_SPINLOCK_CAS \ 634327131c4SLeonardo Sandoval ENCRYPT_BL31 \ 635327131c4SLeonardo Sandoval ENCRYPT_BL32 \ 636327131c4SLeonardo Sandoval ERRATA_SPECULATIVE_AT \ 63745c7328cSBoyan Karatotev ERRATA_SME_POWER_DOWN \ 63800e8f79cSManish Pandey RAS_TRAP_NS_ERR_REC_ACCESS \ 639327131c4SLeonardo Sandoval COT_DESC_IN_DTB \ 640327131c4SLeonardo Sandoval USE_SP804_TIMER \ 641396b339dSManish V Badarkhe PSA_FWU_SUPPORT \ 64211d05a77SSughosh Ganu PSA_FWU_METADATA_FW_STORE_DESC \ 64368120783SChris Kay ENABLE_MPMM \ 6446a0da736SJayanth Dodderi Chidanand FEATURE_DETECTION \ 6450b22e591SJayanth Dodderi Chidanand TRNG_SUPPORT \ 646593ae354SBoyan Karatotev ENABLE_ERRATA_ALL \ 647ffea3844SSona Mathew ERRATA_ABI_SUPPORT \ 648ef63f5beSSona Mathew ERRATA_NON_ARM_INTERCONNECT \ 64904c7303bSOkash Khawaja CONDITIONAL_CMO \ 6505782b890SManish V Badarkhe PSA_CRYPTO \ 65185bebe18SSandrine Bailleux ENABLE_CONSOLE_GETC \ 652183329a5SArvind Ram Prakash INIT_UNUSED_NS_EL2 \ 653bfef8b90SJuan Pablo Conde PLATFORM_REPORT_CTX_MEM_USE \ 654ae770fedSYann Gautier EARLY_CONSOLE \ 655f99a69c3SArvind Ram Prakash PRESERVE_DSU_PMU_REGS \ 6568953568aSLevi Yun HOB_LIST \ 657cf48f49fSManish V Badarkhe LFA_SUPPORT \ 658327131c4SLeonardo Sandoval))) 65973c99d4eSJuan Castillo 660c5e1da83SJayanth Dodderi Chidanand# Numeric_Flags 661327131c4SLeonardo Sandoval$(eval $(call assert_numerics,\ 662327131c4SLeonardo Sandoval $(sort \ 663327131c4SLeonardo Sandoval ARM_ARCH_MAJOR \ 664327131c4SLeonardo Sandoval ARM_ARCH_MINOR \ 665327131c4SLeonardo Sandoval BRANCH_PROTECTION \ 6666a0da736SJayanth Dodderi Chidanand CTX_INCLUDE_PAUTH_REGS \ 6676a0da736SJayanth Dodderi Chidanand CTX_INCLUDE_NEVE_REGS \ 66883a4dae1SBoyan Karatotev DISABLE_MTPMU \ 6691298f2f1SJayanth Dodderi Chidanand ENABLE_BRBE_FOR_NS \ 67047c681b7SJayanth Dodderi Chidanand ENABLE_TRBE_FOR_NS \ 6716a0da736SJayanth Dodderi Chidanand ENABLE_BTI \ 6726a0da736SJayanth Dodderi Chidanand ENABLE_PAUTH \ 673025b1b81SJohn Powell ENABLE_FEAT_PAUTH_LR \ 674cc2523bbSAndre Przywara ENABLE_FEAT_AIE \ 675d23acc9eSAndre Przywara ENABLE_FEAT_AMU \ 6766a0da736SJayanth Dodderi Chidanand ENABLE_FEAT_AMUv1p1 \ 677d6affea1SGovindraj Raja ENABLE_FEAT_CLRBHB \ 678a1032bebSJohn Powell ENABLE_FEAT_CPA2 \ 6796a0da736SJayanth Dodderi Chidanand ENABLE_FEAT_CSV2_2 \ 68030019d86SSona Mathew ENABLE_FEAT_CSV2_3 \ 68183271d5aSArvind Ram Prakash ENABLE_FEAT_DEBUGV8P9 \ 6826a0da736SJayanth Dodderi Chidanand ENABLE_FEAT_DIT \ 6836a0da736SJayanth Dodderi Chidanand ENABLE_FEAT_ECV \ 684714a1a93SManish Pandey ENABLE_FEAT_EBEP \ 6856a0da736SJayanth Dodderi Chidanand ENABLE_FEAT_FGT \ 68633e6aaacSArvind Ram Prakash ENABLE_FEAT_FGT2 \ 6874274b526SArvind Ram Prakash ENABLE_FEAT_FGWTE3 \ 688a57e18e4SArvind Ram Prakash ENABLE_FEAT_FPMR \ 6896a0da736SJayanth Dodderi Chidanand ENABLE_FEAT_HCX \ 690f396aec8SArvind Ram Prakash ENABLE_FEAT_IDTE3 \ 69119d52a83SAndre Przywara ENABLE_FEAT_LS64_ACCDATA \ 6927e84f3cfSTushar Khandelwal ENABLE_FEAT_MEC \ 6936b8df7b9SArvind Ram Prakash ENABLE_FEAT_MOPS \ 6948e397889SGovindraj Raja ENABLE_FEAT_MTE2 \ 6956a0da736SJayanth Dodderi Chidanand ENABLE_FEAT_PAN \ 696b3bcfd12SAndre Przywara ENABLE_FEAT_PFAR \ 6976a0da736SJayanth Dodderi Chidanand ENABLE_FEAT_RNG \ 698ff86e0b4SJuan Pablo Conde ENABLE_FEAT_RNG_TRAP \ 6996a0da736SJayanth Dodderi Chidanand ENABLE_FEAT_SEL2 \ 700d3331603SMark Brown ENABLE_FEAT_TCR2 \ 7016d0433f0SJayanth Dodderi Chidanand ENABLE_FEAT_THE \ 7020e4daed2SGovindraj Raja ENABLE_FEAT_SB \ 703062b6c6bSMark Brown ENABLE_FEAT_S2PIE \ 704062b6c6bSMark Brown ENABLE_FEAT_S1PIE \ 705062b6c6bSMark Brown ENABLE_FEAT_S2POE \ 706062b6c6bSMark Brown ENABLE_FEAT_S1POE \ 7074ec4e545SJayanth Dodderi Chidanand ENABLE_FEAT_SCTLR2 \ 70830655136SGovindraj Raja ENABLE_FEAT_D128 \ 7095e827bf0STimothy Hayes ENABLE_FEAT_RME_GDI \ 710688ab57bSMark Brown ENABLE_FEAT_GCS \ 7116a0da736SJayanth Dodderi Chidanand ENABLE_FEAT_VHE \ 712edebefbcSArvind Ram Prakash ENABLE_FEAT_MPAM \ 713c42aefd3SArvind Ram Prakash ENABLE_FEAT_MPAM_PE_BW_CTRL \ 7146a0da736SJayanth Dodderi Chidanand ENABLE_RME \ 7156437a09aSAndre Przywara ENABLE_SPE_FOR_NS \ 716603a0c6fSAndre Przywara ENABLE_SYS_REG_TRACE_FOR_NS \ 71745007acdSJayanth Dodderi Chidanand ENABLE_SME_FOR_NS \ 71803d3c0d7SJayanth Dodderi Chidanand ENABLE_SME2_FOR_NS \ 7192b0bc4e0SJayanth Dodderi Chidanand ENABLE_SVE_FOR_NS \ 7206a0da736SJayanth Dodderi Chidanand ENABLE_TRF_FOR_NS \ 721327131c4SLeonardo Sandoval FW_ENC_STATUS \ 7225357f83dSManish V Badarkhe NR_OF_FW_BANKS \ 7235357f83dSManish V Badarkhe NR_OF_IMAGES_IN_FW_BANK \ 7240322d7afSJay Monkman SPMC_AT_EL3_PARTITION_MAX_UUIDS \ 725781d07a4SJayanth Dodderi Chidanand TWED_DELAY \ 726781d07a4SJayanth Dodderi Chidanand ENABLE_FEAT_TWED \ 727bebcf27fSMark Brown SVE_VECTOR_LEN \ 7280ed3be6fSVarun Wadekar IMPDEF_SYSREG_TRAP \ 729ee580c2dSBoyan Karatotev W \ 730327131c4SLeonardo Sandoval))) 731c877b414SJeenu Viswambharan 732aacff749SJustin Chadwellifdef KEY_SIZE 733aacff749SJustin Chadwell $(eval $(call assert_numeric,KEY_SIZE)) 734aacff749SJustin Chadwellendif 735aacff749SJustin Chadwell 7361f461979SJustin Chadwellifeq ($(filter $(SANITIZE_UB), on off trap),) 7371f461979SJustin Chadwell $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap") 7381f461979SJustin Chadwellendif 7391f461979SJustin Chadwell 74073c99d4eSJuan Castillo################################################################################ 74173c99d4eSJuan Castillo# Add definitions to the cpp preprocessor based on the current build options. 74273c99d4eSJuan Castillo# This is done after including the platform specific makefile to allow the 74373c99d4eSJuan Castillo# platform to overwrite the default options 74473c99d4eSJuan Castillo################################################################################ 74573c99d4eSJuan Castillo 746327131c4SLeonardo Sandoval$(eval $(call add_defines,\ 747327131c4SLeonardo Sandoval $(sort \ 748327131c4SLeonardo Sandoval ALLOW_RO_XLAT_TABLES \ 749327131c4SLeonardo Sandoval ARM_ARCH_MAJOR \ 750327131c4SLeonardo Sandoval ARM_ARCH_MINOR \ 75146789a7cSBalint Dobszay BL2_ENABLE_SP_LOAD \ 752327131c4SLeonardo Sandoval COLD_BOOT_SINGLE_CPU \ 75328973741SBoyan Karatotev $(CPU_FLAG_LIST) \ 754327131c4SLeonardo Sandoval CTX_INCLUDE_AARCH32_REGS \ 755327131c4SLeonardo Sandoval CTX_INCLUDE_FPREGS \ 75642422622SMadhukar Pappireddy CTX_INCLUDE_SVE_REGS \ 757327131c4SLeonardo Sandoval CTX_INCLUDE_PAUTH_REGS \ 7589acff28aSArvind Ram Prakash CTX_INCLUDE_MPAM_REGS \ 759327131c4SLeonardo Sandoval EL3_EXCEPTION_HANDLING \ 760327131c4SLeonardo Sandoval CTX_INCLUDE_EL2_REGS \ 761062f8aafSArunachalam Ganapathy CTX_INCLUDE_NEVE_REGS \ 762ee580c2dSBoyan Karatotev DEBUG \ 763327131c4SLeonardo Sandoval DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \ 7640063dd17SJavier Almansa Sobrino DISABLE_MTPMU \ 765d23acc9eSAndre Przywara ENABLE_FEAT_AMU \ 7661fd685a7SChris Kay ENABLE_AMU_AUXILIARY_COUNTERS \ 767873d4241Sjohpow01 AMU_RESTRICT_COUNTERS \ 768327131c4SLeonardo Sandoval ENABLE_ASSERTIONS \ 769327131c4SLeonardo Sandoval ENABLE_BTI \ 77083271d5aSArvind Ram Prakash ENABLE_FEAT_DEBUGV8P9 \ 771f396aec8SArvind Ram Prakash ENABLE_FEAT_IDTE3 \ 772edebefbcSArvind Ram Prakash ENABLE_FEAT_MPAM \ 773c42aefd3SArvind Ram Prakash ENABLE_FEAT_MPAM_PE_BW_CTRL \ 774327131c4SLeonardo Sandoval ENABLE_PAUTH \ 775025b1b81SJohn Powell ENABLE_FEAT_PAUTH_LR \ 776327131c4SLeonardo Sandoval ENABLE_PIE \ 777327131c4SLeonardo Sandoval ENABLE_PMF \ 778327131c4SLeonardo Sandoval ENABLE_PSCI_STAT \ 7795b18de09SZelalem Aweke ENABLE_RME \ 7806a88ec8bSRaghu Krishnamurthy RMMD_ENABLE_EL3_TOKEN_SIGN \ 7812132c707SSona Mathew RMMD_ENABLE_IDE_KEY_PROG \ 782327131c4SLeonardo Sandoval ENABLE_RUNTIME_INSTRUMENTATION \ 783dc78e62dSjohpow01 ENABLE_SME_FOR_NS \ 78403d3c0d7SJayanth Dodderi Chidanand ENABLE_SME2_FOR_NS \ 785dc78e62dSjohpow01 ENABLE_SME_FOR_SWD \ 78690118bb5SAndre Przywara ENABLE_SPE_FOR_NS \ 787327131c4SLeonardo Sandoval ENABLE_SVE_FOR_NS \ 7880c5e7d1cSMax Shvetsov ENABLE_SVE_FOR_SWD \ 789970a4a8dSManish Pandey ENABLE_FEAT_RAS \ 790f87e54f7SManish Pandey FFH_SUPPORT \ 791327131c4SLeonardo Sandoval ENCRYPT_BL31 \ 792327131c4SLeonardo Sandoval ENCRYPT_BL32 \ 793327131c4SLeonardo Sandoval ERROR_DEPRECATED \ 794327131c4SLeonardo Sandoval FAULT_INJECTION_SUPPORT \ 795327131c4SLeonardo Sandoval GICV2_G0_FOR_EL3 \ 79646cc41d5SManish Pandey HANDLE_EA_EL3_FIRST_NS \ 797327131c4SLeonardo Sandoval HW_ASSISTED_COHERENCY \ 798327131c4SLeonardo Sandoval LOG_LEVEL \ 799327131c4SLeonardo Sandoval MEASURED_BOOT \ 80036e3d877SAbhi.Singh DISCRETE_TPM \ 801e7f1181fSTamas Ban DICE_PROTECTION_ENVIRONMENT \ 80200e28874SManish V Badarkhe DRTM_SUPPORT \ 803327131c4SLeonardo Sandoval NS_TIMER_SWITCH \ 8047256cf0aSRohit Mathew PLATFORM_NODE_COUNT \ 805327131c4SLeonardo Sandoval PL011_GENERIC_UART \ 8065be66449SBoyan Karatotev PLAT_EXTRA_LD_SCRIPT \ 807327131c4SLeonardo Sandoval PLAT_${PLAT} \ 808327131c4SLeonardo Sandoval PROGRAMMABLE_RESET_ADDRESS \ 809327131c4SLeonardo Sandoval PSCI_EXTENDED_STATE_ID \ 81064b4710bSWing Li PSCI_OS_INIT_MODE \ 8118db17052SBoyan Karatotev ARCH_FEATURE_AVAILABILITY \ 812327131c4SLeonardo Sandoval RESET_TO_BL31 \ 813d766084fSAlexeiFedorov RME_GPT_BITLOCK_BLOCK \ 814ec0088bbSAlexeiFedorov RME_GPT_MAX_BLOCK \ 815327131c4SLeonardo Sandoval SEPARATE_CODE_AND_RODATA \ 8165ce4ee1aSXialin Liu SEPARATE_BL2_FIP \ 81796a8ed14SJiafei Pan SEPARATE_BL2_NOLOAD_REGION \ 818327131c4SLeonardo Sandoval SEPARATE_NOBITS_REGION \ 81986acbbe2SYe Li SEPARATE_RWDATA_REGION \ 820308ebfa1SMadhukar Pappireddy SEPARATE_SIMD_SECTION \ 821327131c4SLeonardo Sandoval RECLAIM_INIT_CODE \ 822327131c4SLeonardo Sandoval SPD_${SPD} \ 823327131c4SLeonardo Sandoval SPIN_ON_BL1_EXIT \ 824327131c4SLeonardo Sandoval SPM_MM \ 8251d63ae4dSMarc Bonnici SPMC_AT_EL3 \ 8260322d7afSJay Monkman SPMC_AT_EL3_PARTITION_MAX_UUIDS \ 827801cd3c8SNishant Sharma SPMC_AT_EL3_SEL0_SP \ 828327131c4SLeonardo Sandoval SPMD_SPM_AT_SEL2 \ 8293ba2c151SRaymond Mao TRANSFER_LIST \ 830327131c4SLeonardo Sandoval TRUSTED_BOARD_BOOT \ 8317dfb9911SJimmy Brisson TRNG_SUPPORT \ 832ffea3844SSona Mathew ERRATA_ABI_SUPPORT \ 833ef63f5beSSona Mathew ERRATA_NON_ARM_INTERCONNECT \ 834327131c4SLeonardo Sandoval USE_COHERENT_MEM \ 835327131c4SLeonardo Sandoval USE_DEBUGFS \ 836327131c4SLeonardo Sandoval ARM_IO_IN_DTB \ 837327131c4SLeonardo Sandoval SDEI_IN_FCONF \ 838327131c4SLeonardo Sandoval SEC_INT_DESC_IN_FCONF \ 839327131c4SLeonardo Sandoval USE_ROMLIB \ 840327131c4SLeonardo Sandoval USE_TBBR_DEFS \ 841291e493dSHarrison Mutai USE_KERNEL_DT_CONVENTION \ 842327131c4SLeonardo Sandoval WARMBOOT_ENABLE_DCACHE_EARLY \ 84342d4d3baSArvind Ram Prakash RESET_TO_BL2 \ 84442d4d3baSArvind Ram Prakash BL2_RUNS_AT_EL3 \ 845327131c4SLeonardo Sandoval BL2_IN_XIP_MEM \ 846327131c4SLeonardo Sandoval BL2_INV_DCACHE \ 847327131c4SLeonardo Sandoval USE_SPINLOCK_CAS \ 848327131c4SLeonardo Sandoval ERRATA_SPECULATIVE_AT \ 84945c7328cSBoyan Karatotev ERRATA_SME_POWER_DOWN \ 85000e8f79cSManish Pandey RAS_TRAP_NS_ERR_REC_ACCESS \ 851327131c4SLeonardo Sandoval COT_DESC_IN_DTB \ 852327131c4SLeonardo Sandoval USE_SP804_TIMER \ 85312cd65e0STomas Pilar ENABLE_FEAT_RNG \ 854ff86e0b4SJuan Pablo Conde ENABLE_FEAT_RNG_TRAP \ 8554e04478aSChris Kay ENABLE_FEAT_SB \ 8567d33ffe4SDaniel Boulby ENABLE_FEAT_DIT \ 8575357f83dSManish V Badarkhe NR_OF_FW_BANKS \ 8585357f83dSManish V Badarkhe NR_OF_IMAGES_IN_FW_BANK \ 859396b339dSManish V Badarkhe PSA_FWU_SUPPORT \ 86011d05a77SSughosh Ganu PSA_FWU_METADATA_FW_STORE_DESC \ 861744ad974Sjohpow01 ENABLE_BRBE_FOR_NS \ 862813524eaSManish V Badarkhe ENABLE_TRBE_FOR_NS \ 863d4582d30SManish V Badarkhe ENABLE_SYS_REG_TRACE_FOR_NS \ 8648fcd3d96SManish V Badarkhe ENABLE_TRF_FOR_NS \ 865cc2523bbSAndre Przywara ENABLE_FEAT_AIE \ 866cb4ec47bSjohpow01 ENABLE_FEAT_HCX \ 86768120783SChris Kay ENABLE_MPMM \ 868f74cb0beSJayanth Dodderi Chidanand ENABLE_FEAT_FGT \ 86933e6aaacSArvind Ram Prakash ENABLE_FEAT_FGT2 \ 8704274b526SArvind Ram Prakash ENABLE_FEAT_FGWTE3 \ 871a57e18e4SArvind Ram Prakash ENABLE_FEAT_FPMR \ 872f74cb0beSJayanth Dodderi Chidanand ENABLE_FEAT_ECV \ 873714a1a93SManish Pandey ENABLE_FEAT_EBEP \ 8746a0da736SJayanth Dodderi Chidanand ENABLE_FEAT_AMUv1p1 \ 8756a0da736SJayanth Dodderi Chidanand ENABLE_FEAT_SEL2 \ 8766a0da736SJayanth Dodderi Chidanand ENABLE_FEAT_VHE \ 877d6affea1SGovindraj Raja ENABLE_FEAT_CLRBHB \ 878a1032bebSJohn Powell ENABLE_FEAT_CPA2 \ 8796a0da736SJayanth Dodderi Chidanand ENABLE_FEAT_CSV2_2 \ 88030019d86SSona Mathew ENABLE_FEAT_CSV2_3 \ 88119d52a83SAndre Przywara ENABLE_FEAT_LS64_ACCDATA \ 8827e84f3cfSTushar Khandelwal ENABLE_FEAT_MEC \ 8836a0da736SJayanth Dodderi Chidanand ENABLE_FEAT_PAN \ 884d3331603SMark Brown ENABLE_FEAT_TCR2 \ 8856d0433f0SJayanth Dodderi Chidanand ENABLE_FEAT_THE \ 886062b6c6bSMark Brown ENABLE_FEAT_S2PIE \ 887062b6c6bSMark Brown ENABLE_FEAT_S1PIE \ 888062b6c6bSMark Brown ENABLE_FEAT_S2POE \ 889062b6c6bSMark Brown ENABLE_FEAT_S1POE \ 8904ec4e545SJayanth Dodderi Chidanand ENABLE_FEAT_SCTLR2 \ 89130655136SGovindraj Raja ENABLE_FEAT_D128 \ 8925e827bf0STimothy Hayes ENABLE_FEAT_RME_GDI \ 893688ab57bSMark Brown ENABLE_FEAT_GCS \ 8946b8df7b9SArvind Ram Prakash ENABLE_FEAT_MOPS \ 8958cef63d6SBoyan Karatotev ENABLE_FEAT_GCIE \ 8968e397889SGovindraj Raja ENABLE_FEAT_MTE2 \ 897b3bcfd12SAndre Przywara ENABLE_FEAT_PFAR \ 8986a0da736SJayanth Dodderi Chidanand FEATURE_DETECTION \ 899781d07a4SJayanth Dodderi Chidanand TWED_DELAY \ 900781d07a4SJayanth Dodderi Chidanand ENABLE_FEAT_TWED \ 90104c7303bSOkash Khawaja CONDITIONAL_CMO \ 9020ed3be6fSVarun Wadekar IMPDEF_SYSREG_TRAP \ 903a8cf6faeSJayanth Dodderi Chidanand SVE_VECTOR_LEN \ 904890b5088SRaghu Krishnamurthy ENABLE_SPMD_LP \ 9055782b890SManish V Badarkhe PSA_CRYPTO \ 90685bebe18SSandrine Bailleux ENABLE_CONSOLE_GETC \ 907183329a5SArvind Ram Prakash INIT_UNUSED_NS_EL2 \ 908bfef8b90SJuan Pablo Conde PLATFORM_REPORT_CTX_MEM_USE \ 909ae770fedSYann Gautier EARLY_CONSOLE \ 910f99a69c3SArvind Ram Prakash PRESERVE_DSU_PMU_REGS \ 9118953568aSLevi Yun HOB_LIST \ 9122f5fd826SHarrison Mutai HW_CONFIG_BASE \ 913cf48f49fSManish V Badarkhe LFA_SUPPORT \ 914327131c4SLeonardo Sandoval))) 9152fae4b1eSJeenu Viswambharan 916bfef8b90SJuan Pablo Condeifeq (${PLATFORM_REPORT_CTX_MEM_USE}, 1) 917bfef8b90SJuan Pablo Condeifeq (${DEBUG}, 0) 918bfef8b90SJuan Pablo Conde $(warning "PLATFORM_REPORT_CTX_MEM_USE can be applied when DEBUG=1 only") 919bfef8b90SJuan Pablo Conde override PLATFORM_REPORT_CTX_MEM_USE := 0 920bfef8b90SJuan Pablo Condeendif 921bfef8b90SJuan Pablo Condeendif 922bfef8b90SJuan Pablo Conde 9231f461979SJustin Chadwellifeq (${SANITIZE_UB},trap) 9241f461979SJustin Chadwell $(eval $(call add_define,MONITOR_TRAPS)) 925c5e1da83SJayanth Dodderi Chidanandendif #(SANITIZE_UB) 9261f461979SJustin Chadwell 9274c117f6cSSandrine Bailleux# Define the EL3_PAYLOAD_BASE flag only if it is provided. 9284c117f6cSSandrine Bailleuxifdef EL3_PAYLOAD_BASE 9294c117f6cSSandrine Bailleux $(eval $(call add_define,EL3_PAYLOAD_BASE)) 930cf2c8a33SAntonio Nino Diazelse 93168450a6dSAntonio Nino Diaz# Define the PRELOADED_BL33_BASE flag only if it is provided and 93268450a6dSAntonio Nino Diaz# EL3_PAYLOAD_BASE is not defined, as it has priority. 93368450a6dSAntonio Nino Diaz ifdef PRELOADED_BL33_BASE 93468450a6dSAntonio Nino Diaz $(eval $(call add_define,PRELOADED_BL33_BASE)) 9354c117f6cSSandrine Bailleux endif 936c5e1da83SJayanth Dodderi Chidanandendif #(EL3_PAYLOAD_BASE) 93773c99d4eSJuan Castillo 938209a60ccSSoby Mathew# Define the DYN_DISABLE_AUTH flag only if set. 939209a60ccSSoby Mathewifeq (${DYN_DISABLE_AUTH},1) 940209a60ccSSoby Mathew $(eval $(call add_define,DYN_DISABLE_AUTH)) 941209a60ccSSoby Mathewendif 942209a60ccSSoby Mathew 9438620bd0bSChris Kayifeq ($($(ARCH)-ld-id),arm-link) 944c2ad38ceSVarun Wadekar $(eval $(call add_define,USE_ARM_LINK)) 945c2ad38ceSVarun Wadekarendif 946c2ad38ceSVarun Wadekar 947ce2b1ec6SManish Pandey# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined 948ce2b1ec6SManish Pandeyifeq (${SPD},spmd) 949c33ff198SOlivier Deprezifdef SP_LAYOUT_FILE 950ce2b1ec6SManish Pandey -include $(BUILD_PLAT)/sp_gen.mk 951ce2b1ec6SManish Pandey FIP_DEPS += sp 95207c44475SManish Pandey CRT_DEPS += sp 953ce2b1ec6SManish Pandey NEED_SP_PKG := yes 954ce2b1ec6SManish Pandeyelse 955c33ff198SOlivier Deprez ifeq (${SPMD_SPM_AT_SEL2},1) 956c33ff198SOlivier Deprez $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE") 957c33ff198SOlivier Deprez endif 958c5e1da83SJayanth Dodderi Chidanandendif #(SP_LAYOUT_FILE) 959c5e1da83SJayanth Dodderi Chidanandendif #(SPD) 960ce2b1ec6SManish Pandey 96173c99d4eSJuan Castillo################################################################################ 9623df79ae7SBoyan Karatotev# Configure the flags for the specified compiler and linker 9633df79ae7SBoyan Karatotev################################################################################ 9643df79ae7SBoyan Karatotevinclude ${MAKE_HELPERS_DIRECTORY}cflags.mk 9653df79ae7SBoyan Karatotev 9663df79ae7SBoyan Karatotev################################################################################ 96773c99d4eSJuan Castillo# Build targets 96873c99d4eSJuan Castillo################################################################################ 96973c99d4eSJuan Castillo 9702329e22bSHarrison Mutai.PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp tl fwu_fip certtool dtbs memmap doc enctool 97173c99d4eSJuan Castillo 97273c99d4eSJuan Castilloall: msg_start 97373c99d4eSJuan Castillo 97473c99d4eSJuan Castillomsg_start: 9757c4e1eeaSChris Kay $(s)echo "Building ${PLAT}" 97673c99d4eSJuan Castillo 97761f72a34SRoberto Vargas$(eval $(call MAKE_LIB,c)) 9785fee0287SRoberto Vargas 97973c99d4eSJuan Castillo# Expand build macros for the different images 98073c99d4eSJuan Castilloifeq (${NEED_BL1},yes) 981b34635a0SChris KayBL1_SOURCES := $(sort ${BL1_SOURCES}) 982434d0491SZelalem Aweke$(eval $(call MAKE_BL,bl1)) 983c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL1) 98473c99d4eSJuan Castillo 98573c99d4eSJuan Castilloifeq (${NEED_BL2},yes) 986c5e1da83SJayanth Dodderi Chidanand 98742d4d3baSArvind Ram Prakashifeq (${RESET_TO_BL2}, 0) 988c9b31ae8SRoberto VargasFIP_BL2_ARGS := tb-fw 989c9b31ae8SRoberto Vargasendif 990c9b31ae8SRoberto Vargas 991eb1acfb6SChris KayBL2_SOURCES := $(sort ${BL2_SOURCES}) 992eb1acfb6SChris Kay 993d57362bdSXialin Liuifeq (${SEPARATE_BL2_FIP},1) 994d57362bdSXialin Liu$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS},BL2_)), \ 995d57362bdSXialin Liu $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS},BL2_))) 996d57362bdSXialin Liuelse 99733950dd8SMasahiro Yamada$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})), \ 998434d0491SZelalem Aweke $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS}))) 999d57362bdSXialin Liuendif #(SEPARATE_BL2_FIP) 1000c5e1da83SJayanth Dodderi Chidanand 1001c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL2) 100273c99d4eSJuan Castillo 10034d045d0eSMasahiro Yamadaifeq (${NEED_SCP_BL2},yes) 100433950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw)) 1005c5e1da83SJayanth Dodderi Chidanandendif #(NEED_SCP_BL2) 10064d045d0eSMasahiro Yamada 100773c99d4eSJuan Castilloifeq (${NEED_BL31},yes) 100873c99d4eSJuan CastilloBL31_SOURCES += ${SPD_SOURCES} 100926d1e0c3SMadhukar Pappireddy# Sort BL31 source files to remove duplicates 101026d1e0c3SMadhukar PappireddyBL31_SOURCES := $(sort ${BL31_SOURCES}) 1011c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none) 1012c6ba9b45SSumit Garg$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\ 1013434d0491SZelalem Aweke $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31)))) 1014c6ba9b45SSumit Gargelse 101533950dd8SMasahiro Yamada$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\ 1016434d0491SZelalem Aweke $(eval $(call MAKE_BL,bl31,soc-fw))) 1017c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT) 1018c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL31) 101973c99d4eSJuan Castillo 102070d1fc53SJuan Castillo# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the 1021c939d13aSMasahiro Yamada# build system will call TOOL_ADD_IMG to print a warning message and abort the 102270d1fc53SJuan Castillo# process. Note that the dependency on BL32 applies to the FIP only. 102373c99d4eSJuan Castilloifeq (${NEED_BL32},yes) 102426d1e0c3SMadhukar Pappireddy# Sort BL32 source files to remove duplicates 102526d1e0c3SMadhukar PappireddyBL32_SOURCES := $(sort ${BL32_SOURCES}) 10269cd15239SMasahiro YamadaBUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1)) 10279cd15239SMasahiro Yamada 1028c6ba9b45SSumit Gargifneq (${DECRYPTION_SUPPORT},none) 1029434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\ 1030c6ba9b45SSumit Garg $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32)))) 1031c6ba9b45SSumit Gargelse 1032434d0491SZelalem Aweke$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\ 103333950dd8SMasahiro Yamada $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw))) 1034c5e1da83SJayanth Dodderi Chidanandendif #(DECRYPTION_SUPPORT) 1035c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL32) 103673c99d4eSJuan Castillo 10375b18de09SZelalem Aweke# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP) 10385b18de09SZelalem Aweke# needs to be built from RMM_SOURCES. 10395b18de09SZelalem Awekeifeq (${NEED_RMM},yes) 10405b18de09SZelalem Aweke# Sort RMM source files to remove duplicates 10415b18de09SZelalem AwekeRMM_SOURCES := $(sort ${RMM_SOURCES}) 10425b18de09SZelalem AwekeBUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1)) 10435b18de09SZelalem Aweke 10445b18de09SZelalem Aweke$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\ 10455b18de09SZelalem Aweke $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw))) 1046c5e1da83SJayanth Dodderi Chidanandendif #(NEED_RMM) 10475b18de09SZelalem Aweke 104873c99d4eSJuan Castillo# Add the BL33 image if required by the platform 104973c99d4eSJuan Castilloifeq (${NEED_BL33},yes) 105033950dd8SMasahiro Yamada$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw)) 1051c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL33) 1052db6071c9SJuan Castillo 10539003fa0bSYatharth Kocharifeq (${NEED_BL2U},yes) 105433950dd8SMasahiro Yamada$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\ 1055434d0491SZelalem Aweke $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_))) 1056c5e1da83SJayanth Dodderi Chidanandendif #(NEED_BL2U) 10579003fa0bSYatharth Kochar 105803b397a8SNishanth Menon# Expand build macros for the different images 105903b397a8SNishanth Menonifeq (${NEED_FDT},yes) 106003b397a8SNishanth Menon $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES))) 10611c08ff32SSalman Nabi 10621c08ff32SSalman Nabi ifneq (${INITRD_SIZE}${INITRD_PATH},) 10631c08ff32SSalman Nabi ifndef INITRD_BASE 10641c08ff32SSalman Nabi $(error INITRD_BASE must be set when inserting initrd properties to the DTB.) 10651c08ff32SSalman Nabi endif 10661c08ff32SSalman Nabi 10671c08ff32SSalman Nabi INITRD_SIZE ?= $(shell printf "0x%x\n" $$(stat -Lc %s $(INITRD_PATH))) 10681c08ff32SSalman Nabi initrd_end = $(shell printf "0x%x\n" $$(expr $$(($(INITRD_BASE) + $(INITRD_SIZE))))) 10691c08ff32SSalman Nabi 10701c08ff32SSalman Nabi define $(HW_CONFIG)-after += 10711c08ff32SSalman Nabi $(s)echo " INITRD $(HW_CONFIG)" 10721c08ff32SSalman Nabi $(q)fdtput -t x $@ /chosen linux,initrd-start $(INITRD_BASE) 10731c08ff32SSalman Nabi $(q)fdtput -t x $@ /chosen linux,initrd-end $(initrd_end) 10741c08ff32SSalman Nabi endef 10751c08ff32SSalman Nabi endif 1076c5e1da83SJayanth Dodderi Chidanandendif #(NEED_FDT) 107703b397a8SNishanth Menon 1078ce2b1ec6SManish Pandey# Add Secure Partition packages 1079ce2b1ec6SManish Pandeyifeq (${NEED_SP_PKG},yes) 1080fd74ca0dSChris Kay$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | $$(@D)/ 1081679e27ceSChris Kay $(if $(host-poetry),$(q)poetry -q install --no-root) 1082dd816235SKathleen Capella $(q)$(if $(host-poetry),poetry run )${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT} 1083822c7279SJ-Alvessp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS) 10847c4e1eeaSChris Kay $(s)echo 10857c4e1eeaSChris Kay $(s)echo "Built SP Images successfully" 10867c4e1eeaSChris Kay $(s)echo 1087c5e1da83SJayanth Dodderi Chidanandendif #(NEED_SP_PKG) 1088ce2b1ec6SManish Pandey 108936eaaf37SIan Spraylocate-checkpatch: 109036eaaf37SIan Sprayifndef CHECKPATCH 109166079b04SEtienne Carriere $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl") 109236eaaf37SIan Sprayelse 109336eaaf37SIan Sprayifeq (,$(wildcard ${CHECKPATCH})) 109466079b04SEtienne Carriere $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl") 109536eaaf37SIan Sprayendif 1096c5e1da83SJayanth Dodderi Chidanandendif #(CHECKPATCH) 109736eaaf37SIan Spray 10984f6ad66aSAchin Guptaclean: 10997c4e1eeaSChris Kay $(s)echo " CLEAN" 1100c3273703SChris Kay $(q)rm -rf $(BUILD_PLAT) 1101cbd6cec3SBoyan Karatotev $(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=${BUILD_PLAT} --no-print-directory -C ${FIPTOOLPATH} clean 1102cbd6cec3SBoyan Karatotev $(q)rm -rf ${FIPTOOLPATH}/fiptool 1103f4595e6eSBoyan Karatotev $(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=${BUILD_PLAT} --no-print-directory -C ${CRTTOOLPATH} clean 1104f4595e6eSBoyan Karatotev $(q)rm -rf ${CRTTOOLPATH}/cert_create 110596fbe884SBoyan Karatotev $(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=${BUILD_PLAT} --no-print-directory -C ${ENCTOOLPATH} clean 11067c4e1eeaSChris Kay $(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean 11074f6ad66aSAchin Gupta 1108eaaeece2SJames Morrisseyrealclean distclean: 11097c4e1eeaSChris Kay $(s)echo " REALCLEAN" 1110c3273703SChris Kay $(q)rm -rf $(BUILD_BASE) 1111c3273703SChris Kay $(q)rm -rf $(CURDIR)/cscope.* 1112cbd6cec3SBoyan Karatotev $(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=${BUILD_PLAT} --no-print-directory -C ${FIPTOOLPATH} clean 1113cbd6cec3SBoyan Karatotev $(q)rm -rf ${FIPTOOLPATH}/fiptool 1114f4595e6eSBoyan Karatotev $(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=${BUILD_PLAT} --no-print-directory -C ${CRTTOOLPATH} clean 1115f4595e6eSBoyan Karatotev $(q)rm -rf ${CRTTOOLPATH}/cert_create 111696fbe884SBoyan Karatotev $(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=${BUILD_PLAT} --no-print-directory -C ${ENCTOOLPATH} clean 11177c4e1eeaSChris Kay $(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean 11184f6ad66aSAchin Gupta 111936eaaf37SIan Spraycheckcodebase: locate-checkpatch 11207c4e1eeaSChris Kay $(s)echo " CHECKING STYLE" 11217c4e1eeaSChris Kay $(q)if test -d .git ; then \ 11221ef35512SPaul Beesley git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \ 11231a41e8c1SDan Handley while read GIT_FILE ; \ 11241a41e8c1SDan Handley do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \ 11251a41e8c1SDan Handley done ; \ 112636eaaf37SIan Spray else \ 11271a41e8c1SDan Handley find . -type f -not -iwholename "*.git*" \ 11281a41e8c1SDan Handley -not -iwholename "*build*" \ 11291a41e8c1SDan Handley -not -iwholename "*libfdt*" \ 113061f72a34SRoberto Vargas -not -iwholename "*libc*" \ 11311a41e8c1SDan Handley -not -iwholename "*docs*" \ 11321ef35512SPaul Beesley -not -iwholename "*.rst" \ 11331a41e8c1SDan Handley -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \ 113436eaaf37SIan Spray fi 113536eaaf37SIan Spray 113636eaaf37SIan Spraycheckpatch: locate-checkpatch 11377c4e1eeaSChris Kay $(s)echo " CHECKING STYLE" 11387c4e1eeaSChris Kay $(q)if test -n "${CHECKPATCH_OPTS}"; then \ 113902a76d5fSYann Gautier echo " with ${CHECKPATCH_OPTS} option(s)"; \ 114002a76d5fSYann Gautier fi 11417c4e1eeaSChris Kay $(q)COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \ 114277a0a7f1SYann Gautier for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \ 114377a0a7f1SYann Gautier do \ 114451d28937SAntonio Nino Diaz printf "\n[*] Checking style of '$$commit'\n\n"; \ 11451a721748SYann Gautier ( git log --format=email "$$commit~..$$commit" \ 11461a721748SYann Gautier -- ${CHECK_PATHS} ; \ 114751d28937SAntonio Nino Diaz git diff --format=email "$$commit~..$$commit" \ 11481a721748SYann Gautier -- ${CHECK_PATHS}; ) | \ 114902a76d5fSYann Gautier ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \ 115051d28937SAntonio Nino Diaz done 115136eaaf37SIan Spray 115273c99d4eSJuan Castillocerttool: ${CRTTOOL} 115373c99d4eSJuan Castillo 1154774fb379SBoyan Karatotev${CRTTOOL}: FORCE | $$(@D)/ 1155f4595e6eSBoyan Karatotev $(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=$(abspath ${BUILD_PLAT}) USE_TBBR_DEFS=${USE_TBBR_DEFS} COT=${COT} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} --no-print-directory -C ${CRTTOOLPATH} all 1156f4595e6eSBoyan Karatotev $(q)ln -sf ${CRTTOOL} ${CRTTOOLPATH}/cert_create 11577c4e1eeaSChris Kay $(s)echo 11587c4e1eeaSChris Kay $(s)echo "Built $@ successfully" 11597c4e1eeaSChris Kay $(s)echo 11606f971622SJuan Castillo 11616f971622SJuan Castilloifneq (${GENERATE_COT},0) 1162f02135a3SFabien Lehousselcertificates: ${CRT_DEPS} ${CRTTOOL} ${DTBS} 11637c4e1eeaSChris Kay $(q)${CRTTOOL} ${CRT_ARGS} 11647c4e1eeaSChris Kay $(s)echo 11657c4e1eeaSChris Kay $(s)echo "Built $@ successfully" 11667c4e1eeaSChris Kay $(s)echo "Certificates can be found in ${BUILD_PLAT}" 11677c4e1eeaSChris Kay $(s)echo 1168c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT) 116927713fb4SSoby Mathew 1170d57362bdSXialin Liuifeq (${SEPARATE_BL2_FIP},1) 1171774fb379SBoyan Karatotev${BUILD_PLAT}/${BL2_FIP_NAME}: ${BL2_FIP_DEPS} ${FIPTOOL} | $$(@D)/ 1172d57362bdSXialin Liu $(eval ${CHECK_BL2_FIP_CMD}) 1173d57362bdSXialin Liu $(q)${FIPTOOL} create ${BL2_FIP_ARGS} $@ 1174d57362bdSXialin Liu $(q)${FIPTOOL} info $@ 1175d57362bdSXialin Liu $(s)echo 1176d57362bdSXialin Liu $(s)echo "Built $@ successfully" 1177d57362bdSXialin Liu $(s)echo 1178d57362bdSXialin Liuendif #(SEPARATE_BL2_FIP) 1179d57362bdSXialin Liu 1180774fb379SBoyan Karatotev${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL} | $$(@D)/ 11814727fd13SPali Rohár $(eval ${CHECK_FIP_CMD}) 11827c4e1eeaSChris Kay $(q)${FIPTOOL} create ${FIP_ARGS} $@ 11837c4e1eeaSChris Kay $(q)${FIPTOOL} info $@ 11847c4e1eeaSChris Kay $(s)echo 11857c4e1eeaSChris Kay $(s)echo "Built $@ successfully" 11867c4e1eeaSChris Kay $(s)echo 1187f58ad36fSHarry Liebel 11880191262dSYatharth Kocharifneq (${GENERATE_COT},0) 11890191262dSYatharth Kocharfwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL} 11907c4e1eeaSChris Kay $(q)${CRTTOOL} ${FWU_CRT_ARGS} 11917c4e1eeaSChris Kay $(s)echo 11927c4e1eeaSChris Kay $(s)echo "Built $@ successfully" 11937c4e1eeaSChris Kay $(s)echo "FWU certificates can be found in ${BUILD_PLAT}" 11947c4e1eeaSChris Kay $(s)echo 1195c5e1da83SJayanth Dodderi Chidanandendif #(GENERATE_COT) 11960191262dSYatharth Kochar 1197d57362bdSXialin Liuifneq (${GENERATE_COT},0) 1198774fb379SBoyan Karatotevbl2_certificates: ${BUILD_PLAT}/${FIP_NAME} ${BL2_CRT_DEPS} ${CRTTOOL} | ${BUILD_PLAT}/ 1199d57362bdSXialin Liu $(q)${CRTTOOL} ${BL2_CRT_ARGS} 1200d57362bdSXialin Liu $(s)echo 1201d57362bdSXialin Liu $(s)echo "Built $@ successfully" 1202d57362bdSXialin Liu $(s)echo "BL2 certificates can be found in ${BUILD_PLAT}" 1203d57362bdSXialin Liu $(s)echo 1204d57362bdSXialin Liuendif #(GENERATE_COT) 1205d57362bdSXialin Liu 1206774fb379SBoyan Karatotev${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL} | $$(@D)/ 12074727fd13SPali Rohár $(eval ${CHECK_FWU_FIP_CMD}) 12087c4e1eeaSChris Kay $(q)${FIPTOOL} create ${FWU_FIP_ARGS} $@ 12097c4e1eeaSChris Kay $(q)${FIPTOOL} info $@ 12107c4e1eeaSChris Kay $(s)echo 12117c4e1eeaSChris Kay $(s)echo "Built $@ successfully" 12127c4e1eeaSChris Kay $(s)echo 12130191262dSYatharth Kochar 121473c99d4eSJuan Castillofiptool: ${FIPTOOL} 1215d57362bdSXialin Liuifeq (${SEPARATE_BL2_FIP},1) 1216d57362bdSXialin Liubl2_fip: ${BUILD_PLAT}/${BL2_FIP_NAME} 1217d57362bdSXialin Liufip: bl2_fip 1218d57362bdSXialin Liuelse 121973c99d4eSJuan Castillofip: ${BUILD_PLAT}/${FIP_NAME} 1220d57362bdSXialin Liuendif #(SEPARATE_BL2_FIP) 12210191262dSYatharth Kocharfwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME} 122273c99d4eSJuan Castillo 1223cbd6cec3SBoyan Karatotev# symlink for compatibility before tools were in the build directory 1224774fb379SBoyan Karatotev${FIPTOOL}: FORCE | $$(@D)/ 1225cbd6cec3SBoyan Karatotev $(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=$(abspath ${BUILD_PLAT}) CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} --no-print-directory -C ${FIPTOOLPATH} all 1226cbd6cec3SBoyan Karatotev $(q)ln -sf ${FIPTOOL} ${FIPTOOLPATH}/fiptool 1227f58ad36fSHarry Liebel 1228774fb379SBoyan Karatotev$(BUILD_PLAT)/romlib/romlib.bin $(BUILD_PLAT)/lib/libwrappers.a $&: $(BUILD_PLAT)/lib/libfdt.a $(BUILD_PLAT)/lib/libc.a $(CRYPTO_LIB) | $$(@D)/ 12296e2fe623SLauren Wehrmeister $(q)${MAKE} PLAT_DIR=${PLAT_DIR} BUILD_PLAT=${BUILD_PLAT} ENABLE_BTI=${ENABLE_BTI} CRYPTO_LIB=$(CRYPTO_LIB) ARM_ARCH_MINOR=${ARM_ARCH_MINOR} INCLUDES=$(call escape-shell,$(INCLUDES)) DEFINES=$(call escape-shell,$(DEFINES)) --no-print-directory -C ${ROMLIBPATH} all 12305accce5bSRoberto Vargas 1231cfe83910SLouis Mayencourtmemmap: all 1232c25405d6SChris Kay $(if $(host-poetry),$(q)poetry -q install --no-root) 12334aa3f18dSChris Kay $(q)$(if $(host-poetry),poetry run )memory --root ${BUILD_PLAT} symbols 1234cfe83910SLouis Mayencourt 12352329e22bSHarrison Mutaitl: ${BUILD_PLAT}/tl.bin 1236774fb379SBoyan Karatotev${BUILD_PLAT}/tl.bin: ${HW_CONFIG} | $$(@D)/ 1237c25405d6SChris Kay $(if $(host-poetry),$(q)poetry -q install --no-root) 1238d2867397SChris Kay $(q)$(if $(host-poetry),poetry run )tlc create --fdt $< -s ${FW_HANDOFF_SIZE} $@ 12392329e22bSHarrison Mutai 12406de32378SMadhukar Pappireddydoc: 12417c4e1eeaSChris Kay $(s)echo " BUILD DOCUMENTATION" 1242c61c9a31SHarrison Mutai $(if $(host-poetry),$(q)poetry -q install --with docs --no-root) 1243725a80d7SBoyan Karatotev $(q)$(if $(host-poetry),poetry run )${MAKE} --no-print-directory -C ${DOCS_PATH} BUILDDIR=$(abspath ${BUILD_BASE}/docs) html 12446de32378SMadhukar Pappireddy 124590aa901fSSumit Gargenctool: ${ENCTOOL} 124690aa901fSSumit Garg 1247774fb379SBoyan Karatotev${ENCTOOL}: FORCE | $$(@D)/ 124896fbe884SBoyan Karatotev $(q)${MAKE} PLAT=${PLAT} BUILD_PLAT=$(abspath ${BUILD_PLAT}) BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} --no-print-directory -C ${ENCTOOLPATH} all 12497c4e1eeaSChris Kay $(s)echo 12507c4e1eeaSChris Kay $(s)echo "Built $@ successfully" 12517c4e1eeaSChris Kay $(s)echo 125290aa901fSSumit Garg 125335fab8c9SJoakim Bechcscope: 12547c4e1eeaSChris Kay $(s)echo " CSCOPE" 12557c4e1eeaSChris Kay $(q)find ${CURDIR} -name "*.[chsS]" > cscope.files 12567c4e1eeaSChris Kay $(q)cscope -b -q -k 125735fab8c9SJoakim Bech 125872ee3314SRyan Harkinhelp: 12597c4e1eeaSChris Kay $(s)echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]" 12607c4e1eeaSChris Kay $(s)echo "" 12617c4e1eeaSChris Kay $(s)echo "PLAT is used to specify which platform you wish to build." 12627c4e1eeaSChris Kay $(s)echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}" 12637c4e1eeaSChris Kay $(s)echo "" 12647c4e1eeaSChris Kay $(s)echo "platform = ${PLATFORM_LIST}" 12657c4e1eeaSChris Kay $(s)echo "" 12667c4e1eeaSChris Kay $(s)echo "Please refer to the User Guide for a list of all supported options." 12677c4e1eeaSChris Kay $(s)echo "Note that the build system doesn't track dependencies for build " 12687c4e1eeaSChris Kay $(s)echo "options. Therefore, if any of the build options are changed " 12697c4e1eeaSChris Kay $(s)echo "from a previous build, a clean build must be performed." 12707c4e1eeaSChris Kay $(s)echo "" 12717c4e1eeaSChris Kay $(s)echo "Supported Targets:" 12727c4e1eeaSChris Kay $(s)echo " all Build all individual bootloader binaries" 12737c4e1eeaSChris Kay $(s)echo " bl1 Build the BL1 binary" 12747c4e1eeaSChris Kay $(s)echo " bl2 Build the BL2 binary" 12757c4e1eeaSChris Kay $(s)echo " bl2u Build the BL2U binary" 12767c4e1eeaSChris Kay $(s)echo " bl31 Build the BL31 binary" 12777c4e1eeaSChris Kay $(s)echo " bl32 Build the BL32 binary. If ARCH=aarch32, then " 12787c4e1eeaSChris Kay $(s)echo " this builds secure payload specified by AARCH32_SP" 12797c4e1eeaSChris Kay $(s)echo " certificates Build the certificates (requires 'GENERATE_COT=1')" 12807c4e1eeaSChris Kay $(s)echo " fip Build the Firmware Image Package (FIP)" 12817c4e1eeaSChris Kay $(s)echo " fwu_fip Build the FWU Firmware Image Package (FIP)" 12827c4e1eeaSChris Kay $(s)echo " checkcodebase Check the coding style of the entire source tree" 12837c4e1eeaSChris Kay $(s)echo " checkpatch Check the coding style on changes in the current" 12847c4e1eeaSChris Kay $(s)echo " branch against BASE_COMMIT (default origin/master)" 12857c4e1eeaSChris Kay $(s)echo " clean Clean the build for the selected platform" 12867c4e1eeaSChris Kay $(s)echo " cscope Generate cscope index" 12877c4e1eeaSChris Kay $(s)echo " distclean Remove all build artifacts for all platforms" 12887c4e1eeaSChris Kay $(s)echo " certtool Build the Certificate generation tool" 12897c4e1eeaSChris Kay $(s)echo " enctool Build the Firmware encryption tool" 12907c4e1eeaSChris Kay $(s)echo " fiptool Build the Firmware Image Package (FIP) creation tool" 12917c4e1eeaSChris Kay $(s)echo " sp Build the Secure Partition Packages" 12927c4e1eeaSChris Kay $(s)echo " sptool Build the Secure Partition Package creation tool" 12937c4e1eeaSChris Kay $(s)echo " dtbs Build the Device Tree Blobs (if required for the platform)" 12947c4e1eeaSChris Kay $(s)echo " memmap Print the memory map of the built binaries" 12957c4e1eeaSChris Kay $(s)echo " doc Build html based documentation using Sphinx tool" 12967c4e1eeaSChris Kay $(s)echo "" 12977c4e1eeaSChris Kay $(s)echo "Note: most build targets require PLAT to be set to a specific platform." 12987c4e1eeaSChris Kay $(s)echo "" 12997c4e1eeaSChris Kay $(s)echo "example: build all targets for the FVP platform:" 13007c4e1eeaSChris Kay $(s)echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all" 1301a9812206SPali Rohár 1302a9812206SPali Rohár.PHONY: FORCE 1303a9812206SPali RohárFORCE:; 1304