blob: a991454be43c214c27dab8736881d6dc040ca2ce [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
Manish V Badarkhe98735802023-11-21 14:35:13 +000011VERSION_MINOR := 10
Yann Gautier3e56c692023-10-04 18:59:44 +020012VERSION_PATCH := 0 # Only used for LTS releases
Yann Gautier055ebec2023-10-03 11:09:07 +020013VERSION := ${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_DRV_DIRS_TO_CHECK := $(sort $(filter-out \
45 include/drivers/arm, \
46 $(wildcard include/drivers/*)))
Dan Handleyf0b489c2016-06-02 17:15:13 +010047INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \
Dan Handley1a41e8c2016-06-02 18:21:02 +010048 include/lib/libfdt \
Roberto Vargas61f72a32018-05-08 10:27:10 +010049 include/lib/libc, \
Dan Handleyf0b489c2016-06-02 17:15:13 +010050 $(wildcard include/lib/*)))
51INC_DIRS_TO_CHECK := $(sort $(filter-out \
Gilad Ben-Yossef45018432019-05-15 09:24:04 +030052 include/lib \
53 include/drivers, \
Dan Handleyf0b489c2016-06-02 17:15:13 +010054 $(wildcard include/*)))
55LIB_DIRS_TO_CHECK := $(sort $(filter-out \
dp-armd801fbb2017-05-04 12:15:35 +010056 lib/compiler-rt \
Antonio Nino Diaz55cdcf72017-01-16 17:20:45 +000057 lib/libfdt% \
Roberto Vargas61f72a32018-05-08 10:27:10 +010058 lib/libc, \
Daniel Boulbya1942552022-10-05 11:05:22 +010059 lib/zlib \
Dan Handleyf0b489c2016-06-02 17:15:13 +010060 $(wildcard lib/*)))
61ROOT_DIRS_TO_CHECK := $(sort $(filter-out \
62 lib \
63 include \
64 docs \
Paul Beesley1ef35512019-03-07 16:42:31 +000065 %.rst, \
Dan Handleyf0b489c2016-06-02 17:15:13 +010066 $(wildcard *)))
67CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \
68 ${INC_DIRS_TO_CHECK} \
69 ${INC_LIB_DIRS_TO_CHECK} \
Gilad Ben-Yossef45018432019-05-15 09:24:04 +030070 ${LIB_DIRS_TO_CHECK} \
71 ${INC_DRV_DIRS_TO_CHECK} \
72 ${INC_ARM_DIRS_TO_CHECK}
Ian Spray36eaaf32014-01-30 17:25:28 +000073
Juan Castillo73c99d42015-08-18 14:23:04 +010074################################################################################
75# Process build options
76################################################################################
77
78# Verbose flag
Jeenu Viswambharane35c4042014-05-15 14:40:58 +010079ifeq (${V},0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +010080 Q:=@
81 ECHO:=@echo
82 CHECKCODE_ARGS += --no-summary --terse
Achin Gupta4f6ad662013-10-25 09:08:21 +010083else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +010084 Q:=
85 ECHO:=$(ECHO_QUIET)
Achin Gupta4f6ad662013-10-25 09:08:21 +010086endif
Andre Przywaraee1ba6d2018-09-27 10:56:05 +010087
88ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +010089 Q:=@
90 ECHO:=$(ECHO_QUIET)
Andre Przywaraee1ba6d2018-09-27 10:56:05 +010091endif
92
93export Q ECHO
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +000094
Juan Castillo73c99d42015-08-18 14:23:04 +010095################################################################################
96# Toolchain
97################################################################################
98
dp-arm72610c42017-05-02 11:09:11 +010099HOSTCC := gcc
100export HOSTCC
101
Juan Castillo73c99d42015-08-18 14:23:04 +0100102CC := ${CROSS_COMPILE}gcc
103CPP := ${CROSS_COMPILE}cpp
104AS := ${CROSS_COMPILE}gcc
105AR := ${CROSS_COMPILE}ar
Roberto Vargas2adee762018-04-13 14:26:47 +0100106LINKER := ${CROSS_COMPILE}ld
Juan Castillo73c99d42015-08-18 14:23:04 +0100107OC := ${CROSS_COMPILE}objcopy
108OD := ${CROSS_COMPILE}objdump
109NM := ${CROSS_COMPILE}nm
110PP := ${CROSS_COMPILE}gcc -E
Soby Mathew38c14d82017-12-14 17:44:56 +0000111DTC := dtc
Juan Castillo73c99d42015-08-18 14:23:04 +0100112
Julius Wernerb25a5772018-01-10 15:12:47 -0800113# Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH).
114ifneq ($(strip $(wildcard ${LD}.bfd) \
Roberto Vargas2adee762018-04-13 14:26:47 +0100115 $(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),)
116LINKER := ${LINKER}.bfd
Julius Wernerb25a5772018-01-10 15:12:47 -0800117endif
118
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100119################################################################################
120# Auxiliary tools (fiptool, cert_create, etc)
121################################################################################
122
123# Variables for use with Certificate Generation Tool
124CRTTOOLPATH ?= tools/cert_create
125CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT}
126
127# Variables for use with Firmware Encryption Tool
128ENCTOOLPATH ?= tools/encrypt_fw
129ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
130
131# Variables for use with Firmware Image Package
132FIPTOOLPATH ?= tools/fiptool
133FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT}
134
135# Variables for use with sptool
136SPTOOLPATH ?= tools/sptool
137SPTOOL ?= ${SPTOOLPATH}/sptool.py
138SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py
Karl Meakin20629b32023-02-14 11:56:02 +0000139SP_DTS_LIST_FRAGMENT ?= ${BUILD_PLAT}/sp_list_fragment.dts
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100140
141# Variables for use with ROMLIB
142ROMLIBPATH ?= lib/romlib
143
144# Variable for use with Python
145PYTHON ?= python3
146
147# Variables for use with documentation build using Sphinx tool
148DOCS_PATH ?= docs
149
150################################################################################
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100151# Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags
152################################################################################
Etienne Carriere26e63c42017-11-08 13:48:40 +0100153ifeq (${ARM_ARCH_MAJOR},7)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100154 target32-directive = -target arm-none-eabi
Govindraj Rajad4089fb2023-05-30 16:52:15 -0500155# Will set march-directive from platform configuration
Etienne Carriere26e63c42017-11-08 13:48:40 +0100156else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100157 target32-directive = -target armv8a-none-eabi
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100158endif #(ARM_ARCH_MAJOR)
159
160################################################################################
161# Get Architecture Feature Modifiers
162################################################################################
163arch-features = ${ARM_ARCH_FEATURE}
164
Alexei Fedorovf1821792020-12-07 16:38:53 +0000165# Set the compiler's architecture feature modifiers
166ifneq ($(arch-features), none)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100167 # Strip "none+" from arch-features
Govindraj Rajad4089fb2023-05-30 16:52:15 -0500168 arch-features := $(subst none+,,$(arch-features))
169 march-directive := $(march-directive)+$(arch-features)
Alexei Fedorovf1821792020-12-07 16:38:53 +0000170# Print features
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100171 $(info Arm Architecture Features specified: $(subst +, ,$(arch-features)))
172endif #(arch-features)
Chris Kay4e044782021-03-09 13:34:35 +0000173
originc8a992f2022-01-19 16:30:14 +0000174ifneq ($(findstring clang,$(notdir $(CC))),)
175 ifneq ($(findstring armclang,$(notdir $(CC))),)
Govindraj Raja7794d6c2023-06-01 16:29:16 -0500176 TF_CFLAGS_aarch32 := -target arm-arm-none-eabi
177 TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi
originc8a992f2022-01-19 16:30:14 +0000178 LD := $(LINKER)
179 else
Govindraj Raja7794d6c2023-06-01 16:29:16 -0500180 TF_CFLAGS_aarch32 = $(target32-directive)
181 TF_CFLAGS_aarch64 := -target aarch64-elf
originc8a992f2022-01-19 16:30:14 +0000182 LD := $(shell $(CC) --print-prog-name ld.lld)
183
184 AR := $(shell $(CC) --print-prog-name llvm-ar)
185 OD := $(shell $(CC) --print-prog-name llvm-objdump)
186 OC := $(shell $(CC) --print-prog-name llvm-objcopy)
187 endif
188
189 CPP := $(CC) -E $(TF_CFLAGS_$(ARCH))
190 PP := $(CC) -E $(TF_CFLAGS_$(ARCH))
191 AS := $(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
zelalem-awekeedbce9a2019-11-12 16:20:17 -0600192else ifneq ($(findstring gcc,$(notdir $(CC))),)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100193 ifeq ($(ENABLE_LTO),1)
194 # Enable LTO only for aarch64
195 ifeq (${ARCH},aarch64)
196 LTO_CFLAGS = -flto
197 # Use gcc as a wrapper for the ld, recommended for LTO
198 LINKER := ${CROSS_COMPILE}gcc
199 endif
zelalem-awekeedbce9a2019-11-12 16:20:17 -0600200 endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100201 LD = $(LINKER)
dp-armd5461852017-05-02 12:00:08 +0100202else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100203 LD = $(LINKER)
204endif #(clang)
dp-armd5461852017-05-02 12:00:08 +0100205
Ahmad Fatoum32b209b2020-02-25 11:25:08 +0100206# Process Debug flag
207$(eval $(call add_define,DEBUG))
208ifneq (${DEBUG}, 0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100209 BUILD_TYPE := debug
210 TF_CFLAGS += -g -gdwarf-4
211 ASFLAGS += -g -Wa,-gdwarf-4
Ahmad Fatoum32b209b2020-02-25 11:25:08 +0100212
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100213 # Use LOG_LEVEL_INFO by default for debug builds
214 LOG_LEVEL := 40
Ahmad Fatoum32b209b2020-02-25 11:25:08 +0100215else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100216 BUILD_TYPE := release
217 # Use LOG_LEVEL_NOTICE by default for release builds
218 LOG_LEVEL := 20
219endif #(Debug)
Ahmad Fatoum32b209b2020-02-25 11:25:08 +0100220
Peiyuan Songf1de4c82020-04-25 16:53:43 +0800221# Default build string (git branch and commit)
222ifeq (${BUILD_STRING},)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100223 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
Peiyuan Songf1de4c82020-04-25 16:53:43 +0800224endif
laurenw-armdddf4282022-07-12 10:12:05 -0500225VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
Peiyuan Songf1de4c82020-04-25 16:53:43 +0800226
Antonio Nino Diaz8fd9d4d2018-08-08 16:28:43 +0100227ifeq (${AARCH32_INSTRUCTION_SET},A32)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100228 TF_CFLAGS_aarch32 += -marm
Antonio Nino Diaz8fd9d4d2018-08-08 16:28:43 +0100229else ifeq (${AARCH32_INSTRUCTION_SET},T32)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100230 TF_CFLAGS_aarch32 += -mthumb
Antonio Nino Diaz8fd9d4d2018-08-08 16:28:43 +0100231else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100232 $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
233endif #(AARCH32_INSTRUCTION_SET)
Antonio Nino Diaz8fd9d4d2018-08-08 16:28:43 +0100234
Sandrine Bailleuxa9c4dde2018-07-03 09:14:45 +0200235TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-armd5461852017-05-02 12:00:08 +0100236TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathew9d29c222016-05-05 14:33:33 +0100237
Govindraj Rajad4089fb2023-05-30 16:52:15 -0500238ASFLAGS += $(march-directive)
Antonio Nino Diazb86048c2019-02-19 11:53:51 +0000239
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100240##############################################################################
241# WARNINGS Configuration
242###############################################################################
Justin Chadwell9ab81b52019-07-31 11:36:41 +0100243# General warnings
244WARNINGS := -Wall -Wmissing-include-dirs -Wunused \
Yann Gautier34b508b2021-05-20 13:18:14 +0200245 -Wdisabled-optimization -Wvla -Wshadow \
Boyan Karatotevd75a9ec2022-11-21 14:16:43 +0000246 -Wredundant-decls
247# stricter warnings
248WARNINGS += -Wextra -Wno-trigraphs
249# too verbose for generic build
250WARNINGS += -Wno-missing-field-initializers \
251 -Wno-type-limits -Wno-sign-compare \
252# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
253WARNINGS += -Wno-unused-parameter
Justin Chadwell9ab81b52019-07-31 11:36:41 +0100254
255# Additional warnings
Boyan Karatotevd75a9ec2022-11-21 14:16:43 +0000256# Level 1 - infrequent warnings we should have none of
257# full -Wextra
258WARNING1 += -Wsign-compare
259WARNING1 += -Wtype-limits
260WARNING1 += -Wmissing-field-initializers
Yann Gautiere7c645b2018-12-10 18:00:26 +0100261
Boyan Karatotevd75a9ec2022-11-21 14:16:43 +0000262# Level 2 - problematic warnings that we want
263# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
264# TODO: disable just for them and move into default build
265WARNING2 += -Wold-style-definition
266WARNING2 += -Wmissing-prototypes
267WARNING2 += -Wmissing-format-attribute
268# TF-A aims to comply with this eventually. Effort too large at present
269WARNING2 += -Wundef
Boyan Karatotevd141e632022-11-21 14:49:05 +0000270# currently very involved and many platforms set this off
271WARNING2 += -Wunused-const-variable=2
Yann Gautiere7c645b2018-12-10 18:00:26 +0100272
Boyan Karatotevd75a9ec2022-11-21 14:16:43 +0000273# Level 3 - very pedantic, frequently ignored
Yann Gautiere7c645b2018-12-10 18:00:26 +0100274WARNING3 := -Wbad-function-cast
Boyan Karatotevd75a9ec2022-11-21 14:16:43 +0000275WARNING3 += -Waggregate-return
276WARNING3 += -Wnested-externs
277WARNING3 += -Wcast-align
Yann Gautiere7c645b2018-12-10 18:00:26 +0100278WARNING3 += -Wcast-qual
279WARNING3 += -Wconversion
280WARNING3 += -Wpacked
Yann Gautiere7c645b2018-12-10 18:00:26 +0100281WARNING3 += -Wpointer-arith
Yann Gautiere7c645b2018-12-10 18:00:26 +0100282WARNING3 += -Wswitch-default
Yann Gautiere7c645b2018-12-10 18:00:26 +0100283
Boyan Karatotevd75a9ec2022-11-21 14:16:43 +0000284# Setting W is quite verbose and most warnings will be pre-existing issues
285# outside of the contributor's control. Don't fail the build on them so warnings
286# can be seen and hopefully addressed
287ifdef W
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100288 ifneq (${W},0)
289 E ?= 0
290 endif
Boyan Karatotevd75a9ec2022-11-21 14:16:43 +0000291endif
292
Yann Gautiere7c645b2018-12-10 18:00:26 +0100293ifeq (${W},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100294 WARNINGS += $(WARNING1)
Yann Gautiere7c645b2018-12-10 18:00:26 +0100295else ifeq (${W},2)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100296 WARNINGS += $(WARNING1) $(WARNING2)
Yann Gautiere7c645b2018-12-10 18:00:26 +0100297else ifeq (${W},3)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100298 WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
299endif #(W)
Yann Gautiere7c645b2018-12-10 18:00:26 +0100300
Justin Chadwell9ab81b52019-07-31 11:36:41 +0100301# Compiler specific warnings
Ambroise Vincent00296572019-05-24 12:47:43 +0100302ifeq ($(findstring clang,$(notdir $(CC))),)
Justin Chadwell93c690e2019-07-03 14:15:56 +0100303# not using clang
Justin Chadwelld7b4cd42019-09-18 14:13:42 +0100304WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \
305 -Wpacked-bitfield-compat -Wshift-overflow=2 \
306 -Wlogical-op
Govindraj Rajadea23e22023-05-05 09:09:36 -0500307
308# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
309TF_CFLAGS += $(call cc_option, --param=min-pagesize=0)
310
Bipin Ravi9cec5492023-09-28 13:17:24 -0500311ifeq ($(HARDEN_SLS), 1)
312 TF_CFLAGS_aarch64 += $(call cc_option, -mharden-sls=all)
313endif
314
Justin Chadwell93c690e2019-07-03 14:15:56 +0100315else
316# using clang
Justin Chadwelld7b4cd42019-09-18 14:13:42 +0100317WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
318 -Wlogical-op-parentheses
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100319endif #(Clang Warning)
Ambroise Vincent00296572019-05-24 12:47:43 +0100320
Yann Gautier6336b072018-12-10 18:08:53 +0100321ifneq (${E},0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100322 ERRORS := -Werror
323endif #(E)
Yann Gautier6336b072018-12-10 18:08:53 +0100324
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100325################################################################################
326# Compiler and Linker Directives
327################################################################################
Justin Chadwell9ab81b52019-07-31 11:36:41 +0100328CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
329 $(ERRORS) $(WARNINGS)
Govindraj Rajad4089fb2023-05-30 16:52:15 -0500330ASFLAGS += $(CPPFLAGS) \
Julius Wernerd5dfdeb2019-07-09 13:49:11 -0700331 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada59de5092016-12-22 12:51:53 +0900332TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Hollandebd6efa2019-10-20 16:11:25 -0500333 -ffunction-sections -fdata-sections \
334 -ffreestanding -fno-builtin -fno-common \
335 -Os -std=gnu99
Juan Castillo73c99d42015-08-18 14:23:04 +0100336
Justin Chadwell1f461972019-08-20 11:01:52 +0100337ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100338 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
339endif #(${SANITIZE_UB},on)
340
Justin Chadwell1f461972019-08-20 11:01:52 +0100341ifeq (${SANITIZE_UB},trap)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100342 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
Justin Chadwell1f461972019-08-20 11:01:52 +0100343 -fsanitize-undefined-trap-on-error
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100344endif #(${SANITIZE_UB},trap)
Justin Chadwell1f461972019-08-20 11:01:52 +0100345
david cunadof7ec31d2017-11-30 21:58:01 +0000346GCC_V_OUTPUT := $(shell $(CC) -v 2>&1)
david cunadof7ec31d2017-11-30 21:58:01 +0000347
Marco Felsch1f49db52022-11-09 12:59:09 +0100348TF_LDFLAGS += -z noexecstack
349
Ambroise Vincent641f16e2019-07-17 11:08:38 +0100350# LD = armlink
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800351ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100352 TF_LDFLAGS += --diag_error=warning --lto_level=O1
353 TF_LDFLAGS += --remove --info=unused,unusedsymbols
354 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Ambroise Vincent641f16e2019-07-17 11:08:38 +0100355
356# LD = gcc (used when GCC LTO is enabled)
zelalem-awekeedbce9a2019-11-12 16:20:17 -0600357else ifneq ($(findstring gcc,$(notdir $(LD))),)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100358 # Pass ld options with Wl or Xlinker switches
359 TF_LDFLAGS += -Wl,--fatal-warnings -O1
360 TF_LDFLAGS += -Wl,--gc-sections
Chris Kayac98b822022-12-22 13:26:37 +0000361
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100362 TF_LDFLAGS += -Wl,-z,common-page-size=4096 #Configure page size constants
363 TF_LDFLAGS += -Wl,-z,max-page-size=4096
Chris Kayac98b822022-12-22 13:26:37 +0000364
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100365 ifeq ($(ENABLE_LTO),1)
366 ifeq (${ARCH},aarch64)
367 TF_LDFLAGS += -flto -fuse-linker-plugin
368 endif
369 endif #(ENABLE_LTO)
370
zelalem-awekeedbce9a2019-11-12 16:20:17 -0600371# GCC automatically adds fix-cortex-a53-843419 flag when used to link
372# which breaks some builds, so disable if errata fix is not explicitly enabled
Yann Gautiercfe67672023-03-15 16:18:16 +0100373 ifeq (${ARCH},aarch64)
374 ifneq (${ERRATA_A53_843419},1)
375 TF_LDFLAGS += -mno-fix-cortex-a53-843419
376 endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100377 endif
378 TF_LDFLAGS += -nostdlib
379 TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent641f16e2019-07-17 11:08:38 +0100380
381# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800382else
Marco Felsch1f49db52022-11-09 12:59:09 +0100383# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
384# are not loaded by a elf loader.
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100385 TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
386 TF_LDFLAGS += -O1
387 TF_LDFLAGS += --gc-sections
Chris Kayac98b822022-12-22 13:26:37 +0000388
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100389 TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
390 TF_LDFLAGS += -z max-page-size=4096
Chris Kayac98b822022-12-22 13:26:37 +0000391
Ambroise Vincent641f16e2019-07-17 11:08:38 +0100392# ld.lld doesn't recognize the errata flags,
Yabin Cuiebac6922023-01-19 20:06:04 +0000393# therefore don't add those in that case.
394# ld.lld reports section type mismatch warnings,
395# therefore don't add --fatal-warnings to it.
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100396 ifeq ($(findstring ld.lld,$(notdir $(LD))),)
397 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
398 endif
399
400endif #(LD = armlink)
Juan Castillo73c99d42015-08-18 14:23:04 +0100401
402################################################################################
Govindraj Rajaf5211422023-08-17 10:41:48 -0500403# Setup ARCH_MAJOR/MINOR before parsing arch_features.
404################################################################################
405ifeq (${ENABLE_RME},1)
406 ARM_ARCH_MAJOR := 8
407 ARM_ARCH_MINOR := 6
408endif
409
410################################################################################
Juan Castillo73c99d42015-08-18 14:23:04 +0100411# Common sources and include directories
412################################################################################
dp-armd801fbb2017-05-04 12:15:35 +0100413include lib/compiler-rt/compiler-rt.mk
Juan Castillo73c99d42015-08-18 14:23:04 +0100414
415BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathew7f56e9a2017-09-04 11:49:29 +0100416 common/tf_log.c \
Soby Mathew9d29c222016-05-05 14:33:33 +0100417 common/${ARCH}/debug.S \
Julius Werner91b48c92018-11-27 22:10:56 -0800418 drivers/console/multi_console.c \
Soby Mathew9d29c222016-05-05 14:33:33 +0100419 lib/${ARCH}/cache_helpers.S \
420 lib/${ARCH}/misc_helpers.S \
Boyan Karatotevc73686a2023-02-15 13:21:50 +0000421 lib/extensions/pmuv3/${ARCH}/pmuv3.c \
Soby Mathew566034f2018-02-08 17:45:12 +0000422 plat/common/plat_bl_common.c \
Soby Mathew7f56e9a2017-09-04 11:49:29 +0100423 plat/common/plat_log_common.c \
dp-arm75311202017-03-07 11:02:47 +0000424 plat/common/${ARCH}/plat_common.c \
Soby Mathew9d29c222016-05-05 14:33:33 +0100425 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas61f72a32018-05-08 10:27:10 +0100426 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000427
Antonio Nino Diaz8422a842018-08-16 15:42:44 +0100428ifeq ($(notdir $(CC)),armclang)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100429 BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
Antonio Nino Diaz8422a842018-08-16 15:42:44 +0100430endif
431
Justin Chadwell1f461972019-08-20 11:01:52 +0100432ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100433 BL_COMMON_SOURCES += plat/common/ubsan.c
Justin Chadwell1f461972019-08-20 11:01:52 +0100434endif
435
Yann Gautier01d237c2018-06-18 16:00:23 +0200436INCLUDES += -Iinclude \
Antonio Nino Diazf5478de2018-12-17 17:20:57 +0000437 -Iinclude/arch/${ARCH} \
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +0000438 -Iinclude/lib/cpus/${ARCH} \
439 -Iinclude/lib/el3_runtime/${ARCH} \
440 ${PLAT_INCLUDES} \
441 ${SPD_INCLUDES}
442
Nishant Sharmae03dcc82022-08-15 16:37:07 +0100443DTC_FLAGS += -I dts -O dtb
444DTC_CPPFLAGS += -P -nostdinc $(INCLUDES) -Ifdts -undef \
445 -x assembler-with-cpp $(DEFINES)
446
Antonio Nino Diaz9c6d1c52018-11-19 11:48:30 +0000447include common/backtrace/backtrace.mk
448
Juan Castillo73c99d42015-08-18 14:23:04 +0100449################################################################################
Govindraj Raja35472702023-09-20 14:32:24 -0500450# Generic definitions
451################################################################################
452include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
453
454ifeq (${BUILD_BASE},)
455 BUILD_BASE := ./build
456endif
457BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
458
459SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
460
461# Platforms providing their own TBB makefile may override this value
462INCLUDE_TBBR_MK := 1
463
464################################################################################
465# Include SPD Makefile if one has been specified
466################################################################################
467
468ifneq (${SPD},none)
469 ifeq (${ARCH},aarch32)
470 $(error "Error: SPD is incompatible with AArch32.")
471 endif
472
473 ifdef EL3_PAYLOAD_BASE
474 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
475 $(warning "The SPD and its BL32 companion will be present but \
476 ignored.")
477 endif
478
479 ifeq (${SPD},spmd)
480 # SPMD is located in std_svc directory
481 SPD_DIR := std_svc
482
483 ifeq ($(SPMD_SPM_AT_SEL2),1)
484 CTX_INCLUDE_EL2_REGS := 1
485 ifeq ($(SPMC_AT_EL3),1)
486 $(error SPM cannot be enabled in both S-EL2 and EL3.)
487 endif
488 endif
489
490 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
491 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
492 endif
493
494 ifeq ($(TS_SP_FW_CONFIG),1)
495 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
496 endif
497
498 ifneq ($(ARM_BL2_SP_LIST_DTS),)
499 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
500 endif
501
502 ifneq ($(SP_LAYOUT_FILE),)
503 BL2_ENABLE_SP_LOAD := 1
504 endif
Govindraj Rajac189adb2023-10-31 14:48:11 -0500505
506 ifeq ($(SPMC_AT_EL3_SEL0_SP),1)
507 ifneq ($(SPMC_AT_EL3),1)
508 $(error SEL0 SP cannot be enabled without SPMC at EL3)
509 endif
510 endif
Govindraj Raja35472702023-09-20 14:32:24 -0500511 else
512 # All other SPDs in spd directory
513 SPD_DIR := spd
514 endif #(SPD)
515
516 # We expect to locate an spd.mk under the specified SPD directory
517 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
518
519 ifeq (${SPD_MAKE},)
520 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
521 endif
522 $(info Including ${SPD_MAKE})
523 include ${SPD_MAKE}
524
525 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
526 # Makefile would set NEED_BL32 to "yes". In this case, the build system
527 # supports two mutually exclusive options:
528 # * BL32 is built from source: then BL32_SOURCES must contain the list
529 # of source files to build BL32
530 # * BL32 is a prebuilt binary: then BL32 must point to the image file
531 # that will be included in the FIP
532 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
533 # over the sources.
534endif #(SPD=none)
535
536ifeq (${ENABLE_SPMD_LP}, 1)
537ifneq (${SPD},spmd)
538 $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
539endif
540ifeq ($(SPMC_AT_EL3),1)
541 $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
542endif
543endif
544
545################################################################################
Govindraj Rajaf5211422023-08-17 10:41:48 -0500546# Process BRANCH_PROTECTION value and set
547# Pointer Authentication and Branch Target Identification flags
548################################################################################
549ifeq (${BRANCH_PROTECTION},0)
550 # Default value turns off all types of branch protection
551 BP_OPTION := none
552else ifneq (${ARCH},aarch64)
553 $(error BRANCH_PROTECTION requires AArch64)
554else ifeq (${BRANCH_PROTECTION},1)
555 # Enables all types of branch protection features
556 BP_OPTION := standard
557 ENABLE_BTI := 1
558 ENABLE_PAUTH := 1
559else ifeq (${BRANCH_PROTECTION},2)
560 # Return address signing to its standard level
561 BP_OPTION := pac-ret
562 ENABLE_PAUTH := 1
563else ifeq (${BRANCH_PROTECTION},3)
564 # Extend the signing to include leaf functions
565 BP_OPTION := pac-ret+leaf
566 ENABLE_PAUTH := 1
567else ifeq (${BRANCH_PROTECTION},4)
568 # Turn on branch target identification mechanism
569 BP_OPTION := bti
570 ENABLE_BTI := 1
571else
572 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
573endif #(BRANCH_PROTECTION)
574
575ifeq ($(ENABLE_PAUTH),1)
576 CTX_INCLUDE_PAUTH_REGS := 1
577endif
578ifneq (${BP_OPTION},none)
579 TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
580endif #(BP_OPTION)
581
582# Pointer Authentication sources
583ifeq (${ENABLE_PAUTH}, 1)
584# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
585# Pauth support. As it's not secure, it must be reimplemented for real platforms
586 BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
587endif
588
Govindraj Raja35472702023-09-20 14:32:24 -0500589################################################################################
590# Include the platform specific Makefile after the SPD Makefile (the platform
591# makefile may use all previous definitions in this file)
592################################################################################
593include ${PLAT_MAKEFILE_FULL}
594
595################################################################################
596# Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from
597# platform.
598################################################################################
599include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
600
Govindraj Rajaf5211422023-08-17 10:41:48 -0500601####################################################
602# Enable required options for Memory Stack Tagging.
603####################################################
604
605# Currently, these options are enabled only for clang and armclang compiler.
606ifeq (${SUPPORT_STACK_MEMTAG},yes)
607 ifdef mem_tag_arch_support
608 # Check for armclang and clang compilers
609 ifneq ( ,$(filter $(notdir $(CC)),armclang clang))
610 # Add "memtag" architecture feature modifier if not specified
611 ifeq ( ,$(findstring memtag,$(arch-features)))
612 arch-features := $(arch-features)+memtag
613 endif # memtag
614 ifeq ($(notdir $(CC)),armclang)
615 TF_CFLAGS += -mmemtag-stack
616 else ifeq ($(notdir $(CC)),clang)
617 TF_CFLAGS += -fsanitize=memtag
618 endif # armclang
619 endif
620 else
621 $(error "Error: stack memory tagging is not supported for \
622 architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
623 endif #(mem_tag_arch_support)
624endif #(SUPPORT_STACK_MEMTAG)
625
626################################################################################
627# RME dependent flags configuration, Enable optional features for RME.
628################################################################################
629# FEAT_RME
630ifeq (${ENABLE_RME},1)
Govindraj Rajad6380292023-10-12 16:57:46 -0500631 # RME doesn't support BRBE
632 ENABLE_BRBE_FOR_NS := 0
633
Govindraj Rajaf5211422023-08-17 10:41:48 -0500634 # RME doesn't support PIE
635 ifneq (${ENABLE_PIE},0)
636 $(error ENABLE_RME does not support PIE)
637 endif
638
639 # RME doesn't support BRBE
640 ifneq (${ENABLE_BRBE_FOR_NS},0)
641 $(error ENABLE_RME does not support BRBE.)
642 endif
643
644 # RME requires AARCH64
645 ifneq (${ARCH},aarch64)
646 $(error ENABLE_RME requires AArch64)
647 endif
648
649 # RME requires el2 context to be saved for now.
650 CTX_INCLUDE_EL2_REGS := 1
651 CTX_INCLUDE_AARCH32_REGS := 0
652 CTX_INCLUDE_PAUTH_REGS := 1
653
654 # RME enables CSV2_2 extension by default.
655 ENABLE_FEAT_CSV2_2 = 1
656endif #(FEAT_RME)
657
658################################################################################
Zelalem Aweke5b18de02021-07-11 18:33:20 -0500659# Include rmmd Makefile if RME is enabled
660################################################################################
Zelalem Aweke5b18de02021-07-11 18:33:20 -0500661ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100662 ifneq (${ARCH},aarch64)
663 $(error ENABLE_RME requires AArch64)
664 endif
665 ifeq ($(SPMC_AT_EL3),1)
666 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
667 endif
668
669 ifneq (${SPD}, none)
670 ifneq (${SPD}, spmd)
671 $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
672 endif
673 endif
Zelalem Aweke5b18de02021-07-11 18:33:20 -0500674include services/std_svc/rmmd/rmmd.mk
675$(warning "RME is an experimental feature")
676endif
677
Govindraj Raja35472702023-09-20 14:32:24 -0500678ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
679 ifeq (${SPD},none)
680 ifeq (${ENABLE_RME},0)
681 $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
682 or RME is enabled)
683 endif
684 endif
685endif
Juan Castillo0f21c542014-06-25 17:26:36 +0100686
Govindraj Raja7794d6c2023-06-01 16:29:16 -0500687################################################################################
688# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
689# up with appropriate march values for compiler.
690################################################################################
691include ${MAKE_HELPERS_DIRECTORY}march.mk
692
693TF_CFLAGS += $(march-directive)
694
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -0600695# This internal flag is common option which is set to 1 for scenarios
696# when the BL2 is running in EL3 level. This occurs in two scenarios -
697# 4 world system running BL2 at EL3 and two world system without BL1 running
698# BL2 in EL3
699
700ifeq (${RESET_TO_BL2},1)
701 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100702 ifeq (${ENABLE_RME},1)
703 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
704 supported at the moment.)
705 endif
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -0600706else ifeq (${ENABLE_RME},1)
707 BL2_RUNS_AT_EL3 := 1
708else
709 BL2_RUNS_AT_EL3 := 0
710endif
711
Manish Pandeyf87e54f2023-10-10 15:42:19 +0100712# This internal flag is set to 1 when Firmware First handling of External aborts
713# is required by lowe ELs. Currently only NS requires this support.
714ifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
715 FFH_SUPPORT := 1
716else
717 FFH_SUPPORT := 0
718endif
719
Masahiro Yamada8012cc52017-11-04 03:12:28 +0900720$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
721
Etienne Carriere26e63c42017-11-08 13:48:40 +0100722ifeq (${ARM_ARCH_MAJOR},7)
723include make_helpers/armv7-a-cpus.mk
724endif
725
Masahiro Yamada320920c2020-01-17 13:44:37 +0900726PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
727ifneq ($(PIE_FOUND),)
728 TF_CFLAGS += -fno-PIE
Samuel Holland7b592412022-04-08 21:56:02 -0500729ifneq ($(findstring gcc,$(notdir $(LD))),)
730 TF_LDFLAGS += -no-pie
731endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100732endif #(PIE_FOUND)
Masahiro Yamada320920c2020-01-17 13:44:37 +0900733
734ifneq ($(findstring gcc,$(notdir $(LD))),)
735 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew3bd17c02018-08-28 11:13:55 +0100736else
Masahiro Yamada320920c2020-01-17 13:44:37 +0900737 PIE_LDFLAGS += -pie --no-dynamic-linker
738endif
739
740ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100741 ifeq ($(RESET_TO_BL2),1)
742 ifneq ($(BL2_IN_XIP_MEM),1)
743 BL2_CPPFLAGS += -fpie
744 BL2_CFLAGS += -fpie
745 BL2_LDFLAGS += $(PIE_LDFLAGS)
746 endif #(BL2_IN_XIP_MEM)
747 endif #(RESET_TO_BL2)
Chris Kay966660e2023-02-02 14:39:03 +0000748 BL31_CPPFLAGS += -fpie
749 BL31_CFLAGS += -fpie
Masahiro Yamada320920c2020-01-17 13:44:37 +0900750 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay966660e2023-02-02 14:39:03 +0000751
752 BL32_CPPFLAGS += -fpie
Masahiro Yamadad9743012020-01-17 13:45:14 +0900753 BL32_CFLAGS += -fpie
754 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100755endif #(ENABLE_PIE)
Soby Mathew3bd17c02018-08-28 11:13:55 +0100756
Boyan Karatotev007433d2023-01-25 16:55:18 +0000757BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
758BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
759BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
760
Masahiro Yamada9cefb4b2020-04-01 14:20:58 +0900761BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -0600762ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100763 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamadad5e97a12020-03-26 13:18:48 +0900764else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100765 BL2_CPPFLAGS += -DIMAGE_AT_EL1
766endif #(RESET_TO_BL2)
Boyan Karatotev007433d2023-01-25 16:55:18 +0000767
768ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100769 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
770 BL31_CPPFLAGS += -DIMAGE_AT_EL3
771 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatotev007433d2023-01-25 16:55:18 +0000772else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100773 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamadad5e97a12020-03-26 13:18:48 +0900774endif
775
Sandrine Bailleux54035fc2016-01-13 14:57:38 +0000776# Include the CPU specific operations makefile, which provides default
777# values for all CPU errata workarounds and CPU specific optimisations.
778# This can be overridden by the platform.
Juan Castillo73c99d42015-08-18 14:23:04 +0100779include lib/cpus/cpu-ops.mk
Achin Gupta4f6ad662013-10-25 09:08:21 +0100780
dp-arma4409002017-02-15 11:07:55 +0000781################################################################################
782# Build `AARCH32_SP` as BL32 image for AArch32
783################################################################################
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100784ifeq (${ARCH},aarch32)
785 NEED_BL32 := yes
dp-arma4409002017-02-15 11:07:55 +0000786
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100787 ifneq (${AARCH32_SP},none)
788 # We expect to locate an sp.mk under the specified AARCH32_SP directory
789 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-arma4409002017-02-15 11:07:55 +0000790
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100791 ifeq (${AARCH32_SP_MAKE},)
792 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
793 endif
Juan Pablo Conde043f38f2023-08-09 13:19:21 -0500794 $(info Including ${AARCH32_SP_MAKE})
795 include ${AARCH32_SP_MAKE}
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100796 endif
797endif #(ARCH=aarch32)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100798
Juan Castillo73c99d42015-08-18 14:23:04 +0100799################################################################################
Varun Wadekar77f1f7a2019-01-31 09:22:30 -0800800# Include libc if not overridden
801################################################################################
802ifeq (${OVERRIDE_LIBC},0)
803include lib/libc/libc.mk
804endif
805
806################################################################################
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100807# Check incompatible options and dependencies
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000808################################################################################
809
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100810# USE_DEBUGFS experimental feature recommended only in debug builds
811ifeq (${USE_DEBUGFS},1)
812 ifeq (${DEBUG},1)
813 $(warning DEBUGFS experimental feature is enabled.)
814 else
815 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000816 endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100817endif #(USE_DEBUGFS)
818
819# USE_SPINLOCK_CAS requires AArch64 build
820ifeq (${USE_SPINLOCK_CAS},1)
821 ifneq (${ARCH},aarch64)
822 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xu76580f32017-08-24 11:03:23 +0800823 endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100824endif #(USE_SPINLOCK_CAS)
825
826# The cert_create tool cannot generate certificates individually, so we use the
827# target 'certificates' to create them all
828ifneq (${GENERATE_COT},0)
829 FIP_DEPS += certificates
830 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000831endif
832
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100833ifneq (${DECRYPTION_SUPPORT},none)
834 ENC_ARGS += -f ${FW_ENC_STATUS}
835 ENC_ARGS += -k ${ENC_KEY}
836 ENC_ARGS += -n ${ENC_NONCE}
837 FIP_DEPS += enctool
838 FWU_FIP_DEPS += enctool
839endif #(DECRYPTION_SUPPORT)
840
841ifdef EL3_PAYLOAD_BASE
842 ifdef PRELOADED_BL33_BASE
843 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
844 incompatible build options. EL3_PAYLOAD_BASE has priority.")
845 endif
846 ifneq (${GENERATE_COT},0)
847 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
848 build options.")
849 endif
850 ifneq (${TRUSTED_BOARD_BOOT},0)
851 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
852 incompatible \ build options.")
853 endif
854endif #(EL3_PAYLOAD_BASE)
855
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000856ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100857 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000858 $(warning "BL33 image is not needed when option \
859 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100860 endif
861 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz68450a62016-04-06 17:31:57 +0100862 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100863 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
864 endif
865endif #(NEED_BL33)
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000866
Jeenu Viswambharand4593e42017-01-06 16:14:42 +0000867# When building for systems with hardware-assisted coherency, there's no need to
868# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
869ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100870 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharand4593e42017-01-06 16:14:42 +0000871endif
Yatharth Kochar1a0a3f02016-06-28 16:58:26 +0100872
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -0600873#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
874ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100875 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan7d173fc2018-03-21 07:20:09 +0000876endif
877
Manish Pandey9202d512023-02-13 12:39:17 +0000878# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan14c60162018-04-04 16:07:11 +0100879ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100880 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
Manish Pandeyf87e54f2023-10-10 15:42:19 +0100881 and HANDLE_EA_EL3_FIRST_NS instead")
Manish Pandey9202d512023-02-13 12:39:17 +0000882endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100883
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100884
Manish Pandey9202d512023-02-13 12:39:17 +0000885# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharan1a7c1cf2017-12-08 12:13:51 +0000886ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100887 ifeq ($(ENABLE_FEAT_RAS),0)
888 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
889 endif
890endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharan1a7c1cf2017-12-08 12:13:51 +0000891
Roberto Vargased51b512018-09-24 17:20:48 +0100892# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew209a60c2018-03-26 12:43:37 +0100893ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100894 ifeq (${TRUSTED_BOARD_BOOT}, 0)
895 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
896 to be set.")
897 endif
898endif #(DYN_DISABLE_AUTH)
Soby Mathew209a60c2018-03-26 12:43:37 +0100899
Manish V Badarkhe2bf4f272022-06-20 15:32:38 +0100900ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
901# Support authentication verification and hash calculation
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100902 CRYPTO_SUPPORT := 3
Manish V Badarkhe2bf4f272022-06-20 15:32:38 +0100903else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
904# Support authentication verification and hash calculation
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100905 CRYPTO_SUPPORT := 3
Manish V Badarkhe2bf4f272022-06-20 15:32:38 +0100906else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
907# Support hash calculation only
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100908 CRYPTO_SUPPORT := 2
Manish V Badarkhe2bf4f272022-06-20 15:32:38 +0100909else ifeq (${TRUSTED_BOARD_BOOT},1)
910# Support authentication verification only
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100911 CRYPTO_SUPPORT := 1
Manish V Badarkhec9c56f62022-01-08 22:56:06 +0000912else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100913 CRYPTO_SUPPORT := 0
914endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhec9c56f62022-01-08 22:56:06 +0000915
Balint Dobszaycbf9e842019-12-18 15:28:00 +0100916# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
917ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100918 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhe84ef9cd2020-06-29 10:32:53 +0100919endif
920
Antonio Nino Diazb86048c2019-02-19 11:53:51 +0000921# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100922# registers associated to it are also saved and restored.
923# 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 +0000924ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100925 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
926 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
927 endif
928endif #(ENABLE_PAUTH)
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100929
930ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100931 ifneq (${ARCH},aarch64)
932 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
933 endif
934endif #(CTX_INCLUDE_PAUTH_REGS)
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100935
Justin Chadwell9dd94382019-07-18 14:25:33 +0100936ifeq ($(CTX_INCLUDE_MTE_REGS),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100937 ifneq (${ARCH},aarch64)
938 $(error CTX_INCLUDE_MTE_REGS requires AArch64)
939 endif
940endif #(CTX_INCLUDE_MTE_REGS)
Justin Chadwell9dd94382019-07-18 14:25:33 +0100941
Manish V Badarkhe396b3392021-06-25 23:28:59 +0100942ifeq ($(PSA_FWU_SUPPORT),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100943 $(info PSA_FWU_SUPPORT is an experimental feature)
944endif #(PSA_FWU_SUPPORT)
Manish V Badarkhe396b3392021-06-25 23:28:59 +0100945
Jayanth Dodderi Chidanand6a0da732022-01-17 18:57:17 +0000946ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100947 $(info FEATURE_DETECTION is an experimental feature)
948endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand6a0da732022-01-17 18:57:17 +0000949
Jayanth Dodderi Chidanand03d3c0d2022-11-08 10:31:07 +0000950ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100951 ifeq (${ENABLE_SME_FOR_NS}, 0)
952 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
953 to be set")
954 $(warning "Forced ENABLE_SME_FOR_NS=1")
955 override ENABLE_SME_FOR_NS := 1
956 endif
957endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand45007ac2023-03-06 23:56:14 +0000958
Petre-Ionut Tudor60e8f3c2019-11-07 15:18:03 +0000959ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100960 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
961 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
962 library v2")
963 endif
964endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudor60e8f3c2019-11-07 15:18:03 +0000965
Sumit Garg7cda17b2019-11-15 10:43:00 +0530966ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100967 ifeq (${TRUSTED_BOARD_BOOT}, 0)
968 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
969 to be set)
970 endif
971endif #(DECRYPTION_SUPPORT)
Sumit Garg7cda17b2019-11-15 10:43:00 +0530972
johpow01744ad972022-01-28 17:06:20 -0600973# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow01dc78e622021-07-08 14:14:00 -0500974ifeq (${ARCH},aarch32)
johpow01744ad972022-01-28 17:06:20 -0600975
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100976 # SME/SVE only supported on AArch64
977 ifneq (${ENABLE_SME_FOR_NS},0)
978 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
979 endif
Jayanth Dodderi Chidanand03d3c0d2022-11-08 10:31:07 +0000980
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100981 ifeq (${ENABLE_SVE_FOR_NS},1)
982 # Warning instead of error due to CI dependency on this
983 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
984 endif
johpow01744ad972022-01-28 17:06:20 -0600985
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100986 # BRBE is not supported in AArch32
987 ifeq (${ENABLE_BRBE_FOR_NS},1)
988 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
989 endif
johpow01744ad972022-01-28 17:06:20 -0600990
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100991 # FEAT_RNG_TRAP is not supported in AArch32
992 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
993 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
994 endif
995endif #(ARCH=aarch32)
johpow01dc78e622021-07-08 14:14:00 -0500996
Boyan Karatotev0d122942023-03-08 16:29:26 +0000997ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100998 ifeq (${ENABLE_SVE_FOR_NS},0)
999 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
1000 endif
1001endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev0d122942023-03-08 16:29:26 +00001002
johpow01dc78e622021-07-08 14:14:00 -05001003# Secure SME/SVE requires the non-secure component as well
1004ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001005 ifeq (${ENABLE_SME_FOR_NS},0)
1006 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
1007 endif
1008 ifeq (${ENABLE_SVE_FOR_SWD},0)
1009 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
1010 endif
1011endif #(ENABLE_SME_FOR_SWD)
1012
johpow01dc78e622021-07-08 14:14:00 -05001013ifeq (${ENABLE_SVE_FOR_SWD},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001014 ifeq (${ENABLE_SVE_FOR_NS},0)
1015 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
1016 endif
1017endif #(ENABLE_SVE_FOR_SWD)
johpow01dc78e622021-07-08 14:14:00 -05001018
1019# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
1020# its own context management including FPU registers.
1021ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001022 ifneq (${ENABLE_SME_FOR_NS},0)
1023 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1024 endif
Jayanth Dodderi Chidanand03d3c0d2022-11-08 10:31:07 +00001025
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001026 ifeq (${ENABLE_SVE_FOR_NS},1)
1027 # Warning instead of error due to CI dependency on this
1028 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1029 $(warning "Forced ENABLE_SVE_FOR_NS=0")
1030 override ENABLE_SVE_FOR_NS := 0
1031 endif
1032endif #(CTX_INCLUDE_FPREGS)
johpow01dc78e622021-07-08 14:14:00 -05001033
Manish V Badarkhe00e28872022-03-02 12:06:35 +00001034ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001035 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe00e28872022-03-02 12:06:35 +00001036endif
1037
Raymond Mao3ba2c152023-07-25 07:53:35 -07001038ifeq (${TRANSFER_LIST},1)
1039 $(info TRANSFER_LIST is an experimental feature)
1040endif
1041
Chris Kay274a69e2022-09-29 16:21:24 +01001042ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001043 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1044 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1045 endif
Chris Kay274a69e2022-09-29 16:21:24 +01001046endif
1047
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001048# Determine if FEAT_RNG is supported
1049ENABLE_FEAT_RNG = $(if $(findstring rng,${arch-features}),1,0)
1050
1051# Determine if FEAT_SB is supported
1052ENABLE_FEAT_SB = $(if $(findstring sb,${arch-features}),1,0)
1053
Manish V Badarkhe5782b892023-09-06 09:08:28 +01001054ifeq ($(PSA_CRYPTO),1)
1055 $(info PSA_CRYPTO is an experimental feature)
1056endif
1057
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +00001058################################################################################
Juan Castillo73c99d42015-08-18 14:23:04 +01001059# Process platform overrideable behaviour
1060################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001061
Manish Pandey5f24ce92021-10-06 10:59:52 +01001062ifdef BL1_SOURCES
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001063 NEED_BL1 := yes
1064endif #(BL1_SOURCES)
Manish Pandey5f24ce92021-10-06 10:59:52 +01001065
Juan Castillo73c99d42015-08-18 14:23:04 +01001066ifdef BL2_SOURCES
Manish Pandey5f24ce92021-10-06 10:59:52 +01001067 NEED_BL2 := yes
1068
1069 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1070 # Certificate generation tools. This flag can be overridden by the platform.
1071 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001072 # If booting an EL3 payload there is no need for a BL33 image
1073 # in the FIP file.
1074 NEED_BL33 := no
1075 else
1076 ifdef PRELOADED_BL33_BASE
1077 # If booting a BL33 preloaded image there is no need of
1078 # another one in the FIP file.
1079 NEED_BL33 := no
1080 else
1081 NEED_BL33 ?= yes
1082 endif
1083 endif
1084endif #(BL2_SOURCES)
Juan Castillo73c99d42015-08-18 14:23:04 +01001085
Manish Pandey5f24ce92021-10-06 10:59:52 +01001086ifdef BL2U_SOURCES
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001087 NEED_BL2U := yes
1088endif #(BL2U_SOURCES)
Manish Pandey5f24ce92021-10-06 10:59:52 +01001089
Masahiro Yamada4d045d02017-04-05 19:11:41 +09001090# If SCP_BL2 is given, we always want FIP to include it.
1091ifdef SCP_BL2
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001092 NEED_SCP_BL2 := yes
1093endif #(SCP_BL2)
Masahiro Yamada4d045d02017-04-05 19:11:41 +09001094
Soby Mathew5744e872017-11-14 14:10:10 +00001095# For AArch32, BL31 is not currently supported.
1096ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001097 ifdef BL31_SOURCES
1098 # When booting an EL3 payload, there is no need to compile the BL31
1099 # image nor put it in the FIP.
1100 ifndef EL3_PAYLOAD_BASE
1101 NEED_BL31 := yes
1102 endif
1103 endif
1104endif #(ARCH=aarch64)
Soby Mathew5744e872017-11-14 14:10:10 +00001105
Juan Castillo73c99d42015-08-18 14:23:04 +01001106# Process TBB related flags
1107ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001108 # Common cert_create options
1109 ifneq (${CREATE_KEYS},0)
Juan Castillo73c99d42015-08-18 14:23:04 +01001110 $(eval CRT_ARGS += -n)
Yatharth Kochar01912622015-10-12 12:33:47 +01001111 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001112 ifneq (${SAVE_KEYS},0)
Juan Castillo73c99d42015-08-18 14:23:04 +01001113 $(eval CRT_ARGS += -k)
Yatharth Kochar01912622015-10-12 12:33:47 +01001114 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001115 endif
1116 endif
1117 # Include TBBR makefile (unless the platform indicates otherwise)
1118 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castillo73c99d42015-08-18 14:23:04 +01001119 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001120 endif
1121endif #(GENERATE_COT)
Juan Castillo73c99d42015-08-18 14:23:04 +01001122
Masahiro Yamada1c75d5d2016-12-25 13:52:22 +09001123ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001124 FIP_ARGS += --align ${FIP_ALIGN}
1125endif #(FIP_ALIGN)
Masahiro Yamada1c75d5d2016-12-25 13:52:22 +09001126
Manish Pandey5f24ce92021-10-06 10:59:52 +01001127ifdef FDT_SOURCES
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001128 NEED_FDT := yes
1129endif #(FDT_SOURCES)
Manish Pandey5f24ce92021-10-06 10:59:52 +01001130
Juan Castillo73c99d42015-08-18 14:23:04 +01001131################################################################################
Michalis Pappas46e5e032018-03-20 13:01:27 +08001132# Include libraries' Makefile that are used in all BL
1133################################################################################
1134
1135include lib/stack_protector/stack_protector.mk
1136
1137################################################################################
Soby Mathew8a860522017-02-14 10:05:07 +00001138# Include BL specific makefiles
1139################################################################################
Manish Pandey5f24ce92021-10-06 10:59:52 +01001140
1141ifeq (${NEED_BL1},yes)
Soby Mathew8a860522017-02-14 10:05:07 +00001142include bl1/bl1.mk
1143endif
1144
Manish Pandey5f24ce92021-10-06 10:59:52 +01001145ifeq (${NEED_BL2},yes)
Soby Mathew8a860522017-02-14 10:05:07 +00001146include bl2/bl2.mk
1147endif
1148
Manish Pandey5f24ce92021-10-06 10:59:52 +01001149ifeq (${NEED_BL2U},yes)
Soby Mathew8a860522017-02-14 10:05:07 +00001150include bl2u/bl2u.mk
1151endif
1152
Soby Mathew5744e872017-11-14 14:10:10 +00001153ifeq (${NEED_BL31},yes)
Soby Mathew8a860522017-02-14 10:05:07 +00001154include bl31/bl31.mk
1155endif
Nishanth Menon03b397a2016-10-14 01:13:57 +00001156
Juan Castillo73c99d42015-08-18 14:23:04 +01001157################################################################################
1158# Build options checks
1159################################################################################
Juan Castillob7124ea2014-11-04 17:36:40 +00001160
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001161# Boolean_Flags
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001162$(eval $(call assert_booleans,\
1163 $(sort \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001164 ALLOW_RO_XLAT_TABLES \
1165 BL2_ENABLE_SP_LOAD \
1166 COLD_BOOT_SINGLE_CPU \
1167 CREATE_KEYS \
1168 CTX_INCLUDE_AARCH32_REGS \
1169 CTX_INCLUDE_FPREGS \
1170 CTX_INCLUDE_EL2_REGS \
1171 DEBUG \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001172 DYN_DISABLE_AUTH \
1173 EL3_EXCEPTION_HANDLING \
1174 ENABLE_AMU_AUXILIARY_COUNTERS \
1175 ENABLE_AMU_FCONF \
1176 AMU_RESTRICT_COUNTERS \
1177 ENABLE_ASSERTIONS \
1178 ENABLE_FEAT_SB \
1179 ENABLE_PIE \
1180 ENABLE_PMF \
1181 ENABLE_PSCI_STAT \
1182 ENABLE_RUNTIME_INSTRUMENTATION \
1183 ENABLE_SME_FOR_SWD \
1184 ENABLE_SVE_FOR_SWD \
Manish Pandey970a4a82023-10-10 13:53:25 +01001185 ENABLE_FEAT_RAS \
Manish Pandeyf87e54f2023-10-10 15:42:19 +01001186 FFH_SUPPORT \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001187 ERROR_DEPRECATED \
1188 FAULT_INJECTION_SUPPORT \
1189 GENERATE_COT \
1190 GICV2_G0_FOR_EL3 \
1191 HANDLE_EA_EL3_FIRST_NS \
Bipin Ravi9cec5492023-09-28 13:17:24 -05001192 HARDEN_SLS \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001193 HW_ASSISTED_COHERENCY \
1194 MEASURED_BOOT \
1195 DRTM_SUPPORT \
1196 NS_TIMER_SWITCH \
1197 OVERRIDE_LIBC \
1198 PL011_GENERIC_UART \
1199 PLAT_RSS_NOT_SUPPORTED \
1200 PROGRAMMABLE_RESET_ADDRESS \
1201 PSCI_EXTENDED_STATE_ID \
1202 PSCI_OS_INIT_MODE \
1203 RESET_TO_BL31 \
1204 SAVE_KEYS \
1205 SEPARATE_CODE_AND_RODATA \
1206 SEPARATE_BL2_NOLOAD_REGION \
1207 SEPARATE_NOBITS_REGION \
1208 SPIN_ON_BL1_EXIT \
1209 SPM_MM \
1210 SPMC_AT_EL3 \
Nishant Sharma801cd3c2023-06-27 00:36:01 +01001211 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001212 SPMD_SPM_AT_SEL2 \
Raghu Krishnamurthy890b5082023-02-25 13:26:10 -08001213 ENABLE_SPMD_LP \
Raymond Mao3ba2c152023-07-25 07:53:35 -07001214 TRANSFER_LIST \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001215 TRUSTED_BOARD_BOOT \
1216 USE_COHERENT_MEM \
1217 USE_DEBUGFS \
1218 ARM_IO_IN_DTB \
1219 SDEI_IN_FCONF \
1220 SEC_INT_DESC_IN_FCONF \
1221 USE_ROMLIB \
1222 USE_TBBR_DEFS \
1223 WARMBOOT_ENABLE_DCACHE_EARLY \
1224 RESET_TO_BL2 \
1225 BL2_IN_XIP_MEM \
1226 BL2_INV_DCACHE \
1227 USE_SPINLOCK_CAS \
1228 ENCRYPT_BL31 \
1229 ENCRYPT_BL32 \
1230 ERRATA_SPECULATIVE_AT \
1231 RAS_TRAP_NS_ERR_REC_ACCESS \
1232 COT_DESC_IN_DTB \
1233 USE_SP804_TIMER \
1234 PSA_FWU_SUPPORT \
1235 ENABLE_MPMM \
1236 ENABLE_MPMM_FCONF \
1237 FEATURE_DETECTION \
Jayanth Dodderi Chidanand0b22e592022-10-11 17:16:07 +01001238 TRNG_SUPPORT \
Sona Mathewffea3842022-11-18 18:05:38 -06001239 ERRATA_ABI_SUPPORT \
Sona Mathewef63f5b2023-03-14 14:02:03 -05001240 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja04c73032022-11-04 12:38:01 +00001241 CONDITIONAL_CMO \
Manish V Badarkhe5782b892023-09-06 09:08:28 +01001242 PSA_CRYPTO \
Sandrine Bailleux85bebe12023-10-11 08:38:00 +02001243 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash183329a2023-08-15 16:28:06 -05001244 INIT_UNUSED_NS_EL2 \
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001245)))
Juan Castillo73c99d42015-08-18 14:23:04 +01001246
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001247# Numeric_Flags
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001248$(eval $(call assert_numerics,\
1249 $(sort \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001250 ARM_ARCH_MAJOR \
1251 ARM_ARCH_MINOR \
1252 BRANCH_PROTECTION \
1253 CTX_INCLUDE_PAUTH_REGS \
1254 CTX_INCLUDE_MTE_REGS \
1255 CTX_INCLUDE_NEVE_REGS \
1256 CRYPTO_SUPPORT \
Boyan Karatotev83a4dae2023-02-16 09:45:29 +00001257 DISABLE_MTPMU \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001258 ENABLE_BRBE_FOR_NS \
1259 ENABLE_TRBE_FOR_NS \
1260 ENABLE_BTI \
1261 ENABLE_PAUTH \
1262 ENABLE_FEAT_AMU \
1263 ENABLE_FEAT_AMUv1p1 \
1264 ENABLE_FEAT_CSV2_2 \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001265 ENABLE_FEAT_DIT \
1266 ENABLE_FEAT_ECV \
1267 ENABLE_FEAT_FGT \
1268 ENABLE_FEAT_HCX \
1269 ENABLE_FEAT_PAN \
1270 ENABLE_FEAT_RNG \
1271 ENABLE_FEAT_RNG_TRAP \
1272 ENABLE_FEAT_SEL2 \
1273 ENABLE_FEAT_TCR2 \
1274 ENABLE_FEAT_S2PIE \
1275 ENABLE_FEAT_S1PIE \
1276 ENABLE_FEAT_S2POE \
1277 ENABLE_FEAT_S1POE \
1278 ENABLE_FEAT_GCS \
1279 ENABLE_FEAT_VHE \
Maksims Svecovs4d0b6632023-03-24 13:05:09 +00001280 ENABLE_FEAT_MTE_PERM \
Arvind Ram Prakashedebefb2023-10-11 12:10:56 -05001281 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001282 ENABLE_RME \
1283 ENABLE_SPE_FOR_NS \
1284 ENABLE_SYS_REG_TRACE_FOR_NS \
1285 ENABLE_SME_FOR_NS \
1286 ENABLE_SME2_FOR_NS \
1287 ENABLE_SVE_FOR_NS \
1288 ENABLE_TRF_FOR_NS \
1289 FW_ENC_STATUS \
1290 NR_OF_FW_BANKS \
1291 NR_OF_IMAGES_IN_FW_BANK \
1292 TWED_DELAY \
1293 ENABLE_FEAT_TWED \
1294 SVE_VECTOR_LEN \
Varun Wadekar0ed3be62023-04-13 21:06:18 +01001295 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001296)))
Jeenu Viswambharanc877b412017-01-16 16:52:35 +00001297
Justin Chadwellaacff742019-07-29 17:13:10 +01001298ifdef KEY_SIZE
1299 $(eval $(call assert_numeric,KEY_SIZE))
1300endif
1301
Justin Chadwell1f461972019-08-20 11:01:52 +01001302ifeq ($(filter $(SANITIZE_UB), on off trap),)
1303 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1304endif
1305
Juan Castillo73c99d42015-08-18 14:23:04 +01001306################################################################################
1307# Add definitions to the cpp preprocessor based on the current build options.
1308# This is done after including the platform specific makefile to allow the
1309# platform to overwrite the default options
1310################################################################################
1311
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001312$(eval $(call add_defines,\
1313 $(sort \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001314 ALLOW_RO_XLAT_TABLES \
1315 ARM_ARCH_MAJOR \
1316 ARM_ARCH_MINOR \
1317 BL2_ENABLE_SP_LOAD \
1318 COLD_BOOT_SINGLE_CPU \
1319 CTX_INCLUDE_AARCH32_REGS \
1320 CTX_INCLUDE_FPREGS \
1321 CTX_INCLUDE_PAUTH_REGS \
1322 EL3_EXCEPTION_HANDLING \
1323 CTX_INCLUDE_MTE_REGS \
1324 CTX_INCLUDE_EL2_REGS \
1325 CTX_INCLUDE_NEVE_REGS \
1326 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1327 DISABLE_MTPMU \
1328 ENABLE_FEAT_AMU \
1329 ENABLE_AMU_AUXILIARY_COUNTERS \
1330 ENABLE_AMU_FCONF \
1331 AMU_RESTRICT_COUNTERS \
1332 ENABLE_ASSERTIONS \
1333 ENABLE_BTI \
Arvind Ram Prakashedebefb2023-10-11 12:10:56 -05001334 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001335 ENABLE_PAUTH \
1336 ENABLE_PIE \
1337 ENABLE_PMF \
1338 ENABLE_PSCI_STAT \
1339 ENABLE_RME \
1340 ENABLE_RUNTIME_INSTRUMENTATION \
1341 ENABLE_SME_FOR_NS \
1342 ENABLE_SME2_FOR_NS \
1343 ENABLE_SME_FOR_SWD \
1344 ENABLE_SPE_FOR_NS \
1345 ENABLE_SVE_FOR_NS \
1346 ENABLE_SVE_FOR_SWD \
Manish Pandey970a4a82023-10-10 13:53:25 +01001347 ENABLE_FEAT_RAS \
Manish Pandeyf87e54f2023-10-10 15:42:19 +01001348 FFH_SUPPORT \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001349 ENCRYPT_BL31 \
1350 ENCRYPT_BL32 \
1351 ERROR_DEPRECATED \
1352 FAULT_INJECTION_SUPPORT \
1353 GICV2_G0_FOR_EL3 \
1354 HANDLE_EA_EL3_FIRST_NS \
1355 HW_ASSISTED_COHERENCY \
1356 LOG_LEVEL \
1357 MEASURED_BOOT \
1358 DRTM_SUPPORT \
1359 NS_TIMER_SWITCH \
1360 PL011_GENERIC_UART \
1361 PLAT_${PLAT} \
1362 PLAT_RSS_NOT_SUPPORTED \
1363 PROGRAMMABLE_RESET_ADDRESS \
1364 PSCI_EXTENDED_STATE_ID \
1365 PSCI_OS_INIT_MODE \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001366 RESET_TO_BL31 \
1367 SEPARATE_CODE_AND_RODATA \
1368 SEPARATE_BL2_NOLOAD_REGION \
1369 SEPARATE_NOBITS_REGION \
1370 RECLAIM_INIT_CODE \
1371 SPD_${SPD} \
1372 SPIN_ON_BL1_EXIT \
1373 SPM_MM \
1374 SPMC_AT_EL3 \
Nishant Sharma801cd3c2023-06-27 00:36:01 +01001375 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001376 SPMD_SPM_AT_SEL2 \
Raymond Mao3ba2c152023-07-25 07:53:35 -07001377 TRANSFER_LIST \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001378 TRUSTED_BOARD_BOOT \
1379 CRYPTO_SUPPORT \
1380 TRNG_SUPPORT \
1381 ERRATA_ABI_SUPPORT \
Sona Mathewef63f5b2023-03-14 14:02:03 -05001382 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001383 USE_COHERENT_MEM \
1384 USE_DEBUGFS \
1385 ARM_IO_IN_DTB \
1386 SDEI_IN_FCONF \
1387 SEC_INT_DESC_IN_FCONF \
1388 USE_ROMLIB \
1389 USE_TBBR_DEFS \
1390 WARMBOOT_ENABLE_DCACHE_EARLY \
1391 RESET_TO_BL2 \
1392 BL2_RUNS_AT_EL3 \
1393 BL2_IN_XIP_MEM \
1394 BL2_INV_DCACHE \
1395 USE_SPINLOCK_CAS \
1396 ERRATA_SPECULATIVE_AT \
1397 RAS_TRAP_NS_ERR_REC_ACCESS \
1398 COT_DESC_IN_DTB \
1399 USE_SP804_TIMER \
1400 ENABLE_FEAT_RNG \
1401 ENABLE_FEAT_RNG_TRAP \
1402 ENABLE_FEAT_SB \
1403 ENABLE_FEAT_DIT \
1404 NR_OF_FW_BANKS \
1405 NR_OF_IMAGES_IN_FW_BANK \
1406 PSA_FWU_SUPPORT \
1407 ENABLE_BRBE_FOR_NS \
1408 ENABLE_TRBE_FOR_NS \
1409 ENABLE_SYS_REG_TRACE_FOR_NS \
1410 ENABLE_TRF_FOR_NS \
1411 ENABLE_FEAT_HCX \
1412 ENABLE_MPMM \
1413 ENABLE_MPMM_FCONF \
1414 ENABLE_FEAT_FGT \
1415 ENABLE_FEAT_ECV \
1416 ENABLE_FEAT_AMUv1p1 \
1417 ENABLE_FEAT_SEL2 \
1418 ENABLE_FEAT_VHE \
1419 ENABLE_FEAT_CSV2_2 \
1420 ENABLE_FEAT_PAN \
1421 ENABLE_FEAT_TCR2 \
1422 ENABLE_FEAT_S2PIE \
1423 ENABLE_FEAT_S1PIE \
1424 ENABLE_FEAT_S2POE \
1425 ENABLE_FEAT_S1POE \
1426 ENABLE_FEAT_GCS \
Maksims Svecovs4d0b6632023-03-24 13:05:09 +00001427 ENABLE_FEAT_MTE_PERM \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001428 FEATURE_DETECTION \
1429 TWED_DELAY \
1430 ENABLE_FEAT_TWED \
Okash Khawaja04c73032022-11-04 12:38:01 +00001431 CONDITIONAL_CMO \
Varun Wadekar0ed3be62023-04-13 21:06:18 +01001432 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidananda8cf6fa2023-04-26 15:57:30 +01001433 SVE_VECTOR_LEN \
Raghu Krishnamurthy890b5082023-02-25 13:26:10 -08001434 ENABLE_SPMD_LP \
Manish V Badarkhe5782b892023-09-06 09:08:28 +01001435 PSA_CRYPTO \
Sandrine Bailleux85bebe12023-10-11 08:38:00 +02001436 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash183329a2023-08-15 16:28:06 -05001437 INIT_UNUSED_NS_EL2 \
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001438)))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +01001439
Justin Chadwell1f461972019-08-20 11:01:52 +01001440ifeq (${SANITIZE_UB},trap)
1441 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001442endif #(SANITIZE_UB)
Justin Chadwell1f461972019-08-20 11:01:52 +01001443
Sandrine Bailleux4c117f62015-11-26 16:31:34 +00001444# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1445ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +00001446 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1447else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001448# Define the PRELOADED_BL33_BASE flag only if it is provided and
1449# EL3_PAYLOAD_BASE is not defined, as it has priority.
1450 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz68450a62016-04-06 17:31:57 +01001451 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001452 endif
1453endif #(EL3_PAYLOAD_BASE)
Juan Castillo73c99d42015-08-18 14:23:04 +01001454
Soby Mathew209a60c2018-03-26 12:43:37 +01001455# Define the DYN_DISABLE_AUTH flag only if set.
1456ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001457 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew209a60c2018-03-26 12:43:37 +01001458endif
1459
Varun Wadekarc2ad38c2019-01-11 14:47:48 -08001460ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001461 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekarc2ad38c2019-01-11 14:47:48 -08001462endif
1463
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001464# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001465ifeq (${SPD},spmd)
Olivier Deprezc33ff192020-03-19 09:27:11 +01001466ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001467 -include $(BUILD_PLAT)/sp_gen.mk
1468 FIP_DEPS += sp
1469 CRT_DEPS += sp
1470 NEED_SP_PKG := yes
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001471else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001472 ifeq (${SPMD_SPM_AT_SEL2},1)
1473 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1474 endif
1475endif #(SP_LAYOUT_FILE)
1476endif #(SPD)
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001477
Juan Castillo73c99d42015-08-18 14:23:04 +01001478################################################################################
Juan Castillo73c99d42015-08-18 14:23:04 +01001479# Build targets
1480################################################################################
1481
Sumit Garg90aa9012019-11-11 18:46:36 +05301482.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 +01001483.SUFFIXES:
1484
1485all: msg_start
1486
1487msg_start:
1488 @echo "Building ${PLAT}"
1489
Soby Mathew7a24cba2015-10-26 14:29:21 +00001490ifeq (${ERROR_DEPRECATED},0)
Julius Wernerd5dfdeb2019-07-09 13:49:11 -07001491# Check if deprecated declarations and cpp warnings should be treated as error or not.
Varun Wadekarc2ad38c2019-01-11 14:47:48 -08001492ifneq ($(findstring clang,$(notdir $(CC))),)
1493 CPPFLAGS += -Wno-error=deprecated-declarations
1494else
Dan Handleybc1a03c2018-02-27 16:03:58 +00001495 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew7a24cba2015-10-26 14:29:21 +00001496endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001497endif #(!ERROR_DEPRECATED)
Soby Mathew7a24cba2015-10-26 14:29:21 +00001498
Roberto Vargas5accce52018-05-22 16:05:42 +01001499$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas61f72a32018-05-08 10:27:10 +01001500$(eval $(call MAKE_LIB,c))
Roberto Vargas5fee0282018-05-08 10:27:10 +01001501
Juan Castillo73c99d42015-08-18 14:23:04 +01001502# Expand build macros for the different images
1503ifeq (${NEED_BL1},yes)
Chris Kayb34635a2021-09-28 15:44:19 +01001504BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Aweke434d0492021-07-11 17:25:48 -05001505$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001506endif #(NEED_BL1)
Juan Castillo73c99d42015-08-18 14:23:04 +01001507
1508ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001509
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -06001510ifeq (${RESET_TO_BL2}, 0)
Roberto Vargasc9b31ae2018-01-02 11:23:41 +00001511FIP_BL2_ARGS := tb-fw
1512endif
1513
Chris Kayeb1acfb2021-09-28 15:44:37 +01001514BL2_SOURCES := $(sort ${BL2_SOURCES})
1515
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001516$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Aweke434d0492021-07-11 17:25:48 -05001517 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001518
1519endif #(NEED_BL2)
Juan Castillo73c99d42015-08-18 14:23:04 +01001520
Masahiro Yamada4d045d02017-04-05 19:11:41 +09001521ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001522$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001523endif #(NEED_SCP_BL2)
Masahiro Yamada4d045d02017-04-05 19:11:41 +09001524
Juan Castillo73c99d42015-08-18 14:23:04 +01001525ifeq (${NEED_BL31},yes)
1526BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddy26d1e0c2020-01-27 13:37:51 -06001527# Sort BL31 source files to remove duplicates
1528BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargc6ba9b42019-11-14 16:33:45 +05301529ifneq (${DECRYPTION_SUPPORT},none)
1530$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Aweke434d0492021-07-11 17:25:48 -05001531 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargc6ba9b42019-11-14 16:33:45 +05301532else
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001533$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Aweke434d0492021-07-11 17:25:48 -05001534 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001535endif #(DECRYPTION_SUPPORT)
1536endif #(NEED_BL31)
Juan Castillo73c99d42015-08-18 14:23:04 +01001537
Juan Castillo70d1fc52015-11-12 10:59:26 +00001538# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamadac939d132018-01-26 11:42:01 +09001539# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo70d1fc52015-11-12 10:59:26 +00001540# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castillo73c99d42015-08-18 14:23:04 +01001541ifeq (${NEED_BL32},yes)
Madhukar Pappireddy26d1e0c2020-01-27 13:37:51 -06001542# Sort BL32 source files to remove duplicates
1543BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada9cd15232018-01-26 11:42:01 +09001544BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1545
Sumit Gargc6ba9b42019-11-14 16:33:45 +05301546ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Aweke434d0492021-07-11 17:25:48 -05001547$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargc6ba9b42019-11-14 16:33:45 +05301548 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1549else
Zelalem Aweke434d0492021-07-11 17:25:48 -05001550$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001551 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001552endif #(DECRYPTION_SUPPORT)
1553endif #(NEED_BL32)
Juan Castillo73c99d42015-08-18 14:23:04 +01001554
Zelalem Aweke5b18de02021-07-11 18:33:20 -05001555# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1556# needs to be built from RMM_SOURCES.
1557ifeq (${NEED_RMM},yes)
1558# Sort RMM source files to remove duplicates
1559RMM_SOURCES := $(sort ${RMM_SOURCES})
1560BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1561
1562$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001563 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1564endif #(NEED_RMM)
Zelalem Aweke5b18de02021-07-11 18:33:20 -05001565
Juan Castillo73c99d42015-08-18 14:23:04 +01001566# Add the BL33 image if required by the platform
1567ifeq (${NEED_BL33},yes)
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001568$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001569endif #(NEED_BL33)
Juan Castillodb6071c2015-01-13 12:21:04 +00001570
Yatharth Kochar9003fa02015-10-14 15:27:24 +01001571ifeq (${NEED_BL2U},yes)
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001572$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Aweke434d0492021-07-11 17:25:48 -05001573 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001574endif #(NEED_BL2U)
Yatharth Kochar9003fa02015-10-14 15:27:24 +01001575
Nishanth Menon03b397a2016-10-14 01:13:57 +00001576# Expand build macros for the different images
1577ifeq (${NEED_FDT},yes)
Soby Mathew38c14d82017-12-14 17:44:56 +00001578 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001579endif #(NEED_FDT)
Nishanth Menon03b397a2016-10-14 01:13:57 +00001580
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001581# Add Secure Partition packages
1582ifeq (${NEED_SP_PKG},yes)
Karl Meakin20629b32023-02-14 11:56:02 +00001583$(BUILD_PLAT)/sp_gen.mk : ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
1584 ${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
J-Alves822c7272022-03-22 16:28:51 +00001585sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001586 @${ECHO_BLANK_LINE}
1587 @echo "Built SP Images successfully"
1588 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001589endif #(NEED_SP_PKG)
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001590
Ian Spray36eaaf32014-01-30 17:25:28 +00001591locate-checkpatch:
1592ifndef CHECKPATCH
Etienne Carriere66079b02017-08-23 15:44:01 +02001593 $(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 +00001594else
1595ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carriere66079b02017-08-23 15:44:01 +02001596 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001597endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001598endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001599
Achin Gupta4f6ad662013-10-25 09:08:21 +01001600clean:
Juan Castillo73c99d42015-08-18 14:23:04 +01001601 @echo " CLEAN"
Evan Lloydf1477d42015-12-02 18:33:55 +00001602 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001603ifdef UNIX_MK
Juan Castillo73c99d42015-08-18 14:23:04 +01001604 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001605else
1606# Clear the MAKEFLAGS as we do not want
1607# to pass the gnumake flags to nmake.
1608 ${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 +01001609endif #(UNIX_MK)
Juan Castillo73c99d42015-08-18 14:23:04 +01001610 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Sumit Garg90aa9012019-11-11 18:46:36 +05301611 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
Roberto Vargas5accce52018-05-22 16:05:42 +01001612 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001613
James Morrisseyeaaeece2013-11-01 13:56:59 +00001614realclean distclean:
Juan Castillo73c99d42015-08-18 14:23:04 +01001615 @echo " REALCLEAN"
Evan Lloydf1477d42015-12-02 18:33:55 +00001616 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1617 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001618ifdef UNIX_MK
Juan Castillo73c99d42015-08-18 14:23:04 +01001619 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001620else
1621# Clear the MAKEFLAGS as we do not want
1622# to pass the gnumake flags to nmake.
1623 ${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 +01001624endif #(UNIX_MK)
Nicolas Boulengueze15591a2021-03-31 12:22:45 +02001625 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
Sumit Garg90aa9012019-11-11 18:46:36 +05301626 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
Roberto Vargas5accce52018-05-22 16:05:42 +01001627 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001628
Ian Spray36eaaf32014-01-30 17:25:28 +00001629checkcodebase: locate-checkpatch
Juan Castillo73c99d42015-08-18 14:23:04 +01001630 @echo " CHECKING STYLE"
Dan Handley1a41e8c2016-06-02 18:21:02 +01001631 @if test -d .git ; then \
Paul Beesley1ef35512019-03-07 16:42:31 +00001632 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley1a41e8c2016-06-02 18:21:02 +01001633 while read GIT_FILE ; \
1634 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1635 done ; \
1636 else \
1637 find . -type f -not -iwholename "*.git*" \
1638 -not -iwholename "*build*" \
1639 -not -iwholename "*libfdt*" \
Roberto Vargas61f72a32018-05-08 10:27:10 +01001640 -not -iwholename "*libc*" \
Dan Handley1a41e8c2016-06-02 18:21:02 +01001641 -not -iwholename "*docs*" \
Paul Beesley1ef35512019-03-07 16:42:31 +00001642 -not -iwholename "*.rst" \
Dan Handley1a41e8c2016-06-02 18:21:02 +01001643 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1644 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001645
1646checkpatch: locate-checkpatch
Juan Castillo73c99d42015-08-18 14:23:04 +01001647 @echo " CHECKING STYLE"
Yann Gautier02a76d52019-03-08 15:44:00 +01001648 @if test -n "${CHECKPATCH_OPTS}"; then \
1649 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1650 fi
Antonio Nino Diaz51d28932018-01-29 12:00:31 +00001651 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautier77a0a7f2021-11-02 18:03:31 +01001652 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1653 do \
Antonio Nino Diaz51d28932018-01-29 12:00:31 +00001654 printf "\n[*] Checking style of '$$commit'\n\n"; \
1655 git log --format=email "$$commit~..$$commit" \
Yann Gautier02a76d52019-03-08 15:44:00 +01001656 -- ${CHECK_PATHS} | \
1657 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz51d28932018-01-29 12:00:31 +00001658 git diff --format=email "$$commit~..$$commit" \
Yann Gautier02a76d52019-03-08 15:44:00 +01001659 -- ${CHECK_PATHS} | \
1660 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz51d28932018-01-29 12:00:31 +00001661 done
Juan Castillo73c99d42015-08-18 14:23:04 +01001662
1663certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001664
Pali Rohára9812202020-11-24 15:38:08 +01001665${CRTTOOL}: FORCE
Lionel Debieve598b1662022-11-14 11:05:09 +01001666 ${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 +00001667 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +01001668 @echo "Built $@ successfully"
Evan Lloydf1477d42015-12-02 18:33:55 +00001669 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +01001670
1671ifneq (${GENERATE_COT},0)
1672certificates: ${CRT_DEPS} ${CRTTOOL}
1673 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloydf1477d42015-12-02 18:33:55 +00001674 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +01001675 @echo "Built $@ successfully"
1676 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloydf1477d42015-12-02 18:33:55 +00001677 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001678endif #(GENERATE_COT)
Juan Castillo73c99d42015-08-18 14:23:04 +01001679
1680${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohár4727fd12020-11-24 16:53:04 +01001681 $(eval ${CHECK_FIP_CMD})
dp-arm819281e2016-05-25 16:20:20 +01001682 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
1683 ${Q}${FIPTOOL} info $@
Evan Lloydf1477d42015-12-02 18:33:55 +00001684 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +01001685 @echo "Built $@ successfully"
Evan Lloydf1477d42015-12-02 18:33:55 +00001686 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +01001687
Yatharth Kochar01912622015-10-12 12:33:47 +01001688ifneq (${GENERATE_COT},0)
1689fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1690 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd052ab522017-04-11 16:52:00 +01001691 @${ECHO_BLANK_LINE}
Yatharth Kochar01912622015-10-12 12:33:47 +01001692 @echo "Built $@ successfully"
1693 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd052ab522017-04-11 16:52:00 +01001694 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001695endif #(GENERATE_COT)
Yatharth Kochar01912622015-10-12 12:33:47 +01001696
1697${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohár4727fd12020-11-24 16:53:04 +01001698 $(eval ${CHECK_FWU_FIP_CMD})
dp-arm819281e2016-05-25 16:20:20 +01001699 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1700 ${Q}${FIPTOOL} info $@
Evan Lloyd052ab522017-04-11 16:52:00 +01001701 @${ECHO_BLANK_LINE}
Yatharth Kochar01912622015-10-12 12:33:47 +01001702 @echo "Built $@ successfully"
Evan Lloyd052ab522017-04-11 16:52:00 +01001703 @${ECHO_BLANK_LINE}
Yatharth Kochar01912622015-10-12 12:33:47 +01001704
Juan Castillo73c99d42015-08-18 14:23:04 +01001705fiptool: ${FIPTOOL}
1706fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochar01912622015-10-12 12:33:47 +01001707fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Juan Castillo6f971622014-10-21 11:30:42 +01001708
Pali Rohára9812202020-11-24 15:38:08 +01001709${FIPTOOL}: FORCE
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001710ifdef UNIX_MK
Lionel Debieve598b1662022-11-14 11:05:09 +01001711 ${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 +01001712else
1713# Clear the MAKEFLAGS as we do not want
1714# to pass the gnumake flags to nmake.
1715 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001716endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001717
Pali Rohára9812202020-11-24 15:38:08 +01001718romlib.bin: libraries FORCE
John Tsichritzisbbb24f62019-05-21 15:47:37 +01001719 ${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 +01001720
Louis Mayencourtcfe83912019-10-16 14:30:51 +01001721memmap: all
Harrison Mutaiaf5b49e2023-02-23 10:33:58 +00001722ifdef UNIX_MK
1723 ${Q}PYTHONPATH=${CURDIR}/tools/memory \
1724 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1725else
1726 ${Q}set PYTHONPATH=${CURDIR}/tools/memory && \
1727 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1728endif
Louis Mayencourtcfe83912019-10-16 14:30:51 +01001729
Madhukar Pappireddy6de32372020-01-28 12:41:20 -06001730doc:
1731 @echo " BUILD DOCUMENTATION"
1732 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1733
Sumit Garg90aa9012019-11-11 18:46:36 +05301734enctool: ${ENCTOOL}
1735
Pali Rohára9812202020-11-24 15:38:08 +01001736${ENCTOOL}: FORCE
Lionel Debieve598b1662022-11-14 11:05:09 +01001737 ${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 +05301738 @${ECHO_BLANK_LINE}
1739 @echo "Built $@ successfully"
1740 @${ECHO_BLANK_LINE}
1741
Joakim Bech35fab8c2014-01-23 14:51:49 +01001742cscope:
1743 @echo " CSCOPE"
1744 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1745 ${Q}cscope -b -q -k
1746
Ryan Harkin72ee3312014-01-15 16:55:07 +00001747help:
John Tsichritzis7c231262019-05-21 15:57:31 +01001748 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001749 @echo ""
1750 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleux08c7ed02014-03-21 13:16:35 +00001751 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001752 @echo ""
John Tsichritzis7c231262019-05-21 15:57:31 +01001753 @echo "platform = ${PLATFORM_LIST}"
1754 @echo ""
Sandrine Bailleux1b578592015-02-18 16:18:00 +00001755 @echo "Please refer to the User Guide for a list of all supported options."
1756 @echo "Note that the build system doesn't track dependencies for build "
1757 @echo "options. Therefore, if any of the build options are changed "
1758 @echo "from a previous build, a clean build must be performed."
1759 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +00001760 @echo "Supported Targets:"
Sandrine Bailleux1b578592015-02-18 16:18:00 +00001761 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +00001762 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +00001763 @echo " bl2 Build the BL2 binary"
Yatharth Kochar9003fa02015-10-14 15:27:24 +01001764 @echo " bl2u Build the BL2U binary"
Juan Castillod1786372015-12-14 09:35:25 +00001765 @echo " bl31 Build the BL31 binary"
Soby Mathew9d29c222016-05-05 14:33:33 +01001766 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1767 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castillo73c99d42015-08-18 14:23:04 +01001768 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleux1b578592015-02-18 16:18:00 +00001769 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochar01912622015-10-12 12:33:47 +01001770 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +00001771 @echo " checkcodebase Check the coding style of the entire source tree"
1772 @echo " checkpatch Check the coding style on changes in the current"
1773 @echo " branch against BASE_COMMIT (default origin/master)"
1774 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +00001775 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +00001776 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo6f971622014-10-21 11:30:42 +01001777 @echo " certtool Build the Certificate generation tool"
Sumit Garg90aa9012019-11-11 18:46:36 +05301778 @echo " enctool Build the Firmware encryption tool"
Andreas Färber59dead22016-10-10 05:18:49 +02001779 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001780 @echo " sp Build the Secure Partition Packages"
Antonio Nino Diaz26010da2018-11-27 14:58:04 +00001781 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathew38c14d82017-12-14 17:44:56 +00001782 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Louis Mayencourtcfe83912019-10-16 14:30:51 +01001783 @echo " memmap Print the memory map of the built binaries"
Madhukar Pappireddy6de32372020-01-28 12:41:20 -06001784 @echo " doc Build html based documentation using Sphinx tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001785 @echo ""
Sandrine Bailleux1b578592015-02-18 16:18:00 +00001786 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +00001787 @echo ""
1788 @echo "example: build all targets for the FVP platform:"
1789 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohára9812202020-11-24 15:38:08 +01001790
1791.PHONY: FORCE
1792FORCE:;