blob: 907ae21d4156b1265be80355370ca6a03d16c696 [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
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100373 ifneq (${ERRATA_A53_843419},1)
374 TF_LDFLAGS += -mno-fix-cortex-a53-843419
375 endif
376 TF_LDFLAGS += -nostdlib
377 TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100378
379# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekar4d034c52019-01-11 14:47:48 -0800380else
Marco Felsch24ad8402022-11-09 12:59:09 +0100381# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
382# are not loaded by a elf loader.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100383 TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
384 TF_LDFLAGS += -O1
385 TF_LDFLAGS += --gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000386
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100387 TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
388 TF_LDFLAGS += -z max-page-size=4096
Chris Kay73b1f402022-12-22 13:26:37 +0000389
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100390# ld.lld doesn't recognize the errata flags,
Yabin Cuied7dc512023-01-19 20:06:04 +0000391# therefore don't add those in that case.
392# ld.lld reports section type mismatch warnings,
393# therefore don't add --fatal-warnings to it.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100394 ifeq ($(findstring ld.lld,$(notdir $(LD))),)
395 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
396 endif
397
398endif #(LD = armlink)
Juan Castilloa3487d12015-08-18 14:23:04 +0100399
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000400DTC_FLAGS += -I dts -O dtb
Louis Mayencourt6b232d92020-02-28 16:57:30 +0000401DTC_CPPFLAGS += -P -nostdinc -Iinclude -Ifdts -undef \
402 -x assembler-with-cpp $(DEFINES)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000403
Juan Castilloa3487d12015-08-18 14:23:04 +0100404################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500405# Setup ARCH_MAJOR/MINOR before parsing arch_features.
406################################################################################
407ifeq (${ENABLE_RME},1)
408 ARM_ARCH_MAJOR := 8
409 ARM_ARCH_MINOR := 6
410endif
411
412################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100413# Common sources and include directories
414################################################################################
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000415include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
dp-arme3cc8382017-05-04 12:15:35 +0100416include lib/compiler-rt/compiler-rt.mk
Juan Castilloa3487d12015-08-18 14:23:04 +0100417
418BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100419 common/tf_log.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100420 common/${ARCH}/debug.S \
Julius Werner03020da2018-11-27 22:10:56 -0800421 drivers/console/multi_console.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100422 lib/${ARCH}/cache_helpers.S \
423 lib/${ARCH}/misc_helpers.S \
Boyan Karatotev05504ba2023-02-15 13:21:50 +0000424 lib/extensions/pmuv3/${ARCH}/pmuv3.c \
Soby Mathew2f38ce32018-02-08 17:45:12 +0000425 plat/common/plat_bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100426 plat/common/plat_log_common.c \
dp-arm230011c2017-03-07 11:02:47 +0000427 plat/common/${ARCH}/plat_common.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100428 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas0f8f9852018-05-08 10:27:10 +0100429 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000430
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100431ifeq ($(notdir $(CC)),armclang)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100432 BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100433endif
434
Justin Chadwell83e04882019-08-20 11:01:52 +0100435ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100436 BL_COMMON_SOURCES += plat/common/ubsan.c
Justin Chadwell83e04882019-08-20 11:01:52 +0100437endif
438
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200439INCLUDES += -Iinclude \
Antonio Nino Diaz8d1ade62018-12-17 17:20:57 +0000440 -Iinclude/arch/${ARCH} \
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000441 -Iinclude/lib/cpus/${ARCH} \
442 -Iinclude/lib/el3_runtime/${ARCH} \
443 ${PLAT_INCLUDES} \
444 ${SPD_INCLUDES}
445
Antonio Nino Diazc3a2cf22018-11-19 11:48:30 +0000446include common/backtrace/backtrace.mk
447
Juan Castilloa3487d12015-08-18 14:23:04 +0100448################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500449# Process BRANCH_PROTECTION value and set
450# Pointer Authentication and Branch Target Identification flags
451################################################################################
452ifeq (${BRANCH_PROTECTION},0)
453 # Default value turns off all types of branch protection
454 BP_OPTION := none
455else ifneq (${ARCH},aarch64)
456 $(error BRANCH_PROTECTION requires AArch64)
457else ifeq (${BRANCH_PROTECTION},1)
458 # Enables all types of branch protection features
459 BP_OPTION := standard
460 ENABLE_BTI := 1
461 ENABLE_PAUTH := 1
462else ifeq (${BRANCH_PROTECTION},2)
463 # Return address signing to its standard level
464 BP_OPTION := pac-ret
465 ENABLE_PAUTH := 1
466else ifeq (${BRANCH_PROTECTION},3)
467 # Extend the signing to include leaf functions
468 BP_OPTION := pac-ret+leaf
469 ENABLE_PAUTH := 1
470else ifeq (${BRANCH_PROTECTION},4)
471 # Turn on branch target identification mechanism
472 BP_OPTION := bti
473 ENABLE_BTI := 1
474else
475 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
476endif #(BRANCH_PROTECTION)
477
478ifeq ($(ENABLE_PAUTH),1)
479 CTX_INCLUDE_PAUTH_REGS := 1
480endif
481ifneq (${BP_OPTION},none)
482 TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
483endif #(BP_OPTION)
484
485# Pointer Authentication sources
486ifeq (${ENABLE_PAUTH}, 1)
487# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
488# Pauth support. As it's not secure, it must be reimplemented for real platforms
489 BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
490endif
491
492####################################################
493# Enable required options for Memory Stack Tagging.
494####################################################
495
496# Currently, these options are enabled only for clang and armclang compiler.
497ifeq (${SUPPORT_STACK_MEMTAG},yes)
498 ifdef mem_tag_arch_support
499 # Check for armclang and clang compilers
500 ifneq ( ,$(filter $(notdir $(CC)),armclang clang))
501 # Add "memtag" architecture feature modifier if not specified
502 ifeq ( ,$(findstring memtag,$(arch-features)))
503 arch-features := $(arch-features)+memtag
504 endif # memtag
505 ifeq ($(notdir $(CC)),armclang)
506 TF_CFLAGS += -mmemtag-stack
507 else ifeq ($(notdir $(CC)),clang)
508 TF_CFLAGS += -fsanitize=memtag
509 endif # armclang
510 endif
511 else
512 $(error "Error: stack memory tagging is not supported for \
513 architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
514 endif #(mem_tag_arch_support)
515endif #(SUPPORT_STACK_MEMTAG)
516
517################################################################################
518# RME dependent flags configuration, Enable optional features for RME.
519################################################################################
520# FEAT_RME
521ifeq (${ENABLE_RME},1)
522 # RME doesn't support PIE
523 ifneq (${ENABLE_PIE},0)
524 $(error ENABLE_RME does not support PIE)
525 endif
526
527 # RME doesn't support BRBE
528 ifneq (${ENABLE_BRBE_FOR_NS},0)
529 $(error ENABLE_RME does not support BRBE.)
530 endif
531
532 # RME requires AARCH64
533 ifneq (${ARCH},aarch64)
534 $(error ENABLE_RME requires AArch64)
535 endif
536
537 # RME requires el2 context to be saved for now.
538 CTX_INCLUDE_EL2_REGS := 1
539 CTX_INCLUDE_AARCH32_REGS := 0
540 CTX_INCLUDE_PAUTH_REGS := 1
541
542 # RME enables CSV2_2 extension by default.
543 ENABLE_FEAT_CSV2_2 = 1
544endif #(FEAT_RME)
545
546################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100547# Generic definitions
548################################################################################
Evan Lloydf2697142015-12-02 18:17:37 +0000549include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
550
Grant Likely388248a2020-07-30 08:50:10 +0100551ifeq (${BUILD_BASE},)
552 BUILD_BASE := ./build
553endif
554BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
Achin Gupta4f6ad662013-10-25 09:08:21 +0100555
Evan Lloydf2697142015-12-02 18:17:37 +0000556SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
Ryan Harkin72ee3312014-01-15 16:55:07 +0000557
Juan Castilloa3487d12015-08-18 14:23:04 +0100558# Platforms providing their own TBB makefile may override this value
559INCLUDE_TBBR_MK := 1
560
Juan Castilloa3487d12015-08-18 14:23:04 +0100561################################################################################
562# Include SPD Makefile if one has been specified
563################################################################################
564
565ifneq (${SPD},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100566 ifeq (${ARCH},aarch32)
567 $(error "Error: SPD is incompatible with AArch32.")
568 endif
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000569
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100570 ifdef EL3_PAYLOAD_BASE
571 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
572 $(warning "The SPD and its BL32 companion will be present but \
573 ignored.")
574 endif
Achin Gupta60b7b8a2019-10-11 15:50:43 +0100575
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100576 ifeq (${SPD},spmd)
577 # SPMD is located in std_svc directory
578 SPD_DIR := std_svc
Juan Castilloa3487d12015-08-18 14:23:04 +0100579
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100580 ifeq ($(SPMD_SPM_AT_SEL2),1)
581 CTX_INCLUDE_EL2_REGS := 1
582 ifeq ($(SPMC_AT_EL3),1)
583 $(error SPM cannot be enabled in both S-EL2 and EL3.)
584 endif
585 endif
Olivier Deprezbcaa0682020-04-01 21:28:26 +0200586
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100587 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
588 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
589 endif
Davidson K9a949142021-03-10 12:07:15 +0530590
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100591 ifeq ($(TS_SP_FW_CONFIG),1)
592 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
593 endif
Balint Dobszay9f689762021-03-26 15:19:11 +0100594
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100595 ifneq ($(ARM_BL2_SP_LIST_DTS),)
596 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
597 endif
Balint Dobszay719ba9c2021-03-26 16:23:18 +0100598
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100599 ifneq ($(SP_LAYOUT_FILE),)
600 BL2_ENABLE_SP_LOAD := 1
601 endif
Nishant Sharma9e719112023-06-27 00:36:01 +0100602
603 ifeq ($(SPMC_AT_EL3_SEL0_SP),1)
604 ifneq ($(SPMC_AT_EL3),1)
605 $(error SEL0 SP cannot be enabled without SPMC at EL3)
606 endif
607 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100608 else
609 # All other SPDs in spd directory
610 SPD_DIR := spd
611 endif #(SPD)
Juan Castilloa3487d12015-08-18 14:23:04 +0100612
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100613 # We expect to locate an spd.mk under the specified SPD directory
614 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000615
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100616 ifeq (${SPD_MAKE},)
617 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
618 endif
619 $(info Including ${SPD_MAKE})
620 include ${SPD_MAKE}
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000621
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100622 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
623 # Makefile would set NEED_BL32 to "yes". In this case, the build system
624 # supports two mutually exclusive options:
625 # * BL32 is built from source: then BL32_SOURCES must contain the list
626 # of source files to build BL32
627 # * BL32 is a prebuilt binary: then BL32 must point to the image file
628 # that will be included in the FIP
629 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
630 # over the sources.
631endif #(SPD=none)
Juan Castilloa3487d12015-08-18 14:23:04 +0100632
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -0800633ifeq (${ENABLE_SPMD_LP}, 1)
634ifneq (${SPD},spmd)
635 $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
636endif
637ifeq ($(SPMC_AT_EL3),1)
638 $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
639endif
640endif
641
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000642ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100643 ifeq (${SPD},none)
644 ifeq (${ENABLE_RME},0)
645 $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
646 or RME is enabled)
647 endif
648 endif
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000649endif
650
Douglas Raillard306593d2017-02-24 18:14:15 +0000651################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500652# Include rmmd Makefile if RME is enabled
653################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500654ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100655 ifneq (${ARCH},aarch64)
656 $(error ENABLE_RME requires AArch64)
657 endif
658 ifeq ($(SPMC_AT_EL3),1)
659 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
660 endif
661
662 ifneq (${SPD}, none)
663 ifneq (${SPD}, spmd)
664 $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
665 endif
666 endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500667include services/std_svc/rmmd/rmmd.mk
668$(warning "RME is an experimental feature")
669endif
670
671################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100672# Include the platform specific Makefile after the SPD Makefile (the platform
673# makefile may use all previous definitions in this file)
674################################################################################
Jeenu Viswambharane5c39fd2014-05-16 11:38:10 +0100675
Dan Handley81be1002015-03-27 17:44:35 +0000676include ${PLAT_MAKEFILE_FULL}
Jon Medhurst66573cb2014-02-13 15:19:28 +0000677
Govindraj Raja69096412023-06-01 16:29:16 -0500678################################################################################
679# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
680# up with appropriate march values for compiler.
681################################################################################
682include ${MAKE_HELPERS_DIRECTORY}march.mk
683
684TF_CFLAGS += $(march-directive)
685
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600686# This internal flag is common option which is set to 1 for scenarios
687# when the BL2 is running in EL3 level. This occurs in two scenarios -
688# 4 world system running BL2 at EL3 and two world system without BL1 running
689# BL2 in EL3
690
691ifeq (${RESET_TO_BL2},1)
692 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100693 ifeq (${ENABLE_RME},1)
694 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
695 supported at the moment.)
696 endif
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600697else ifeq (${ENABLE_RME},1)
698 BL2_RUNS_AT_EL3 := 1
699else
700 BL2_RUNS_AT_EL3 := 0
701endif
702
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900703$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
704
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100705ifeq (${ARM_ARCH_MAJOR},7)
706include make_helpers/armv7-a-cpus.mk
707endif
708
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900709PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
710ifneq ($(PIE_FOUND),)
711 TF_CFLAGS += -fno-PIE
Samuel Holland9286c022022-04-08 21:56:02 -0500712ifneq ($(findstring gcc,$(notdir $(LD))),)
713 TF_LDFLAGS += -no-pie
714endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100715endif #(PIE_FOUND)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900716
717ifneq ($(findstring gcc,$(notdir $(LD))),)
718 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100719else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900720 PIE_LDFLAGS += -pie --no-dynamic-linker
721endif
722
723ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100724 ifeq ($(RESET_TO_BL2),1)
725 ifneq ($(BL2_IN_XIP_MEM),1)
726 BL2_CPPFLAGS += -fpie
727 BL2_CFLAGS += -fpie
728 BL2_LDFLAGS += $(PIE_LDFLAGS)
729 endif #(BL2_IN_XIP_MEM)
730 endif #(RESET_TO_BL2)
Chris Kay13886c82023-02-02 14:39:03 +0000731 BL31_CPPFLAGS += -fpie
732 BL31_CFLAGS += -fpie
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900733 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay13886c82023-02-02 14:39:03 +0000734
735 BL32_CPPFLAGS += -fpie
Masahiro Yamadade634f82020-01-17 13:45:14 +0900736 BL32_CFLAGS += -fpie
737 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100738endif #(ENABLE_PIE)
Soby Mathew078f1a42018-08-28 11:13:55 +0100739
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000740BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
741BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
742BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
743
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900744BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600745ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100746 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900747else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100748 BL2_CPPFLAGS += -DIMAGE_AT_EL1
749endif #(RESET_TO_BL2)
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000750
751ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100752 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
753 BL31_CPPFLAGS += -DIMAGE_AT_EL3
754 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000755else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100756 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900757endif
758
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000759# Include the CPU specific operations makefile, which provides default
760# values for all CPU errata workarounds and CPU specific optimisations.
761# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100762include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100763
dp-armcdd03cb2017-02-15 11:07:55 +0000764################################################################################
765# Build `AARCH32_SP` as BL32 image for AArch32
766################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100767ifeq (${ARCH},aarch32)
768 NEED_BL32 := yes
dp-armcdd03cb2017-02-15 11:07:55 +0000769
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100770 ifneq (${AARCH32_SP},none)
771 # We expect to locate an sp.mk under the specified AARCH32_SP directory
772 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-armcdd03cb2017-02-15 11:07:55 +0000773
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100774 ifeq (${AARCH32_SP_MAKE},)
775 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
776 endif
Juan Pablo Conde6aba3b12023-08-09 13:19:21 -0500777 $(info Including ${AARCH32_SP_MAKE})
778 include ${AARCH32_SP_MAKE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100779 endif
780endif #(ARCH=aarch32)
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800781
782################################################################################
783# Include libc if not overridden
784################################################################################
785ifeq (${OVERRIDE_LIBC},0)
786include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000787endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100788
789################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100790# Check incompatible options and dependencies
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000791################################################################################
792
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100793# USE_DEBUGFS experimental feature recommended only in debug builds
794ifeq (${USE_DEBUGFS},1)
795 ifeq (${DEBUG},1)
796 $(warning DEBUGFS experimental feature is enabled.)
797 else
798 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800799 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100800endif #(USE_DEBUGFS)
801
802# USE_SPINLOCK_CAS requires AArch64 build
803ifeq (${USE_SPINLOCK_CAS},1)
804 ifneq (${ARCH},aarch64)
805 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800806 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100807endif #(USE_SPINLOCK_CAS)
808
809# The cert_create tool cannot generate certificates individually, so we use the
810# target 'certificates' to create them all
811ifneq (${GENERATE_COT},0)
812 FIP_DEPS += certificates
813 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000814endif
815
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100816ifneq (${DECRYPTION_SUPPORT},none)
817 ENC_ARGS += -f ${FW_ENC_STATUS}
818 ENC_ARGS += -k ${ENC_KEY}
819 ENC_ARGS += -n ${ENC_NONCE}
820 FIP_DEPS += enctool
821 FWU_FIP_DEPS += enctool
822endif #(DECRYPTION_SUPPORT)
823
824ifdef EL3_PAYLOAD_BASE
825 ifdef PRELOADED_BL33_BASE
826 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
827 incompatible build options. EL3_PAYLOAD_BASE has priority.")
828 endif
829 ifneq (${GENERATE_COT},0)
830 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
831 build options.")
832 endif
833 ifneq (${TRUSTED_BOARD_BOOT},0)
834 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
835 incompatible \ build options.")
836 endif
837endif #(EL3_PAYLOAD_BASE)
838
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000839ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100840 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000841 $(warning "BL33 image is not needed when option \
842 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100843 endif
844 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100845 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100846 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
847 endif
848endif #(NEED_BL33)
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000849
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000850# When building for systems with hardware-assisted coherency, there's no need to
851# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
852ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100853 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000854endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100855
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600856#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
857ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100858 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000859endif
860
Manish Pandeyd419e222023-02-13 12:39:17 +0000861# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100862ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100863 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
864 and RAS_FFH_SUPPORT instead")
Manish Pandeyd419e222023-02-13 12:39:17 +0000865endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100866
Manish Pandeyd419e222023-02-13 12:39:17 +0000867# RAS firmware first handling requires that EAs are handled in EL3 first
868ifeq ($(RAS_FFH_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100869 ifneq ($(ENABLE_FEAT_RAS),1)
870 $(error For RAS_FFH_SUPPORT, ENABLE_FEAT_RAS must also be 1)
871 endif
872 ifneq ($(HANDLE_EA_EL3_FIRST_NS),1)
873 $(error For RAS_FFH_SUPPORT, HANDLE_EA_EL3_FIRST_NS must also be 1)
874 endif
875endif #(RAS_FFH_SUPPORT)
876
Manish Pandeyd419e222023-02-13 12:39:17 +0000877# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000878ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100879 ifeq ($(ENABLE_FEAT_RAS),0)
880 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
881 endif
882endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000883
Roberto Vargas025946a2018-09-24 17:20:48 +0100884# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100885ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100886 ifeq (${TRUSTED_BOARD_BOOT}, 0)
887 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
888 to be set.")
889 endif
890endif #(DYN_DISABLE_AUTH)
Soby Mathew9fe88042018-03-26 12:43:37 +0100891
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100892ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
893# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100894 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100895else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
896# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100897 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100898else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
899# Support hash calculation only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100900 CRYPTO_SUPPORT := 2
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100901else ifeq (${TRUSTED_BOARD_BOOT},1)
902# Support authentication verification only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100903 CRYPTO_SUPPORT := 1
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000904else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100905 CRYPTO_SUPPORT := 0
906endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000907
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +0100908# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
909ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100910 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +0100911endif
912
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000913# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100914# registers associated to it are also saved and restored.
915# 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 +0000916ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100917 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
918 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
919 endif
920endif #(ENABLE_PAUTH)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100921
922ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100923 ifneq (${ARCH},aarch64)
924 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
925 endif
926endif #(CTX_INCLUDE_PAUTH_REGS)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000927
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100928ifeq ($(CTX_INCLUDE_MTE_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100929 ifneq (${ARCH},aarch64)
930 $(error CTX_INCLUDE_MTE_REGS requires AArch64)
931 endif
932endif #(CTX_INCLUDE_MTE_REGS)
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100933
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100934ifeq ($(PSA_FWU_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100935 $(info PSA_FWU_SUPPORT is an experimental feature)
936endif #(PSA_FWU_SUPPORT)
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100937
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000938ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100939 $(info FEATURE_DETECTION is an experimental feature)
940endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000941
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000942ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100943 ifeq (${ENABLE_SME_FOR_NS}, 0)
944 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
945 to be set")
946 $(warning "Forced ENABLE_SME_FOR_NS=1")
947 override ENABLE_SME_FOR_NS := 1
948 endif
949endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000950
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000951ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100952 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
953 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
954 library v2")
955 endif
956endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000957
Sumit Garg392e4df2019-11-15 10:43:00 +0530958ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100959 ifeq (${TRUSTED_BOARD_BOOT}, 0)
960 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
961 to be set)
962 endif
963endif #(DECRYPTION_SUPPORT)
Sumit Garg392e4df2019-11-15 10:43:00 +0530964
johpow0181865962022-01-28 17:06:20 -0600965# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -0500966ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -0600967
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100968 # SME/SVE only supported on AArch64
969 ifneq (${ENABLE_SME_FOR_NS},0)
970 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
971 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000972
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100973 ifeq (${ENABLE_SVE_FOR_NS},1)
974 # Warning instead of error due to CI dependency on this
975 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
976 endif
johpow0181865962022-01-28 17:06:20 -0600977
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100978 # BRBE is not supported in AArch32
979 ifeq (${ENABLE_BRBE_FOR_NS},1)
980 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
981 endif
johpow0181865962022-01-28 17:06:20 -0600982
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100983 # FEAT_RNG_TRAP is not supported in AArch32
984 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
985 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
986 endif
987endif #(ARCH=aarch32)
johpow019baade32021-07-08 14:14:00 -0500988
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000989ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100990 ifeq (${ENABLE_SVE_FOR_NS},0)
991 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
992 endif
993endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000994
johpow019baade32021-07-08 14:14:00 -0500995# Secure SME/SVE requires the non-secure component as well
996ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100997 ifeq (${ENABLE_SME_FOR_NS},0)
998 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
999 endif
1000 ifeq (${ENABLE_SVE_FOR_SWD},0)
1001 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
1002 endif
1003endif #(ENABLE_SME_FOR_SWD)
1004
johpow019baade32021-07-08 14:14:00 -05001005ifeq (${ENABLE_SVE_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001006 ifeq (${ENABLE_SVE_FOR_NS},0)
1007 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
1008 endif
1009endif #(ENABLE_SVE_FOR_SWD)
johpow019baade32021-07-08 14:14:00 -05001010
1011# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
1012# its own context management including FPU registers.
1013ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001014 ifneq (${ENABLE_SME_FOR_NS},0)
1015 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1016 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001017
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001018 ifeq (${ENABLE_SVE_FOR_NS},1)
1019 # Warning instead of error due to CI dependency on this
1020 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1021 $(warning "Forced ENABLE_SVE_FOR_NS=0")
1022 override ENABLE_SVE_FOR_NS := 0
1023 endif
1024endif #(CTX_INCLUDE_FPREGS)
johpow019baade32021-07-08 14:14:00 -05001025
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001026ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001027 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001028endif
1029
Raymond Mao98983392023-07-25 07:53:35 -07001030ifeq (${TRANSFER_LIST},1)
1031 $(info TRANSFER_LIST is an experimental feature)
1032endif
1033
Chris Kayd02c2312022-09-29 16:21:24 +01001034ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001035 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1036 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1037 endif
Chris Kayd02c2312022-09-29 16:21:24 +01001038endif
1039
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001040# Determine if FEAT_RNG is supported
1041ENABLE_FEAT_RNG = $(if $(findstring rng,${arch-features}),1,0)
1042
1043# Determine if FEAT_SB is supported
1044ENABLE_FEAT_SB = $(if $(findstring sb,${arch-features}),1,0)
1045
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001046ifeq ($(PSA_CRYPTO),1)
1047 $(info PSA_CRYPTO is an experimental feature)
1048endif
1049
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001050################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001051# Process platform overrideable behaviour
1052################################################################################
1053
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001054ifdef BL1_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001055 NEED_BL1 := yes
1056endif #(BL1_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001057
Jon Medhurst66573cb2014-02-13 15:19:28 +00001058ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001059 NEED_BL2 := yes
1060
1061 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1062 # Certificate generation tools. This flag can be overridden by the platform.
1063 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001064 # If booting an EL3 payload there is no need for a BL33 image
1065 # in the FIP file.
1066 NEED_BL33 := no
1067 else
1068 ifdef PRELOADED_BL33_BASE
1069 # If booting a BL33 preloaded image there is no need of
1070 # another one in the FIP file.
1071 NEED_BL33 := no
1072 else
1073 NEED_BL33 ?= yes
1074 endif
1075 endif
1076endif #(BL2_SOURCES)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001077
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001078ifdef BL2U_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001079 NEED_BL2U := yes
1080endif #(BL2U_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001081
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001082# If SCP_BL2 is given, we always want FIP to include it.
1083ifdef SCP_BL2
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001084 NEED_SCP_BL2 := yes
1085endif #(SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001086
Soby Mathewbf169232017-11-14 14:10:10 +00001087# For AArch32, BL31 is not currently supported.
1088ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001089 ifdef BL31_SOURCES
1090 # When booting an EL3 payload, there is no need to compile the BL31
1091 # image nor put it in the FIP.
1092 ifndef EL3_PAYLOAD_BASE
1093 NEED_BL31 := yes
1094 endif
1095 endif
1096endif #(ARCH=aarch64)
Soby Mathewbf169232017-11-14 14:10:10 +00001097
Juan Castilloa3487d12015-08-18 14:23:04 +01001098# Process TBB related flags
1099ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001100 # Common cert_create options
1101 ifneq (${CREATE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001102 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001103 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001104 ifneq (${SAVE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001105 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001106 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001107 endif
1108 endif
1109 # Include TBBR makefile (unless the platform indicates otherwise)
1110 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castilloa3487d12015-08-18 14:23:04 +01001111 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001112 endif
1113endif #(GENERATE_COT)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001114
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001115ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001116 FIP_ARGS += --align ${FIP_ALIGN}
1117endif #(FIP_ALIGN)
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001118
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001119ifdef FDT_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001120 NEED_FDT := yes
1121endif #(FDT_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001122
Juan Castilloa3487d12015-08-18 14:23:04 +01001123################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +08001124# Include libraries' Makefile that are used in all BL
1125################################################################################
1126
1127include lib/stack_protector/stack_protector.mk
1128
1129################################################################################
Soby Mathew574e01e2017-02-14 10:05:07 +00001130# Include BL specific makefiles
1131################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001132
1133ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001134include bl1/bl1.mk
1135endif
1136
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001137ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001138include bl2/bl2.mk
1139endif
1140
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001141ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001142include bl2u/bl2u.mk
1143endif
1144
Soby Mathewbf169232017-11-14 14:10:10 +00001145ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001146include bl31/bl31.mk
1147endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001148
Soby Mathew574e01e2017-02-14 10:05:07 +00001149################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001150# Build options checks
1151################################################################################
1152
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001153# Boolean_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001154$(eval $(call assert_booleans,\
1155 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001156 ALLOW_RO_XLAT_TABLES \
1157 BL2_ENABLE_SP_LOAD \
1158 COLD_BOOT_SINGLE_CPU \
1159 CREATE_KEYS \
1160 CTX_INCLUDE_AARCH32_REGS \
1161 CTX_INCLUDE_FPREGS \
1162 CTX_INCLUDE_EL2_REGS \
1163 DEBUG \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001164 DYN_DISABLE_AUTH \
1165 EL3_EXCEPTION_HANDLING \
1166 ENABLE_AMU_AUXILIARY_COUNTERS \
1167 ENABLE_AMU_FCONF \
1168 AMU_RESTRICT_COUNTERS \
1169 ENABLE_ASSERTIONS \
1170 ENABLE_FEAT_SB \
1171 ENABLE_PIE \
1172 ENABLE_PMF \
1173 ENABLE_PSCI_STAT \
1174 ENABLE_RUNTIME_INSTRUMENTATION \
1175 ENABLE_SME_FOR_SWD \
1176 ENABLE_SVE_FOR_SWD \
1177 ERROR_DEPRECATED \
1178 FAULT_INJECTION_SUPPORT \
1179 GENERATE_COT \
1180 GICV2_G0_FOR_EL3 \
1181 HANDLE_EA_EL3_FIRST_NS \
1182 HW_ASSISTED_COHERENCY \
1183 MEASURED_BOOT \
1184 DRTM_SUPPORT \
1185 NS_TIMER_SWITCH \
1186 OVERRIDE_LIBC \
1187 PL011_GENERIC_UART \
1188 PLAT_RSS_NOT_SUPPORTED \
1189 PROGRAMMABLE_RESET_ADDRESS \
1190 PSCI_EXTENDED_STATE_ID \
1191 PSCI_OS_INIT_MODE \
1192 RESET_TO_BL31 \
1193 SAVE_KEYS \
1194 SEPARATE_CODE_AND_RODATA \
1195 SEPARATE_BL2_NOLOAD_REGION \
1196 SEPARATE_NOBITS_REGION \
1197 SPIN_ON_BL1_EXIT \
1198 SPM_MM \
1199 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001200 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001201 SPMD_SPM_AT_SEL2 \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001202 ENABLE_SPMD_LP \
Raymond Mao98983392023-07-25 07:53:35 -07001203 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001204 TRUSTED_BOARD_BOOT \
1205 USE_COHERENT_MEM \
1206 USE_DEBUGFS \
1207 ARM_IO_IN_DTB \
1208 SDEI_IN_FCONF \
1209 SEC_INT_DESC_IN_FCONF \
1210 USE_ROMLIB \
1211 USE_TBBR_DEFS \
1212 WARMBOOT_ENABLE_DCACHE_EARLY \
1213 RESET_TO_BL2 \
1214 BL2_IN_XIP_MEM \
1215 BL2_INV_DCACHE \
1216 USE_SPINLOCK_CAS \
1217 ENCRYPT_BL31 \
1218 ENCRYPT_BL32 \
1219 ERRATA_SPECULATIVE_AT \
1220 RAS_TRAP_NS_ERR_REC_ACCESS \
1221 COT_DESC_IN_DTB \
1222 USE_SP804_TIMER \
1223 PSA_FWU_SUPPORT \
1224 ENABLE_MPMM \
1225 ENABLE_MPMM_FCONF \
1226 FEATURE_DETECTION \
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +01001227 TRNG_SUPPORT \
Sona Mathew7fe03522022-11-18 18:05:38 -06001228 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001229 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001230 CONDITIONAL_CMO \
Manish Pandeyd419e222023-02-13 12:39:17 +00001231 RAS_FFH_SUPPORT \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001232 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001233 ENABLE_CONSOLE_GETC \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001234)))
Dan Handley81be1002015-03-27 17:44:35 +00001235
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001236# Numeric_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001237$(eval $(call assert_numerics,\
1238 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001239 ARM_ARCH_MAJOR \
1240 ARM_ARCH_MINOR \
1241 BRANCH_PROTECTION \
1242 CTX_INCLUDE_PAUTH_REGS \
1243 CTX_INCLUDE_MTE_REGS \
1244 CTX_INCLUDE_NEVE_REGS \
1245 CRYPTO_SUPPORT \
Boyan Karatotev677ed8a2023-02-16 09:45:29 +00001246 DISABLE_MTPMU \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001247 ENABLE_BRBE_FOR_NS \
1248 ENABLE_TRBE_FOR_NS \
1249 ENABLE_BTI \
1250 ENABLE_PAUTH \
1251 ENABLE_FEAT_AMU \
1252 ENABLE_FEAT_AMUv1p1 \
1253 ENABLE_FEAT_CSV2_2 \
1254 ENABLE_FEAT_RAS \
1255 ENABLE_FEAT_DIT \
1256 ENABLE_FEAT_ECV \
1257 ENABLE_FEAT_FGT \
1258 ENABLE_FEAT_HCX \
1259 ENABLE_FEAT_PAN \
1260 ENABLE_FEAT_RNG \
1261 ENABLE_FEAT_RNG_TRAP \
1262 ENABLE_FEAT_SEL2 \
1263 ENABLE_FEAT_TCR2 \
1264 ENABLE_FEAT_S2PIE \
1265 ENABLE_FEAT_S1PIE \
1266 ENABLE_FEAT_S2POE \
1267 ENABLE_FEAT_S1POE \
1268 ENABLE_FEAT_GCS \
1269 ENABLE_FEAT_VHE \
Maksims Svecovsdf4ad842023-03-24 13:05:09 +00001270 ENABLE_FEAT_MTE_PERM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001271 ENABLE_MPAM_FOR_LOWER_ELS \
1272 ENABLE_RME \
1273 ENABLE_SPE_FOR_NS \
1274 ENABLE_SYS_REG_TRACE_FOR_NS \
1275 ENABLE_SME_FOR_NS \
1276 ENABLE_SME2_FOR_NS \
1277 ENABLE_SVE_FOR_NS \
1278 ENABLE_TRF_FOR_NS \
1279 FW_ENC_STATUS \
1280 NR_OF_FW_BANKS \
1281 NR_OF_IMAGES_IN_FW_BANK \
1282 TWED_DELAY \
1283 ENABLE_FEAT_TWED \
1284 SVE_VECTOR_LEN \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001285 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001286)))
Jeenu Viswambharanfca76802017-01-16 16:52:35 +00001287
Justin Chadwellf9b32c12019-07-29 17:13:10 +01001288ifdef KEY_SIZE
1289 $(eval $(call assert_numeric,KEY_SIZE))
1290endif
1291
Justin Chadwell83e04882019-08-20 11:01:52 +01001292ifeq ($(filter $(SANITIZE_UB), on off trap),)
1293 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1294endif
1295
Juan Castilloa3487d12015-08-18 14:23:04 +01001296################################################################################
1297# Add definitions to the cpp preprocessor based on the current build options.
1298# This is done after including the platform specific makefile to allow the
1299# platform to overwrite the default options
1300################################################################################
Jeenu Viswambharand1b60152014-05-12 15:28:47 +01001301
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001302$(eval $(call add_defines,\
1303 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001304 ALLOW_RO_XLAT_TABLES \
1305 ARM_ARCH_MAJOR \
1306 ARM_ARCH_MINOR \
1307 BL2_ENABLE_SP_LOAD \
1308 COLD_BOOT_SINGLE_CPU \
1309 CTX_INCLUDE_AARCH32_REGS \
1310 CTX_INCLUDE_FPREGS \
1311 CTX_INCLUDE_PAUTH_REGS \
1312 EL3_EXCEPTION_HANDLING \
1313 CTX_INCLUDE_MTE_REGS \
1314 CTX_INCLUDE_EL2_REGS \
1315 CTX_INCLUDE_NEVE_REGS \
1316 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1317 DISABLE_MTPMU \
1318 ENABLE_FEAT_AMU \
1319 ENABLE_AMU_AUXILIARY_COUNTERS \
1320 ENABLE_AMU_FCONF \
1321 AMU_RESTRICT_COUNTERS \
1322 ENABLE_ASSERTIONS \
1323 ENABLE_BTI \
1324 ENABLE_MPAM_FOR_LOWER_ELS \
1325 ENABLE_PAUTH \
1326 ENABLE_PIE \
1327 ENABLE_PMF \
1328 ENABLE_PSCI_STAT \
1329 ENABLE_RME \
1330 ENABLE_RUNTIME_INSTRUMENTATION \
1331 ENABLE_SME_FOR_NS \
1332 ENABLE_SME2_FOR_NS \
1333 ENABLE_SME_FOR_SWD \
1334 ENABLE_SPE_FOR_NS \
1335 ENABLE_SVE_FOR_NS \
1336 ENABLE_SVE_FOR_SWD \
1337 ENCRYPT_BL31 \
1338 ENCRYPT_BL32 \
1339 ERROR_DEPRECATED \
1340 FAULT_INJECTION_SUPPORT \
1341 GICV2_G0_FOR_EL3 \
1342 HANDLE_EA_EL3_FIRST_NS \
1343 HW_ASSISTED_COHERENCY \
1344 LOG_LEVEL \
1345 MEASURED_BOOT \
1346 DRTM_SUPPORT \
1347 NS_TIMER_SWITCH \
1348 PL011_GENERIC_UART \
1349 PLAT_${PLAT} \
1350 PLAT_RSS_NOT_SUPPORTED \
1351 PROGRAMMABLE_RESET_ADDRESS \
1352 PSCI_EXTENDED_STATE_ID \
1353 PSCI_OS_INIT_MODE \
1354 ENABLE_FEAT_RAS \
1355 RAS_FFH_SUPPORT \
1356 RESET_TO_BL31 \
1357 SEPARATE_CODE_AND_RODATA \
1358 SEPARATE_BL2_NOLOAD_REGION \
1359 SEPARATE_NOBITS_REGION \
1360 RECLAIM_INIT_CODE \
1361 SPD_${SPD} \
1362 SPIN_ON_BL1_EXIT \
1363 SPM_MM \
1364 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001365 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001366 SPMD_SPM_AT_SEL2 \
Raymond Mao98983392023-07-25 07:53:35 -07001367 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001368 TRUSTED_BOARD_BOOT \
1369 CRYPTO_SUPPORT \
1370 TRNG_SUPPORT \
1371 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001372 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001373 USE_COHERENT_MEM \
1374 USE_DEBUGFS \
1375 ARM_IO_IN_DTB \
1376 SDEI_IN_FCONF \
1377 SEC_INT_DESC_IN_FCONF \
1378 USE_ROMLIB \
1379 USE_TBBR_DEFS \
1380 WARMBOOT_ENABLE_DCACHE_EARLY \
1381 RESET_TO_BL2 \
1382 BL2_RUNS_AT_EL3 \
1383 BL2_IN_XIP_MEM \
1384 BL2_INV_DCACHE \
1385 USE_SPINLOCK_CAS \
1386 ERRATA_SPECULATIVE_AT \
1387 RAS_TRAP_NS_ERR_REC_ACCESS \
1388 COT_DESC_IN_DTB \
1389 USE_SP804_TIMER \
1390 ENABLE_FEAT_RNG \
1391 ENABLE_FEAT_RNG_TRAP \
1392 ENABLE_FEAT_SB \
1393 ENABLE_FEAT_DIT \
1394 NR_OF_FW_BANKS \
1395 NR_OF_IMAGES_IN_FW_BANK \
1396 PSA_FWU_SUPPORT \
1397 ENABLE_BRBE_FOR_NS \
1398 ENABLE_TRBE_FOR_NS \
1399 ENABLE_SYS_REG_TRACE_FOR_NS \
1400 ENABLE_TRF_FOR_NS \
1401 ENABLE_FEAT_HCX \
1402 ENABLE_MPMM \
1403 ENABLE_MPMM_FCONF \
1404 ENABLE_FEAT_FGT \
1405 ENABLE_FEAT_ECV \
1406 ENABLE_FEAT_AMUv1p1 \
1407 ENABLE_FEAT_SEL2 \
1408 ENABLE_FEAT_VHE \
1409 ENABLE_FEAT_CSV2_2 \
1410 ENABLE_FEAT_PAN \
1411 ENABLE_FEAT_TCR2 \
1412 ENABLE_FEAT_S2PIE \
1413 ENABLE_FEAT_S1PIE \
1414 ENABLE_FEAT_S2POE \
1415 ENABLE_FEAT_S1POE \
1416 ENABLE_FEAT_GCS \
Maksims Svecovsdf4ad842023-03-24 13:05:09 +00001417 ENABLE_FEAT_MTE_PERM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001418 FEATURE_DETECTION \
1419 TWED_DELAY \
1420 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001421 CONDITIONAL_CMO \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001422 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidanand23c2fe22023-04-26 15:57:30 +01001423 SVE_VECTOR_LEN \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001424 ENABLE_SPMD_LP \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001425 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001426 ENABLE_CONSOLE_GETC \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001427)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001428
Justin Chadwell83e04882019-08-20 11:01:52 +01001429ifeq (${SANITIZE_UB},trap)
1430 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001431endif #(SANITIZE_UB)
Justin Chadwell83e04882019-08-20 11:01:52 +01001432
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001433# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1434ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001435 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1436else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001437# Define the PRELOADED_BL33_BASE flag only if it is provided and
1438# EL3_PAYLOAD_BASE is not defined, as it has priority.
1439 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001440 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001441 endif
1442endif #(EL3_PAYLOAD_BASE)
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001443
Soby Mathew9fe88042018-03-26 12:43:37 +01001444# Define the DYN_DISABLE_AUTH flag only if set.
1445ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001446 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew9fe88042018-03-26 12:43:37 +01001447endif
1448
Varun Wadekar4d034c52019-01-11 14:47:48 -08001449ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001450 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekar4d034c52019-01-11 14:47:48 -08001451endif
1452
Manish Pandey3f90ad72020-01-14 11:52:05 +00001453# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001454ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001455ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001456 -include $(BUILD_PLAT)/sp_gen.mk
1457 FIP_DEPS += sp
1458 CRT_DEPS += sp
1459 NEED_SP_PKG := yes
Manish Pandey3f90ad72020-01-14 11:52:05 +00001460else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001461 ifeq (${SPMD_SPM_AT_SEL2},1)
1462 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1463 endif
1464endif #(SP_LAYOUT_FILE)
1465endif #(SPD)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001466
Juan Castilloa3487d12015-08-18 14:23:04 +01001467################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001468# Build targets
1469################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001470
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301471.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 +01001472.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001473
Juan Castilloa3487d12015-08-18 14:23:04 +01001474all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001475
Juan Castilloa3487d12015-08-18 14:23:04 +01001476msg_start:
1477 @echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001478
Soby Mathew18a62042015-10-26 14:29:21 +00001479ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001480# Check if deprecated declarations and cpp warnings should be treated as error or not.
Varun Wadekar4d034c52019-01-11 14:47:48 -08001481ifneq ($(findstring clang,$(notdir $(CC))),)
1482 CPPFLAGS += -Wno-error=deprecated-declarations
1483else
Dan Handley6fa89a22018-02-27 16:03:58 +00001484 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001485endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001486endif #(!ERROR_DEPRECATED)
Soby Mathew18a62042015-10-26 14:29:21 +00001487
Roberto Vargase92111a2018-05-22 16:05:42 +01001488$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001489$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001490
Juan Castilloa3487d12015-08-18 14:23:04 +01001491# Expand build macros for the different images
1492ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001493BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001494$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001495endif #(NEED_BL1)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001496
Juan Castilloa3487d12015-08-18 14:23:04 +01001497ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001498
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001499ifeq (${RESET_TO_BL2}, 0)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001500FIP_BL2_ARGS := tb-fw
1501endif
1502
Chris Kayfb3b0512021-09-28 15:44:37 +01001503BL2_SOURCES := $(sort ${BL2_SOURCES})
1504
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001505$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001506 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001507
1508endif #(NEED_BL2)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001509
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001510ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001511$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001512endif #(NEED_SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001513
Juan Castilloa3487d12015-08-18 14:23:04 +01001514ifeq (${NEED_BL31},yes)
1515BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001516# Sort BL31 source files to remove duplicates
1517BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301518ifneq (${DECRYPTION_SUPPORT},none)
1519$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001520 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301521else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001522$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001523 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001524endif #(DECRYPTION_SUPPORT)
1525endif #(NEED_BL31)
Juan Castillo379954c2014-11-04 17:36:40 +00001526
Juan Castillo671b8db2015-11-12 10:59:26 +00001527# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001528# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001529# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001530ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001531# Sort BL32 source files to remove duplicates
1532BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001533BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1534
Sumit Gargeec52442019-11-14 16:33:45 +05301535ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001536$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301537 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1538else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001539$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001540 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001541endif #(DECRYPTION_SUPPORT)
1542endif #(NEED_BL32)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001543
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001544# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1545# needs to be built from RMM_SOURCES.
1546ifeq (${NEED_RMM},yes)
1547# Sort RMM source files to remove duplicates
1548RMM_SOURCES := $(sort ${RMM_SOURCES})
1549BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1550
1551$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001552 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1553endif #(NEED_RMM)
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001554
Juan Castilloa3487d12015-08-18 14:23:04 +01001555# Add the BL33 image if required by the platform
1556ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001557$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001558endif #(NEED_BL33)
Juan Castillo9c25a402015-01-13 12:21:04 +00001559
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001560ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001561$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001562 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001563endif #(NEED_BL2U)
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001564
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001565# Expand build macros for the different images
1566ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001567 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001568endif #(NEED_FDT)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001569
Manish Pandey3f90ad72020-01-14 11:52:05 +00001570# Add Secure Partition packages
1571ifeq (${NEED_SP_PKG},yes)
Karl Meakinaba46182023-02-14 11:56:02 +00001572$(BUILD_PLAT)/sp_gen.mk : ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
1573 ${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
J-Alvesef8e0982022-03-22 16:28:51 +00001574sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001575 @${ECHO_BLANK_LINE}
1576 @echo "Built SP Images successfully"
1577 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001578endif #(NEED_SP_PKG)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001579
Ian Spray36eaaf32014-01-30 17:25:28 +00001580locate-checkpatch:
1581ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001582 $(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 +00001583else
1584ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001585 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001586endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001587endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001588
Achin Gupta4f6ad662013-10-25 09:08:21 +01001589clean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001590 @echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001591 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001592ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001593 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001594else
1595# Clear the MAKEFLAGS as we do not want
1596# to pass the gnumake flags to nmake.
1597 ${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 +01001598endif #(UNIX_MK)
Juan Castilloa3487d12015-08-18 14:23:04 +01001599 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301600 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
Roberto Vargase92111a2018-05-22 16:05:42 +01001601 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001602
James Morrisseyeaaeece2013-11-01 13:56:59 +00001603realclean distclean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001604 @echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001605 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1606 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001607ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001608 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001609else
1610# Clear the MAKEFLAGS as we do not want
1611# to pass the gnumake flags to nmake.
1612 ${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 +01001613endif #(UNIX_MK)
Nicolas Boulenguezdf612a52021-03-31 12:22:45 +02001614 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301615 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
Roberto Vargase92111a2018-05-22 16:05:42 +01001616 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001617
Ian Spray36eaaf32014-01-30 17:25:28 +00001618checkcodebase: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001619 @echo " CHECKING STYLE"
Dan Handley3a355712016-06-02 18:21:02 +01001620 @if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001621 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001622 while read GIT_FILE ; \
1623 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1624 done ; \
1625 else \
1626 find . -type f -not -iwholename "*.git*" \
1627 -not -iwholename "*build*" \
1628 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001629 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001630 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001631 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001632 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1633 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001634
1635checkpatch: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001636 @echo " CHECKING STYLE"
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001637 @if test -n "${CHECKPATCH_OPTS}"; then \
1638 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1639 fi
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001640 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001641 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1642 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001643 printf "\n[*] Checking style of '$$commit'\n\n"; \
1644 git log --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001645 -- ${CHECK_PATHS} | \
1646 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001647 git diff --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001648 -- ${CHECK_PATHS} | \
1649 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001650 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001651
1652certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001653
Pali Rohár54ff2132020-11-24 15:38:08 +01001654${CRTTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001655 ${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 +00001656 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001657 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001658 @${ECHO_BLANK_LINE}
Jon Medhurst407a95c2014-02-12 15:54:48 +00001659
Juan Castillo11abdcd2014-10-21 11:30:42 +01001660ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001661certificates: ${CRT_DEPS} ${CRTTOOL}
1662 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001663 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001664 @echo "Built $@ successfully"
1665 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001666 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001667endif #(GENERATE_COT)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001668
Juan Castilloa3487d12015-08-18 14:23:04 +01001669${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001670 $(eval ${CHECK_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001671 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
1672 ${Q}${FIPTOOL} info $@
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001673 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001674 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001675 @${ECHO_BLANK_LINE}
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001676
Yatharth Kochard1a93432015-10-12 12:33:47 +01001677ifneq (${GENERATE_COT},0)
1678fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1679 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001680 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001681 @echo "Built $@ successfully"
1682 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001683 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001684endif #(GENERATE_COT)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001685
1686${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001687 $(eval ${CHECK_FWU_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001688 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1689 ${Q}${FIPTOOL} info $@
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001690 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001691 @echo "Built $@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001692 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001693
Juan Castilloa3487d12015-08-18 14:23:04 +01001694fiptool: ${FIPTOOL}
1695fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001696fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001697
Pali Rohár54ff2132020-11-24 15:38:08 +01001698${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001699ifdef UNIX_MK
Lionel Debieve730bde82022-11-14 11:05:09 +01001700 ${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 +01001701else
1702# Clear the MAKEFLAGS as we do not want
1703# to pass the gnumake flags to nmake.
1704 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001705endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001706
Pali Rohár54ff2132020-11-24 15:38:08 +01001707romlib.bin: libraries FORCE
John Tsichritzisf6ea99b2019-05-21 15:47:37 +01001708 ${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 +01001709
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001710memmap: all
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001711ifdef UNIX_MK
1712 ${Q}PYTHONPATH=${CURDIR}/tools/memory \
1713 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1714else
1715 ${Q}set PYTHONPATH=${CURDIR}/tools/memory && \
1716 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1717endif
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001718
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001719doc:
1720 @echo " BUILD DOCUMENTATION"
1721 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1722
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301723enctool: ${ENCTOOL}
1724
Pali Rohár54ff2132020-11-24 15:38:08 +01001725${ENCTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001726 ${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 +05301727 @${ECHO_BLANK_LINE}
1728 @echo "Built $@ successfully"
1729 @${ECHO_BLANK_LINE}
1730
Joakim Bech35fab8c2014-01-23 14:51:49 +01001731cscope:
1732 @echo " CSCOPE"
1733 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1734 ${Q}cscope -b -q -k
1735
Ryan Harkin72ee3312014-01-15 16:55:07 +00001736help:
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001737 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001738 @echo ""
1739 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +00001740 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001741 @echo ""
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001742 @echo "platform = ${PLATFORM_LIST}"
1743 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001744 @echo "Please refer to the User Guide for a list of all supported options."
1745 @echo "Note that the build system doesn't track dependencies for build "
1746 @echo "options. Therefore, if any of the build options are changed "
1747 @echo "from a previous build, a clean build must be performed."
1748 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +00001749 @echo "Supported Targets:"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001750 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +00001751 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +00001752 @echo " bl2 Build the BL2 binary"
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001753 @echo " bl2u Build the BL2U binary"
Juan Castillo7d199412015-12-14 09:35:25 +00001754 @echo " bl31 Build the BL31 binary"
Soby Mathewa1941252016-05-05 14:33:33 +01001755 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1756 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castilloa3487d12015-08-18 14:23:04 +01001757 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001758 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochard1a93432015-10-12 12:33:47 +01001759 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +00001760 @echo " checkcodebase Check the coding style of the entire source tree"
1761 @echo " checkpatch Check the coding style on changes in the current"
1762 @echo " branch against BASE_COMMIT (default origin/master)"
1763 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +00001764 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +00001765 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001766 @echo " certtool Build the Certificate generation tool"
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301767 @echo " enctool Build the Firmware encryption tool"
Andreas Färberec82cfb2016-10-10 05:18:49 +02001768 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Manish Pandey3f90ad72020-01-14 11:52:05 +00001769 @echo " sp Build the Secure Partition Packages"
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001770 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathewab4181d2017-12-14 17:44:56 +00001771 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001772 @echo " memmap Print the memory map of the built binaries"
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001773 @echo " doc Build html based documentation using Sphinx tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001774 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001775 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +00001776 @echo ""
1777 @echo "example: build all targets for the FVP platform:"
1778 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001779
1780.PHONY: FORCE
1781FORCE:;