Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 1 | # |
Jeenu Viswambharan | fca7680 | 2017-01-16 16:52:35 +0000 | [diff] [blame] | 2 | # Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved. |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 3 | # |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | # SPDX-License-Identifier: BSD-3-Clause |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 5 | # |
| 6 | |
| 7 | # Default, static values for build variables, listed in alphabetic order. |
| 8 | # Dependencies between build options, if any, are handled in the top-level |
| 9 | # Makefile, after this file is included. This ensures that the former is better |
| 10 | # poised to handle dependencies, as all build variables would have a default |
| 11 | # value by then. |
| 12 | |
| 13 | # The AArch32 Secure Payload to be built as BL32 image |
| 14 | AARCH32_SP := none |
| 15 | |
| 16 | # The Target build architecture. Supported values are: aarch64, aarch32. |
| 17 | ARCH := aarch64 |
| 18 | |
Jeenu Viswambharan | fca7680 | 2017-01-16 16:52:35 +0000 | [diff] [blame] | 19 | # ARM Architecture major and minor versions: 8.0 by default. |
| 20 | ARM_ARCH_MAJOR := 8 |
| 21 | ARM_ARCH_MINOR := 0 |
| 22 | |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 23 | # Determine the version of ARM GIC architecture to use for interrupt management |
| 24 | # in EL3. The platform port can change this value if needed. |
| 25 | ARM_GIC_ARCH := 2 |
| 26 | |
| 27 | # Flag used to indicate if ASM_ASSERTION should be enabled for the build. |
| 28 | ASM_ASSERTION := 0 |
| 29 | |
| 30 | # Base commit to perform code check on |
| 31 | BASE_COMMIT := origin/master |
| 32 | |
| 33 | # By default, consider that the platform may release several CPUs out of reset. |
| 34 | # The platform Makefile is free to override this value. |
| 35 | COLD_BOOT_SINGLE_CPU := 0 |
| 36 | |
| 37 | # For Chain of Trust |
| 38 | CREATE_KEYS := 1 |
| 39 | |
| 40 | # Build flag to include AArch32 registers in cpu context save and restore during |
| 41 | # world switch. This flag must be set to 0 for AArch64-only platforms. |
| 42 | CTX_INCLUDE_AARCH32_REGS := 1 |
| 43 | |
| 44 | # Include FP registers in cpu context |
| 45 | CTX_INCLUDE_FPREGS := 0 |
| 46 | |
| 47 | # Debug build |
| 48 | DEBUG := 0 |
| 49 | |
| 50 | # Build platform |
| 51 | DEFAULT_PLAT := fvp |
| 52 | |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 53 | # Flag to enable Performance Measurement Framework |
| 54 | ENABLE_PMF := 0 |
| 55 | |
| 56 | # Flag to enable PSCI STATs functionality |
| 57 | ENABLE_PSCI_STAT := 0 |
| 58 | |
| 59 | # Flag to enable runtime instrumentation using PMF |
| 60 | ENABLE_RUNTIME_INSTRUMENTATION := 0 |
| 61 | |
Douglas Raillard | 306593d | 2017-02-24 18:14:15 +0000 | [diff] [blame] | 62 | # Flag to enable stack corruption protection |
| 63 | ENABLE_STACK_PROTECTOR := 0 |
| 64 | |
Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 65 | # Flag to enable exception handling in EL3 |
| 66 | EL3_EXCEPTION_HANDLING := 0 |
| 67 | |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 68 | # Build flag to treat usage of deprecated platform and framework APIs as error. |
| 69 | ERROR_DEPRECATED := 0 |
| 70 | |
Masahiro Yamada | 4d87eb4 | 2016-12-25 13:52:22 +0900 | [diff] [blame] | 71 | # Byte alignment that each component in FIP is aligned to |
| 72 | FIP_ALIGN := 0 |
| 73 | |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 74 | # Default FIP file name |
| 75 | FIP_NAME := fip.bin |
| 76 | |
| 77 | # Default FWU_FIP file name |
| 78 | FWU_FIP_NAME := fwu_fip.bin |
| 79 | |
| 80 | # For Chain of Trust |
| 81 | GENERATE_COT := 0 |
| 82 | |
Jeenu Viswambharan | c06f05c | 2017-09-22 08:32:09 +0100 | [diff] [blame] | 83 | # Hint platform interrupt control layer that Group 0 interrupts are for EL3. By |
| 84 | # default, they are for Secure EL1. |
| 85 | GICV2_G0_FOR_EL3 := 0 |
| 86 | |
Jeenu Viswambharan | a10d64e | 2017-01-04 13:51:42 +0000 | [diff] [blame] | 87 | # Whether system coherency is managed in hardware, without explicit software |
| 88 | # operations. |
| 89 | HW_ASSISTED_COHERENCY := 0 |
| 90 | |
Soby Mathew | 13b1605 | 2017-08-31 11:49:32 +0100 | [diff] [blame] | 91 | # Set the default algorithm for the generation of Trusted Board Boot keys |
| 92 | KEY_ALG := rsa |
| 93 | |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 94 | # Flag to enable new version of image loading |
| 95 | LOAD_IMAGE_V2 := 0 |
| 96 | |
| 97 | # NS timer register save and restore |
| 98 | NS_TIMER_SWITCH := 0 |
| 99 | |
| 100 | # Build PL011 UART driver in minimal generic UART mode |
| 101 | PL011_GENERIC_UART := 0 |
| 102 | |
| 103 | # By default, consider that the platform's reset address is not programmable. |
| 104 | # The platform Makefile is free to override this value. |
| 105 | PROGRAMMABLE_RESET_ADDRESS := 0 |
| 106 | |
| 107 | # Flag used to choose the power state format viz Extended State-ID or the |
| 108 | # Original format. |
| 109 | PSCI_EXTENDED_STATE_ID := 0 |
| 110 | |
| 111 | # By default, BL1 acts as the reset handler, not BL31 |
| 112 | RESET_TO_BL31 := 0 |
| 113 | |
| 114 | # For Chain of Trust |
| 115 | SAVE_KEYS := 0 |
| 116 | |
Jeenu Viswambharan | 04e3a7f | 2017-10-16 08:43:14 +0100 | [diff] [blame] | 117 | # Software Delegated Exception support |
| 118 | SDEI_SUPPORT := 0 |
| 119 | |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 120 | # Whether code and read-only data should be put on separate memory pages. The |
| 121 | # platform Makefile is free to override this value. |
| 122 | SEPARATE_CODE_AND_RODATA := 0 |
| 123 | |
| 124 | # SPD choice |
| 125 | SPD := none |
| 126 | |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 127 | # For including the Secure Partition Manager |
| 128 | ENABLE_SPM := 0 |
| 129 | |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 130 | # Flag to introduce an infinite loop in BL1 just before it exits into the next |
| 131 | # image. This is meant to help debugging the post-BL2 phase. |
| 132 | SPIN_ON_BL1_EXIT := 0 |
| 133 | |
| 134 | # Flags to build TF with Trusted Boot support |
| 135 | TRUSTED_BOARD_BOOT := 0 |
| 136 | |
| 137 | # Build option to choose whether Trusted firmware uses Coherent memory or not. |
| 138 | USE_COHERENT_MEM := 1 |
| 139 | |
Masahiro Yamada | a27c166 | 2017-05-22 12:11:24 +0900 | [diff] [blame] | 140 | # Use tbbr_oid.h instead of platform_oid.h |
| 141 | USE_TBBR_DEFS = $(ERROR_DEPRECATED) |
| 142 | |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 143 | # Build verbosity |
| 144 | V := 0 |
Soby Mathew | 043fe9c | 2017-04-10 22:35:42 +0100 | [diff] [blame] | 145 | |
| 146 | # Whether to enable D-Cache early during warm boot. This is usually |
| 147 | # applicable for platforms wherein interconnect programming is not |
| 148 | # required to enable cache coherency after warm reset (eg: single cluster |
| 149 | # platforms). |
| 150 | WARMBOOT_ENABLE_DCACHE_EARLY := 0 |
dp-arm | ee3457b | 2017-05-23 09:32:49 +0100 | [diff] [blame] | 151 | |
Dimitris Papastamos | 9da09cd | 2017-10-13 15:07:45 +0100 | [diff] [blame] | 152 | # Build option to enable/disable the Statistical Profiling Extensions |
dp-arm | ee3457b | 2017-05-23 09:32:49 +0100 | [diff] [blame] | 153 | ENABLE_SPE_FOR_LOWER_ELS := 1 |
| 154 | |
Dimitris Papastamos | 9da09cd | 2017-10-13 15:07:45 +0100 | [diff] [blame] | 155 | # SPE is only supported on AArch64 so disable it on AArch32. |
dp-arm | ee3457b | 2017-05-23 09:32:49 +0100 | [diff] [blame] | 156 | ifeq (${ARCH},aarch32) |
| 157 | override ENABLE_SPE_FOR_LOWER_ELS := 0 |
dp-arm | ee3457b | 2017-05-23 09:32:49 +0100 | [diff] [blame] | 158 | endif |
Dimitris Papastamos | fcedb69 | 2017-10-16 11:40:10 +0100 | [diff] [blame^] | 159 | |
| 160 | ENABLE_AMU := 0 |