blob: 2dc2956c9ae990fca61bfcf0e52ba3586cf892c2 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001#
Chris Kayc7ea3472024-01-15 18:45:07 +00002# Copyright (c) 2013-2024, 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
Manish V Badarkhe5eeeb0c2023-11-21 14:35:13 +000011VERSION_MINOR := 10
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
Chris Kayc7ea3472024-01-15 18:45:07 +0000103CPP := ${CROSS_COMPILE}gcc -E
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100104AS := ${CROSS_COMPILE}gcc
105AR := ${CROSS_COMPILE}ar
106LINKER := ${CROSS_COMPILE}ld
107OC := ${CROSS_COMPILE}objcopy
108OD := ${CROSS_COMPILE}objdump
109NM := ${CROSS_COMPILE}nm
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100110DTC := dtc
111
112# Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH).
113ifneq ($(strip $(wildcard ${LD}.bfd) \
114 $(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),)
115LINKER := ${LINKER}.bfd
Juan Castilloa3487d12015-08-18 14:23:04 +0100116endif
117
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100118################################################################################
119# Auxiliary tools (fiptool, cert_create, etc)
120################################################################################
121
122# Variables for use with Certificate Generation Tool
123CRTTOOLPATH ?= tools/cert_create
124CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT}
125
126# Variables for use with Firmware Encryption Tool
127ENCTOOLPATH ?= tools/encrypt_fw
128ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
129
130# Variables for use with Firmware Image Package
131FIPTOOLPATH ?= tools/fiptool
132FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT}
133
134# Variables for use with sptool
135SPTOOLPATH ?= tools/sptool
136SPTOOL ?= ${SPTOOLPATH}/sptool.py
137SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py
Karl Meakinaba46182023-02-14 11:56:02 +0000138SP_DTS_LIST_FRAGMENT ?= ${BUILD_PLAT}/sp_list_fragment.dts
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100139
140# Variables for use with ROMLIB
141ROMLIBPATH ?= lib/romlib
142
143# Variable for use with Python
144PYTHON ?= python3
145
146# Variables for use with documentation build using Sphinx tool
147DOCS_PATH ?= docs
148
149################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100150# Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags
Juan Castilloa3487d12015-08-18 14:23:04 +0100151################################################################################
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100152ifeq (${ARM_ARCH_MAJOR},7)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100153 target32-directive = -target arm-none-eabi
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500154# Will set march-directive from platform configuration
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100155else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100156 target32-directive = -target armv8a-none-eabi
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100157endif #(ARM_ARCH_MAJOR)
158
159################################################################################
160# Get Architecture Feature Modifiers
161################################################################################
162arch-features = ${ARM_ARCH_FEATURE}
163
Alexei Fedorov132e6652020-12-07 16:38:53 +0000164# Set the compiler's architecture feature modifiers
165ifneq ($(arch-features), none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100166 # Strip "none+" from arch-features
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500167 arch-features := $(subst none+,,$(arch-features))
168 march-directive := $(march-directive)+$(arch-features)
Alexei Fedorov132e6652020-12-07 16:38:53 +0000169# Print features
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100170 $(info Arm Architecture Features specified: $(subst +, ,$(arch-features)))
171endif #(arch-features)
Chris Kay08fec332021-03-09 13:34:35 +0000172
originfba80d82022-01-19 16:30:14 +0000173ifneq ($(findstring clang,$(notdir $(CC))),)
174 ifneq ($(findstring armclang,$(notdir $(CC))),)
Govindraj Raja69096412023-06-01 16:29:16 -0500175 TF_CFLAGS_aarch32 := -target arm-arm-none-eabi
176 TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi
originfba80d82022-01-19 16:30:14 +0000177 LD := $(LINKER)
178 else
Govindraj Raja69096412023-06-01 16:29:16 -0500179 TF_CFLAGS_aarch32 = $(target32-directive)
180 TF_CFLAGS_aarch64 := -target aarch64-elf
originfba80d82022-01-19 16:30:14 +0000181 LD := $(shell $(CC) --print-prog-name ld.lld)
182
183 AR := $(shell $(CC) --print-prog-name llvm-ar)
184 OD := $(shell $(CC) --print-prog-name llvm-objdump)
185 OC := $(shell $(CC) --print-prog-name llvm-objcopy)
186 endif
187
188 CPP := $(CC) -E $(TF_CFLAGS_$(ARCH))
originfba80d82022-01-19 16:30:14 +0000189 AS := $(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
zelalem-aweked5f45272019-11-12 16:20:17 -0600190else ifneq ($(findstring gcc,$(notdir $(CC))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100191 ifeq ($(ENABLE_LTO),1)
192 # Enable LTO only for aarch64
193 ifeq (${ARCH},aarch64)
194 LTO_CFLAGS = -flto
195 # Use gcc as a wrapper for the ld, recommended for LTO
196 LINKER := ${CROSS_COMPILE}gcc
197 endif
zelalem-aweked5f45272019-11-12 16:20:17 -0600198 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100199 LD = $(LINKER)
dp-arm320e8442017-05-02 12:00:08 +0100200else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100201 LD = $(LINKER)
202endif #(clang)
dp-arm320e8442017-05-02 12:00:08 +0100203
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100204# Process Debug flag
205$(eval $(call add_define,DEBUG))
206ifneq (${DEBUG}, 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100207 BUILD_TYPE := debug
208 TF_CFLAGS += -g -gdwarf-4
209 ASFLAGS += -g -Wa,-gdwarf-4
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100210
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100211 # Use LOG_LEVEL_INFO by default for debug builds
212 LOG_LEVEL := 40
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100213else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100214 BUILD_TYPE := release
215 # Use LOG_LEVEL_NOTICE by default for release builds
216 LOG_LEVEL := 20
217endif #(Debug)
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100218
Peiyuan Song44f8f472020-04-25 16:53:43 +0800219# Default build string (git branch and commit)
220ifeq (${BUILD_STRING},)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100221 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
Peiyuan Song44f8f472020-04-25 16:53:43 +0800222endif
laurenw-arme954f652022-07-12 10:12:05 -0500223VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
Peiyuan Song44f8f472020-04-25 16:53:43 +0800224
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100225ifeq (${AARCH32_INSTRUCTION_SET},A32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100226 TF_CFLAGS_aarch32 += -marm
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100227else ifeq (${AARCH32_INSTRUCTION_SET},T32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100228 TF_CFLAGS_aarch32 += -mthumb
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100229else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100230 $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
231endif #(AARCH32_INSTRUCTION_SET)
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100232
Sandrine Bailleux1aa72ec2018-07-03 09:14:45 +0200233TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-arm320e8442017-05-02 12:00:08 +0100234TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathewa1941252016-05-05 14:33:33 +0100235
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500236ASFLAGS += $(march-directive)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000237
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100238##############################################################################
239# WARNINGS Configuration
240###############################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100241# General warnings
242WARNINGS := -Wall -Wmissing-include-dirs -Wunused \
Yann Gautier94a40b62021-05-20 13:18:14 +0200243 -Wdisabled-optimization -Wvla -Wshadow \
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000244 -Wredundant-decls
245# stricter warnings
246WARNINGS += -Wextra -Wno-trigraphs
247# too verbose for generic build
248WARNINGS += -Wno-missing-field-initializers \
249 -Wno-type-limits -Wno-sign-compare \
250# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
251WARNINGS += -Wno-unused-parameter
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100252
253# Additional warnings
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000254# Level 1 - infrequent warnings we should have none of
255# full -Wextra
256WARNING1 += -Wsign-compare
257WARNING1 += -Wtype-limits
258WARNING1 += -Wmissing-field-initializers
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100259
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000260# Level 2 - problematic warnings that we want
261# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
262# TODO: disable just for them and move into default build
263WARNING2 += -Wold-style-definition
264WARNING2 += -Wmissing-prototypes
265WARNING2 += -Wmissing-format-attribute
266# TF-A aims to comply with this eventually. Effort too large at present
267WARNING2 += -Wundef
Boyan Karatotev9c6ba592022-11-21 14:49:05 +0000268# currently very involved and many platforms set this off
269WARNING2 += -Wunused-const-variable=2
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100270
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000271# Level 3 - very pedantic, frequently ignored
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100272WARNING3 := -Wbad-function-cast
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000273WARNING3 += -Waggregate-return
274WARNING3 += -Wnested-externs
275WARNING3 += -Wcast-align
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100276WARNING3 += -Wcast-qual
277WARNING3 += -Wconversion
278WARNING3 += -Wpacked
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100279WARNING3 += -Wpointer-arith
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100280WARNING3 += -Wswitch-default
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100281
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000282# Setting W is quite verbose and most warnings will be pre-existing issues
283# outside of the contributor's control. Don't fail the build on them so warnings
284# can be seen and hopefully addressed
285ifdef W
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100286 ifneq (${W},0)
287 E ?= 0
288 endif
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000289endif
290
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100291ifeq (${W},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100292 WARNINGS += $(WARNING1)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100293else ifeq (${W},2)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100294 WARNINGS += $(WARNING1) $(WARNING2)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100295else ifeq (${W},3)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100296 WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
297endif #(W)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100298
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100299# Compiler specific warnings
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100300ifeq ($(findstring clang,$(notdir $(CC))),)
Justin Chadwell7a914232019-07-03 14:15:56 +0100301# not using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100302WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \
303 -Wpacked-bitfield-compat -Wshift-overflow=2 \
304 -Wlogical-op
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500305
306# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
307TF_CFLAGS += $(call cc_option, --param=min-pagesize=0)
308
Bipin Ravie53e6ae2023-09-28 13:17:24 -0500309ifeq ($(HARDEN_SLS), 1)
310 TF_CFLAGS_aarch64 += $(call cc_option, -mharden-sls=all)
311endif
312
Justin Chadwell7a914232019-07-03 14:15:56 +0100313else
314# using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100315WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
316 -Wlogical-op-parentheses
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100317endif #(Clang Warning)
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100318
Yann Gautier957c3532018-12-10 18:08:53 +0100319ifneq (${E},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100320 ERRORS := -Werror
321endif #(E)
Yann Gautier957c3532018-12-10 18:08:53 +0100322
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100323################################################################################
324# Compiler and Linker Directives
325################################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100326CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
327 $(ERRORS) $(WARNINGS)
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500328ASFLAGS += $(CPPFLAGS) \
Julius Werner53456fc2019-07-09 13:49:11 -0700329 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900330TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Holland23f5e542019-10-20 16:11:25 -0500331 -ffunction-sections -fdata-sections \
332 -ffreestanding -fno-builtin -fno-common \
333 -Os -std=gnu99
Juan Castilloa3487d12015-08-18 14:23:04 +0100334
Justin Chadwell83e04882019-08-20 11:01:52 +0100335ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100336 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
337endif #(${SANITIZE_UB},on)
338
Justin Chadwell83e04882019-08-20 11:01:52 +0100339ifeq (${SANITIZE_UB},trap)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100340 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
Justin Chadwell83e04882019-08-20 11:01:52 +0100341 -fsanitize-undefined-trap-on-error
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100342endif #(${SANITIZE_UB},trap)
Justin Chadwell83e04882019-08-20 11:01:52 +0100343
david cunado34ab6092017-11-30 21:58:01 +0000344GCC_V_OUTPUT := $(shell $(CC) -v 2>&1)
david cunado34ab6092017-11-30 21:58:01 +0000345
Marco Felsch24ad8402022-11-09 12:59:09 +0100346TF_LDFLAGS += -z noexecstack
347
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100348# LD = armlink
Varun Wadekar4d034c52019-01-11 14:47:48 -0800349ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100350 TF_LDFLAGS += --diag_error=warning --lto_level=O1
351 TF_LDFLAGS += --remove --info=unused,unusedsymbols
352 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100353
354# LD = gcc (used when GCC LTO is enabled)
zelalem-aweked5f45272019-11-12 16:20:17 -0600355else ifneq ($(findstring gcc,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100356 # Pass ld options with Wl or Xlinker switches
Chris Kayb0fe96f2024-01-16 11:53:35 +0000357 TF_LDFLAGS += $(call ld_option,-Xlinker --no-warn-rwx-segments)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100358 TF_LDFLAGS += -Wl,--fatal-warnings -O1
359 TF_LDFLAGS += -Wl,--gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000360
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100361 TF_LDFLAGS += -Wl,-z,common-page-size=4096 #Configure page size constants
362 TF_LDFLAGS += -Wl,-z,max-page-size=4096
Andrey Skvortsove2ebb722023-09-05 23:06:29 +0300363 TF_LDFLAGS += -Wl,--build-id=none
Chris Kay73b1f402022-12-22 13:26:37 +0000364
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100365 ifeq ($(ENABLE_LTO),1)
366 ifeq (${ARCH},aarch64)
367 TF_LDFLAGS += -flto -fuse-linker-plugin
368 endif
369 endif #(ENABLE_LTO)
370
zelalem-aweked5f45272019-11-12 16:20:17 -0600371# GCC automatically adds fix-cortex-a53-843419 flag when used to link
372# which breaks some builds, so disable if errata fix is not explicitly enabled
Yann Gautier3d73d162023-03-15 16:18:16 +0100373 ifeq (${ARCH},aarch64)
374 ifneq (${ERRATA_A53_843419},1)
375 TF_LDFLAGS += -mno-fix-cortex-a53-843419
376 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100377 endif
378 TF_LDFLAGS += -nostdlib
379 TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100380
381# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekar4d034c52019-01-11 14:47:48 -0800382else
Marco Felsch24ad8402022-11-09 12:59:09 +0100383# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
384# are not loaded by a elf loader.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100385 TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
386 TF_LDFLAGS += -O1
387 TF_LDFLAGS += --gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000388
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100389 TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
390 TF_LDFLAGS += -z max-page-size=4096
Andrey Skvortsove2ebb722023-09-05 23:06:29 +0300391 TF_LDFLAGS += --build-id=none
Chris Kay73b1f402022-12-22 13:26:37 +0000392
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100393# ld.lld doesn't recognize the errata flags,
Yabin Cuied7dc512023-01-19 20:06:04 +0000394# therefore don't add those in that case.
395# ld.lld reports section type mismatch warnings,
396# therefore don't add --fatal-warnings to it.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100397 ifeq ($(findstring ld.lld,$(notdir $(LD))),)
398 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
399 endif
400
401endif #(LD = armlink)
Juan Castilloa3487d12015-08-18 14:23:04 +0100402
403################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500404# Setup ARCH_MAJOR/MINOR before parsing arch_features.
405################################################################################
406ifeq (${ENABLE_RME},1)
407 ARM_ARCH_MAJOR := 8
408 ARM_ARCH_MINOR := 6
409endif
410
411################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100412# Common sources and include directories
413################################################################################
dp-arme3cc8382017-05-04 12:15:35 +0100414include lib/compiler-rt/compiler-rt.mk
Juan Castilloa3487d12015-08-18 14:23:04 +0100415
416BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100417 common/tf_log.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100418 common/${ARCH}/debug.S \
Julius Werner03020da2018-11-27 22:10:56 -0800419 drivers/console/multi_console.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100420 lib/${ARCH}/cache_helpers.S \
421 lib/${ARCH}/misc_helpers.S \
Boyan Karatotev05504ba2023-02-15 13:21:50 +0000422 lib/extensions/pmuv3/${ARCH}/pmuv3.c \
Soby Mathew2f38ce32018-02-08 17:45:12 +0000423 plat/common/plat_bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100424 plat/common/plat_log_common.c \
dp-arm230011c2017-03-07 11:02:47 +0000425 plat/common/${ARCH}/plat_common.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100426 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas0f8f9852018-05-08 10:27:10 +0100427 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000428
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100429ifeq ($(notdir $(CC)),armclang)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100430 BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100431endif
432
Justin Chadwell83e04882019-08-20 11:01:52 +0100433ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100434 BL_COMMON_SOURCES += plat/common/ubsan.c
Justin Chadwell83e04882019-08-20 11:01:52 +0100435endif
436
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200437INCLUDES += -Iinclude \
Antonio Nino Diaz8d1ade62018-12-17 17:20:57 +0000438 -Iinclude/arch/${ARCH} \
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000439 -Iinclude/lib/cpus/${ARCH} \
440 -Iinclude/lib/el3_runtime/${ARCH} \
441 ${PLAT_INCLUDES} \
442 ${SPD_INCLUDES}
443
Nishant Sharma331b5682022-08-15 16:37:07 +0100444DTC_FLAGS += -I dts -O dtb
445DTC_CPPFLAGS += -P -nostdinc $(INCLUDES) -Ifdts -undef \
446 -x assembler-with-cpp $(DEFINES)
447
Antonio Nino Diazc3a2cf22018-11-19 11:48:30 +0000448include common/backtrace/backtrace.mk
449
Juan Castilloa3487d12015-08-18 14:23:04 +0100450################################################################################
Govindraj Raja1a211292023-09-20 14:32:24 -0500451# Generic definitions
452################################################################################
453include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
454
455ifeq (${BUILD_BASE},)
456 BUILD_BASE := ./build
457endif
458BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
459
460SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
461
462# Platforms providing their own TBB makefile may override this value
463INCLUDE_TBBR_MK := 1
464
465################################################################################
466# Include SPD Makefile if one has been specified
467################################################################################
468
469ifneq (${SPD},none)
470 ifeq (${ARCH},aarch32)
471 $(error "Error: SPD is incompatible with AArch32.")
472 endif
473
474 ifdef EL3_PAYLOAD_BASE
475 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
476 $(warning "The SPD and its BL32 companion will be present but \
477 ignored.")
478 endif
479
480 ifeq (${SPD},spmd)
481 # SPMD is located in std_svc directory
482 SPD_DIR := std_svc
483
484 ifeq ($(SPMD_SPM_AT_SEL2),1)
485 CTX_INCLUDE_EL2_REGS := 1
486 ifeq ($(SPMC_AT_EL3),1)
487 $(error SPM cannot be enabled in both S-EL2 and EL3.)
488 endif
489 endif
490
491 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
492 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
493 endif
494
495 ifeq ($(TS_SP_FW_CONFIG),1)
496 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
497 endif
498
499 ifneq ($(ARM_BL2_SP_LIST_DTS),)
500 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
501 endif
502
503 ifneq ($(SP_LAYOUT_FILE),)
504 BL2_ENABLE_SP_LOAD := 1
505 endif
Govindraj Rajabad835a2023-10-31 14:48:11 -0500506
507 ifeq ($(SPMC_AT_EL3_SEL0_SP),1)
508 ifneq ($(SPMC_AT_EL3),1)
509 $(error SEL0 SP cannot be enabled without SPMC at EL3)
510 endif
511 endif
Govindraj Raja1a211292023-09-20 14:32:24 -0500512 else
513 # All other SPDs in spd directory
514 SPD_DIR := spd
515 endif #(SPD)
516
517 # We expect to locate an spd.mk under the specified SPD directory
518 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
519
520 ifeq (${SPD_MAKE},)
521 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
522 endif
523 $(info Including ${SPD_MAKE})
524 include ${SPD_MAKE}
525
526 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
527 # Makefile would set NEED_BL32 to "yes". In this case, the build system
528 # supports two mutually exclusive options:
529 # * BL32 is built from source: then BL32_SOURCES must contain the list
530 # of source files to build BL32
531 # * BL32 is a prebuilt binary: then BL32 must point to the image file
532 # that will be included in the FIP
533 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
534 # over the sources.
535endif #(SPD=none)
536
537ifeq (${ENABLE_SPMD_LP}, 1)
538ifneq (${SPD},spmd)
539 $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
540endif
541ifeq ($(SPMC_AT_EL3),1)
542 $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
543endif
544endif
545
546################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500547# Process BRANCH_PROTECTION value and set
548# Pointer Authentication and Branch Target Identification flags
549################################################################################
550ifeq (${BRANCH_PROTECTION},0)
551 # Default value turns off all types of branch protection
552 BP_OPTION := none
553else ifneq (${ARCH},aarch64)
554 $(error BRANCH_PROTECTION requires AArch64)
555else ifeq (${BRANCH_PROTECTION},1)
556 # Enables all types of branch protection features
557 BP_OPTION := standard
558 ENABLE_BTI := 1
559 ENABLE_PAUTH := 1
560else ifeq (${BRANCH_PROTECTION},2)
561 # Return address signing to its standard level
562 BP_OPTION := pac-ret
563 ENABLE_PAUTH := 1
564else ifeq (${BRANCH_PROTECTION},3)
565 # Extend the signing to include leaf functions
566 BP_OPTION := pac-ret+leaf
567 ENABLE_PAUTH := 1
568else ifeq (${BRANCH_PROTECTION},4)
569 # Turn on branch target identification mechanism
570 BP_OPTION := bti
571 ENABLE_BTI := 1
572else
573 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
574endif #(BRANCH_PROTECTION)
575
576ifeq ($(ENABLE_PAUTH),1)
577 CTX_INCLUDE_PAUTH_REGS := 1
578endif
579ifneq (${BP_OPTION},none)
580 TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
581endif #(BP_OPTION)
582
583# Pointer Authentication sources
584ifeq (${ENABLE_PAUTH}, 1)
585# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
586# Pauth support. As it's not secure, it must be reimplemented for real platforms
587 BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
588endif
589
Govindraj Raja1a211292023-09-20 14:32:24 -0500590################################################################################
591# Include the platform specific Makefile after the SPD Makefile (the platform
592# makefile may use all previous definitions in this file)
593################################################################################
594include ${PLAT_MAKEFILE_FULL}
595
596################################################################################
597# Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from
598# platform.
599################################################################################
600include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
601
Govindraj Raja0386e312023-08-17 10:41:48 -0500602####################################################
603# Enable required options for Memory Stack Tagging.
604####################################################
605
606# Currently, these options are enabled only for clang and armclang compiler.
607ifeq (${SUPPORT_STACK_MEMTAG},yes)
608 ifdef mem_tag_arch_support
609 # Check for armclang and clang compilers
610 ifneq ( ,$(filter $(notdir $(CC)),armclang clang))
611 # Add "memtag" architecture feature modifier if not specified
612 ifeq ( ,$(findstring memtag,$(arch-features)))
613 arch-features := $(arch-features)+memtag
614 endif # memtag
615 ifeq ($(notdir $(CC)),armclang)
616 TF_CFLAGS += -mmemtag-stack
617 else ifeq ($(notdir $(CC)),clang)
618 TF_CFLAGS += -fsanitize=memtag
619 endif # armclang
620 endif
621 else
622 $(error "Error: stack memory tagging is not supported for \
623 architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
624 endif #(mem_tag_arch_support)
625endif #(SUPPORT_STACK_MEMTAG)
626
627################################################################################
628# RME dependent flags configuration, Enable optional features for RME.
629################################################################################
630# FEAT_RME
631ifeq (${ENABLE_RME},1)
Govindraj Raja60f52662023-10-12 16:57:46 -0500632 # RME doesn't support BRBE
633 ENABLE_BRBE_FOR_NS := 0
634
Govindraj Raja0386e312023-08-17 10:41:48 -0500635 # RME doesn't support PIE
636 ifneq (${ENABLE_PIE},0)
637 $(error ENABLE_RME does not support PIE)
638 endif
639
640 # RME doesn't support BRBE
641 ifneq (${ENABLE_BRBE_FOR_NS},0)
642 $(error ENABLE_RME does not support BRBE.)
643 endif
644
645 # RME requires AARCH64
646 ifneq (${ARCH},aarch64)
647 $(error ENABLE_RME requires AArch64)
648 endif
649
650 # RME requires el2 context to be saved for now.
651 CTX_INCLUDE_EL2_REGS := 1
652 CTX_INCLUDE_AARCH32_REGS := 0
653 CTX_INCLUDE_PAUTH_REGS := 1
654
655 # RME enables CSV2_2 extension by default.
656 ENABLE_FEAT_CSV2_2 = 1
657endif #(FEAT_RME)
658
659################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500660# Include rmmd Makefile if RME is enabled
661################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500662ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100663 ifneq (${ARCH},aarch64)
664 $(error ENABLE_RME requires AArch64)
665 endif
666 ifeq ($(SPMC_AT_EL3),1)
667 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
668 endif
669
670 ifneq (${SPD}, none)
671 ifneq (${SPD}, spmd)
672 $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
673 endif
674 endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500675include services/std_svc/rmmd/rmmd.mk
676$(warning "RME is an experimental feature")
677endif
678
Govindraj Raja1a211292023-09-20 14:32:24 -0500679ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
680 ifeq (${SPD},none)
681 ifeq (${ENABLE_RME},0)
682 $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
683 or RME is enabled)
684 endif
685 endif
686endif
Jon Medhurst66573cb2014-02-13 15:19:28 +0000687
Govindraj Raja69096412023-06-01 16:29:16 -0500688################################################################################
689# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
690# up with appropriate march values for compiler.
691################################################################################
692include ${MAKE_HELPERS_DIRECTORY}march.mk
693
694TF_CFLAGS += $(march-directive)
695
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600696# This internal flag is common option which is set to 1 for scenarios
697# when the BL2 is running in EL3 level. This occurs in two scenarios -
698# 4 world system running BL2 at EL3 and two world system without BL1 running
699# BL2 in EL3
700
701ifeq (${RESET_TO_BL2},1)
702 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100703 ifeq (${ENABLE_RME},1)
704 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
705 supported at the moment.)
706 endif
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600707else ifeq (${ENABLE_RME},1)
708 BL2_RUNS_AT_EL3 := 1
709else
710 BL2_RUNS_AT_EL3 := 0
711endif
712
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100713# This internal flag is set to 1 when Firmware First handling of External aborts
714# is required by lowe ELs. Currently only NS requires this support.
715ifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
716 FFH_SUPPORT := 1
717else
718 FFH_SUPPORT := 0
719endif
720
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900721$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
722
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100723ifeq (${ARM_ARCH_MAJOR},7)
724include make_helpers/armv7-a-cpus.mk
725endif
726
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900727PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
728ifneq ($(PIE_FOUND),)
729 TF_CFLAGS += -fno-PIE
Samuel Holland9286c022022-04-08 21:56:02 -0500730ifneq ($(findstring gcc,$(notdir $(LD))),)
731 TF_LDFLAGS += -no-pie
732endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100733endif #(PIE_FOUND)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900734
735ifneq ($(findstring gcc,$(notdir $(LD))),)
736 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100737else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900738 PIE_LDFLAGS += -pie --no-dynamic-linker
739endif
740
741ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100742 ifeq ($(RESET_TO_BL2),1)
743 ifneq ($(BL2_IN_XIP_MEM),1)
744 BL2_CPPFLAGS += -fpie
745 BL2_CFLAGS += -fpie
746 BL2_LDFLAGS += $(PIE_LDFLAGS)
747 endif #(BL2_IN_XIP_MEM)
748 endif #(RESET_TO_BL2)
Chris Kay13886c82023-02-02 14:39:03 +0000749 BL31_CPPFLAGS += -fpie
750 BL31_CFLAGS += -fpie
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900751 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay13886c82023-02-02 14:39:03 +0000752
753 BL32_CPPFLAGS += -fpie
Masahiro Yamadade634f82020-01-17 13:45:14 +0900754 BL32_CFLAGS += -fpie
755 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100756endif #(ENABLE_PIE)
Soby Mathew078f1a42018-08-28 11:13:55 +0100757
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000758BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
759BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
760BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
761
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900762BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600763ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100764 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900765else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100766 BL2_CPPFLAGS += -DIMAGE_AT_EL1
767endif #(RESET_TO_BL2)
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000768
769ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100770 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
771 BL31_CPPFLAGS += -DIMAGE_AT_EL3
772 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000773else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100774 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900775endif
776
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000777# Include the CPU specific operations makefile, which provides default
778# values for all CPU errata workarounds and CPU specific optimisations.
779# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100780include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100781
dp-armcdd03cb2017-02-15 11:07:55 +0000782################################################################################
783# Build `AARCH32_SP` as BL32 image for AArch32
784################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100785ifeq (${ARCH},aarch32)
786 NEED_BL32 := yes
dp-armcdd03cb2017-02-15 11:07:55 +0000787
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100788 ifneq (${AARCH32_SP},none)
789 # We expect to locate an sp.mk under the specified AARCH32_SP directory
790 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-armcdd03cb2017-02-15 11:07:55 +0000791
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100792 ifeq (${AARCH32_SP_MAKE},)
793 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
794 endif
Juan Pablo Conde6aba3b12023-08-09 13:19:21 -0500795 $(info Including ${AARCH32_SP_MAKE})
796 include ${AARCH32_SP_MAKE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100797 endif
798endif #(ARCH=aarch32)
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800799
800################################################################################
801# Include libc if not overridden
802################################################################################
803ifeq (${OVERRIDE_LIBC},0)
804include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000805endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100806
807################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100808# Check incompatible options and dependencies
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000809################################################################################
810
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100811# USE_DEBUGFS experimental feature recommended only in debug builds
812ifeq (${USE_DEBUGFS},1)
813 ifeq (${DEBUG},1)
814 $(warning DEBUGFS experimental feature is enabled.)
815 else
816 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800817 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100818endif #(USE_DEBUGFS)
819
820# USE_SPINLOCK_CAS requires AArch64 build
821ifeq (${USE_SPINLOCK_CAS},1)
822 ifneq (${ARCH},aarch64)
823 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800824 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100825endif #(USE_SPINLOCK_CAS)
826
827# The cert_create tool cannot generate certificates individually, so we use the
828# target 'certificates' to create them all
829ifneq (${GENERATE_COT},0)
830 FIP_DEPS += certificates
831 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000832endif
833
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100834ifneq (${DECRYPTION_SUPPORT},none)
835 ENC_ARGS += -f ${FW_ENC_STATUS}
836 ENC_ARGS += -k ${ENC_KEY}
837 ENC_ARGS += -n ${ENC_NONCE}
838 FIP_DEPS += enctool
839 FWU_FIP_DEPS += enctool
840endif #(DECRYPTION_SUPPORT)
841
842ifdef EL3_PAYLOAD_BASE
843 ifdef PRELOADED_BL33_BASE
844 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
845 incompatible build options. EL3_PAYLOAD_BASE has priority.")
846 endif
847 ifneq (${GENERATE_COT},0)
848 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
849 build options.")
850 endif
851 ifneq (${TRUSTED_BOARD_BOOT},0)
852 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
853 incompatible \ build options.")
854 endif
855endif #(EL3_PAYLOAD_BASE)
856
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000857ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100858 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000859 $(warning "BL33 image is not needed when option \
860 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100861 endif
862 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100863 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100864 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
865 endif
866endif #(NEED_BL33)
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000867
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000868# When building for systems with hardware-assisted coherency, there's no need to
869# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
870ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100871 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000872endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100873
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600874#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
875ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100876 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000877endif
878
Manish Pandeyd419e222023-02-13 12:39:17 +0000879# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100880ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100881 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100882 and HANDLE_EA_EL3_FIRST_NS instead")
Manish Pandeyd419e222023-02-13 12:39:17 +0000883endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100884
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100885
Manish Pandeyd419e222023-02-13 12:39:17 +0000886# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000887ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100888 ifeq ($(ENABLE_FEAT_RAS),0)
889 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
890 endif
891endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000892
Roberto Vargas025946a2018-09-24 17:20:48 +0100893# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100894ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100895 ifeq (${TRUSTED_BOARD_BOOT}, 0)
896 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
897 to be set.")
898 endif
899endif #(DYN_DISABLE_AUTH)
Soby Mathew9fe88042018-03-26 12:43:37 +0100900
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100901ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
902# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100903 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100904else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
905# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100906 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100907else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
908# Support hash calculation only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100909 CRYPTO_SUPPORT := 2
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100910else ifeq (${TRUSTED_BOARD_BOOT},1)
911# Support authentication verification only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100912 CRYPTO_SUPPORT := 1
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000913else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100914 CRYPTO_SUPPORT := 0
915endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000916
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +0100917# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
918ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100919 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +0100920endif
921
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000922# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100923# registers associated to it are also saved and restored.
924# 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 +0000925ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100926 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
927 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
928 endif
929endif #(ENABLE_PAUTH)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100930
931ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100932 ifneq (${ARCH},aarch64)
933 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
934 endif
935endif #(CTX_INCLUDE_PAUTH_REGS)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000936
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100937ifeq ($(CTX_INCLUDE_MTE_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100938 ifneq (${ARCH},aarch64)
939 $(error CTX_INCLUDE_MTE_REGS requires AArch64)
940 endif
941endif #(CTX_INCLUDE_MTE_REGS)
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100942
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100943ifeq ($(PSA_FWU_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100944 $(info PSA_FWU_SUPPORT is an experimental feature)
945endif #(PSA_FWU_SUPPORT)
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100946
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000947ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100948 $(info FEATURE_DETECTION is an experimental feature)
949endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000950
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000951ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100952 ifeq (${ENABLE_SME_FOR_NS}, 0)
953 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
954 to be set")
955 $(warning "Forced ENABLE_SME_FOR_NS=1")
956 override ENABLE_SME_FOR_NS := 1
957 endif
958endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000959
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000960ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100961 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
962 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
963 library v2")
964 endif
965endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000966
Sumit Garg392e4df2019-11-15 10:43:00 +0530967ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100968 ifeq (${TRUSTED_BOARD_BOOT}, 0)
969 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
970 to be set)
971 endif
972endif #(DECRYPTION_SUPPORT)
Sumit Garg392e4df2019-11-15 10:43:00 +0530973
johpow0181865962022-01-28 17:06:20 -0600974# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -0500975ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -0600976
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100977 # SME/SVE only supported on AArch64
978 ifneq (${ENABLE_SME_FOR_NS},0)
979 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
980 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000981
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100982 ifeq (${ENABLE_SVE_FOR_NS},1)
983 # Warning instead of error due to CI dependency on this
984 $(error "ENABLE_SVE_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 # BRBE is not supported in AArch32
988 ifeq (${ENABLE_BRBE_FOR_NS},1)
989 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
990 endif
johpow0181865962022-01-28 17:06:20 -0600991
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100992 # FEAT_RNG_TRAP is not supported in AArch32
993 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
994 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
995 endif
996endif #(ARCH=aarch32)
johpow019baade32021-07-08 14:14:00 -0500997
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000998ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100999 ifeq (${ENABLE_SVE_FOR_NS},0)
1000 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
1001 endif
1002endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +00001003
johpow019baade32021-07-08 14:14:00 -05001004# Secure SME/SVE requires the non-secure component as well
1005ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001006 ifeq (${ENABLE_SME_FOR_NS},0)
1007 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
1008 endif
1009 ifeq (${ENABLE_SVE_FOR_SWD},0)
1010 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
1011 endif
1012endif #(ENABLE_SME_FOR_SWD)
1013
johpow019baade32021-07-08 14:14:00 -05001014ifeq (${ENABLE_SVE_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001015 ifeq (${ENABLE_SVE_FOR_NS},0)
1016 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
1017 endif
1018endif #(ENABLE_SVE_FOR_SWD)
johpow019baade32021-07-08 14:14:00 -05001019
1020# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
1021# its own context management including FPU registers.
1022ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001023 ifneq (${ENABLE_SME_FOR_NS},0)
1024 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1025 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001026
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001027 ifeq (${ENABLE_SVE_FOR_NS},1)
1028 # Warning instead of error due to CI dependency on this
1029 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1030 $(warning "Forced ENABLE_SVE_FOR_NS=0")
1031 override ENABLE_SVE_FOR_NS := 0
1032 endif
1033endif #(CTX_INCLUDE_FPREGS)
johpow019baade32021-07-08 14:14:00 -05001034
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001035ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001036 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001037endif
1038
Raymond Mao98983392023-07-25 07:53:35 -07001039ifeq (${TRANSFER_LIST},1)
1040 $(info TRANSFER_LIST is an experimental feature)
1041endif
1042
Chris Kayd02c2312022-09-29 16:21:24 +01001043ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001044 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1045 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1046 endif
Chris Kayd02c2312022-09-29 16:21:24 +01001047endif
1048
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001049# Determine if FEAT_RNG is supported
1050ENABLE_FEAT_RNG = $(if $(findstring rng,${arch-features}),1,0)
1051
1052# Determine if FEAT_SB is supported
1053ENABLE_FEAT_SB = $(if $(findstring sb,${arch-features}),1,0)
1054
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001055ifeq ($(PSA_CRYPTO),1)
1056 $(info PSA_CRYPTO is an experimental feature)
1057endif
1058
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001059################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001060# Process platform overrideable behaviour
1061################################################################################
1062
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001063ifdef BL1_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001064 NEED_BL1 := yes
1065endif #(BL1_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001066
Jon Medhurst66573cb2014-02-13 15:19:28 +00001067ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001068 NEED_BL2 := yes
1069
1070 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1071 # Certificate generation tools. This flag can be overridden by the platform.
1072 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001073 # If booting an EL3 payload there is no need for a BL33 image
1074 # in the FIP file.
1075 NEED_BL33 := no
1076 else
1077 ifdef PRELOADED_BL33_BASE
1078 # If booting a BL33 preloaded image there is no need of
1079 # another one in the FIP file.
1080 NEED_BL33 := no
1081 else
1082 NEED_BL33 ?= yes
1083 endif
1084 endif
1085endif #(BL2_SOURCES)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001086
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001087ifdef BL2U_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001088 NEED_BL2U := yes
1089endif #(BL2U_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001090
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001091# If SCP_BL2 is given, we always want FIP to include it.
1092ifdef SCP_BL2
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001093 NEED_SCP_BL2 := yes
1094endif #(SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001095
Soby Mathewbf169232017-11-14 14:10:10 +00001096# For AArch32, BL31 is not currently supported.
1097ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001098 ifdef BL31_SOURCES
1099 # When booting an EL3 payload, there is no need to compile the BL31
1100 # image nor put it in the FIP.
1101 ifndef EL3_PAYLOAD_BASE
1102 NEED_BL31 := yes
1103 endif
1104 endif
1105endif #(ARCH=aarch64)
Soby Mathewbf169232017-11-14 14:10:10 +00001106
Juan Castilloa3487d12015-08-18 14:23:04 +01001107# Process TBB related flags
1108ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001109 # Common cert_create options
1110 ifneq (${CREATE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001111 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001112 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001113 ifneq (${SAVE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001114 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001115 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001116 endif
1117 endif
1118 # Include TBBR makefile (unless the platform indicates otherwise)
1119 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castilloa3487d12015-08-18 14:23:04 +01001120 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001121 endif
1122endif #(GENERATE_COT)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001123
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001124ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001125 FIP_ARGS += --align ${FIP_ALIGN}
1126endif #(FIP_ALIGN)
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001127
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001128ifdef FDT_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001129 NEED_FDT := yes
1130endif #(FDT_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001131
Juan Castilloa3487d12015-08-18 14:23:04 +01001132################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +08001133# Include libraries' Makefile that are used in all BL
1134################################################################################
1135
1136include lib/stack_protector/stack_protector.mk
1137
1138################################################################################
Soby Mathew574e01e2017-02-14 10:05:07 +00001139# Include BL specific makefiles
1140################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001141
1142ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001143include bl1/bl1.mk
1144endif
1145
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001146ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001147include bl2/bl2.mk
1148endif
1149
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001150ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001151include bl2u/bl2u.mk
1152endif
1153
Soby Mathewbf169232017-11-14 14:10:10 +00001154ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001155include bl31/bl31.mk
1156endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001157
Soby Mathew574e01e2017-02-14 10:05:07 +00001158################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001159# Build options checks
1160################################################################################
1161
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001162# Boolean_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001163$(eval $(call assert_booleans,\
1164 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001165 ALLOW_RO_XLAT_TABLES \
1166 BL2_ENABLE_SP_LOAD \
1167 COLD_BOOT_SINGLE_CPU \
1168 CREATE_KEYS \
1169 CTX_INCLUDE_AARCH32_REGS \
1170 CTX_INCLUDE_FPREGS \
1171 CTX_INCLUDE_EL2_REGS \
Arvind Ram Prakash4851b492023-10-06 14:35:21 -05001172 CTX_INCLUDE_MPAM_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001173 DEBUG \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001174 DYN_DISABLE_AUTH \
1175 EL3_EXCEPTION_HANDLING \
1176 ENABLE_AMU_AUXILIARY_COUNTERS \
1177 ENABLE_AMU_FCONF \
1178 AMU_RESTRICT_COUNTERS \
1179 ENABLE_ASSERTIONS \
1180 ENABLE_FEAT_SB \
1181 ENABLE_PIE \
1182 ENABLE_PMF \
1183 ENABLE_PSCI_STAT \
1184 ENABLE_RUNTIME_INSTRUMENTATION \
1185 ENABLE_SME_FOR_SWD \
1186 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001187 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001188 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001189 ERROR_DEPRECATED \
1190 FAULT_INJECTION_SUPPORT \
1191 GENERATE_COT \
1192 GICV2_G0_FOR_EL3 \
1193 HANDLE_EA_EL3_FIRST_NS \
Bipin Ravie53e6ae2023-09-28 13:17:24 -05001194 HARDEN_SLS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001195 HW_ASSISTED_COHERENCY \
1196 MEASURED_BOOT \
1197 DRTM_SUPPORT \
1198 NS_TIMER_SWITCH \
1199 OVERRIDE_LIBC \
1200 PL011_GENERIC_UART \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001201 PROGRAMMABLE_RESET_ADDRESS \
1202 PSCI_EXTENDED_STATE_ID \
1203 PSCI_OS_INIT_MODE \
1204 RESET_TO_BL31 \
1205 SAVE_KEYS \
1206 SEPARATE_CODE_AND_RODATA \
1207 SEPARATE_BL2_NOLOAD_REGION \
1208 SEPARATE_NOBITS_REGION \
1209 SPIN_ON_BL1_EXIT \
1210 SPM_MM \
1211 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001212 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001213 SPMD_SPM_AT_SEL2 \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001214 ENABLE_SPMD_LP \
Raymond Mao98983392023-07-25 07:53:35 -07001215 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001216 TRUSTED_BOARD_BOOT \
1217 USE_COHERENT_MEM \
1218 USE_DEBUGFS \
1219 ARM_IO_IN_DTB \
1220 SDEI_IN_FCONF \
1221 SEC_INT_DESC_IN_FCONF \
1222 USE_ROMLIB \
1223 USE_TBBR_DEFS \
1224 WARMBOOT_ENABLE_DCACHE_EARLY \
1225 RESET_TO_BL2 \
1226 BL2_IN_XIP_MEM \
1227 BL2_INV_DCACHE \
1228 USE_SPINLOCK_CAS \
1229 ENCRYPT_BL31 \
1230 ENCRYPT_BL32 \
1231 ERRATA_SPECULATIVE_AT \
1232 RAS_TRAP_NS_ERR_REC_ACCESS \
1233 COT_DESC_IN_DTB \
1234 USE_SP804_TIMER \
1235 PSA_FWU_SUPPORT \
1236 ENABLE_MPMM \
1237 ENABLE_MPMM_FCONF \
1238 FEATURE_DETECTION \
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +01001239 TRNG_SUPPORT \
Sona Mathew7fe03522022-11-18 18:05:38 -06001240 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001241 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001242 CONDITIONAL_CMO \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001243 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001244 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash8bd27c92023-08-15 16:28:06 -05001245 INIT_UNUSED_NS_EL2 \
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001246 PLATFORM_REPORT_CTX_MEM_USE \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001247)))
Dan Handley81be1002015-03-27 17:44:35 +00001248
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001249# Numeric_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001250$(eval $(call assert_numerics,\
1251 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001252 ARM_ARCH_MAJOR \
1253 ARM_ARCH_MINOR \
1254 BRANCH_PROTECTION \
1255 CTX_INCLUDE_PAUTH_REGS \
1256 CTX_INCLUDE_MTE_REGS \
1257 CTX_INCLUDE_NEVE_REGS \
1258 CRYPTO_SUPPORT \
Boyan Karatotev677ed8a2023-02-16 09:45:29 +00001259 DISABLE_MTPMU \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001260 ENABLE_BRBE_FOR_NS \
1261 ENABLE_TRBE_FOR_NS \
1262 ENABLE_BTI \
1263 ENABLE_PAUTH \
1264 ENABLE_FEAT_AMU \
1265 ENABLE_FEAT_AMUv1p1 \
1266 ENABLE_FEAT_CSV2_2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001267 ENABLE_FEAT_DIT \
1268 ENABLE_FEAT_ECV \
1269 ENABLE_FEAT_FGT \
1270 ENABLE_FEAT_HCX \
1271 ENABLE_FEAT_PAN \
1272 ENABLE_FEAT_RNG \
1273 ENABLE_FEAT_RNG_TRAP \
1274 ENABLE_FEAT_SEL2 \
1275 ENABLE_FEAT_TCR2 \
1276 ENABLE_FEAT_S2PIE \
1277 ENABLE_FEAT_S1PIE \
1278 ENABLE_FEAT_S2POE \
1279 ENABLE_FEAT_S1POE \
1280 ENABLE_FEAT_GCS \
1281 ENABLE_FEAT_VHE \
Maksims Svecovsdf4ad842023-03-24 13:05:09 +00001282 ENABLE_FEAT_MTE_PERM \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001283 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001284 ENABLE_RME \
1285 ENABLE_SPE_FOR_NS \
1286 ENABLE_SYS_REG_TRACE_FOR_NS \
1287 ENABLE_SME_FOR_NS \
1288 ENABLE_SME2_FOR_NS \
1289 ENABLE_SVE_FOR_NS \
1290 ENABLE_TRF_FOR_NS \
1291 FW_ENC_STATUS \
1292 NR_OF_FW_BANKS \
1293 NR_OF_IMAGES_IN_FW_BANK \
1294 TWED_DELAY \
1295 ENABLE_FEAT_TWED \
1296 SVE_VECTOR_LEN \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001297 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001298)))
Jeenu Viswambharanfca76802017-01-16 16:52:35 +00001299
Justin Chadwellf9b32c12019-07-29 17:13:10 +01001300ifdef KEY_SIZE
1301 $(eval $(call assert_numeric,KEY_SIZE))
1302endif
1303
Justin Chadwell83e04882019-08-20 11:01:52 +01001304ifeq ($(filter $(SANITIZE_UB), on off trap),)
1305 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1306endif
1307
Juan Castilloa3487d12015-08-18 14:23:04 +01001308################################################################################
1309# Add definitions to the cpp preprocessor based on the current build options.
1310# This is done after including the platform specific makefile to allow the
1311# platform to overwrite the default options
1312################################################################################
Jeenu Viswambharand1b60152014-05-12 15:28:47 +01001313
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001314$(eval $(call add_defines,\
1315 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001316 ALLOW_RO_XLAT_TABLES \
1317 ARM_ARCH_MAJOR \
1318 ARM_ARCH_MINOR \
1319 BL2_ENABLE_SP_LOAD \
1320 COLD_BOOT_SINGLE_CPU \
1321 CTX_INCLUDE_AARCH32_REGS \
1322 CTX_INCLUDE_FPREGS \
1323 CTX_INCLUDE_PAUTH_REGS \
Arvind Ram Prakash4851b492023-10-06 14:35:21 -05001324 CTX_INCLUDE_MPAM_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001325 EL3_EXCEPTION_HANDLING \
1326 CTX_INCLUDE_MTE_REGS \
1327 CTX_INCLUDE_EL2_REGS \
1328 CTX_INCLUDE_NEVE_REGS \
1329 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1330 DISABLE_MTPMU \
1331 ENABLE_FEAT_AMU \
1332 ENABLE_AMU_AUXILIARY_COUNTERS \
1333 ENABLE_AMU_FCONF \
1334 AMU_RESTRICT_COUNTERS \
1335 ENABLE_ASSERTIONS \
1336 ENABLE_BTI \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001337 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001338 ENABLE_PAUTH \
1339 ENABLE_PIE \
1340 ENABLE_PMF \
1341 ENABLE_PSCI_STAT \
1342 ENABLE_RME \
1343 ENABLE_RUNTIME_INSTRUMENTATION \
1344 ENABLE_SME_FOR_NS \
1345 ENABLE_SME2_FOR_NS \
1346 ENABLE_SME_FOR_SWD \
1347 ENABLE_SPE_FOR_NS \
1348 ENABLE_SVE_FOR_NS \
1349 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001350 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001351 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001352 ENCRYPT_BL31 \
1353 ENCRYPT_BL32 \
1354 ERROR_DEPRECATED \
1355 FAULT_INJECTION_SUPPORT \
1356 GICV2_G0_FOR_EL3 \
1357 HANDLE_EA_EL3_FIRST_NS \
1358 HW_ASSISTED_COHERENCY \
1359 LOG_LEVEL \
1360 MEASURED_BOOT \
1361 DRTM_SUPPORT \
1362 NS_TIMER_SWITCH \
1363 PL011_GENERIC_UART \
1364 PLAT_${PLAT} \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001365 PROGRAMMABLE_RESET_ADDRESS \
1366 PSCI_EXTENDED_STATE_ID \
1367 PSCI_OS_INIT_MODE \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001368 RESET_TO_BL31 \
1369 SEPARATE_CODE_AND_RODATA \
1370 SEPARATE_BL2_NOLOAD_REGION \
1371 SEPARATE_NOBITS_REGION \
1372 RECLAIM_INIT_CODE \
1373 SPD_${SPD} \
1374 SPIN_ON_BL1_EXIT \
1375 SPM_MM \
1376 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001377 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001378 SPMD_SPM_AT_SEL2 \
Raymond Mao98983392023-07-25 07:53:35 -07001379 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001380 TRUSTED_BOARD_BOOT \
1381 CRYPTO_SUPPORT \
1382 TRNG_SUPPORT \
1383 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001384 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001385 USE_COHERENT_MEM \
1386 USE_DEBUGFS \
1387 ARM_IO_IN_DTB \
1388 SDEI_IN_FCONF \
1389 SEC_INT_DESC_IN_FCONF \
1390 USE_ROMLIB \
1391 USE_TBBR_DEFS \
1392 WARMBOOT_ENABLE_DCACHE_EARLY \
1393 RESET_TO_BL2 \
1394 BL2_RUNS_AT_EL3 \
1395 BL2_IN_XIP_MEM \
1396 BL2_INV_DCACHE \
1397 USE_SPINLOCK_CAS \
1398 ERRATA_SPECULATIVE_AT \
1399 RAS_TRAP_NS_ERR_REC_ACCESS \
1400 COT_DESC_IN_DTB \
1401 USE_SP804_TIMER \
1402 ENABLE_FEAT_RNG \
1403 ENABLE_FEAT_RNG_TRAP \
1404 ENABLE_FEAT_SB \
1405 ENABLE_FEAT_DIT \
1406 NR_OF_FW_BANKS \
1407 NR_OF_IMAGES_IN_FW_BANK \
1408 PSA_FWU_SUPPORT \
1409 ENABLE_BRBE_FOR_NS \
1410 ENABLE_TRBE_FOR_NS \
1411 ENABLE_SYS_REG_TRACE_FOR_NS \
1412 ENABLE_TRF_FOR_NS \
1413 ENABLE_FEAT_HCX \
1414 ENABLE_MPMM \
1415 ENABLE_MPMM_FCONF \
1416 ENABLE_FEAT_FGT \
1417 ENABLE_FEAT_ECV \
1418 ENABLE_FEAT_AMUv1p1 \
1419 ENABLE_FEAT_SEL2 \
1420 ENABLE_FEAT_VHE \
1421 ENABLE_FEAT_CSV2_2 \
1422 ENABLE_FEAT_PAN \
1423 ENABLE_FEAT_TCR2 \
1424 ENABLE_FEAT_S2PIE \
1425 ENABLE_FEAT_S1PIE \
1426 ENABLE_FEAT_S2POE \
1427 ENABLE_FEAT_S1POE \
1428 ENABLE_FEAT_GCS \
Maksims Svecovsdf4ad842023-03-24 13:05:09 +00001429 ENABLE_FEAT_MTE_PERM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001430 FEATURE_DETECTION \
1431 TWED_DELAY \
1432 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001433 CONDITIONAL_CMO \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001434 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidanand23c2fe22023-04-26 15:57:30 +01001435 SVE_VECTOR_LEN \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001436 ENABLE_SPMD_LP \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001437 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001438 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash8bd27c92023-08-15 16:28:06 -05001439 INIT_UNUSED_NS_EL2 \
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001440 PLATFORM_REPORT_CTX_MEM_USE \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001441)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001442
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001443ifeq (${PLATFORM_REPORT_CTX_MEM_USE}, 1)
1444ifeq (${DEBUG}, 0)
1445 $(warning "PLATFORM_REPORT_CTX_MEM_USE can be applied when DEBUG=1 only")
1446 override PLATFORM_REPORT_CTX_MEM_USE := 0
1447endif
1448endif
1449
Justin Chadwell83e04882019-08-20 11:01:52 +01001450ifeq (${SANITIZE_UB},trap)
1451 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001452endif #(SANITIZE_UB)
Justin Chadwell83e04882019-08-20 11:01:52 +01001453
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001454# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1455ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001456 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1457else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001458# Define the PRELOADED_BL33_BASE flag only if it is provided and
1459# EL3_PAYLOAD_BASE is not defined, as it has priority.
1460 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001461 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001462 endif
1463endif #(EL3_PAYLOAD_BASE)
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001464
Soby Mathew9fe88042018-03-26 12:43:37 +01001465# Define the DYN_DISABLE_AUTH flag only if set.
1466ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001467 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew9fe88042018-03-26 12:43:37 +01001468endif
1469
Varun Wadekar4d034c52019-01-11 14:47:48 -08001470ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001471 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekar4d034c52019-01-11 14:47:48 -08001472endif
1473
Manish Pandey3f90ad72020-01-14 11:52:05 +00001474# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001475ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001476ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001477 -include $(BUILD_PLAT)/sp_gen.mk
1478 FIP_DEPS += sp
1479 CRT_DEPS += sp
1480 NEED_SP_PKG := yes
Manish Pandey3f90ad72020-01-14 11:52:05 +00001481else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001482 ifeq (${SPMD_SPM_AT_SEL2},1)
1483 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1484 endif
1485endif #(SP_LAYOUT_FILE)
1486endif #(SPD)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001487
Juan Castilloa3487d12015-08-18 14:23:04 +01001488################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001489# Build targets
1490################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001491
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301492.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 +01001493.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001494
Juan Castilloa3487d12015-08-18 14:23:04 +01001495all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001496
Juan Castilloa3487d12015-08-18 14:23:04 +01001497msg_start:
1498 @echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001499
Soby Mathew18a62042015-10-26 14:29:21 +00001500ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001501# Check if deprecated declarations and cpp warnings should be treated as error or not.
Varun Wadekar4d034c52019-01-11 14:47:48 -08001502ifneq ($(findstring clang,$(notdir $(CC))),)
1503 CPPFLAGS += -Wno-error=deprecated-declarations
1504else
Dan Handley6fa89a22018-02-27 16:03:58 +00001505 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001506endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001507endif #(!ERROR_DEPRECATED)
Soby Mathew18a62042015-10-26 14:29:21 +00001508
Roberto Vargase92111a2018-05-22 16:05:42 +01001509$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001510$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001511
Juan Castilloa3487d12015-08-18 14:23:04 +01001512# Expand build macros for the different images
1513ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001514BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001515$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001516endif #(NEED_BL1)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001517
Juan Castilloa3487d12015-08-18 14:23:04 +01001518ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001519
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001520ifeq (${RESET_TO_BL2}, 0)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001521FIP_BL2_ARGS := tb-fw
1522endif
1523
Chris Kayfb3b0512021-09-28 15:44:37 +01001524BL2_SOURCES := $(sort ${BL2_SOURCES})
1525
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001526$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001527 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001528
1529endif #(NEED_BL2)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001530
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001531ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001532$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001533endif #(NEED_SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001534
Juan Castilloa3487d12015-08-18 14:23:04 +01001535ifeq (${NEED_BL31},yes)
1536BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001537# Sort BL31 source files to remove duplicates
1538BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301539ifneq (${DECRYPTION_SUPPORT},none)
1540$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001541 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301542else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001543$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001544 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001545endif #(DECRYPTION_SUPPORT)
1546endif #(NEED_BL31)
Juan Castillo379954c2014-11-04 17:36:40 +00001547
Juan Castillo671b8db2015-11-12 10:59:26 +00001548# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001549# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001550# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001551ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001552# Sort BL32 source files to remove duplicates
1553BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001554BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1555
Sumit Gargeec52442019-11-14 16:33:45 +05301556ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001557$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301558 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1559else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001560$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001561 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001562endif #(DECRYPTION_SUPPORT)
1563endif #(NEED_BL32)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001564
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001565# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1566# needs to be built from RMM_SOURCES.
1567ifeq (${NEED_RMM},yes)
1568# Sort RMM source files to remove duplicates
1569RMM_SOURCES := $(sort ${RMM_SOURCES})
1570BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1571
1572$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001573 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1574endif #(NEED_RMM)
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001575
Juan Castilloa3487d12015-08-18 14:23:04 +01001576# Add the BL33 image if required by the platform
1577ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001578$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001579endif #(NEED_BL33)
Juan Castillo9c25a402015-01-13 12:21:04 +00001580
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001581ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001582$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001583 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001584endif #(NEED_BL2U)
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001585
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001586# Expand build macros for the different images
1587ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001588 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001589endif #(NEED_FDT)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001590
Manish Pandey3f90ad72020-01-14 11:52:05 +00001591# Add Secure Partition packages
1592ifeq (${NEED_SP_PKG},yes)
Karl Meakinaba46182023-02-14 11:56:02 +00001593$(BUILD_PLAT)/sp_gen.mk : ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
1594 ${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
J-Alvesef8e0982022-03-22 16:28:51 +00001595sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001596 @${ECHO_BLANK_LINE}
1597 @echo "Built SP Images successfully"
1598 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001599endif #(NEED_SP_PKG)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001600
Ian Spray36eaaf32014-01-30 17:25:28 +00001601locate-checkpatch:
1602ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001603 $(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 +00001604else
1605ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001606 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001607endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001608endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001609
Achin Gupta4f6ad662013-10-25 09:08:21 +01001610clean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001611 @echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001612 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
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)) clean
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001619endif #(UNIX_MK)
Juan Castilloa3487d12015-08-18 14:23:04 +01001620 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301621 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
Roberto Vargase92111a2018-05-22 16:05:42 +01001622 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001623
James Morrisseyeaaeece2013-11-01 13:56:59 +00001624realclean distclean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001625 @echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001626 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1627 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001628ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001629 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001630else
1631# Clear the MAKEFLAGS as we do not want
1632# to pass the gnumake flags to nmake.
1633 ${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 +01001634endif #(UNIX_MK)
Nicolas Boulenguezdf612a52021-03-31 12:22:45 +02001635 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301636 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
Roberto Vargase92111a2018-05-22 16:05:42 +01001637 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001638
Ian Spray36eaaf32014-01-30 17:25:28 +00001639checkcodebase: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001640 @echo " CHECKING STYLE"
Dan Handley3a355712016-06-02 18:21:02 +01001641 @if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001642 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001643 while read GIT_FILE ; \
1644 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1645 done ; \
1646 else \
1647 find . -type f -not -iwholename "*.git*" \
1648 -not -iwholename "*build*" \
1649 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001650 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001651 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001652 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001653 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1654 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001655
1656checkpatch: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001657 @echo " CHECKING STYLE"
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001658 @if test -n "${CHECKPATCH_OPTS}"; then \
1659 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1660 fi
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001661 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001662 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1663 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001664 printf "\n[*] Checking style of '$$commit'\n\n"; \
1665 git log --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001666 -- ${CHECK_PATHS} | \
1667 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001668 git diff --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001669 -- ${CHECK_PATHS} | \
1670 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001671 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001672
1673certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001674
Pali Rohár54ff2132020-11-24 15:38:08 +01001675${CRTTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001676 ${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 +00001677 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001678 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001679 @${ECHO_BLANK_LINE}
Jon Medhurst407a95c2014-02-12 15:54:48 +00001680
Juan Castillo11abdcd2014-10-21 11:30:42 +01001681ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001682certificates: ${CRT_DEPS} ${CRTTOOL}
1683 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001684 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001685 @echo "Built $@ successfully"
1686 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001687 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001688endif #(GENERATE_COT)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001689
Juan Castilloa3487d12015-08-18 14:23:04 +01001690${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001691 $(eval ${CHECK_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001692 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
1693 ${Q}${FIPTOOL} info $@
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001694 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001695 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001696 @${ECHO_BLANK_LINE}
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001697
Yatharth Kochard1a93432015-10-12 12:33:47 +01001698ifneq (${GENERATE_COT},0)
1699fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1700 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001701 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001702 @echo "Built $@ successfully"
1703 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001704 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001705endif #(GENERATE_COT)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001706
1707${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001708 $(eval ${CHECK_FWU_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001709 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1710 ${Q}${FIPTOOL} info $@
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001711 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001712 @echo "Built $@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001713 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001714
Juan Castilloa3487d12015-08-18 14:23:04 +01001715fiptool: ${FIPTOOL}
1716fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001717fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001718
Pali Rohár54ff2132020-11-24 15:38:08 +01001719${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001720ifdef UNIX_MK
Lionel Debieve730bde82022-11-14 11:05:09 +01001721 ${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 +01001722else
1723# Clear the MAKEFLAGS as we do not want
1724# to pass the gnumake flags to nmake.
1725 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001726endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001727
Pali Rohár54ff2132020-11-24 15:38:08 +01001728romlib.bin: libraries FORCE
John Tsichritzisf6ea99b2019-05-21 15:47:37 +01001729 ${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 +01001730
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001731memmap: all
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001732ifdef UNIX_MK
1733 ${Q}PYTHONPATH=${CURDIR}/tools/memory \
1734 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1735else
1736 ${Q}set PYTHONPATH=${CURDIR}/tools/memory && \
1737 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1738endif
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001739
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001740doc:
1741 @echo " BUILD DOCUMENTATION"
1742 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1743
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301744enctool: ${ENCTOOL}
1745
Pali Rohár54ff2132020-11-24 15:38:08 +01001746${ENCTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001747 ${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 +05301748 @${ECHO_BLANK_LINE}
1749 @echo "Built $@ successfully"
1750 @${ECHO_BLANK_LINE}
1751
Joakim Bech35fab8c2014-01-23 14:51:49 +01001752cscope:
1753 @echo " CSCOPE"
1754 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1755 ${Q}cscope -b -q -k
1756
Ryan Harkin72ee3312014-01-15 16:55:07 +00001757help:
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001758 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001759 @echo ""
1760 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +00001761 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001762 @echo ""
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001763 @echo "platform = ${PLATFORM_LIST}"
1764 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001765 @echo "Please refer to the User Guide for a list of all supported options."
1766 @echo "Note that the build system doesn't track dependencies for build "
1767 @echo "options. Therefore, if any of the build options are changed "
1768 @echo "from a previous build, a clean build must be performed."
1769 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +00001770 @echo "Supported Targets:"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001771 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +00001772 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +00001773 @echo " bl2 Build the BL2 binary"
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001774 @echo " bl2u Build the BL2U binary"
Juan Castillo7d199412015-12-14 09:35:25 +00001775 @echo " bl31 Build the BL31 binary"
Soby Mathewa1941252016-05-05 14:33:33 +01001776 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1777 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castilloa3487d12015-08-18 14:23:04 +01001778 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001779 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochard1a93432015-10-12 12:33:47 +01001780 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +00001781 @echo " checkcodebase Check the coding style of the entire source tree"
1782 @echo " checkpatch Check the coding style on changes in the current"
1783 @echo " branch against BASE_COMMIT (default origin/master)"
1784 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +00001785 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +00001786 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001787 @echo " certtool Build the Certificate generation tool"
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301788 @echo " enctool Build the Firmware encryption tool"
Andreas Färberec82cfb2016-10-10 05:18:49 +02001789 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Manish Pandey3f90ad72020-01-14 11:52:05 +00001790 @echo " sp Build the Secure Partition Packages"
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001791 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathewab4181d2017-12-14 17:44:56 +00001792 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001793 @echo " memmap Print the memory map of the built binaries"
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001794 @echo " doc Build html based documentation using Sphinx tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001795 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001796 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +00001797 @echo ""
1798 @echo "example: build all targets for the FVP platform:"
1799 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001800
1801.PHONY: FORCE
1802FORCE:;