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