blob: 5edd385ebf9f04ff678d7899819d4610ca8753ac [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 Gautier9a17e242023-10-04 18:59:44 +020012VERSION_PATCH := 0 # Only used for LTS releases
Yann Gautier57078a92023-10-03 11:09:07 +020013VERSION := ${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_DRV_DIRS_TO_CHECK := $(sort $(filter-out \
45 include/drivers/arm, \
46 $(wildcard include/drivers/*)))
Dan Handleyd7b59e42016-06-02 17:15:13 +010047INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \
Dan Handley3a355712016-06-02 18:21:02 +010048 include/lib/libfdt \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010049 include/lib/libc, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010050 $(wildcard include/lib/*)))
51INC_DIRS_TO_CHECK := $(sort $(filter-out \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030052 include/lib \
53 include/drivers, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010054 $(wildcard include/*)))
55LIB_DIRS_TO_CHECK := $(sort $(filter-out \
dp-arme3cc8382017-05-04 12:15:35 +010056 lib/compiler-rt \
Antonio Nino Diazd84f88e2017-01-16 17:20:45 +000057 lib/libfdt% \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010058 lib/libc, \
Daniel Boulby958f1dd2022-10-05 11:05:22 +010059 lib/zlib \
Dan Handleyd7b59e42016-06-02 17:15:13 +010060 $(wildcard lib/*)))
61ROOT_DIRS_TO_CHECK := $(sort $(filter-out \
62 lib \
63 include \
64 docs \
Paul Beesleyadfab5b2019-03-07 16:42:31 +000065 %.rst, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010066 $(wildcard *)))
67CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \
68 ${INC_DIRS_TO_CHECK} \
69 ${INC_LIB_DIRS_TO_CHECK} \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030070 ${LIB_DIRS_TO_CHECK} \
71 ${INC_DRV_DIRS_TO_CHECK} \
72 ${INC_ARM_DIRS_TO_CHECK}
Ian Spray36eaaf32014-01-30 17:25:28 +000073
Juan Castilloa3487d12015-08-18 14:23:04 +010074################################################################################
75# Process build options
76################################################################################
77
78# Verbose flag
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +010079ifeq (${V},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010080 Q:=@
81 ECHO:=@echo
82 CHECKCODE_ARGS += --no-summary --terse
Achin Gupta4f6ad662013-10-25 09:08:21 +010083else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010084 Q:=
85 ECHO:=$(ECHO_QUIET)
Andre Przywaracf2bb082018-09-27 10:56:05 +010086endif
87
88ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010089 Q:=@
90 ECHO:=$(ECHO_QUIET)
Achin Gupta4f6ad662013-10-25 09:08:21 +010091endif
Andre Przywaracf2bb082018-09-27 10:56:05 +010092
93export Q ECHO
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +000094
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010095################################################################################
96# Toolchain
97################################################################################
98
99HOSTCC := gcc
100export HOSTCC
101
102CC := ${CROSS_COMPILE}gcc
103CPP := ${CROSS_COMPILE}cpp
104AS := ${CROSS_COMPILE}gcc
105AR := ${CROSS_COMPILE}ar
106LINKER := ${CROSS_COMPILE}ld
107OC := ${CROSS_COMPILE}objcopy
108OD := ${CROSS_COMPILE}objdump
109NM := ${CROSS_COMPILE}nm
110PP := ${CROSS_COMPILE}gcc -E
111DTC := dtc
112
113# Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH).
114ifneq ($(strip $(wildcard ${LD}.bfd) \
115 $(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),)
116LINKER := ${LINKER}.bfd
Juan Castilloa3487d12015-08-18 14:23:04 +0100117endif
118
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100119################################################################################
120# Auxiliary tools (fiptool, cert_create, etc)
121################################################################################
122
123# Variables for use with Certificate Generation Tool
124CRTTOOLPATH ?= tools/cert_create
125CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT}
126
127# Variables for use with Firmware Encryption Tool
128ENCTOOLPATH ?= tools/encrypt_fw
129ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
130
131# Variables for use with Firmware Image Package
132FIPTOOLPATH ?= tools/fiptool
133FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT}
134
135# Variables for use with sptool
136SPTOOLPATH ?= tools/sptool
137SPTOOL ?= ${SPTOOLPATH}/sptool.py
138SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py
Karl Meakinaba46182023-02-14 11:56:02 +0000139SP_DTS_LIST_FRAGMENT ?= ${BUILD_PLAT}/sp_list_fragment.dts
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100140
141# Variables for use with ROMLIB
142ROMLIBPATH ?= lib/romlib
143
144# Variable for use with Python
145PYTHON ?= python3
146
147# Variables for use with documentation build using Sphinx tool
148DOCS_PATH ?= docs
149
150################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100151# Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags
Juan Castilloa3487d12015-08-18 14:23:04 +0100152################################################################################
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100153ifeq (${ARM_ARCH_MAJOR},7)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100154 target32-directive = -target arm-none-eabi
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500155# Will set march-directive from platform configuration
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100156else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100157 target32-directive = -target armv8a-none-eabi
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100158endif #(ARM_ARCH_MAJOR)
159
160################################################################################
161# Get Architecture Feature Modifiers
162################################################################################
163arch-features = ${ARM_ARCH_FEATURE}
164
Alexei Fedorov132e6652020-12-07 16:38:53 +0000165# Set the compiler's architecture feature modifiers
166ifneq ($(arch-features), none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100167 # Strip "none+" from arch-features
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500168 arch-features := $(subst none+,,$(arch-features))
169 march-directive := $(march-directive)+$(arch-features)
Alexei Fedorov132e6652020-12-07 16:38:53 +0000170# Print features
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100171 $(info Arm Architecture Features specified: $(subst +, ,$(arch-features)))
172endif #(arch-features)
Chris Kay08fec332021-03-09 13:34:35 +0000173
originfba80d82022-01-19 16:30:14 +0000174ifneq ($(findstring clang,$(notdir $(CC))),)
175 ifneq ($(findstring armclang,$(notdir $(CC))),)
Govindraj Raja69096412023-06-01 16:29:16 -0500176 TF_CFLAGS_aarch32 := -target arm-arm-none-eabi
177 TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi
originfba80d82022-01-19 16:30:14 +0000178 LD := $(LINKER)
179 else
Govindraj Raja69096412023-06-01 16:29:16 -0500180 TF_CFLAGS_aarch32 = $(target32-directive)
181 TF_CFLAGS_aarch64 := -target aarch64-elf
originfba80d82022-01-19 16:30:14 +0000182 LD := $(shell $(CC) --print-prog-name ld.lld)
183
184 AR := $(shell $(CC) --print-prog-name llvm-ar)
185 OD := $(shell $(CC) --print-prog-name llvm-objdump)
186 OC := $(shell $(CC) --print-prog-name llvm-objcopy)
187 endif
188
189 CPP := $(CC) -E $(TF_CFLAGS_$(ARCH))
190 PP := $(CC) -E $(TF_CFLAGS_$(ARCH))
191 AS := $(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
zelalem-aweked5f45272019-11-12 16:20:17 -0600192else ifneq ($(findstring gcc,$(notdir $(CC))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100193 ifeq ($(ENABLE_LTO),1)
194 # Enable LTO only for aarch64
195 ifeq (${ARCH},aarch64)
196 LTO_CFLAGS = -flto
197 # Use gcc as a wrapper for the ld, recommended for LTO
198 LINKER := ${CROSS_COMPILE}gcc
199 endif
zelalem-aweked5f45272019-11-12 16:20:17 -0600200 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100201 LD = $(LINKER)
dp-arm320e8442017-05-02 12:00:08 +0100202else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100203 LD = $(LINKER)
204endif #(clang)
dp-arm320e8442017-05-02 12:00:08 +0100205
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100206# Process Debug flag
207$(eval $(call add_define,DEBUG))
208ifneq (${DEBUG}, 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100209 BUILD_TYPE := debug
210 TF_CFLAGS += -g -gdwarf-4
211 ASFLAGS += -g -Wa,-gdwarf-4
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100212
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100213 # Use LOG_LEVEL_INFO by default for debug builds
214 LOG_LEVEL := 40
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100215else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100216 BUILD_TYPE := release
217 # Use LOG_LEVEL_NOTICE by default for release builds
218 LOG_LEVEL := 20
219endif #(Debug)
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100220
Peiyuan Song44f8f472020-04-25 16:53:43 +0800221# Default build string (git branch and commit)
222ifeq (${BUILD_STRING},)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100223 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
Peiyuan Song44f8f472020-04-25 16:53:43 +0800224endif
laurenw-arme954f652022-07-12 10:12:05 -0500225VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
Peiyuan Song44f8f472020-04-25 16:53:43 +0800226
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100227ifeq (${AARCH32_INSTRUCTION_SET},A32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100228 TF_CFLAGS_aarch32 += -marm
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100229else ifeq (${AARCH32_INSTRUCTION_SET},T32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100230 TF_CFLAGS_aarch32 += -mthumb
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100231else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100232 $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
233endif #(AARCH32_INSTRUCTION_SET)
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100234
Sandrine Bailleux1aa72ec2018-07-03 09:14:45 +0200235TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-arm320e8442017-05-02 12:00:08 +0100236TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathewa1941252016-05-05 14:33:33 +0100237
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500238ASFLAGS += $(march-directive)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000239
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100240##############################################################################
241# WARNINGS Configuration
242###############################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100243# General warnings
244WARNINGS := -Wall -Wmissing-include-dirs -Wunused \
Yann Gautier94a40b62021-05-20 13:18:14 +0200245 -Wdisabled-optimization -Wvla -Wshadow \
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000246 -Wredundant-decls
247# stricter warnings
248WARNINGS += -Wextra -Wno-trigraphs
249# too verbose for generic build
250WARNINGS += -Wno-missing-field-initializers \
251 -Wno-type-limits -Wno-sign-compare \
252# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
253WARNINGS += -Wno-unused-parameter
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100254
255# Additional warnings
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000256# Level 1 - infrequent warnings we should have none of
257# full -Wextra
258WARNING1 += -Wsign-compare
259WARNING1 += -Wtype-limits
260WARNING1 += -Wmissing-field-initializers
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100261
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000262# Level 2 - problematic warnings that we want
263# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
264# TODO: disable just for them and move into default build
265WARNING2 += -Wold-style-definition
266WARNING2 += -Wmissing-prototypes
267WARNING2 += -Wmissing-format-attribute
268# TF-A aims to comply with this eventually. Effort too large at present
269WARNING2 += -Wundef
Boyan Karatotev9c6ba592022-11-21 14:49:05 +0000270# currently very involved and many platforms set this off
271WARNING2 += -Wunused-const-variable=2
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100272
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000273# Level 3 - very pedantic, frequently ignored
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100274WARNING3 := -Wbad-function-cast
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000275WARNING3 += -Waggregate-return
276WARNING3 += -Wnested-externs
277WARNING3 += -Wcast-align
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100278WARNING3 += -Wcast-qual
279WARNING3 += -Wconversion
280WARNING3 += -Wpacked
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100281WARNING3 += -Wpointer-arith
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100282WARNING3 += -Wswitch-default
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100283
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000284# Setting W is quite verbose and most warnings will be pre-existing issues
285# outside of the contributor's control. Don't fail the build on them so warnings
286# can be seen and hopefully addressed
287ifdef W
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100288 ifneq (${W},0)
289 E ?= 0
290 endif
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000291endif
292
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100293ifeq (${W},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100294 WARNINGS += $(WARNING1)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100295else ifeq (${W},2)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100296 WARNINGS += $(WARNING1) $(WARNING2)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100297else ifeq (${W},3)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100298 WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
299endif #(W)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100300
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100301# Compiler specific warnings
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100302ifeq ($(findstring clang,$(notdir $(CC))),)
Justin Chadwell7a914232019-07-03 14:15:56 +0100303# not using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100304WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \
305 -Wpacked-bitfield-compat -Wshift-overflow=2 \
306 -Wlogical-op
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500307
308# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
309TF_CFLAGS += $(call cc_option, --param=min-pagesize=0)
310
Justin Chadwell7a914232019-07-03 14:15:56 +0100311else
312# using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100313WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
314 -Wlogical-op-parentheses
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100315endif #(Clang Warning)
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100316
Yann Gautier957c3532018-12-10 18:08:53 +0100317ifneq (${E},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100318 ERRORS := -Werror
319endif #(E)
Yann Gautier957c3532018-12-10 18:08:53 +0100320
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100321################################################################################
322# Compiler and Linker Directives
323################################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100324CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
325 $(ERRORS) $(WARNINGS)
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500326ASFLAGS += $(CPPFLAGS) \
Julius Werner53456fc2019-07-09 13:49:11 -0700327 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900328TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Holland23f5e542019-10-20 16:11:25 -0500329 -ffunction-sections -fdata-sections \
330 -ffreestanding -fno-builtin -fno-common \
331 -Os -std=gnu99
Juan Castilloa3487d12015-08-18 14:23:04 +0100332
Justin Chadwell83e04882019-08-20 11:01:52 +0100333ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100334 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
335endif #(${SANITIZE_UB},on)
336
Justin Chadwell83e04882019-08-20 11:01:52 +0100337ifeq (${SANITIZE_UB},trap)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100338 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
Justin Chadwell83e04882019-08-20 11:01:52 +0100339 -fsanitize-undefined-trap-on-error
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100340endif #(${SANITIZE_UB},trap)
Justin Chadwell83e04882019-08-20 11:01:52 +0100341
david cunado34ab6092017-11-30 21:58:01 +0000342GCC_V_OUTPUT := $(shell $(CC) -v 2>&1)
david cunado34ab6092017-11-30 21:58:01 +0000343
Marco Felsch24ad8402022-11-09 12:59:09 +0100344TF_LDFLAGS += -z noexecstack
345
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100346# LD = armlink
Varun Wadekar4d034c52019-01-11 14:47:48 -0800347ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100348 TF_LDFLAGS += --diag_error=warning --lto_level=O1
349 TF_LDFLAGS += --remove --info=unused,unusedsymbols
350 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100351
352# LD = gcc (used when GCC LTO is enabled)
zelalem-aweked5f45272019-11-12 16:20:17 -0600353else ifneq ($(findstring gcc,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100354 # Pass ld options with Wl or Xlinker switches
355 TF_LDFLAGS += -Wl,--fatal-warnings -O1
356 TF_LDFLAGS += -Wl,--gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000357
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100358 TF_LDFLAGS += -Wl,-z,common-page-size=4096 #Configure page size constants
359 TF_LDFLAGS += -Wl,-z,max-page-size=4096
Chris Kay73b1f402022-12-22 13:26:37 +0000360
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100361 ifeq ($(ENABLE_LTO),1)
362 ifeq (${ARCH},aarch64)
363 TF_LDFLAGS += -flto -fuse-linker-plugin
364 endif
365 endif #(ENABLE_LTO)
366
zelalem-aweked5f45272019-11-12 16:20:17 -0600367# GCC automatically adds fix-cortex-a53-843419 flag when used to link
368# which breaks some builds, so disable if errata fix is not explicitly enabled
Yann Gautier3d73d162023-03-15 16:18:16 +0100369 ifeq (${ARCH},aarch64)
370 ifneq (${ERRATA_A53_843419},1)
371 TF_LDFLAGS += -mno-fix-cortex-a53-843419
372 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100373 endif
374 TF_LDFLAGS += -nostdlib
375 TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100376
377# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekar4d034c52019-01-11 14:47:48 -0800378else
Marco Felsch24ad8402022-11-09 12:59:09 +0100379# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
380# are not loaded by a elf loader.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100381 TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
382 TF_LDFLAGS += -O1
383 TF_LDFLAGS += --gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000384
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100385 TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
386 TF_LDFLAGS += -z max-page-size=4096
Chris Kay73b1f402022-12-22 13:26:37 +0000387
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100388# ld.lld doesn't recognize the errata flags,
Yabin Cuied7dc512023-01-19 20:06:04 +0000389# therefore don't add those in that case.
390# ld.lld reports section type mismatch warnings,
391# therefore don't add --fatal-warnings to it.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100392 ifeq ($(findstring ld.lld,$(notdir $(LD))),)
393 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
394 endif
395
396endif #(LD = armlink)
Juan Castilloa3487d12015-08-18 14:23:04 +0100397
398################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500399# Setup ARCH_MAJOR/MINOR before parsing arch_features.
400################################################################################
401ifeq (${ENABLE_RME},1)
402 ARM_ARCH_MAJOR := 8
403 ARM_ARCH_MINOR := 6
404endif
405
406################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100407# Common sources and include directories
408################################################################################
dp-arme3cc8382017-05-04 12:15:35 +0100409include lib/compiler-rt/compiler-rt.mk
Juan Castilloa3487d12015-08-18 14:23:04 +0100410
411BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100412 common/tf_log.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100413 common/${ARCH}/debug.S \
Julius Werner03020da2018-11-27 22:10:56 -0800414 drivers/console/multi_console.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100415 lib/${ARCH}/cache_helpers.S \
416 lib/${ARCH}/misc_helpers.S \
Boyan Karatotev05504ba2023-02-15 13:21:50 +0000417 lib/extensions/pmuv3/${ARCH}/pmuv3.c \
Soby Mathew2f38ce32018-02-08 17:45:12 +0000418 plat/common/plat_bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100419 plat/common/plat_log_common.c \
dp-arm230011c2017-03-07 11:02:47 +0000420 plat/common/${ARCH}/plat_common.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100421 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas0f8f9852018-05-08 10:27:10 +0100422 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000423
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100424ifeq ($(notdir $(CC)),armclang)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100425 BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100426endif
427
Justin Chadwell83e04882019-08-20 11:01:52 +0100428ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100429 BL_COMMON_SOURCES += plat/common/ubsan.c
Justin Chadwell83e04882019-08-20 11:01:52 +0100430endif
431
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200432INCLUDES += -Iinclude \
Antonio Nino Diaz8d1ade62018-12-17 17:20:57 +0000433 -Iinclude/arch/${ARCH} \
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000434 -Iinclude/lib/cpus/${ARCH} \
435 -Iinclude/lib/el3_runtime/${ARCH} \
436 ${PLAT_INCLUDES} \
437 ${SPD_INCLUDES}
438
Nishant Sharma331b5682022-08-15 16:37:07 +0100439DTC_FLAGS += -I dts -O dtb
440DTC_CPPFLAGS += -P -nostdinc $(INCLUDES) -Ifdts -undef \
441 -x assembler-with-cpp $(DEFINES)
442
Antonio Nino Diazc3a2cf22018-11-19 11:48:30 +0000443include common/backtrace/backtrace.mk
444
Juan Castilloa3487d12015-08-18 14:23:04 +0100445################################################################################
Govindraj Raja1a211292023-09-20 14:32:24 -0500446# Generic definitions
447################################################################################
448include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
449
450ifeq (${BUILD_BASE},)
451 BUILD_BASE := ./build
452endif
453BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
454
455SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
456
457# Platforms providing their own TBB makefile may override this value
458INCLUDE_TBBR_MK := 1
459
460################################################################################
461# Include SPD Makefile if one has been specified
462################################################################################
463
464ifneq (${SPD},none)
465 ifeq (${ARCH},aarch32)
466 $(error "Error: SPD is incompatible with AArch32.")
467 endif
468
469 ifdef EL3_PAYLOAD_BASE
470 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
471 $(warning "The SPD and its BL32 companion will be present but \
472 ignored.")
473 endif
474
475 ifeq (${SPD},spmd)
476 # SPMD is located in std_svc directory
477 SPD_DIR := std_svc
478
479 ifeq ($(SPMD_SPM_AT_SEL2),1)
480 CTX_INCLUDE_EL2_REGS := 1
481 ifeq ($(SPMC_AT_EL3),1)
482 $(error SPM cannot be enabled in both S-EL2 and EL3.)
483 endif
484 endif
485
486 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
487 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
488 endif
489
490 ifeq ($(TS_SP_FW_CONFIG),1)
491 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
492 endif
493
494 ifneq ($(ARM_BL2_SP_LIST_DTS),)
495 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
496 endif
497
498 ifneq ($(SP_LAYOUT_FILE),)
499 BL2_ENABLE_SP_LOAD := 1
500 endif
Govindraj Rajabad835a2023-10-31 14:48:11 -0500501
502 ifeq ($(SPMC_AT_EL3_SEL0_SP),1)
503 ifneq ($(SPMC_AT_EL3),1)
504 $(error SEL0 SP cannot be enabled without SPMC at EL3)
505 endif
506 endif
Govindraj Raja1a211292023-09-20 14:32:24 -0500507 else
508 # All other SPDs in spd directory
509 SPD_DIR := spd
510 endif #(SPD)
511
512 # We expect to locate an spd.mk under the specified SPD directory
513 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
514
515 ifeq (${SPD_MAKE},)
516 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
517 endif
518 $(info Including ${SPD_MAKE})
519 include ${SPD_MAKE}
520
521 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
522 # Makefile would set NEED_BL32 to "yes". In this case, the build system
523 # supports two mutually exclusive options:
524 # * BL32 is built from source: then BL32_SOURCES must contain the list
525 # of source files to build BL32
526 # * BL32 is a prebuilt binary: then BL32 must point to the image file
527 # that will be included in the FIP
528 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
529 # over the sources.
530endif #(SPD=none)
531
532ifeq (${ENABLE_SPMD_LP}, 1)
533ifneq (${SPD},spmd)
534 $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
535endif
536ifeq ($(SPMC_AT_EL3),1)
537 $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
538endif
539endif
540
541################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500542# Process BRANCH_PROTECTION value and set
543# Pointer Authentication and Branch Target Identification flags
544################################################################################
545ifeq (${BRANCH_PROTECTION},0)
546 # Default value turns off all types of branch protection
547 BP_OPTION := none
548else ifneq (${ARCH},aarch64)
549 $(error BRANCH_PROTECTION requires AArch64)
550else ifeq (${BRANCH_PROTECTION},1)
551 # Enables all types of branch protection features
552 BP_OPTION := standard
553 ENABLE_BTI := 1
554 ENABLE_PAUTH := 1
555else ifeq (${BRANCH_PROTECTION},2)
556 # Return address signing to its standard level
557 BP_OPTION := pac-ret
558 ENABLE_PAUTH := 1
559else ifeq (${BRANCH_PROTECTION},3)
560 # Extend the signing to include leaf functions
561 BP_OPTION := pac-ret+leaf
562 ENABLE_PAUTH := 1
563else ifeq (${BRANCH_PROTECTION},4)
564 # Turn on branch target identification mechanism
565 BP_OPTION := bti
566 ENABLE_BTI := 1
567else
568 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
569endif #(BRANCH_PROTECTION)
570
571ifeq ($(ENABLE_PAUTH),1)
572 CTX_INCLUDE_PAUTH_REGS := 1
573endif
574ifneq (${BP_OPTION},none)
575 TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
576endif #(BP_OPTION)
577
578# Pointer Authentication sources
579ifeq (${ENABLE_PAUTH}, 1)
580# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
581# Pauth support. As it's not secure, it must be reimplemented for real platforms
582 BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
583endif
584
Govindraj Raja1a211292023-09-20 14:32:24 -0500585################################################################################
586# Include the platform specific Makefile after the SPD Makefile (the platform
587# makefile may use all previous definitions in this file)
588################################################################################
589include ${PLAT_MAKEFILE_FULL}
590
591################################################################################
592# Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from
593# platform.
594################################################################################
595include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
596
Govindraj Raja0386e312023-08-17 10:41:48 -0500597####################################################
598# Enable required options for Memory Stack Tagging.
599####################################################
600
601# Currently, these options are enabled only for clang and armclang compiler.
602ifeq (${SUPPORT_STACK_MEMTAG},yes)
603 ifdef mem_tag_arch_support
604 # Check for armclang and clang compilers
605 ifneq ( ,$(filter $(notdir $(CC)),armclang clang))
606 # Add "memtag" architecture feature modifier if not specified
607 ifeq ( ,$(findstring memtag,$(arch-features)))
608 arch-features := $(arch-features)+memtag
609 endif # memtag
610 ifeq ($(notdir $(CC)),armclang)
611 TF_CFLAGS += -mmemtag-stack
612 else ifeq ($(notdir $(CC)),clang)
613 TF_CFLAGS += -fsanitize=memtag
614 endif # armclang
615 endif
616 else
617 $(error "Error: stack memory tagging is not supported for \
618 architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
619 endif #(mem_tag_arch_support)
620endif #(SUPPORT_STACK_MEMTAG)
621
622################################################################################
623# RME dependent flags configuration, Enable optional features for RME.
624################################################################################
625# FEAT_RME
626ifeq (${ENABLE_RME},1)
Govindraj Raja60f52662023-10-12 16:57:46 -0500627 # RME doesn't support BRBE
628 ENABLE_BRBE_FOR_NS := 0
629
Govindraj Raja0386e312023-08-17 10:41:48 -0500630 # RME doesn't support PIE
631 ifneq (${ENABLE_PIE},0)
632 $(error ENABLE_RME does not support PIE)
633 endif
634
635 # RME doesn't support BRBE
636 ifneq (${ENABLE_BRBE_FOR_NS},0)
637 $(error ENABLE_RME does not support BRBE.)
638 endif
639
640 # RME requires AARCH64
641 ifneq (${ARCH},aarch64)
642 $(error ENABLE_RME requires AArch64)
643 endif
644
645 # RME requires el2 context to be saved for now.
646 CTX_INCLUDE_EL2_REGS := 1
647 CTX_INCLUDE_AARCH32_REGS := 0
648 CTX_INCLUDE_PAUTH_REGS := 1
649
650 # RME enables CSV2_2 extension by default.
651 ENABLE_FEAT_CSV2_2 = 1
652endif #(FEAT_RME)
653
654################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500655# Include rmmd Makefile if RME is enabled
656################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500657ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100658 ifneq (${ARCH},aarch64)
659 $(error ENABLE_RME requires AArch64)
660 endif
661 ifeq ($(SPMC_AT_EL3),1)
662 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
663 endif
664
665 ifneq (${SPD}, none)
666 ifneq (${SPD}, spmd)
667 $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
668 endif
669 endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500670include services/std_svc/rmmd/rmmd.mk
671$(warning "RME is an experimental feature")
672endif
673
Govindraj Raja1a211292023-09-20 14:32:24 -0500674ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
675 ifeq (${SPD},none)
676 ifeq (${ENABLE_RME},0)
677 $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
678 or RME is enabled)
679 endif
680 endif
681endif
Jon Medhurst66573cb2014-02-13 15:19:28 +0000682
Govindraj Raja69096412023-06-01 16:29:16 -0500683################################################################################
684# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
685# up with appropriate march values for compiler.
686################################################################################
687include ${MAKE_HELPERS_DIRECTORY}march.mk
688
689TF_CFLAGS += $(march-directive)
690
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600691# This internal flag is common option which is set to 1 for scenarios
692# when the BL2 is running in EL3 level. This occurs in two scenarios -
693# 4 world system running BL2 at EL3 and two world system without BL1 running
694# BL2 in EL3
695
696ifeq (${RESET_TO_BL2},1)
697 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100698 ifeq (${ENABLE_RME},1)
699 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
700 supported at the moment.)
701 endif
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600702else ifeq (${ENABLE_RME},1)
703 BL2_RUNS_AT_EL3 := 1
704else
705 BL2_RUNS_AT_EL3 := 0
706endif
707
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100708# This internal flag is set to 1 when Firmware First handling of External aborts
709# is required by lowe ELs. Currently only NS requires this support.
710ifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
711 FFH_SUPPORT := 1
712else
713 FFH_SUPPORT := 0
714endif
715
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900716$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
717
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100718ifeq (${ARM_ARCH_MAJOR},7)
719include make_helpers/armv7-a-cpus.mk
720endif
721
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900722PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
723ifneq ($(PIE_FOUND),)
724 TF_CFLAGS += -fno-PIE
Samuel Holland9286c022022-04-08 21:56:02 -0500725ifneq ($(findstring gcc,$(notdir $(LD))),)
726 TF_LDFLAGS += -no-pie
727endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100728endif #(PIE_FOUND)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900729
730ifneq ($(findstring gcc,$(notdir $(LD))),)
731 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100732else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900733 PIE_LDFLAGS += -pie --no-dynamic-linker
734endif
735
736ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100737 ifeq ($(RESET_TO_BL2),1)
738 ifneq ($(BL2_IN_XIP_MEM),1)
739 BL2_CPPFLAGS += -fpie
740 BL2_CFLAGS += -fpie
741 BL2_LDFLAGS += $(PIE_LDFLAGS)
742 endif #(BL2_IN_XIP_MEM)
743 endif #(RESET_TO_BL2)
Chris Kay13886c82023-02-02 14:39:03 +0000744 BL31_CPPFLAGS += -fpie
745 BL31_CFLAGS += -fpie
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900746 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay13886c82023-02-02 14:39:03 +0000747
748 BL32_CPPFLAGS += -fpie
Masahiro Yamadade634f82020-01-17 13:45:14 +0900749 BL32_CFLAGS += -fpie
750 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100751endif #(ENABLE_PIE)
Soby Mathew078f1a42018-08-28 11:13:55 +0100752
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000753BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
754BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
755BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
756
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900757BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600758ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100759 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900760else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100761 BL2_CPPFLAGS += -DIMAGE_AT_EL1
762endif #(RESET_TO_BL2)
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000763
764ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100765 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
766 BL31_CPPFLAGS += -DIMAGE_AT_EL3
767 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000768else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100769 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900770endif
771
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000772# Include the CPU specific operations makefile, which provides default
773# values for all CPU errata workarounds and CPU specific optimisations.
774# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100775include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100776
dp-armcdd03cb2017-02-15 11:07:55 +0000777################################################################################
778# Build `AARCH32_SP` as BL32 image for AArch32
779################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100780ifeq (${ARCH},aarch32)
781 NEED_BL32 := yes
dp-armcdd03cb2017-02-15 11:07:55 +0000782
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100783 ifneq (${AARCH32_SP},none)
784 # We expect to locate an sp.mk under the specified AARCH32_SP directory
785 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-armcdd03cb2017-02-15 11:07:55 +0000786
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100787 ifeq (${AARCH32_SP_MAKE},)
788 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
789 endif
Juan Pablo Conde6aba3b12023-08-09 13:19:21 -0500790 $(info Including ${AARCH32_SP_MAKE})
791 include ${AARCH32_SP_MAKE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100792 endif
793endif #(ARCH=aarch32)
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800794
795################################################################################
796# Include libc if not overridden
797################################################################################
798ifeq (${OVERRIDE_LIBC},0)
799include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000800endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100801
802################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100803# Check incompatible options and dependencies
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000804################################################################################
805
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100806# USE_DEBUGFS experimental feature recommended only in debug builds
807ifeq (${USE_DEBUGFS},1)
808 ifeq (${DEBUG},1)
809 $(warning DEBUGFS experimental feature is enabled.)
810 else
811 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800812 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100813endif #(USE_DEBUGFS)
814
815# USE_SPINLOCK_CAS requires AArch64 build
816ifeq (${USE_SPINLOCK_CAS},1)
817 ifneq (${ARCH},aarch64)
818 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800819 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100820endif #(USE_SPINLOCK_CAS)
821
822# The cert_create tool cannot generate certificates individually, so we use the
823# target 'certificates' to create them all
824ifneq (${GENERATE_COT},0)
825 FIP_DEPS += certificates
826 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000827endif
828
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100829ifneq (${DECRYPTION_SUPPORT},none)
830 ENC_ARGS += -f ${FW_ENC_STATUS}
831 ENC_ARGS += -k ${ENC_KEY}
832 ENC_ARGS += -n ${ENC_NONCE}
833 FIP_DEPS += enctool
834 FWU_FIP_DEPS += enctool
835endif #(DECRYPTION_SUPPORT)
836
837ifdef EL3_PAYLOAD_BASE
838 ifdef PRELOADED_BL33_BASE
839 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
840 incompatible build options. EL3_PAYLOAD_BASE has priority.")
841 endif
842 ifneq (${GENERATE_COT},0)
843 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
844 build options.")
845 endif
846 ifneq (${TRUSTED_BOARD_BOOT},0)
847 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
848 incompatible \ build options.")
849 endif
850endif #(EL3_PAYLOAD_BASE)
851
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000852ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100853 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000854 $(warning "BL33 image is not needed when option \
855 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100856 endif
857 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100858 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100859 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
860 endif
861endif #(NEED_BL33)
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000862
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000863# When building for systems with hardware-assisted coherency, there's no need to
864# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
865ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100866 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000867endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100868
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600869#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
870ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100871 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000872endif
873
Manish Pandeyd419e222023-02-13 12:39:17 +0000874# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100875ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100876 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100877 and HANDLE_EA_EL3_FIRST_NS instead")
Manish Pandeyd419e222023-02-13 12:39:17 +0000878endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100879
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100880
Manish Pandeyd419e222023-02-13 12:39:17 +0000881# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000882ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100883 ifeq ($(ENABLE_FEAT_RAS),0)
884 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
885 endif
886endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000887
Roberto Vargas025946a2018-09-24 17:20:48 +0100888# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100889ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100890 ifeq (${TRUSTED_BOARD_BOOT}, 0)
891 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
892 to be set.")
893 endif
894endif #(DYN_DISABLE_AUTH)
Soby Mathew9fe88042018-03-26 12:43:37 +0100895
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100896ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
897# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100898 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100899else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
900# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100901 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100902else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
903# Support hash calculation only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100904 CRYPTO_SUPPORT := 2
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100905else ifeq (${TRUSTED_BOARD_BOOT},1)
906# Support authentication verification only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100907 CRYPTO_SUPPORT := 1
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000908else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100909 CRYPTO_SUPPORT := 0
910endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000911
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +0100912# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
913ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100914 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +0100915endif
916
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000917# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100918# registers associated to it are also saved and restored.
919# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000920ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100921 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
922 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
923 endif
924endif #(ENABLE_PAUTH)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100925
926ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100927 ifneq (${ARCH},aarch64)
928 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
929 endif
930endif #(CTX_INCLUDE_PAUTH_REGS)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000931
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100932ifeq ($(CTX_INCLUDE_MTE_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100933 ifneq (${ARCH},aarch64)
934 $(error CTX_INCLUDE_MTE_REGS requires AArch64)
935 endif
936endif #(CTX_INCLUDE_MTE_REGS)
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100937
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100938ifeq ($(PSA_FWU_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100939 $(info PSA_FWU_SUPPORT is an experimental feature)
940endif #(PSA_FWU_SUPPORT)
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100941
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000942ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100943 $(info FEATURE_DETECTION is an experimental feature)
944endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000945
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000946ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100947 ifeq (${ENABLE_SME_FOR_NS}, 0)
948 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
949 to be set")
950 $(warning "Forced ENABLE_SME_FOR_NS=1")
951 override ENABLE_SME_FOR_NS := 1
952 endif
953endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000954
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000955ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100956 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
957 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
958 library v2")
959 endif
960endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000961
Sumit Garg392e4df2019-11-15 10:43:00 +0530962ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100963 ifeq (${TRUSTED_BOARD_BOOT}, 0)
964 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
965 to be set)
966 endif
967endif #(DECRYPTION_SUPPORT)
Sumit Garg392e4df2019-11-15 10:43:00 +0530968
johpow0181865962022-01-28 17:06:20 -0600969# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -0500970ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -0600971
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100972 # SME/SVE only supported on AArch64
973 ifneq (${ENABLE_SME_FOR_NS},0)
974 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
975 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000976
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100977 ifeq (${ENABLE_SVE_FOR_NS},1)
978 # Warning instead of error due to CI dependency on this
979 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
980 endif
johpow0181865962022-01-28 17:06:20 -0600981
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100982 # BRBE is not supported in AArch32
983 ifeq (${ENABLE_BRBE_FOR_NS},1)
984 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
985 endif
johpow0181865962022-01-28 17:06:20 -0600986
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100987 # FEAT_RNG_TRAP is not supported in AArch32
988 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
989 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
990 endif
991endif #(ARCH=aarch32)
johpow019baade32021-07-08 14:14:00 -0500992
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000993ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100994 ifeq (${ENABLE_SVE_FOR_NS},0)
995 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
996 endif
997endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000998
johpow019baade32021-07-08 14:14:00 -0500999# Secure SME/SVE requires the non-secure component as well
1000ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001001 ifeq (${ENABLE_SME_FOR_NS},0)
1002 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
1003 endif
1004 ifeq (${ENABLE_SVE_FOR_SWD},0)
1005 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
1006 endif
1007endif #(ENABLE_SME_FOR_SWD)
1008
johpow019baade32021-07-08 14:14:00 -05001009ifeq (${ENABLE_SVE_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001010 ifeq (${ENABLE_SVE_FOR_NS},0)
1011 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
1012 endif
1013endif #(ENABLE_SVE_FOR_SWD)
johpow019baade32021-07-08 14:14:00 -05001014
1015# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
1016# its own context management including FPU registers.
1017ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001018 ifneq (${ENABLE_SME_FOR_NS},0)
1019 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1020 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001021
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001022 ifeq (${ENABLE_SVE_FOR_NS},1)
1023 # Warning instead of error due to CI dependency on this
1024 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1025 $(warning "Forced ENABLE_SVE_FOR_NS=0")
1026 override ENABLE_SVE_FOR_NS := 0
1027 endif
1028endif #(CTX_INCLUDE_FPREGS)
johpow019baade32021-07-08 14:14:00 -05001029
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001030ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001031 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001032endif
1033
Raymond Mao98983392023-07-25 07:53:35 -07001034ifeq (${TRANSFER_LIST},1)
1035 $(info TRANSFER_LIST is an experimental feature)
1036endif
1037
Chris Kayd02c2312022-09-29 16:21:24 +01001038ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001039 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1040 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1041 endif
Chris Kayd02c2312022-09-29 16:21:24 +01001042endif
1043
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001044# Determine if FEAT_RNG is supported
1045ENABLE_FEAT_RNG = $(if $(findstring rng,${arch-features}),1,0)
1046
1047# Determine if FEAT_SB is supported
1048ENABLE_FEAT_SB = $(if $(findstring sb,${arch-features}),1,0)
1049
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001050ifeq ($(PSA_CRYPTO),1)
1051 $(info PSA_CRYPTO is an experimental feature)
1052endif
1053
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001054################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001055# Process platform overrideable behaviour
1056################################################################################
1057
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001058ifdef BL1_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001059 NEED_BL1 := yes
1060endif #(BL1_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001061
Jon Medhurst66573cb2014-02-13 15:19:28 +00001062ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001063 NEED_BL2 := yes
1064
1065 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1066 # Certificate generation tools. This flag can be overridden by the platform.
1067 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001068 # If booting an EL3 payload there is no need for a BL33 image
1069 # in the FIP file.
1070 NEED_BL33 := no
1071 else
1072 ifdef PRELOADED_BL33_BASE
1073 # If booting a BL33 preloaded image there is no need of
1074 # another one in the FIP file.
1075 NEED_BL33 := no
1076 else
1077 NEED_BL33 ?= yes
1078 endif
1079 endif
1080endif #(BL2_SOURCES)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001081
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001082ifdef BL2U_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001083 NEED_BL2U := yes
1084endif #(BL2U_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001085
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001086# If SCP_BL2 is given, we always want FIP to include it.
1087ifdef SCP_BL2
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001088 NEED_SCP_BL2 := yes
1089endif #(SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001090
Soby Mathewbf169232017-11-14 14:10:10 +00001091# For AArch32, BL31 is not currently supported.
1092ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001093 ifdef BL31_SOURCES
1094 # When booting an EL3 payload, there is no need to compile the BL31
1095 # image nor put it in the FIP.
1096 ifndef EL3_PAYLOAD_BASE
1097 NEED_BL31 := yes
1098 endif
1099 endif
1100endif #(ARCH=aarch64)
Soby Mathewbf169232017-11-14 14:10:10 +00001101
Juan Castilloa3487d12015-08-18 14:23:04 +01001102# Process TBB related flags
1103ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001104 # Common cert_create options
1105 ifneq (${CREATE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001106 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001107 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001108 ifneq (${SAVE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001109 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001110 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001111 endif
1112 endif
1113 # Include TBBR makefile (unless the platform indicates otherwise)
1114 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castilloa3487d12015-08-18 14:23:04 +01001115 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001116 endif
1117endif #(GENERATE_COT)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001118
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001119ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001120 FIP_ARGS += --align ${FIP_ALIGN}
1121endif #(FIP_ALIGN)
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001122
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001123ifdef FDT_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001124 NEED_FDT := yes
1125endif #(FDT_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001126
Juan Castilloa3487d12015-08-18 14:23:04 +01001127################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +08001128# Include libraries' Makefile that are used in all BL
1129################################################################################
1130
1131include lib/stack_protector/stack_protector.mk
1132
1133################################################################################
Soby Mathew574e01e2017-02-14 10:05:07 +00001134# Include BL specific makefiles
1135################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001136
1137ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001138include bl1/bl1.mk
1139endif
1140
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001141ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001142include bl2/bl2.mk
1143endif
1144
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001145ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001146include bl2u/bl2u.mk
1147endif
1148
Soby Mathewbf169232017-11-14 14:10:10 +00001149ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001150include bl31/bl31.mk
1151endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001152
Soby Mathew574e01e2017-02-14 10:05:07 +00001153################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001154# Build options checks
1155################################################################################
1156
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001157# Boolean_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001158$(eval $(call assert_booleans,\
1159 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001160 ALLOW_RO_XLAT_TABLES \
1161 BL2_ENABLE_SP_LOAD \
1162 COLD_BOOT_SINGLE_CPU \
1163 CREATE_KEYS \
1164 CTX_INCLUDE_AARCH32_REGS \
1165 CTX_INCLUDE_FPREGS \
1166 CTX_INCLUDE_EL2_REGS \
1167 DEBUG \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001168 DYN_DISABLE_AUTH \
1169 EL3_EXCEPTION_HANDLING \
1170 ENABLE_AMU_AUXILIARY_COUNTERS \
1171 ENABLE_AMU_FCONF \
1172 AMU_RESTRICT_COUNTERS \
1173 ENABLE_ASSERTIONS \
1174 ENABLE_FEAT_SB \
1175 ENABLE_PIE \
1176 ENABLE_PMF \
1177 ENABLE_PSCI_STAT \
1178 ENABLE_RUNTIME_INSTRUMENTATION \
1179 ENABLE_SME_FOR_SWD \
1180 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001181 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001182 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001183 ERROR_DEPRECATED \
1184 FAULT_INJECTION_SUPPORT \
1185 GENERATE_COT \
1186 GICV2_G0_FOR_EL3 \
1187 HANDLE_EA_EL3_FIRST_NS \
1188 HW_ASSISTED_COHERENCY \
1189 MEASURED_BOOT \
1190 DRTM_SUPPORT \
1191 NS_TIMER_SWITCH \
1192 OVERRIDE_LIBC \
1193 PL011_GENERIC_UART \
1194 PLAT_RSS_NOT_SUPPORTED \
1195 PROGRAMMABLE_RESET_ADDRESS \
1196 PSCI_EXTENDED_STATE_ID \
1197 PSCI_OS_INIT_MODE \
1198 RESET_TO_BL31 \
1199 SAVE_KEYS \
1200 SEPARATE_CODE_AND_RODATA \
1201 SEPARATE_BL2_NOLOAD_REGION \
1202 SEPARATE_NOBITS_REGION \
1203 SPIN_ON_BL1_EXIT \
1204 SPM_MM \
1205 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001206 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001207 SPMD_SPM_AT_SEL2 \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001208 ENABLE_SPMD_LP \
Raymond Mao98983392023-07-25 07:53:35 -07001209 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001210 TRUSTED_BOARD_BOOT \
1211 USE_COHERENT_MEM \
1212 USE_DEBUGFS \
1213 ARM_IO_IN_DTB \
1214 SDEI_IN_FCONF \
1215 SEC_INT_DESC_IN_FCONF \
1216 USE_ROMLIB \
1217 USE_TBBR_DEFS \
1218 WARMBOOT_ENABLE_DCACHE_EARLY \
1219 RESET_TO_BL2 \
1220 BL2_IN_XIP_MEM \
1221 BL2_INV_DCACHE \
1222 USE_SPINLOCK_CAS \
1223 ENCRYPT_BL31 \
1224 ENCRYPT_BL32 \
1225 ERRATA_SPECULATIVE_AT \
1226 RAS_TRAP_NS_ERR_REC_ACCESS \
1227 COT_DESC_IN_DTB \
1228 USE_SP804_TIMER \
1229 PSA_FWU_SUPPORT \
1230 ENABLE_MPMM \
1231 ENABLE_MPMM_FCONF \
1232 FEATURE_DETECTION \
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +01001233 TRNG_SUPPORT \
Sona Mathew7fe03522022-11-18 18:05:38 -06001234 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001235 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001236 CONDITIONAL_CMO \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001237 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001238 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash8bd27c92023-08-15 16:28:06 -05001239 INIT_UNUSED_NS_EL2 \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001240)))
Dan Handley81be1002015-03-27 17:44:35 +00001241
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001242# Numeric_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001243$(eval $(call assert_numerics,\
1244 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001245 ARM_ARCH_MAJOR \
1246 ARM_ARCH_MINOR \
1247 BRANCH_PROTECTION \
1248 CTX_INCLUDE_PAUTH_REGS \
1249 CTX_INCLUDE_MTE_REGS \
1250 CTX_INCLUDE_NEVE_REGS \
1251 CRYPTO_SUPPORT \
Boyan Karatotev677ed8a2023-02-16 09:45:29 +00001252 DISABLE_MTPMU \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001253 ENABLE_BRBE_FOR_NS \
1254 ENABLE_TRBE_FOR_NS \
1255 ENABLE_BTI \
1256 ENABLE_PAUTH \
1257 ENABLE_FEAT_AMU \
1258 ENABLE_FEAT_AMUv1p1 \
1259 ENABLE_FEAT_CSV2_2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001260 ENABLE_FEAT_DIT \
1261 ENABLE_FEAT_ECV \
1262 ENABLE_FEAT_FGT \
1263 ENABLE_FEAT_HCX \
1264 ENABLE_FEAT_PAN \
1265 ENABLE_FEAT_RNG \
1266 ENABLE_FEAT_RNG_TRAP \
1267 ENABLE_FEAT_SEL2 \
1268 ENABLE_FEAT_TCR2 \
1269 ENABLE_FEAT_S2PIE \
1270 ENABLE_FEAT_S1PIE \
1271 ENABLE_FEAT_S2POE \
1272 ENABLE_FEAT_S1POE \
1273 ENABLE_FEAT_GCS \
1274 ENABLE_FEAT_VHE \
Maksims Svecovsdf4ad842023-03-24 13:05:09 +00001275 ENABLE_FEAT_MTE_PERM \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001276 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001277 ENABLE_RME \
1278 ENABLE_SPE_FOR_NS \
1279 ENABLE_SYS_REG_TRACE_FOR_NS \
1280 ENABLE_SME_FOR_NS \
1281 ENABLE_SME2_FOR_NS \
1282 ENABLE_SVE_FOR_NS \
1283 ENABLE_TRF_FOR_NS \
1284 FW_ENC_STATUS \
1285 NR_OF_FW_BANKS \
1286 NR_OF_IMAGES_IN_FW_BANK \
1287 TWED_DELAY \
1288 ENABLE_FEAT_TWED \
1289 SVE_VECTOR_LEN \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001290 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001291)))
Jeenu Viswambharanfca76802017-01-16 16:52:35 +00001292
Justin Chadwellf9b32c12019-07-29 17:13:10 +01001293ifdef KEY_SIZE
1294 $(eval $(call assert_numeric,KEY_SIZE))
1295endif
1296
Justin Chadwell83e04882019-08-20 11:01:52 +01001297ifeq ($(filter $(SANITIZE_UB), on off trap),)
1298 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1299endif
1300
Juan Castilloa3487d12015-08-18 14:23:04 +01001301################################################################################
1302# Add definitions to the cpp preprocessor based on the current build options.
1303# This is done after including the platform specific makefile to allow the
1304# platform to overwrite the default options
1305################################################################################
Jeenu Viswambharand1b60152014-05-12 15:28:47 +01001306
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001307$(eval $(call add_defines,\
1308 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001309 ALLOW_RO_XLAT_TABLES \
1310 ARM_ARCH_MAJOR \
1311 ARM_ARCH_MINOR \
1312 BL2_ENABLE_SP_LOAD \
1313 COLD_BOOT_SINGLE_CPU \
1314 CTX_INCLUDE_AARCH32_REGS \
1315 CTX_INCLUDE_FPREGS \
1316 CTX_INCLUDE_PAUTH_REGS \
1317 EL3_EXCEPTION_HANDLING \
1318 CTX_INCLUDE_MTE_REGS \
1319 CTX_INCLUDE_EL2_REGS \
1320 CTX_INCLUDE_NEVE_REGS \
1321 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1322 DISABLE_MTPMU \
1323 ENABLE_FEAT_AMU \
1324 ENABLE_AMU_AUXILIARY_COUNTERS \
1325 ENABLE_AMU_FCONF \
1326 AMU_RESTRICT_COUNTERS \
1327 ENABLE_ASSERTIONS \
1328 ENABLE_BTI \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001329 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001330 ENABLE_PAUTH \
1331 ENABLE_PIE \
1332 ENABLE_PMF \
1333 ENABLE_PSCI_STAT \
1334 ENABLE_RME \
1335 ENABLE_RUNTIME_INSTRUMENTATION \
1336 ENABLE_SME_FOR_NS \
1337 ENABLE_SME2_FOR_NS \
1338 ENABLE_SME_FOR_SWD \
1339 ENABLE_SPE_FOR_NS \
1340 ENABLE_SVE_FOR_NS \
1341 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001342 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001343 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001344 ENCRYPT_BL31 \
1345 ENCRYPT_BL32 \
1346 ERROR_DEPRECATED \
1347 FAULT_INJECTION_SUPPORT \
1348 GICV2_G0_FOR_EL3 \
1349 HANDLE_EA_EL3_FIRST_NS \
1350 HW_ASSISTED_COHERENCY \
1351 LOG_LEVEL \
1352 MEASURED_BOOT \
1353 DRTM_SUPPORT \
1354 NS_TIMER_SWITCH \
1355 PL011_GENERIC_UART \
1356 PLAT_${PLAT} \
1357 PLAT_RSS_NOT_SUPPORTED \
1358 PROGRAMMABLE_RESET_ADDRESS \
1359 PSCI_EXTENDED_STATE_ID \
1360 PSCI_OS_INIT_MODE \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001361 RESET_TO_BL31 \
1362 SEPARATE_CODE_AND_RODATA \
1363 SEPARATE_BL2_NOLOAD_REGION \
1364 SEPARATE_NOBITS_REGION \
1365 RECLAIM_INIT_CODE \
1366 SPD_${SPD} \
1367 SPIN_ON_BL1_EXIT \
1368 SPM_MM \
1369 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001370 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001371 SPMD_SPM_AT_SEL2 \
Raymond Mao98983392023-07-25 07:53:35 -07001372 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001373 TRUSTED_BOARD_BOOT \
1374 CRYPTO_SUPPORT \
1375 TRNG_SUPPORT \
1376 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001377 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001378 USE_COHERENT_MEM \
1379 USE_DEBUGFS \
1380 ARM_IO_IN_DTB \
1381 SDEI_IN_FCONF \
1382 SEC_INT_DESC_IN_FCONF \
1383 USE_ROMLIB \
1384 USE_TBBR_DEFS \
1385 WARMBOOT_ENABLE_DCACHE_EARLY \
1386 RESET_TO_BL2 \
1387 BL2_RUNS_AT_EL3 \
1388 BL2_IN_XIP_MEM \
1389 BL2_INV_DCACHE \
1390 USE_SPINLOCK_CAS \
1391 ERRATA_SPECULATIVE_AT \
1392 RAS_TRAP_NS_ERR_REC_ACCESS \
1393 COT_DESC_IN_DTB \
1394 USE_SP804_TIMER \
1395 ENABLE_FEAT_RNG \
1396 ENABLE_FEAT_RNG_TRAP \
1397 ENABLE_FEAT_SB \
1398 ENABLE_FEAT_DIT \
1399 NR_OF_FW_BANKS \
1400 NR_OF_IMAGES_IN_FW_BANK \
1401 PSA_FWU_SUPPORT \
1402 ENABLE_BRBE_FOR_NS \
1403 ENABLE_TRBE_FOR_NS \
1404 ENABLE_SYS_REG_TRACE_FOR_NS \
1405 ENABLE_TRF_FOR_NS \
1406 ENABLE_FEAT_HCX \
1407 ENABLE_MPMM \
1408 ENABLE_MPMM_FCONF \
1409 ENABLE_FEAT_FGT \
1410 ENABLE_FEAT_ECV \
1411 ENABLE_FEAT_AMUv1p1 \
1412 ENABLE_FEAT_SEL2 \
1413 ENABLE_FEAT_VHE \
1414 ENABLE_FEAT_CSV2_2 \
1415 ENABLE_FEAT_PAN \
1416 ENABLE_FEAT_TCR2 \
1417 ENABLE_FEAT_S2PIE \
1418 ENABLE_FEAT_S1PIE \
1419 ENABLE_FEAT_S2POE \
1420 ENABLE_FEAT_S1POE \
1421 ENABLE_FEAT_GCS \
Maksims Svecovsdf4ad842023-03-24 13:05:09 +00001422 ENABLE_FEAT_MTE_PERM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001423 FEATURE_DETECTION \
1424 TWED_DELAY \
1425 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001426 CONDITIONAL_CMO \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001427 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidanand23c2fe22023-04-26 15:57:30 +01001428 SVE_VECTOR_LEN \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001429 ENABLE_SPMD_LP \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001430 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001431 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash8bd27c92023-08-15 16:28:06 -05001432 INIT_UNUSED_NS_EL2 \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001433)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001434
Justin Chadwell83e04882019-08-20 11:01:52 +01001435ifeq (${SANITIZE_UB},trap)
1436 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001437endif #(SANITIZE_UB)
Justin Chadwell83e04882019-08-20 11:01:52 +01001438
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001439# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1440ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001441 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1442else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001443# Define the PRELOADED_BL33_BASE flag only if it is provided and
1444# EL3_PAYLOAD_BASE is not defined, as it has priority.
1445 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001446 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001447 endif
1448endif #(EL3_PAYLOAD_BASE)
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001449
Soby Mathew9fe88042018-03-26 12:43:37 +01001450# Define the DYN_DISABLE_AUTH flag only if set.
1451ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001452 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew9fe88042018-03-26 12:43:37 +01001453endif
1454
Varun Wadekar4d034c52019-01-11 14:47:48 -08001455ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001456 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekar4d034c52019-01-11 14:47:48 -08001457endif
1458
Manish Pandey3f90ad72020-01-14 11:52:05 +00001459# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001460ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001461ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001462 -include $(BUILD_PLAT)/sp_gen.mk
1463 FIP_DEPS += sp
1464 CRT_DEPS += sp
1465 NEED_SP_PKG := yes
Manish Pandey3f90ad72020-01-14 11:52:05 +00001466else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001467 ifeq (${SPMD_SPM_AT_SEL2},1)
1468 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1469 endif
1470endif #(SP_LAYOUT_FILE)
1471endif #(SPD)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001472
Juan Castilloa3487d12015-08-18 14:23:04 +01001473################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001474# Build targets
1475################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001476
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301477.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 +01001478.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001479
Juan Castilloa3487d12015-08-18 14:23:04 +01001480all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001481
Juan Castilloa3487d12015-08-18 14:23:04 +01001482msg_start:
1483 @echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001484
Soby Mathew18a62042015-10-26 14:29:21 +00001485ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001486# Check if deprecated declarations and cpp warnings should be treated as error or not.
Varun Wadekar4d034c52019-01-11 14:47:48 -08001487ifneq ($(findstring clang,$(notdir $(CC))),)
1488 CPPFLAGS += -Wno-error=deprecated-declarations
1489else
Dan Handley6fa89a22018-02-27 16:03:58 +00001490 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001491endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001492endif #(!ERROR_DEPRECATED)
Soby Mathew18a62042015-10-26 14:29:21 +00001493
Roberto Vargase92111a2018-05-22 16:05:42 +01001494$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001495$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001496
Juan Castilloa3487d12015-08-18 14:23:04 +01001497# Expand build macros for the different images
1498ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001499BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001500$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001501endif #(NEED_BL1)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001502
Juan Castilloa3487d12015-08-18 14:23:04 +01001503ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001504
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001505ifeq (${RESET_TO_BL2}, 0)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001506FIP_BL2_ARGS := tb-fw
1507endif
1508
Chris Kayfb3b0512021-09-28 15:44:37 +01001509BL2_SOURCES := $(sort ${BL2_SOURCES})
1510
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001511$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001512 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001513
1514endif #(NEED_BL2)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001515
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001516ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001517$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001518endif #(NEED_SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001519
Juan Castilloa3487d12015-08-18 14:23:04 +01001520ifeq (${NEED_BL31},yes)
1521BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001522# Sort BL31 source files to remove duplicates
1523BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301524ifneq (${DECRYPTION_SUPPORT},none)
1525$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001526 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301527else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001528$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001529 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001530endif #(DECRYPTION_SUPPORT)
1531endif #(NEED_BL31)
Juan Castillo379954c2014-11-04 17:36:40 +00001532
Juan Castillo671b8db2015-11-12 10:59:26 +00001533# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001534# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001535# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001536ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001537# Sort BL32 source files to remove duplicates
1538BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001539BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1540
Sumit Gargeec52442019-11-14 16:33:45 +05301541ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001542$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301543 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1544else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001545$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001546 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001547endif #(DECRYPTION_SUPPORT)
1548endif #(NEED_BL32)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001549
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001550# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1551# needs to be built from RMM_SOURCES.
1552ifeq (${NEED_RMM},yes)
1553# Sort RMM source files to remove duplicates
1554RMM_SOURCES := $(sort ${RMM_SOURCES})
1555BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1556
1557$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001558 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1559endif #(NEED_RMM)
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001560
Juan Castilloa3487d12015-08-18 14:23:04 +01001561# Add the BL33 image if required by the platform
1562ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001563$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001564endif #(NEED_BL33)
Juan Castillo9c25a402015-01-13 12:21:04 +00001565
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001566ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001567$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001568 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001569endif #(NEED_BL2U)
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001570
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001571# Expand build macros for the different images
1572ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001573 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001574endif #(NEED_FDT)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001575
Manish Pandey3f90ad72020-01-14 11:52:05 +00001576# Add Secure Partition packages
1577ifeq (${NEED_SP_PKG},yes)
Karl Meakinaba46182023-02-14 11:56:02 +00001578$(BUILD_PLAT)/sp_gen.mk : ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
1579 ${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
J-Alvesef8e0982022-03-22 16:28:51 +00001580sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001581 @${ECHO_BLANK_LINE}
1582 @echo "Built SP Images successfully"
1583 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001584endif #(NEED_SP_PKG)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001585
Ian Spray36eaaf32014-01-30 17:25:28 +00001586locate-checkpatch:
1587ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001588 $(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 +00001589else
1590ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001591 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001592endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001593endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001594
Achin Gupta4f6ad662013-10-25 09:08:21 +01001595clean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001596 @echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001597 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001598ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001599 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001600else
1601# Clear the MAKEFLAGS as we do not want
1602# to pass the gnumake flags to nmake.
1603 ${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 +01001604endif #(UNIX_MK)
Juan Castilloa3487d12015-08-18 14:23:04 +01001605 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301606 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
Roberto Vargase92111a2018-05-22 16:05:42 +01001607 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001608
James Morrisseyeaaeece2013-11-01 13:56:59 +00001609realclean distclean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001610 @echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001611 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1612 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001613ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001614 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001615else
1616# Clear the MAKEFLAGS as we do not want
1617# to pass the gnumake flags to nmake.
1618 ${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 +01001619endif #(UNIX_MK)
Nicolas Boulenguezdf612a52021-03-31 12:22:45 +02001620 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301621 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
Roberto Vargase92111a2018-05-22 16:05:42 +01001622 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001623
Ian Spray36eaaf32014-01-30 17:25:28 +00001624checkcodebase: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001625 @echo " CHECKING STYLE"
Dan Handley3a355712016-06-02 18:21:02 +01001626 @if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001627 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001628 while read GIT_FILE ; \
1629 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1630 done ; \
1631 else \
1632 find . -type f -not -iwholename "*.git*" \
1633 -not -iwholename "*build*" \
1634 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001635 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001636 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001637 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001638 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1639 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001640
1641checkpatch: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001642 @echo " CHECKING STYLE"
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001643 @if test -n "${CHECKPATCH_OPTS}"; then \
1644 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1645 fi
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001646 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001647 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1648 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001649 printf "\n[*] Checking style of '$$commit'\n\n"; \
1650 git log --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001651 -- ${CHECK_PATHS} | \
1652 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001653 git diff --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001654 -- ${CHECK_PATHS} | \
1655 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001656 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001657
1658certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001659
Pali Rohár54ff2132020-11-24 15:38:08 +01001660${CRTTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001661 ${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 +00001662 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001663 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001664 @${ECHO_BLANK_LINE}
Jon Medhurst407a95c2014-02-12 15:54:48 +00001665
Juan Castillo11abdcd2014-10-21 11:30:42 +01001666ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001667certificates: ${CRT_DEPS} ${CRTTOOL}
1668 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001669 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001670 @echo "Built $@ successfully"
1671 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001672 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001673endif #(GENERATE_COT)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001674
Juan Castilloa3487d12015-08-18 14:23:04 +01001675${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001676 $(eval ${CHECK_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001677 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
1678 ${Q}${FIPTOOL} info $@
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001679 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001680 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001681 @${ECHO_BLANK_LINE}
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001682
Yatharth Kochard1a93432015-10-12 12:33:47 +01001683ifneq (${GENERATE_COT},0)
1684fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1685 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001686 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001687 @echo "Built $@ successfully"
1688 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001689 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001690endif #(GENERATE_COT)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001691
1692${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001693 $(eval ${CHECK_FWU_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001694 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1695 ${Q}${FIPTOOL} info $@
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001696 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001697 @echo "Built $@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001698 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001699
Juan Castilloa3487d12015-08-18 14:23:04 +01001700fiptool: ${FIPTOOL}
1701fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001702fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001703
Pali Rohár54ff2132020-11-24 15:38:08 +01001704${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001705ifdef UNIX_MK
Lionel Debieve730bde82022-11-14 11:05:09 +01001706 ${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 +01001707else
1708# Clear the MAKEFLAGS as we do not want
1709# to pass the gnumake flags to nmake.
1710 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001711endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001712
Pali Rohár54ff2132020-11-24 15:38:08 +01001713romlib.bin: libraries FORCE
John Tsichritzisf6ea99b2019-05-21 15:47:37 +01001714 ${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 +01001715
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001716memmap: all
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001717ifdef UNIX_MK
1718 ${Q}PYTHONPATH=${CURDIR}/tools/memory \
1719 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1720else
1721 ${Q}set PYTHONPATH=${CURDIR}/tools/memory && \
1722 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1723endif
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001724
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001725doc:
1726 @echo " BUILD DOCUMENTATION"
1727 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1728
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301729enctool: ${ENCTOOL}
1730
Pali Rohár54ff2132020-11-24 15:38:08 +01001731${ENCTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001732 ${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 +05301733 @${ECHO_BLANK_LINE}
1734 @echo "Built $@ successfully"
1735 @${ECHO_BLANK_LINE}
1736
Joakim Bech35fab8c2014-01-23 14:51:49 +01001737cscope:
1738 @echo " CSCOPE"
1739 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1740 ${Q}cscope -b -q -k
1741
Ryan Harkin72ee3312014-01-15 16:55:07 +00001742help:
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001743 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001744 @echo ""
1745 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +00001746 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001747 @echo ""
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001748 @echo "platform = ${PLATFORM_LIST}"
1749 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001750 @echo "Please refer to the User Guide for a list of all supported options."
1751 @echo "Note that the build system doesn't track dependencies for build "
1752 @echo "options. Therefore, if any of the build options are changed "
1753 @echo "from a previous build, a clean build must be performed."
1754 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +00001755 @echo "Supported Targets:"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001756 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +00001757 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +00001758 @echo " bl2 Build the BL2 binary"
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001759 @echo " bl2u Build the BL2U binary"
Juan Castillo7d199412015-12-14 09:35:25 +00001760 @echo " bl31 Build the BL31 binary"
Soby Mathewa1941252016-05-05 14:33:33 +01001761 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1762 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castilloa3487d12015-08-18 14:23:04 +01001763 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001764 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochard1a93432015-10-12 12:33:47 +01001765 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +00001766 @echo " checkcodebase Check the coding style of the entire source tree"
1767 @echo " checkpatch Check the coding style on changes in the current"
1768 @echo " branch against BASE_COMMIT (default origin/master)"
1769 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +00001770 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +00001771 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001772 @echo " certtool Build the Certificate generation tool"
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301773 @echo " enctool Build the Firmware encryption tool"
Andreas Färberec82cfb2016-10-10 05:18:49 +02001774 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Manish Pandey3f90ad72020-01-14 11:52:05 +00001775 @echo " sp Build the Secure Partition Packages"
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001776 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathewab4181d2017-12-14 17:44:56 +00001777 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001778 @echo " memmap Print the memory map of the built binaries"
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001779 @echo " doc Build html based documentation using Sphinx tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001780 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001781 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +00001782 @echo ""
1783 @echo "example: build all targets for the FVP platform:"
1784 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001785
1786.PHONY: FORCE
1787FORCE:;