Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | # |
Govindraj Raja | 24d3a4e | 2023-12-21 13:57:49 -0600 | [diff] [blame] | 2 | # Copyright (c) 2013-2024, Arm Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | # |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | # SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 5 | # |
| 6 | |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 7 | # |
Juan Castillo | 04be3a5 | 2014-06-30 11:41:46 +0100 | [diff] [blame] | 8 | # Trusted Firmware Version |
| 9 | # |
Soby Mathew | d42eaee | 2018-10-01 16:16:34 +0100 | [diff] [blame] | 10 | VERSION_MAJOR := 2 |
Manish V Badarkhe | 8a7af84 | 2024-05-17 11:09:28 +0100 | [diff] [blame] | 11 | VERSION_MINOR := 11 |
Yann Gautier | 5f4cbed | 2024-02-08 18:40:27 +0100 | [diff] [blame] | 12 | # VERSION_PATCH is only used for LTS releases |
| 13 | VERSION_PATCH := 0 |
Yann Gautier | 57078a9 | 2023-10-03 11:09:07 +0200 | [diff] [blame] | 14 | VERSION := ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH} |
Juan Castillo | 04be3a5 | 2014-06-30 11:41:46 +0100 | [diff] [blame] | 15 | |
Juan Castillo | 396644b | 2015-10-22 11:34:44 +0100 | [diff] [blame] | 16 | # Default goal is build all images |
| 17 | .DEFAULT_GOAL := all |
| 18 | |
Douglas Raillard | 527cd90 | 2016-12-28 14:47:50 +0000 | [diff] [blame] | 19 | # Avoid any implicit propagation of command line variable definitions to |
| 20 | # sub-Makefiles, like CFLAGS that we reserved for the firmware images' |
| 21 | # usage. Other command line options like "-s" are still propagated as usual. |
| 22 | MAKEOVERRIDES = |
| 23 | |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 24 | MAKE_HELPERS_DIRECTORY := make_helpers/ |
| 25 | include ${MAKE_HELPERS_DIRECTORY}build_macros.mk |
Evan Lloyd | a71d259 | 2015-12-02 18:56:06 +0000 | [diff] [blame] | 26 | include ${MAKE_HELPERS_DIRECTORY}build_env.mk |
Chris Kay | 1559f64 | 2024-06-04 00:04:48 +0000 | [diff] [blame] | 27 | include ${MAKE_HELPERS_DIRECTORY}build-rules.mk |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 28 | include ${MAKE_HELPERS_DIRECTORY}common.mk |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 29 | |
| 30 | ################################################################################ |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 31 | # Default values for build configurations, and their dependencies |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 32 | ################################################################################ |
Jeenu Viswambharan | 19a0ace | 2014-05-15 14:40:58 +0100 | [diff] [blame] | 33 | |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 34 | include ${MAKE_HELPERS_DIRECTORY}defaults.mk |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 35 | |
Chris Kay | c8a47ba | 2023-10-20 09:17:33 +0000 | [diff] [blame] | 36 | ################################################################################ |
| 37 | # Configure the toolchains used to build TF-A and its tools |
| 38 | ################################################################################ |
| 39 | |
| 40 | include ${MAKE_HELPERS_DIRECTORY}toolchain.mk |
| 41 | |
Antonio Nino Diaz | 808c229 | 2017-04-18 15:16:05 +0100 | [diff] [blame] | 42 | # Assertions enabled for DEBUG builds by default |
Antonio Nino Diaz | 808c229 | 2017-04-18 15:16:05 +0100 | [diff] [blame] | 43 | ENABLE_ASSERTIONS := ${DEBUG} |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 44 | ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION} |
| 45 | PLAT := ${DEFAULT_PLAT} |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 46 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 47 | ################################################################################ |
| 48 | # Checkpatch script options |
| 49 | ################################################################################ |
| 50 | |
Sandrine Bailleux | 0b5a158 | 2016-06-02 11:19:59 +0100 | [diff] [blame] | 51 | CHECKCODE_ARGS := --no-patch |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 52 | # Do not check the coding style on imported library files or documentation files |
Gilad Ben-Yossef | 033327a | 2019-05-15 09:24:04 +0300 | [diff] [blame] | 53 | INC_DRV_DIRS_TO_CHECK := $(sort $(filter-out \ |
| 54 | include/drivers/arm, \ |
| 55 | $(wildcard include/drivers/*))) |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 56 | INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \ |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 57 | include/lib/libfdt \ |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 58 | include/lib/libc, \ |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 59 | $(wildcard include/lib/*))) |
| 60 | INC_DIRS_TO_CHECK := $(sort $(filter-out \ |
Gilad Ben-Yossef | 033327a | 2019-05-15 09:24:04 +0300 | [diff] [blame] | 61 | include/lib \ |
| 62 | include/drivers, \ |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 63 | $(wildcard include/*))) |
| 64 | LIB_DIRS_TO_CHECK := $(sort $(filter-out \ |
dp-arm | e3cc838 | 2017-05-04 12:15:35 +0100 | [diff] [blame] | 65 | lib/compiler-rt \ |
Antonio Nino Diaz | d84f88e | 2017-01-16 17:20:45 +0000 | [diff] [blame] | 66 | lib/libfdt% \ |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 67 | lib/libc, \ |
Daniel Boulby | 958f1dd | 2022-10-05 11:05:22 +0100 | [diff] [blame] | 68 | lib/zlib \ |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 69 | $(wildcard lib/*))) |
| 70 | ROOT_DIRS_TO_CHECK := $(sort $(filter-out \ |
| 71 | lib \ |
| 72 | include \ |
| 73 | docs \ |
Paul Beesley | adfab5b | 2019-03-07 16:42:31 +0000 | [diff] [blame] | 74 | %.rst, \ |
Dan Handley | d7b59e4 | 2016-06-02 17:15:13 +0100 | [diff] [blame] | 75 | $(wildcard *))) |
| 76 | CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \ |
| 77 | ${INC_DIRS_TO_CHECK} \ |
| 78 | ${INC_LIB_DIRS_TO_CHECK} \ |
Gilad Ben-Yossef | 033327a | 2019-05-15 09:24:04 +0300 | [diff] [blame] | 79 | ${LIB_DIRS_TO_CHECK} \ |
| 80 | ${INC_DRV_DIRS_TO_CHECK} \ |
| 81 | ${INC_ARM_DIRS_TO_CHECK} |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 82 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 83 | ################################################################################ |
| 84 | # Process build options |
| 85 | ################################################################################ |
| 86 | |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 87 | ifeq ($(verbose),) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 88 | CHECKCODE_ARGS += --no-summary --terse |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 89 | endif |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 90 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 91 | ################################################################################ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 92 | # Auxiliary tools (fiptool, cert_create, etc) |
| 93 | ################################################################################ |
| 94 | |
| 95 | # Variables for use with Certificate Generation Tool |
| 96 | CRTTOOLPATH ?= tools/cert_create |
| 97 | CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT} |
| 98 | |
| 99 | # Variables for use with Firmware Encryption Tool |
| 100 | ENCTOOLPATH ?= tools/encrypt_fw |
| 101 | ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT} |
| 102 | |
| 103 | # Variables for use with Firmware Image Package |
| 104 | FIPTOOLPATH ?= tools/fiptool |
| 105 | FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT} |
| 106 | |
| 107 | # Variables for use with sptool |
| 108 | SPTOOLPATH ?= tools/sptool |
| 109 | SPTOOL ?= ${SPTOOLPATH}/sptool.py |
| 110 | SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py |
Karl Meakin | aba4618 | 2023-02-14 11:56:02 +0000 | [diff] [blame] | 111 | SP_DTS_LIST_FRAGMENT ?= ${BUILD_PLAT}/sp_list_fragment.dts |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 112 | |
| 113 | # Variables for use with ROMLIB |
| 114 | ROMLIBPATH ?= lib/romlib |
| 115 | |
| 116 | # Variable for use with Python |
| 117 | PYTHON ?= python3 |
| 118 | |
| 119 | # Variables for use with documentation build using Sphinx tool |
| 120 | DOCS_PATH ?= docs |
| 121 | |
| 122 | ################################################################################ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 123 | # Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 124 | ################################################################################ |
Etienne Carriere | 1374fcb | 2017-11-08 13:48:40 +0100 | [diff] [blame] | 125 | ifeq (${ARM_ARCH_MAJOR},7) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 126 | target32-directive = -target arm-none-eabi |
Govindraj Raja | cd10c6e | 2023-05-30 16:52:15 -0500 | [diff] [blame] | 127 | # Will set march-directive from platform configuration |
Etienne Carriere | 1374fcb | 2017-11-08 13:48:40 +0100 | [diff] [blame] | 128 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 129 | target32-directive = -target armv8a-none-eabi |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 130 | endif #(ARM_ARCH_MAJOR) |
| 131 | |
| 132 | ################################################################################ |
| 133 | # Get Architecture Feature Modifiers |
| 134 | ################################################################################ |
| 135 | arch-features = ${ARM_ARCH_FEATURE} |
| 136 | |
Chris Kay | cfba645 | 2023-12-04 09:55:50 +0000 | [diff] [blame] | 137 | ifneq ($(filter %-clang,$($(ARCH)-cc-id)),) |
| 138 | ifeq ($($(ARCH)-cc-id),arm-clang) |
Govindraj Raja | 6909641 | 2023-06-01 16:29:16 -0500 | [diff] [blame] | 139 | TF_CFLAGS_aarch32 := -target arm-arm-none-eabi |
| 140 | TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi |
origin | fba80d8 | 2022-01-19 16:30:14 +0000 | [diff] [blame] | 141 | else |
Govindraj Raja | 6909641 | 2023-06-01 16:29:16 -0500 | [diff] [blame] | 142 | TF_CFLAGS_aarch32 = $(target32-directive) |
| 143 | TF_CFLAGS_aarch64 := -target aarch64-elf |
origin | fba80d8 | 2022-01-19 16:30:14 +0000 | [diff] [blame] | 144 | endif |
| 145 | |
Chris Kay | cfba645 | 2023-12-04 09:55:50 +0000 | [diff] [blame] | 146 | else ifeq ($($(ARCH)-cc-id),gnu-gcc) |
Chris Kay | 00416dc | 2024-02-20 16:19:54 +0000 | [diff] [blame] | 147 | # Enable LTO only for aarch64 |
| 148 | ifeq (${ARCH},aarch64) |
| 149 | LTO_CFLAGS = $(if $(filter-out 0,$(ENABLE_LTO)),-flto) |
zelalem-aweke | d5f4527 | 2019-11-12 16:20:17 -0600 | [diff] [blame] | 150 | endif |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 151 | endif #(clang) |
dp-arm | 320e844 | 2017-05-02 12:00:08 +0100 | [diff] [blame] | 152 | |
Ahmad Fatoum | 2633cbb | 2020-02-25 11:25:08 +0100 | [diff] [blame] | 153 | # Process Debug flag |
| 154 | $(eval $(call add_define,DEBUG)) |
| 155 | ifneq (${DEBUG}, 0) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 156 | BUILD_TYPE := debug |
| 157 | TF_CFLAGS += -g -gdwarf-4 |
| 158 | ASFLAGS += -g -Wa,-gdwarf-4 |
Ahmad Fatoum | 2633cbb | 2020-02-25 11:25:08 +0100 | [diff] [blame] | 159 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 160 | # Use LOG_LEVEL_INFO by default for debug builds |
| 161 | LOG_LEVEL := 40 |
Ahmad Fatoum | 2633cbb | 2020-02-25 11:25:08 +0100 | [diff] [blame] | 162 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 163 | BUILD_TYPE := release |
| 164 | # Use LOG_LEVEL_NOTICE by default for release builds |
| 165 | LOG_LEVEL := 20 |
| 166 | endif #(Debug) |
Ahmad Fatoum | 2633cbb | 2020-02-25 11:25:08 +0100 | [diff] [blame] | 167 | |
Peiyuan Song | 44f8f47 | 2020-04-25 16:53:43 +0800 | [diff] [blame] | 168 | # Default build string (git branch and commit) |
| 169 | ifeq (${BUILD_STRING},) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 170 | BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null) |
Peiyuan Song | 44f8f47 | 2020-04-25 16:53:43 +0800 | [diff] [blame] | 171 | endif |
laurenw-arm | e954f65 | 2022-07-12 10:12:05 -0500 | [diff] [blame] | 172 | VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING} |
Peiyuan Song | 44f8f47 | 2020-04-25 16:53:43 +0800 | [diff] [blame] | 173 | |
Antonio Nino Diaz | 80914a8 | 2018-08-08 16:28:43 +0100 | [diff] [blame] | 174 | ifeq (${AARCH32_INSTRUCTION_SET},A32) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 175 | TF_CFLAGS_aarch32 += -marm |
Antonio Nino Diaz | 80914a8 | 2018-08-08 16:28:43 +0100 | [diff] [blame] | 176 | else ifeq (${AARCH32_INSTRUCTION_SET},T32) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 177 | TF_CFLAGS_aarch32 += -mthumb |
Antonio Nino Diaz | 80914a8 | 2018-08-08 16:28:43 +0100 | [diff] [blame] | 178 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 179 | $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET}) |
| 180 | endif #(AARCH32_INSTRUCTION_SET) |
Antonio Nino Diaz | 80914a8 | 2018-08-08 16:28:43 +0100 | [diff] [blame] | 181 | |
Sandrine Bailleux | 1aa72ec | 2018-07-03 09:14:45 +0200 | [diff] [blame] | 182 | TF_CFLAGS_aarch32 += -mno-unaligned-access |
dp-arm | 320e844 | 2017-05-02 12:00:08 +0100 | [diff] [blame] | 183 | TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 184 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 185 | ############################################################################## |
| 186 | # WARNINGS Configuration |
| 187 | ############################################################################### |
Justin Chadwell | e72a1eb | 2019-07-31 11:36:41 +0100 | [diff] [blame] | 188 | # General warnings |
| 189 | WARNINGS := -Wall -Wmissing-include-dirs -Wunused \ |
Yann Gautier | 94a40b6 | 2021-05-20 13:18:14 +0200 | [diff] [blame] | 190 | -Wdisabled-optimization -Wvla -Wshadow \ |
Boyan Karatotev | de4240f | 2022-11-21 14:16:43 +0000 | [diff] [blame] | 191 | -Wredundant-decls |
| 192 | # stricter warnings |
| 193 | WARNINGS += -Wextra -Wno-trigraphs |
| 194 | # too verbose for generic build |
| 195 | WARNINGS += -Wno-missing-field-initializers \ |
| 196 | -Wno-type-limits -Wno-sign-compare \ |
| 197 | # on clang this flag gets reset if -Wextra is set after it. No difference on gcc |
| 198 | WARNINGS += -Wno-unused-parameter |
Justin Chadwell | e72a1eb | 2019-07-31 11:36:41 +0100 | [diff] [blame] | 199 | |
| 200 | # Additional warnings |
Boyan Karatotev | de4240f | 2022-11-21 14:16:43 +0000 | [diff] [blame] | 201 | # Level 1 - infrequent warnings we should have none of |
| 202 | # full -Wextra |
| 203 | WARNING1 += -Wsign-compare |
| 204 | WARNING1 += -Wtype-limits |
| 205 | WARNING1 += -Wmissing-field-initializers |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 206 | |
Boyan Karatotev | de4240f | 2022-11-21 14:16:43 +0000 | [diff] [blame] | 207 | # Level 2 - problematic warnings that we want |
| 208 | # zlib, compiler-rt, coreboot, and mbdedtls blow up with these |
| 209 | # TODO: disable just for them and move into default build |
| 210 | WARNING2 += -Wold-style-definition |
| 211 | WARNING2 += -Wmissing-prototypes |
| 212 | WARNING2 += -Wmissing-format-attribute |
| 213 | # TF-A aims to comply with this eventually. Effort too large at present |
| 214 | WARNING2 += -Wundef |
Boyan Karatotev | 9c6ba59 | 2022-11-21 14:49:05 +0000 | [diff] [blame] | 215 | # currently very involved and many platforms set this off |
| 216 | WARNING2 += -Wunused-const-variable=2 |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 217 | |
Boyan Karatotev | de4240f | 2022-11-21 14:16:43 +0000 | [diff] [blame] | 218 | # Level 3 - very pedantic, frequently ignored |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 219 | WARNING3 := -Wbad-function-cast |
Boyan Karatotev | de4240f | 2022-11-21 14:16:43 +0000 | [diff] [blame] | 220 | WARNING3 += -Waggregate-return |
| 221 | WARNING3 += -Wnested-externs |
| 222 | WARNING3 += -Wcast-align |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 223 | WARNING3 += -Wcast-qual |
| 224 | WARNING3 += -Wconversion |
| 225 | WARNING3 += -Wpacked |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 226 | WARNING3 += -Wpointer-arith |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 227 | WARNING3 += -Wswitch-default |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 228 | |
Boyan Karatotev | de4240f | 2022-11-21 14:16:43 +0000 | [diff] [blame] | 229 | # Setting W is quite verbose and most warnings will be pre-existing issues |
| 230 | # outside of the contributor's control. Don't fail the build on them so warnings |
| 231 | # can be seen and hopefully addressed |
| 232 | ifdef W |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 233 | ifneq (${W},0) |
| 234 | E ?= 0 |
| 235 | endif |
Boyan Karatotev | de4240f | 2022-11-21 14:16:43 +0000 | [diff] [blame] | 236 | endif |
| 237 | |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 238 | ifeq (${W},1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 239 | WARNINGS += $(WARNING1) |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 240 | else ifeq (${W},2) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 241 | WARNINGS += $(WARNING1) $(WARNING2) |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 242 | else ifeq (${W},3) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 243 | WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3) |
| 244 | endif #(W) |
Yann Gautier | 82b2f8c | 2018-12-10 18:00:26 +0100 | [diff] [blame] | 245 | |
Justin Chadwell | e72a1eb | 2019-07-31 11:36:41 +0100 | [diff] [blame] | 246 | # Compiler specific warnings |
Chris Kay | cfba645 | 2023-12-04 09:55:50 +0000 | [diff] [blame] | 247 | ifeq ($(filter %-clang,$($(ARCH)-cc-id)),) |
Justin Chadwell | 7a91423 | 2019-07-03 14:15:56 +0100 | [diff] [blame] | 248 | # not using clang |
Justin Chadwell | 42d18ca | 2019-09-18 14:13:42 +0100 | [diff] [blame] | 249 | WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \ |
| 250 | -Wpacked-bitfield-compat -Wshift-overflow=2 \ |
| 251 | -Wlogical-op |
Govindraj Raja | aa8ef3f | 2023-05-05 09:09:36 -0500 | [diff] [blame] | 252 | |
| 253 | # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523 |
| 254 | TF_CFLAGS += $(call cc_option, --param=min-pagesize=0) |
| 255 | |
Bipin Ravi | e53e6ae | 2023-09-28 13:17:24 -0500 | [diff] [blame] | 256 | ifeq ($(HARDEN_SLS), 1) |
| 257 | TF_CFLAGS_aarch64 += $(call cc_option, -mharden-sls=all) |
| 258 | endif |
| 259 | |
Justin Chadwell | 7a91423 | 2019-07-03 14:15:56 +0100 | [diff] [blame] | 260 | else |
| 261 | # using clang |
Justin Chadwell | 42d18ca | 2019-09-18 14:13:42 +0100 | [diff] [blame] | 262 | WARNINGS += -Wshift-overflow -Wshift-sign-overflow \ |
| 263 | -Wlogical-op-parentheses |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 264 | endif #(Clang Warning) |
Ambroise Vincent | 067e4d9 | 2019-05-24 12:47:43 +0100 | [diff] [blame] | 265 | |
Yann Gautier | 957c353 | 2018-12-10 18:08:53 +0100 | [diff] [blame] | 266 | ifneq (${E},0) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 267 | ERRORS := -Werror |
| 268 | endif #(E) |
Yann Gautier | 957c353 | 2018-12-10 18:08:53 +0100 | [diff] [blame] | 269 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 270 | ################################################################################ |
| 271 | # Compiler and Linker Directives |
| 272 | ################################################################################ |
Justin Chadwell | e72a1eb | 2019-07-31 11:36:41 +0100 | [diff] [blame] | 273 | CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \ |
| 274 | $(ERRORS) $(WARNINGS) |
Govindraj Raja | cd10c6e | 2023-05-30 16:52:15 -0500 | [diff] [blame] | 275 | ASFLAGS += $(CPPFLAGS) \ |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 276 | -ffreestanding -Wa,--fatal-warnings |
Masahiro Yamada | 0dec9fa | 2016-12-22 12:51:53 +0900 | [diff] [blame] | 277 | TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \ |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 278 | -ffunction-sections -fdata-sections \ |
| 279 | -ffreestanding -fno-builtin -fno-common \ |
| 280 | -Os -std=gnu99 |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 281 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 282 | ifeq (${SANITIZE_UB},on) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 283 | TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover |
| 284 | endif #(${SANITIZE_UB},on) |
| 285 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 286 | ifeq (${SANITIZE_UB},trap) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 287 | TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \ |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 288 | -fsanitize-undefined-trap-on-error |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 289 | endif #(${SANITIZE_UB},trap) |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 290 | |
Chris Kay | 0adde4e | 2024-05-14 13:08:31 +0000 | [diff] [blame] | 291 | GCC_V_OUTPUT := $(if $($(ARCH)-cc),$(shell $($(ARCH)-cc) -v 2>&1)) |
david cunado | 34ab609 | 2017-11-30 21:58:01 +0000 | [diff] [blame] | 292 | |
Marco Felsch | 24ad840 | 2022-11-09 12:59:09 +0100 | [diff] [blame] | 293 | TF_LDFLAGS += -z noexecstack |
| 294 | |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 295 | # LD = armlink |
Chris Kay | cfba645 | 2023-12-04 09:55:50 +0000 | [diff] [blame] | 296 | ifeq ($($(ARCH)-ld-id),arm-link) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 297 | TF_LDFLAGS += --diag_error=warning --lto_level=O1 |
| 298 | TF_LDFLAGS += --remove --info=unused,unusedsymbols |
| 299 | TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 300 | |
| 301 | # LD = gcc (used when GCC LTO is enabled) |
Chris Kay | cfba645 | 2023-12-04 09:55:50 +0000 | [diff] [blame] | 302 | else ifeq ($($(ARCH)-ld-id),gnu-gcc) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 303 | # Pass ld options with Wl or Xlinker switches |
Chris Kay | b0fe96f | 2024-01-16 11:53:35 +0000 | [diff] [blame] | 304 | TF_LDFLAGS += $(call ld_option,-Xlinker --no-warn-rwx-segments) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 305 | TF_LDFLAGS += -Wl,--fatal-warnings -O1 |
| 306 | TF_LDFLAGS += -Wl,--gc-sections |
Chris Kay | 73b1f40 | 2022-12-22 13:26:37 +0000 | [diff] [blame] | 307 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 308 | TF_LDFLAGS += -Wl,-z,common-page-size=4096 #Configure page size constants |
| 309 | TF_LDFLAGS += -Wl,-z,max-page-size=4096 |
Andrey Skvortsov | e2ebb72 | 2023-09-05 23:06:29 +0300 | [diff] [blame] | 310 | TF_LDFLAGS += -Wl,--build-id=none |
Chris Kay | 73b1f40 | 2022-12-22 13:26:37 +0000 | [diff] [blame] | 311 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 312 | ifeq ($(ENABLE_LTO),1) |
| 313 | ifeq (${ARCH},aarch64) |
| 314 | TF_LDFLAGS += -flto -fuse-linker-plugin |
Andrey Skvortsov | 664d650 | 2023-12-08 18:04:51 +0300 | [diff] [blame] | 315 | TF_LDFLAGS += -flto-partition=one |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 316 | endif |
| 317 | endif #(ENABLE_LTO) |
| 318 | |
zelalem-aweke | d5f4527 | 2019-11-12 16:20:17 -0600 | [diff] [blame] | 319 | # GCC automatically adds fix-cortex-a53-843419 flag when used to link |
| 320 | # which breaks some builds, so disable if errata fix is not explicitly enabled |
Yann Gautier | 3d73d16 | 2023-03-15 16:18:16 +0100 | [diff] [blame] | 321 | ifeq (${ARCH},aarch64) |
| 322 | ifneq (${ERRATA_A53_843419},1) |
| 323 | TF_LDFLAGS += -mno-fix-cortex-a53-843419 |
| 324 | endif |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 325 | endif |
| 326 | TF_LDFLAGS += -nostdlib |
| 327 | TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH))) |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 328 | |
| 329 | # LD = gcc-ld (ld) or llvm-ld (ld.lld) or other |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 330 | else |
Marco Felsch | 24ad840 | 2022-11-09 12:59:09 +0100 | [diff] [blame] | 331 | # With ld.bfd version 2.39 and newer new warnings are added. Skip those since we |
| 332 | # are not loaded by a elf loader. |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 333 | TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments) |
| 334 | TF_LDFLAGS += -O1 |
| 335 | TF_LDFLAGS += --gc-sections |
Chris Kay | 73b1f40 | 2022-12-22 13:26:37 +0000 | [diff] [blame] | 336 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 337 | TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants |
| 338 | TF_LDFLAGS += -z max-page-size=4096 |
Andrey Skvortsov | e2ebb72 | 2023-09-05 23:06:29 +0300 | [diff] [blame] | 339 | TF_LDFLAGS += --build-id=none |
Chris Kay | 73b1f40 | 2022-12-22 13:26:37 +0000 | [diff] [blame] | 340 | |
Ambroise Vincent | 05c07c5 | 2019-07-17 11:08:38 +0100 | [diff] [blame] | 341 | # ld.lld doesn't recognize the errata flags, |
Yabin Cui | ed7dc51 | 2023-01-19 20:06:04 +0000 | [diff] [blame] | 342 | # therefore don't add those in that case. |
| 343 | # ld.lld reports section type mismatch warnings, |
| 344 | # therefore don't add --fatal-warnings to it. |
Chris Kay | cfba645 | 2023-12-04 09:55:50 +0000 | [diff] [blame] | 345 | ifneq ($($(ARCH)-ld-id),llvm-lld) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 346 | TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings |
| 347 | endif |
| 348 | |
| 349 | endif #(LD = armlink) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 350 | |
| 351 | ################################################################################ |
Govindraj Raja | 0386e31 | 2023-08-17 10:41:48 -0500 | [diff] [blame] | 352 | # Setup ARCH_MAJOR/MINOR before parsing arch_features. |
| 353 | ################################################################################ |
| 354 | ifeq (${ENABLE_RME},1) |
AlexeiFedorov | 6525845 | 2024-03-13 11:53:44 +0000 | [diff] [blame] | 355 | ARM_ARCH_MAJOR := 9 |
| 356 | ARM_ARCH_MINOR := 2 |
Govindraj Raja | 0386e31 | 2023-08-17 10:41:48 -0500 | [diff] [blame] | 357 | endif |
| 358 | |
| 359 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 360 | # Common sources and include directories |
| 361 | ################################################################################ |
dp-arm | e3cc838 | 2017-05-04 12:15:35 +0100 | [diff] [blame] | 362 | include lib/compiler-rt/compiler-rt.mk |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 363 | |
Chris Kay | 99b5b2e | 2024-03-08 16:08:31 +0000 | [diff] [blame] | 364 | # Allow overriding the timestamp, for example for reproducible builds, or to |
| 365 | # synchronize timestamps across multiple projects. |
| 366 | # This must be set to a C string (including quotes where applicable). |
| 367 | BUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__ |
| 368 | |
| 369 | DEFINES += -DBUILD_MESSAGE_TIMESTAMP='$(BUILD_MESSAGE_TIMESTAMP)' |
| 370 | DEFINES += -DBUILD_MESSAGE_VERSION_STRING='"$(VERSION_STRING)"' |
| 371 | DEFINES += -DBUILD_MESSAGE_VERSION='"$(VERSION)"' |
| 372 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 373 | BL_COMMON_SOURCES += common/bl_common.c \ |
Soby Mathew | aaf15f5 | 2017-09-04 11:49:29 +0100 | [diff] [blame] | 374 | common/tf_log.c \ |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 375 | common/${ARCH}/debug.S \ |
Julius Werner | 03020da | 2018-11-27 22:10:56 -0800 | [diff] [blame] | 376 | drivers/console/multi_console.c \ |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 377 | lib/${ARCH}/cache_helpers.S \ |
| 378 | lib/${ARCH}/misc_helpers.S \ |
Boyan Karatotev | 05504ba | 2023-02-15 13:21:50 +0000 | [diff] [blame] | 379 | lib/extensions/pmuv3/${ARCH}/pmuv3.c \ |
Soby Mathew | 2f38ce3 | 2018-02-08 17:45:12 +0000 | [diff] [blame] | 380 | plat/common/plat_bl_common.c \ |
Soby Mathew | aaf15f5 | 2017-09-04 11:49:29 +0100 | [diff] [blame] | 381 | plat/common/plat_log_common.c \ |
dp-arm | 230011c | 2017-03-07 11:02:47 +0000 | [diff] [blame] | 382 | plat/common/${ARCH}/plat_common.c \ |
Soby Mathew | a194125 | 2016-05-05 14:33:33 +0100 | [diff] [blame] | 383 | plat/common/${ARCH}/platform_helpers.S \ |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 384 | ${COMPILER_RT_SRCS} |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 385 | |
Chris Kay | cfba645 | 2023-12-04 09:55:50 +0000 | [diff] [blame] | 386 | ifeq ($($(ARCH)-cc-id),arm-clang) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 387 | BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S |
Antonio Nino Diaz | eea20fc | 2018-08-16 15:42:44 +0100 | [diff] [blame] | 388 | endif |
| 389 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 390 | ifeq (${SANITIZE_UB},on) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 391 | BL_COMMON_SOURCES += plat/common/ubsan.c |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 392 | endif |
| 393 | |
Yann Gautier | 2cf1dbc | 2018-06-18 16:00:23 +0200 | [diff] [blame] | 394 | INCLUDES += -Iinclude \ |
Antonio Nino Diaz | 8d1ade6 | 2018-12-17 17:20:57 +0000 | [diff] [blame] | 395 | -Iinclude/arch/${ARCH} \ |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 396 | -Iinclude/lib/cpus/${ARCH} \ |
| 397 | -Iinclude/lib/el3_runtime/${ARCH} \ |
| 398 | ${PLAT_INCLUDES} \ |
| 399 | ${SPD_INCLUDES} |
| 400 | |
Nishant Sharma | 331b568 | 2022-08-15 16:37:07 +0100 | [diff] [blame] | 401 | DTC_FLAGS += -I dts -O dtb |
| 402 | DTC_CPPFLAGS += -P -nostdinc $(INCLUDES) -Ifdts -undef \ |
| 403 | -x assembler-with-cpp $(DEFINES) |
| 404 | |
Antonio Nino Diaz | c3a2cf2 | 2018-11-19 11:48:30 +0000 | [diff] [blame] | 405 | include common/backtrace/backtrace.mk |
| 406 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 407 | ################################################################################ |
Govindraj Raja | 1a21129 | 2023-09-20 14:32:24 -0500 | [diff] [blame] | 408 | # Generic definitions |
| 409 | ################################################################################ |
| 410 | include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk |
| 411 | |
| 412 | ifeq (${BUILD_BASE},) |
| 413 | BUILD_BASE := ./build |
| 414 | endif |
| 415 | BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE} |
| 416 | |
| 417 | SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*)))) |
| 418 | |
| 419 | # Platforms providing their own TBB makefile may override this value |
| 420 | INCLUDE_TBBR_MK := 1 |
| 421 | |
| 422 | ################################################################################ |
| 423 | # Include SPD Makefile if one has been specified |
| 424 | ################################################################################ |
| 425 | |
| 426 | ifneq (${SPD},none) |
| 427 | ifeq (${ARCH},aarch32) |
| 428 | $(error "Error: SPD is incompatible with AArch32.") |
| 429 | endif |
| 430 | |
| 431 | ifdef EL3_PAYLOAD_BASE |
| 432 | $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.") |
| 433 | $(warning "The SPD and its BL32 companion will be present but \ |
| 434 | ignored.") |
| 435 | endif |
| 436 | |
| 437 | ifeq (${SPD},spmd) |
| 438 | # SPMD is located in std_svc directory |
| 439 | SPD_DIR := std_svc |
| 440 | |
| 441 | ifeq ($(SPMD_SPM_AT_SEL2),1) |
| 442 | CTX_INCLUDE_EL2_REGS := 1 |
| 443 | ifeq ($(SPMC_AT_EL3),1) |
| 444 | $(error SPM cannot be enabled in both S-EL2 and EL3.) |
| 445 | endif |
Madhukar Pappireddy | 7503cdc | 2024-04-25 23:01:00 -0500 | [diff] [blame] | 446 | ifeq ($(CTX_INCLUDE_SVE_REGS),1) |
| 447 | $(error SVE context management not needed with Hafnium SPMC.) |
| 448 | endif |
Govindraj Raja | 1a21129 | 2023-09-20 14:32:24 -0500 | [diff] [blame] | 449 | endif |
| 450 | |
| 451 | ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp) |
| 452 | DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG |
| 453 | endif |
| 454 | |
Arunachalam Ganapathy | fd29d58 | 2022-04-11 14:36:54 +0100 | [diff] [blame] | 455 | ifeq ($(findstring trusty_sp,$(ARM_SPMC_MANIFEST_DTS)),trusty_sp) |
| 456 | DTC_CPPFLAGS += -DTRUSTY_SP_FW_CONFIG |
| 457 | endif |
| 458 | |
Govindraj Raja | 1a21129 | 2023-09-20 14:32:24 -0500 | [diff] [blame] | 459 | ifeq ($(TS_SP_FW_CONFIG),1) |
Arunachalam Ganapathy | fd29d58 | 2022-04-11 14:36:54 +0100 | [diff] [blame] | 460 | DTC_CPPFLAGS += -DTS_SP_FW_CONFIG |
Govindraj Raja | 1a21129 | 2023-09-20 14:32:24 -0500 | [diff] [blame] | 461 | endif |
| 462 | |
| 463 | ifneq ($(ARM_BL2_SP_LIST_DTS),) |
| 464 | DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS) |
| 465 | endif |
| 466 | |
| 467 | ifneq ($(SP_LAYOUT_FILE),) |
| 468 | BL2_ENABLE_SP_LOAD := 1 |
| 469 | endif |
Govindraj Raja | bad835a | 2023-10-31 14:48:11 -0500 | [diff] [blame] | 470 | |
| 471 | ifeq ($(SPMC_AT_EL3_SEL0_SP),1) |
| 472 | ifneq ($(SPMC_AT_EL3),1) |
| 473 | $(error SEL0 SP cannot be enabled without SPMC at EL3) |
| 474 | endif |
| 475 | endif |
Govindraj Raja | 1a21129 | 2023-09-20 14:32:24 -0500 | [diff] [blame] | 476 | else |
| 477 | # All other SPDs in spd directory |
| 478 | SPD_DIR := spd |
| 479 | endif #(SPD) |
| 480 | |
| 481 | # We expect to locate an spd.mk under the specified SPD directory |
| 482 | SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk) |
| 483 | |
| 484 | ifeq (${SPD_MAKE},) |
| 485 | $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located) |
| 486 | endif |
| 487 | $(info Including ${SPD_MAKE}) |
| 488 | include ${SPD_MAKE} |
| 489 | |
| 490 | # If there's BL32 companion for the chosen SPD, we expect that the SPD's |
| 491 | # Makefile would set NEED_BL32 to "yes". In this case, the build system |
| 492 | # supports two mutually exclusive options: |
| 493 | # * BL32 is built from source: then BL32_SOURCES must contain the list |
| 494 | # of source files to build BL32 |
| 495 | # * BL32 is a prebuilt binary: then BL32 must point to the image file |
| 496 | # that will be included in the FIP |
| 497 | # If both BL32_SOURCES and BL32 are defined, the binary takes precedence |
| 498 | # over the sources. |
| 499 | endif #(SPD=none) |
| 500 | |
| 501 | ifeq (${ENABLE_SPMD_LP}, 1) |
| 502 | ifneq (${SPD},spmd) |
| 503 | $(error Error: ENABLE_SPMD_LP requires SPD=spmd.) |
| 504 | endif |
| 505 | ifeq ($(SPMC_AT_EL3),1) |
| 506 | $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.) |
| 507 | endif |
| 508 | endif |
| 509 | |
| 510 | ################################################################################ |
Govindraj Raja | 0386e31 | 2023-08-17 10:41:48 -0500 | [diff] [blame] | 511 | # Process BRANCH_PROTECTION value and set |
| 512 | # Pointer Authentication and Branch Target Identification flags |
| 513 | ################################################################################ |
| 514 | ifeq (${BRANCH_PROTECTION},0) |
| 515 | # Default value turns off all types of branch protection |
| 516 | BP_OPTION := none |
| 517 | else ifneq (${ARCH},aarch64) |
| 518 | $(error BRANCH_PROTECTION requires AArch64) |
| 519 | else ifeq (${BRANCH_PROTECTION},1) |
| 520 | # Enables all types of branch protection features |
| 521 | BP_OPTION := standard |
| 522 | ENABLE_BTI := 1 |
| 523 | ENABLE_PAUTH := 1 |
| 524 | else ifeq (${BRANCH_PROTECTION},2) |
| 525 | # Return address signing to its standard level |
| 526 | BP_OPTION := pac-ret |
| 527 | ENABLE_PAUTH := 1 |
| 528 | else ifeq (${BRANCH_PROTECTION},3) |
| 529 | # Extend the signing to include leaf functions |
| 530 | BP_OPTION := pac-ret+leaf |
| 531 | ENABLE_PAUTH := 1 |
| 532 | else ifeq (${BRANCH_PROTECTION},4) |
| 533 | # Turn on branch target identification mechanism |
| 534 | BP_OPTION := bti |
| 535 | ENABLE_BTI := 1 |
| 536 | else |
| 537 | $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION}) |
| 538 | endif #(BRANCH_PROTECTION) |
| 539 | |
| 540 | ifeq ($(ENABLE_PAUTH),1) |
| 541 | CTX_INCLUDE_PAUTH_REGS := 1 |
| 542 | endif |
| 543 | ifneq (${BP_OPTION},none) |
| 544 | TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION} |
| 545 | endif #(BP_OPTION) |
| 546 | |
| 547 | # Pointer Authentication sources |
| 548 | ifeq (${ENABLE_PAUTH}, 1) |
| 549 | # arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the |
| 550 | # Pauth support. As it's not secure, it must be reimplemented for real platforms |
| 551 | BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S |
| 552 | endif |
| 553 | |
Govindraj Raja | 1a21129 | 2023-09-20 14:32:24 -0500 | [diff] [blame] | 554 | ################################################################################ |
| 555 | # Include the platform specific Makefile after the SPD Makefile (the platform |
| 556 | # makefile may use all previous definitions in this file) |
| 557 | ################################################################################ |
| 558 | include ${PLAT_MAKEFILE_FULL} |
| 559 | |
| 560 | ################################################################################ |
| 561 | # Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from |
| 562 | # platform. |
| 563 | ################################################################################ |
| 564 | include ${MAKE_HELPERS_DIRECTORY}arch_features.mk |
| 565 | |
Govindraj Raja | 0386e31 | 2023-08-17 10:41:48 -0500 | [diff] [blame] | 566 | #################################################### |
| 567 | # Enable required options for Memory Stack Tagging. |
| 568 | #################################################### |
| 569 | |
| 570 | # Currently, these options are enabled only for clang and armclang compiler. |
| 571 | ifeq (${SUPPORT_STACK_MEMTAG},yes) |
| 572 | ifdef mem_tag_arch_support |
| 573 | # Check for armclang and clang compilers |
Chris Kay | cfba645 | 2023-12-04 09:55:50 +0000 | [diff] [blame] | 574 | ifneq ($(filter %-clang,$($(ARCH)-cc-id)),) |
Govindraj Raja | 0386e31 | 2023-08-17 10:41:48 -0500 | [diff] [blame] | 575 | # Add "memtag" architecture feature modifier if not specified |
| 576 | ifeq ( ,$(findstring memtag,$(arch-features))) |
| 577 | arch-features := $(arch-features)+memtag |
| 578 | endif # memtag |
Chris Kay | cfba645 | 2023-12-04 09:55:50 +0000 | [diff] [blame] | 579 | ifeq ($($(ARCH)-cc-id),arm-clang) |
Govindraj Raja | 0386e31 | 2023-08-17 10:41:48 -0500 | [diff] [blame] | 580 | TF_CFLAGS += -mmemtag-stack |
Chris Kay | cfba645 | 2023-12-04 09:55:50 +0000 | [diff] [blame] | 581 | else ifeq ($($(ARCH)-cc-id),llvm-clang) |
Govindraj Raja | 0386e31 | 2023-08-17 10:41:48 -0500 | [diff] [blame] | 582 | TF_CFLAGS += -fsanitize=memtag |
| 583 | endif # armclang |
| 584 | endif |
| 585 | else |
| 586 | $(error "Error: stack memory tagging is not supported for \ |
| 587 | architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a") |
| 588 | endif #(mem_tag_arch_support) |
| 589 | endif #(SUPPORT_STACK_MEMTAG) |
| 590 | |
| 591 | ################################################################################ |
| 592 | # RME dependent flags configuration, Enable optional features for RME. |
| 593 | ################################################################################ |
| 594 | # FEAT_RME |
| 595 | ifeq (${ENABLE_RME},1) |
Govindraj Raja | 60f5266 | 2023-10-12 16:57:46 -0500 | [diff] [blame] | 596 | # RME doesn't support BRBE |
| 597 | ENABLE_BRBE_FOR_NS := 0 |
| 598 | |
Govindraj Raja | 0386e31 | 2023-08-17 10:41:48 -0500 | [diff] [blame] | 599 | # RME doesn't support PIE |
| 600 | ifneq (${ENABLE_PIE},0) |
| 601 | $(error ENABLE_RME does not support PIE) |
| 602 | endif |
| 603 | |
| 604 | # RME doesn't support BRBE |
| 605 | ifneq (${ENABLE_BRBE_FOR_NS},0) |
| 606 | $(error ENABLE_RME does not support BRBE.) |
| 607 | endif |
| 608 | |
| 609 | # RME requires AARCH64 |
| 610 | ifneq (${ARCH},aarch64) |
| 611 | $(error ENABLE_RME requires AArch64) |
| 612 | endif |
| 613 | |
| 614 | # RME requires el2 context to be saved for now. |
| 615 | CTX_INCLUDE_EL2_REGS := 1 |
| 616 | CTX_INCLUDE_AARCH32_REGS := 0 |
| 617 | CTX_INCLUDE_PAUTH_REGS := 1 |
| 618 | |
| 619 | # RME enables CSV2_2 extension by default. |
| 620 | ENABLE_FEAT_CSV2_2 = 1 |
| 621 | endif #(FEAT_RME) |
| 622 | |
| 623 | ################################################################################ |
Zelalem Aweke | 4d37db8 | 2021-07-11 18:33:20 -0500 | [diff] [blame] | 624 | # Include rmmd Makefile if RME is enabled |
| 625 | ################################################################################ |
Zelalem Aweke | 4d37db8 | 2021-07-11 18:33:20 -0500 | [diff] [blame] | 626 | ifneq (${ENABLE_RME},0) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 627 | ifneq (${ARCH},aarch64) |
| 628 | $(error ENABLE_RME requires AArch64) |
| 629 | endif |
| 630 | ifeq ($(SPMC_AT_EL3),1) |
| 631 | $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.) |
| 632 | endif |
| 633 | |
| 634 | ifneq (${SPD}, none) |
| 635 | ifneq (${SPD}, spmd) |
| 636 | $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd) |
| 637 | endif |
| 638 | endif |
Zelalem Aweke | 4d37db8 | 2021-07-11 18:33:20 -0500 | [diff] [blame] | 639 | include services/std_svc/rmmd/rmmd.mk |
| 640 | $(warning "RME is an experimental feature") |
| 641 | endif |
| 642 | |
Govindraj Raja | 1a21129 | 2023-09-20 14:32:24 -0500 | [diff] [blame] | 643 | ifeq (${CTX_INCLUDE_EL2_REGS}, 1) |
| 644 | ifeq (${SPD},none) |
| 645 | ifeq (${ENABLE_RME},0) |
| 646 | $(error CTX_INCLUDE_EL2_REGS is available only when SPD \ |
| 647 | or RME is enabled) |
| 648 | endif |
| 649 | endif |
| 650 | endif |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 651 | |
Govindraj Raja | 6909641 | 2023-06-01 16:29:16 -0500 | [diff] [blame] | 652 | ################################################################################ |
| 653 | # Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come |
| 654 | # up with appropriate march values for compiler. |
| 655 | ################################################################################ |
| 656 | include ${MAKE_HELPERS_DIRECTORY}march.mk |
| 657 | |
| 658 | TF_CFLAGS += $(march-directive) |
Govindraj Raja | 0c57247 | 2024-01-23 16:00:19 -0600 | [diff] [blame] | 659 | ASFLAGS += $(march-directive) |
Govindraj Raja | 6909641 | 2023-06-01 16:29:16 -0500 | [diff] [blame] | 660 | |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 661 | # This internal flag is common option which is set to 1 for scenarios |
| 662 | # when the BL2 is running in EL3 level. This occurs in two scenarios - |
| 663 | # 4 world system running BL2 at EL3 and two world system without BL1 running |
| 664 | # BL2 in EL3 |
| 665 | |
| 666 | ifeq (${RESET_TO_BL2},1) |
| 667 | BL2_RUNS_AT_EL3 := 1 |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 668 | ifeq (${ENABLE_RME},1) |
| 669 | $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \ |
| 670 | supported at the moment.) |
| 671 | endif |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 672 | else ifeq (${ENABLE_RME},1) |
| 673 | BL2_RUNS_AT_EL3 := 1 |
| 674 | else |
| 675 | BL2_RUNS_AT_EL3 := 0 |
| 676 | endif |
| 677 | |
Manish Pandey | f90a73c | 2023-10-10 15:42:19 +0100 | [diff] [blame] | 678 | # This internal flag is set to 1 when Firmware First handling of External aborts |
| 679 | # is required by lowe ELs. Currently only NS requires this support. |
| 680 | ifeq ($(HANDLE_EA_EL3_FIRST_NS),1) |
| 681 | FFH_SUPPORT := 1 |
| 682 | else |
| 683 | FFH_SUPPORT := 0 |
| 684 | endif |
| 685 | |
Etienne Carriere | 1374fcb | 2017-11-08 13:48:40 +0100 | [diff] [blame] | 686 | ifeq (${ARM_ARCH_MAJOR},7) |
| 687 | include make_helpers/armv7-a-cpus.mk |
| 688 | endif |
| 689 | |
Masahiro Yamada | c3ca881 | 2020-01-17 13:44:37 +0900 | [diff] [blame] | 690 | PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT}) |
| 691 | ifneq ($(PIE_FOUND),) |
| 692 | TF_CFLAGS += -fno-PIE |
Chris Kay | cfba645 | 2023-12-04 09:55:50 +0000 | [diff] [blame] | 693 | ifeq ($($(ARCH)-ld-id),gnu-gcc) |
Samuel Holland | 9286c02 | 2022-04-08 21:56:02 -0500 | [diff] [blame] | 694 | TF_LDFLAGS += -no-pie |
| 695 | endif |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 696 | endif #(PIE_FOUND) |
Masahiro Yamada | c3ca881 | 2020-01-17 13:44:37 +0900 | [diff] [blame] | 697 | |
Chris Kay | cfba645 | 2023-12-04 09:55:50 +0000 | [diff] [blame] | 698 | ifeq ($($(ARCH)-ld-id),gnu-gcc) |
Masahiro Yamada | c3ca881 | 2020-01-17 13:44:37 +0900 | [diff] [blame] | 699 | PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker |
Soby Mathew | 078f1a4 | 2018-08-28 11:13:55 +0100 | [diff] [blame] | 700 | else |
Masahiro Yamada | c3ca881 | 2020-01-17 13:44:37 +0900 | [diff] [blame] | 701 | PIE_LDFLAGS += -pie --no-dynamic-linker |
| 702 | endif |
| 703 | |
| 704 | ifeq ($(ENABLE_PIE),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 705 | ifeq ($(RESET_TO_BL2),1) |
| 706 | ifneq ($(BL2_IN_XIP_MEM),1) |
| 707 | BL2_CPPFLAGS += -fpie |
| 708 | BL2_CFLAGS += -fpie |
| 709 | BL2_LDFLAGS += $(PIE_LDFLAGS) |
| 710 | endif #(BL2_IN_XIP_MEM) |
| 711 | endif #(RESET_TO_BL2) |
Chris Kay | 13886c8 | 2023-02-02 14:39:03 +0000 | [diff] [blame] | 712 | BL31_CPPFLAGS += -fpie |
| 713 | BL31_CFLAGS += -fpie |
Masahiro Yamada | c3ca881 | 2020-01-17 13:44:37 +0900 | [diff] [blame] | 714 | BL31_LDFLAGS += $(PIE_LDFLAGS) |
Chris Kay | 13886c8 | 2023-02-02 14:39:03 +0000 | [diff] [blame] | 715 | |
| 716 | BL32_CPPFLAGS += -fpie |
Masahiro Yamada | de634f8 | 2020-01-17 13:45:14 +0900 | [diff] [blame] | 717 | BL32_CFLAGS += -fpie |
| 718 | BL32_LDFLAGS += $(PIE_LDFLAGS) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 719 | endif #(ENABLE_PIE) |
Soby Mathew | 078f1a4 | 2018-08-28 11:13:55 +0100 | [diff] [blame] | 720 | |
Boyan Karatotev | e7d7c27 | 2023-01-25 16:55:18 +0000 | [diff] [blame] | 721 | BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG} |
| 722 | BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG} |
| 723 | BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG} |
| 724 | |
Masahiro Yamada | f144157 | 2020-04-01 14:20:58 +0900 | [diff] [blame] | 725 | BL1_CPPFLAGS += -DIMAGE_AT_EL3 |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 726 | ifeq ($(RESET_TO_BL2),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 727 | BL2_CPPFLAGS += -DIMAGE_AT_EL3 |
Masahiro Yamada | 003dd76 | 2020-03-26 13:18:48 +0900 | [diff] [blame] | 728 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 729 | BL2_CPPFLAGS += -DIMAGE_AT_EL1 |
| 730 | endif #(RESET_TO_BL2) |
Boyan Karatotev | e7d7c27 | 2023-01-25 16:55:18 +0000 | [diff] [blame] | 731 | |
| 732 | ifeq (${ARCH},aarch64) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 733 | BL2U_CPPFLAGS += -DIMAGE_AT_EL1 |
| 734 | BL31_CPPFLAGS += -DIMAGE_AT_EL3 |
| 735 | BL32_CPPFLAGS += -DIMAGE_AT_EL1 |
Boyan Karatotev | e7d7c27 | 2023-01-25 16:55:18 +0000 | [diff] [blame] | 736 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 737 | BL32_CPPFLAGS += -DIMAGE_AT_EL3 |
Masahiro Yamada | 003dd76 | 2020-03-26 13:18:48 +0900 | [diff] [blame] | 738 | endif |
| 739 | |
Sandrine Bailleux | d481759 | 2016-01-13 14:57:38 +0000 | [diff] [blame] | 740 | # Include the CPU specific operations makefile, which provides default |
| 741 | # values for all CPU errata workarounds and CPU specific optimisations. |
| 742 | # This can be overridden by the platform. |
Soby Mathew | 937488b | 2014-09-22 14:13:34 +0100 | [diff] [blame] | 743 | include lib/cpus/cpu-ops.mk |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 744 | |
dp-arm | cdd03cb | 2017-02-15 11:07:55 +0000 | [diff] [blame] | 745 | ################################################################################ |
| 746 | # Build `AARCH32_SP` as BL32 image for AArch32 |
| 747 | ################################################################################ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 748 | ifeq (${ARCH},aarch32) |
| 749 | NEED_BL32 := yes |
dp-arm | cdd03cb | 2017-02-15 11:07:55 +0000 | [diff] [blame] | 750 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 751 | ifneq (${AARCH32_SP},none) |
| 752 | # We expect to locate an sp.mk under the specified AARCH32_SP directory |
| 753 | AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk) |
dp-arm | cdd03cb | 2017-02-15 11:07:55 +0000 | [diff] [blame] | 754 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 755 | ifeq (${AARCH32_SP_MAKE},) |
| 756 | $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located) |
| 757 | endif |
Juan Pablo Conde | 6aba3b1 | 2023-08-09 13:19:21 -0500 | [diff] [blame] | 758 | $(info Including ${AARCH32_SP_MAKE}) |
| 759 | include ${AARCH32_SP_MAKE} |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 760 | endif |
| 761 | endif #(ARCH=aarch32) |
Varun Wadekar | 3f9002c | 2019-01-31 09:22:30 -0800 | [diff] [blame] | 762 | |
| 763 | ################################################################################ |
| 764 | # Include libc if not overridden |
| 765 | ################################################################################ |
| 766 | ifeq (${OVERRIDE_LIBC},0) |
| 767 | include lib/libc/libc.mk |
dp-arm | cdd03cb | 2017-02-15 11:07:55 +0000 | [diff] [blame] | 768 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 769 | |
| 770 | ################################################################################ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 771 | # Check incompatible options and dependencies |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 772 | ################################################################################ |
| 773 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 774 | # USE_DEBUGFS experimental feature recommended only in debug builds |
| 775 | ifeq (${USE_DEBUGFS},1) |
| 776 | ifeq (${DEBUG},1) |
| 777 | $(warning DEBUGFS experimental feature is enabled.) |
| 778 | else |
| 779 | $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY) |
Qixiang Xu | be9bd9d | 2017-08-24 11:03:23 +0800 | [diff] [blame] | 780 | endif |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 781 | endif #(USE_DEBUGFS) |
| 782 | |
| 783 | # USE_SPINLOCK_CAS requires AArch64 build |
| 784 | ifeq (${USE_SPINLOCK_CAS},1) |
| 785 | ifneq (${ARCH},aarch64) |
| 786 | $(error USE_SPINLOCK_CAS requires AArch64) |
Qixiang Xu | be9bd9d | 2017-08-24 11:03:23 +0800 | [diff] [blame] | 787 | endif |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 788 | endif #(USE_SPINLOCK_CAS) |
| 789 | |
| 790 | # The cert_create tool cannot generate certificates individually, so we use the |
| 791 | # target 'certificates' to create them all |
| 792 | ifneq (${GENERATE_COT},0) |
| 793 | FIP_DEPS += certificates |
| 794 | FWU_FIP_DEPS += fwu_certificates |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 795 | endif |
| 796 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 797 | ifneq (${DECRYPTION_SUPPORT},none) |
| 798 | ENC_ARGS += -f ${FW_ENC_STATUS} |
| 799 | ENC_ARGS += -k ${ENC_KEY} |
| 800 | ENC_ARGS += -n ${ENC_NONCE} |
| 801 | FIP_DEPS += enctool |
| 802 | FWU_FIP_DEPS += enctool |
| 803 | endif #(DECRYPTION_SUPPORT) |
| 804 | |
| 805 | ifdef EL3_PAYLOAD_BASE |
| 806 | ifdef PRELOADED_BL33_BASE |
| 807 | $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \ |
| 808 | incompatible build options. EL3_PAYLOAD_BASE has priority.") |
| 809 | endif |
| 810 | ifneq (${GENERATE_COT},0) |
| 811 | $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \ |
| 812 | build options.") |
| 813 | endif |
| 814 | ifneq (${TRUSTED_BOARD_BOOT},0) |
| 815 | $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \ |
| 816 | incompatible \ build options.") |
| 817 | endif |
| 818 | endif #(EL3_PAYLOAD_BASE) |
| 819 | |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 820 | ifeq (${NEED_BL33},yes) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 821 | ifdef EL3_PAYLOAD_BASE |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 822 | $(warning "BL33 image is not needed when option \ |
| 823 | BL33_PAYLOAD_BASE is used and won't be added to the FIP file.") |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 824 | endif |
| 825 | ifdef PRELOADED_BL33_BASE |
Antonio Nino Diaz | 2b8277b | 2016-04-06 17:31:57 +0100 | [diff] [blame] | 826 | $(warning "BL33 image is not needed when option \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 827 | PRELOADED_BL33_BASE is used and won't be added to the FIP file.") |
| 828 | endif |
| 829 | endif #(NEED_BL33) |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 830 | |
Jeenu Viswambharan | 7ed2cbc | 2017-01-06 16:14:42 +0000 | [diff] [blame] | 831 | # When building for systems with hardware-assisted coherency, there's no need to |
| 832 | # use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too. |
| 833 | ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 834 | $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY) |
Jeenu Viswambharan | 7ed2cbc | 2017-01-06 16:14:42 +0000 | [diff] [blame] | 835 | endif |
Yatharth Kochar | f528faf | 2016-06-28 16:58:26 +0100 | [diff] [blame] | 836 | |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 837 | #For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1. |
| 838 | ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 839 | $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled") |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 840 | endif |
| 841 | |
Manish Pandey | d419e22 | 2023-02-13 12:39:17 +0000 | [diff] [blame] | 842 | # RAS_EXTENSION is deprecated, provide alternate build options |
Jeenu Viswambharan | 9a7ce2f | 2018-04-04 16:07:11 +0100 | [diff] [blame] | 843 | ifeq ($(RAS_EXTENSION),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 844 | $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \ |
Manish Pandey | f90a73c | 2023-10-10 15:42:19 +0100 | [diff] [blame] | 845 | and HANDLE_EA_EL3_FIRST_NS instead") |
Manish Pandey | d419e22 | 2023-02-13 12:39:17 +0000 | [diff] [blame] | 846 | endif |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 847 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 848 | |
Manish Pandey | d419e22 | 2023-02-13 12:39:17 +0000 | [diff] [blame] | 849 | # When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled |
Jeenu Viswambharan | f00da74 | 2017-12-08 12:13:51 +0000 | [diff] [blame] | 850 | ifeq ($(FAULT_INJECTION_SUPPORT),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 851 | ifeq ($(ENABLE_FEAT_RAS),0) |
| 852 | $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0) |
| 853 | endif |
| 854 | endif #(FAULT_INJECTION_SUPPORT) |
Jeenu Viswambharan | f00da74 | 2017-12-08 12:13:51 +0000 | [diff] [blame] | 855 | |
Roberto Vargas | 025946a | 2018-09-24 17:20:48 +0100 | [diff] [blame] | 856 | # DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1 |
Soby Mathew | 9fe8804 | 2018-03-26 12:43:37 +0100 | [diff] [blame] | 857 | ifeq ($(DYN_DISABLE_AUTH), 1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 858 | ifeq (${TRUSTED_BOARD_BOOT}, 0) |
| 859 | $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \ |
| 860 | to be set.") |
| 861 | endif |
| 862 | endif #(DYN_DISABLE_AUTH) |
Soby Mathew | 9fe8804 | 2018-03-26 12:43:37 +0100 | [diff] [blame] | 863 | |
Manish V Badarkhe | c9fdaf6 | 2022-06-20 15:32:38 +0100 | [diff] [blame] | 864 | ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1) |
| 865 | # Support authentication verification and hash calculation |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 866 | CRYPTO_SUPPORT := 3 |
Manish V Badarkhe | c9fdaf6 | 2022-06-20 15:32:38 +0100 | [diff] [blame] | 867 | else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1) |
| 868 | # Support authentication verification and hash calculation |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 869 | CRYPTO_SUPPORT := 3 |
Manish V Badarkhe | c9fdaf6 | 2022-06-20 15:32:38 +0100 | [diff] [blame] | 870 | else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),) |
| 871 | # Support hash calculation only |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 872 | CRYPTO_SUPPORT := 2 |
Manish V Badarkhe | c9fdaf6 | 2022-06-20 15:32:38 +0100 | [diff] [blame] | 873 | else ifeq (${TRUSTED_BOARD_BOOT},1) |
| 874 | # Support authentication verification only |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 875 | CRYPTO_SUPPORT := 1 |
Manish V Badarkhe | 5181d60 | 2022-01-08 22:56:06 +0000 | [diff] [blame] | 876 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 877 | CRYPTO_SUPPORT := 0 |
| 878 | endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT)) |
Manish V Badarkhe | 5181d60 | 2022-01-08 22:56:06 +0000 | [diff] [blame] | 879 | |
Balint Dobszay | d0dbd5e | 2019-12-18 15:28:00 +0100 | [diff] [blame] | 880 | # SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled. |
| 881 | ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 882 | $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled") |
Manish V Badarkhe | ad33989 | 2020-06-29 10:32:53 +0100 | [diff] [blame] | 883 | endif |
| 884 | |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 885 | # If pointer authentication is used in the firmware, make sure that all the |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 886 | # registers associated to it are also saved and restored. |
| 887 | # Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1. |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 888 | ifeq ($(ENABLE_PAUTH),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 889 | ifeq ($(CTX_INCLUDE_PAUTH_REGS),0) |
| 890 | $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1) |
| 891 | endif |
| 892 | endif #(ENABLE_PAUTH) |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 893 | |
| 894 | ifeq ($(CTX_INCLUDE_PAUTH_REGS),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 895 | ifneq (${ARCH},aarch64) |
| 896 | $(error CTX_INCLUDE_PAUTH_REGS requires AArch64) |
| 897 | endif |
| 898 | endif #(CTX_INCLUDE_PAUTH_REGS) |
Antonio Nino Diaz | 25cda67 | 2019-02-19 11:53:51 +0000 | [diff] [blame] | 899 | |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 900 | ifeq ($(FEATURE_DETECTION),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 901 | $(info FEATURE_DETECTION is an experimental feature) |
| 902 | endif #(FEATURE_DETECTION) |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 903 | |
Jayanth Dodderi Chidanand | cfe053a | 2022-11-08 10:31:07 +0000 | [diff] [blame] | 904 | ifneq ($(ENABLE_SME2_FOR_NS), 0) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 905 | ifeq (${ENABLE_SME_FOR_NS}, 0) |
| 906 | $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \ |
| 907 | to be set") |
| 908 | $(warning "Forced ENABLE_SME_FOR_NS=1") |
| 909 | override ENABLE_SME_FOR_NS := 1 |
| 910 | endif |
| 911 | endif #(ENABLE_SME2_FOR_NS) |
Jayanth Dodderi Chidanand | 605419a | 2023-03-06 23:56:14 +0000 | [diff] [blame] | 912 | |
Petre-Ionut Tudor | e5a6fef | 2019-11-07 15:18:03 +0000 | [diff] [blame] | 913 | ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 914 | ifeq (${ALLOW_RO_XLAT_TABLES}, 1) |
| 915 | $(error "ALLOW_RO_XLAT_TABLES requires translation tables \ |
| 916 | library v2") |
| 917 | endif |
| 918 | endif #(ARM_XLAT_TABLES_LIB_V1) |
Petre-Ionut Tudor | e5a6fef | 2019-11-07 15:18:03 +0000 | [diff] [blame] | 919 | |
Sumit Garg | 392e4df | 2019-11-15 10:43:00 +0530 | [diff] [blame] | 920 | ifneq (${DECRYPTION_SUPPORT},none) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 921 | ifeq (${TRUSTED_BOARD_BOOT}, 0) |
| 922 | $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \ |
| 923 | to be set) |
| 924 | endif |
| 925 | endif #(DECRYPTION_SUPPORT) |
Sumit Garg | 392e4df | 2019-11-15 10:43:00 +0530 | [diff] [blame] | 926 | |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 927 | # Ensure that no Aarch64-only features are enabled in Aarch32 build |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 928 | ifeq (${ARCH},aarch32) |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 929 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 930 | # SME/SVE only supported on AArch64 |
| 931 | ifneq (${ENABLE_SME_FOR_NS},0) |
| 932 | $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32") |
| 933 | endif |
Jayanth Dodderi Chidanand | cfe053a | 2022-11-08 10:31:07 +0000 | [diff] [blame] | 934 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 935 | ifeq (${ENABLE_SVE_FOR_NS},1) |
| 936 | # Warning instead of error due to CI dependency on this |
| 937 | $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32") |
| 938 | endif |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 939 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 940 | # BRBE is not supported in AArch32 |
| 941 | ifeq (${ENABLE_BRBE_FOR_NS},1) |
| 942 | $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32") |
| 943 | endif |
johpow01 | 8186596 | 2022-01-28 17:06:20 -0600 | [diff] [blame] | 944 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 945 | # FEAT_RNG_TRAP is not supported in AArch32 |
| 946 | ifeq (${ENABLE_FEAT_RNG_TRAP},1) |
| 947 | $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32") |
| 948 | endif |
| 949 | endif #(ARCH=aarch32) |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 950 | |
Boyan Karatotev | 7f5dcc7 | 2023-03-08 16:29:26 +0000 | [diff] [blame] | 951 | ifneq (${ENABLE_SME_FOR_NS},0) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 952 | ifeq (${ENABLE_SVE_FOR_NS},0) |
| 953 | $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS") |
| 954 | endif |
| 955 | endif #(ENABLE_SME_FOR_NS) |
Boyan Karatotev | 7f5dcc7 | 2023-03-08 16:29:26 +0000 | [diff] [blame] | 956 | |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 957 | # Secure SME/SVE requires the non-secure component as well |
| 958 | ifeq (${ENABLE_SME_FOR_SWD},1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 959 | ifeq (${ENABLE_SME_FOR_NS},0) |
| 960 | $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS") |
| 961 | endif |
| 962 | ifeq (${ENABLE_SVE_FOR_SWD},0) |
| 963 | $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD") |
| 964 | endif |
| 965 | endif #(ENABLE_SME_FOR_SWD) |
| 966 | |
Madhukar Pappireddy | 7ff1be8 | 2024-06-17 15:28:33 -0500 | [diff] [blame] | 967 | # Enabling SVE for SWD requires enabling SVE for NWD due to ENABLE_FEAT |
| 968 | # mechanism. |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 969 | ifeq (${ENABLE_SVE_FOR_SWD},1) |
Madhukar Pappireddy | 7ff1be8 | 2024-06-17 15:28:33 -0500 | [diff] [blame] | 970 | ifeq (${ENABLE_SVE_FOR_NS},0) |
| 971 | $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS") |
| 972 | endif |
| 973 | endif |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 974 | |
Madhukar Pappireddy | 7ff1be8 | 2024-06-17 15:28:33 -0500 | [diff] [blame] | 975 | # Enabling SVE for both the worlds typically requires the context |
| 976 | # management of SVE registers. The only exception being SPMC at S-EL2. |
| 977 | ifeq (${ENABLE_SVE_FOR_SWD}, 1) |
| 978 | ifneq (${ENABLE_SVE_FOR_NS}, 0) |
| 979 | ifeq (${CTX_INCLUDE_SVE_REGS}-$(SPMD_SPM_AT_SEL2),0-0) |
| 980 | $(warning "ENABLE_SVE_FOR_SWD and ENABLE_SVE_FOR_NS together require CTX_INCLUDE_SVE_REGS") |
| 981 | endif |
| 982 | endif |
| 983 | endif |
| 984 | |
| 985 | # Enabling SVE in either world while enabling CTX_INCLUDE_FPREGS requires |
| 986 | # CTX_INCLUDE_SVE_REGS to be enabled due to architectural dependency between FP |
| 987 | # and SVE registers. |
| 988 | ifeq (${CTX_INCLUDE_FPREGS}, 1) |
| 989 | ifneq (${ENABLE_SVE_FOR_NS},0) |
| 990 | ifeq (${CTX_INCLUDE_SVE_REGS},0) |
| 991 | # Warning instead of error due to CI dependency on this |
| 992 | $(warning "CTX_INCLUDE_FPREGS and ENABLE_SVE_FOR_NS together require CTX_INCLUDE_SVE_REGS") |
| 993 | $(warning "Forced ENABLE_SVE_FOR_NS=0") |
| 994 | override ENABLE_SVE_FOR_NS := 0 |
| 995 | endif |
| 996 | endif |
| 997 | endif #(CTX_INCLUDE_FPREGS) |
Jayanth Dodderi Chidanand | cfe053a | 2022-11-08 10:31:07 +0000 | [diff] [blame] | 998 | |
Madhukar Pappireddy | 7ff1be8 | 2024-06-17 15:28:33 -0500 | [diff] [blame] | 999 | # SVE context management is only required if secure world has access to SVE/FP |
| 1000 | # functionality. |
| 1001 | ifeq (${CTX_INCLUDE_SVE_REGS},1) |
| 1002 | ifeq (${ENABLE_SVE_FOR_SWD},0) |
| 1003 | $(error "CTX_INCLUDE_SVE_REGS requires ENABLE_SVE_FOR_SWD to also be enabled") |
| 1004 | endif |
| 1005 | endif |
| 1006 | |
| 1007 | # SME cannot be used with CTX_INCLUDE_FPREGS since SPM does its own context |
| 1008 | # management including FPU registers. |
| 1009 | ifeq (${CTX_INCLUDE_FPREGS},1) |
| 1010 | ifneq (${ENABLE_SME_FOR_NS},0) |
| 1011 | $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS") |
| 1012 | endif |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1013 | endif #(CTX_INCLUDE_FPREGS) |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 1014 | |
Manish V Badarkhe | 191a5fc | 2022-03-02 12:06:35 +0000 | [diff] [blame] | 1015 | ifeq ($(DRTM_SUPPORT),1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1016 | $(info DRTM_SUPPORT is an experimental feature) |
Manish V Badarkhe | 191a5fc | 2022-03-02 12:06:35 +0000 | [diff] [blame] | 1017 | endif |
| 1018 | |
Raymond Mao | 9898339 | 2023-07-25 07:53:35 -0700 | [diff] [blame] | 1019 | ifeq (${TRANSFER_LIST},1) |
| 1020 | $(info TRANSFER_LIST is an experimental feature) |
| 1021 | endif |
| 1022 | |
Chris Kay | d02c231 | 2022-09-29 16:21:24 +0100 | [diff] [blame] | 1023 | ifeq (${ENABLE_RME},1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1024 | ifneq (${SEPARATE_CODE_AND_RODATA},1) |
| 1025 | $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`) |
| 1026 | endif |
Chris Kay | d02c231 | 2022-09-29 16:21:24 +0100 | [diff] [blame] | 1027 | endif |
| 1028 | |
Manish V Badarkhe | 78e14f8 | 2023-09-06 09:08:28 +0100 | [diff] [blame] | 1029 | ifeq ($(PSA_CRYPTO),1) |
| 1030 | $(info PSA_CRYPTO is an experimental feature) |
| 1031 | endif |
| 1032 | |
Manish V Badarkhe | d8d7d93 | 2024-05-09 12:14:13 +0100 | [diff] [blame] | 1033 | ifeq ($(DICE_PROTECTION_ENVIRONMENT),1) |
| 1034 | $(info DICE_PROTECTION_ENVIRONMENT is an experimental feature) |
| 1035 | endif |
| 1036 | |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 1037 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1038 | # Process platform overrideable behaviour |
| 1039 | ################################################################################ |
| 1040 | |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1041 | ifdef BL1_SOURCES |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1042 | NEED_BL1 := yes |
| 1043 | endif #(BL1_SOURCES) |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1044 | |
Jon Medhurst | 66573cb | 2014-02-13 15:19:28 +0000 | [diff] [blame] | 1045 | ifdef BL2_SOURCES |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1046 | NEED_BL2 := yes |
| 1047 | |
| 1048 | # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and |
| 1049 | # Certificate generation tools. This flag can be overridden by the platform. |
| 1050 | ifdef EL3_PAYLOAD_BASE |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1051 | # If booting an EL3 payload there is no need for a BL33 image |
| 1052 | # in the FIP file. |
| 1053 | NEED_BL33 := no |
| 1054 | else |
| 1055 | ifdef PRELOADED_BL33_BASE |
| 1056 | # If booting a BL33 preloaded image there is no need of |
| 1057 | # another one in the FIP file. |
| 1058 | NEED_BL33 := no |
| 1059 | else |
| 1060 | NEED_BL33 ?= yes |
| 1061 | endif |
| 1062 | endif |
| 1063 | endif #(BL2_SOURCES) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1064 | |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1065 | ifdef BL2U_SOURCES |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1066 | NEED_BL2U := yes |
| 1067 | endif #(BL2U_SOURCES) |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1068 | |
Masahiro Yamada | e76b4f8 | 2017-04-05 19:11:41 +0900 | [diff] [blame] | 1069 | # If SCP_BL2 is given, we always want FIP to include it. |
| 1070 | ifdef SCP_BL2 |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1071 | NEED_SCP_BL2 := yes |
| 1072 | endif #(SCP_BL2) |
Masahiro Yamada | e76b4f8 | 2017-04-05 19:11:41 +0900 | [diff] [blame] | 1073 | |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 1074 | # For AArch32, BL31 is not currently supported. |
| 1075 | ifneq (${ARCH},aarch32) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1076 | ifdef BL31_SOURCES |
| 1077 | # When booting an EL3 payload, there is no need to compile the BL31 |
| 1078 | # image nor put it in the FIP. |
| 1079 | ifndef EL3_PAYLOAD_BASE |
| 1080 | NEED_BL31 := yes |
| 1081 | endif |
| 1082 | endif |
| 1083 | endif #(ARCH=aarch64) |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 1084 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1085 | # Process TBB related flags |
| 1086 | ifneq (${GENERATE_COT},0) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1087 | # Common cert_create options |
| 1088 | ifneq (${CREATE_KEYS},0) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1089 | $(eval CRT_ARGS += -n) |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1090 | $(eval FWU_CRT_ARGS += -n) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1091 | ifneq (${SAVE_KEYS},0) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1092 | $(eval CRT_ARGS += -k) |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1093 | $(eval FWU_CRT_ARGS += -k) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1094 | endif |
| 1095 | endif |
| 1096 | # Include TBBR makefile (unless the platform indicates otherwise) |
| 1097 | ifeq (${INCLUDE_TBBR_MK},1) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1098 | include make_helpers/tbbr/tbbr_tools.mk |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1099 | endif |
| 1100 | endif #(GENERATE_COT) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1101 | |
Masahiro Yamada | 4d87eb4 | 2016-12-25 13:52:22 +0900 | [diff] [blame] | 1102 | ifneq (${FIP_ALIGN},0) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1103 | FIP_ARGS += --align ${FIP_ALIGN} |
| 1104 | endif #(FIP_ALIGN) |
Masahiro Yamada | 4d87eb4 | 2016-12-25 13:52:22 +0900 | [diff] [blame] | 1105 | |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1106 | ifdef FDT_SOURCES |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1107 | NEED_FDT := yes |
| 1108 | endif #(FDT_SOURCES) |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1109 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1110 | ################################################################################ |
Michalis Pappas | 0f223c5 | 2018-03-20 13:01:27 +0800 | [diff] [blame] | 1111 | # Include libraries' Makefile that are used in all BL |
| 1112 | ################################################################################ |
| 1113 | |
| 1114 | include lib/stack_protector/stack_protector.mk |
| 1115 | |
| 1116 | ################################################################################ |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1117 | # Include BL specific makefiles |
| 1118 | ################################################################################ |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1119 | |
| 1120 | ifeq (${NEED_BL1},yes) |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1121 | include bl1/bl1.mk |
| 1122 | endif |
| 1123 | |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1124 | ifeq (${NEED_BL2},yes) |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1125 | include bl2/bl2.mk |
| 1126 | endif |
| 1127 | |
Manish Pandey | b0e7efa | 2021-10-06 10:59:52 +0100 | [diff] [blame] | 1128 | ifeq (${NEED_BL2U},yes) |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1129 | include bl2u/bl2u.mk |
| 1130 | endif |
| 1131 | |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 1132 | ifeq (${NEED_BL31},yes) |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1133 | include bl31/bl31.mk |
| 1134 | endif |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 1135 | |
Soby Mathew | 574e01e | 2017-02-14 10:05:07 +0000 | [diff] [blame] | 1136 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1137 | # Build options checks |
| 1138 | ################################################################################ |
| 1139 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1140 | # Boolean_Flags |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1141 | $(eval $(call assert_booleans,\ |
| 1142 | $(sort \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1143 | ALLOW_RO_XLAT_TABLES \ |
| 1144 | BL2_ENABLE_SP_LOAD \ |
| 1145 | COLD_BOOT_SINGLE_CPU \ |
| 1146 | CREATE_KEYS \ |
| 1147 | CTX_INCLUDE_AARCH32_REGS \ |
| 1148 | CTX_INCLUDE_FPREGS \ |
Madhukar Pappireddy | dd9af9b | 2024-06-17 15:17:03 -0500 | [diff] [blame] | 1149 | CTX_INCLUDE_SVE_REGS \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1150 | CTX_INCLUDE_EL2_REGS \ |
Arvind Ram Prakash | 4851b49 | 2023-10-06 14:35:21 -0500 | [diff] [blame] | 1151 | CTX_INCLUDE_MPAM_REGS \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1152 | DEBUG \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1153 | DYN_DISABLE_AUTH \ |
| 1154 | EL3_EXCEPTION_HANDLING \ |
| 1155 | ENABLE_AMU_AUXILIARY_COUNTERS \ |
| 1156 | ENABLE_AMU_FCONF \ |
| 1157 | AMU_RESTRICT_COUNTERS \ |
| 1158 | ENABLE_ASSERTIONS \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1159 | ENABLE_PIE \ |
| 1160 | ENABLE_PMF \ |
| 1161 | ENABLE_PSCI_STAT \ |
| 1162 | ENABLE_RUNTIME_INSTRUMENTATION \ |
| 1163 | ENABLE_SME_FOR_SWD \ |
| 1164 | ENABLE_SVE_FOR_SWD \ |
Manish Pandey | 514a301 | 2023-10-10 13:53:25 +0100 | [diff] [blame] | 1165 | ENABLE_FEAT_RAS \ |
Manish Pandey | f90a73c | 2023-10-10 15:42:19 +0100 | [diff] [blame] | 1166 | FFH_SUPPORT \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1167 | ERROR_DEPRECATED \ |
| 1168 | FAULT_INJECTION_SUPPORT \ |
| 1169 | GENERATE_COT \ |
| 1170 | GICV2_G0_FOR_EL3 \ |
| 1171 | HANDLE_EA_EL3_FIRST_NS \ |
Bipin Ravi | e53e6ae | 2023-09-28 13:17:24 -0500 | [diff] [blame] | 1172 | HARDEN_SLS \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1173 | HW_ASSISTED_COHERENCY \ |
| 1174 | MEASURED_BOOT \ |
Tamas Ban | a426089 | 2023-06-07 13:35:04 +0200 | [diff] [blame] | 1175 | DICE_PROTECTION_ENVIRONMENT \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1176 | DRTM_SUPPORT \ |
| 1177 | NS_TIMER_SWITCH \ |
| 1178 | OVERRIDE_LIBC \ |
| 1179 | PL011_GENERIC_UART \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1180 | PROGRAMMABLE_RESET_ADDRESS \ |
| 1181 | PSCI_EXTENDED_STATE_ID \ |
| 1182 | PSCI_OS_INIT_MODE \ |
| 1183 | RESET_TO_BL31 \ |
| 1184 | SAVE_KEYS \ |
| 1185 | SEPARATE_CODE_AND_RODATA \ |
| 1186 | SEPARATE_BL2_NOLOAD_REGION \ |
| 1187 | SEPARATE_NOBITS_REGION \ |
Madhukar Pappireddy | 5c1b8d9 | 2024-06-17 15:26:00 -0500 | [diff] [blame] | 1188 | SEPARATE_SIMD_SECTION \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1189 | SPIN_ON_BL1_EXIT \ |
| 1190 | SPM_MM \ |
| 1191 | SPMC_AT_EL3 \ |
Nishant Sharma | 9e71911 | 2023-06-27 00:36:01 +0100 | [diff] [blame] | 1192 | SPMC_AT_EL3_SEL0_SP \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1193 | SPMD_SPM_AT_SEL2 \ |
Raghu Krishnamurthy | 7f046c1 | 2023-02-25 13:26:10 -0800 | [diff] [blame] | 1194 | ENABLE_SPMD_LP \ |
Raymond Mao | 9898339 | 2023-07-25 07:53:35 -0700 | [diff] [blame] | 1195 | TRANSFER_LIST \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1196 | TRUSTED_BOARD_BOOT \ |
| 1197 | USE_COHERENT_MEM \ |
| 1198 | USE_DEBUGFS \ |
| 1199 | ARM_IO_IN_DTB \ |
| 1200 | SDEI_IN_FCONF \ |
| 1201 | SEC_INT_DESC_IN_FCONF \ |
| 1202 | USE_ROMLIB \ |
| 1203 | USE_TBBR_DEFS \ |
| 1204 | WARMBOOT_ENABLE_DCACHE_EARLY \ |
| 1205 | RESET_TO_BL2 \ |
| 1206 | BL2_IN_XIP_MEM \ |
| 1207 | BL2_INV_DCACHE \ |
| 1208 | USE_SPINLOCK_CAS \ |
| 1209 | ENCRYPT_BL31 \ |
| 1210 | ENCRYPT_BL32 \ |
| 1211 | ERRATA_SPECULATIVE_AT \ |
| 1212 | RAS_TRAP_NS_ERR_REC_ACCESS \ |
| 1213 | COT_DESC_IN_DTB \ |
| 1214 | USE_SP804_TIMER \ |
| 1215 | PSA_FWU_SUPPORT \ |
Sughosh Ganu | 61905e5 | 2024-02-01 12:51:20 +0530 | [diff] [blame] | 1216 | PSA_FWU_METADATA_FW_STORE_DESC \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1217 | ENABLE_MPMM \ |
| 1218 | ENABLE_MPMM_FCONF \ |
| 1219 | FEATURE_DETECTION \ |
Jayanth Dodderi Chidanand | 7c7faff | 2022-10-11 17:16:07 +0100 | [diff] [blame] | 1220 | TRNG_SUPPORT \ |
Sona Mathew | 7fe0352 | 2022-11-18 18:05:38 -0600 | [diff] [blame] | 1221 | ERRATA_ABI_SUPPORT \ |
Sona Mathew | 5a4c9fc | 2023-03-14 14:02:03 -0500 | [diff] [blame] | 1222 | ERRATA_NON_ARM_INTERCONNECT \ |
Okash Khawaja | 037b56e | 2022-11-04 12:38:01 +0000 | [diff] [blame] | 1223 | CONDITIONAL_CMO \ |
Manish V Badarkhe | 78e14f8 | 2023-09-06 09:08:28 +0100 | [diff] [blame] | 1224 | PSA_CRYPTO \ |
Sandrine Bailleux | f57e203 | 2023-10-11 08:38:00 +0200 | [diff] [blame] | 1225 | ENABLE_CONSOLE_GETC \ |
Arvind Ram Prakash | 8bd27c9 | 2023-08-15 16:28:06 -0500 | [diff] [blame] | 1226 | INIT_UNUSED_NS_EL2 \ |
Juan Pablo Conde | b5ec138 | 2023-11-08 16:14:28 -0600 | [diff] [blame] | 1227 | PLATFORM_REPORT_CTX_MEM_USE \ |
Yann Gautier | 5ae29c0 | 2024-01-16 19:39:31 +0100 | [diff] [blame] | 1228 | EARLY_CONSOLE \ |
Arvind Ram Prakash | eaa9019 | 2023-12-21 00:25:52 -0600 | [diff] [blame] | 1229 | PRESERVE_DSU_PMU_REGS \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1230 | ))) |
Dan Handley | 81be100 | 2015-03-27 17:44:35 +0000 | [diff] [blame] | 1231 | |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1232 | # Numeric_Flags |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1233 | $(eval $(call assert_numerics,\ |
| 1234 | $(sort \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1235 | ARM_ARCH_MAJOR \ |
| 1236 | ARM_ARCH_MINOR \ |
| 1237 | BRANCH_PROTECTION \ |
| 1238 | CTX_INCLUDE_PAUTH_REGS \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1239 | CTX_INCLUDE_NEVE_REGS \ |
| 1240 | CRYPTO_SUPPORT \ |
Boyan Karatotev | 677ed8a | 2023-02-16 09:45:29 +0000 | [diff] [blame] | 1241 | DISABLE_MTPMU \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1242 | ENABLE_BRBE_FOR_NS \ |
| 1243 | ENABLE_TRBE_FOR_NS \ |
| 1244 | ENABLE_BTI \ |
| 1245 | ENABLE_PAUTH \ |
| 1246 | ENABLE_FEAT_AMU \ |
| 1247 | ENABLE_FEAT_AMUv1p1 \ |
| 1248 | ENABLE_FEAT_CSV2_2 \ |
Sona Mathew | 3b84c96 | 2023-10-25 16:48:19 -0500 | [diff] [blame] | 1249 | ENABLE_FEAT_CSV2_3 \ |
Arvind Ram Prakash | 05b4763 | 2024-05-22 15:24:00 -0500 | [diff] [blame] | 1250 | ENABLE_FEAT_DEBUGV8P9 \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1251 | ENABLE_FEAT_DIT \ |
| 1252 | ENABLE_FEAT_ECV \ |
| 1253 | ENABLE_FEAT_FGT \ |
Arvind Ram Prakash | 62d87e7 | 2024-06-06 11:33:37 -0500 | [diff] [blame] | 1254 | ENABLE_FEAT_FGT2 \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1255 | ENABLE_FEAT_HCX \ |
Govindraj Raja | d7b63ac | 2024-01-26 10:08:37 -0600 | [diff] [blame] | 1256 | ENABLE_FEAT_MTE2 \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1257 | ENABLE_FEAT_PAN \ |
| 1258 | ENABLE_FEAT_RNG \ |
| 1259 | ENABLE_FEAT_RNG_TRAP \ |
| 1260 | ENABLE_FEAT_SEL2 \ |
| 1261 | ENABLE_FEAT_TCR2 \ |
Govindraj Raja | c2dad57 | 2024-01-23 16:03:53 -0600 | [diff] [blame] | 1262 | ENABLE_FEAT_SB \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1263 | ENABLE_FEAT_S2PIE \ |
| 1264 | ENABLE_FEAT_S1PIE \ |
| 1265 | ENABLE_FEAT_S2POE \ |
| 1266 | ENABLE_FEAT_S1POE \ |
| 1267 | ENABLE_FEAT_GCS \ |
| 1268 | ENABLE_FEAT_VHE \ |
Arvind Ram Prakash | ab28d4b | 2023-10-11 12:10:56 -0500 | [diff] [blame] | 1269 | ENABLE_FEAT_MPAM \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1270 | ENABLE_RME \ |
| 1271 | ENABLE_SPE_FOR_NS \ |
| 1272 | ENABLE_SYS_REG_TRACE_FOR_NS \ |
| 1273 | ENABLE_SME_FOR_NS \ |
| 1274 | ENABLE_SME2_FOR_NS \ |
| 1275 | ENABLE_SVE_FOR_NS \ |
| 1276 | ENABLE_TRF_FOR_NS \ |
| 1277 | FW_ENC_STATUS \ |
| 1278 | NR_OF_FW_BANKS \ |
| 1279 | NR_OF_IMAGES_IN_FW_BANK \ |
| 1280 | TWED_DELAY \ |
| 1281 | ENABLE_FEAT_TWED \ |
| 1282 | SVE_VECTOR_LEN \ |
Varun Wadekar | 0a46eb1 | 2023-04-13 21:06:18 +0100 | [diff] [blame] | 1283 | IMPDEF_SYSREG_TRAP \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1284 | ))) |
Jeenu Viswambharan | fca7680 | 2017-01-16 16:52:35 +0000 | [diff] [blame] | 1285 | |
Justin Chadwell | f9b32c1 | 2019-07-29 17:13:10 +0100 | [diff] [blame] | 1286 | ifdef KEY_SIZE |
| 1287 | $(eval $(call assert_numeric,KEY_SIZE)) |
| 1288 | endif |
| 1289 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 1290 | ifeq ($(filter $(SANITIZE_UB), on off trap),) |
| 1291 | $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap") |
| 1292 | endif |
| 1293 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1294 | ################################################################################ |
| 1295 | # Add definitions to the cpp preprocessor based on the current build options. |
| 1296 | # This is done after including the platform specific makefile to allow the |
| 1297 | # platform to overwrite the default options |
| 1298 | ################################################################################ |
Jeenu Viswambharan | d1b6015 | 2014-05-12 15:28:47 +0100 | [diff] [blame] | 1299 | |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1300 | $(eval $(call add_defines,\ |
| 1301 | $(sort \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1302 | ALLOW_RO_XLAT_TABLES \ |
| 1303 | ARM_ARCH_MAJOR \ |
| 1304 | ARM_ARCH_MINOR \ |
| 1305 | BL2_ENABLE_SP_LOAD \ |
| 1306 | COLD_BOOT_SINGLE_CPU \ |
| 1307 | CTX_INCLUDE_AARCH32_REGS \ |
| 1308 | CTX_INCLUDE_FPREGS \ |
Madhukar Pappireddy | dd9af9b | 2024-06-17 15:17:03 -0500 | [diff] [blame] | 1309 | CTX_INCLUDE_SVE_REGS \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1310 | CTX_INCLUDE_PAUTH_REGS \ |
Arvind Ram Prakash | 4851b49 | 2023-10-06 14:35:21 -0500 | [diff] [blame] | 1311 | CTX_INCLUDE_MPAM_REGS \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1312 | EL3_EXCEPTION_HANDLING \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1313 | CTX_INCLUDE_EL2_REGS \ |
| 1314 | CTX_INCLUDE_NEVE_REGS \ |
| 1315 | DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \ |
| 1316 | DISABLE_MTPMU \ |
| 1317 | ENABLE_FEAT_AMU \ |
| 1318 | ENABLE_AMU_AUXILIARY_COUNTERS \ |
| 1319 | ENABLE_AMU_FCONF \ |
| 1320 | AMU_RESTRICT_COUNTERS \ |
| 1321 | ENABLE_ASSERTIONS \ |
| 1322 | ENABLE_BTI \ |
Arvind Ram Prakash | 05b4763 | 2024-05-22 15:24:00 -0500 | [diff] [blame] | 1323 | ENABLE_FEAT_DEBUGV8P9 \ |
Arvind Ram Prakash | ab28d4b | 2023-10-11 12:10:56 -0500 | [diff] [blame] | 1324 | ENABLE_FEAT_MPAM \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1325 | ENABLE_PAUTH \ |
| 1326 | ENABLE_PIE \ |
| 1327 | ENABLE_PMF \ |
| 1328 | ENABLE_PSCI_STAT \ |
| 1329 | ENABLE_RME \ |
| 1330 | ENABLE_RUNTIME_INSTRUMENTATION \ |
| 1331 | ENABLE_SME_FOR_NS \ |
| 1332 | ENABLE_SME2_FOR_NS \ |
| 1333 | ENABLE_SME_FOR_SWD \ |
| 1334 | ENABLE_SPE_FOR_NS \ |
| 1335 | ENABLE_SVE_FOR_NS \ |
| 1336 | ENABLE_SVE_FOR_SWD \ |
Manish Pandey | 514a301 | 2023-10-10 13:53:25 +0100 | [diff] [blame] | 1337 | ENABLE_FEAT_RAS \ |
Manish Pandey | f90a73c | 2023-10-10 15:42:19 +0100 | [diff] [blame] | 1338 | FFH_SUPPORT \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1339 | ENCRYPT_BL31 \ |
| 1340 | ENCRYPT_BL32 \ |
| 1341 | ERROR_DEPRECATED \ |
| 1342 | FAULT_INJECTION_SUPPORT \ |
| 1343 | GICV2_G0_FOR_EL3 \ |
| 1344 | HANDLE_EA_EL3_FIRST_NS \ |
| 1345 | HW_ASSISTED_COHERENCY \ |
| 1346 | LOG_LEVEL \ |
| 1347 | MEASURED_BOOT \ |
Tamas Ban | a426089 | 2023-06-07 13:35:04 +0200 | [diff] [blame] | 1348 | DICE_PROTECTION_ENVIRONMENT \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1349 | DRTM_SUPPORT \ |
| 1350 | NS_TIMER_SWITCH \ |
| 1351 | PL011_GENERIC_UART \ |
| 1352 | PLAT_${PLAT} \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1353 | PROGRAMMABLE_RESET_ADDRESS \ |
| 1354 | PSCI_EXTENDED_STATE_ID \ |
| 1355 | PSCI_OS_INIT_MODE \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1356 | RESET_TO_BL31 \ |
AlexeiFedorov | c0ca2d7 | 2024-05-13 15:35:54 +0100 | [diff] [blame] | 1357 | RME_GPT_BITLOCK_BLOCK \ |
AlexeiFedorov | bd8b1bb | 2024-03-13 17:07:03 +0000 | [diff] [blame] | 1358 | RME_GPT_MAX_BLOCK \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1359 | SEPARATE_CODE_AND_RODATA \ |
| 1360 | SEPARATE_BL2_NOLOAD_REGION \ |
| 1361 | SEPARATE_NOBITS_REGION \ |
Madhukar Pappireddy | 5c1b8d9 | 2024-06-17 15:26:00 -0500 | [diff] [blame] | 1362 | SEPARATE_SIMD_SECTION \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1363 | RECLAIM_INIT_CODE \ |
| 1364 | SPD_${SPD} \ |
| 1365 | SPIN_ON_BL1_EXIT \ |
| 1366 | SPM_MM \ |
| 1367 | SPMC_AT_EL3 \ |
Nishant Sharma | 9e71911 | 2023-06-27 00:36:01 +0100 | [diff] [blame] | 1368 | SPMC_AT_EL3_SEL0_SP \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1369 | SPMD_SPM_AT_SEL2 \ |
Raymond Mao | 9898339 | 2023-07-25 07:53:35 -0700 | [diff] [blame] | 1370 | TRANSFER_LIST \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1371 | TRUSTED_BOARD_BOOT \ |
| 1372 | CRYPTO_SUPPORT \ |
| 1373 | TRNG_SUPPORT \ |
| 1374 | ERRATA_ABI_SUPPORT \ |
Sona Mathew | 5a4c9fc | 2023-03-14 14:02:03 -0500 | [diff] [blame] | 1375 | ERRATA_NON_ARM_INTERCONNECT \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1376 | USE_COHERENT_MEM \ |
| 1377 | USE_DEBUGFS \ |
| 1378 | ARM_IO_IN_DTB \ |
| 1379 | SDEI_IN_FCONF \ |
| 1380 | SEC_INT_DESC_IN_FCONF \ |
| 1381 | USE_ROMLIB \ |
| 1382 | USE_TBBR_DEFS \ |
| 1383 | WARMBOOT_ENABLE_DCACHE_EARLY \ |
| 1384 | RESET_TO_BL2 \ |
| 1385 | BL2_RUNS_AT_EL3 \ |
| 1386 | BL2_IN_XIP_MEM \ |
| 1387 | BL2_INV_DCACHE \ |
| 1388 | USE_SPINLOCK_CAS \ |
| 1389 | ERRATA_SPECULATIVE_AT \ |
| 1390 | RAS_TRAP_NS_ERR_REC_ACCESS \ |
| 1391 | COT_DESC_IN_DTB \ |
| 1392 | USE_SP804_TIMER \ |
| 1393 | ENABLE_FEAT_RNG \ |
| 1394 | ENABLE_FEAT_RNG_TRAP \ |
| 1395 | ENABLE_FEAT_SB \ |
| 1396 | ENABLE_FEAT_DIT \ |
| 1397 | NR_OF_FW_BANKS \ |
| 1398 | NR_OF_IMAGES_IN_FW_BANK \ |
| 1399 | PSA_FWU_SUPPORT \ |
Sughosh Ganu | 61905e5 | 2024-02-01 12:51:20 +0530 | [diff] [blame] | 1400 | PSA_FWU_METADATA_FW_STORE_DESC \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1401 | ENABLE_BRBE_FOR_NS \ |
| 1402 | ENABLE_TRBE_FOR_NS \ |
| 1403 | ENABLE_SYS_REG_TRACE_FOR_NS \ |
| 1404 | ENABLE_TRF_FOR_NS \ |
| 1405 | ENABLE_FEAT_HCX \ |
| 1406 | ENABLE_MPMM \ |
| 1407 | ENABLE_MPMM_FCONF \ |
| 1408 | ENABLE_FEAT_FGT \ |
Arvind Ram Prakash | 62d87e7 | 2024-06-06 11:33:37 -0500 | [diff] [blame] | 1409 | ENABLE_FEAT_FGT2 \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1410 | ENABLE_FEAT_ECV \ |
| 1411 | ENABLE_FEAT_AMUv1p1 \ |
| 1412 | ENABLE_FEAT_SEL2 \ |
| 1413 | ENABLE_FEAT_VHE \ |
| 1414 | ENABLE_FEAT_CSV2_2 \ |
Sona Mathew | 3b84c96 | 2023-10-25 16:48:19 -0500 | [diff] [blame] | 1415 | ENABLE_FEAT_CSV2_3 \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1416 | ENABLE_FEAT_PAN \ |
| 1417 | ENABLE_FEAT_TCR2 \ |
| 1418 | ENABLE_FEAT_S2PIE \ |
| 1419 | ENABLE_FEAT_S1PIE \ |
| 1420 | ENABLE_FEAT_S2POE \ |
| 1421 | ENABLE_FEAT_S1POE \ |
| 1422 | ENABLE_FEAT_GCS \ |
Govindraj Raja | d7b63ac | 2024-01-26 10:08:37 -0600 | [diff] [blame] | 1423 | ENABLE_FEAT_MTE2 \ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1424 | FEATURE_DETECTION \ |
| 1425 | TWED_DELAY \ |
| 1426 | ENABLE_FEAT_TWED \ |
Okash Khawaja | 037b56e | 2022-11-04 12:38:01 +0000 | [diff] [blame] | 1427 | CONDITIONAL_CMO \ |
Varun Wadekar | 0a46eb1 | 2023-04-13 21:06:18 +0100 | [diff] [blame] | 1428 | IMPDEF_SYSREG_TRAP \ |
Jayanth Dodderi Chidanand | 23c2fe2 | 2023-04-26 15:57:30 +0100 | [diff] [blame] | 1429 | SVE_VECTOR_LEN \ |
Raghu Krishnamurthy | 7f046c1 | 2023-02-25 13:26:10 -0800 | [diff] [blame] | 1430 | ENABLE_SPMD_LP \ |
Manish V Badarkhe | 78e14f8 | 2023-09-06 09:08:28 +0100 | [diff] [blame] | 1431 | PSA_CRYPTO \ |
Sandrine Bailleux | f57e203 | 2023-10-11 08:38:00 +0200 | [diff] [blame] | 1432 | ENABLE_CONSOLE_GETC \ |
Arvind Ram Prakash | 8bd27c9 | 2023-08-15 16:28:06 -0500 | [diff] [blame] | 1433 | INIT_UNUSED_NS_EL2 \ |
Juan Pablo Conde | b5ec138 | 2023-11-08 16:14:28 -0600 | [diff] [blame] | 1434 | PLATFORM_REPORT_CTX_MEM_USE \ |
Yann Gautier | 5ae29c0 | 2024-01-16 19:39:31 +0100 | [diff] [blame] | 1435 | EARLY_CONSOLE \ |
Arvind Ram Prakash | eaa9019 | 2023-12-21 00:25:52 -0600 | [diff] [blame] | 1436 | PRESERVE_DSU_PMU_REGS \ |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 1437 | ))) |
Jeenu Viswambharan | 615ff39 | 2016-10-24 14:31:51 +0100 | [diff] [blame] | 1438 | |
Juan Pablo Conde | b5ec138 | 2023-11-08 16:14:28 -0600 | [diff] [blame] | 1439 | ifeq (${PLATFORM_REPORT_CTX_MEM_USE}, 1) |
| 1440 | ifeq (${DEBUG}, 0) |
| 1441 | $(warning "PLATFORM_REPORT_CTX_MEM_USE can be applied when DEBUG=1 only") |
| 1442 | override PLATFORM_REPORT_CTX_MEM_USE := 0 |
| 1443 | endif |
| 1444 | endif |
| 1445 | |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 1446 | ifeq (${SANITIZE_UB},trap) |
| 1447 | $(eval $(call add_define,MONITOR_TRAPS)) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1448 | endif #(SANITIZE_UB) |
Justin Chadwell | 83e0488 | 2019-08-20 11:01:52 +0100 | [diff] [blame] | 1449 | |
Sandrine Bailleux | 03897bb | 2015-11-26 16:31:34 +0000 | [diff] [blame] | 1450 | # Define the EL3_PAYLOAD_BASE flag only if it is provided. |
| 1451 | ifdef EL3_PAYLOAD_BASE |
Antonio Nino Diaz | faf573a | 2016-02-15 14:53:10 +0000 | [diff] [blame] | 1452 | $(eval $(call add_define,EL3_PAYLOAD_BASE)) |
| 1453 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1454 | # Define the PRELOADED_BL33_BASE flag only if it is provided and |
| 1455 | # EL3_PAYLOAD_BASE is not defined, as it has priority. |
| 1456 | ifdef PRELOADED_BL33_BASE |
Antonio Nino Diaz | 2b8277b | 2016-04-06 17:31:57 +0100 | [diff] [blame] | 1457 | $(eval $(call add_define,PRELOADED_BL33_BASE)) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1458 | endif |
| 1459 | endif #(EL3_PAYLOAD_BASE) |
Soby Mathew | 85dbf5a | 2015-04-07 12:16:56 +0100 | [diff] [blame] | 1460 | |
Soby Mathew | 9fe8804 | 2018-03-26 12:43:37 +0100 | [diff] [blame] | 1461 | # Define the DYN_DISABLE_AUTH flag only if set. |
| 1462 | ifeq (${DYN_DISABLE_AUTH},1) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1463 | $(eval $(call add_define,DYN_DISABLE_AUTH)) |
Soby Mathew | 9fe8804 | 2018-03-26 12:43:37 +0100 | [diff] [blame] | 1464 | endif |
| 1465 | |
Chris Kay | cfba645 | 2023-12-04 09:55:50 +0000 | [diff] [blame] | 1466 | ifeq ($($(ARCH)-ld-id),arm-link) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1467 | $(eval $(call add_define,USE_ARM_LINK)) |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 1468 | endif |
| 1469 | |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1470 | # Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1471 | ifeq (${SPD},spmd) |
Olivier Deprez | 042db53 | 2020-03-19 09:27:11 +0100 | [diff] [blame] | 1472 | ifdef SP_LAYOUT_FILE |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1473 | -include $(BUILD_PLAT)/sp_gen.mk |
| 1474 | FIP_DEPS += sp |
| 1475 | CRT_DEPS += sp |
| 1476 | NEED_SP_PKG := yes |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1477 | else |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1478 | ifeq (${SPMD_SPM_AT_SEL2},1) |
| 1479 | $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE") |
| 1480 | endif |
| 1481 | endif #(SP_LAYOUT_FILE) |
| 1482 | endif #(SPD) |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1483 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1484 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1485 | # Build targets |
| 1486 | ################################################################################ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1487 | |
Harrison Mutai | 36d971a | 2024-08-28 13:27:19 +0000 | [diff] [blame] | 1488 | .PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp tl fwu_fip certtool dtbs memmap doc enctool |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1489 | .SUFFIXES: |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1490 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1491 | all: msg_start |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 1492 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1493 | msg_start: |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1494 | $(s)echo "Building ${PLAT}" |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1495 | |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 1496 | ifeq (${ERROR_DEPRECATED},0) |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 1497 | # Check if deprecated declarations and cpp warnings should be treated as error or not. |
Chris Kay | cfba645 | 2023-12-04 09:55:50 +0000 | [diff] [blame] | 1498 | ifneq ($(filter %-clang,$($(ARCH)-cc-id)),) |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 1499 | CPPFLAGS += -Wno-error=deprecated-declarations |
| 1500 | else |
Dan Handley | 6fa89a2 | 2018-02-27 16:03:58 +0000 | [diff] [blame] | 1501 | CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 1502 | endif |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1503 | endif #(!ERROR_DEPRECATED) |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 1504 | |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 1505 | $(eval $(call MAKE_LIB,c)) |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 1506 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1507 | # Expand build macros for the different images |
| 1508 | ifeq (${NEED_BL1},yes) |
Chris Kay | 0a542ec | 2021-09-28 15:44:19 +0100 | [diff] [blame] | 1509 | BL1_SOURCES := $(sort ${BL1_SOURCES}) |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1510 | $(eval $(call MAKE_BL,bl1)) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1511 | endif #(NEED_BL1) |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1512 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1513 | ifeq (${NEED_BL2},yes) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1514 | |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 1515 | ifeq (${RESET_TO_BL2}, 0) |
Roberto Vargas | 53c052b | 2018-01-02 11:23:41 +0000 | [diff] [blame] | 1516 | FIP_BL2_ARGS := tb-fw |
| 1517 | endif |
| 1518 | |
Chris Kay | fb3b051 | 2021-09-28 15:44:37 +0100 | [diff] [blame] | 1519 | BL2_SOURCES := $(sort ${BL2_SOURCES}) |
| 1520 | |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1521 | $(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\ |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1522 | $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS}))) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1523 | |
| 1524 | endif #(NEED_BL2) |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1525 | |
Masahiro Yamada | e76b4f8 | 2017-04-05 19:11:41 +0900 | [diff] [blame] | 1526 | ifeq (${NEED_SCP_BL2},yes) |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1527 | $(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw)) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1528 | endif #(NEED_SCP_BL2) |
Masahiro Yamada | e76b4f8 | 2017-04-05 19:11:41 +0900 | [diff] [blame] | 1529 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1530 | ifeq (${NEED_BL31},yes) |
| 1531 | BL31_SOURCES += ${SPD_SOURCES} |
Madhukar Pappireddy | ae9677b | 2020-01-27 13:37:51 -0600 | [diff] [blame] | 1532 | # Sort BL31 source files to remove duplicates |
| 1533 | BL31_SOURCES := $(sort ${BL31_SOURCES}) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1534 | ifneq (${DECRYPTION_SUPPORT},none) |
| 1535 | $(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\ |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1536 | $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31)))) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1537 | else |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1538 | $(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\ |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1539 | $(eval $(call MAKE_BL,bl31,soc-fw))) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1540 | endif #(DECRYPTION_SUPPORT) |
| 1541 | endif #(NEED_BL31) |
Juan Castillo | 379954c | 2014-11-04 17:36:40 +0000 | [diff] [blame] | 1542 | |
Juan Castillo | 671b8db | 2015-11-12 10:59:26 +0000 | [diff] [blame] | 1543 | # If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the |
Masahiro Yamada | 4d15680 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1544 | # build system will call TOOL_ADD_IMG to print a warning message and abort the |
Juan Castillo | 671b8db | 2015-11-12 10:59:26 +0000 | [diff] [blame] | 1545 | # process. Note that the dependency on BL32 applies to the FIP only. |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1546 | ifeq (${NEED_BL32},yes) |
Madhukar Pappireddy | ae9677b | 2020-01-27 13:37:51 -0600 | [diff] [blame] | 1547 | # Sort BL32 source files to remove duplicates |
| 1548 | BL32_SOURCES := $(sort ${BL32_SOURCES}) |
Masahiro Yamada | 6ced1b2 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1549 | BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1)) |
| 1550 | |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1551 | ifneq (${DECRYPTION_SUPPORT},none) |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1552 | $(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\ |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 1553 | $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32)))) |
| 1554 | else |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1555 | $(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\ |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1556 | $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw))) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1557 | endif #(DECRYPTION_SUPPORT) |
| 1558 | endif #(NEED_BL32) |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1559 | |
Zelalem Aweke | 4d37db8 | 2021-07-11 18:33:20 -0500 | [diff] [blame] | 1560 | # If RMM image is needed but RMM is not defined, Test Realm Payload (TRP) |
| 1561 | # needs to be built from RMM_SOURCES. |
| 1562 | ifeq (${NEED_RMM},yes) |
| 1563 | # Sort RMM source files to remove duplicates |
| 1564 | RMM_SOURCES := $(sort ${RMM_SOURCES}) |
| 1565 | BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1)) |
| 1566 | |
| 1567 | $(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\ |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1568 | $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw))) |
| 1569 | endif #(NEED_RMM) |
Zelalem Aweke | 4d37db8 | 2021-07-11 18:33:20 -0500 | [diff] [blame] | 1570 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1571 | # Add the BL33 image if required by the platform |
| 1572 | ifeq (${NEED_BL33},yes) |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1573 | $(eval $(call TOOL_ADD_IMG,bl33,--nt-fw)) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1574 | endif #(NEED_BL33) |
Juan Castillo | 9c25a40 | 2015-01-13 12:21:04 +0000 | [diff] [blame] | 1575 | |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 1576 | ifeq (${NEED_BL2U},yes) |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1577 | $(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\ |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 1578 | $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_))) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1579 | endif #(NEED_BL2U) |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 1580 | |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 1581 | # Expand build macros for the different images |
| 1582 | ifeq (${NEED_FDT},yes) |
Soby Mathew | ab4181d | 2017-12-14 17:44:56 +0000 | [diff] [blame] | 1583 | $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES))) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1584 | endif #(NEED_FDT) |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 1585 | |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1586 | # Add Secure Partition packages |
| 1587 | ifeq (${NEED_SP_PKG},yes) |
Chris Kay | d67442e | 2024-07-30 13:33:56 +0000 | [diff] [blame] | 1588 | $(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | $$(@D)/ |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1589 | $(q)${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT} |
J-Alves | ef8e098 | 2022-03-22 16:28:51 +0000 | [diff] [blame] | 1590 | sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS) |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1591 | $(s)echo |
| 1592 | $(s)echo "Built SP Images successfully" |
| 1593 | $(s)echo |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1594 | endif #(NEED_SP_PKG) |
Manish Pandey | 3f90ad7 | 2020-01-14 11:52:05 +0000 | [diff] [blame] | 1595 | |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1596 | locate-checkpatch: |
| 1597 | ifndef CHECKPATCH |
Etienne Carriere | f565757 | 2017-08-23 15:44:01 +0200 | [diff] [blame] | 1598 | $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl") |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1599 | else |
| 1600 | ifeq (,$(wildcard ${CHECKPATCH})) |
Etienne Carriere | f565757 | 2017-08-23 15:44:01 +0200 | [diff] [blame] | 1601 | $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl") |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1602 | endif |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1603 | endif #(CHECKPATCH) |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1604 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1605 | clean: |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1606 | $(s)echo " CLEAN" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1607 | $(call SHELL_REMOVE_DIR,${BUILD_PLAT}) |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1608 | ifdef UNIX_MK |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1609 | $(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1610 | else |
| 1611 | # Clear the MAKEFLAGS as we do not want |
| 1612 | # to pass the gnumake flags to nmake. |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1613 | $(q)set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1614 | endif #(UNIX_MK) |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1615 | $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean |
| 1616 | $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean |
| 1617 | $(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1618 | |
James Morrissey | eaaeece | 2013-11-01 13:56:59 +0000 | [diff] [blame] | 1619 | realclean distclean: |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1620 | $(s)echo " REALCLEAN" |
Evan Lloyd | 26c6cb4 | 2015-12-02 18:33:55 +0000 | [diff] [blame] | 1621 | $(call SHELL_REMOVE_DIR,${BUILD_BASE}) |
| 1622 | $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*) |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1623 | ifdef UNIX_MK |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1624 | $(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1625 | else |
| 1626 | # Clear the MAKEFLAGS as we do not want |
| 1627 | # to pass the gnumake flags to nmake. |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1628 | $(q)set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1629 | endif #(UNIX_MK) |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1630 | $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean |
| 1631 | $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean |
| 1632 | $(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1633 | |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1634 | checkcodebase: locate-checkpatch |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1635 | $(s)echo " CHECKING STYLE" |
| 1636 | $(q)if test -d .git ; then \ |
Paul Beesley | adfab5b | 2019-03-07 16:42:31 +0000 | [diff] [blame] | 1637 | git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \ |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 1638 | while read GIT_FILE ; \ |
| 1639 | do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \ |
| 1640 | done ; \ |
| 1641 | else \ |
| 1642 | find . -type f -not -iwholename "*.git*" \ |
| 1643 | -not -iwholename "*build*" \ |
| 1644 | -not -iwholename "*libfdt*" \ |
Roberto Vargas | 0f8f985 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 1645 | -not -iwholename "*libc*" \ |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 1646 | -not -iwholename "*docs*" \ |
Paul Beesley | adfab5b | 2019-03-07 16:42:31 +0000 | [diff] [blame] | 1647 | -not -iwholename "*.rst" \ |
Dan Handley | 3a35571 | 2016-06-02 18:21:02 +0100 | [diff] [blame] | 1648 | -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \ |
| 1649 | fi |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1650 | |
| 1651 | checkpatch: locate-checkpatch |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1652 | $(s)echo " CHECKING STYLE" |
| 1653 | $(q)if test -n "${CHECKPATCH_OPTS}"; then \ |
Yann Gautier | 0c26a2a | 2019-03-08 15:44:00 +0100 | [diff] [blame] | 1654 | echo " with ${CHECKPATCH_OPTS} option(s)"; \ |
| 1655 | fi |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1656 | $(q)COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \ |
Yann Gautier | a10a685 | 2021-11-02 18:03:31 +0100 | [diff] [blame] | 1657 | for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \ |
| 1658 | do \ |
Antonio Nino Diaz | 2cd4b58 | 2018-01-29 12:00:31 +0000 | [diff] [blame] | 1659 | printf "\n[*] Checking style of '$$commit'\n\n"; \ |
Yann Gautier | faf8c61 | 2024-08-09 11:52:03 +0200 | [diff] [blame] | 1660 | ( git log --format=email "$$commit~..$$commit" \ |
| 1661 | -- ${CHECK_PATHS} ; \ |
| 1662 | git diff --format=email "$$commit~..$$commit" \ |
| 1663 | -- ${CHECK_PATHS}; ) | \ |
Yann Gautier | 0c26a2a | 2019-03-08 15:44:00 +0100 | [diff] [blame] | 1664 | ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \ |
Antonio Nino Diaz | 2cd4b58 | 2018-01-29 12:00:31 +0000 | [diff] [blame] | 1665 | done |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1666 | |
| 1667 | certtool: ${CRTTOOL} |
Ian Spray | 36eaaf3 | 2014-01-30 17:25:28 +0000 | [diff] [blame] | 1668 | |
Pali Rohár | 54ff213 | 2020-11-24 15:38:08 +0100 | [diff] [blame] | 1669 | ${CRTTOOL}: FORCE |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1670 | $(q)${MAKE} PLAT=${PLAT} USE_TBBR_DEFS=${USE_TBBR_DEFS} COT=${COT} OPENSSL_DIR=${OPENSSL_DIR} CRTTOOL=${CRTTOOL} DEBUG=${DEBUG} --no-print-directory -C ${CRTTOOLPATH} all |
| 1671 | $(s)echo |
| 1672 | $(s)echo "Built $@ successfully" |
| 1673 | $(s)echo |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 1674 | |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1675 | ifneq (${GENERATE_COT},0) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1676 | certificates: ${CRT_DEPS} ${CRTTOOL} |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1677 | $(q)${CRTTOOL} ${CRT_ARGS} |
| 1678 | $(s)echo |
| 1679 | $(s)echo "Built $@ successfully" |
| 1680 | $(s)echo "Certificates can be found in ${BUILD_PLAT}" |
| 1681 | $(s)echo |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1682 | endif #(GENERATE_COT) |
Juan Castillo | 11abdcd | 2014-10-21 11:30:42 +0100 | [diff] [blame] | 1683 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1684 | ${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL} |
Pali Rohár | a5416ab | 2020-11-24 16:53:04 +0100 | [diff] [blame] | 1685 | $(eval ${CHECK_FIP_CMD}) |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1686 | $(q)${FIPTOOL} create ${FIP_ARGS} $@ |
| 1687 | $(q)${FIPTOOL} info $@ |
| 1688 | $(s)echo |
| 1689 | $(s)echo "Built $@ successfully" |
| 1690 | $(s)echo |
Soby Mathew | dbee7fc | 2014-09-08 17:51:01 +0100 | [diff] [blame] | 1691 | |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1692 | ifneq (${GENERATE_COT},0) |
| 1693 | fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL} |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1694 | $(q)${CRTTOOL} ${FWU_CRT_ARGS} |
| 1695 | $(s)echo |
| 1696 | $(s)echo "Built $@ successfully" |
| 1697 | $(s)echo "FWU certificates can be found in ${BUILD_PLAT}" |
| 1698 | $(s)echo |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1699 | endif #(GENERATE_COT) |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1700 | |
| 1701 | ${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL} |
Pali Rohár | a5416ab | 2020-11-24 16:53:04 +0100 | [diff] [blame] | 1702 | $(eval ${CHECK_FWU_FIP_CMD}) |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1703 | $(q)${FIPTOOL} create ${FWU_FIP_ARGS} $@ |
| 1704 | $(q)${FIPTOOL} info $@ |
| 1705 | $(s)echo |
| 1706 | $(s)echo "Built $@ successfully" |
| 1707 | $(s)echo |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1708 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1709 | fiptool: ${FIPTOOL} |
| 1710 | fip: ${BUILD_PLAT}/${FIP_NAME} |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 1711 | fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME} |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 1712 | |
Pali Rohár | 54ff213 | 2020-11-24 15:38:08 +0100 | [diff] [blame] | 1713 | ${FIPTOOL}: FORCE |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1714 | ifdef UNIX_MK |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1715 | $(q)${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} --no-print-directory -C ${FIPTOOLPATH} all |
Sami Mujawar | e7cdc3f | 2020-04-30 12:41:57 +0100 | [diff] [blame] | 1716 | else |
| 1717 | # Clear the MAKEFLAGS as we do not want |
| 1718 | # to pass the gnumake flags to nmake. |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1719 | $(q)set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) |
Jayanth Dodderi Chidanand | 2ee5d40 | 2023-04-24 15:57:05 +0100 | [diff] [blame] | 1720 | endif #(UNIX_MK) |
Harry Liebel | f58ad36 | 2014-01-10 18:00:33 +0000 | [diff] [blame] | 1721 | |
Pali Rohár | 54ff213 | 2020-11-24 15:38:08 +0100 | [diff] [blame] | 1722 | romlib.bin: libraries FORCE |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1723 | $(q)${MAKE} PLAT_DIR=${PLAT_DIR} BUILD_PLAT=${BUILD_PLAT} ENABLE_BTI=${ENABLE_BTI} ARM_ARCH_MINOR=${ARM_ARCH_MINOR} INCLUDES=$(call escape-shell,$(INCLUDES)) DEFINES=$(call escape-shell,$(DEFINES)) --no-print-directory -C ${ROMLIBPATH} all |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 1724 | |
Louis Mayencourt | cc3e8b8 | 2019-10-16 14:30:51 +0100 | [diff] [blame] | 1725 | memmap: all |
Harrison Mutai | e9bc488 | 2023-02-23 10:33:58 +0000 | [diff] [blame] | 1726 | ifdef UNIX_MK |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1727 | $(q)PYTHONPATH=${CURDIR}/tools/memory \ |
Harrison Mutai | e9bc488 | 2023-02-23 10:33:58 +0000 | [diff] [blame] | 1728 | ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT} |
| 1729 | else |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1730 | $(q)set PYTHONPATH=${CURDIR}/tools/memory && \ |
Harrison Mutai | e9bc488 | 2023-02-23 10:33:58 +0000 | [diff] [blame] | 1731 | ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT} |
| 1732 | endif |
Louis Mayencourt | cc3e8b8 | 2019-10-16 14:30:51 +0100 | [diff] [blame] | 1733 | |
Harrison Mutai | 36d971a | 2024-08-28 13:27:19 +0000 | [diff] [blame] | 1734 | tl: ${BUILD_PLAT}/tl.bin |
| 1735 | ${BUILD_PLAT}/tl.bin: ${HW_CONFIG} |
Chris Kay | a152e75 | 2024-09-26 14:18:04 +0000 | [diff] [blame^] | 1736 | $(if $(host-poetry),$(q)poetry -q install) |
| 1737 | $(q)$(if $(host-poetry),poetry run )tlc create --fdt $< -s ${FW_HANDOFF_SIZE} $@ |
Harrison Mutai | 36d971a | 2024-08-28 13:27:19 +0000 | [diff] [blame] | 1738 | |
Madhukar Pappireddy | 46adb1b | 2020-01-28 12:41:20 -0600 | [diff] [blame] | 1739 | doc: |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1740 | $(s)echo " BUILD DOCUMENTATION" |
| 1741 | $(q)${MAKE} --no-print-directory -C ${DOCS_PATH} html |
Madhukar Pappireddy | 46adb1b | 2020-01-28 12:41:20 -0600 | [diff] [blame] | 1742 | |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1743 | enctool: ${ENCTOOL} |
| 1744 | |
Pali Rohár | 54ff213 | 2020-11-24 15:38:08 +0100 | [diff] [blame] | 1745 | ${ENCTOOL}: FORCE |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1746 | $(q)${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} --no-print-directory -C ${ENCTOOLPATH} all |
| 1747 | $(s)echo |
| 1748 | $(s)echo "Built $@ successfully" |
| 1749 | $(s)echo |
Sumit Garg | b6c4b3c | 2019-11-11 18:46:36 +0530 | [diff] [blame] | 1750 | |
Joakim Bech | 35fab8c | 2014-01-23 14:51:49 +0100 | [diff] [blame] | 1751 | cscope: |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1752 | $(s)echo " CSCOPE" |
| 1753 | $(q)find ${CURDIR} -name "*.[chsS]" > cscope.files |
| 1754 | $(q)cscope -b -q -k |
Joakim Bech | 35fab8c | 2014-01-23 14:51:49 +0100 | [diff] [blame] | 1755 | |
Ryan Harkin | 72ee331 | 2014-01-15 16:55:07 +0000 | [diff] [blame] | 1756 | help: |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1757 | $(s)echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]" |
| 1758 | $(s)echo "" |
| 1759 | $(s)echo "PLAT is used to specify which platform you wish to build." |
| 1760 | $(s)echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}" |
| 1761 | $(s)echo "" |
| 1762 | $(s)echo "platform = ${PLATFORM_LIST}" |
| 1763 | $(s)echo "" |
| 1764 | $(s)echo "Please refer to the User Guide for a list of all supported options." |
| 1765 | $(s)echo "Note that the build system doesn't track dependencies for build " |
| 1766 | $(s)echo "options. Therefore, if any of the build options are changed " |
| 1767 | $(s)echo "from a previous build, a clean build must be performed." |
| 1768 | $(s)echo "" |
| 1769 | $(s)echo "Supported Targets:" |
| 1770 | $(s)echo " all Build all individual bootloader binaries" |
| 1771 | $(s)echo " bl1 Build the BL1 binary" |
| 1772 | $(s)echo " bl2 Build the BL2 binary" |
| 1773 | $(s)echo " bl2u Build the BL2U binary" |
| 1774 | $(s)echo " bl31 Build the BL31 binary" |
| 1775 | $(s)echo " bl32 Build the BL32 binary. If ARCH=aarch32, then " |
| 1776 | $(s)echo " this builds secure payload specified by AARCH32_SP" |
| 1777 | $(s)echo " certificates Build the certificates (requires 'GENERATE_COT=1')" |
| 1778 | $(s)echo " fip Build the Firmware Image Package (FIP)" |
| 1779 | $(s)echo " fwu_fip Build the FWU Firmware Image Package (FIP)" |
| 1780 | $(s)echo " checkcodebase Check the coding style of the entire source tree" |
| 1781 | $(s)echo " checkpatch Check the coding style on changes in the current" |
| 1782 | $(s)echo " branch against BASE_COMMIT (default origin/master)" |
| 1783 | $(s)echo " clean Clean the build for the selected platform" |
| 1784 | $(s)echo " cscope Generate cscope index" |
| 1785 | $(s)echo " distclean Remove all build artifacts for all platforms" |
| 1786 | $(s)echo " certtool Build the Certificate generation tool" |
| 1787 | $(s)echo " enctool Build the Firmware encryption tool" |
| 1788 | $(s)echo " fiptool Build the Firmware Image Package (FIP) creation tool" |
| 1789 | $(s)echo " sp Build the Secure Partition Packages" |
| 1790 | $(s)echo " sptool Build the Secure Partition Package creation tool" |
| 1791 | $(s)echo " dtbs Build the Device Tree Blobs (if required for the platform)" |
| 1792 | $(s)echo " memmap Print the memory map of the built binaries" |
| 1793 | $(s)echo " doc Build html based documentation using Sphinx tool" |
| 1794 | $(s)echo "" |
| 1795 | $(s)echo "Note: most build targets require PLAT to be set to a specific platform." |
| 1796 | $(s)echo "" |
| 1797 | $(s)echo "example: build all targets for the FVP platform:" |
| 1798 | $(s)echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all" |
Pali Rohár | 54ff213 | 2020-11-24 15:38:08 +0100 | [diff] [blame] | 1799 | |
| 1800 | .PHONY: FORCE |
| 1801 | FORCE:; |