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