12fae4b1eSJeenu Viswambharan# 2ae770fedSYann Gautier# Copyright (c) 2016-2024, Arm Limited. All rights reserved. 32fae4b1eSJeenu Viswambharan# 482cb2c1aSdp-arm# SPDX-License-Identifier: BSD-3-Clause 52fae4b1eSJeenu Viswambharan# 62fae4b1eSJeenu Viswambharan 72fae4b1eSJeenu Viswambharan# Default, static values for build variables, listed in alphabetic order. 82fae4b1eSJeenu Viswambharan# Dependencies between build options, if any, are handled in the top-level 92fae4b1eSJeenu Viswambharan# Makefile, after this file is included. This ensures that the former is better 102fae4b1eSJeenu Viswambharan# poised to handle dependencies, as all build variables would have a default 112fae4b1eSJeenu Viswambharan# value by then. 122fae4b1eSJeenu Viswambharan 138fd9d4d5SAntonio Nino Diaz# Use T32 by default 148fd9d4d5SAntonio Nino DiazAARCH32_INSTRUCTION_SET := T32 158fd9d4d5SAntonio Nino Diaz 162fae4b1eSJeenu Viswambharan# The AArch32 Secure Payload to be built as BL32 image 172fae4b1eSJeenu ViswambharanAARCH32_SP := none 182fae4b1eSJeenu Viswambharan 192fae4b1eSJeenu Viswambharan# The Target build architecture. Supported values are: aarch64, aarch32. 202fae4b1eSJeenu ViswambharanARCH := aarch64 212fae4b1eSJeenu Viswambharan 22f1821790SAlexei Fedorov# ARM Architecture feature modifiers: none by default 23f1821790SAlexei FedorovARM_ARCH_FEATURE := none 24f1821790SAlexei Fedorov 25c877b414SJeenu Viswambharan# ARM Architecture major and minor versions: 8.0 by default. 26c877b414SJeenu ViswambharanARM_ARCH_MAJOR := 8 27c877b414SJeenu ViswambharanARM_ARCH_MINOR := 0 28c877b414SJeenu Viswambharan 292fae4b1eSJeenu Viswambharan# Base commit to perform code check on 302fae4b1eSJeenu ViswambharanBASE_COMMIT := origin/master 312fae4b1eSJeenu Viswambharan 32b1d27b48SRoberto Vargas# Execute BL2 at EL3 3342d4d3baSArvind Ram PrakashRESET_TO_BL2 := 0 34b1d27b48SRoberto Vargas 3546789a7cSBalint Dobszay# Only use SP packages if SP layout JSON is defined 3646789a7cSBalint DobszayBL2_ENABLE_SP_LOAD := 0 3746789a7cSBalint Dobszay 387d173fc5SJiafei Pan# BL2 image is stored in XIP memory, for now, this option is only supported 3942d4d3baSArvind Ram Prakash# when RESET_TO_BL2 is 1. 407d173fc5SJiafei PanBL2_IN_XIP_MEM := 0 417d173fc5SJiafei Pan 42b90f207aSHadi Asyrafi# Do dcache invalidate upon BL2 entry at EL3 43b90f207aSHadi AsyrafiBL2_INV_DCACHE := 1 44b90f207aSHadi Asyrafi 459fc59639SAlexei Fedorov# Select the branch protection features to use. 469fc59639SAlexei FedorovBRANCH_PROTECTION := 0 479fc59639SAlexei Fedorov 482fae4b1eSJeenu Viswambharan# By default, consider that the platform may release several CPUs out of reset. 492fae4b1eSJeenu Viswambharan# The platform Makefile is free to override this value. 502fae4b1eSJeenu ViswambharanCOLD_BOOT_SINGLE_CPU := 0 512fae4b1eSJeenu Viswambharan 523429c77aSJulius Werner# Flag to compile in coreboot support code. Exclude by default. The coreboot 533429c77aSJulius Werner# Makefile system will set this when compiling TF as part of a coreboot image. 543429c77aSJulius WernerCOREBOOT := 0 553429c77aSJulius Werner 562fae4b1eSJeenu Viswambharan# For Chain of Trust 572fae4b1eSJeenu ViswambharanCREATE_KEYS := 1 582fae4b1eSJeenu Viswambharan 592fae4b1eSJeenu Viswambharan# Build flag to include AArch32 registers in cpu context save and restore during 602fae4b1eSJeenu Viswambharan# world switch. This flag must be set to 0 for AArch64-only platforms. 612fae4b1eSJeenu ViswambharanCTX_INCLUDE_AARCH32_REGS := 1 622fae4b1eSJeenu Viswambharan 632fae4b1eSJeenu Viswambharan# Include FP registers in cpu context 642fae4b1eSJeenu ViswambharanCTX_INCLUDE_FPREGS := 0 652fae4b1eSJeenu Viswambharan 6642422622SMadhukar Pappireddy# Include SVE registers in cpu context 6742422622SMadhukar PappireddyCTX_INCLUDE_SVE_REGS := 0 6842422622SMadhukar Pappireddy 692fae4b1eSJeenu Viswambharan# Debug build 702fae4b1eSJeenu ViswambharanDEBUG := 0 712fae4b1eSJeenu Viswambharan 727cda17bbSSumit Garg# By default disable authenticated decryption support. 737cda17bbSSumit GargDECRYPTION_SUPPORT := none 747cda17bbSSumit Garg 752fae4b1eSJeenu Viswambharan# Build platform 762fae4b1eSJeenu ViswambharanDEFAULT_PLAT := fvp 772fae4b1eSJeenu Viswambharan 789e4609f1SChristoph Müllner# Disable the generation of the binary image (ELF only). 799e4609f1SChristoph MüllnerDISABLE_BIN_GENERATION := 0 809e4609f1SChristoph Müllner 81209a60ccSSoby Mathew# Enable capability to disable authentication dynamically. Only meant for 82209a60ccSSoby Mathew# development platforms. 83209a60ccSSoby MathewDYN_DISABLE_AUTH := 0 84209a60ccSSoby Mathew 8568120783SChris Kay# Enable the Maximum Power Mitigation Mechanism on supporting cores. 8668120783SChris KayENABLE_MPMM := 0 8768120783SChris Kay 8868120783SChris Kay# Enable MPMM configuration via FCONF. 8968120783SChris KayENABLE_MPMM_FCONF := 0 9068120783SChris Kay 913bd17c0fSSoby Mathew# Flag to Enable Position Independant support (PIE) 923bd17c0fSSoby MathewENABLE_PIE := 0 933bd17c0fSSoby Mathew 942fae4b1eSJeenu Viswambharan# Flag to enable Performance Measurement Framework 952fae4b1eSJeenu ViswambharanENABLE_PMF := 0 962fae4b1eSJeenu Viswambharan 972fae4b1eSJeenu Viswambharan# Flag to enable PSCI STATs functionality 982fae4b1eSJeenu ViswambharanENABLE_PSCI_STAT := 0 992fae4b1eSJeenu Viswambharan 1002fae4b1eSJeenu Viswambharan# Flag to enable runtime instrumentation using PMF 1012fae4b1eSJeenu ViswambharanENABLE_RUNTIME_INSTRUMENTATION := 0 1022fae4b1eSJeenu Viswambharan 10351faada7SDouglas Raillard# Flag to enable stack corruption protection 10451faada7SDouglas RaillardENABLE_STACK_PROTECTOR := 0 10551faada7SDouglas Raillard 10621b818c0SJeenu Viswambharan# Flag to enable exception handling in EL3 10721b818c0SJeenu ViswambharanEL3_EXCEPTION_HANDLING := 0 10821b818c0SJeenu Viswambharan 109c6ba9b45SSumit Garg# By default BL31 encryption disabled 110c6ba9b45SSumit GargENCRYPT_BL31 := 0 111c6ba9b45SSumit Garg 112c6ba9b45SSumit Garg# By default BL32 encryption disabled 113c6ba9b45SSumit GargENCRYPT_BL32 := 0 114c6ba9b45SSumit Garg 115c6ba9b45SSumit Garg# Default dummy firmware encryption key 116c6ba9b45SSumit GargENC_KEY := 1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef 117c6ba9b45SSumit Garg 118c6ba9b45SSumit Garg# Default dummy nonce for firmware encryption 119c6ba9b45SSumit GargENC_NONCE := 1234567890abcdef12345678 120c6ba9b45SSumit Garg 1212fae4b1eSJeenu Viswambharan# Build flag to treat usage of deprecated platform and framework APIs as error. 1222fae4b1eSJeenu ViswambharanERROR_DEPRECATED := 0 1232fae4b1eSJeenu Viswambharan 1241a7c1cfeSJeenu Viswambharan# Fault injection support 1251a7c1cfeSJeenu ViswambharanFAULT_INJECTION_SUPPORT := 0 1261a7c1cfeSJeenu Viswambharan 1276a0da736SJayanth Dodderi Chidanand# Flag to enable architectural features detection mechanism 1286a0da736SJayanth Dodderi ChidanandFEATURE_DETECTION := 0 1296a0da736SJayanth Dodderi Chidanand 1301c75d5dfSMasahiro Yamada# Byte alignment that each component in FIP is aligned to 1311c75d5dfSMasahiro YamadaFIP_ALIGN := 0 1321c75d5dfSMasahiro Yamada 1332fae4b1eSJeenu Viswambharan# Default FIP file name 1342fae4b1eSJeenu ViswambharanFIP_NAME := fip.bin 1352fae4b1eSJeenu Viswambharan 1362fae4b1eSJeenu Viswambharan# Default FWU_FIP file name 1372fae4b1eSJeenu ViswambharanFWU_FIP_NAME := fwu_fip.bin 1382fae4b1eSJeenu Viswambharan 139c6ba9b45SSumit Garg# By default firmware encryption with SSK 140c6ba9b45SSumit GargFW_ENC_STATUS := 0 141c6ba9b45SSumit Garg 1422fae4b1eSJeenu Viswambharan# For Chain of Trust 1432fae4b1eSJeenu ViswambharanGENERATE_COT := 0 1442fae4b1eSJeenu Viswambharan 145d766084fSAlexeiFedorov# Default number of 512 blocks per bitlock 146d766084fSAlexeiFedorovRME_GPT_BITLOCK_BLOCK := 1 147d766084fSAlexeiFedorov 148ec0088bbSAlexeiFedorov# Default maximum size of GPT contiguous block 149ec0088bbSAlexeiFedorovRME_GPT_MAX_BLOCK := 2 150ec0088bbSAlexeiFedorov 15174dce7faSJeenu Viswambharan# Hint platform interrupt control layer that Group 0 interrupts are for EL3. By 15274dce7faSJeenu Viswambharan# default, they are for Secure EL1. 15374dce7faSJeenu ViswambharanGICV2_G0_FOR_EL3 := 0 15474dce7faSJeenu Viswambharan 15546cc41d5SManish Pandey# Route NS External Aborts to EL3. Disabled by default; External Aborts are handled 15676454abfSJeenu Viswambharan# by lower ELs. 15746cc41d5SManish PandeyHANDLE_EA_EL3_FIRST_NS := 0 15876454abfSJeenu Viswambharan 1593ba2c151SRaymond Mao# Enable Handoff protocol using transfer lists 1603ba2c151SRaymond MaoTRANSFER_LIST := 0 1613ba2c151SRaymond Mao 162538516f5SBipin Ravi# Enables support for the gcc compiler option "-mharden-sls=all". 163538516f5SBipin Ravi# By default, disables all SLS hardening. 164538516f5SBipin RaviHARDEN_SLS := 0 165538516f5SBipin Ravi 166ae3cf1ffSAlexei Fedorov# Secure hash algorithm flag, accepts 3 values: sha256, sha384 and sha512. 167ae3cf1ffSAlexei Fedorov# The default value is sha256. 168ae3cf1ffSAlexei FedorovHASH_ALG := sha256 169ae3cf1ffSAlexei Fedorov 1703c251af3SJeenu Viswambharan# Whether system coherency is managed in hardware, without explicit software 1713c251af3SJeenu Viswambharan# operations. 1723c251af3SJeenu ViswambharanHW_ASSISTED_COHERENCY := 0 1733c251af3SJeenu Viswambharan 1740ed3be6fSVarun Wadekar# Flag to enable trapping of implementation defined sytem registers 1750ed3be6fSVarun WadekarIMPDEF_SYSREG_TRAP := 0 1760ed3be6fSVarun Wadekar 1772091755cSSoby Mathew# Set the default algorithm for the generation of Trusted Board Boot keys 1782091755cSSoby MathewKEY_ALG := rsa 1792091755cSSoby Mathew 180ee15a172SLeonardo Sandoval# Set the default key size in case KEY_ALG is rsa 181ee15a172SLeonardo Sandovalifeq ($(KEY_ALG),rsa) 182ee15a172SLeonardo SandovalKEY_SIZE := 2048 183ee15a172SLeonardo Sandovalendif 184ee15a172SLeonardo Sandoval 1858c105290SAlexei Fedorov# Option to build TF with Measured Boot support 1868c105290SAlexei FedorovMEASURED_BOOT := 0 1878c105290SAlexei Fedorov 188e7f1181fSTamas Ban# Option to enable the DICE Protection Environmnet as a Measured Boot backend 189e7f1181fSTamas BanDICE_PROTECTION_ENVIRONMENT :=0 190e7f1181fSTamas Ban 1912fae4b1eSJeenu Viswambharan# NS timer register save and restore 1922fae4b1eSJeenu ViswambharanNS_TIMER_SWITCH := 0 1932fae4b1eSJeenu Viswambharan 19477f1f7a1SVarun Wadekar# Include lib/libc in the final image 19577f1f7a1SVarun WadekarOVERRIDE_LIBC := 0 19677f1f7a1SVarun Wadekar 1972fae4b1eSJeenu Viswambharan# Build PL011 UART driver in minimal generic UART mode 1982fae4b1eSJeenu ViswambharanPL011_GENERIC_UART := 0 1992fae4b1eSJeenu Viswambharan 2002fae4b1eSJeenu Viswambharan# By default, consider that the platform's reset address is not programmable. 2012fae4b1eSJeenu Viswambharan# The platform Makefile is free to override this value. 2022fae4b1eSJeenu ViswambharanPROGRAMMABLE_RESET_ADDRESS := 0 2032fae4b1eSJeenu Viswambharan 20473308618SAntonio Nino Diaz# Flag used to choose the power state format: Extended State-ID or Original 2052fae4b1eSJeenu ViswambharanPSCI_EXTENDED_STATE_ID := 0 2062fae4b1eSJeenu Viswambharan 20764b4710bSWing Li# Enable PSCI OS-initiated mode support 20864b4710bSWing LiPSCI_OS_INIT_MODE := 0 20964b4710bSWing Li 2102fae4b1eSJeenu Viswambharan# By default, BL1 acts as the reset handler, not BL31 2112fae4b1eSJeenu ViswambharanRESET_TO_BL31 := 0 2122fae4b1eSJeenu Viswambharan 2132fae4b1eSJeenu Viswambharan# For Chain of Trust 2142fae4b1eSJeenu ViswambharanSAVE_KEYS := 0 2152fae4b1eSJeenu Viswambharan 216b7cb133eSJeenu Viswambharan# Software Delegated Exception support 217b7cb133eSJeenu ViswambharanSDEI_SUPPORT := 0 218b7cb133eSJeenu Viswambharan 2190b22e591SJayanth Dodderi Chidanand# True Random Number firmware Interface support 2207dfb9911SJimmy BrissonTRNG_SUPPORT := 0 2217dfb9911SJimmy Brisson 222ffea3844SSona Mathew# Check to see if Errata ABI is supported 223ffea3844SSona MathewERRATA_ABI_SUPPORT := 0 224ffea3844SSona Mathew 225ef63f5beSSona Mathew# Check to enable Errata ABI for platforms with non-arm interconnect 226ef63f5beSSona MathewERRATA_NON_ARM_INTERCONNECT := 0 227ef63f5beSSona Mathew 228c7a28aa7SJeremy Linton# SMCCC PCI support 229c7a28aa7SJeremy LintonSMC_PCI_SUPPORT := 0 230c7a28aa7SJeremy Linton 2312fae4b1eSJeenu Viswambharan# Whether code and read-only data should be put on separate memory pages. The 2322fae4b1eSJeenu Viswambharan# platform Makefile is free to override this value. 2332fae4b1eSJeenu ViswambharanSEPARATE_CODE_AND_RODATA := 0 2342fae4b1eSJeenu Viswambharan 235f8578e64SSamuel Holland# Put NOBITS sections (.bss, stacks, page tables, and coherent memory) in a 236f8578e64SSamuel Holland# separate memory region, which may be discontiguous from the rest of BL31. 237f8578e64SSamuel HollandSEPARATE_NOBITS_REGION := 0 238f8578e64SSamuel Holland 23996a8ed14SJiafei Pan# Put BL2 NOLOAD sections (.bss, stacks, page tables) in a separate memory 24096a8ed14SJiafei Pan# region, platform Makefile is free to override this value. 24196a8ed14SJiafei PanSEPARATE_BL2_NOLOAD_REGION := 0 24296a8ed14SJiafei Pan 243*308ebfa1SMadhukar Pappireddy# Put SIMD context data structures in a separate memory region. Platforms 244*308ebfa1SMadhukar Pappireddy# have the choice to put it outside of default BSS region of EL3 firmware. 245*308ebfa1SMadhukar PappireddySEPARATE_SIMD_SECTION := 0 246*308ebfa1SMadhukar Pappireddy 2471dcc28cfSDaniel Boulby# If the BL31 image initialisation code is recalimed after use for the secondary 2481dcc28cfSDaniel Boulby# cores stack 2491dcc28cfSDaniel BoulbyRECLAIM_INIT_CODE := 0 2501dcc28cfSDaniel Boulby 2512fae4b1eSJeenu Viswambharan# SPD choice 2522fae4b1eSJeenu ViswambharanSPD := none 2532fae4b1eSJeenu Viswambharan 2543f3c341aSPaul Beesley# Enable the Management Mode (MM)-based Secure Partition Manager implementation 2553f3c341aSPaul BeesleySPM_MM := 0 2562d7b9e5eSAntonio Nino Diaz 2571d63ae4dSMarc Bonnici# Use the FF-A SPMC implementation in EL3. 2581d63ae4dSMarc BonniciSPMC_AT_EL3 := 0 2591d63ae4dSMarc Bonnici 260801cd3c8SNishant Sharma# Enable SEL0 SP when SPMC is enabled at EL3 261801cd3c8SNishant SharmaSPMC_AT_EL3_SEL0_SP :=0 262801cd3c8SNishant Sharma 263033039f8SMax Shvetsov# Use SPM at S-EL2 as a default config for SPMD 264033039f8SMax ShvetsovSPMD_SPM_AT_SEL2 := 1 265033039f8SMax Shvetsov 2662fae4b1eSJeenu Viswambharan# Flag to introduce an infinite loop in BL1 just before it exits into the next 2672fae4b1eSJeenu Viswambharan# image. This is meant to help debugging the post-BL2 phase. 2682fae4b1eSJeenu ViswambharanSPIN_ON_BL1_EXIT := 0 2692fae4b1eSJeenu Viswambharan 2702fae4b1eSJeenu Viswambharan# Flags to build TF with Trusted Boot support 2712fae4b1eSJeenu ViswambharanTRUSTED_BOARD_BOOT := 0 2722fae4b1eSJeenu Viswambharan 273e23e057eSAntonio Nino Diaz# Build option to choose whether Trusted Firmware uses Coherent memory or not. 2742fae4b1eSJeenu ViswambharanUSE_COHERENT_MEM := 1 2752fae4b1eSJeenu Viswambharan 2760ca3913dSOlivier Deprez# Build option to add debugfs support 2770ca3913dSOlivier DeprezUSE_DEBUGFS := 0 2780ca3913dSOlivier Deprez 2790a6e7e3bSLouis Mayencourt# Build option to fconf based io 280a6de824fSLouis MayencourtARM_IO_IN_DTB := 0 281cbf9e84aSBalint Dobszay 282cbf9e84aSBalint Dobszay# Build option to support SDEI through fconf 283cbf9e84aSBalint DobszaySDEI_IN_FCONF := 0 284452d5e5eSMadhukar Pappireddy 285452d5e5eSMadhukar Pappireddy# Build option to support Secure Interrupt descriptors through fconf 286452d5e5eSMadhukar PappireddySEC_INT_DESC_IN_FCONF := 0 2870a6e7e3bSLouis Mayencourt 288e23e057eSAntonio Nino Diaz# Build option to choose whether Trusted Firmware uses library at ROM 2895accce5bSRoberto VargasUSE_ROMLIB := 0 2905accce5bSRoberto Vargas 29160e8f3cfSPetre-Ionut Tudor# Build option to choose whether the xlat tables of BL images can be read-only. 29260e8f3cfSPetre-Ionut Tudor# Note that this only serves as a higher level option to PLAT_RO_XLAT_TABLES, 29360e8f3cfSPetre-Ionut Tudor# which is the per BL-image option that actually enables the read-only tables 29460e8f3cfSPetre-Ionut Tudor# API. The reason for having this additional option is to have a common high 29560e8f3cfSPetre-Ionut Tudor# level makefile where we can check for incompatible features/build options. 29660e8f3cfSPetre-Ionut TudorALLOW_RO_XLAT_TABLES := 0 29760e8f3cfSPetre-Ionut Tudor 2983bff910dSSandrine Bailleux# Chain of trust. 2993bff910dSSandrine BailleuxCOT := tbbr 3003bff910dSSandrine Bailleux 301bb41eb7aSMasahiro Yamada# Use tbbr_oid.h instead of platform_oid.h 302e23e057eSAntonio Nino DiazUSE_TBBR_DEFS := 1 303bb41eb7aSMasahiro Yamada 304bcc3c49cSSoby Mathew# Whether to enable D-Cache early during warm boot. This is usually 305bcc3c49cSSoby Mathew# applicable for platforms wherein interconnect programming is not 306bcc3c49cSSoby Mathew# required to enable cache coherency after warm reset (eg: single cluster 307bcc3c49cSSoby Mathew# platforms). 308bcc3c49cSSoby MathewWARMBOOT_ENABLE_DCACHE_EARLY := 0 309d832aee9Sdp-arm 310bebcf27fSMark Brown# Default SVE vector length to maximum architected value 311bebcf27fSMark BrownSVE_VECTOR_LEN := 2048 312bebcf27fSMark Brown 3131f461979SJustin ChadwellSANITIZE_UB := off 314c97cba4eSSoby Mathew 315c97cba4eSSoby Mathew# For ARMv8.1 (AArch64) platforms, enabling this option selects the spinlock 316c97cba4eSSoby Mathew# implementation variant using the ARMv8.1-LSE compare-and-swap instruction. 317c97cba4eSSoby Mathew# Default: disabled 318c97cba4eSSoby MathewUSE_SPINLOCK_CAS := 0 319edbce9aaSzelalem-aweke 320edbce9aaSzelalem-aweke# Enable Link Time Optimization 321edbce9aaSzelalem-awekeENABLE_LTO := 0 32228f39f02SMax Shvetsov 323f1910cc1SGovindraj Raja# This option will include EL2 registers in cpu context save and restore during 324f1910cc1SGovindraj Raja# EL2 firmware entry/exit. Internal flag not meant for direct setting. 325f1910cc1SGovindraj Raja# Use SPD=spmd and SPMD_SPM_AT_SEL2=1 or ENABLE_RME=1 to enable 326f1910cc1SGovindraj Raja# CTX_INCLUDE_EL2_REGS. 32728f39f02SMax ShvetsovCTX_INCLUDE_EL2_REGS := 0 3287ff088d1SManish V Badarkhe 3297ff088d1SManish V Badarkhe# Enable Memory tag extension which is supported for architecture greater 3307ff088d1SManish V Badarkhe# than Armv8.5-A 3317ff088d1SManish V Badarkhe# By default it is set to "no" 3327ff088d1SManish V BadarkheSUPPORT_STACK_MEMTAG := no 33345aecff0SManish V Badarkhe 33445aecff0SManish V Badarkhe# Select workaround for AT speculative behaviour. 33545aecff0SManish V BadarkheERRATA_SPECULATIVE_AT := 0 336fbc44bd1SVarun Wadekar 33700e8f79cSManish Pandey# Trap RAS error record access from Non secure 33800e8f79cSManish PandeyRAS_TRAP_NS_ERR_REC_ACCESS := 0 33984ef9cd8SManish V Badarkhe 34084ef9cd8SManish V Badarkhe# Build option to create cot descriptors using fconf 34184ef9cd8SManish V BadarkheCOT_DESC_IN_DTB := 0 342582e4e7bSManish V Badarkhe 343cf2dd17dSJuan Pablo Conde# Build option to provide OpenSSL directory path 344582e4e7bSManish V BadarkheOPENSSL_DIR := /usr 345fddfb3baSMadhukar Pappireddy 346e95abc4cSSalome Thirot# Select the openssl binary provided in OPENSSL_DIR variable 347e95abc4cSSalome Thirotifeq ("$(wildcard ${OPENSSL_DIR}/bin)", "") 348e95abc4cSSalome Thirot OPENSSL_BIN_PATH = ${OPENSSL_DIR}/apps 349e95abc4cSSalome Thirotelse 350e95abc4cSSalome Thirot OPENSSL_BIN_PATH = ${OPENSSL_DIR}/bin 351e95abc4cSSalome Thirotendif 352e95abc4cSSalome Thirot 353fddfb3baSMadhukar Pappireddy# Build option to use the SP804 timer instead of the generic one 354fddfb3baSMadhukar PappireddyUSE_SP804_TIMER := 0 3555357f83dSManish V Badarkhe 3565357f83dSManish V Badarkhe# Build option to define number of firmware banks, used in firmware update 3575357f83dSManish V Badarkhe# metadata structure. 3585357f83dSManish V BadarkheNR_OF_FW_BANKS := 2 3595357f83dSManish V Badarkhe 3605357f83dSManish V Badarkhe# Build option to define number of images in firmware bank, used in firmware 3615357f83dSManish V Badarkhe# update metadata structure. 3625357f83dSManish V BadarkheNR_OF_IMAGES_IN_FW_BANK := 1 363396b339dSManish V Badarkhe 364396b339dSManish V Badarkhe# Disable Firmware update support by default 365396b339dSManish V BadarkhePSA_FWU_SUPPORT := 0 366813524eaSManish V Badarkhe 36711d05a77SSughosh Ganu# Enable image description in FWU metadata by default when PSA_FWU_SUPPORT 36811d05a77SSughosh Ganu# is enabled. 36911d05a77SSughosh Ganuifeq ($(PSA_FWU_SUPPORT),1) 37011d05a77SSughosh GanuPSA_FWU_METADATA_FW_STORE_DESC := 1 37111d05a77SSughosh Ganuelse 37211d05a77SSughosh GanuPSA_FWU_METADATA_FW_STORE_DESC := 0 37311d05a77SSughosh Ganuendif 37411d05a77SSughosh Ganu 37500e28874SManish V Badarkhe# Dynamic Root of Trust for Measurement support 37600e28874SManish V BadarkheDRTM_SUPPORT := 0 37704c7303bSOkash Khawaja 37804c7303bSOkash Khawaja# Check platform if cache management operations should be performed. 37904c7303bSOkash Khawaja# Disabled by default. 38004c7303bSOkash KhawajaCONDITIONAL_CMO := 0 381890b5088SRaghu Krishnamurthy 382890b5088SRaghu Krishnamurthy# By default, disable SPMD Logical partitions 383890b5088SRaghu KrishnamurthyENABLE_SPMD_LP := 0 3845782b890SManish V Badarkhe 3855782b890SManish V Badarkhe# By default, disable PSA crypto (use MbedTLS legacy crypto API). 3865782b890SManish V BadarkhePSA_CRYPTO := 0 38785bebe18SSandrine Bailleux 38885bebe18SSandrine Bailleux# getc() support from the console(s). 38985bebe18SSandrine Bailleux# Disabled by default because it constitutes an attack vector into TF-A. It 39085bebe18SSandrine Bailleux# should only be enabled if there is a use case for it. 39185bebe18SSandrine BailleuxENABLE_CONSOLE_GETC := 0 392183329a5SArvind Ram Prakash 393183329a5SArvind Ram Prakash# Build option to disable EL2 when it is not used. 394183329a5SArvind Ram Prakash# Most platforms switch from EL3 to NS-EL2 and hence the unused NS-EL2 395183329a5SArvind Ram Prakash# functions must be enabled by platforms if they require it. 396183329a5SArvind Ram Prakash# Disabled by default. 397183329a5SArvind Ram PrakashINIT_UNUSED_NS_EL2 := 0 3989acff28aSArvind Ram Prakash 3999acff28aSArvind Ram Prakash# Disable including MPAM EL2 registers in context by default since currently 4009acff28aSArvind Ram Prakash# it's only enabled for NS world 4019acff28aSArvind Ram PrakashCTX_INCLUDE_MPAM_REGS := 0 402bfef8b90SJuan Pablo Conde 403bfef8b90SJuan Pablo Conde# Enable context memory usage reporting during BL31 setup. 404bfef8b90SJuan Pablo CondePLATFORM_REPORT_CTX_MEM_USE := 0 405ae770fedSYann Gautier 406ae770fedSYann Gautier# Enable early console 407ae770fedSYann GautierEARLY_CONSOLE := 0 408f99a69c3SArvind Ram Prakash 409f99a69c3SArvind Ram Prakash# Allow platforms to save/restore DSU PMU registers over a power cycle. 410f99a69c3SArvind Ram Prakash# Disabled by default and must be enabled by individual platforms. 411f99a69c3SArvind Ram PrakashPRESERVE_DSU_PMU_REGS := 0 412