blob: da9eb9f531414acaa031d197eaee710ca56185cc [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001#
Maksims Svecovs1e25c5b2023-02-02 16:10:22 +00002# Copyright (c) 2013-2023, Arm Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003#
dp-armfa3cf0b2017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005#
6
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +01007#
Juan Castillo04be3a52014-06-30 11:41:46 +01008# Trusted Firmware Version
9#
Soby Mathewd42eaee2018-10-01 16:16:34 +010010VERSION_MAJOR := 2
Juan Pablo Conde52487492023-05-15 22:17:17 -050011VERSION_MINOR := 9
Yann Gautier57078a92023-10-03 11:09:07 +020012VERSION_PATCH := 0
13VERSION := ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}
Juan Castillo04be3a52014-06-30 11:41:46 +010014
Juan Castillo396644b2015-10-22 11:34:44 +010015# Default goal is build all images
16.DEFAULT_GOAL := all
17
Douglas Raillard527cd902016-12-28 14:47:50 +000018# 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.
21MAKEOVERRIDES =
22
Evan Lloydf2697142015-12-02 18:17:37 +000023MAKE_HELPERS_DIRECTORY := make_helpers/
24include ${MAKE_HELPERS_DIRECTORY}build_macros.mk
Evan Lloyda71d2592015-12-02 18:56:06 +000025include ${MAKE_HELPERS_DIRECTORY}build_env.mk
Juan Castilloa3487d12015-08-18 14:23:04 +010026
27################################################################################
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010028# Default values for build configurations, and their dependencies
Juan Castilloa3487d12015-08-18 14:23:04 +010029################################################################################
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +010030
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010031include ${MAKE_HELPERS_DIRECTORY}defaults.mk
dp-arm3cac7862016-09-19 11:18:44 +010032
Antonio Nino Diaz808c2292017-04-18 15:16:05 +010033# Assertions enabled for DEBUG builds by default
Antonio Nino Diaz808c2292017-04-18 15:16:05 +010034ENABLE_ASSERTIONS := ${DEBUG}
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010035ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION}
36PLAT := ${DEFAULT_PLAT}
Achin Gupta4f6ad662013-10-25 09:08:21 +010037
Juan Castilloa3487d12015-08-18 14:23:04 +010038################################################################################
39# Checkpatch script options
40################################################################################
41
Sandrine Bailleux0b5a1582016-06-02 11:19:59 +010042CHECKCODE_ARGS := --no-patch
Dan Handleyd7b59e42016-06-02 17:15:13 +010043# Do not check the coding style on imported library files or documentation files
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030044INC_ARM_DIRS_TO_CHECK := $(sort $(filter-out \
45 include/drivers/arm/cryptocell, \
46 $(wildcard include/drivers/arm/*)))
47INC_ARM_DIRS_TO_CHECK += include/drivers/arm/cryptocell/*.h
48INC_DRV_DIRS_TO_CHECK := $(sort $(filter-out \
49 include/drivers/arm, \
50 $(wildcard include/drivers/*)))
Dan Handleyd7b59e42016-06-02 17:15:13 +010051INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \
Dan Handley3a355712016-06-02 18:21:02 +010052 include/lib/libfdt \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010053 include/lib/libc, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010054 $(wildcard include/lib/*)))
55INC_DIRS_TO_CHECK := $(sort $(filter-out \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030056 include/lib \
57 include/drivers, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010058 $(wildcard include/*)))
59LIB_DIRS_TO_CHECK := $(sort $(filter-out \
dp-arme3cc8382017-05-04 12:15:35 +010060 lib/compiler-rt \
Antonio Nino Diazd84f88e2017-01-16 17:20:45 +000061 lib/libfdt% \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010062 lib/libc, \
Daniel Boulby958f1dd2022-10-05 11:05:22 +010063 lib/zlib \
Dan Handleyd7b59e42016-06-02 17:15:13 +010064 $(wildcard lib/*)))
65ROOT_DIRS_TO_CHECK := $(sort $(filter-out \
66 lib \
67 include \
68 docs \
Paul Beesleyadfab5b2019-03-07 16:42:31 +000069 %.rst, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010070 $(wildcard *)))
71CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \
72 ${INC_DIRS_TO_CHECK} \
73 ${INC_LIB_DIRS_TO_CHECK} \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030074 ${LIB_DIRS_TO_CHECK} \
75 ${INC_DRV_DIRS_TO_CHECK} \
76 ${INC_ARM_DIRS_TO_CHECK}
Ian Spray36eaaf32014-01-30 17:25:28 +000077
Juan Castilloa3487d12015-08-18 14:23:04 +010078################################################################################
79# Process build options
80################################################################################
81
82# Verbose flag
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +010083ifeq (${V},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010084 Q:=@
85 ECHO:=@echo
86 CHECKCODE_ARGS += --no-summary --terse
Achin Gupta4f6ad662013-10-25 09:08:21 +010087else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010088 Q:=
89 ECHO:=$(ECHO_QUIET)
Andre Przywaracf2bb082018-09-27 10:56:05 +010090endif
91
92ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010093 Q:=@
94 ECHO:=$(ECHO_QUIET)
Achin Gupta4f6ad662013-10-25 09:08:21 +010095endif
Andre Przywaracf2bb082018-09-27 10:56:05 +010096
97export Q ECHO
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +000098
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010099################################################################################
100# Toolchain
101################################################################################
102
103HOSTCC := gcc
104export HOSTCC
105
106CC := ${CROSS_COMPILE}gcc
107CPP := ${CROSS_COMPILE}cpp
108AS := ${CROSS_COMPILE}gcc
109AR := ${CROSS_COMPILE}ar
110LINKER := ${CROSS_COMPILE}ld
111OC := ${CROSS_COMPILE}objcopy
112OD := ${CROSS_COMPILE}objdump
113NM := ${CROSS_COMPILE}nm
114PP := ${CROSS_COMPILE}gcc -E
115DTC := dtc
116
117# Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH).
118ifneq ($(strip $(wildcard ${LD}.bfd) \
119 $(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),)
120LINKER := ${LINKER}.bfd
Juan Castilloa3487d12015-08-18 14:23:04 +0100121endif
122
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100123################################################################################
124# Auxiliary tools (fiptool, cert_create, etc)
125################################################################################
126
127# Variables for use with Certificate Generation Tool
128CRTTOOLPATH ?= tools/cert_create
129CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT}
130
131# Variables for use with Firmware Encryption Tool
132ENCTOOLPATH ?= tools/encrypt_fw
133ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
134
135# Variables for use with Firmware Image Package
136FIPTOOLPATH ?= tools/fiptool
137FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT}
138
139# Variables for use with sptool
140SPTOOLPATH ?= tools/sptool
141SPTOOL ?= ${SPTOOLPATH}/sptool.py
142SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py
Karl Meakinaba46182023-02-14 11:56:02 +0000143SP_DTS_LIST_FRAGMENT ?= ${BUILD_PLAT}/sp_list_fragment.dts
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100144
145# Variables for use with ROMLIB
146ROMLIBPATH ?= lib/romlib
147
148# Variable for use with Python
149PYTHON ?= python3
150
151# Variables for use with documentation build using Sphinx tool
152DOCS_PATH ?= docs
153
154################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100155# Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags
Juan Castilloa3487d12015-08-18 14:23:04 +0100156################################################################################
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100157ifeq (${ARM_ARCH_MAJOR},7)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100158 target32-directive = -target arm-none-eabi
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500159# Will set march-directive from platform configuration
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100160else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100161 target32-directive = -target armv8a-none-eabi
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100162endif #(ARM_ARCH_MAJOR)
163
164################################################################################
165# Get Architecture Feature Modifiers
166################################################################################
167arch-features = ${ARM_ARCH_FEATURE}
168
Alexei Fedorov132e6652020-12-07 16:38:53 +0000169# Set the compiler's architecture feature modifiers
170ifneq ($(arch-features), none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100171 # Strip "none+" from arch-features
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500172 arch-features := $(subst none+,,$(arch-features))
173 march-directive := $(march-directive)+$(arch-features)
Alexei Fedorov132e6652020-12-07 16:38:53 +0000174# Print features
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100175 $(info Arm Architecture Features specified: $(subst +, ,$(arch-features)))
176endif #(arch-features)
Chris Kay08fec332021-03-09 13:34:35 +0000177
originfba80d82022-01-19 16:30:14 +0000178ifneq ($(findstring clang,$(notdir $(CC))),)
179 ifneq ($(findstring armclang,$(notdir $(CC))),)
Govindraj Raja69096412023-06-01 16:29:16 -0500180 TF_CFLAGS_aarch32 := -target arm-arm-none-eabi
181 TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi
originfba80d82022-01-19 16:30:14 +0000182 LD := $(LINKER)
183 else
Govindraj Raja69096412023-06-01 16:29:16 -0500184 TF_CFLAGS_aarch32 = $(target32-directive)
185 TF_CFLAGS_aarch64 := -target aarch64-elf
originfba80d82022-01-19 16:30:14 +0000186 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-aweked5f45272019-11-12 16:20:17 -0600196else ifneq ($(findstring gcc,$(notdir $(CC))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100197 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-aweked5f45272019-11-12 16:20:17 -0600204 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100205 LD = $(LINKER)
dp-arm320e8442017-05-02 12:00:08 +0100206else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100207 LD = $(LINKER)
208endif #(clang)
dp-arm320e8442017-05-02 12:00:08 +0100209
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100210# Process Debug flag
211$(eval $(call add_define,DEBUG))
212ifneq (${DEBUG}, 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100213 BUILD_TYPE := debug
214 TF_CFLAGS += -g -gdwarf-4
215 ASFLAGS += -g -Wa,-gdwarf-4
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100216
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100217 # Use LOG_LEVEL_INFO by default for debug builds
218 LOG_LEVEL := 40
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100219else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100220 BUILD_TYPE := release
221 # Use LOG_LEVEL_NOTICE by default for release builds
222 LOG_LEVEL := 20
223endif #(Debug)
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100224
Peiyuan Song44f8f472020-04-25 16:53:43 +0800225# Default build string (git branch and commit)
226ifeq (${BUILD_STRING},)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100227 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
Peiyuan Song44f8f472020-04-25 16:53:43 +0800228endif
laurenw-arme954f652022-07-12 10:12:05 -0500229VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
Peiyuan Song44f8f472020-04-25 16:53:43 +0800230
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100231ifeq (${AARCH32_INSTRUCTION_SET},A32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100232 TF_CFLAGS_aarch32 += -marm
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100233else ifeq (${AARCH32_INSTRUCTION_SET},T32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100234 TF_CFLAGS_aarch32 += -mthumb
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100235else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100236 $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
237endif #(AARCH32_INSTRUCTION_SET)
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100238
Sandrine Bailleux1aa72ec2018-07-03 09:14:45 +0200239TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-arm320e8442017-05-02 12:00:08 +0100240TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathewa1941252016-05-05 14:33:33 +0100241
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500242ASFLAGS += $(march-directive)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000243
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100244##############################################################################
245# WARNINGS Configuration
246###############################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100247# General warnings
248WARNINGS := -Wall -Wmissing-include-dirs -Wunused \
Yann Gautier94a40b62021-05-20 13:18:14 +0200249 -Wdisabled-optimization -Wvla -Wshadow \
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000250 -Wredundant-decls
251# stricter warnings
252WARNINGS += -Wextra -Wno-trigraphs
253# too verbose for generic build
254WARNINGS += -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
257WARNINGS += -Wno-unused-parameter
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100258
259# Additional warnings
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000260# Level 1 - infrequent warnings we should have none of
261# full -Wextra
262WARNING1 += -Wsign-compare
263WARNING1 += -Wtype-limits
264WARNING1 += -Wmissing-field-initializers
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100265
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000266# 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
269WARNING2 += -Wold-style-definition
270WARNING2 += -Wmissing-prototypes
271WARNING2 += -Wmissing-format-attribute
272# TF-A aims to comply with this eventually. Effort too large at present
273WARNING2 += -Wundef
Boyan Karatotev9c6ba592022-11-21 14:49:05 +0000274# currently very involved and many platforms set this off
275WARNING2 += -Wunused-const-variable=2
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100276
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000277# Level 3 - very pedantic, frequently ignored
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100278WARNING3 := -Wbad-function-cast
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000279WARNING3 += -Waggregate-return
280WARNING3 += -Wnested-externs
281WARNING3 += -Wcast-align
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100282WARNING3 += -Wcast-qual
283WARNING3 += -Wconversion
284WARNING3 += -Wpacked
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100285WARNING3 += -Wpointer-arith
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100286WARNING3 += -Wswitch-default
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100287
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000288# 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
291ifdef W
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100292 ifneq (${W},0)
293 E ?= 0
294 endif
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000295endif
296
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100297ifeq (${W},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100298 WARNINGS += $(WARNING1)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100299else ifeq (${W},2)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100300 WARNINGS += $(WARNING1) $(WARNING2)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100301else ifeq (${W},3)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100302 WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
303endif #(W)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100304
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100305# Compiler specific warnings
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100306ifeq ($(findstring clang,$(notdir $(CC))),)
Justin Chadwell7a914232019-07-03 14:15:56 +0100307# not using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100308WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \
309 -Wpacked-bitfield-compat -Wshift-overflow=2 \
310 -Wlogical-op
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500311
312# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
313TF_CFLAGS += $(call cc_option, --param=min-pagesize=0)
314
Justin Chadwell7a914232019-07-03 14:15:56 +0100315else
316# using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100317WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
318 -Wlogical-op-parentheses
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100319endif #(Clang Warning)
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100320
Yann Gautier957c3532018-12-10 18:08:53 +0100321ifneq (${E},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100322 ERRORS := -Werror
323endif #(E)
Yann Gautier957c3532018-12-10 18:08:53 +0100324
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100325################################################################################
326# Compiler and Linker Directives
327################################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100328CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
329 $(ERRORS) $(WARNINGS)
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500330ASFLAGS += $(CPPFLAGS) \
Julius Werner53456fc2019-07-09 13:49:11 -0700331 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900332TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Holland23f5e542019-10-20 16:11:25 -0500333 -ffunction-sections -fdata-sections \
334 -ffreestanding -fno-builtin -fno-common \
335 -Os -std=gnu99
Juan Castilloa3487d12015-08-18 14:23:04 +0100336
Justin Chadwell83e04882019-08-20 11:01:52 +0100337ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100338 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
339endif #(${SANITIZE_UB},on)
340
Justin Chadwell83e04882019-08-20 11:01:52 +0100341ifeq (${SANITIZE_UB},trap)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100342 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
Justin Chadwell83e04882019-08-20 11:01:52 +0100343 -fsanitize-undefined-trap-on-error
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100344endif #(${SANITIZE_UB},trap)
Justin Chadwell83e04882019-08-20 11:01:52 +0100345
david cunado34ab6092017-11-30 21:58:01 +0000346GCC_V_OUTPUT := $(shell $(CC) -v 2>&1)
david cunado34ab6092017-11-30 21:58:01 +0000347
Marco Felsch24ad8402022-11-09 12:59:09 +0100348TF_LDFLAGS += -z noexecstack
349
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100350# LD = armlink
Varun Wadekar4d034c52019-01-11 14:47:48 -0800351ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100352 TF_LDFLAGS += --diag_error=warning --lto_level=O1
353 TF_LDFLAGS += --remove --info=unused,unusedsymbols
354 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100355
356# LD = gcc (used when GCC LTO is enabled)
zelalem-aweked5f45272019-11-12 16:20:17 -0600357else ifneq ($(findstring gcc,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100358 # Pass ld options with Wl or Xlinker switches
359 TF_LDFLAGS += -Wl,--fatal-warnings -O1
360 TF_LDFLAGS += -Wl,--gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000361
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100362 TF_LDFLAGS += -Wl,-z,common-page-size=4096 #Configure page size constants
363 TF_LDFLAGS += -Wl,-z,max-page-size=4096
Chris Kay73b1f402022-12-22 13:26:37 +0000364
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100365 ifeq ($(ENABLE_LTO),1)
366 ifeq (${ARCH},aarch64)
367 TF_LDFLAGS += -flto -fuse-linker-plugin
368 endif
369 endif #(ENABLE_LTO)
370
zelalem-aweked5f45272019-11-12 16:20:17 -0600371# 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 Gautier3d73d162023-03-15 16:18:16 +0100373 ifeq (${ARCH},aarch64)
374 ifneq (${ERRATA_A53_843419},1)
375 TF_LDFLAGS += -mno-fix-cortex-a53-843419
376 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100377 endif
378 TF_LDFLAGS += -nostdlib
379 TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100380
381# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekar4d034c52019-01-11 14:47:48 -0800382else
Marco Felsch24ad8402022-11-09 12:59:09 +0100383# 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 Chidanand2ee5d402023-04-24 15:57:05 +0100385 TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
386 TF_LDFLAGS += -O1
387 TF_LDFLAGS += --gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000388
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100389 TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
390 TF_LDFLAGS += -z max-page-size=4096
Chris Kay73b1f402022-12-22 13:26:37 +0000391
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100392# ld.lld doesn't recognize the errata flags,
Yabin Cuied7dc512023-01-19 20:06:04 +0000393# 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 Chidanand2ee5d402023-04-24 15:57:05 +0100396 ifeq ($(findstring ld.lld,$(notdir $(LD))),)
397 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
398 endif
399
400endif #(LD = armlink)
Juan Castilloa3487d12015-08-18 14:23:04 +0100401
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000402DTC_FLAGS += -I dts -O dtb
Louis Mayencourt6b232d92020-02-28 16:57:30 +0000403DTC_CPPFLAGS += -P -nostdinc -Iinclude -Ifdts -undef \
404 -x assembler-with-cpp $(DEFINES)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000405
Juan Castilloa3487d12015-08-18 14:23:04 +0100406################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500407# Setup ARCH_MAJOR/MINOR before parsing arch_features.
408################################################################################
409ifeq (${ENABLE_RME},1)
410 ARM_ARCH_MAJOR := 8
411 ARM_ARCH_MINOR := 6
412endif
413
414################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100415# Common sources and include directories
416################################################################################
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000417include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
dp-arme3cc8382017-05-04 12:15:35 +0100418include lib/compiler-rt/compiler-rt.mk
Juan Castilloa3487d12015-08-18 14:23:04 +0100419
420BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100421 common/tf_log.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100422 common/${ARCH}/debug.S \
Julius Werner03020da2018-11-27 22:10:56 -0800423 drivers/console/multi_console.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100424 lib/${ARCH}/cache_helpers.S \
425 lib/${ARCH}/misc_helpers.S \
Boyan Karatotev05504ba2023-02-15 13:21:50 +0000426 lib/extensions/pmuv3/${ARCH}/pmuv3.c \
Soby Mathew2f38ce32018-02-08 17:45:12 +0000427 plat/common/plat_bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100428 plat/common/plat_log_common.c \
dp-arm230011c2017-03-07 11:02:47 +0000429 plat/common/${ARCH}/plat_common.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100430 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas0f8f9852018-05-08 10:27:10 +0100431 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000432
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100433ifeq ($(notdir $(CC)),armclang)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100434 BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100435endif
436
Justin Chadwell83e04882019-08-20 11:01:52 +0100437ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100438 BL_COMMON_SOURCES += plat/common/ubsan.c
Justin Chadwell83e04882019-08-20 11:01:52 +0100439endif
440
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200441INCLUDES += -Iinclude \
Antonio Nino Diaz8d1ade62018-12-17 17:20:57 +0000442 -Iinclude/arch/${ARCH} \
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000443 -Iinclude/lib/cpus/${ARCH} \
444 -Iinclude/lib/el3_runtime/${ARCH} \
445 ${PLAT_INCLUDES} \
446 ${SPD_INCLUDES}
447
Antonio Nino Diazc3a2cf22018-11-19 11:48:30 +0000448include common/backtrace/backtrace.mk
449
Juan Castilloa3487d12015-08-18 14:23:04 +0100450################################################################################
Govindraj Raja1a211292023-09-20 14:32:24 -0500451# Generic definitions
452################################################################################
453include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
454
455ifeq (${BUILD_BASE},)
456 BUILD_BASE := ./build
457endif
458BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
459
460SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
461
462# Platforms providing their own TBB makefile may override this value
463INCLUDE_TBBR_MK := 1
464
465################################################################################
466# Include SPD Makefile if one has been specified
467################################################################################
468
469ifneq (${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.
529endif #(SPD=none)
530
531ifeq (${ENABLE_SPMD_LP}, 1)
532ifneq (${SPD},spmd)
533 $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
534endif
535ifeq ($(SPMC_AT_EL3),1)
536 $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
537endif
538endif
539
540################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500541# Process BRANCH_PROTECTION value and set
542# Pointer Authentication and Branch Target Identification flags
543################################################################################
544ifeq (${BRANCH_PROTECTION},0)
545 # Default value turns off all types of branch protection
546 BP_OPTION := none
547else ifneq (${ARCH},aarch64)
548 $(error BRANCH_PROTECTION requires AArch64)
549else ifeq (${BRANCH_PROTECTION},1)
550 # Enables all types of branch protection features
551 BP_OPTION := standard
552 ENABLE_BTI := 1
553 ENABLE_PAUTH := 1
554else ifeq (${BRANCH_PROTECTION},2)
555 # Return address signing to its standard level
556 BP_OPTION := pac-ret
557 ENABLE_PAUTH := 1
558else ifeq (${BRANCH_PROTECTION},3)
559 # Extend the signing to include leaf functions
560 BP_OPTION := pac-ret+leaf
561 ENABLE_PAUTH := 1
562else ifeq (${BRANCH_PROTECTION},4)
563 # Turn on branch target identification mechanism
564 BP_OPTION := bti
565 ENABLE_BTI := 1
566else
567 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
568endif #(BRANCH_PROTECTION)
569
570ifeq ($(ENABLE_PAUTH),1)
571 CTX_INCLUDE_PAUTH_REGS := 1
572endif
573ifneq (${BP_OPTION},none)
574 TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
575endif #(BP_OPTION)
576
577# Pointer Authentication sources
578ifeq (${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
582endif
583
Govindraj Raja1a211292023-09-20 14:32:24 -0500584################################################################################
585# Include the platform specific Makefile after the SPD Makefile (the platform
586# makefile may use all previous definitions in this file)
587################################################################################
588include ${PLAT_MAKEFILE_FULL}
589
590################################################################################
591# Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from
592# platform.
593################################################################################
594include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
595
Govindraj Raja0386e312023-08-17 10:41:48 -0500596####################################################
597# Enable required options for Memory Stack Tagging.
598####################################################
599
600# Currently, these options are enabled only for clang and armclang compiler.
601ifeq (${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)
619endif #(SUPPORT_STACK_MEMTAG)
620
621################################################################################
622# RME dependent flags configuration, Enable optional features for RME.
623################################################################################
624# FEAT_RME
625ifeq (${ENABLE_RME},1)
Govindraj Raja60f52662023-10-12 16:57:46 -0500626 # RME doesn't support BRBE
627 ENABLE_BRBE_FOR_NS := 0
628
Govindraj Raja0386e312023-08-17 10:41:48 -0500629 # 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
651endif #(FEAT_RME)
652
653################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100654# Generic definitions
655################################################################################
Evan Lloydf2697142015-12-02 18:17:37 +0000656include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
657
Grant Likely388248a2020-07-30 08:50:10 +0100658ifeq (${BUILD_BASE},)
659 BUILD_BASE := ./build
660endif
661BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
Achin Gupta4f6ad662013-10-25 09:08:21 +0100662
Evan Lloydf2697142015-12-02 18:17:37 +0000663SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
Ryan Harkin72ee3312014-01-15 16:55:07 +0000664
Juan Castilloa3487d12015-08-18 14:23:04 +0100665# Platforms providing their own TBB makefile may override this value
666INCLUDE_TBBR_MK := 1
667
Juan Castilloa3487d12015-08-18 14:23:04 +0100668################################################################################
669# Include SPD Makefile if one has been specified
670################################################################################
671
672ifneq (${SPD},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100673 ifeq (${ARCH},aarch32)
674 $(error "Error: SPD is incompatible with AArch32.")
675 endif
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000676
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100677 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 Gupta60b7b8a2019-10-11 15:50:43 +0100682
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100683 ifeq (${SPD},spmd)
684 # SPMD is located in std_svc directory
685 SPD_DIR := std_svc
Juan Castilloa3487d12015-08-18 14:23:04 +0100686
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100687 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 Deprezbcaa0682020-04-01 21:28:26 +0200693
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100694 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
695 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
696 endif
Davidson K9a949142021-03-10 12:07:15 +0530697
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100698 ifeq ($(TS_SP_FW_CONFIG),1)
699 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
700 endif
Balint Dobszay9f689762021-03-26 15:19:11 +0100701
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100702 ifneq ($(ARM_BL2_SP_LIST_DTS),)
703 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
704 endif
Balint Dobszay719ba9c2021-03-26 16:23:18 +0100705
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100706 ifneq ($(SP_LAYOUT_FILE),)
707 BL2_ENABLE_SP_LOAD := 1
708 endif
Nishant Sharma9e719112023-06-27 00:36:01 +0100709
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 Chidanand2ee5d402023-04-24 15:57:05 +0100715 else
716 # All other SPDs in spd directory
717 SPD_DIR := spd
718 endif #(SPD)
Juan Castilloa3487d12015-08-18 14:23:04 +0100719
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100720 # We expect to locate an spd.mk under the specified SPD directory
721 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000722
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100723 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 Shvetsovbdf502d2020-02-25 13:56:19 +0000728
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100729 # 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.
738endif #(SPD=none)
Juan Castilloa3487d12015-08-18 14:23:04 +0100739
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -0800740ifeq (${ENABLE_SPMD_LP}, 1)
741ifneq (${SPD},spmd)
742 $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
743endif
744ifeq ($(SPMC_AT_EL3),1)
745 $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
746endif
747endif
748
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000749ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100750 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 Raja0264d6c2022-11-21 13:10:40 +0000756endif
757
Douglas Raillard306593d2017-02-24 18:14:15 +0000758################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500759# Include rmmd Makefile if RME is enabled
760################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500761ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100762 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 Aweke4d37db82021-07-11 18:33:20 -0500774include services/std_svc/rmmd/rmmd.mk
775$(warning "RME is an experimental feature")
776endif
777
Govindraj Raja1a211292023-09-20 14:32:24 -0500778ifeq (${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
785endif
Jon Medhurst66573cb2014-02-13 15:19:28 +0000786
Govindraj Raja69096412023-06-01 16:29:16 -0500787################################################################################
788# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
789# up with appropriate march values for compiler.
790################################################################################
791include ${MAKE_HELPERS_DIRECTORY}march.mk
792
793TF_CFLAGS += $(march-directive)
794
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600795# 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
800ifeq (${RESET_TO_BL2},1)
801 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100802 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 Prakash11b9b492022-11-22 14:41:00 -0600806else ifeq (${ENABLE_RME},1)
807 BL2_RUNS_AT_EL3 := 1
808else
809 BL2_RUNS_AT_EL3 := 0
810endif
811
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100812# This internal flag is set to 1 when Firmware First handling of External aborts
813# is required by lowe ELs. Currently only NS requires this support.
814ifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
815 FFH_SUPPORT := 1
816else
817 FFH_SUPPORT := 0
818endif
819
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900820$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
821
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100822ifeq (${ARM_ARCH_MAJOR},7)
823include make_helpers/armv7-a-cpus.mk
824endif
825
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900826PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
827ifneq ($(PIE_FOUND),)
828 TF_CFLAGS += -fno-PIE
Samuel Holland9286c022022-04-08 21:56:02 -0500829ifneq ($(findstring gcc,$(notdir $(LD))),)
830 TF_LDFLAGS += -no-pie
831endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100832endif #(PIE_FOUND)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900833
834ifneq ($(findstring gcc,$(notdir $(LD))),)
835 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100836else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900837 PIE_LDFLAGS += -pie --no-dynamic-linker
838endif
839
840ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100841 ifeq ($(RESET_TO_BL2),1)
842 ifneq ($(BL2_IN_XIP_MEM),1)
843 BL2_CPPFLAGS += -fpie
844 BL2_CFLAGS += -fpie
845 BL2_LDFLAGS += $(PIE_LDFLAGS)
846 endif #(BL2_IN_XIP_MEM)
847 endif #(RESET_TO_BL2)
Chris Kay13886c82023-02-02 14:39:03 +0000848 BL31_CPPFLAGS += -fpie
849 BL31_CFLAGS += -fpie
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900850 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay13886c82023-02-02 14:39:03 +0000851
852 BL32_CPPFLAGS += -fpie
Masahiro Yamadade634f82020-01-17 13:45:14 +0900853 BL32_CFLAGS += -fpie
854 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100855endif #(ENABLE_PIE)
Soby Mathew078f1a42018-08-28 11:13:55 +0100856
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000857BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
858BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
859BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
860
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900861BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600862ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100863 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900864else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100865 BL2_CPPFLAGS += -DIMAGE_AT_EL1
866endif #(RESET_TO_BL2)
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000867
868ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100869 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
870 BL31_CPPFLAGS += -DIMAGE_AT_EL3
871 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000872else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100873 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900874endif
875
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000876# Include the CPU specific operations makefile, which provides default
877# values for all CPU errata workarounds and CPU specific optimisations.
878# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100879include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100880
dp-armcdd03cb2017-02-15 11:07:55 +0000881################################################################################
882# Build `AARCH32_SP` as BL32 image for AArch32
883################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100884ifeq (${ARCH},aarch32)
885 NEED_BL32 := yes
dp-armcdd03cb2017-02-15 11:07:55 +0000886
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100887 ifneq (${AARCH32_SP},none)
888 # We expect to locate an sp.mk under the specified AARCH32_SP directory
889 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-armcdd03cb2017-02-15 11:07:55 +0000890
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100891 ifeq (${AARCH32_SP_MAKE},)
892 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
893 endif
Juan Pablo Conde6aba3b12023-08-09 13:19:21 -0500894 $(info Including ${AARCH32_SP_MAKE})
895 include ${AARCH32_SP_MAKE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100896 endif
897endif #(ARCH=aarch32)
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800898
899################################################################################
900# Include libc if not overridden
901################################################################################
902ifeq (${OVERRIDE_LIBC},0)
903include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000904endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100905
906################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100907# Check incompatible options and dependencies
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000908################################################################################
909
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100910# USE_DEBUGFS experimental feature recommended only in debug builds
911ifeq (${USE_DEBUGFS},1)
912 ifeq (${DEBUG},1)
913 $(warning DEBUGFS experimental feature is enabled.)
914 else
915 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800916 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100917endif #(USE_DEBUGFS)
918
919# USE_SPINLOCK_CAS requires AArch64 build
920ifeq (${USE_SPINLOCK_CAS},1)
921 ifneq (${ARCH},aarch64)
922 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800923 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100924endif #(USE_SPINLOCK_CAS)
925
926# The cert_create tool cannot generate certificates individually, so we use the
927# target 'certificates' to create them all
928ifneq (${GENERATE_COT},0)
929 FIP_DEPS += certificates
930 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000931endif
932
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100933ifneq (${DECRYPTION_SUPPORT},none)
934 ENC_ARGS += -f ${FW_ENC_STATUS}
935 ENC_ARGS += -k ${ENC_KEY}
936 ENC_ARGS += -n ${ENC_NONCE}
937 FIP_DEPS += enctool
938 FWU_FIP_DEPS += enctool
939endif #(DECRYPTION_SUPPORT)
940
941ifdef EL3_PAYLOAD_BASE
942 ifdef PRELOADED_BL33_BASE
943 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
944 incompatible build options. EL3_PAYLOAD_BASE has priority.")
945 endif
946 ifneq (${GENERATE_COT},0)
947 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
948 build options.")
949 endif
950 ifneq (${TRUSTED_BOARD_BOOT},0)
951 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
952 incompatible \ build options.")
953 endif
954endif #(EL3_PAYLOAD_BASE)
955
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000956ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100957 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000958 $(warning "BL33 image is not needed when option \
959 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100960 endif
961 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100962 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100963 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
964 endif
965endif #(NEED_BL33)
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000966
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000967# When building for systems with hardware-assisted coherency, there's no need to
968# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
969ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100970 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000971endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100972
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600973#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
974ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100975 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000976endif
977
Manish Pandeyd419e222023-02-13 12:39:17 +0000978# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100979ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100980 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100981 and HANDLE_EA_EL3_FIRST_NS instead")
Manish Pandeyd419e222023-02-13 12:39:17 +0000982endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100983
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100984
Manish Pandeyd419e222023-02-13 12:39:17 +0000985# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000986ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100987 ifeq ($(ENABLE_FEAT_RAS),0)
988 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
989 endif
990endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000991
Roberto Vargas025946a2018-09-24 17:20:48 +0100992# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100993ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100994 ifeq (${TRUSTED_BOARD_BOOT}, 0)
995 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
996 to be set.")
997 endif
998endif #(DYN_DISABLE_AUTH)
Soby Mathew9fe88042018-03-26 12:43:37 +0100999
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +01001000ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
1001# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001002 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +01001003else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
1004# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001005 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +01001006else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
1007# Support hash calculation only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001008 CRYPTO_SUPPORT := 2
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +01001009else ifeq (${TRUSTED_BOARD_BOOT},1)
1010# Support authentication verification only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001011 CRYPTO_SUPPORT := 1
Manish V Badarkhe5181d602022-01-08 22:56:06 +00001012else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001013 CRYPTO_SUPPORT := 0
1014endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhe5181d602022-01-08 22:56:06 +00001015
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +01001016# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
1017ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001018 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +01001019endif
1020
Antonio Nino Diaz25cda672019-02-19 11:53:51 +00001021# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +01001022# registers associated to it are also saved and restored.
1023# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
Antonio Nino Diaz25cda672019-02-19 11:53:51 +00001024ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001025 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
1026 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
1027 endif
1028endif #(ENABLE_PAUTH)
Alexei Fedorov90f2e882019-05-24 12:17:09 +01001029
1030ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001031 ifneq (${ARCH},aarch64)
1032 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
1033 endif
1034endif #(CTX_INCLUDE_PAUTH_REGS)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +00001035
Justin Chadwell1c7c13a2019-07-18 14:25:33 +01001036ifeq ($(CTX_INCLUDE_MTE_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001037 ifneq (${ARCH},aarch64)
1038 $(error CTX_INCLUDE_MTE_REGS requires AArch64)
1039 endif
1040endif #(CTX_INCLUDE_MTE_REGS)
Justin Chadwell1c7c13a2019-07-18 14:25:33 +01001041
Manish V Badarkhe99575e42021-06-25 23:28:59 +01001042ifeq ($(PSA_FWU_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001043 $(info PSA_FWU_SUPPORT is an experimental feature)
1044endif #(PSA_FWU_SUPPORT)
Manish V Badarkhe99575e42021-06-25 23:28:59 +01001045
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001046ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001047 $(info FEATURE_DETECTION is an experimental feature)
1048endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001049
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001050ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001051 ifeq (${ENABLE_SME_FOR_NS}, 0)
1052 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
1053 to be set")
1054 $(warning "Forced ENABLE_SME_FOR_NS=1")
1055 override ENABLE_SME_FOR_NS := 1
1056 endif
1057endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +00001058
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +00001059ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001060 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
1061 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
1062 library v2")
1063 endif
1064endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +00001065
Sumit Garg392e4df2019-11-15 10:43:00 +05301066ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001067 ifeq (${TRUSTED_BOARD_BOOT}, 0)
1068 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
1069 to be set)
1070 endif
1071endif #(DECRYPTION_SUPPORT)
Sumit Garg392e4df2019-11-15 10:43:00 +05301072
johpow0181865962022-01-28 17:06:20 -06001073# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -05001074ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -06001075
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001076 # SME/SVE only supported on AArch64
1077 ifneq (${ENABLE_SME_FOR_NS},0)
1078 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
1079 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001080
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001081 ifeq (${ENABLE_SVE_FOR_NS},1)
1082 # Warning instead of error due to CI dependency on this
1083 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
1084 endif
johpow0181865962022-01-28 17:06:20 -06001085
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001086 # BRBE is not supported in AArch32
1087 ifeq (${ENABLE_BRBE_FOR_NS},1)
1088 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
1089 endif
johpow0181865962022-01-28 17:06:20 -06001090
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001091 # FEAT_RNG_TRAP is not supported in AArch32
1092 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
1093 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
1094 endif
1095endif #(ARCH=aarch32)
johpow019baade32021-07-08 14:14:00 -05001096
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +00001097ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001098 ifeq (${ENABLE_SVE_FOR_NS},0)
1099 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
1100 endif
1101endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +00001102
johpow019baade32021-07-08 14:14:00 -05001103# Secure SME/SVE requires the non-secure component as well
1104ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001105 ifeq (${ENABLE_SME_FOR_NS},0)
1106 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
1107 endif
1108 ifeq (${ENABLE_SVE_FOR_SWD},0)
1109 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
1110 endif
1111endif #(ENABLE_SME_FOR_SWD)
1112
johpow019baade32021-07-08 14:14:00 -05001113ifeq (${ENABLE_SVE_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001114 ifeq (${ENABLE_SVE_FOR_NS},0)
1115 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
1116 endif
1117endif #(ENABLE_SVE_FOR_SWD)
johpow019baade32021-07-08 14:14:00 -05001118
1119# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
1120# its own context management including FPU registers.
1121ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001122 ifneq (${ENABLE_SME_FOR_NS},0)
1123 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1124 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001125
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001126 ifeq (${ENABLE_SVE_FOR_NS},1)
1127 # Warning instead of error due to CI dependency on this
1128 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1129 $(warning "Forced ENABLE_SVE_FOR_NS=0")
1130 override ENABLE_SVE_FOR_NS := 0
1131 endif
1132endif #(CTX_INCLUDE_FPREGS)
johpow019baade32021-07-08 14:14:00 -05001133
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001134ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001135 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001136endif
1137
Raymond Mao98983392023-07-25 07:53:35 -07001138ifeq (${TRANSFER_LIST},1)
1139 $(info TRANSFER_LIST is an experimental feature)
1140endif
1141
Chris Kayd02c2312022-09-29 16:21:24 +01001142ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001143 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1144 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1145 endif
Chris Kayd02c2312022-09-29 16:21:24 +01001146endif
1147
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001148# Determine if FEAT_RNG is supported
1149ENABLE_FEAT_RNG = $(if $(findstring rng,${arch-features}),1,0)
1150
1151# Determine if FEAT_SB is supported
1152ENABLE_FEAT_SB = $(if $(findstring sb,${arch-features}),1,0)
1153
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001154ifeq ($(PSA_CRYPTO),1)
1155 $(info PSA_CRYPTO is an experimental feature)
1156endif
1157
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001158################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001159# Process platform overrideable behaviour
1160################################################################################
1161
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001162ifdef BL1_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001163 NEED_BL1 := yes
1164endif #(BL1_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001165
Jon Medhurst66573cb2014-02-13 15:19:28 +00001166ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001167 NEED_BL2 := yes
1168
1169 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1170 # Certificate generation tools. This flag can be overridden by the platform.
1171 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001172 # If booting an EL3 payload there is no need for a BL33 image
1173 # in the FIP file.
1174 NEED_BL33 := no
1175 else
1176 ifdef PRELOADED_BL33_BASE
1177 # If booting a BL33 preloaded image there is no need of
1178 # another one in the FIP file.
1179 NEED_BL33 := no
1180 else
1181 NEED_BL33 ?= yes
1182 endif
1183 endif
1184endif #(BL2_SOURCES)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001185
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001186ifdef BL2U_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001187 NEED_BL2U := yes
1188endif #(BL2U_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001189
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001190# If SCP_BL2 is given, we always want FIP to include it.
1191ifdef SCP_BL2
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001192 NEED_SCP_BL2 := yes
1193endif #(SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001194
Soby Mathewbf169232017-11-14 14:10:10 +00001195# For AArch32, BL31 is not currently supported.
1196ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001197 ifdef BL31_SOURCES
1198 # When booting an EL3 payload, there is no need to compile the BL31
1199 # image nor put it in the FIP.
1200 ifndef EL3_PAYLOAD_BASE
1201 NEED_BL31 := yes
1202 endif
1203 endif
1204endif #(ARCH=aarch64)
Soby Mathewbf169232017-11-14 14:10:10 +00001205
Juan Castilloa3487d12015-08-18 14:23:04 +01001206# Process TBB related flags
1207ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001208 # Common cert_create options
1209 ifneq (${CREATE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001210 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001211 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001212 ifneq (${SAVE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001213 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001214 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001215 endif
1216 endif
1217 # Include TBBR makefile (unless the platform indicates otherwise)
1218 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castilloa3487d12015-08-18 14:23:04 +01001219 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001220 endif
1221endif #(GENERATE_COT)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001222
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001223ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001224 FIP_ARGS += --align ${FIP_ALIGN}
1225endif #(FIP_ALIGN)
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001226
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001227ifdef FDT_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001228 NEED_FDT := yes
1229endif #(FDT_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001230
Juan Castilloa3487d12015-08-18 14:23:04 +01001231################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +08001232# Include libraries' Makefile that are used in all BL
1233################################################################################
1234
1235include lib/stack_protector/stack_protector.mk
1236
1237################################################################################
Soby Mathew574e01e2017-02-14 10:05:07 +00001238# Include BL specific makefiles
1239################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001240
1241ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001242include bl1/bl1.mk
1243endif
1244
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001245ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001246include bl2/bl2.mk
1247endif
1248
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001249ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001250include bl2u/bl2u.mk
1251endif
1252
Soby Mathewbf169232017-11-14 14:10:10 +00001253ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001254include bl31/bl31.mk
1255endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001256
Soby Mathew574e01e2017-02-14 10:05:07 +00001257################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001258# Build options checks
1259################################################################################
1260
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001261# Boolean_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001262$(eval $(call assert_booleans,\
1263 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001264 ALLOW_RO_XLAT_TABLES \
1265 BL2_ENABLE_SP_LOAD \
1266 COLD_BOOT_SINGLE_CPU \
1267 CREATE_KEYS \
1268 CTX_INCLUDE_AARCH32_REGS \
1269 CTX_INCLUDE_FPREGS \
1270 CTX_INCLUDE_EL2_REGS \
1271 DEBUG \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001272 DYN_DISABLE_AUTH \
1273 EL3_EXCEPTION_HANDLING \
1274 ENABLE_AMU_AUXILIARY_COUNTERS \
1275 ENABLE_AMU_FCONF \
1276 AMU_RESTRICT_COUNTERS \
1277 ENABLE_ASSERTIONS \
1278 ENABLE_FEAT_SB \
1279 ENABLE_PIE \
1280 ENABLE_PMF \
1281 ENABLE_PSCI_STAT \
1282 ENABLE_RUNTIME_INSTRUMENTATION \
1283 ENABLE_SME_FOR_SWD \
1284 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001285 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001286 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001287 ERROR_DEPRECATED \
1288 FAULT_INJECTION_SUPPORT \
1289 GENERATE_COT \
1290 GICV2_G0_FOR_EL3 \
1291 HANDLE_EA_EL3_FIRST_NS \
1292 HW_ASSISTED_COHERENCY \
1293 MEASURED_BOOT \
1294 DRTM_SUPPORT \
1295 NS_TIMER_SWITCH \
1296 OVERRIDE_LIBC \
1297 PL011_GENERIC_UART \
1298 PLAT_RSS_NOT_SUPPORTED \
1299 PROGRAMMABLE_RESET_ADDRESS \
1300 PSCI_EXTENDED_STATE_ID \
1301 PSCI_OS_INIT_MODE \
1302 RESET_TO_BL31 \
1303 SAVE_KEYS \
1304 SEPARATE_CODE_AND_RODATA \
1305 SEPARATE_BL2_NOLOAD_REGION \
1306 SEPARATE_NOBITS_REGION \
1307 SPIN_ON_BL1_EXIT \
1308 SPM_MM \
1309 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001310 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001311 SPMD_SPM_AT_SEL2 \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001312 ENABLE_SPMD_LP \
Raymond Mao98983392023-07-25 07:53:35 -07001313 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001314 TRUSTED_BOARD_BOOT \
1315 USE_COHERENT_MEM \
1316 USE_DEBUGFS \
1317 ARM_IO_IN_DTB \
1318 SDEI_IN_FCONF \
1319 SEC_INT_DESC_IN_FCONF \
1320 USE_ROMLIB \
1321 USE_TBBR_DEFS \
1322 WARMBOOT_ENABLE_DCACHE_EARLY \
1323 RESET_TO_BL2 \
1324 BL2_IN_XIP_MEM \
1325 BL2_INV_DCACHE \
1326 USE_SPINLOCK_CAS \
1327 ENCRYPT_BL31 \
1328 ENCRYPT_BL32 \
1329 ERRATA_SPECULATIVE_AT \
1330 RAS_TRAP_NS_ERR_REC_ACCESS \
1331 COT_DESC_IN_DTB \
1332 USE_SP804_TIMER \
1333 PSA_FWU_SUPPORT \
1334 ENABLE_MPMM \
1335 ENABLE_MPMM_FCONF \
1336 FEATURE_DETECTION \
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +01001337 TRNG_SUPPORT \
Sona Mathew7fe03522022-11-18 18:05:38 -06001338 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001339 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001340 CONDITIONAL_CMO \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001341 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001342 ENABLE_CONSOLE_GETC \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001343)))
Dan Handley81be1002015-03-27 17:44:35 +00001344
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001345# Numeric_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001346$(eval $(call assert_numerics,\
1347 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001348 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 Karatotev677ed8a2023-02-16 09:45:29 +00001355 DISABLE_MTPMU \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001356 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 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001363 ENABLE_FEAT_DIT \
1364 ENABLE_FEAT_ECV \
1365 ENABLE_FEAT_FGT \
1366 ENABLE_FEAT_HCX \
1367 ENABLE_FEAT_PAN \
1368 ENABLE_FEAT_RNG \
1369 ENABLE_FEAT_RNG_TRAP \
1370 ENABLE_FEAT_SEL2 \
1371 ENABLE_FEAT_TCR2 \
1372 ENABLE_FEAT_S2PIE \
1373 ENABLE_FEAT_S1PIE \
1374 ENABLE_FEAT_S2POE \
1375 ENABLE_FEAT_S1POE \
1376 ENABLE_FEAT_GCS \
1377 ENABLE_FEAT_VHE \
Maksims Svecovsdf4ad842023-03-24 13:05:09 +00001378 ENABLE_FEAT_MTE_PERM \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001379 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001380 ENABLE_RME \
1381 ENABLE_SPE_FOR_NS \
1382 ENABLE_SYS_REG_TRACE_FOR_NS \
1383 ENABLE_SME_FOR_NS \
1384 ENABLE_SME2_FOR_NS \
1385 ENABLE_SVE_FOR_NS \
1386 ENABLE_TRF_FOR_NS \
1387 FW_ENC_STATUS \
1388 NR_OF_FW_BANKS \
1389 NR_OF_IMAGES_IN_FW_BANK \
1390 TWED_DELAY \
1391 ENABLE_FEAT_TWED \
1392 SVE_VECTOR_LEN \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001393 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001394)))
Jeenu Viswambharanfca76802017-01-16 16:52:35 +00001395
Justin Chadwellf9b32c12019-07-29 17:13:10 +01001396ifdef KEY_SIZE
1397 $(eval $(call assert_numeric,KEY_SIZE))
1398endif
1399
Justin Chadwell83e04882019-08-20 11:01:52 +01001400ifeq ($(filter $(SANITIZE_UB), on off trap),)
1401 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1402endif
1403
Juan Castilloa3487d12015-08-18 14:23:04 +01001404################################################################################
1405# Add definitions to the cpp preprocessor based on the current build options.
1406# This is done after including the platform specific makefile to allow the
1407# platform to overwrite the default options
1408################################################################################
Jeenu Viswambharand1b60152014-05-12 15:28:47 +01001409
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001410$(eval $(call add_defines,\
1411 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001412 ALLOW_RO_XLAT_TABLES \
1413 ARM_ARCH_MAJOR \
1414 ARM_ARCH_MINOR \
1415 BL2_ENABLE_SP_LOAD \
1416 COLD_BOOT_SINGLE_CPU \
1417 CTX_INCLUDE_AARCH32_REGS \
1418 CTX_INCLUDE_FPREGS \
1419 CTX_INCLUDE_PAUTH_REGS \
1420 EL3_EXCEPTION_HANDLING \
1421 CTX_INCLUDE_MTE_REGS \
1422 CTX_INCLUDE_EL2_REGS \
1423 CTX_INCLUDE_NEVE_REGS \
1424 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1425 DISABLE_MTPMU \
1426 ENABLE_FEAT_AMU \
1427 ENABLE_AMU_AUXILIARY_COUNTERS \
1428 ENABLE_AMU_FCONF \
1429 AMU_RESTRICT_COUNTERS \
1430 ENABLE_ASSERTIONS \
1431 ENABLE_BTI \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001432 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001433 ENABLE_PAUTH \
1434 ENABLE_PIE \
1435 ENABLE_PMF \
1436 ENABLE_PSCI_STAT \
1437 ENABLE_RME \
1438 ENABLE_RUNTIME_INSTRUMENTATION \
1439 ENABLE_SME_FOR_NS \
1440 ENABLE_SME2_FOR_NS \
1441 ENABLE_SME_FOR_SWD \
1442 ENABLE_SPE_FOR_NS \
1443 ENABLE_SVE_FOR_NS \
1444 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001445 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001446 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001447 ENCRYPT_BL31 \
1448 ENCRYPT_BL32 \
1449 ERROR_DEPRECATED \
1450 FAULT_INJECTION_SUPPORT \
1451 GICV2_G0_FOR_EL3 \
1452 HANDLE_EA_EL3_FIRST_NS \
1453 HW_ASSISTED_COHERENCY \
1454 LOG_LEVEL \
1455 MEASURED_BOOT \
1456 DRTM_SUPPORT \
1457 NS_TIMER_SWITCH \
1458 PL011_GENERIC_UART \
1459 PLAT_${PLAT} \
1460 PLAT_RSS_NOT_SUPPORTED \
1461 PROGRAMMABLE_RESET_ADDRESS \
1462 PSCI_EXTENDED_STATE_ID \
1463 PSCI_OS_INIT_MODE \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001464 RESET_TO_BL31 \
1465 SEPARATE_CODE_AND_RODATA \
1466 SEPARATE_BL2_NOLOAD_REGION \
1467 SEPARATE_NOBITS_REGION \
1468 RECLAIM_INIT_CODE \
1469 SPD_${SPD} \
1470 SPIN_ON_BL1_EXIT \
1471 SPM_MM \
1472 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001473 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001474 SPMD_SPM_AT_SEL2 \
Raymond Mao98983392023-07-25 07:53:35 -07001475 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001476 TRUSTED_BOARD_BOOT \
1477 CRYPTO_SUPPORT \
1478 TRNG_SUPPORT \
1479 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001480 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001481 USE_COHERENT_MEM \
1482 USE_DEBUGFS \
1483 ARM_IO_IN_DTB \
1484 SDEI_IN_FCONF \
1485 SEC_INT_DESC_IN_FCONF \
1486 USE_ROMLIB \
1487 USE_TBBR_DEFS \
1488 WARMBOOT_ENABLE_DCACHE_EARLY \
1489 RESET_TO_BL2 \
1490 BL2_RUNS_AT_EL3 \
1491 BL2_IN_XIP_MEM \
1492 BL2_INV_DCACHE \
1493 USE_SPINLOCK_CAS \
1494 ERRATA_SPECULATIVE_AT \
1495 RAS_TRAP_NS_ERR_REC_ACCESS \
1496 COT_DESC_IN_DTB \
1497 USE_SP804_TIMER \
1498 ENABLE_FEAT_RNG \
1499 ENABLE_FEAT_RNG_TRAP \
1500 ENABLE_FEAT_SB \
1501 ENABLE_FEAT_DIT \
1502 NR_OF_FW_BANKS \
1503 NR_OF_IMAGES_IN_FW_BANK \
1504 PSA_FWU_SUPPORT \
1505 ENABLE_BRBE_FOR_NS \
1506 ENABLE_TRBE_FOR_NS \
1507 ENABLE_SYS_REG_TRACE_FOR_NS \
1508 ENABLE_TRF_FOR_NS \
1509 ENABLE_FEAT_HCX \
1510 ENABLE_MPMM \
1511 ENABLE_MPMM_FCONF \
1512 ENABLE_FEAT_FGT \
1513 ENABLE_FEAT_ECV \
1514 ENABLE_FEAT_AMUv1p1 \
1515 ENABLE_FEAT_SEL2 \
1516 ENABLE_FEAT_VHE \
1517 ENABLE_FEAT_CSV2_2 \
1518 ENABLE_FEAT_PAN \
1519 ENABLE_FEAT_TCR2 \
1520 ENABLE_FEAT_S2PIE \
1521 ENABLE_FEAT_S1PIE \
1522 ENABLE_FEAT_S2POE \
1523 ENABLE_FEAT_S1POE \
1524 ENABLE_FEAT_GCS \
Maksims Svecovsdf4ad842023-03-24 13:05:09 +00001525 ENABLE_FEAT_MTE_PERM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001526 FEATURE_DETECTION \
1527 TWED_DELAY \
1528 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001529 CONDITIONAL_CMO \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001530 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidanand23c2fe22023-04-26 15:57:30 +01001531 SVE_VECTOR_LEN \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001532 ENABLE_SPMD_LP \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001533 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001534 ENABLE_CONSOLE_GETC \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001535)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001536
Justin Chadwell83e04882019-08-20 11:01:52 +01001537ifeq (${SANITIZE_UB},trap)
1538 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001539endif #(SANITIZE_UB)
Justin Chadwell83e04882019-08-20 11:01:52 +01001540
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001541# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1542ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001543 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1544else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001545# Define the PRELOADED_BL33_BASE flag only if it is provided and
1546# EL3_PAYLOAD_BASE is not defined, as it has priority.
1547 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001548 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001549 endif
1550endif #(EL3_PAYLOAD_BASE)
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001551
Soby Mathew9fe88042018-03-26 12:43:37 +01001552# Define the DYN_DISABLE_AUTH flag only if set.
1553ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001554 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew9fe88042018-03-26 12:43:37 +01001555endif
1556
Varun Wadekar4d034c52019-01-11 14:47:48 -08001557ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001558 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekar4d034c52019-01-11 14:47:48 -08001559endif
1560
Manish Pandey3f90ad72020-01-14 11:52:05 +00001561# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001562ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001563ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001564 -include $(BUILD_PLAT)/sp_gen.mk
1565 FIP_DEPS += sp
1566 CRT_DEPS += sp
1567 NEED_SP_PKG := yes
Manish Pandey3f90ad72020-01-14 11:52:05 +00001568else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001569 ifeq (${SPMD_SPM_AT_SEL2},1)
1570 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1571 endif
1572endif #(SP_LAYOUT_FILE)
1573endif #(SPD)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001574
Juan Castilloa3487d12015-08-18 14:23:04 +01001575################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001576# Build targets
1577################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001578
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301579.PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp fwu_fip certtool dtbs memmap doc enctool
Juan Castilloa3487d12015-08-18 14:23:04 +01001580.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001581
Juan Castilloa3487d12015-08-18 14:23:04 +01001582all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001583
Juan Castilloa3487d12015-08-18 14:23:04 +01001584msg_start:
1585 @echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001586
Soby Mathew18a62042015-10-26 14:29:21 +00001587ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001588# Check if deprecated declarations and cpp warnings should be treated as error or not.
Varun Wadekar4d034c52019-01-11 14:47:48 -08001589ifneq ($(findstring clang,$(notdir $(CC))),)
1590 CPPFLAGS += -Wno-error=deprecated-declarations
1591else
Dan Handley6fa89a22018-02-27 16:03:58 +00001592 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001593endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001594endif #(!ERROR_DEPRECATED)
Soby Mathew18a62042015-10-26 14:29:21 +00001595
Roberto Vargase92111a2018-05-22 16:05:42 +01001596$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001597$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001598
Juan Castilloa3487d12015-08-18 14:23:04 +01001599# Expand build macros for the different images
1600ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001601BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001602$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001603endif #(NEED_BL1)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001604
Juan Castilloa3487d12015-08-18 14:23:04 +01001605ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001606
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001607ifeq (${RESET_TO_BL2}, 0)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001608FIP_BL2_ARGS := tb-fw
1609endif
1610
Chris Kayfb3b0512021-09-28 15:44:37 +01001611BL2_SOURCES := $(sort ${BL2_SOURCES})
1612
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001613$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001614 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001615
1616endif #(NEED_BL2)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001617
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001618ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001619$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001620endif #(NEED_SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001621
Juan Castilloa3487d12015-08-18 14:23:04 +01001622ifeq (${NEED_BL31},yes)
1623BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001624# Sort BL31 source files to remove duplicates
1625BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301626ifneq (${DECRYPTION_SUPPORT},none)
1627$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001628 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301629else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001630$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001631 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001632endif #(DECRYPTION_SUPPORT)
1633endif #(NEED_BL31)
Juan Castillo379954c2014-11-04 17:36:40 +00001634
Juan Castillo671b8db2015-11-12 10:59:26 +00001635# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001636# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001637# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001638ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001639# Sort BL32 source files to remove duplicates
1640BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001641BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1642
Sumit Gargeec52442019-11-14 16:33:45 +05301643ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001644$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301645 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1646else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001647$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001648 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001649endif #(DECRYPTION_SUPPORT)
1650endif #(NEED_BL32)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001651
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001652# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1653# needs to be built from RMM_SOURCES.
1654ifeq (${NEED_RMM},yes)
1655# Sort RMM source files to remove duplicates
1656RMM_SOURCES := $(sort ${RMM_SOURCES})
1657BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1658
1659$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001660 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1661endif #(NEED_RMM)
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001662
Juan Castilloa3487d12015-08-18 14:23:04 +01001663# Add the BL33 image if required by the platform
1664ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001665$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001666endif #(NEED_BL33)
Juan Castillo9c25a402015-01-13 12:21:04 +00001667
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001668ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001669$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001670 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001671endif #(NEED_BL2U)
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001672
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001673# Expand build macros for the different images
1674ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001675 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001676endif #(NEED_FDT)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001677
Manish Pandey3f90ad72020-01-14 11:52:05 +00001678# Add Secure Partition packages
1679ifeq (${NEED_SP_PKG},yes)
Karl Meakinaba46182023-02-14 11:56:02 +00001680$(BUILD_PLAT)/sp_gen.mk : ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
1681 ${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
J-Alvesef8e0982022-03-22 16:28:51 +00001682sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001683 @${ECHO_BLANK_LINE}
1684 @echo "Built SP Images successfully"
1685 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001686endif #(NEED_SP_PKG)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001687
Ian Spray36eaaf32014-01-30 17:25:28 +00001688locate-checkpatch:
1689ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001690 $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001691else
1692ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001693 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001694endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001695endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001696
Achin Gupta4f6ad662013-10-25 09:08:21 +01001697clean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001698 @echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001699 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001700ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001701 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001702else
1703# Clear the MAKEFLAGS as we do not want
1704# to pass the gnumake flags to nmake.
1705 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001706endif #(UNIX_MK)
Juan Castilloa3487d12015-08-18 14:23:04 +01001707 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301708 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
Roberto Vargase92111a2018-05-22 16:05:42 +01001709 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001710
James Morrisseyeaaeece2013-11-01 13:56:59 +00001711realclean distclean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001712 @echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001713 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1714 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001715ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001716 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001717else
1718# Clear the MAKEFLAGS as we do not want
1719# to pass the gnumake flags to nmake.
1720 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001721endif #(UNIX_MK)
Nicolas Boulenguezdf612a52021-03-31 12:22:45 +02001722 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301723 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
Roberto Vargase92111a2018-05-22 16:05:42 +01001724 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001725
Ian Spray36eaaf32014-01-30 17:25:28 +00001726checkcodebase: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001727 @echo " CHECKING STYLE"
Dan Handley3a355712016-06-02 18:21:02 +01001728 @if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001729 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001730 while read GIT_FILE ; \
1731 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1732 done ; \
1733 else \
1734 find . -type f -not -iwholename "*.git*" \
1735 -not -iwholename "*build*" \
1736 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001737 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001738 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001739 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001740 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1741 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001742
1743checkpatch: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001744 @echo " CHECKING STYLE"
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001745 @if test -n "${CHECKPATCH_OPTS}"; then \
1746 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1747 fi
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001748 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001749 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1750 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001751 printf "\n[*] Checking style of '$$commit'\n\n"; \
1752 git log --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001753 -- ${CHECK_PATHS} | \
1754 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001755 git diff --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001756 -- ${CHECK_PATHS} | \
1757 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001758 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001759
1760certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001761
Pali Rohár54ff2132020-11-24 15:38:08 +01001762${CRTTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001763 ${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 Lloyd26c6cb42015-12-02 18:33:55 +00001764 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001765 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001766 @${ECHO_BLANK_LINE}
Jon Medhurst407a95c2014-02-12 15:54:48 +00001767
Juan Castillo11abdcd2014-10-21 11:30:42 +01001768ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001769certificates: ${CRT_DEPS} ${CRTTOOL}
1770 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001771 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001772 @echo "Built $@ successfully"
1773 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001774 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001775endif #(GENERATE_COT)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001776
Juan Castilloa3487d12015-08-18 14:23:04 +01001777${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001778 $(eval ${CHECK_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001779 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
1780 ${Q}${FIPTOOL} info $@
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001781 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001782 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001783 @${ECHO_BLANK_LINE}
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001784
Yatharth Kochard1a93432015-10-12 12:33:47 +01001785ifneq (${GENERATE_COT},0)
1786fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1787 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001788 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001789 @echo "Built $@ successfully"
1790 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001791 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001792endif #(GENERATE_COT)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001793
1794${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001795 $(eval ${CHECK_FWU_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001796 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1797 ${Q}${FIPTOOL} info $@
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001798 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001799 @echo "Built $@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001800 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001801
Juan Castilloa3487d12015-08-18 14:23:04 +01001802fiptool: ${FIPTOOL}
1803fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001804fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001805
Pali Rohár54ff2132020-11-24 15:38:08 +01001806${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001807ifdef UNIX_MK
Lionel Debieve730bde82022-11-14 11:05:09 +01001808 ${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${FIPTOOLPATH} all
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001809else
1810# Clear the MAKEFLAGS as we do not want
1811# to pass the gnumake flags to nmake.
1812 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001813endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001814
Pali Rohár54ff2132020-11-24 15:38:08 +01001815romlib.bin: libraries FORCE
John Tsichritzisf6ea99b2019-05-21 15:47:37 +01001816 ${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 Vargase92111a2018-05-22 16:05:42 +01001817
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001818memmap: all
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001819ifdef UNIX_MK
1820 ${Q}PYTHONPATH=${CURDIR}/tools/memory \
1821 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1822else
1823 ${Q}set PYTHONPATH=${CURDIR}/tools/memory && \
1824 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1825endif
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001826
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001827doc:
1828 @echo " BUILD DOCUMENTATION"
1829 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1830
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301831enctool: ${ENCTOOL}
1832
Pali Rohár54ff2132020-11-24 15:38:08 +01001833${ENCTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001834 ${Q}${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${ENCTOOLPATH} all
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301835 @${ECHO_BLANK_LINE}
1836 @echo "Built $@ successfully"
1837 @${ECHO_BLANK_LINE}
1838
Joakim Bech35fab8c2014-01-23 14:51:49 +01001839cscope:
1840 @echo " CSCOPE"
1841 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1842 ${Q}cscope -b -q -k
1843
Ryan Harkin72ee3312014-01-15 16:55:07 +00001844help:
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001845 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001846 @echo ""
1847 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +00001848 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001849 @echo ""
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001850 @echo "platform = ${PLATFORM_LIST}"
1851 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001852 @echo "Please refer to the User Guide for a list of all supported options."
1853 @echo "Note that the build system doesn't track dependencies for build "
1854 @echo "options. Therefore, if any of the build options are changed "
1855 @echo "from a previous build, a clean build must be performed."
1856 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +00001857 @echo "Supported Targets:"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001858 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +00001859 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +00001860 @echo " bl2 Build the BL2 binary"
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001861 @echo " bl2u Build the BL2U binary"
Juan Castillo7d199412015-12-14 09:35:25 +00001862 @echo " bl31 Build the BL31 binary"
Soby Mathewa1941252016-05-05 14:33:33 +01001863 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1864 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castilloa3487d12015-08-18 14:23:04 +01001865 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001866 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochard1a93432015-10-12 12:33:47 +01001867 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +00001868 @echo " checkcodebase Check the coding style of the entire source tree"
1869 @echo " checkpatch Check the coding style on changes in the current"
1870 @echo " branch against BASE_COMMIT (default origin/master)"
1871 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +00001872 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +00001873 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001874 @echo " certtool Build the Certificate generation tool"
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301875 @echo " enctool Build the Firmware encryption tool"
Andreas Färberec82cfb2016-10-10 05:18:49 +02001876 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Manish Pandey3f90ad72020-01-14 11:52:05 +00001877 @echo " sp Build the Secure Partition Packages"
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001878 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathewab4181d2017-12-14 17:44:56 +00001879 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001880 @echo " memmap Print the memory map of the built binaries"
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001881 @echo " doc Build html based documentation using Sphinx tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001882 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001883 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +00001884 @echo ""
1885 @echo "example: build all targets for the FVP platform:"
1886 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001887
1888.PHONY: FORCE
1889FORCE:;