blob: 464544f6c5db4ea77d384692df839de77eab5c10 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001#
Maksims Svecovs1e25c5b2023-02-02 16:10:22 +00002# Copyright (c) 2013-2023, Arm Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003#
dp-armfa3cf0b2017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005#
6
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +01007#
Juan Castillo04be3a52014-06-30 11:41:46 +01008# Trusted Firmware Version
9#
Soby Mathewd42eaee2018-10-01 16:16:34 +010010VERSION_MAJOR := 2
Juan Pablo Conde52487492023-05-15 22:17:17 -050011VERSION_MINOR := 9
Yann Gautier57078a92023-10-03 11:09:07 +020012VERSION_PATCH := 0
13VERSION := ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}
Juan Castillo04be3a52014-06-30 11:41:46 +010014
Juan Castillo396644b2015-10-22 11:34:44 +010015# Default goal is build all images
16.DEFAULT_GOAL := all
17
Douglas Raillard527cd902016-12-28 14:47:50 +000018# Avoid any implicit propagation of command line variable definitions to
19# sub-Makefiles, like CFLAGS that we reserved for the firmware images'
20# usage. Other command line options like "-s" are still propagated as usual.
21MAKEOVERRIDES =
22
Evan Lloydf2697142015-12-02 18:17:37 +000023MAKE_HELPERS_DIRECTORY := make_helpers/
24include ${MAKE_HELPERS_DIRECTORY}build_macros.mk
Evan Lloyda71d2592015-12-02 18:56:06 +000025include ${MAKE_HELPERS_DIRECTORY}build_env.mk
Juan Castilloa3487d12015-08-18 14:23:04 +010026
27################################################################################
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010028# Default values for build configurations, and their dependencies
Juan Castilloa3487d12015-08-18 14:23:04 +010029################################################################################
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +010030
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010031include ${MAKE_HELPERS_DIRECTORY}defaults.mk
dp-arm3cac7862016-09-19 11:18:44 +010032
Antonio Nino Diaz808c2292017-04-18 15:16:05 +010033# Assertions enabled for DEBUG builds by default
Antonio Nino Diaz808c2292017-04-18 15:16:05 +010034ENABLE_ASSERTIONS := ${DEBUG}
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010035ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION}
36PLAT := ${DEFAULT_PLAT}
Achin Gupta4f6ad662013-10-25 09:08:21 +010037
Juan Castilloa3487d12015-08-18 14:23:04 +010038################################################################################
39# Checkpatch script options
40################################################################################
41
Sandrine Bailleux0b5a1582016-06-02 11:19:59 +010042CHECKCODE_ARGS := --no-patch
Dan Handleyd7b59e42016-06-02 17:15:13 +010043# Do not check the coding style on imported library files or documentation files
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030044INC_ARM_DIRS_TO_CHECK := $(sort $(filter-out \
45 include/drivers/arm/cryptocell, \
46 $(wildcard include/drivers/arm/*)))
47INC_ARM_DIRS_TO_CHECK += include/drivers/arm/cryptocell/*.h
48INC_DRV_DIRS_TO_CHECK := $(sort $(filter-out \
49 include/drivers/arm, \
50 $(wildcard include/drivers/*)))
Dan Handleyd7b59e42016-06-02 17:15:13 +010051INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \
Dan Handley3a355712016-06-02 18:21:02 +010052 include/lib/libfdt \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010053 include/lib/libc, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010054 $(wildcard include/lib/*)))
55INC_DIRS_TO_CHECK := $(sort $(filter-out \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030056 include/lib \
57 include/drivers, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010058 $(wildcard include/*)))
59LIB_DIRS_TO_CHECK := $(sort $(filter-out \
dp-arme3cc8382017-05-04 12:15:35 +010060 lib/compiler-rt \
Antonio Nino Diazd84f88e2017-01-16 17:20:45 +000061 lib/libfdt% \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010062 lib/libc, \
Daniel Boulby958f1dd2022-10-05 11:05:22 +010063 lib/zlib \
Dan Handleyd7b59e42016-06-02 17:15:13 +010064 $(wildcard lib/*)))
65ROOT_DIRS_TO_CHECK := $(sort $(filter-out \
66 lib \
67 include \
68 docs \
Paul Beesleyadfab5b2019-03-07 16:42:31 +000069 %.rst, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010070 $(wildcard *)))
71CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \
72 ${INC_DIRS_TO_CHECK} \
73 ${INC_LIB_DIRS_TO_CHECK} \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030074 ${LIB_DIRS_TO_CHECK} \
75 ${INC_DRV_DIRS_TO_CHECK} \
76 ${INC_ARM_DIRS_TO_CHECK}
Ian Spray36eaaf32014-01-30 17:25:28 +000077
Juan Castilloa3487d12015-08-18 14:23:04 +010078################################################################################
79# Process build options
80################################################################################
81
82# Verbose flag
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +010083ifeq (${V},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010084 Q:=@
85 ECHO:=@echo
86 CHECKCODE_ARGS += --no-summary --terse
Achin Gupta4f6ad662013-10-25 09:08:21 +010087else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010088 Q:=
89 ECHO:=$(ECHO_QUIET)
Andre Przywaracf2bb082018-09-27 10:56:05 +010090endif
91
92ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010093 Q:=@
94 ECHO:=$(ECHO_QUIET)
Achin Gupta4f6ad662013-10-25 09:08:21 +010095endif
Andre Przywaracf2bb082018-09-27 10:56:05 +010096
97export Q ECHO
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +000098
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010099################################################################################
100# Toolchain
101################################################################################
102
103HOSTCC := gcc
104export HOSTCC
105
106CC := ${CROSS_COMPILE}gcc
107CPP := ${CROSS_COMPILE}cpp
108AS := ${CROSS_COMPILE}gcc
109AR := ${CROSS_COMPILE}ar
110LINKER := ${CROSS_COMPILE}ld
111OC := ${CROSS_COMPILE}objcopy
112OD := ${CROSS_COMPILE}objdump
113NM := ${CROSS_COMPILE}nm
114PP := ${CROSS_COMPILE}gcc -E
115DTC := dtc
116
117# Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH).
118ifneq ($(strip $(wildcard ${LD}.bfd) \
119 $(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),)
120LINKER := ${LINKER}.bfd
Juan Castilloa3487d12015-08-18 14:23:04 +0100121endif
122
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100123################################################################################
124# Auxiliary tools (fiptool, cert_create, etc)
125################################################################################
126
127# Variables for use with Certificate Generation Tool
128CRTTOOLPATH ?= tools/cert_create
129CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT}
130
131# Variables for use with Firmware Encryption Tool
132ENCTOOLPATH ?= tools/encrypt_fw
133ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
134
135# Variables for use with Firmware Image Package
136FIPTOOLPATH ?= tools/fiptool
137FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT}
138
139# Variables for use with sptool
140SPTOOLPATH ?= tools/sptool
141SPTOOL ?= ${SPTOOLPATH}/sptool.py
142SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py
Karl Meakinaba46182023-02-14 11:56:02 +0000143SP_DTS_LIST_FRAGMENT ?= ${BUILD_PLAT}/sp_list_fragment.dts
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100144
145# Variables for use with ROMLIB
146ROMLIBPATH ?= lib/romlib
147
148# Variable for use with Python
149PYTHON ?= python3
150
151# Variables for use with documentation build using Sphinx tool
152DOCS_PATH ?= docs
153
154################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100155# Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags
Juan Castilloa3487d12015-08-18 14:23:04 +0100156################################################################################
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100157ifeq (${ARM_ARCH_MAJOR},7)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100158 target32-directive = -target arm-none-eabi
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500159# Will set march-directive from platform configuration
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100160else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100161 target32-directive = -target armv8a-none-eabi
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100162endif #(ARM_ARCH_MAJOR)
163
164################################################################################
165# Get Architecture Feature Modifiers
166################################################################################
167arch-features = ${ARM_ARCH_FEATURE}
168
Alexei Fedorov132e6652020-12-07 16:38:53 +0000169# Set the compiler's architecture feature modifiers
170ifneq ($(arch-features), none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100171 # Strip "none+" from arch-features
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500172 arch-features := $(subst none+,,$(arch-features))
173 march-directive := $(march-directive)+$(arch-features)
Alexei Fedorov132e6652020-12-07 16:38:53 +0000174# Print features
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100175 $(info Arm Architecture Features specified: $(subst +, ,$(arch-features)))
176endif #(arch-features)
Chris Kay08fec332021-03-09 13:34:35 +0000177
originfba80d82022-01-19 16:30:14 +0000178ifneq ($(findstring clang,$(notdir $(CC))),)
179 ifneq ($(findstring armclang,$(notdir $(CC))),)
Govindraj Raja69096412023-06-01 16:29:16 -0500180 TF_CFLAGS_aarch32 := -target arm-arm-none-eabi
181 TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi
originfba80d82022-01-19 16:30:14 +0000182 LD := $(LINKER)
183 else
Govindraj Raja69096412023-06-01 16:29:16 -0500184 TF_CFLAGS_aarch32 = $(target32-directive)
185 TF_CFLAGS_aarch64 := -target aarch64-elf
originfba80d82022-01-19 16:30:14 +0000186 LD := $(shell $(CC) --print-prog-name ld.lld)
187
188 AR := $(shell $(CC) --print-prog-name llvm-ar)
189 OD := $(shell $(CC) --print-prog-name llvm-objdump)
190 OC := $(shell $(CC) --print-prog-name llvm-objcopy)
191 endif
192
193 CPP := $(CC) -E $(TF_CFLAGS_$(ARCH))
194 PP := $(CC) -E $(TF_CFLAGS_$(ARCH))
195 AS := $(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
zelalem-aweked5f45272019-11-12 16:20:17 -0600196else ifneq ($(findstring gcc,$(notdir $(CC))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100197 ifeq ($(ENABLE_LTO),1)
198 # Enable LTO only for aarch64
199 ifeq (${ARCH},aarch64)
200 LTO_CFLAGS = -flto
201 # Use gcc as a wrapper for the ld, recommended for LTO
202 LINKER := ${CROSS_COMPILE}gcc
203 endif
zelalem-aweked5f45272019-11-12 16:20:17 -0600204 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100205 LD = $(LINKER)
dp-arm320e8442017-05-02 12:00:08 +0100206else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100207 LD = $(LINKER)
208endif #(clang)
dp-arm320e8442017-05-02 12:00:08 +0100209
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100210# Process Debug flag
211$(eval $(call add_define,DEBUG))
212ifneq (${DEBUG}, 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100213 BUILD_TYPE := debug
214 TF_CFLAGS += -g -gdwarf-4
215 ASFLAGS += -g -Wa,-gdwarf-4
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100216
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100217 # Use LOG_LEVEL_INFO by default for debug builds
218 LOG_LEVEL := 40
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100219else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100220 BUILD_TYPE := release
221 # Use LOG_LEVEL_NOTICE by default for release builds
222 LOG_LEVEL := 20
223endif #(Debug)
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100224
Peiyuan Song44f8f472020-04-25 16:53:43 +0800225# Default build string (git branch and commit)
226ifeq (${BUILD_STRING},)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100227 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
Peiyuan Song44f8f472020-04-25 16:53:43 +0800228endif
laurenw-arme954f652022-07-12 10:12:05 -0500229VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
Peiyuan Song44f8f472020-04-25 16:53:43 +0800230
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100231ifeq (${AARCH32_INSTRUCTION_SET},A32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100232 TF_CFLAGS_aarch32 += -marm
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100233else ifeq (${AARCH32_INSTRUCTION_SET},T32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100234 TF_CFLAGS_aarch32 += -mthumb
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100235else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100236 $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
237endif #(AARCH32_INSTRUCTION_SET)
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100238
Sandrine Bailleux1aa72ec2018-07-03 09:14:45 +0200239TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-arm320e8442017-05-02 12:00:08 +0100240TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathewa1941252016-05-05 14:33:33 +0100241
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500242ASFLAGS += $(march-directive)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000243
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100244##############################################################################
245# WARNINGS Configuration
246###############################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100247# General warnings
248WARNINGS := -Wall -Wmissing-include-dirs -Wunused \
Yann Gautier94a40b62021-05-20 13:18:14 +0200249 -Wdisabled-optimization -Wvla -Wshadow \
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000250 -Wredundant-decls
251# stricter warnings
252WARNINGS += -Wextra -Wno-trigraphs
253# too verbose for generic build
254WARNINGS += -Wno-missing-field-initializers \
255 -Wno-type-limits -Wno-sign-compare \
256# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
257WARNINGS += -Wno-unused-parameter
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100258
259# Additional warnings
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000260# Level 1 - infrequent warnings we should have none of
261# full -Wextra
262WARNING1 += -Wsign-compare
263WARNING1 += -Wtype-limits
264WARNING1 += -Wmissing-field-initializers
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100265
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000266# Level 2 - problematic warnings that we want
267# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
268# TODO: disable just for them and move into default build
269WARNING2 += -Wold-style-definition
270WARNING2 += -Wmissing-prototypes
271WARNING2 += -Wmissing-format-attribute
272# TF-A aims to comply with this eventually. Effort too large at present
273WARNING2 += -Wundef
Boyan Karatotev9c6ba592022-11-21 14:49:05 +0000274# currently very involved and many platforms set this off
275WARNING2 += -Wunused-const-variable=2
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100276
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000277# Level 3 - very pedantic, frequently ignored
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100278WARNING3 := -Wbad-function-cast
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000279WARNING3 += -Waggregate-return
280WARNING3 += -Wnested-externs
281WARNING3 += -Wcast-align
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100282WARNING3 += -Wcast-qual
283WARNING3 += -Wconversion
284WARNING3 += -Wpacked
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100285WARNING3 += -Wpointer-arith
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100286WARNING3 += -Wswitch-default
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100287
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000288# Setting W is quite verbose and most warnings will be pre-existing issues
289# outside of the contributor's control. Don't fail the build on them so warnings
290# can be seen and hopefully addressed
291ifdef W
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100292 ifneq (${W},0)
293 E ?= 0
294 endif
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000295endif
296
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100297ifeq (${W},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100298 WARNINGS += $(WARNING1)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100299else ifeq (${W},2)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100300 WARNINGS += $(WARNING1) $(WARNING2)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100301else ifeq (${W},3)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100302 WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
303endif #(W)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100304
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100305# Compiler specific warnings
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100306ifeq ($(findstring clang,$(notdir $(CC))),)
Justin Chadwell7a914232019-07-03 14:15:56 +0100307# not using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100308WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \
309 -Wpacked-bitfield-compat -Wshift-overflow=2 \
310 -Wlogical-op
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500311
312# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
313TF_CFLAGS += $(call cc_option, --param=min-pagesize=0)
314
Justin Chadwell7a914232019-07-03 14:15:56 +0100315else
316# using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100317WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
318 -Wlogical-op-parentheses
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100319endif #(Clang Warning)
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100320
Yann Gautier957c3532018-12-10 18:08:53 +0100321ifneq (${E},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100322 ERRORS := -Werror
323endif #(E)
Yann Gautier957c3532018-12-10 18:08:53 +0100324
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100325################################################################################
326# Compiler and Linker Directives
327################################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100328CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
329 $(ERRORS) $(WARNINGS)
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500330ASFLAGS += $(CPPFLAGS) \
Julius Werner53456fc2019-07-09 13:49:11 -0700331 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900332TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Holland23f5e542019-10-20 16:11:25 -0500333 -ffunction-sections -fdata-sections \
334 -ffreestanding -fno-builtin -fno-common \
335 -Os -std=gnu99
Juan Castilloa3487d12015-08-18 14:23:04 +0100336
Justin Chadwell83e04882019-08-20 11:01:52 +0100337ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100338 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
339endif #(${SANITIZE_UB},on)
340
Justin Chadwell83e04882019-08-20 11:01:52 +0100341ifeq (${SANITIZE_UB},trap)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100342 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
Justin Chadwell83e04882019-08-20 11:01:52 +0100343 -fsanitize-undefined-trap-on-error
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100344endif #(${SANITIZE_UB},trap)
Justin Chadwell83e04882019-08-20 11:01:52 +0100345
david cunado34ab6092017-11-30 21:58:01 +0000346GCC_V_OUTPUT := $(shell $(CC) -v 2>&1)
david cunado34ab6092017-11-30 21:58:01 +0000347
Marco Felsch24ad8402022-11-09 12:59:09 +0100348TF_LDFLAGS += -z noexecstack
349
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100350# LD = armlink
Varun Wadekar4d034c52019-01-11 14:47:48 -0800351ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100352 TF_LDFLAGS += --diag_error=warning --lto_level=O1
353 TF_LDFLAGS += --remove --info=unused,unusedsymbols
354 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100355
356# LD = gcc (used when GCC LTO is enabled)
zelalem-aweked5f45272019-11-12 16:20:17 -0600357else ifneq ($(findstring gcc,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100358 # Pass ld options with Wl or Xlinker switches
359 TF_LDFLAGS += -Wl,--fatal-warnings -O1
360 TF_LDFLAGS += -Wl,--gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000361
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100362 TF_LDFLAGS += -Wl,-z,common-page-size=4096 #Configure page size constants
363 TF_LDFLAGS += -Wl,-z,max-page-size=4096
Chris Kay73b1f402022-12-22 13:26:37 +0000364
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100365 ifeq ($(ENABLE_LTO),1)
366 ifeq (${ARCH},aarch64)
367 TF_LDFLAGS += -flto -fuse-linker-plugin
368 endif
369 endif #(ENABLE_LTO)
370
zelalem-aweked5f45272019-11-12 16:20:17 -0600371# GCC automatically adds fix-cortex-a53-843419 flag when used to link
372# which breaks some builds, so disable if errata fix is not explicitly enabled
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100373 ifneq (${ERRATA_A53_843419},1)
374 TF_LDFLAGS += -mno-fix-cortex-a53-843419
375 endif
376 TF_LDFLAGS += -nostdlib
377 TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100378
379# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekar4d034c52019-01-11 14:47:48 -0800380else
Marco Felsch24ad8402022-11-09 12:59:09 +0100381# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
382# are not loaded by a elf loader.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100383 TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
384 TF_LDFLAGS += -O1
385 TF_LDFLAGS += --gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000386
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100387 TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
388 TF_LDFLAGS += -z max-page-size=4096
Chris Kay73b1f402022-12-22 13:26:37 +0000389
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100390# ld.lld doesn't recognize the errata flags,
Yabin Cuied7dc512023-01-19 20:06:04 +0000391# therefore don't add those in that case.
392# ld.lld reports section type mismatch warnings,
393# therefore don't add --fatal-warnings to it.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100394 ifeq ($(findstring ld.lld,$(notdir $(LD))),)
395 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
396 endif
397
398endif #(LD = armlink)
Juan Castilloa3487d12015-08-18 14:23:04 +0100399
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000400DTC_FLAGS += -I dts -O dtb
Louis Mayencourt6b232d92020-02-28 16:57:30 +0000401DTC_CPPFLAGS += -P -nostdinc -Iinclude -Ifdts -undef \
402 -x assembler-with-cpp $(DEFINES)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000403
Juan Castilloa3487d12015-08-18 14:23:04 +0100404################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500405# Setup ARCH_MAJOR/MINOR before parsing arch_features.
406################################################################################
407ifeq (${ENABLE_RME},1)
408 ARM_ARCH_MAJOR := 8
409 ARM_ARCH_MINOR := 6
410endif
411
412################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100413# Common sources and include directories
414################################################################################
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000415include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
dp-arme3cc8382017-05-04 12:15:35 +0100416include lib/compiler-rt/compiler-rt.mk
Juan Castilloa3487d12015-08-18 14:23:04 +0100417
418BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100419 common/tf_log.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100420 common/${ARCH}/debug.S \
Julius Werner03020da2018-11-27 22:10:56 -0800421 drivers/console/multi_console.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100422 lib/${ARCH}/cache_helpers.S \
423 lib/${ARCH}/misc_helpers.S \
Boyan Karatotev05504ba2023-02-15 13:21:50 +0000424 lib/extensions/pmuv3/${ARCH}/pmuv3.c \
Soby Mathew2f38ce32018-02-08 17:45:12 +0000425 plat/common/plat_bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100426 plat/common/plat_log_common.c \
dp-arm230011c2017-03-07 11:02:47 +0000427 plat/common/${ARCH}/plat_common.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100428 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas0f8f9852018-05-08 10:27:10 +0100429 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000430
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100431ifeq ($(notdir $(CC)),armclang)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100432 BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100433endif
434
Justin Chadwell83e04882019-08-20 11:01:52 +0100435ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100436 BL_COMMON_SOURCES += plat/common/ubsan.c
Justin Chadwell83e04882019-08-20 11:01:52 +0100437endif
438
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200439INCLUDES += -Iinclude \
Antonio Nino Diaz8d1ade62018-12-17 17:20:57 +0000440 -Iinclude/arch/${ARCH} \
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000441 -Iinclude/lib/cpus/${ARCH} \
442 -Iinclude/lib/el3_runtime/${ARCH} \
443 ${PLAT_INCLUDES} \
444 ${SPD_INCLUDES}
445
Antonio Nino Diazc3a2cf22018-11-19 11:48:30 +0000446include common/backtrace/backtrace.mk
447
Juan Castilloa3487d12015-08-18 14:23:04 +0100448################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500449# Process BRANCH_PROTECTION value and set
450# Pointer Authentication and Branch Target Identification flags
451################################################################################
452ifeq (${BRANCH_PROTECTION},0)
453 # Default value turns off all types of branch protection
454 BP_OPTION := none
455else ifneq (${ARCH},aarch64)
456 $(error BRANCH_PROTECTION requires AArch64)
457else ifeq (${BRANCH_PROTECTION},1)
458 # Enables all types of branch protection features
459 BP_OPTION := standard
460 ENABLE_BTI := 1
461 ENABLE_PAUTH := 1
462else ifeq (${BRANCH_PROTECTION},2)
463 # Return address signing to its standard level
464 BP_OPTION := pac-ret
465 ENABLE_PAUTH := 1
466else ifeq (${BRANCH_PROTECTION},3)
467 # Extend the signing to include leaf functions
468 BP_OPTION := pac-ret+leaf
469 ENABLE_PAUTH := 1
470else ifeq (${BRANCH_PROTECTION},4)
471 # Turn on branch target identification mechanism
472 BP_OPTION := bti
473 ENABLE_BTI := 1
474else
475 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
476endif #(BRANCH_PROTECTION)
477
478ifeq ($(ENABLE_PAUTH),1)
479 CTX_INCLUDE_PAUTH_REGS := 1
480endif
481ifneq (${BP_OPTION},none)
482 TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
483endif #(BP_OPTION)
484
485# Pointer Authentication sources
486ifeq (${ENABLE_PAUTH}, 1)
487# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
488# Pauth support. As it's not secure, it must be reimplemented for real platforms
489 BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
490endif
491
492####################################################
493# Enable required options for Memory Stack Tagging.
494####################################################
495
496# Currently, these options are enabled only for clang and armclang compiler.
497ifeq (${SUPPORT_STACK_MEMTAG},yes)
498 ifdef mem_tag_arch_support
499 # Check for armclang and clang compilers
500 ifneq ( ,$(filter $(notdir $(CC)),armclang clang))
501 # Add "memtag" architecture feature modifier if not specified
502 ifeq ( ,$(findstring memtag,$(arch-features)))
503 arch-features := $(arch-features)+memtag
504 endif # memtag
505 ifeq ($(notdir $(CC)),armclang)
506 TF_CFLAGS += -mmemtag-stack
507 else ifeq ($(notdir $(CC)),clang)
508 TF_CFLAGS += -fsanitize=memtag
509 endif # armclang
510 endif
511 else
512 $(error "Error: stack memory tagging is not supported for \
513 architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
514 endif #(mem_tag_arch_support)
515endif #(SUPPORT_STACK_MEMTAG)
516
517################################################################################
518# RME dependent flags configuration, Enable optional features for RME.
519################################################################################
520# FEAT_RME
521ifeq (${ENABLE_RME},1)
522 # RME doesn't support PIE
523 ifneq (${ENABLE_PIE},0)
524 $(error ENABLE_RME does not support PIE)
525 endif
526
527 # RME doesn't support BRBE
528 ifneq (${ENABLE_BRBE_FOR_NS},0)
529 $(error ENABLE_RME does not support BRBE.)
530 endif
531
532 # RME requires AARCH64
533 ifneq (${ARCH},aarch64)
534 $(error ENABLE_RME requires AArch64)
535 endif
536
537 # RME requires el2 context to be saved for now.
538 CTX_INCLUDE_EL2_REGS := 1
539 CTX_INCLUDE_AARCH32_REGS := 0
540 CTX_INCLUDE_PAUTH_REGS := 1
541
542 # RME enables CSV2_2 extension by default.
543 ENABLE_FEAT_CSV2_2 = 1
544endif #(FEAT_RME)
545
546################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100547# Generic definitions
548################################################################################
Evan Lloydf2697142015-12-02 18:17:37 +0000549include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
550
Grant Likely388248a2020-07-30 08:50:10 +0100551ifeq (${BUILD_BASE},)
552 BUILD_BASE := ./build
553endif
554BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
Achin Gupta4f6ad662013-10-25 09:08:21 +0100555
Evan Lloydf2697142015-12-02 18:17:37 +0000556SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
Ryan Harkin72ee3312014-01-15 16:55:07 +0000557
Juan Castilloa3487d12015-08-18 14:23:04 +0100558# Platforms providing their own TBB makefile may override this value
559INCLUDE_TBBR_MK := 1
560
Juan Castilloa3487d12015-08-18 14:23:04 +0100561################################################################################
562# Include SPD Makefile if one has been specified
563################################################################################
564
565ifneq (${SPD},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100566 ifeq (${ARCH},aarch32)
567 $(error "Error: SPD is incompatible with AArch32.")
568 endif
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000569
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100570 ifdef EL3_PAYLOAD_BASE
571 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
572 $(warning "The SPD and its BL32 companion will be present but \
573 ignored.")
574 endif
Achin Gupta60b7b8a2019-10-11 15:50:43 +0100575
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100576 ifeq (${SPD},spmd)
577 # SPMD is located in std_svc directory
578 SPD_DIR := std_svc
Juan Castilloa3487d12015-08-18 14:23:04 +0100579
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100580 ifeq ($(SPMD_SPM_AT_SEL2),1)
581 CTX_INCLUDE_EL2_REGS := 1
582 ifeq ($(SPMC_AT_EL3),1)
583 $(error SPM cannot be enabled in both S-EL2 and EL3.)
584 endif
585 endif
Olivier Deprezbcaa0682020-04-01 21:28:26 +0200586
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100587 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
588 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
589 endif
Davidson K9a949142021-03-10 12:07:15 +0530590
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100591 ifeq ($(TS_SP_FW_CONFIG),1)
592 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
593 endif
Balint Dobszay9f689762021-03-26 15:19:11 +0100594
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100595 ifneq ($(ARM_BL2_SP_LIST_DTS),)
596 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
597 endif
Balint Dobszay719ba9c2021-03-26 16:23:18 +0100598
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100599 ifneq ($(SP_LAYOUT_FILE),)
600 BL2_ENABLE_SP_LOAD := 1
601 endif
602 else
603 # All other SPDs in spd directory
604 SPD_DIR := spd
605 endif #(SPD)
Juan Castilloa3487d12015-08-18 14:23:04 +0100606
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100607 # We expect to locate an spd.mk under the specified SPD directory
608 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000609
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100610 ifeq (${SPD_MAKE},)
611 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
612 endif
613 $(info Including ${SPD_MAKE})
614 include ${SPD_MAKE}
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000615
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100616 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
617 # Makefile would set NEED_BL32 to "yes". In this case, the build system
618 # supports two mutually exclusive options:
619 # * BL32 is built from source: then BL32_SOURCES must contain the list
620 # of source files to build BL32
621 # * BL32 is a prebuilt binary: then BL32 must point to the image file
622 # that will be included in the FIP
623 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
624 # over the sources.
625endif #(SPD=none)
Juan Castilloa3487d12015-08-18 14:23:04 +0100626
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -0800627ifeq (${ENABLE_SPMD_LP}, 1)
628ifneq (${SPD},spmd)
629 $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
630endif
631ifeq ($(SPMC_AT_EL3),1)
632 $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
633endif
634endif
635
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000636ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100637 ifeq (${SPD},none)
638 ifeq (${ENABLE_RME},0)
639 $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
640 or RME is enabled)
641 endif
642 endif
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000643endif
644
Douglas Raillard306593d2017-02-24 18:14:15 +0000645################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500646# Include rmmd Makefile if RME is enabled
647################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500648ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100649 ifneq (${ARCH},aarch64)
650 $(error ENABLE_RME requires AArch64)
651 endif
652 ifeq ($(SPMC_AT_EL3),1)
653 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
654 endif
655
656 ifneq (${SPD}, none)
657 ifneq (${SPD}, spmd)
658 $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
659 endif
660 endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500661include services/std_svc/rmmd/rmmd.mk
662$(warning "RME is an experimental feature")
663endif
664
665################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100666# Include the platform specific Makefile after the SPD Makefile (the platform
667# makefile may use all previous definitions in this file)
668################################################################################
Jeenu Viswambharane5c39fd2014-05-16 11:38:10 +0100669
Dan Handley81be1002015-03-27 17:44:35 +0000670include ${PLAT_MAKEFILE_FULL}
Jon Medhurst66573cb2014-02-13 15:19:28 +0000671
Govindraj Raja69096412023-06-01 16:29:16 -0500672################################################################################
673# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
674# up with appropriate march values for compiler.
675################################################################################
676include ${MAKE_HELPERS_DIRECTORY}march.mk
677
678TF_CFLAGS += $(march-directive)
679
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600680# This internal flag is common option which is set to 1 for scenarios
681# when the BL2 is running in EL3 level. This occurs in two scenarios -
682# 4 world system running BL2 at EL3 and two world system without BL1 running
683# BL2 in EL3
684
685ifeq (${RESET_TO_BL2},1)
686 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100687 ifeq (${ENABLE_RME},1)
688 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
689 supported at the moment.)
690 endif
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600691else ifeq (${ENABLE_RME},1)
692 BL2_RUNS_AT_EL3 := 1
693else
694 BL2_RUNS_AT_EL3 := 0
695endif
696
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900697$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
698
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100699ifeq (${ARM_ARCH_MAJOR},7)
700include make_helpers/armv7-a-cpus.mk
701endif
702
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900703PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
704ifneq ($(PIE_FOUND),)
705 TF_CFLAGS += -fno-PIE
Samuel Holland9286c022022-04-08 21:56:02 -0500706ifneq ($(findstring gcc,$(notdir $(LD))),)
707 TF_LDFLAGS += -no-pie
708endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100709endif #(PIE_FOUND)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900710
711ifneq ($(findstring gcc,$(notdir $(LD))),)
712 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100713else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900714 PIE_LDFLAGS += -pie --no-dynamic-linker
715endif
716
717ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100718 ifeq ($(RESET_TO_BL2),1)
719 ifneq ($(BL2_IN_XIP_MEM),1)
720 BL2_CPPFLAGS += -fpie
721 BL2_CFLAGS += -fpie
722 BL2_LDFLAGS += $(PIE_LDFLAGS)
723 endif #(BL2_IN_XIP_MEM)
724 endif #(RESET_TO_BL2)
Chris Kay13886c82023-02-02 14:39:03 +0000725 BL31_CPPFLAGS += -fpie
726 BL31_CFLAGS += -fpie
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900727 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay13886c82023-02-02 14:39:03 +0000728
729 BL32_CPPFLAGS += -fpie
Masahiro Yamadade634f82020-01-17 13:45:14 +0900730 BL32_CFLAGS += -fpie
731 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100732endif #(ENABLE_PIE)
Soby Mathew078f1a42018-08-28 11:13:55 +0100733
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000734BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
735BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
736BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
737
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900738BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600739ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100740 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900741else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100742 BL2_CPPFLAGS += -DIMAGE_AT_EL1
743endif #(RESET_TO_BL2)
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000744
745ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100746 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
747 BL31_CPPFLAGS += -DIMAGE_AT_EL3
748 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000749else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100750 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900751endif
752
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000753# Include the CPU specific operations makefile, which provides default
754# values for all CPU errata workarounds and CPU specific optimisations.
755# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100756include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100757
dp-armcdd03cb2017-02-15 11:07:55 +0000758################################################################################
759# Build `AARCH32_SP` as BL32 image for AArch32
760################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100761ifeq (${ARCH},aarch32)
762 NEED_BL32 := yes
dp-armcdd03cb2017-02-15 11:07:55 +0000763
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100764 ifneq (${AARCH32_SP},none)
765 # We expect to locate an sp.mk under the specified AARCH32_SP directory
766 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-armcdd03cb2017-02-15 11:07:55 +0000767
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100768 ifeq (${AARCH32_SP_MAKE},)
769 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
770 endif
Juan Pablo Conde6aba3b12023-08-09 13:19:21 -0500771 $(info Including ${AARCH32_SP_MAKE})
772 include ${AARCH32_SP_MAKE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100773 endif
774endif #(ARCH=aarch32)
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800775
776################################################################################
777# Include libc if not overridden
778################################################################################
779ifeq (${OVERRIDE_LIBC},0)
780include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000781endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100782
783################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100784# Check incompatible options and dependencies
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000785################################################################################
786
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100787# USE_DEBUGFS experimental feature recommended only in debug builds
788ifeq (${USE_DEBUGFS},1)
789 ifeq (${DEBUG},1)
790 $(warning DEBUGFS experimental feature is enabled.)
791 else
792 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800793 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100794endif #(USE_DEBUGFS)
795
796# USE_SPINLOCK_CAS requires AArch64 build
797ifeq (${USE_SPINLOCK_CAS},1)
798 ifneq (${ARCH},aarch64)
799 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800800 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100801endif #(USE_SPINLOCK_CAS)
802
803# The cert_create tool cannot generate certificates individually, so we use the
804# target 'certificates' to create them all
805ifneq (${GENERATE_COT},0)
806 FIP_DEPS += certificates
807 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000808endif
809
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100810ifneq (${DECRYPTION_SUPPORT},none)
811 ENC_ARGS += -f ${FW_ENC_STATUS}
812 ENC_ARGS += -k ${ENC_KEY}
813 ENC_ARGS += -n ${ENC_NONCE}
814 FIP_DEPS += enctool
815 FWU_FIP_DEPS += enctool
816endif #(DECRYPTION_SUPPORT)
817
818ifdef EL3_PAYLOAD_BASE
819 ifdef PRELOADED_BL33_BASE
820 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
821 incompatible build options. EL3_PAYLOAD_BASE has priority.")
822 endif
823 ifneq (${GENERATE_COT},0)
824 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
825 build options.")
826 endif
827 ifneq (${TRUSTED_BOARD_BOOT},0)
828 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
829 incompatible \ build options.")
830 endif
831endif #(EL3_PAYLOAD_BASE)
832
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000833ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100834 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000835 $(warning "BL33 image is not needed when option \
836 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100837 endif
838 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100839 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100840 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
841 endif
842endif #(NEED_BL33)
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000843
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000844# When building for systems with hardware-assisted coherency, there's no need to
845# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
846ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100847 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000848endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100849
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600850#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
851ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100852 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000853endif
854
Manish Pandeyd419e222023-02-13 12:39:17 +0000855# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100856ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100857 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
858 and RAS_FFH_SUPPORT instead")
Manish Pandeyd419e222023-02-13 12:39:17 +0000859endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100860
Manish Pandeyd419e222023-02-13 12:39:17 +0000861# RAS firmware first handling requires that EAs are handled in EL3 first
862ifeq ($(RAS_FFH_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100863 ifneq ($(ENABLE_FEAT_RAS),1)
864 $(error For RAS_FFH_SUPPORT, ENABLE_FEAT_RAS must also be 1)
865 endif
866 ifneq ($(HANDLE_EA_EL3_FIRST_NS),1)
867 $(error For RAS_FFH_SUPPORT, HANDLE_EA_EL3_FIRST_NS must also be 1)
868 endif
869endif #(RAS_FFH_SUPPORT)
870
Manish Pandeyd419e222023-02-13 12:39:17 +0000871# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000872ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100873 ifeq ($(ENABLE_FEAT_RAS),0)
874 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
875 endif
876endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000877
Roberto Vargas025946a2018-09-24 17:20:48 +0100878# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100879ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100880 ifeq (${TRUSTED_BOARD_BOOT}, 0)
881 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
882 to be set.")
883 endif
884endif #(DYN_DISABLE_AUTH)
Soby Mathew9fe88042018-03-26 12:43:37 +0100885
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100886ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
887# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100888 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100889else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
890# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100891 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100892else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
893# Support hash calculation only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100894 CRYPTO_SUPPORT := 2
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100895else ifeq (${TRUSTED_BOARD_BOOT},1)
896# Support authentication verification only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100897 CRYPTO_SUPPORT := 1
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000898else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100899 CRYPTO_SUPPORT := 0
900endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000901
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +0100902# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
903ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100904 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +0100905endif
906
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000907# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100908# registers associated to it are also saved and restored.
909# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000910ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100911 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
912 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
913 endif
914endif #(ENABLE_PAUTH)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100915
916ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100917 ifneq (${ARCH},aarch64)
918 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
919 endif
920endif #(CTX_INCLUDE_PAUTH_REGS)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000921
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100922ifeq ($(CTX_INCLUDE_MTE_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100923 ifneq (${ARCH},aarch64)
924 $(error CTX_INCLUDE_MTE_REGS requires AArch64)
925 endif
926endif #(CTX_INCLUDE_MTE_REGS)
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100927
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100928ifeq ($(PSA_FWU_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100929 $(info PSA_FWU_SUPPORT is an experimental feature)
930endif #(PSA_FWU_SUPPORT)
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100931
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000932ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100933 $(info FEATURE_DETECTION is an experimental feature)
934endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000935
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000936ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100937 ifeq (${ENABLE_SME_FOR_NS}, 0)
938 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
939 to be set")
940 $(warning "Forced ENABLE_SME_FOR_NS=1")
941 override ENABLE_SME_FOR_NS := 1
942 endif
943endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000944
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000945ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100946 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
947 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
948 library v2")
949 endif
950endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000951
Sumit Garg392e4df2019-11-15 10:43:00 +0530952ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100953 ifeq (${TRUSTED_BOARD_BOOT}, 0)
954 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
955 to be set)
956 endif
957endif #(DECRYPTION_SUPPORT)
Sumit Garg392e4df2019-11-15 10:43:00 +0530958
johpow0181865962022-01-28 17:06:20 -0600959# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -0500960ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -0600961
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100962 # SME/SVE only supported on AArch64
963 ifneq (${ENABLE_SME_FOR_NS},0)
964 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
965 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000966
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100967 ifeq (${ENABLE_SVE_FOR_NS},1)
968 # Warning instead of error due to CI dependency on this
969 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
970 endif
johpow0181865962022-01-28 17:06:20 -0600971
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100972 # BRBE is not supported in AArch32
973 ifeq (${ENABLE_BRBE_FOR_NS},1)
974 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
975 endif
johpow0181865962022-01-28 17:06:20 -0600976
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100977 # FEAT_RNG_TRAP is not supported in AArch32
978 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
979 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
980 endif
981endif #(ARCH=aarch32)
johpow019baade32021-07-08 14:14:00 -0500982
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000983ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100984 ifeq (${ENABLE_SVE_FOR_NS},0)
985 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
986 endif
987endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000988
johpow019baade32021-07-08 14:14:00 -0500989# Secure SME/SVE requires the non-secure component as well
990ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100991 ifeq (${ENABLE_SME_FOR_NS},0)
992 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
993 endif
994 ifeq (${ENABLE_SVE_FOR_SWD},0)
995 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
996 endif
997endif #(ENABLE_SME_FOR_SWD)
998
johpow019baade32021-07-08 14:14:00 -0500999ifeq (${ENABLE_SVE_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001000 ifeq (${ENABLE_SVE_FOR_NS},0)
1001 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
1002 endif
1003endif #(ENABLE_SVE_FOR_SWD)
johpow019baade32021-07-08 14:14:00 -05001004
1005# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
1006# its own context management including FPU registers.
1007ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001008 ifneq (${ENABLE_SME_FOR_NS},0)
1009 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1010 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001011
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001012 ifeq (${ENABLE_SVE_FOR_NS},1)
1013 # Warning instead of error due to CI dependency on this
1014 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1015 $(warning "Forced ENABLE_SVE_FOR_NS=0")
1016 override ENABLE_SVE_FOR_NS := 0
1017 endif
1018endif #(CTX_INCLUDE_FPREGS)
johpow019baade32021-07-08 14:14:00 -05001019
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001020ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001021 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001022endif
1023
Raymond Mao98983392023-07-25 07:53:35 -07001024ifeq (${TRANSFER_LIST},1)
1025 $(info TRANSFER_LIST is an experimental feature)
1026endif
1027
Chris Kayd02c2312022-09-29 16:21:24 +01001028ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001029 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1030 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1031 endif
Chris Kayd02c2312022-09-29 16:21:24 +01001032endif
1033
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001034# Determine if FEAT_RNG is supported
1035ENABLE_FEAT_RNG = $(if $(findstring rng,${arch-features}),1,0)
1036
1037# Determine if FEAT_SB is supported
1038ENABLE_FEAT_SB = $(if $(findstring sb,${arch-features}),1,0)
1039
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001040ifeq ($(PSA_CRYPTO),1)
1041 $(info PSA_CRYPTO is an experimental feature)
1042endif
1043
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001044################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001045# Process platform overrideable behaviour
1046################################################################################
1047
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001048ifdef BL1_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001049 NEED_BL1 := yes
1050endif #(BL1_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001051
Jon Medhurst66573cb2014-02-13 15:19:28 +00001052ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001053 NEED_BL2 := yes
1054
1055 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1056 # Certificate generation tools. This flag can be overridden by the platform.
1057 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001058 # If booting an EL3 payload there is no need for a BL33 image
1059 # in the FIP file.
1060 NEED_BL33 := no
1061 else
1062 ifdef PRELOADED_BL33_BASE
1063 # If booting a BL33 preloaded image there is no need of
1064 # another one in the FIP file.
1065 NEED_BL33 := no
1066 else
1067 NEED_BL33 ?= yes
1068 endif
1069 endif
1070endif #(BL2_SOURCES)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001071
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001072ifdef BL2U_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001073 NEED_BL2U := yes
1074endif #(BL2U_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001075
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001076# If SCP_BL2 is given, we always want FIP to include it.
1077ifdef SCP_BL2
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001078 NEED_SCP_BL2 := yes
1079endif #(SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001080
Soby Mathewbf169232017-11-14 14:10:10 +00001081# For AArch32, BL31 is not currently supported.
1082ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001083 ifdef BL31_SOURCES
1084 # When booting an EL3 payload, there is no need to compile the BL31
1085 # image nor put it in the FIP.
1086 ifndef EL3_PAYLOAD_BASE
1087 NEED_BL31 := yes
1088 endif
1089 endif
1090endif #(ARCH=aarch64)
Soby Mathewbf169232017-11-14 14:10:10 +00001091
Juan Castilloa3487d12015-08-18 14:23:04 +01001092# Process TBB related flags
1093ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001094 # Common cert_create options
1095 ifneq (${CREATE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001096 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001097 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001098 ifneq (${SAVE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001099 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001100 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001101 endif
1102 endif
1103 # Include TBBR makefile (unless the platform indicates otherwise)
1104 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castilloa3487d12015-08-18 14:23:04 +01001105 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001106 endif
1107endif #(GENERATE_COT)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001108
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001109ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001110 FIP_ARGS += --align ${FIP_ALIGN}
1111endif #(FIP_ALIGN)
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001112
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001113ifdef FDT_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001114 NEED_FDT := yes
1115endif #(FDT_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001116
Juan Castilloa3487d12015-08-18 14:23:04 +01001117################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +08001118# Include libraries' Makefile that are used in all BL
1119################################################################################
1120
1121include lib/stack_protector/stack_protector.mk
1122
1123################################################################################
Soby Mathew574e01e2017-02-14 10:05:07 +00001124# Include BL specific makefiles
1125################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001126
1127ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001128include bl1/bl1.mk
1129endif
1130
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001131ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001132include bl2/bl2.mk
1133endif
1134
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001135ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001136include bl2u/bl2u.mk
1137endif
1138
Soby Mathewbf169232017-11-14 14:10:10 +00001139ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001140include bl31/bl31.mk
1141endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001142
Soby Mathew574e01e2017-02-14 10:05:07 +00001143################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001144# Build options checks
1145################################################################################
1146
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001147# Boolean_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001148$(eval $(call assert_booleans,\
1149 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001150 ALLOW_RO_XLAT_TABLES \
1151 BL2_ENABLE_SP_LOAD \
1152 COLD_BOOT_SINGLE_CPU \
1153 CREATE_KEYS \
1154 CTX_INCLUDE_AARCH32_REGS \
1155 CTX_INCLUDE_FPREGS \
1156 CTX_INCLUDE_EL2_REGS \
1157 DEBUG \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001158 DYN_DISABLE_AUTH \
1159 EL3_EXCEPTION_HANDLING \
1160 ENABLE_AMU_AUXILIARY_COUNTERS \
1161 ENABLE_AMU_FCONF \
1162 AMU_RESTRICT_COUNTERS \
1163 ENABLE_ASSERTIONS \
1164 ENABLE_FEAT_SB \
1165 ENABLE_PIE \
1166 ENABLE_PMF \
1167 ENABLE_PSCI_STAT \
1168 ENABLE_RUNTIME_INSTRUMENTATION \
1169 ENABLE_SME_FOR_SWD \
1170 ENABLE_SVE_FOR_SWD \
1171 ERROR_DEPRECATED \
1172 FAULT_INJECTION_SUPPORT \
1173 GENERATE_COT \
1174 GICV2_G0_FOR_EL3 \
1175 HANDLE_EA_EL3_FIRST_NS \
1176 HW_ASSISTED_COHERENCY \
1177 MEASURED_BOOT \
1178 DRTM_SUPPORT \
1179 NS_TIMER_SWITCH \
1180 OVERRIDE_LIBC \
1181 PL011_GENERIC_UART \
1182 PLAT_RSS_NOT_SUPPORTED \
1183 PROGRAMMABLE_RESET_ADDRESS \
1184 PSCI_EXTENDED_STATE_ID \
1185 PSCI_OS_INIT_MODE \
1186 RESET_TO_BL31 \
1187 SAVE_KEYS \
1188 SEPARATE_CODE_AND_RODATA \
1189 SEPARATE_BL2_NOLOAD_REGION \
1190 SEPARATE_NOBITS_REGION \
1191 SPIN_ON_BL1_EXIT \
1192 SPM_MM \
1193 SPMC_AT_EL3 \
1194 SPMD_SPM_AT_SEL2 \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001195 ENABLE_SPMD_LP \
Raymond Mao98983392023-07-25 07:53:35 -07001196 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001197 TRUSTED_BOARD_BOOT \
1198 USE_COHERENT_MEM \
1199 USE_DEBUGFS \
1200 ARM_IO_IN_DTB \
1201 SDEI_IN_FCONF \
1202 SEC_INT_DESC_IN_FCONF \
1203 USE_ROMLIB \
1204 USE_TBBR_DEFS \
1205 WARMBOOT_ENABLE_DCACHE_EARLY \
1206 RESET_TO_BL2 \
1207 BL2_IN_XIP_MEM \
1208 BL2_INV_DCACHE \
1209 USE_SPINLOCK_CAS \
1210 ENCRYPT_BL31 \
1211 ENCRYPT_BL32 \
1212 ERRATA_SPECULATIVE_AT \
1213 RAS_TRAP_NS_ERR_REC_ACCESS \
1214 COT_DESC_IN_DTB \
1215 USE_SP804_TIMER \
1216 PSA_FWU_SUPPORT \
1217 ENABLE_MPMM \
1218 ENABLE_MPMM_FCONF \
1219 FEATURE_DETECTION \
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +01001220 TRNG_SUPPORT \
Sona Mathew7fe03522022-11-18 18:05:38 -06001221 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001222 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001223 CONDITIONAL_CMO \
Manish Pandeyd419e222023-02-13 12:39:17 +00001224 RAS_FFH_SUPPORT \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001225 PSA_CRYPTO \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001226)))
Dan Handley81be1002015-03-27 17:44:35 +00001227
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001228# Numeric_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001229$(eval $(call assert_numerics,\
1230 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001231 ARM_ARCH_MAJOR \
1232 ARM_ARCH_MINOR \
1233 BRANCH_PROTECTION \
1234 CTX_INCLUDE_PAUTH_REGS \
1235 CTX_INCLUDE_MTE_REGS \
1236 CTX_INCLUDE_NEVE_REGS \
1237 CRYPTO_SUPPORT \
Boyan Karatotev677ed8a2023-02-16 09:45:29 +00001238 DISABLE_MTPMU \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001239 ENABLE_BRBE_FOR_NS \
1240 ENABLE_TRBE_FOR_NS \
1241 ENABLE_BTI \
1242 ENABLE_PAUTH \
1243 ENABLE_FEAT_AMU \
1244 ENABLE_FEAT_AMUv1p1 \
1245 ENABLE_FEAT_CSV2_2 \
1246 ENABLE_FEAT_RAS \
1247 ENABLE_FEAT_DIT \
1248 ENABLE_FEAT_ECV \
1249 ENABLE_FEAT_FGT \
1250 ENABLE_FEAT_HCX \
1251 ENABLE_FEAT_PAN \
1252 ENABLE_FEAT_RNG \
1253 ENABLE_FEAT_RNG_TRAP \
1254 ENABLE_FEAT_SEL2 \
1255 ENABLE_FEAT_TCR2 \
1256 ENABLE_FEAT_S2PIE \
1257 ENABLE_FEAT_S1PIE \
1258 ENABLE_FEAT_S2POE \
1259 ENABLE_FEAT_S1POE \
1260 ENABLE_FEAT_GCS \
1261 ENABLE_FEAT_VHE \
Maksims Svecovsdf4ad842023-03-24 13:05:09 +00001262 ENABLE_FEAT_MTE_PERM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001263 ENABLE_MPAM_FOR_LOWER_ELS \
1264 ENABLE_RME \
1265 ENABLE_SPE_FOR_NS \
1266 ENABLE_SYS_REG_TRACE_FOR_NS \
1267 ENABLE_SME_FOR_NS \
1268 ENABLE_SME2_FOR_NS \
1269 ENABLE_SVE_FOR_NS \
1270 ENABLE_TRF_FOR_NS \
1271 FW_ENC_STATUS \
1272 NR_OF_FW_BANKS \
1273 NR_OF_IMAGES_IN_FW_BANK \
1274 TWED_DELAY \
1275 ENABLE_FEAT_TWED \
1276 SVE_VECTOR_LEN \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001277 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001278)))
Jeenu Viswambharanfca76802017-01-16 16:52:35 +00001279
Justin Chadwellf9b32c12019-07-29 17:13:10 +01001280ifdef KEY_SIZE
1281 $(eval $(call assert_numeric,KEY_SIZE))
1282endif
1283
Justin Chadwell83e04882019-08-20 11:01:52 +01001284ifeq ($(filter $(SANITIZE_UB), on off trap),)
1285 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1286endif
1287
Juan Castilloa3487d12015-08-18 14:23:04 +01001288################################################################################
1289# Add definitions to the cpp preprocessor based on the current build options.
1290# This is done after including the platform specific makefile to allow the
1291# platform to overwrite the default options
1292################################################################################
Jeenu Viswambharand1b60152014-05-12 15:28:47 +01001293
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001294$(eval $(call add_defines,\
1295 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001296 ALLOW_RO_XLAT_TABLES \
1297 ARM_ARCH_MAJOR \
1298 ARM_ARCH_MINOR \
1299 BL2_ENABLE_SP_LOAD \
1300 COLD_BOOT_SINGLE_CPU \
1301 CTX_INCLUDE_AARCH32_REGS \
1302 CTX_INCLUDE_FPREGS \
1303 CTX_INCLUDE_PAUTH_REGS \
1304 EL3_EXCEPTION_HANDLING \
1305 CTX_INCLUDE_MTE_REGS \
1306 CTX_INCLUDE_EL2_REGS \
1307 CTX_INCLUDE_NEVE_REGS \
1308 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1309 DISABLE_MTPMU \
1310 ENABLE_FEAT_AMU \
1311 ENABLE_AMU_AUXILIARY_COUNTERS \
1312 ENABLE_AMU_FCONF \
1313 AMU_RESTRICT_COUNTERS \
1314 ENABLE_ASSERTIONS \
1315 ENABLE_BTI \
1316 ENABLE_MPAM_FOR_LOWER_ELS \
1317 ENABLE_PAUTH \
1318 ENABLE_PIE \
1319 ENABLE_PMF \
1320 ENABLE_PSCI_STAT \
1321 ENABLE_RME \
1322 ENABLE_RUNTIME_INSTRUMENTATION \
1323 ENABLE_SME_FOR_NS \
1324 ENABLE_SME2_FOR_NS \
1325 ENABLE_SME_FOR_SWD \
1326 ENABLE_SPE_FOR_NS \
1327 ENABLE_SVE_FOR_NS \
1328 ENABLE_SVE_FOR_SWD \
1329 ENCRYPT_BL31 \
1330 ENCRYPT_BL32 \
1331 ERROR_DEPRECATED \
1332 FAULT_INJECTION_SUPPORT \
1333 GICV2_G0_FOR_EL3 \
1334 HANDLE_EA_EL3_FIRST_NS \
1335 HW_ASSISTED_COHERENCY \
1336 LOG_LEVEL \
1337 MEASURED_BOOT \
1338 DRTM_SUPPORT \
1339 NS_TIMER_SWITCH \
1340 PL011_GENERIC_UART \
1341 PLAT_${PLAT} \
1342 PLAT_RSS_NOT_SUPPORTED \
1343 PROGRAMMABLE_RESET_ADDRESS \
1344 PSCI_EXTENDED_STATE_ID \
1345 PSCI_OS_INIT_MODE \
1346 ENABLE_FEAT_RAS \
1347 RAS_FFH_SUPPORT \
1348 RESET_TO_BL31 \
1349 SEPARATE_CODE_AND_RODATA \
1350 SEPARATE_BL2_NOLOAD_REGION \
1351 SEPARATE_NOBITS_REGION \
1352 RECLAIM_INIT_CODE \
1353 SPD_${SPD} \
1354 SPIN_ON_BL1_EXIT \
1355 SPM_MM \
1356 SPMC_AT_EL3 \
1357 SPMD_SPM_AT_SEL2 \
Raymond Mao98983392023-07-25 07:53:35 -07001358 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001359 TRUSTED_BOARD_BOOT \
1360 CRYPTO_SUPPORT \
1361 TRNG_SUPPORT \
1362 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001363 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001364 USE_COHERENT_MEM \
1365 USE_DEBUGFS \
1366 ARM_IO_IN_DTB \
1367 SDEI_IN_FCONF \
1368 SEC_INT_DESC_IN_FCONF \
1369 USE_ROMLIB \
1370 USE_TBBR_DEFS \
1371 WARMBOOT_ENABLE_DCACHE_EARLY \
1372 RESET_TO_BL2 \
1373 BL2_RUNS_AT_EL3 \
1374 BL2_IN_XIP_MEM \
1375 BL2_INV_DCACHE \
1376 USE_SPINLOCK_CAS \
1377 ERRATA_SPECULATIVE_AT \
1378 RAS_TRAP_NS_ERR_REC_ACCESS \
1379 COT_DESC_IN_DTB \
1380 USE_SP804_TIMER \
1381 ENABLE_FEAT_RNG \
1382 ENABLE_FEAT_RNG_TRAP \
1383 ENABLE_FEAT_SB \
1384 ENABLE_FEAT_DIT \
1385 NR_OF_FW_BANKS \
1386 NR_OF_IMAGES_IN_FW_BANK \
1387 PSA_FWU_SUPPORT \
1388 ENABLE_BRBE_FOR_NS \
1389 ENABLE_TRBE_FOR_NS \
1390 ENABLE_SYS_REG_TRACE_FOR_NS \
1391 ENABLE_TRF_FOR_NS \
1392 ENABLE_FEAT_HCX \
1393 ENABLE_MPMM \
1394 ENABLE_MPMM_FCONF \
1395 ENABLE_FEAT_FGT \
1396 ENABLE_FEAT_ECV \
1397 ENABLE_FEAT_AMUv1p1 \
1398 ENABLE_FEAT_SEL2 \
1399 ENABLE_FEAT_VHE \
1400 ENABLE_FEAT_CSV2_2 \
1401 ENABLE_FEAT_PAN \
1402 ENABLE_FEAT_TCR2 \
1403 ENABLE_FEAT_S2PIE \
1404 ENABLE_FEAT_S1PIE \
1405 ENABLE_FEAT_S2POE \
1406 ENABLE_FEAT_S1POE \
1407 ENABLE_FEAT_GCS \
Maksims Svecovsdf4ad842023-03-24 13:05:09 +00001408 ENABLE_FEAT_MTE_PERM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001409 FEATURE_DETECTION \
1410 TWED_DELAY \
1411 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001412 CONDITIONAL_CMO \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001413 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidanand23c2fe22023-04-26 15:57:30 +01001414 SVE_VECTOR_LEN \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001415 ENABLE_SPMD_LP \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001416 PSA_CRYPTO \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001417)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001418
Justin Chadwell83e04882019-08-20 11:01:52 +01001419ifeq (${SANITIZE_UB},trap)
1420 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001421endif #(SANITIZE_UB)
Justin Chadwell83e04882019-08-20 11:01:52 +01001422
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001423# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1424ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001425 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1426else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001427# Define the PRELOADED_BL33_BASE flag only if it is provided and
1428# EL3_PAYLOAD_BASE is not defined, as it has priority.
1429 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001430 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001431 endif
1432endif #(EL3_PAYLOAD_BASE)
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001433
Soby Mathew9fe88042018-03-26 12:43:37 +01001434# Define the DYN_DISABLE_AUTH flag only if set.
1435ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001436 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew9fe88042018-03-26 12:43:37 +01001437endif
1438
Varun Wadekar4d034c52019-01-11 14:47:48 -08001439ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001440 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekar4d034c52019-01-11 14:47:48 -08001441endif
1442
Manish Pandey3f90ad72020-01-14 11:52:05 +00001443# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001444ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001445ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001446 -include $(BUILD_PLAT)/sp_gen.mk
1447 FIP_DEPS += sp
1448 CRT_DEPS += sp
1449 NEED_SP_PKG := yes
Manish Pandey3f90ad72020-01-14 11:52:05 +00001450else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001451 ifeq (${SPMD_SPM_AT_SEL2},1)
1452 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1453 endif
1454endif #(SP_LAYOUT_FILE)
1455endif #(SPD)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001456
Juan Castilloa3487d12015-08-18 14:23:04 +01001457################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001458# Build targets
1459################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001460
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301461.PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp fwu_fip certtool dtbs memmap doc enctool
Juan Castilloa3487d12015-08-18 14:23:04 +01001462.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001463
Juan Castilloa3487d12015-08-18 14:23:04 +01001464all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001465
Juan Castilloa3487d12015-08-18 14:23:04 +01001466msg_start:
1467 @echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001468
Soby Mathew18a62042015-10-26 14:29:21 +00001469ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001470# Check if deprecated declarations and cpp warnings should be treated as error or not.
Varun Wadekar4d034c52019-01-11 14:47:48 -08001471ifneq ($(findstring clang,$(notdir $(CC))),)
1472 CPPFLAGS += -Wno-error=deprecated-declarations
1473else
Dan Handley6fa89a22018-02-27 16:03:58 +00001474 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001475endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001476endif #(!ERROR_DEPRECATED)
Soby Mathew18a62042015-10-26 14:29:21 +00001477
Roberto Vargase92111a2018-05-22 16:05:42 +01001478$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001479$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001480
Juan Castilloa3487d12015-08-18 14:23:04 +01001481# Expand build macros for the different images
1482ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001483BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001484$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001485endif #(NEED_BL1)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001486
Juan Castilloa3487d12015-08-18 14:23:04 +01001487ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001488
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001489ifeq (${RESET_TO_BL2}, 0)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001490FIP_BL2_ARGS := tb-fw
1491endif
1492
Chris Kayfb3b0512021-09-28 15:44:37 +01001493BL2_SOURCES := $(sort ${BL2_SOURCES})
1494
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001495$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001496 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001497
1498endif #(NEED_BL2)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001499
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001500ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001501$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001502endif #(NEED_SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001503
Juan Castilloa3487d12015-08-18 14:23:04 +01001504ifeq (${NEED_BL31},yes)
1505BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001506# Sort BL31 source files to remove duplicates
1507BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301508ifneq (${DECRYPTION_SUPPORT},none)
1509$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001510 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301511else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001512$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001513 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001514endif #(DECRYPTION_SUPPORT)
1515endif #(NEED_BL31)
Juan Castillo379954c2014-11-04 17:36:40 +00001516
Juan Castillo671b8db2015-11-12 10:59:26 +00001517# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001518# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001519# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001520ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001521# Sort BL32 source files to remove duplicates
1522BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001523BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1524
Sumit Gargeec52442019-11-14 16:33:45 +05301525ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001526$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301527 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1528else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001529$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001530 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001531endif #(DECRYPTION_SUPPORT)
1532endif #(NEED_BL32)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001533
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001534# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1535# needs to be built from RMM_SOURCES.
1536ifeq (${NEED_RMM},yes)
1537# Sort RMM source files to remove duplicates
1538RMM_SOURCES := $(sort ${RMM_SOURCES})
1539BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1540
1541$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001542 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1543endif #(NEED_RMM)
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001544
Juan Castilloa3487d12015-08-18 14:23:04 +01001545# Add the BL33 image if required by the platform
1546ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001547$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001548endif #(NEED_BL33)
Juan Castillo9c25a402015-01-13 12:21:04 +00001549
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001550ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001551$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001552 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001553endif #(NEED_BL2U)
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001554
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001555# Expand build macros for the different images
1556ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001557 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001558endif #(NEED_FDT)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001559
Manish Pandey3f90ad72020-01-14 11:52:05 +00001560# Add Secure Partition packages
1561ifeq (${NEED_SP_PKG},yes)
Karl Meakinaba46182023-02-14 11:56:02 +00001562$(BUILD_PLAT)/sp_gen.mk : ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
1563 ${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
J-Alvesef8e0982022-03-22 16:28:51 +00001564sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001565 @${ECHO_BLANK_LINE}
1566 @echo "Built SP Images successfully"
1567 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001568endif #(NEED_SP_PKG)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001569
Ian Spray36eaaf32014-01-30 17:25:28 +00001570locate-checkpatch:
1571ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001572 $(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 +00001573else
1574ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001575 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001576endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001577endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001578
Achin Gupta4f6ad662013-10-25 09:08:21 +01001579clean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001580 @echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001581 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001582ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001583 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001584else
1585# Clear the MAKEFLAGS as we do not want
1586# to pass the gnumake flags to nmake.
1587 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001588endif #(UNIX_MK)
Juan Castilloa3487d12015-08-18 14:23:04 +01001589 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301590 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
Roberto Vargase92111a2018-05-22 16:05:42 +01001591 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001592
James Morrisseyeaaeece2013-11-01 13:56:59 +00001593realclean distclean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001594 @echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001595 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1596 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001597ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001598 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001599else
1600# Clear the MAKEFLAGS as we do not want
1601# to pass the gnumake flags to nmake.
1602 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001603endif #(UNIX_MK)
Nicolas Boulenguezdf612a52021-03-31 12:22:45 +02001604 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301605 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
Roberto Vargase92111a2018-05-22 16:05:42 +01001606 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001607
Ian Spray36eaaf32014-01-30 17:25:28 +00001608checkcodebase: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001609 @echo " CHECKING STYLE"
Dan Handley3a355712016-06-02 18:21:02 +01001610 @if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001611 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001612 while read GIT_FILE ; \
1613 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1614 done ; \
1615 else \
1616 find . -type f -not -iwholename "*.git*" \
1617 -not -iwholename "*build*" \
1618 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001619 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001620 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001621 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001622 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1623 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001624
1625checkpatch: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001626 @echo " CHECKING STYLE"
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001627 @if test -n "${CHECKPATCH_OPTS}"; then \
1628 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1629 fi
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001630 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001631 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1632 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001633 printf "\n[*] Checking style of '$$commit'\n\n"; \
1634 git log --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001635 -- ${CHECK_PATHS} | \
1636 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001637 git diff --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001638 -- ${CHECK_PATHS} | \
1639 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001640 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001641
1642certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001643
Pali Rohár54ff2132020-11-24 15:38:08 +01001644${CRTTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001645 ${Q}${MAKE} PLAT=${PLAT} USE_TBBR_DEFS=${USE_TBBR_DEFS} COT=${COT} OPENSSL_DIR=${OPENSSL_DIR} CRTTOOL=${CRTTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${CRTTOOLPATH} all
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001646 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001647 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001648 @${ECHO_BLANK_LINE}
Jon Medhurst407a95c2014-02-12 15:54:48 +00001649
Juan Castillo11abdcd2014-10-21 11:30:42 +01001650ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001651certificates: ${CRT_DEPS} ${CRTTOOL}
1652 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001653 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001654 @echo "Built $@ successfully"
1655 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001656 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001657endif #(GENERATE_COT)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001658
Juan Castilloa3487d12015-08-18 14:23:04 +01001659${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001660 $(eval ${CHECK_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001661 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
1662 ${Q}${FIPTOOL} info $@
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001663 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001664 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001665 @${ECHO_BLANK_LINE}
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001666
Yatharth Kochard1a93432015-10-12 12:33:47 +01001667ifneq (${GENERATE_COT},0)
1668fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1669 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001670 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001671 @echo "Built $@ successfully"
1672 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001673 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001674endif #(GENERATE_COT)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001675
1676${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001677 $(eval ${CHECK_FWU_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001678 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1679 ${Q}${FIPTOOL} info $@
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001680 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001681 @echo "Built $@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001682 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001683
Juan Castilloa3487d12015-08-18 14:23:04 +01001684fiptool: ${FIPTOOL}
1685fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001686fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001687
Pali Rohár54ff2132020-11-24 15:38:08 +01001688${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001689ifdef UNIX_MK
Lionel Debieve730bde82022-11-14 11:05:09 +01001690 ${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${FIPTOOLPATH} all
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001691else
1692# Clear the MAKEFLAGS as we do not want
1693# to pass the gnumake flags to nmake.
1694 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001695endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001696
Pali Rohár54ff2132020-11-24 15:38:08 +01001697romlib.bin: libraries FORCE
John Tsichritzisf6ea99b2019-05-21 15:47:37 +01001698 ${Q}${MAKE} PLAT_DIR=${PLAT_DIR} BUILD_PLAT=${BUILD_PLAT} ENABLE_BTI=${ENABLE_BTI} ARM_ARCH_MINOR=${ARM_ARCH_MINOR} INCLUDES='${INCLUDES}' DEFINES='${DEFINES}' --no-print-directory -C ${ROMLIBPATH} all
Roberto Vargase92111a2018-05-22 16:05:42 +01001699
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001700memmap: all
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001701ifdef UNIX_MK
1702 ${Q}PYTHONPATH=${CURDIR}/tools/memory \
1703 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1704else
1705 ${Q}set PYTHONPATH=${CURDIR}/tools/memory && \
1706 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1707endif
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001708
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001709doc:
1710 @echo " BUILD DOCUMENTATION"
1711 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1712
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301713enctool: ${ENCTOOL}
1714
Pali Rohár54ff2132020-11-24 15:38:08 +01001715${ENCTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001716 ${Q}${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${ENCTOOLPATH} all
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301717 @${ECHO_BLANK_LINE}
1718 @echo "Built $@ successfully"
1719 @${ECHO_BLANK_LINE}
1720
Joakim Bech35fab8c2014-01-23 14:51:49 +01001721cscope:
1722 @echo " CSCOPE"
1723 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1724 ${Q}cscope -b -q -k
1725
Ryan Harkin72ee3312014-01-15 16:55:07 +00001726help:
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001727 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001728 @echo ""
1729 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +00001730 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001731 @echo ""
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001732 @echo "platform = ${PLATFORM_LIST}"
1733 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001734 @echo "Please refer to the User Guide for a list of all supported options."
1735 @echo "Note that the build system doesn't track dependencies for build "
1736 @echo "options. Therefore, if any of the build options are changed "
1737 @echo "from a previous build, a clean build must be performed."
1738 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +00001739 @echo "Supported Targets:"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001740 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +00001741 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +00001742 @echo " bl2 Build the BL2 binary"
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001743 @echo " bl2u Build the BL2U binary"
Juan Castillo7d199412015-12-14 09:35:25 +00001744 @echo " bl31 Build the BL31 binary"
Soby Mathewa1941252016-05-05 14:33:33 +01001745 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1746 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castilloa3487d12015-08-18 14:23:04 +01001747 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001748 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochard1a93432015-10-12 12:33:47 +01001749 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +00001750 @echo " checkcodebase Check the coding style of the entire source tree"
1751 @echo " checkpatch Check the coding style on changes in the current"
1752 @echo " branch against BASE_COMMIT (default origin/master)"
1753 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +00001754 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +00001755 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001756 @echo " certtool Build the Certificate generation tool"
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301757 @echo " enctool Build the Firmware encryption tool"
Andreas Färberec82cfb2016-10-10 05:18:49 +02001758 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Manish Pandey3f90ad72020-01-14 11:52:05 +00001759 @echo " sp Build the Secure Partition Packages"
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001760 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathewab4181d2017-12-14 17:44:56 +00001761 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001762 @echo " memmap Print the memory map of the built binaries"
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001763 @echo " doc Build html based documentation using Sphinx tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001764 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001765 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +00001766 @echo ""
1767 @echo "example: build all targets for the FVP platform:"
1768 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001769
1770.PHONY: FORCE
1771FORCE:;