blob: ef01fef6ce4bbe4697ccb2c61d6320ce00ccfb40 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001#
Maksims Svecovs01cf14d2023-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-arm82cb2c12017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005#
6
Jeenu Viswambharane35c4042014-05-15 14:40:58 +01007#
Juan Castilloaaa3e722014-06-30 11:41:46 +01008# Trusted Firmware Version
9#
Soby Mathew1a0f1122018-10-01 16:16:34 +010010VERSION_MAJOR := 2
Juan Pablo Condeb78ad002023-05-15 22:17:17 -050011VERSION_MINOR := 9
Yann Gautier055ebec2023-10-03 11:09:07 +020012VERSION_PATCH := 0
13VERSION := ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}
Juan Castilloaaa3e722014-06-30 11:41:46 +010014
Juan Castillo88154672015-10-22 11:34:44 +010015# Default goal is build all images
16.DEFAULT_GOAL := all
17
Douglas Raillard72fc70e2016-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 Lloyd231c1472015-12-02 18:17:37 +000023MAKE_HELPERS_DIRECTORY := make_helpers/
24include ${MAKE_HELPERS_DIRECTORY}build_macros.mk
Evan Lloyde7f54db2015-12-02 18:56:06 +000025include ${MAKE_HELPERS_DIRECTORY}build_env.mk
Juan Castillo73c99d42015-08-18 14:23:04 +010026
27################################################################################
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +010028# Default values for build configurations, and their dependencies
Juan Castillo73c99d42015-08-18 14:23:04 +010029################################################################################
Jeenu Viswambharane35c4042014-05-15 14:40:58 +010030
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +010031include ${MAKE_HELPERS_DIRECTORY}defaults.mk
dp-arm872be882016-09-19 11:18:44 +010032
Antonio Nino Diazcc8b5632017-04-18 15:16:05 +010033# Assertions enabled for DEBUG builds by default
Antonio Nino Diazcc8b5632017-04-18 15:16:05 +010034ENABLE_ASSERTIONS := ${DEBUG}
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +010035ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION}
36PLAT := ${DEFAULT_PLAT}
Juan Castillo73c99d42015-08-18 14:23:04 +010037
38################################################################################
39# Checkpatch script options
40################################################################################
41
Sandrine Bailleuxf6077392016-06-02 11:19:59 +010042CHECKCODE_ARGS := --no-patch
Dan Handleyf0b489c2016-06-02 17:15:13 +010043# Do not check the coding style on imported library files or documentation files
Gilad Ben-Yossef45018432019-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 Handleyf0b489c2016-06-02 17:15:13 +010051INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \
Dan Handley1a41e8c2016-06-02 18:21:02 +010052 include/lib/libfdt \
Roberto Vargas61f72a32018-05-08 10:27:10 +010053 include/lib/libc, \
Dan Handleyf0b489c2016-06-02 17:15:13 +010054 $(wildcard include/lib/*)))
55INC_DIRS_TO_CHECK := $(sort $(filter-out \
Gilad Ben-Yossef45018432019-05-15 09:24:04 +030056 include/lib \
57 include/drivers, \
Dan Handleyf0b489c2016-06-02 17:15:13 +010058 $(wildcard include/*)))
59LIB_DIRS_TO_CHECK := $(sort $(filter-out \
dp-armd801fbb2017-05-04 12:15:35 +010060 lib/compiler-rt \
Antonio Nino Diaz55cdcf72017-01-16 17:20:45 +000061 lib/libfdt% \
Roberto Vargas61f72a32018-05-08 10:27:10 +010062 lib/libc, \
Daniel Boulbya1942552022-10-05 11:05:22 +010063 lib/zlib \
Dan Handleyf0b489c2016-06-02 17:15:13 +010064 $(wildcard lib/*)))
65ROOT_DIRS_TO_CHECK := $(sort $(filter-out \
66 lib \
67 include \
68 docs \
Paul Beesley1ef35512019-03-07 16:42:31 +000069 %.rst, \
Dan Handleyf0b489c2016-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-Yossef45018432019-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 Castillo73c99d42015-08-18 14:23:04 +010078################################################################################
79# Process build options
80################################################################################
81
82# Verbose flag
Jeenu Viswambharane35c4042014-05-15 14:40:58 +010083ifeq (${V},0)
Jayanth Dodderi Chidanandc5e1da82023-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 Chidanandc5e1da82023-04-24 15:57:05 +010088 Q:=
89 ECHO:=$(ECHO_QUIET)
Achin Gupta4f6ad662013-10-25 09:08:21 +010090endif
Andre Przywaraee1ba6d2018-09-27 10:56:05 +010091
92ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +010093 Q:=@
94 ECHO:=$(ECHO_QUIET)
Andre Przywaraee1ba6d2018-09-27 10:56:05 +010095endif
96
97export Q ECHO
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +000098
Juan Castillo73c99d42015-08-18 14:23:04 +010099################################################################################
100# Toolchain
101################################################################################
102
dp-arm72610c42017-05-02 11:09:11 +0100103HOSTCC := gcc
104export HOSTCC
105
Juan Castillo73c99d42015-08-18 14:23:04 +0100106CC := ${CROSS_COMPILE}gcc
107CPP := ${CROSS_COMPILE}cpp
108AS := ${CROSS_COMPILE}gcc
109AR := ${CROSS_COMPILE}ar
Roberto Vargas2adee762018-04-13 14:26:47 +0100110LINKER := ${CROSS_COMPILE}ld
Juan Castillo73c99d42015-08-18 14:23:04 +0100111OC := ${CROSS_COMPILE}objcopy
112OD := ${CROSS_COMPILE}objdump
113NM := ${CROSS_COMPILE}nm
114PP := ${CROSS_COMPILE}gcc -E
Soby Mathew38c14d82017-12-14 17:44:56 +0000115DTC := dtc
Juan Castillo73c99d42015-08-18 14:23:04 +0100116
Julius Wernerb25a5772018-01-10 15:12:47 -0800117# Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH).
118ifneq ($(strip $(wildcard ${LD}.bfd) \
Roberto Vargas2adee762018-04-13 14:26:47 +0100119 $(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),)
120LINKER := ${LINKER}.bfd
Julius Wernerb25a5772018-01-10 15:12:47 -0800121endif
122
Jayanth Dodderi Chidanandc5e1da82023-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 Meakin20629b32023-02-14 11:56:02 +0000143SP_DTS_LIST_FRAGMENT ?= ${BUILD_PLAT}/sp_list_fragment.dts
Jayanth Dodderi Chidanandc5e1da82023-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 Chidanandc5e1da82023-04-24 15:57:05 +0100155# Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags
156################################################################################
Etienne Carriere26e63c42017-11-08 13:48:40 +0100157ifeq (${ARM_ARCH_MAJOR},7)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100158 target32-directive = -target arm-none-eabi
Govindraj Rajad4089fb2023-05-30 16:52:15 -0500159# Will set march-directive from platform configuration
Etienne Carriere26e63c42017-11-08 13:48:40 +0100160else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100161 target32-directive = -target armv8a-none-eabi
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100162endif #(ARM_ARCH_MAJOR)
163
164################################################################################
165# Get Architecture Feature Modifiers
166################################################################################
167arch-features = ${ARM_ARCH_FEATURE}
168
Alexei Fedorovf1821792020-12-07 16:38:53 +0000169# Set the compiler's architecture feature modifiers
170ifneq ($(arch-features), none)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100171 # Strip "none+" from arch-features
Govindraj Rajad4089fb2023-05-30 16:52:15 -0500172 arch-features := $(subst none+,,$(arch-features))
173 march-directive := $(march-directive)+$(arch-features)
Alexei Fedorovf1821792020-12-07 16:38:53 +0000174# Print features
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100175 $(info Arm Architecture Features specified: $(subst +, ,$(arch-features)))
176endif #(arch-features)
Chris Kay4e044782021-03-09 13:34:35 +0000177
originc8a992f2022-01-19 16:30:14 +0000178ifneq ($(findstring clang,$(notdir $(CC))),)
179 ifneq ($(findstring armclang,$(notdir $(CC))),)
Govindraj Raja7794d6c2023-06-01 16:29:16 -0500180 TF_CFLAGS_aarch32 := -target arm-arm-none-eabi
181 TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi
originc8a992f2022-01-19 16:30:14 +0000182 LD := $(LINKER)
183 else
Govindraj Raja7794d6c2023-06-01 16:29:16 -0500184 TF_CFLAGS_aarch32 = $(target32-directive)
185 TF_CFLAGS_aarch64 := -target aarch64-elf
originc8a992f2022-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-awekeedbce9a2019-11-12 16:20:17 -0600196else ifneq ($(findstring gcc,$(notdir $(CC))),)
Jayanth Dodderi Chidanandc5e1da82023-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-awekeedbce9a2019-11-12 16:20:17 -0600204 endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100205 LD = $(LINKER)
dp-armd5461852017-05-02 12:00:08 +0100206else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100207 LD = $(LINKER)
208endif #(clang)
dp-armd5461852017-05-02 12:00:08 +0100209
Ahmad Fatoum32b209b2020-02-25 11:25:08 +0100210# Process Debug flag
211$(eval $(call add_define,DEBUG))
212ifneq (${DEBUG}, 0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100213 BUILD_TYPE := debug
214 TF_CFLAGS += -g -gdwarf-4
215 ASFLAGS += -g -Wa,-gdwarf-4
Ahmad Fatoum32b209b2020-02-25 11:25:08 +0100216
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100217 # Use LOG_LEVEL_INFO by default for debug builds
218 LOG_LEVEL := 40
Ahmad Fatoum32b209b2020-02-25 11:25:08 +0100219else
Jayanth Dodderi Chidanandc5e1da82023-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 Fatoum32b209b2020-02-25 11:25:08 +0100224
Peiyuan Songf1de4c82020-04-25 16:53:43 +0800225# Default build string (git branch and commit)
226ifeq (${BUILD_STRING},)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100227 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
Peiyuan Songf1de4c82020-04-25 16:53:43 +0800228endif
laurenw-armdddf4282022-07-12 10:12:05 -0500229VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
Peiyuan Songf1de4c82020-04-25 16:53:43 +0800230
Antonio Nino Diaz8fd9d4d2018-08-08 16:28:43 +0100231ifeq (${AARCH32_INSTRUCTION_SET},A32)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100232 TF_CFLAGS_aarch32 += -marm
Antonio Nino Diaz8fd9d4d2018-08-08 16:28:43 +0100233else ifeq (${AARCH32_INSTRUCTION_SET},T32)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100234 TF_CFLAGS_aarch32 += -mthumb
Antonio Nino Diaz8fd9d4d2018-08-08 16:28:43 +0100235else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100236 $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
237endif #(AARCH32_INSTRUCTION_SET)
Antonio Nino Diaz8fd9d4d2018-08-08 16:28:43 +0100238
Sandrine Bailleuxa9c4dde2018-07-03 09:14:45 +0200239TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-armd5461852017-05-02 12:00:08 +0100240TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathew9d29c222016-05-05 14:33:33 +0100241
Govindraj Rajad4089fb2023-05-30 16:52:15 -0500242ASFLAGS += $(march-directive)
Antonio Nino Diazb86048c2019-02-19 11:53:51 +0000243
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100244##############################################################################
245# WARNINGS Configuration
246###############################################################################
Justin Chadwell9ab81b52019-07-31 11:36:41 +0100247# General warnings
248WARNINGS := -Wall -Wmissing-include-dirs -Wunused \
Yann Gautier34b508b2021-05-20 13:18:14 +0200249 -Wdisabled-optimization -Wvla -Wshadow \
Boyan Karatotevd75a9ec2022-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 Chadwell9ab81b52019-07-31 11:36:41 +0100258
259# Additional warnings
Boyan Karatotevd75a9ec2022-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 Gautiere7c645b2018-12-10 18:00:26 +0100265
Boyan Karatotevd75a9ec2022-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 Karatotevd141e632022-11-21 14:49:05 +0000274# currently very involved and many platforms set this off
275WARNING2 += -Wunused-const-variable=2
Yann Gautiere7c645b2018-12-10 18:00:26 +0100276
Boyan Karatotevd75a9ec2022-11-21 14:16:43 +0000277# Level 3 - very pedantic, frequently ignored
Yann Gautiere7c645b2018-12-10 18:00:26 +0100278WARNING3 := -Wbad-function-cast
Boyan Karatotevd75a9ec2022-11-21 14:16:43 +0000279WARNING3 += -Waggregate-return
280WARNING3 += -Wnested-externs
281WARNING3 += -Wcast-align
Yann Gautiere7c645b2018-12-10 18:00:26 +0100282WARNING3 += -Wcast-qual
283WARNING3 += -Wconversion
284WARNING3 += -Wpacked
Yann Gautiere7c645b2018-12-10 18:00:26 +0100285WARNING3 += -Wpointer-arith
Yann Gautiere7c645b2018-12-10 18:00:26 +0100286WARNING3 += -Wswitch-default
Yann Gautiere7c645b2018-12-10 18:00:26 +0100287
Boyan Karatotevd75a9ec2022-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 Chidanandc5e1da82023-04-24 15:57:05 +0100292 ifneq (${W},0)
293 E ?= 0
294 endif
Boyan Karatotevd75a9ec2022-11-21 14:16:43 +0000295endif
296
Yann Gautiere7c645b2018-12-10 18:00:26 +0100297ifeq (${W},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100298 WARNINGS += $(WARNING1)
Yann Gautiere7c645b2018-12-10 18:00:26 +0100299else ifeq (${W},2)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100300 WARNINGS += $(WARNING1) $(WARNING2)
Yann Gautiere7c645b2018-12-10 18:00:26 +0100301else ifeq (${W},3)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100302 WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
303endif #(W)
Yann Gautiere7c645b2018-12-10 18:00:26 +0100304
Justin Chadwell9ab81b52019-07-31 11:36:41 +0100305# Compiler specific warnings
Ambroise Vincent00296572019-05-24 12:47:43 +0100306ifeq ($(findstring clang,$(notdir $(CC))),)
Justin Chadwell93c690e2019-07-03 14:15:56 +0100307# not using clang
Justin Chadwelld7b4cd42019-09-18 14:13:42 +0100308WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \
309 -Wpacked-bitfield-compat -Wshift-overflow=2 \
310 -Wlogical-op
Govindraj Rajadea23e22023-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
Bipin Ravi538516f2023-09-28 13:17:24 -0500315ifeq ($(HARDEN_SLS), 1)
316 TF_CFLAGS_aarch64 += $(call cc_option, -mharden-sls=all)
317endif
318
Justin Chadwell93c690e2019-07-03 14:15:56 +0100319else
320# using clang
Justin Chadwelld7b4cd42019-09-18 14:13:42 +0100321WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
322 -Wlogical-op-parentheses
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100323endif #(Clang Warning)
Ambroise Vincent00296572019-05-24 12:47:43 +0100324
Yann Gautier6336b072018-12-10 18:08:53 +0100325ifneq (${E},0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100326 ERRORS := -Werror
327endif #(E)
Yann Gautier6336b072018-12-10 18:08:53 +0100328
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100329################################################################################
330# Compiler and Linker Directives
331################################################################################
Justin Chadwell9ab81b52019-07-31 11:36:41 +0100332CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
333 $(ERRORS) $(WARNINGS)
Govindraj Rajad4089fb2023-05-30 16:52:15 -0500334ASFLAGS += $(CPPFLAGS) \
Julius Wernerd5dfdeb2019-07-09 13:49:11 -0700335 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada59de5092016-12-22 12:51:53 +0900336TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Hollandebd6efa2019-10-20 16:11:25 -0500337 -ffunction-sections -fdata-sections \
338 -ffreestanding -fno-builtin -fno-common \
339 -Os -std=gnu99
Juan Castillo73c99d42015-08-18 14:23:04 +0100340
Justin Chadwell1f461972019-08-20 11:01:52 +0100341ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100342 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
343endif #(${SANITIZE_UB},on)
344
Justin Chadwell1f461972019-08-20 11:01:52 +0100345ifeq (${SANITIZE_UB},trap)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100346 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
Justin Chadwell1f461972019-08-20 11:01:52 +0100347 -fsanitize-undefined-trap-on-error
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100348endif #(${SANITIZE_UB},trap)
Justin Chadwell1f461972019-08-20 11:01:52 +0100349
david cunadof7ec31d2017-11-30 21:58:01 +0000350GCC_V_OUTPUT := $(shell $(CC) -v 2>&1)
david cunadof7ec31d2017-11-30 21:58:01 +0000351
Marco Felsch1f49db52022-11-09 12:59:09 +0100352TF_LDFLAGS += -z noexecstack
353
Ambroise Vincent641f16e2019-07-17 11:08:38 +0100354# LD = armlink
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800355ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100356 TF_LDFLAGS += --diag_error=warning --lto_level=O1
357 TF_LDFLAGS += --remove --info=unused,unusedsymbols
358 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Ambroise Vincent641f16e2019-07-17 11:08:38 +0100359
360# LD = gcc (used when GCC LTO is enabled)
zelalem-awekeedbce9a2019-11-12 16:20:17 -0600361else ifneq ($(findstring gcc,$(notdir $(LD))),)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100362 # Pass ld options with Wl or Xlinker switches
363 TF_LDFLAGS += -Wl,--fatal-warnings -O1
364 TF_LDFLAGS += -Wl,--gc-sections
Chris Kayac98b822022-12-22 13:26:37 +0000365
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100366 TF_LDFLAGS += -Wl,-z,common-page-size=4096 #Configure page size constants
367 TF_LDFLAGS += -Wl,-z,max-page-size=4096
Chris Kayac98b822022-12-22 13:26:37 +0000368
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100369 ifeq ($(ENABLE_LTO),1)
370 ifeq (${ARCH},aarch64)
371 TF_LDFLAGS += -flto -fuse-linker-plugin
372 endif
373 endif #(ENABLE_LTO)
374
zelalem-awekeedbce9a2019-11-12 16:20:17 -0600375# GCC automatically adds fix-cortex-a53-843419 flag when used to link
376# which breaks some builds, so disable if errata fix is not explicitly enabled
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100377 ifneq (${ERRATA_A53_843419},1)
378 TF_LDFLAGS += -mno-fix-cortex-a53-843419
379 endif
380 TF_LDFLAGS += -nostdlib
381 TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent641f16e2019-07-17 11:08:38 +0100382
383# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800384else
Marco Felsch1f49db52022-11-09 12:59:09 +0100385# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
386# are not loaded by a elf loader.
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100387 TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
388 TF_LDFLAGS += -O1
389 TF_LDFLAGS += --gc-sections
Chris Kayac98b822022-12-22 13:26:37 +0000390
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100391 TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
392 TF_LDFLAGS += -z max-page-size=4096
Chris Kayac98b822022-12-22 13:26:37 +0000393
Ambroise Vincent641f16e2019-07-17 11:08:38 +0100394# ld.lld doesn't recognize the errata flags,
Yabin Cuiebac6922023-01-19 20:06:04 +0000395# therefore don't add those in that case.
396# ld.lld reports section type mismatch warnings,
397# therefore don't add --fatal-warnings to it.
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100398 ifeq ($(findstring ld.lld,$(notdir $(LD))),)
399 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
400 endif
401
402endif #(LD = armlink)
Juan Castillo73c99d42015-08-18 14:23:04 +0100403
Nishanth Menon03b397a2016-10-14 01:13:57 +0000404DTC_FLAGS += -I dts -O dtb
Louis Mayencourta6de8242020-02-28 16:57:30 +0000405DTC_CPPFLAGS += -P -nostdinc -Iinclude -Ifdts -undef \
406 -x assembler-with-cpp $(DEFINES)
Nishanth Menon03b397a2016-10-14 01:13:57 +0000407
Juan Castillo73c99d42015-08-18 14:23:04 +0100408################################################################################
Govindraj Rajaf5211422023-08-17 10:41:48 -0500409# Setup ARCH_MAJOR/MINOR before parsing arch_features.
410################################################################################
411ifeq (${ENABLE_RME},1)
412 ARM_ARCH_MAJOR := 8
413 ARM_ARCH_MINOR := 6
414endif
415
416################################################################################
Juan Castillo73c99d42015-08-18 14:23:04 +0100417# Common sources and include directories
418################################################################################
Jayanth Dodderi Chidanand6a0da732022-01-17 18:57:17 +0000419include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
dp-armd801fbb2017-05-04 12:15:35 +0100420include lib/compiler-rt/compiler-rt.mk
Juan Castillo73c99d42015-08-18 14:23:04 +0100421
422BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathew7f56e9a2017-09-04 11:49:29 +0100423 common/tf_log.c \
Soby Mathew9d29c222016-05-05 14:33:33 +0100424 common/${ARCH}/debug.S \
Julius Werner91b48c92018-11-27 22:10:56 -0800425 drivers/console/multi_console.c \
Soby Mathew9d29c222016-05-05 14:33:33 +0100426 lib/${ARCH}/cache_helpers.S \
427 lib/${ARCH}/misc_helpers.S \
Boyan Karatotevc73686a2023-02-15 13:21:50 +0000428 lib/extensions/pmuv3/${ARCH}/pmuv3.c \
Soby Mathew566034f2018-02-08 17:45:12 +0000429 plat/common/plat_bl_common.c \
Soby Mathew7f56e9a2017-09-04 11:49:29 +0100430 plat/common/plat_log_common.c \
dp-arm75311202017-03-07 11:02:47 +0000431 plat/common/${ARCH}/plat_common.c \
Soby Mathew9d29c222016-05-05 14:33:33 +0100432 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas61f72a32018-05-08 10:27:10 +0100433 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000434
Antonio Nino Diaz8422a842018-08-16 15:42:44 +0100435ifeq ($(notdir $(CC)),armclang)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100436 BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
Antonio Nino Diaz8422a842018-08-16 15:42:44 +0100437endif
438
Justin Chadwell1f461972019-08-20 11:01:52 +0100439ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100440 BL_COMMON_SOURCES += plat/common/ubsan.c
Justin Chadwell1f461972019-08-20 11:01:52 +0100441endif
442
Yann Gautier01d237c2018-06-18 16:00:23 +0200443INCLUDES += -Iinclude \
Antonio Nino Diazf5478de2018-12-17 17:20:57 +0000444 -Iinclude/arch/${ARCH} \
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +0000445 -Iinclude/lib/cpus/${ARCH} \
446 -Iinclude/lib/el3_runtime/${ARCH} \
447 ${PLAT_INCLUDES} \
448 ${SPD_INCLUDES}
449
Antonio Nino Diaz9c6d1c52018-11-19 11:48:30 +0000450include common/backtrace/backtrace.mk
451
Juan Castillo73c99d42015-08-18 14:23:04 +0100452################################################################################
Govindraj Rajaf5211422023-08-17 10:41:48 -0500453# Process BRANCH_PROTECTION value and set
454# Pointer Authentication and Branch Target Identification flags
455################################################################################
456ifeq (${BRANCH_PROTECTION},0)
457 # Default value turns off all types of branch protection
458 BP_OPTION := none
459else ifneq (${ARCH},aarch64)
460 $(error BRANCH_PROTECTION requires AArch64)
461else ifeq (${BRANCH_PROTECTION},1)
462 # Enables all types of branch protection features
463 BP_OPTION := standard
464 ENABLE_BTI := 1
465 ENABLE_PAUTH := 1
466else ifeq (${BRANCH_PROTECTION},2)
467 # Return address signing to its standard level
468 BP_OPTION := pac-ret
469 ENABLE_PAUTH := 1
470else ifeq (${BRANCH_PROTECTION},3)
471 # Extend the signing to include leaf functions
472 BP_OPTION := pac-ret+leaf
473 ENABLE_PAUTH := 1
474else ifeq (${BRANCH_PROTECTION},4)
475 # Turn on branch target identification mechanism
476 BP_OPTION := bti
477 ENABLE_BTI := 1
478else
479 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
480endif #(BRANCH_PROTECTION)
481
482ifeq ($(ENABLE_PAUTH),1)
483 CTX_INCLUDE_PAUTH_REGS := 1
484endif
485ifneq (${BP_OPTION},none)
486 TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
487endif #(BP_OPTION)
488
489# Pointer Authentication sources
490ifeq (${ENABLE_PAUTH}, 1)
491# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
492# Pauth support. As it's not secure, it must be reimplemented for real platforms
493 BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
494endif
495
496####################################################
497# Enable required options for Memory Stack Tagging.
498####################################################
499
500# Currently, these options are enabled only for clang and armclang compiler.
501ifeq (${SUPPORT_STACK_MEMTAG},yes)
502 ifdef mem_tag_arch_support
503 # Check for armclang and clang compilers
504 ifneq ( ,$(filter $(notdir $(CC)),armclang clang))
505 # Add "memtag" architecture feature modifier if not specified
506 ifeq ( ,$(findstring memtag,$(arch-features)))
507 arch-features := $(arch-features)+memtag
508 endif # memtag
509 ifeq ($(notdir $(CC)),armclang)
510 TF_CFLAGS += -mmemtag-stack
511 else ifeq ($(notdir $(CC)),clang)
512 TF_CFLAGS += -fsanitize=memtag
513 endif # armclang
514 endif
515 else
516 $(error "Error: stack memory tagging is not supported for \
517 architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
518 endif #(mem_tag_arch_support)
519endif #(SUPPORT_STACK_MEMTAG)
520
521################################################################################
522# RME dependent flags configuration, Enable optional features for RME.
523################################################################################
524# FEAT_RME
525ifeq (${ENABLE_RME},1)
526 # RME doesn't support PIE
527 ifneq (${ENABLE_PIE},0)
528 $(error ENABLE_RME does not support PIE)
529 endif
530
531 # RME doesn't support BRBE
532 ifneq (${ENABLE_BRBE_FOR_NS},0)
533 $(error ENABLE_RME does not support BRBE.)
534 endif
535
536 # RME requires AARCH64
537 ifneq (${ARCH},aarch64)
538 $(error ENABLE_RME requires AArch64)
539 endif
540
541 # RME requires el2 context to be saved for now.
542 CTX_INCLUDE_EL2_REGS := 1
543 CTX_INCLUDE_AARCH32_REGS := 0
544 CTX_INCLUDE_PAUTH_REGS := 1
545
546 # RME enables CSV2_2 extension by default.
547 ENABLE_FEAT_CSV2_2 = 1
548endif #(FEAT_RME)
549
550################################################################################
Juan Castillo73c99d42015-08-18 14:23:04 +0100551# Generic definitions
552################################################################################
Evan Lloyd231c1472015-12-02 18:17:37 +0000553include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
554
Grant Likely29214e92020-07-30 08:50:10 +0100555ifeq (${BUILD_BASE},)
556 BUILD_BASE := ./build
557endif
558BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
Juan Castillo73c99d42015-08-18 14:23:04 +0100559
Evan Lloyd231c1472015-12-02 18:17:37 +0000560SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
Juan Castillo73c99d42015-08-18 14:23:04 +0100561
562# Platforms providing their own TBB makefile may override this value
563INCLUDE_TBBR_MK := 1
564
Juan Castillo73c99d42015-08-18 14:23:04 +0100565################################################################################
566# Include SPD Makefile if one has been specified
567################################################################################
568
569ifneq (${SPD},none)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100570 ifeq (${ARCH},aarch32)
571 $(error "Error: SPD is incompatible with AArch32.")
572 endif
Max Shvetsov28f39f02020-02-25 13:56:19 +0000573
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100574 ifdef EL3_PAYLOAD_BASE
575 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
576 $(warning "The SPD and its BL32 companion will be present but \
577 ignored.")
578 endif
Achin Guptac3fb00d2019-10-11 15:50:43 +0100579
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100580 ifeq (${SPD},spmd)
581 # SPMD is located in std_svc directory
582 SPD_DIR := std_svc
Achin Guptac3fb00d2019-10-11 15:50:43 +0100583
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100584 ifeq ($(SPMD_SPM_AT_SEL2),1)
585 CTX_INCLUDE_EL2_REGS := 1
586 ifeq ($(SPMC_AT_EL3),1)
587 $(error SPM cannot be enabled in both S-EL2 and EL3.)
588 endif
589 endif
Olivier Deprezdb1ef412020-04-01 21:28:26 +0200590
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100591 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
592 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
593 endif
Davidson Kca932482021-03-10 12:07:15 +0530594
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100595 ifeq ($(TS_SP_FW_CONFIG),1)
596 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
597 endif
Balint Dobszay33993a32021-03-26 15:19:11 +0100598
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100599 ifneq ($(ARM_BL2_SP_LIST_DTS),)
600 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
601 endif
Balint Dobszay46789a72021-03-26 16:23:18 +0100602
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100603 ifneq ($(SP_LAYOUT_FILE),)
604 BL2_ENABLE_SP_LOAD := 1
605 endif
Nishant Sharma801cd3c2023-06-27 00:36:01 +0100606
607 ifeq ($(SPMC_AT_EL3_SEL0_SP),1)
608 ifneq ($(SPMC_AT_EL3),1)
609 $(error SEL0 SP cannot be enabled without SPMC at EL3)
610 endif
611 endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100612 else
613 # All other SPDs in spd directory
614 SPD_DIR := spd
615 endif #(SPD)
Juan Castillo73c99d42015-08-18 14:23:04 +0100616
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100617 # We expect to locate an spd.mk under the specified SPD directory
618 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
Max Shvetsov28f39f02020-02-25 13:56:19 +0000619
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100620 ifeq (${SPD_MAKE},)
621 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
622 endif
623 $(info Including ${SPD_MAKE})
624 include ${SPD_MAKE}
Max Shvetsov28f39f02020-02-25 13:56:19 +0000625
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100626 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
627 # Makefile would set NEED_BL32 to "yes". In this case, the build system
628 # supports two mutually exclusive options:
629 # * BL32 is built from source: then BL32_SOURCES must contain the list
630 # of source files to build BL32
631 # * BL32 is a prebuilt binary: then BL32 must point to the image file
632 # that will be included in the FIP
633 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
634 # over the sources.
635endif #(SPD=none)
Jeenu Viswambharane35c4042014-05-15 14:40:58 +0100636
Raghu Krishnamurthy890b5082023-02-25 13:26:10 -0800637ifeq (${ENABLE_SPMD_LP}, 1)
638ifneq (${SPD},spmd)
639 $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
640endif
641ifeq ($(SPMC_AT_EL3),1)
642 $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
643endif
644endif
645
Govindraj Rajaf1910cc2022-11-21 13:10:40 +0000646ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100647 ifeq (${SPD},none)
648 ifeq (${ENABLE_RME},0)
649 $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
650 or RME is enabled)
651 endif
652 endif
Govindraj Rajaf1910cc2022-11-21 13:10:40 +0000653endif
654
Douglas Raillard51faada2017-02-24 18:14:15 +0000655################################################################################
Zelalem Aweke5b18de02021-07-11 18:33:20 -0500656# Include rmmd Makefile if RME is enabled
657################################################################################
Zelalem Aweke5b18de02021-07-11 18:33:20 -0500658ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100659 ifneq (${ARCH},aarch64)
660 $(error ENABLE_RME requires AArch64)
661 endif
662 ifeq ($(SPMC_AT_EL3),1)
663 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
664 endif
665
666 ifneq (${SPD}, none)
667 ifneq (${SPD}, spmd)
668 $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
669 endif
670 endif
Zelalem Aweke5b18de02021-07-11 18:33:20 -0500671include services/std_svc/rmmd/rmmd.mk
672$(warning "RME is an experimental feature")
673endif
674
675################################################################################
Juan Castillo73c99d42015-08-18 14:23:04 +0100676# Include the platform specific Makefile after the SPD Makefile (the platform
677# makefile may use all previous definitions in this file)
678################################################################################
Jeenu Viswambharan2da8d8b2014-05-12 15:28:47 +0100679
Juan Castillo73c99d42015-08-18 14:23:04 +0100680include ${PLAT_MAKEFILE_FULL}
Juan Castillo0f21c542014-06-25 17:26:36 +0100681
Govindraj Raja7794d6c2023-06-01 16:29:16 -0500682################################################################################
683# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
684# up with appropriate march values for compiler.
685################################################################################
686include ${MAKE_HELPERS_DIRECTORY}march.mk
687
688TF_CFLAGS += $(march-directive)
689
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -0600690# This internal flag is common option which is set to 1 for scenarios
691# when the BL2 is running in EL3 level. This occurs in two scenarios -
692# 4 world system running BL2 at EL3 and two world system without BL1 running
693# BL2 in EL3
694
695ifeq (${RESET_TO_BL2},1)
696 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100697 ifeq (${ENABLE_RME},1)
698 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
699 supported at the moment.)
700 endif
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -0600701else ifeq (${ENABLE_RME},1)
702 BL2_RUNS_AT_EL3 := 1
703else
704 BL2_RUNS_AT_EL3 := 0
705endif
706
Masahiro Yamada8012cc52017-11-04 03:12:28 +0900707$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
708
Etienne Carriere26e63c42017-11-08 13:48:40 +0100709ifeq (${ARM_ARCH_MAJOR},7)
710include make_helpers/armv7-a-cpus.mk
711endif
712
Masahiro Yamada320920c2020-01-17 13:44:37 +0900713PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
714ifneq ($(PIE_FOUND),)
715 TF_CFLAGS += -fno-PIE
Samuel Holland7b592412022-04-08 21:56:02 -0500716ifneq ($(findstring gcc,$(notdir $(LD))),)
717 TF_LDFLAGS += -no-pie
718endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100719endif #(PIE_FOUND)
Masahiro Yamada320920c2020-01-17 13:44:37 +0900720
721ifneq ($(findstring gcc,$(notdir $(LD))),)
722 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew3bd17c02018-08-28 11:13:55 +0100723else
Masahiro Yamada320920c2020-01-17 13:44:37 +0900724 PIE_LDFLAGS += -pie --no-dynamic-linker
725endif
726
727ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100728 ifeq ($(RESET_TO_BL2),1)
729 ifneq ($(BL2_IN_XIP_MEM),1)
730 BL2_CPPFLAGS += -fpie
731 BL2_CFLAGS += -fpie
732 BL2_LDFLAGS += $(PIE_LDFLAGS)
733 endif #(BL2_IN_XIP_MEM)
734 endif #(RESET_TO_BL2)
Chris Kay966660e2023-02-02 14:39:03 +0000735 BL31_CPPFLAGS += -fpie
736 BL31_CFLAGS += -fpie
Masahiro Yamada320920c2020-01-17 13:44:37 +0900737 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay966660e2023-02-02 14:39:03 +0000738
739 BL32_CPPFLAGS += -fpie
Masahiro Yamadad9743012020-01-17 13:45:14 +0900740 BL32_CFLAGS += -fpie
741 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100742endif #(ENABLE_PIE)
Soby Mathew3bd17c02018-08-28 11:13:55 +0100743
Boyan Karatotev007433d2023-01-25 16:55:18 +0000744BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
745BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
746BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
747
Masahiro Yamada9cefb4b2020-04-01 14:20:58 +0900748BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -0600749ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100750 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamadad5e97a12020-03-26 13:18:48 +0900751else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100752 BL2_CPPFLAGS += -DIMAGE_AT_EL1
753endif #(RESET_TO_BL2)
Boyan Karatotev007433d2023-01-25 16:55:18 +0000754
755ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100756 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
757 BL31_CPPFLAGS += -DIMAGE_AT_EL3
758 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatotev007433d2023-01-25 16:55:18 +0000759else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100760 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamadad5e97a12020-03-26 13:18:48 +0900761endif
762
Sandrine Bailleux54035fc2016-01-13 14:57:38 +0000763# Include the CPU specific operations makefile, which provides default
764# values for all CPU errata workarounds and CPU specific optimisations.
765# This can be overridden by the platform.
Juan Castillo73c99d42015-08-18 14:23:04 +0100766include lib/cpus/cpu-ops.mk
Achin Gupta4f6ad662013-10-25 09:08:21 +0100767
dp-arma4409002017-02-15 11:07:55 +0000768################################################################################
769# Build `AARCH32_SP` as BL32 image for AArch32
770################################################################################
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100771ifeq (${ARCH},aarch32)
772 NEED_BL32 := yes
dp-arma4409002017-02-15 11:07:55 +0000773
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100774 ifneq (${AARCH32_SP},none)
775 # We expect to locate an sp.mk under the specified AARCH32_SP directory
776 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-arma4409002017-02-15 11:07:55 +0000777
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100778 ifeq (${AARCH32_SP_MAKE},)
779 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
780 endif
Juan Pablo Conde043f38f2023-08-09 13:19:21 -0500781 $(info Including ${AARCH32_SP_MAKE})
782 include ${AARCH32_SP_MAKE}
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100783 endif
784endif #(ARCH=aarch32)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100785
Juan Castillo73c99d42015-08-18 14:23:04 +0100786################################################################################
Varun Wadekar77f1f7a2019-01-31 09:22:30 -0800787# Include libc if not overridden
788################################################################################
789ifeq (${OVERRIDE_LIBC},0)
790include lib/libc/libc.mk
791endif
792
793################################################################################
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100794# Check incompatible options and dependencies
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000795################################################################################
796
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100797# USE_DEBUGFS experimental feature recommended only in debug builds
798ifeq (${USE_DEBUGFS},1)
799 ifeq (${DEBUG},1)
800 $(warning DEBUGFS experimental feature is enabled.)
801 else
802 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000803 endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100804endif #(USE_DEBUGFS)
805
806# USE_SPINLOCK_CAS requires AArch64 build
807ifeq (${USE_SPINLOCK_CAS},1)
808 ifneq (${ARCH},aarch64)
809 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xu76580f32017-08-24 11:03:23 +0800810 endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100811endif #(USE_SPINLOCK_CAS)
812
813# The cert_create tool cannot generate certificates individually, so we use the
814# target 'certificates' to create them all
815ifneq (${GENERATE_COT},0)
816 FIP_DEPS += certificates
817 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000818endif
819
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100820ifneq (${DECRYPTION_SUPPORT},none)
821 ENC_ARGS += -f ${FW_ENC_STATUS}
822 ENC_ARGS += -k ${ENC_KEY}
823 ENC_ARGS += -n ${ENC_NONCE}
824 FIP_DEPS += enctool
825 FWU_FIP_DEPS += enctool
826endif #(DECRYPTION_SUPPORT)
827
828ifdef EL3_PAYLOAD_BASE
829 ifdef PRELOADED_BL33_BASE
830 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
831 incompatible build options. EL3_PAYLOAD_BASE has priority.")
832 endif
833 ifneq (${GENERATE_COT},0)
834 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
835 build options.")
836 endif
837 ifneq (${TRUSTED_BOARD_BOOT},0)
838 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
839 incompatible \ build options.")
840 endif
841endif #(EL3_PAYLOAD_BASE)
842
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000843ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100844 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000845 $(warning "BL33 image is not needed when option \
846 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100847 endif
848 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz68450a62016-04-06 17:31:57 +0100849 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100850 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
851 endif
852endif #(NEED_BL33)
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000853
Jeenu Viswambharand4593e42017-01-06 16:14:42 +0000854# When building for systems with hardware-assisted coherency, there's no need to
855# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
856ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100857 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharand4593e42017-01-06 16:14:42 +0000858endif
Yatharth Kochar1a0a3f02016-06-28 16:58:26 +0100859
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -0600860#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
861ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100862 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan7d173fc2018-03-21 07:20:09 +0000863endif
864
Manish Pandey9202d512023-02-13 12:39:17 +0000865# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan14c60162018-04-04 16:07:11 +0100866ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100867 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
868 and RAS_FFH_SUPPORT instead")
Manish Pandey9202d512023-02-13 12:39:17 +0000869endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100870
Manish Pandey9202d512023-02-13 12:39:17 +0000871# RAS firmware first handling requires that EAs are handled in EL3 first
872ifeq ($(RAS_FFH_SUPPORT),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100873 ifneq ($(ENABLE_FEAT_RAS),1)
874 $(error For RAS_FFH_SUPPORT, ENABLE_FEAT_RAS must also be 1)
875 endif
876 ifneq ($(HANDLE_EA_EL3_FIRST_NS),1)
877 $(error For RAS_FFH_SUPPORT, HANDLE_EA_EL3_FIRST_NS must also be 1)
878 endif
879endif #(RAS_FFH_SUPPORT)
880
Manish Pandey9202d512023-02-13 12:39:17 +0000881# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharan1a7c1cf2017-12-08 12:13:51 +0000882ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100883 ifeq ($(ENABLE_FEAT_RAS),0)
884 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
885 endif
886endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharan1a7c1cf2017-12-08 12:13:51 +0000887
Roberto Vargased51b512018-09-24 17:20:48 +0100888# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew209a60c2018-03-26 12:43:37 +0100889ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100890 ifeq (${TRUSTED_BOARD_BOOT}, 0)
891 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
892 to be set.")
893 endif
894endif #(DYN_DISABLE_AUTH)
Soby Mathew209a60c2018-03-26 12:43:37 +0100895
Manish V Badarkhe2bf4f272022-06-20 15:32:38 +0100896ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
897# Support authentication verification and hash calculation
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100898 CRYPTO_SUPPORT := 3
Manish V Badarkhe2bf4f272022-06-20 15:32:38 +0100899else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
900# Support authentication verification and hash calculation
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100901 CRYPTO_SUPPORT := 3
Manish V Badarkhe2bf4f272022-06-20 15:32:38 +0100902else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
903# Support hash calculation only
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100904 CRYPTO_SUPPORT := 2
Manish V Badarkhe2bf4f272022-06-20 15:32:38 +0100905else ifeq (${TRUSTED_BOARD_BOOT},1)
906# Support authentication verification only
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100907 CRYPTO_SUPPORT := 1
Manish V Badarkhec9c56f62022-01-08 22:56:06 +0000908else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100909 CRYPTO_SUPPORT := 0
910endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhec9c56f62022-01-08 22:56:06 +0000911
Balint Dobszaycbf9e842019-12-18 15:28:00 +0100912# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
913ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100914 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhe84ef9cd2020-06-29 10:32:53 +0100915endif
916
Antonio Nino Diazb86048c2019-02-19 11:53:51 +0000917# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100918# registers associated to it are also saved and restored.
919# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
Antonio Nino Diazb86048c2019-02-19 11:53:51 +0000920ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100921 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
922 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
923 endif
924endif #(ENABLE_PAUTH)
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100925
926ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100927 ifneq (${ARCH},aarch64)
928 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
929 endif
930endif #(CTX_INCLUDE_PAUTH_REGS)
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100931
Justin Chadwell9dd94382019-07-18 14:25:33 +0100932ifeq ($(CTX_INCLUDE_MTE_REGS),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100933 ifneq (${ARCH},aarch64)
934 $(error CTX_INCLUDE_MTE_REGS requires AArch64)
935 endif
936endif #(CTX_INCLUDE_MTE_REGS)
Justin Chadwell9dd94382019-07-18 14:25:33 +0100937
Manish V Badarkhe396b3392021-06-25 23:28:59 +0100938ifeq ($(PSA_FWU_SUPPORT),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100939 $(info PSA_FWU_SUPPORT is an experimental feature)
940endif #(PSA_FWU_SUPPORT)
Manish V Badarkhe396b3392021-06-25 23:28:59 +0100941
Jayanth Dodderi Chidanand6a0da732022-01-17 18:57:17 +0000942ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100943 $(info FEATURE_DETECTION is an experimental feature)
944endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand6a0da732022-01-17 18:57:17 +0000945
Jayanth Dodderi Chidanand03d3c0d2022-11-08 10:31:07 +0000946ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100947 ifeq (${ENABLE_SME_FOR_NS}, 0)
948 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
949 to be set")
950 $(warning "Forced ENABLE_SME_FOR_NS=1")
951 override ENABLE_SME_FOR_NS := 1
952 endif
953endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand45007ac2023-03-06 23:56:14 +0000954
Petre-Ionut Tudor60e8f3c2019-11-07 15:18:03 +0000955ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100956 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
957 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
958 library v2")
959 endif
960endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudor60e8f3c2019-11-07 15:18:03 +0000961
Sumit Garg7cda17b2019-11-15 10:43:00 +0530962ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100963 ifeq (${TRUSTED_BOARD_BOOT}, 0)
964 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
965 to be set)
966 endif
967endif #(DECRYPTION_SUPPORT)
Sumit Garg7cda17b2019-11-15 10:43:00 +0530968
johpow01744ad972022-01-28 17:06:20 -0600969# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow01dc78e622021-07-08 14:14:00 -0500970ifeq (${ARCH},aarch32)
johpow01744ad972022-01-28 17:06:20 -0600971
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100972 # SME/SVE only supported on AArch64
973 ifneq (${ENABLE_SME_FOR_NS},0)
974 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
975 endif
Jayanth Dodderi Chidanand03d3c0d2022-11-08 10:31:07 +0000976
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100977 ifeq (${ENABLE_SVE_FOR_NS},1)
978 # Warning instead of error due to CI dependency on this
979 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
980 endif
johpow01744ad972022-01-28 17:06:20 -0600981
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100982 # BRBE is not supported in AArch32
983 ifeq (${ENABLE_BRBE_FOR_NS},1)
984 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
985 endif
johpow01744ad972022-01-28 17:06:20 -0600986
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100987 # FEAT_RNG_TRAP is not supported in AArch32
988 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
989 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
990 endif
991endif #(ARCH=aarch32)
johpow01dc78e622021-07-08 14:14:00 -0500992
Boyan Karatotev0d122942023-03-08 16:29:26 +0000993ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100994 ifeq (${ENABLE_SVE_FOR_NS},0)
995 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
996 endif
997endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev0d122942023-03-08 16:29:26 +0000998
johpow01dc78e622021-07-08 14:14:00 -0500999# Secure SME/SVE requires the non-secure component as well
1000ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001001 ifeq (${ENABLE_SME_FOR_NS},0)
1002 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
1003 endif
1004 ifeq (${ENABLE_SVE_FOR_SWD},0)
1005 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
1006 endif
1007endif #(ENABLE_SME_FOR_SWD)
1008
johpow01dc78e622021-07-08 14:14:00 -05001009ifeq (${ENABLE_SVE_FOR_SWD},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001010 ifeq (${ENABLE_SVE_FOR_NS},0)
1011 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
1012 endif
1013endif #(ENABLE_SVE_FOR_SWD)
johpow01dc78e622021-07-08 14:14:00 -05001014
1015# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
1016# its own context management including FPU registers.
1017ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001018 ifneq (${ENABLE_SME_FOR_NS},0)
1019 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1020 endif
Jayanth Dodderi Chidanand03d3c0d2022-11-08 10:31:07 +00001021
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001022 ifeq (${ENABLE_SVE_FOR_NS},1)
1023 # Warning instead of error due to CI dependency on this
1024 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1025 $(warning "Forced ENABLE_SVE_FOR_NS=0")
1026 override ENABLE_SVE_FOR_NS := 0
1027 endif
1028endif #(CTX_INCLUDE_FPREGS)
johpow01dc78e622021-07-08 14:14:00 -05001029
Manish V Badarkhe00e28872022-03-02 12:06:35 +00001030ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001031 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe00e28872022-03-02 12:06:35 +00001032endif
1033
Raymond Mao3ba2c152023-07-25 07:53:35 -07001034ifeq (${TRANSFER_LIST},1)
1035 $(info TRANSFER_LIST is an experimental feature)
1036endif
1037
Chris Kay274a69e2022-09-29 16:21:24 +01001038ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001039 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1040 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1041 endif
Chris Kay274a69e2022-09-29 16:21:24 +01001042endif
1043
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001044# Determine if FEAT_RNG is supported
1045ENABLE_FEAT_RNG = $(if $(findstring rng,${arch-features}),1,0)
1046
1047# Determine if FEAT_SB is supported
1048ENABLE_FEAT_SB = $(if $(findstring sb,${arch-features}),1,0)
1049
Manish V Badarkhe5782b892023-09-06 09:08:28 +01001050ifeq ($(PSA_CRYPTO),1)
1051 $(info PSA_CRYPTO is an experimental feature)
1052endif
1053
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +00001054################################################################################
Juan Castillo73c99d42015-08-18 14:23:04 +01001055# Process platform overrideable behaviour
1056################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001057
Manish Pandey5f24ce92021-10-06 10:59:52 +01001058ifdef BL1_SOURCES
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001059 NEED_BL1 := yes
1060endif #(BL1_SOURCES)
Manish Pandey5f24ce92021-10-06 10:59:52 +01001061
Juan Castillo73c99d42015-08-18 14:23:04 +01001062ifdef BL2_SOURCES
Manish Pandey5f24ce92021-10-06 10:59:52 +01001063 NEED_BL2 := yes
1064
1065 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1066 # Certificate generation tools. This flag can be overridden by the platform.
1067 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001068 # If booting an EL3 payload there is no need for a BL33 image
1069 # in the FIP file.
1070 NEED_BL33 := no
1071 else
1072 ifdef PRELOADED_BL33_BASE
1073 # If booting a BL33 preloaded image there is no need of
1074 # another one in the FIP file.
1075 NEED_BL33 := no
1076 else
1077 NEED_BL33 ?= yes
1078 endif
1079 endif
1080endif #(BL2_SOURCES)
Juan Castillo73c99d42015-08-18 14:23:04 +01001081
Manish Pandey5f24ce92021-10-06 10:59:52 +01001082ifdef BL2U_SOURCES
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001083 NEED_BL2U := yes
1084endif #(BL2U_SOURCES)
Manish Pandey5f24ce92021-10-06 10:59:52 +01001085
Masahiro Yamada4d045d02017-04-05 19:11:41 +09001086# If SCP_BL2 is given, we always want FIP to include it.
1087ifdef SCP_BL2
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001088 NEED_SCP_BL2 := yes
1089endif #(SCP_BL2)
Masahiro Yamada4d045d02017-04-05 19:11:41 +09001090
Soby Mathew5744e872017-11-14 14:10:10 +00001091# For AArch32, BL31 is not currently supported.
1092ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001093 ifdef BL31_SOURCES
1094 # When booting an EL3 payload, there is no need to compile the BL31
1095 # image nor put it in the FIP.
1096 ifndef EL3_PAYLOAD_BASE
1097 NEED_BL31 := yes
1098 endif
1099 endif
1100endif #(ARCH=aarch64)
Soby Mathew5744e872017-11-14 14:10:10 +00001101
Juan Castillo73c99d42015-08-18 14:23:04 +01001102# Process TBB related flags
1103ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001104 # Common cert_create options
1105 ifneq (${CREATE_KEYS},0)
Juan Castillo73c99d42015-08-18 14:23:04 +01001106 $(eval CRT_ARGS += -n)
Yatharth Kochar01912622015-10-12 12:33:47 +01001107 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001108 ifneq (${SAVE_KEYS},0)
Juan Castillo73c99d42015-08-18 14:23:04 +01001109 $(eval CRT_ARGS += -k)
Yatharth Kochar01912622015-10-12 12:33:47 +01001110 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001111 endif
1112 endif
1113 # Include TBBR makefile (unless the platform indicates otherwise)
1114 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castillo73c99d42015-08-18 14:23:04 +01001115 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001116 endif
1117endif #(GENERATE_COT)
Juan Castillo73c99d42015-08-18 14:23:04 +01001118
Masahiro Yamada1c75d5d2016-12-25 13:52:22 +09001119ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001120 FIP_ARGS += --align ${FIP_ALIGN}
1121endif #(FIP_ALIGN)
Masahiro Yamada1c75d5d2016-12-25 13:52:22 +09001122
Manish Pandey5f24ce92021-10-06 10:59:52 +01001123ifdef FDT_SOURCES
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001124 NEED_FDT := yes
1125endif #(FDT_SOURCES)
Manish Pandey5f24ce92021-10-06 10:59:52 +01001126
Juan Castillo73c99d42015-08-18 14:23:04 +01001127################################################################################
Michalis Pappas46e5e032018-03-20 13:01:27 +08001128# Include libraries' Makefile that are used in all BL
1129################################################################################
1130
1131include lib/stack_protector/stack_protector.mk
1132
1133################################################################################
Soby Mathew8a860522017-02-14 10:05:07 +00001134# Include BL specific makefiles
1135################################################################################
Manish Pandey5f24ce92021-10-06 10:59:52 +01001136
1137ifeq (${NEED_BL1},yes)
Soby Mathew8a860522017-02-14 10:05:07 +00001138include bl1/bl1.mk
1139endif
1140
Manish Pandey5f24ce92021-10-06 10:59:52 +01001141ifeq (${NEED_BL2},yes)
Soby Mathew8a860522017-02-14 10:05:07 +00001142include bl2/bl2.mk
1143endif
1144
Manish Pandey5f24ce92021-10-06 10:59:52 +01001145ifeq (${NEED_BL2U},yes)
Soby Mathew8a860522017-02-14 10:05:07 +00001146include bl2u/bl2u.mk
1147endif
1148
Soby Mathew5744e872017-11-14 14:10:10 +00001149ifeq (${NEED_BL31},yes)
Soby Mathew8a860522017-02-14 10:05:07 +00001150include bl31/bl31.mk
1151endif
Nishanth Menon03b397a2016-10-14 01:13:57 +00001152
Juan Castillo73c99d42015-08-18 14:23:04 +01001153################################################################################
1154# Build options checks
1155################################################################################
Juan Castillob7124ea2014-11-04 17:36:40 +00001156
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001157# Boolean_Flags
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001158$(eval $(call assert_booleans,\
1159 $(sort \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001160 ALLOW_RO_XLAT_TABLES \
1161 BL2_ENABLE_SP_LOAD \
1162 COLD_BOOT_SINGLE_CPU \
1163 CREATE_KEYS \
1164 CTX_INCLUDE_AARCH32_REGS \
1165 CTX_INCLUDE_FPREGS \
1166 CTX_INCLUDE_EL2_REGS \
1167 DEBUG \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001168 DYN_DISABLE_AUTH \
1169 EL3_EXCEPTION_HANDLING \
1170 ENABLE_AMU_AUXILIARY_COUNTERS \
1171 ENABLE_AMU_FCONF \
1172 AMU_RESTRICT_COUNTERS \
1173 ENABLE_ASSERTIONS \
1174 ENABLE_FEAT_SB \
1175 ENABLE_PIE \
1176 ENABLE_PMF \
1177 ENABLE_PSCI_STAT \
1178 ENABLE_RUNTIME_INSTRUMENTATION \
1179 ENABLE_SME_FOR_SWD \
1180 ENABLE_SVE_FOR_SWD \
1181 ERROR_DEPRECATED \
1182 FAULT_INJECTION_SUPPORT \
1183 GENERATE_COT \
1184 GICV2_G0_FOR_EL3 \
1185 HANDLE_EA_EL3_FIRST_NS \
Bipin Ravi538516f2023-09-28 13:17:24 -05001186 HARDEN_SLS \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001187 HW_ASSISTED_COHERENCY \
1188 MEASURED_BOOT \
1189 DRTM_SUPPORT \
1190 NS_TIMER_SWITCH \
1191 OVERRIDE_LIBC \
1192 PL011_GENERIC_UART \
1193 PLAT_RSS_NOT_SUPPORTED \
1194 PROGRAMMABLE_RESET_ADDRESS \
1195 PSCI_EXTENDED_STATE_ID \
1196 PSCI_OS_INIT_MODE \
1197 RESET_TO_BL31 \
1198 SAVE_KEYS \
1199 SEPARATE_CODE_AND_RODATA \
1200 SEPARATE_BL2_NOLOAD_REGION \
1201 SEPARATE_NOBITS_REGION \
1202 SPIN_ON_BL1_EXIT \
1203 SPM_MM \
1204 SPMC_AT_EL3 \
Nishant Sharma801cd3c2023-06-27 00:36:01 +01001205 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001206 SPMD_SPM_AT_SEL2 \
Raghu Krishnamurthy890b5082023-02-25 13:26:10 -08001207 ENABLE_SPMD_LP \
Raymond Mao3ba2c152023-07-25 07:53:35 -07001208 TRANSFER_LIST \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001209 TRUSTED_BOARD_BOOT \
1210 USE_COHERENT_MEM \
1211 USE_DEBUGFS \
1212 ARM_IO_IN_DTB \
1213 SDEI_IN_FCONF \
1214 SEC_INT_DESC_IN_FCONF \
1215 USE_ROMLIB \
1216 USE_TBBR_DEFS \
1217 WARMBOOT_ENABLE_DCACHE_EARLY \
1218 RESET_TO_BL2 \
1219 BL2_IN_XIP_MEM \
1220 BL2_INV_DCACHE \
1221 USE_SPINLOCK_CAS \
1222 ENCRYPT_BL31 \
1223 ENCRYPT_BL32 \
1224 ERRATA_SPECULATIVE_AT \
1225 RAS_TRAP_NS_ERR_REC_ACCESS \
1226 COT_DESC_IN_DTB \
1227 USE_SP804_TIMER \
1228 PSA_FWU_SUPPORT \
1229 ENABLE_MPMM \
1230 ENABLE_MPMM_FCONF \
1231 FEATURE_DETECTION \
Jayanth Dodderi Chidanand0b22e592022-10-11 17:16:07 +01001232 TRNG_SUPPORT \
Sona Mathewffea3842022-11-18 18:05:38 -06001233 ERRATA_ABI_SUPPORT \
Sona Mathewef63f5b2023-03-14 14:02:03 -05001234 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja04c73032022-11-04 12:38:01 +00001235 CONDITIONAL_CMO \
Manish Pandey9202d512023-02-13 12:39:17 +00001236 RAS_FFH_SUPPORT \
Manish V Badarkhe5782b892023-09-06 09:08:28 +01001237 PSA_CRYPTO \
Sandrine Bailleux85bebe12023-10-11 08:38:00 +02001238 ENABLE_CONSOLE_GETC \
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001239)))
Juan Castillo73c99d42015-08-18 14:23:04 +01001240
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001241# Numeric_Flags
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001242$(eval $(call assert_numerics,\
1243 $(sort \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001244 ARM_ARCH_MAJOR \
1245 ARM_ARCH_MINOR \
1246 BRANCH_PROTECTION \
1247 CTX_INCLUDE_PAUTH_REGS \
1248 CTX_INCLUDE_MTE_REGS \
1249 CTX_INCLUDE_NEVE_REGS \
1250 CRYPTO_SUPPORT \
Boyan Karatotev83a4dae2023-02-16 09:45:29 +00001251 DISABLE_MTPMU \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001252 ENABLE_BRBE_FOR_NS \
1253 ENABLE_TRBE_FOR_NS \
1254 ENABLE_BTI \
1255 ENABLE_PAUTH \
1256 ENABLE_FEAT_AMU \
1257 ENABLE_FEAT_AMUv1p1 \
1258 ENABLE_FEAT_CSV2_2 \
1259 ENABLE_FEAT_RAS \
1260 ENABLE_FEAT_DIT \
1261 ENABLE_FEAT_ECV \
1262 ENABLE_FEAT_FGT \
1263 ENABLE_FEAT_HCX \
1264 ENABLE_FEAT_PAN \
1265 ENABLE_FEAT_RNG \
1266 ENABLE_FEAT_RNG_TRAP \
1267 ENABLE_FEAT_SEL2 \
1268 ENABLE_FEAT_TCR2 \
1269 ENABLE_FEAT_S2PIE \
1270 ENABLE_FEAT_S1PIE \
1271 ENABLE_FEAT_S2POE \
1272 ENABLE_FEAT_S1POE \
1273 ENABLE_FEAT_GCS \
1274 ENABLE_FEAT_VHE \
Maksims Svecovs4d0b6632023-03-24 13:05:09 +00001275 ENABLE_FEAT_MTE_PERM \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001276 ENABLE_MPAM_FOR_LOWER_ELS \
1277 ENABLE_RME \
1278 ENABLE_SPE_FOR_NS \
1279 ENABLE_SYS_REG_TRACE_FOR_NS \
1280 ENABLE_SME_FOR_NS \
1281 ENABLE_SME2_FOR_NS \
1282 ENABLE_SVE_FOR_NS \
1283 ENABLE_TRF_FOR_NS \
1284 FW_ENC_STATUS \
1285 NR_OF_FW_BANKS \
1286 NR_OF_IMAGES_IN_FW_BANK \
1287 TWED_DELAY \
1288 ENABLE_FEAT_TWED \
1289 SVE_VECTOR_LEN \
Varun Wadekar0ed3be62023-04-13 21:06:18 +01001290 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001291)))
Jeenu Viswambharanc877b412017-01-16 16:52:35 +00001292
Justin Chadwellaacff742019-07-29 17:13:10 +01001293ifdef KEY_SIZE
1294 $(eval $(call assert_numeric,KEY_SIZE))
1295endif
1296
Justin Chadwell1f461972019-08-20 11:01:52 +01001297ifeq ($(filter $(SANITIZE_UB), on off trap),)
1298 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1299endif
1300
Juan Castillo73c99d42015-08-18 14:23:04 +01001301################################################################################
1302# Add definitions to the cpp preprocessor based on the current build options.
1303# This is done after including the platform specific makefile to allow the
1304# platform to overwrite the default options
1305################################################################################
1306
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001307$(eval $(call add_defines,\
1308 $(sort \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001309 ALLOW_RO_XLAT_TABLES \
1310 ARM_ARCH_MAJOR \
1311 ARM_ARCH_MINOR \
1312 BL2_ENABLE_SP_LOAD \
1313 COLD_BOOT_SINGLE_CPU \
1314 CTX_INCLUDE_AARCH32_REGS \
1315 CTX_INCLUDE_FPREGS \
1316 CTX_INCLUDE_PAUTH_REGS \
1317 EL3_EXCEPTION_HANDLING \
1318 CTX_INCLUDE_MTE_REGS \
1319 CTX_INCLUDE_EL2_REGS \
1320 CTX_INCLUDE_NEVE_REGS \
1321 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1322 DISABLE_MTPMU \
1323 ENABLE_FEAT_AMU \
1324 ENABLE_AMU_AUXILIARY_COUNTERS \
1325 ENABLE_AMU_FCONF \
1326 AMU_RESTRICT_COUNTERS \
1327 ENABLE_ASSERTIONS \
1328 ENABLE_BTI \
1329 ENABLE_MPAM_FOR_LOWER_ELS \
1330 ENABLE_PAUTH \
1331 ENABLE_PIE \
1332 ENABLE_PMF \
1333 ENABLE_PSCI_STAT \
1334 ENABLE_RME \
1335 ENABLE_RUNTIME_INSTRUMENTATION \
1336 ENABLE_SME_FOR_NS \
1337 ENABLE_SME2_FOR_NS \
1338 ENABLE_SME_FOR_SWD \
1339 ENABLE_SPE_FOR_NS \
1340 ENABLE_SVE_FOR_NS \
1341 ENABLE_SVE_FOR_SWD \
1342 ENCRYPT_BL31 \
1343 ENCRYPT_BL32 \
1344 ERROR_DEPRECATED \
1345 FAULT_INJECTION_SUPPORT \
1346 GICV2_G0_FOR_EL3 \
1347 HANDLE_EA_EL3_FIRST_NS \
1348 HW_ASSISTED_COHERENCY \
1349 LOG_LEVEL \
1350 MEASURED_BOOT \
1351 DRTM_SUPPORT \
1352 NS_TIMER_SWITCH \
1353 PL011_GENERIC_UART \
1354 PLAT_${PLAT} \
1355 PLAT_RSS_NOT_SUPPORTED \
1356 PROGRAMMABLE_RESET_ADDRESS \
1357 PSCI_EXTENDED_STATE_ID \
1358 PSCI_OS_INIT_MODE \
1359 ENABLE_FEAT_RAS \
1360 RAS_FFH_SUPPORT \
1361 RESET_TO_BL31 \
1362 SEPARATE_CODE_AND_RODATA \
1363 SEPARATE_BL2_NOLOAD_REGION \
1364 SEPARATE_NOBITS_REGION \
1365 RECLAIM_INIT_CODE \
1366 SPD_${SPD} \
1367 SPIN_ON_BL1_EXIT \
1368 SPM_MM \
1369 SPMC_AT_EL3 \
Nishant Sharma801cd3c2023-06-27 00:36:01 +01001370 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001371 SPMD_SPM_AT_SEL2 \
Raymond Mao3ba2c152023-07-25 07:53:35 -07001372 TRANSFER_LIST \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001373 TRUSTED_BOARD_BOOT \
1374 CRYPTO_SUPPORT \
1375 TRNG_SUPPORT \
1376 ERRATA_ABI_SUPPORT \
Sona Mathewef63f5b2023-03-14 14:02:03 -05001377 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001378 USE_COHERENT_MEM \
1379 USE_DEBUGFS \
1380 ARM_IO_IN_DTB \
1381 SDEI_IN_FCONF \
1382 SEC_INT_DESC_IN_FCONF \
1383 USE_ROMLIB \
1384 USE_TBBR_DEFS \
1385 WARMBOOT_ENABLE_DCACHE_EARLY \
1386 RESET_TO_BL2 \
1387 BL2_RUNS_AT_EL3 \
1388 BL2_IN_XIP_MEM \
1389 BL2_INV_DCACHE \
1390 USE_SPINLOCK_CAS \
1391 ERRATA_SPECULATIVE_AT \
1392 RAS_TRAP_NS_ERR_REC_ACCESS \
1393 COT_DESC_IN_DTB \
1394 USE_SP804_TIMER \
1395 ENABLE_FEAT_RNG \
1396 ENABLE_FEAT_RNG_TRAP \
1397 ENABLE_FEAT_SB \
1398 ENABLE_FEAT_DIT \
1399 NR_OF_FW_BANKS \
1400 NR_OF_IMAGES_IN_FW_BANK \
1401 PSA_FWU_SUPPORT \
1402 ENABLE_BRBE_FOR_NS \
1403 ENABLE_TRBE_FOR_NS \
1404 ENABLE_SYS_REG_TRACE_FOR_NS \
1405 ENABLE_TRF_FOR_NS \
1406 ENABLE_FEAT_HCX \
1407 ENABLE_MPMM \
1408 ENABLE_MPMM_FCONF \
1409 ENABLE_FEAT_FGT \
1410 ENABLE_FEAT_ECV \
1411 ENABLE_FEAT_AMUv1p1 \
1412 ENABLE_FEAT_SEL2 \
1413 ENABLE_FEAT_VHE \
1414 ENABLE_FEAT_CSV2_2 \
1415 ENABLE_FEAT_PAN \
1416 ENABLE_FEAT_TCR2 \
1417 ENABLE_FEAT_S2PIE \
1418 ENABLE_FEAT_S1PIE \
1419 ENABLE_FEAT_S2POE \
1420 ENABLE_FEAT_S1POE \
1421 ENABLE_FEAT_GCS \
Maksims Svecovs4d0b6632023-03-24 13:05:09 +00001422 ENABLE_FEAT_MTE_PERM \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001423 FEATURE_DETECTION \
1424 TWED_DELAY \
1425 ENABLE_FEAT_TWED \
Okash Khawaja04c73032022-11-04 12:38:01 +00001426 CONDITIONAL_CMO \
Varun Wadekar0ed3be62023-04-13 21:06:18 +01001427 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidananda8cf6fa2023-04-26 15:57:30 +01001428 SVE_VECTOR_LEN \
Raghu Krishnamurthy890b5082023-02-25 13:26:10 -08001429 ENABLE_SPMD_LP \
Manish V Badarkhe5782b892023-09-06 09:08:28 +01001430 PSA_CRYPTO \
Sandrine Bailleux85bebe12023-10-11 08:38:00 +02001431 ENABLE_CONSOLE_GETC \
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001432)))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +01001433
Justin Chadwell1f461972019-08-20 11:01:52 +01001434ifeq (${SANITIZE_UB},trap)
1435 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001436endif #(SANITIZE_UB)
Justin Chadwell1f461972019-08-20 11:01:52 +01001437
Sandrine Bailleux4c117f62015-11-26 16:31:34 +00001438# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1439ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +00001440 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1441else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001442# Define the PRELOADED_BL33_BASE flag only if it is provided and
1443# EL3_PAYLOAD_BASE is not defined, as it has priority.
1444 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz68450a62016-04-06 17:31:57 +01001445 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001446 endif
1447endif #(EL3_PAYLOAD_BASE)
Juan Castillo73c99d42015-08-18 14:23:04 +01001448
Soby Mathew209a60c2018-03-26 12:43:37 +01001449# Define the DYN_DISABLE_AUTH flag only if set.
1450ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001451 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew209a60c2018-03-26 12:43:37 +01001452endif
1453
Varun Wadekarc2ad38c2019-01-11 14:47:48 -08001454ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001455 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekarc2ad38c2019-01-11 14:47:48 -08001456endif
1457
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001458# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001459ifeq (${SPD},spmd)
Olivier Deprezc33ff192020-03-19 09:27:11 +01001460ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001461 -include $(BUILD_PLAT)/sp_gen.mk
1462 FIP_DEPS += sp
1463 CRT_DEPS += sp
1464 NEED_SP_PKG := yes
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001465else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001466 ifeq (${SPMD_SPM_AT_SEL2},1)
1467 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1468 endif
1469endif #(SP_LAYOUT_FILE)
1470endif #(SPD)
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001471
Juan Castillo73c99d42015-08-18 14:23:04 +01001472################################################################################
Juan Castillo73c99d42015-08-18 14:23:04 +01001473# Build targets
1474################################################################################
1475
Sumit Garg90aa9012019-11-11 18:46:36 +05301476.PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp fwu_fip certtool dtbs memmap doc enctool
Juan Castillo73c99d42015-08-18 14:23:04 +01001477.SUFFIXES:
1478
1479all: msg_start
1480
1481msg_start:
1482 @echo "Building ${PLAT}"
1483
Soby Mathew7a24cba2015-10-26 14:29:21 +00001484ifeq (${ERROR_DEPRECATED},0)
Julius Wernerd5dfdeb2019-07-09 13:49:11 -07001485# Check if deprecated declarations and cpp warnings should be treated as error or not.
Varun Wadekarc2ad38c2019-01-11 14:47:48 -08001486ifneq ($(findstring clang,$(notdir $(CC))),)
1487 CPPFLAGS += -Wno-error=deprecated-declarations
1488else
Dan Handleybc1a03c2018-02-27 16:03:58 +00001489 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew7a24cba2015-10-26 14:29:21 +00001490endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001491endif #(!ERROR_DEPRECATED)
Soby Mathew7a24cba2015-10-26 14:29:21 +00001492
Roberto Vargas5accce52018-05-22 16:05:42 +01001493$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas61f72a32018-05-08 10:27:10 +01001494$(eval $(call MAKE_LIB,c))
Roberto Vargas5fee0282018-05-08 10:27:10 +01001495
Juan Castillo73c99d42015-08-18 14:23:04 +01001496# Expand build macros for the different images
1497ifeq (${NEED_BL1},yes)
Chris Kayb34635a2021-09-28 15:44:19 +01001498BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Aweke434d0492021-07-11 17:25:48 -05001499$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001500endif #(NEED_BL1)
Juan Castillo73c99d42015-08-18 14:23:04 +01001501
1502ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001503
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -06001504ifeq (${RESET_TO_BL2}, 0)
Roberto Vargasc9b31ae2018-01-02 11:23:41 +00001505FIP_BL2_ARGS := tb-fw
1506endif
1507
Chris Kayeb1acfb2021-09-28 15:44:37 +01001508BL2_SOURCES := $(sort ${BL2_SOURCES})
1509
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001510$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Aweke434d0492021-07-11 17:25:48 -05001511 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001512
1513endif #(NEED_BL2)
Juan Castillo73c99d42015-08-18 14:23:04 +01001514
Masahiro Yamada4d045d02017-04-05 19:11:41 +09001515ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001516$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001517endif #(NEED_SCP_BL2)
Masahiro Yamada4d045d02017-04-05 19:11:41 +09001518
Juan Castillo73c99d42015-08-18 14:23:04 +01001519ifeq (${NEED_BL31},yes)
1520BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddy26d1e0c2020-01-27 13:37:51 -06001521# Sort BL31 source files to remove duplicates
1522BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargc6ba9b42019-11-14 16:33:45 +05301523ifneq (${DECRYPTION_SUPPORT},none)
1524$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Aweke434d0492021-07-11 17:25:48 -05001525 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargc6ba9b42019-11-14 16:33:45 +05301526else
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001527$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Aweke434d0492021-07-11 17:25:48 -05001528 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001529endif #(DECRYPTION_SUPPORT)
1530endif #(NEED_BL31)
Juan Castillo73c99d42015-08-18 14:23:04 +01001531
Juan Castillo70d1fc52015-11-12 10:59:26 +00001532# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamadac939d132018-01-26 11:42:01 +09001533# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo70d1fc52015-11-12 10:59:26 +00001534# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castillo73c99d42015-08-18 14:23:04 +01001535ifeq (${NEED_BL32},yes)
Madhukar Pappireddy26d1e0c2020-01-27 13:37:51 -06001536# Sort BL32 source files to remove duplicates
1537BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada9cd15232018-01-26 11:42:01 +09001538BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1539
Sumit Gargc6ba9b42019-11-14 16:33:45 +05301540ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Aweke434d0492021-07-11 17:25:48 -05001541$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargc6ba9b42019-11-14 16:33:45 +05301542 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1543else
Zelalem Aweke434d0492021-07-11 17:25:48 -05001544$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001545 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001546endif #(DECRYPTION_SUPPORT)
1547endif #(NEED_BL32)
Juan Castillo73c99d42015-08-18 14:23:04 +01001548
Zelalem Aweke5b18de02021-07-11 18:33:20 -05001549# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1550# needs to be built from RMM_SOURCES.
1551ifeq (${NEED_RMM},yes)
1552# Sort RMM source files to remove duplicates
1553RMM_SOURCES := $(sort ${RMM_SOURCES})
1554BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1555
1556$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001557 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1558endif #(NEED_RMM)
Zelalem Aweke5b18de02021-07-11 18:33:20 -05001559
Juan Castillo73c99d42015-08-18 14:23:04 +01001560# Add the BL33 image if required by the platform
1561ifeq (${NEED_BL33},yes)
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001562$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001563endif #(NEED_BL33)
Juan Castillodb6071c2015-01-13 12:21:04 +00001564
Yatharth Kochar9003fa02015-10-14 15:27:24 +01001565ifeq (${NEED_BL2U},yes)
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001566$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Aweke434d0492021-07-11 17:25:48 -05001567 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001568endif #(NEED_BL2U)
Yatharth Kochar9003fa02015-10-14 15:27:24 +01001569
Nishanth Menon03b397a2016-10-14 01:13:57 +00001570# Expand build macros for the different images
1571ifeq (${NEED_FDT},yes)
Soby Mathew38c14d82017-12-14 17:44:56 +00001572 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001573endif #(NEED_FDT)
Nishanth Menon03b397a2016-10-14 01:13:57 +00001574
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001575# Add Secure Partition packages
1576ifeq (${NEED_SP_PKG},yes)
Karl Meakin20629b32023-02-14 11:56:02 +00001577$(BUILD_PLAT)/sp_gen.mk : ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
1578 ${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
J-Alves822c7272022-03-22 16:28:51 +00001579sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001580 @${ECHO_BLANK_LINE}
1581 @echo "Built SP Images successfully"
1582 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001583endif #(NEED_SP_PKG)
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001584
Ian Spray36eaaf32014-01-30 17:25:28 +00001585locate-checkpatch:
1586ifndef CHECKPATCH
Etienne Carriere66079b02017-08-23 15:44:01 +02001587 $(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 +00001588else
1589ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carriere66079b02017-08-23 15:44:01 +02001590 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001591endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001592endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001593
Achin Gupta4f6ad662013-10-25 09:08:21 +01001594clean:
Juan Castillo73c99d42015-08-18 14:23:04 +01001595 @echo " CLEAN"
Evan Lloydf1477d42015-12-02 18:33:55 +00001596 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001597ifdef UNIX_MK
Juan Castillo73c99d42015-08-18 14:23:04 +01001598 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001599else
1600# Clear the MAKEFLAGS as we do not want
1601# to pass the gnumake flags to nmake.
1602 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001603endif #(UNIX_MK)
Juan Castillo73c99d42015-08-18 14:23:04 +01001604 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Sumit Garg90aa9012019-11-11 18:46:36 +05301605 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
Roberto Vargas5accce52018-05-22 16:05:42 +01001606 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001607
James Morrisseyeaaeece2013-11-01 13:56:59 +00001608realclean distclean:
Juan Castillo73c99d42015-08-18 14:23:04 +01001609 @echo " REALCLEAN"
Evan Lloydf1477d42015-12-02 18:33:55 +00001610 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1611 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001612ifdef UNIX_MK
Juan Castillo73c99d42015-08-18 14:23:04 +01001613 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001614else
1615# Clear the MAKEFLAGS as we do not want
1616# to pass the gnumake flags to nmake.
1617 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001618endif #(UNIX_MK)
Nicolas Boulengueze15591a2021-03-31 12:22:45 +02001619 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
Sumit Garg90aa9012019-11-11 18:46:36 +05301620 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
Roberto Vargas5accce52018-05-22 16:05:42 +01001621 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001622
Ian Spray36eaaf32014-01-30 17:25:28 +00001623checkcodebase: locate-checkpatch
Juan Castillo73c99d42015-08-18 14:23:04 +01001624 @echo " CHECKING STYLE"
Dan Handley1a41e8c2016-06-02 18:21:02 +01001625 @if test -d .git ; then \
Paul Beesley1ef35512019-03-07 16:42:31 +00001626 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley1a41e8c2016-06-02 18:21:02 +01001627 while read GIT_FILE ; \
1628 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1629 done ; \
1630 else \
1631 find . -type f -not -iwholename "*.git*" \
1632 -not -iwholename "*build*" \
1633 -not -iwholename "*libfdt*" \
Roberto Vargas61f72a32018-05-08 10:27:10 +01001634 -not -iwholename "*libc*" \
Dan Handley1a41e8c2016-06-02 18:21:02 +01001635 -not -iwholename "*docs*" \
Paul Beesley1ef35512019-03-07 16:42:31 +00001636 -not -iwholename "*.rst" \
Dan Handley1a41e8c2016-06-02 18:21:02 +01001637 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1638 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001639
1640checkpatch: locate-checkpatch
Juan Castillo73c99d42015-08-18 14:23:04 +01001641 @echo " CHECKING STYLE"
Yann Gautier02a76d52019-03-08 15:44:00 +01001642 @if test -n "${CHECKPATCH_OPTS}"; then \
1643 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1644 fi
Antonio Nino Diaz51d28932018-01-29 12:00:31 +00001645 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautier77a0a7f2021-11-02 18:03:31 +01001646 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1647 do \
Antonio Nino Diaz51d28932018-01-29 12:00:31 +00001648 printf "\n[*] Checking style of '$$commit'\n\n"; \
1649 git log --format=email "$$commit~..$$commit" \
Yann Gautier02a76d52019-03-08 15:44:00 +01001650 -- ${CHECK_PATHS} | \
1651 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz51d28932018-01-29 12:00:31 +00001652 git diff --format=email "$$commit~..$$commit" \
Yann Gautier02a76d52019-03-08 15:44:00 +01001653 -- ${CHECK_PATHS} | \
1654 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz51d28932018-01-29 12:00:31 +00001655 done
Juan Castillo73c99d42015-08-18 14:23:04 +01001656
1657certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001658
Pali Rohára9812202020-11-24 15:38:08 +01001659${CRTTOOL}: FORCE
Lionel Debieve598b1662022-11-14 11:05:09 +01001660 ${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 Lloydf1477d42015-12-02 18:33:55 +00001661 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +01001662 @echo "Built $@ successfully"
Evan Lloydf1477d42015-12-02 18:33:55 +00001663 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +01001664
1665ifneq (${GENERATE_COT},0)
1666certificates: ${CRT_DEPS} ${CRTTOOL}
1667 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloydf1477d42015-12-02 18:33:55 +00001668 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +01001669 @echo "Built $@ successfully"
1670 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloydf1477d42015-12-02 18:33:55 +00001671 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001672endif #(GENERATE_COT)
Juan Castillo73c99d42015-08-18 14:23:04 +01001673
1674${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohár4727fd12020-11-24 16:53:04 +01001675 $(eval ${CHECK_FIP_CMD})
dp-arm819281e2016-05-25 16:20:20 +01001676 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
1677 ${Q}${FIPTOOL} info $@
Evan Lloydf1477d42015-12-02 18:33:55 +00001678 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +01001679 @echo "Built $@ successfully"
Evan Lloydf1477d42015-12-02 18:33:55 +00001680 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +01001681
Yatharth Kochar01912622015-10-12 12:33:47 +01001682ifneq (${GENERATE_COT},0)
1683fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1684 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd052ab522017-04-11 16:52:00 +01001685 @${ECHO_BLANK_LINE}
Yatharth Kochar01912622015-10-12 12:33:47 +01001686 @echo "Built $@ successfully"
1687 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd052ab522017-04-11 16:52:00 +01001688 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001689endif #(GENERATE_COT)
Yatharth Kochar01912622015-10-12 12:33:47 +01001690
1691${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohár4727fd12020-11-24 16:53:04 +01001692 $(eval ${CHECK_FWU_FIP_CMD})
dp-arm819281e2016-05-25 16:20:20 +01001693 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1694 ${Q}${FIPTOOL} info $@
Evan Lloyd052ab522017-04-11 16:52:00 +01001695 @${ECHO_BLANK_LINE}
Yatharth Kochar01912622015-10-12 12:33:47 +01001696 @echo "Built $@ successfully"
Evan Lloyd052ab522017-04-11 16:52:00 +01001697 @${ECHO_BLANK_LINE}
Yatharth Kochar01912622015-10-12 12:33:47 +01001698
Juan Castillo73c99d42015-08-18 14:23:04 +01001699fiptool: ${FIPTOOL}
1700fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochar01912622015-10-12 12:33:47 +01001701fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Juan Castillo6f971622014-10-21 11:30:42 +01001702
Pali Rohára9812202020-11-24 15:38:08 +01001703${FIPTOOL}: FORCE
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001704ifdef UNIX_MK
Lionel Debieve598b1662022-11-14 11:05:09 +01001705 ${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${FIPTOOLPATH} all
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001706else
1707# Clear the MAKEFLAGS as we do not want
1708# to pass the gnumake flags to nmake.
1709 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001710endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001711
Pali Rohára9812202020-11-24 15:38:08 +01001712romlib.bin: libraries FORCE
John Tsichritzisbbb24f62019-05-21 15:47:37 +01001713 ${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 Vargas5accce52018-05-22 16:05:42 +01001714
Louis Mayencourtcfe83912019-10-16 14:30:51 +01001715memmap: all
Harrison Mutaiaf5b49e2023-02-23 10:33:58 +00001716ifdef UNIX_MK
1717 ${Q}PYTHONPATH=${CURDIR}/tools/memory \
1718 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1719else
1720 ${Q}set PYTHONPATH=${CURDIR}/tools/memory && \
1721 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1722endif
Louis Mayencourtcfe83912019-10-16 14:30:51 +01001723
Madhukar Pappireddy6de32372020-01-28 12:41:20 -06001724doc:
1725 @echo " BUILD DOCUMENTATION"
1726 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1727
Sumit Garg90aa9012019-11-11 18:46:36 +05301728enctool: ${ENCTOOL}
1729
Pali Rohára9812202020-11-24 15:38:08 +01001730${ENCTOOL}: FORCE
Lionel Debieve598b1662022-11-14 11:05:09 +01001731 ${Q}${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${ENCTOOLPATH} all
Sumit Garg90aa9012019-11-11 18:46:36 +05301732 @${ECHO_BLANK_LINE}
1733 @echo "Built $@ successfully"
1734 @${ECHO_BLANK_LINE}
1735
Joakim Bech35fab8c2014-01-23 14:51:49 +01001736cscope:
1737 @echo " CSCOPE"
1738 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1739 ${Q}cscope -b -q -k
1740
Ryan Harkin72ee3312014-01-15 16:55:07 +00001741help:
John Tsichritzis7c231262019-05-21 15:57:31 +01001742 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001743 @echo ""
1744 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleux08c7ed02014-03-21 13:16:35 +00001745 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001746 @echo ""
John Tsichritzis7c231262019-05-21 15:57:31 +01001747 @echo "platform = ${PLATFORM_LIST}"
1748 @echo ""
Sandrine Bailleux1b578592015-02-18 16:18:00 +00001749 @echo "Please refer to the User Guide for a list of all supported options."
1750 @echo "Note that the build system doesn't track dependencies for build "
1751 @echo "options. Therefore, if any of the build options are changed "
1752 @echo "from a previous build, a clean build must be performed."
1753 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +00001754 @echo "Supported Targets:"
Sandrine Bailleux1b578592015-02-18 16:18:00 +00001755 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +00001756 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +00001757 @echo " bl2 Build the BL2 binary"
Yatharth Kochar9003fa02015-10-14 15:27:24 +01001758 @echo " bl2u Build the BL2U binary"
Juan Castillod1786372015-12-14 09:35:25 +00001759 @echo " bl31 Build the BL31 binary"
Soby Mathew9d29c222016-05-05 14:33:33 +01001760 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1761 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castillo73c99d42015-08-18 14:23:04 +01001762 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleux1b578592015-02-18 16:18:00 +00001763 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochar01912622015-10-12 12:33:47 +01001764 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +00001765 @echo " checkcodebase Check the coding style of the entire source tree"
1766 @echo " checkpatch Check the coding style on changes in the current"
1767 @echo " branch against BASE_COMMIT (default origin/master)"
1768 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +00001769 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +00001770 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo6f971622014-10-21 11:30:42 +01001771 @echo " certtool Build the Certificate generation tool"
Sumit Garg90aa9012019-11-11 18:46:36 +05301772 @echo " enctool Build the Firmware encryption tool"
Andreas Färber59dead22016-10-10 05:18:49 +02001773 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001774 @echo " sp Build the Secure Partition Packages"
Antonio Nino Diaz26010da2018-11-27 14:58:04 +00001775 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathew38c14d82017-12-14 17:44:56 +00001776 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Louis Mayencourtcfe83912019-10-16 14:30:51 +01001777 @echo " memmap Print the memory map of the built binaries"
Madhukar Pappireddy6de32372020-01-28 12:41:20 -06001778 @echo " doc Build html based documentation using Sphinx tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001779 @echo ""
Sandrine Bailleux1b578592015-02-18 16:18:00 +00001780 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +00001781 @echo ""
1782 @echo "example: build all targets for the FVP platform:"
1783 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohára9812202020-11-24 15:38:08 +01001784
1785.PHONY: FORCE
1786FORCE:;