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