blob: 64bccbcb05e4f50a8492766b1253ed4b14f58f16 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001#
Govindraj Raja24d3a4e2023-12-21 13:57:49 -06002# 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 Badarkhe8a7af842024-05-17 11:09:28 +010011VERSION_MINOR := 11
Yann Gautier5f4cbed2024-02-08 18:40:27 +010012# VERSION_PATCH is only used for LTS releases
13VERSION_PATCH := 0
Yann Gautier57078a92023-10-03 11:09:07 +020014VERSION := ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}
Juan Castillo04be3a52014-06-30 11:41:46 +010015
Juan Castillo396644b2015-10-22 11:34:44 +010016# Default goal is build all images
17.DEFAULT_GOAL := all
18
Douglas Raillard527cd902016-12-28 14:47:50 +000019# Avoid any implicit propagation of command line variable definitions to
20# sub-Makefiles, like CFLAGS that we reserved for the firmware images'
21# usage. Other command line options like "-s" are still propagated as usual.
22MAKEOVERRIDES =
23
Evan Lloydf2697142015-12-02 18:17:37 +000024MAKE_HELPERS_DIRECTORY := make_helpers/
25include ${MAKE_HELPERS_DIRECTORY}build_macros.mk
Evan Lloyda71d2592015-12-02 18:56:06 +000026include ${MAKE_HELPERS_DIRECTORY}build_env.mk
Chris Kay1559f642024-06-04 00:04:48 +000027include ${MAKE_HELPERS_DIRECTORY}build-rules.mk
Chris Kay1870c722024-05-02 17:52:37 +000028include ${MAKE_HELPERS_DIRECTORY}common.mk
Juan Castilloa3487d12015-08-18 14:23:04 +010029
30################################################################################
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010031# Default values for build configurations, and their dependencies
Juan Castilloa3487d12015-08-18 14:23:04 +010032################################################################################
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +010033
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010034include ${MAKE_HELPERS_DIRECTORY}defaults.mk
dp-arm3cac7862016-09-19 11:18:44 +010035
Chris Kayc8a47ba2023-10-20 09:17:33 +000036################################################################################
37# Configure the toolchains used to build TF-A and its tools
38################################################################################
39
Chris Kay0adde4e2024-05-14 13:08:31 +000040#
41# The clean and check targets do not behave correctly if the user's environment
42# does not appropriately configure a toolchain. While we try to find a permanent
43# solution to this, do not try to detect any toolchains if we are building
44# exclusively with targets which do not use any toolchain tools.
45#
46
47ifeq ($(filter-out check% %clean doc %tool,$(or $(MAKECMDGOALS),all)),)
48 toolchains :=
49endif
50
Chris Kayc8a47ba2023-10-20 09:17:33 +000051include ${MAKE_HELPERS_DIRECTORY}toolchain.mk
52
Antonio Nino Diaz808c2292017-04-18 15:16:05 +010053# Assertions enabled for DEBUG builds by default
Antonio Nino Diaz808c2292017-04-18 15:16:05 +010054ENABLE_ASSERTIONS := ${DEBUG}
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010055ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION}
56PLAT := ${DEFAULT_PLAT}
Achin Gupta4f6ad662013-10-25 09:08:21 +010057
Juan Castilloa3487d12015-08-18 14:23:04 +010058################################################################################
59# Checkpatch script options
60################################################################################
61
Sandrine Bailleux0b5a1582016-06-02 11:19:59 +010062CHECKCODE_ARGS := --no-patch
Dan Handleyd7b59e42016-06-02 17:15:13 +010063# Do not check the coding style on imported library files or documentation files
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030064INC_DRV_DIRS_TO_CHECK := $(sort $(filter-out \
65 include/drivers/arm, \
66 $(wildcard include/drivers/*)))
Dan Handleyd7b59e42016-06-02 17:15:13 +010067INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \
Dan Handley3a355712016-06-02 18:21:02 +010068 include/lib/libfdt \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010069 include/lib/libc, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010070 $(wildcard include/lib/*)))
71INC_DIRS_TO_CHECK := $(sort $(filter-out \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030072 include/lib \
73 include/drivers, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010074 $(wildcard include/*)))
75LIB_DIRS_TO_CHECK := $(sort $(filter-out \
dp-arme3cc8382017-05-04 12:15:35 +010076 lib/compiler-rt \
Antonio Nino Diazd84f88e2017-01-16 17:20:45 +000077 lib/libfdt% \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010078 lib/libc, \
Daniel Boulby958f1dd2022-10-05 11:05:22 +010079 lib/zlib \
Dan Handleyd7b59e42016-06-02 17:15:13 +010080 $(wildcard lib/*)))
81ROOT_DIRS_TO_CHECK := $(sort $(filter-out \
82 lib \
83 include \
84 docs \
Paul Beesleyadfab5b2019-03-07 16:42:31 +000085 %.rst, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010086 $(wildcard *)))
87CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \
88 ${INC_DIRS_TO_CHECK} \
89 ${INC_LIB_DIRS_TO_CHECK} \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030090 ${LIB_DIRS_TO_CHECK} \
91 ${INC_DRV_DIRS_TO_CHECK} \
92 ${INC_ARM_DIRS_TO_CHECK}
Ian Spray36eaaf32014-01-30 17:25:28 +000093
Juan Castilloa3487d12015-08-18 14:23:04 +010094################################################################################
95# Process build options
96################################################################################
97
Chris Kay1870c722024-05-02 17:52:37 +000098ifeq ($(verbose),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010099 CHECKCODE_ARGS += --no-summary --terse
Achin Gupta4f6ad662013-10-25 09:08:21 +0100100endif
Andre Przywaracf2bb082018-09-27 10:56:05 +0100101
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100102################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100103# Auxiliary tools (fiptool, cert_create, etc)
104################################################################################
105
106# Variables for use with Certificate Generation Tool
107CRTTOOLPATH ?= tools/cert_create
108CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT}
109
110# Variables for use with Firmware Encryption Tool
111ENCTOOLPATH ?= tools/encrypt_fw
112ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
113
114# Variables for use with Firmware Image Package
115FIPTOOLPATH ?= tools/fiptool
116FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT}
117
118# Variables for use with sptool
119SPTOOLPATH ?= tools/sptool
120SPTOOL ?= ${SPTOOLPATH}/sptool.py
121SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py
Karl Meakinaba46182023-02-14 11:56:02 +0000122SP_DTS_LIST_FRAGMENT ?= ${BUILD_PLAT}/sp_list_fragment.dts
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100123
Xialin Liucfc47762024-06-28 12:52:29 -0500124# Variables for use with Certificate Conversion (cot-dt2c) Tool
125CERTCONVPATH ?= tools/cot_dt2c
126
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100127# Variables for use with ROMLIB
128ROMLIBPATH ?= lib/romlib
129
130# Variable for use with Python
131PYTHON ?= python3
132
133# Variables for use with documentation build using Sphinx tool
134DOCS_PATH ?= docs
135
136################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100137# Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags
Juan Castilloa3487d12015-08-18 14:23:04 +0100138################################################################################
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100139ifeq (${ARM_ARCH_MAJOR},7)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100140 target32-directive = -target arm-none-eabi
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500141# Will set march-directive from platform configuration
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100142else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100143 target32-directive = -target armv8a-none-eabi
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100144endif #(ARM_ARCH_MAJOR)
145
146################################################################################
147# Get Architecture Feature Modifiers
148################################################################################
149arch-features = ${ARM_ARCH_FEATURE}
150
Chris Kaycfba6452023-12-04 09:55:50 +0000151ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
152 ifeq ($($(ARCH)-cc-id),arm-clang)
Govindraj Raja69096412023-06-01 16:29:16 -0500153 TF_CFLAGS_aarch32 := -target arm-arm-none-eabi
154 TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi
originfba80d82022-01-19 16:30:14 +0000155 else
Govindraj Raja69096412023-06-01 16:29:16 -0500156 TF_CFLAGS_aarch32 = $(target32-directive)
157 TF_CFLAGS_aarch64 := -target aarch64-elf
originfba80d82022-01-19 16:30:14 +0000158 endif
159
Chris Kaycfba6452023-12-04 09:55:50 +0000160else ifeq ($($(ARCH)-cc-id),gnu-gcc)
Chris Kay00416dc2024-02-20 16:19:54 +0000161 # Enable LTO only for aarch64
162 ifeq (${ARCH},aarch64)
163 LTO_CFLAGS = $(if $(filter-out 0,$(ENABLE_LTO)),-flto)
zelalem-aweked5f45272019-11-12 16:20:17 -0600164 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100165endif #(clang)
dp-arm320e8442017-05-02 12:00:08 +0100166
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100167# Process Debug flag
168$(eval $(call add_define,DEBUG))
169ifneq (${DEBUG}, 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100170 BUILD_TYPE := debug
171 TF_CFLAGS += -g -gdwarf-4
172 ASFLAGS += -g -Wa,-gdwarf-4
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100173
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100174 # Use LOG_LEVEL_INFO by default for debug builds
175 LOG_LEVEL := 40
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100176else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100177 BUILD_TYPE := release
178 # Use LOG_LEVEL_NOTICE by default for release builds
179 LOG_LEVEL := 20
180endif #(Debug)
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100181
Peiyuan Song44f8f472020-04-25 16:53:43 +0800182# Default build string (git branch and commit)
183ifeq (${BUILD_STRING},)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100184 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
Peiyuan Song44f8f472020-04-25 16:53:43 +0800185endif
laurenw-arme954f652022-07-12 10:12:05 -0500186VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
Peiyuan Song44f8f472020-04-25 16:53:43 +0800187
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100188ifeq (${AARCH32_INSTRUCTION_SET},A32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100189 TF_CFLAGS_aarch32 += -marm
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100190else ifeq (${AARCH32_INSTRUCTION_SET},T32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100191 TF_CFLAGS_aarch32 += -mthumb
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100192else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100193 $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
194endif #(AARCH32_INSTRUCTION_SET)
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100195
Sandrine Bailleux1aa72ec2018-07-03 09:14:45 +0200196TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-arm320e8442017-05-02 12:00:08 +0100197TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathewa1941252016-05-05 14:33:33 +0100198
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100199##############################################################################
200# WARNINGS Configuration
201###############################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100202# General warnings
203WARNINGS := -Wall -Wmissing-include-dirs -Wunused \
Yann Gautier94a40b62021-05-20 13:18:14 +0200204 -Wdisabled-optimization -Wvla -Wshadow \
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000205 -Wredundant-decls
206# stricter warnings
207WARNINGS += -Wextra -Wno-trigraphs
208# too verbose for generic build
209WARNINGS += -Wno-missing-field-initializers \
210 -Wno-type-limits -Wno-sign-compare \
211# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
212WARNINGS += -Wno-unused-parameter
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100213
214# Additional warnings
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000215# Level 1 - infrequent warnings we should have none of
216# full -Wextra
217WARNING1 += -Wsign-compare
218WARNING1 += -Wtype-limits
219WARNING1 += -Wmissing-field-initializers
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100220
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000221# Level 2 - problematic warnings that we want
222# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
223# TODO: disable just for them and move into default build
224WARNING2 += -Wold-style-definition
225WARNING2 += -Wmissing-prototypes
226WARNING2 += -Wmissing-format-attribute
227# TF-A aims to comply with this eventually. Effort too large at present
228WARNING2 += -Wundef
Boyan Karatotev9c6ba592022-11-21 14:49:05 +0000229# currently very involved and many platforms set this off
230WARNING2 += -Wunused-const-variable=2
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100231
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000232# Level 3 - very pedantic, frequently ignored
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100233WARNING3 := -Wbad-function-cast
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000234WARNING3 += -Waggregate-return
235WARNING3 += -Wnested-externs
236WARNING3 += -Wcast-align
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100237WARNING3 += -Wcast-qual
238WARNING3 += -Wconversion
239WARNING3 += -Wpacked
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100240WARNING3 += -Wpointer-arith
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100241WARNING3 += -Wswitch-default
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100242
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000243# Setting W is quite verbose and most warnings will be pre-existing issues
244# outside of the contributor's control. Don't fail the build on them so warnings
245# can be seen and hopefully addressed
246ifdef W
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100247 ifneq (${W},0)
248 E ?= 0
249 endif
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000250endif
251
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100252ifeq (${W},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100253 WARNINGS += $(WARNING1)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100254else ifeq (${W},2)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100255 WARNINGS += $(WARNING1) $(WARNING2)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100256else ifeq (${W},3)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100257 WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
258endif #(W)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100259
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100260# Compiler specific warnings
Chris Kaycfba6452023-12-04 09:55:50 +0000261ifeq ($(filter %-clang,$($(ARCH)-cc-id)),)
Justin Chadwell7a914232019-07-03 14:15:56 +0100262# not using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100263WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \
264 -Wpacked-bitfield-compat -Wshift-overflow=2 \
265 -Wlogical-op
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500266
267# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
268TF_CFLAGS += $(call cc_option, --param=min-pagesize=0)
269
Bipin Ravie53e6ae2023-09-28 13:17:24 -0500270ifeq ($(HARDEN_SLS), 1)
271 TF_CFLAGS_aarch64 += $(call cc_option, -mharden-sls=all)
272endif
273
Justin Chadwell7a914232019-07-03 14:15:56 +0100274else
275# using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100276WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
277 -Wlogical-op-parentheses
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100278endif #(Clang Warning)
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100279
Yann Gautier957c3532018-12-10 18:08:53 +0100280ifneq (${E},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100281 ERRORS := -Werror
282endif #(E)
Yann Gautier957c3532018-12-10 18:08:53 +0100283
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100284################################################################################
285# Compiler and Linker Directives
286################################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100287CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
288 $(ERRORS) $(WARNINGS)
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500289ASFLAGS += $(CPPFLAGS) \
Julius Werner53456fc2019-07-09 13:49:11 -0700290 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900291TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Holland23f5e542019-10-20 16:11:25 -0500292 -ffunction-sections -fdata-sections \
293 -ffreestanding -fno-builtin -fno-common \
294 -Os -std=gnu99
Juan Castilloa3487d12015-08-18 14:23:04 +0100295
Justin Chadwell83e04882019-08-20 11:01:52 +0100296ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100297 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
298endif #(${SANITIZE_UB},on)
299
Justin Chadwell83e04882019-08-20 11:01:52 +0100300ifeq (${SANITIZE_UB},trap)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100301 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
Justin Chadwell83e04882019-08-20 11:01:52 +0100302 -fsanitize-undefined-trap-on-error
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100303endif #(${SANITIZE_UB},trap)
Justin Chadwell83e04882019-08-20 11:01:52 +0100304
Chris Kay0adde4e2024-05-14 13:08:31 +0000305GCC_V_OUTPUT := $(if $($(ARCH)-cc),$(shell $($(ARCH)-cc) -v 2>&1))
david cunado34ab6092017-11-30 21:58:01 +0000306
Marco Felsch24ad8402022-11-09 12:59:09 +0100307TF_LDFLAGS += -z noexecstack
308
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100309# LD = armlink
Chris Kaycfba6452023-12-04 09:55:50 +0000310ifeq ($($(ARCH)-ld-id),arm-link)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100311 TF_LDFLAGS += --diag_error=warning --lto_level=O1
312 TF_LDFLAGS += --remove --info=unused,unusedsymbols
313 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100314
315# LD = gcc (used when GCC LTO is enabled)
Chris Kaycfba6452023-12-04 09:55:50 +0000316else ifeq ($($(ARCH)-ld-id),gnu-gcc)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100317 # Pass ld options with Wl or Xlinker switches
Chris Kayb0fe96f2024-01-16 11:53:35 +0000318 TF_LDFLAGS += $(call ld_option,-Xlinker --no-warn-rwx-segments)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100319 TF_LDFLAGS += -Wl,--fatal-warnings -O1
320 TF_LDFLAGS += -Wl,--gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000321
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100322 TF_LDFLAGS += -Wl,-z,common-page-size=4096 #Configure page size constants
323 TF_LDFLAGS += -Wl,-z,max-page-size=4096
Andrey Skvortsove2ebb722023-09-05 23:06:29 +0300324 TF_LDFLAGS += -Wl,--build-id=none
Chris Kay73b1f402022-12-22 13:26:37 +0000325
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100326 ifeq ($(ENABLE_LTO),1)
327 ifeq (${ARCH},aarch64)
328 TF_LDFLAGS += -flto -fuse-linker-plugin
Andrey Skvortsov664d6502023-12-08 18:04:51 +0300329 TF_LDFLAGS += -flto-partition=one
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100330 endif
331 endif #(ENABLE_LTO)
332
zelalem-aweked5f45272019-11-12 16:20:17 -0600333# GCC automatically adds fix-cortex-a53-843419 flag when used to link
334# which breaks some builds, so disable if errata fix is not explicitly enabled
Yann Gautier3d73d162023-03-15 16:18:16 +0100335 ifeq (${ARCH},aarch64)
336 ifneq (${ERRATA_A53_843419},1)
337 TF_LDFLAGS += -mno-fix-cortex-a53-843419
338 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100339 endif
340 TF_LDFLAGS += -nostdlib
341 TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100342
343# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekar4d034c52019-01-11 14:47:48 -0800344else
Marco Felsch24ad8402022-11-09 12:59:09 +0100345# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
346# are not loaded by a elf loader.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100347 TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
348 TF_LDFLAGS += -O1
349 TF_LDFLAGS += --gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000350
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100351 TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
352 TF_LDFLAGS += -z max-page-size=4096
Andrey Skvortsove2ebb722023-09-05 23:06:29 +0300353 TF_LDFLAGS += --build-id=none
Chris Kay73b1f402022-12-22 13:26:37 +0000354
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100355# ld.lld doesn't recognize the errata flags,
Yabin Cuied7dc512023-01-19 20:06:04 +0000356# therefore don't add those in that case.
357# ld.lld reports section type mismatch warnings,
358# therefore don't add --fatal-warnings to it.
Chris Kaycfba6452023-12-04 09:55:50 +0000359 ifneq ($($(ARCH)-ld-id),llvm-lld)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100360 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
361 endif
362
363endif #(LD = armlink)
Juan Castilloa3487d12015-08-18 14:23:04 +0100364
365################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500366# Setup ARCH_MAJOR/MINOR before parsing arch_features.
367################################################################################
368ifeq (${ENABLE_RME},1)
AlexeiFedorov65258452024-03-13 11:53:44 +0000369 ARM_ARCH_MAJOR := 9
370 ARM_ARCH_MINOR := 2
Govindraj Raja0386e312023-08-17 10:41:48 -0500371endif
372
373################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100374# Common sources and include directories
375################################################################################
dp-arme3cc8382017-05-04 12:15:35 +0100376include lib/compiler-rt/compiler-rt.mk
Juan Castilloa3487d12015-08-18 14:23:04 +0100377
Chris Kay99b5b2e2024-03-08 16:08:31 +0000378# Allow overriding the timestamp, for example for reproducible builds, or to
379# synchronize timestamps across multiple projects.
380# This must be set to a C string (including quotes where applicable).
381BUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__
382
383DEFINES += -DBUILD_MESSAGE_TIMESTAMP='$(BUILD_MESSAGE_TIMESTAMP)'
384DEFINES += -DBUILD_MESSAGE_VERSION_STRING='"$(VERSION_STRING)"'
385DEFINES += -DBUILD_MESSAGE_VERSION='"$(VERSION)"'
386
Juan Castilloa3487d12015-08-18 14:23:04 +0100387BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100388 common/tf_log.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100389 common/${ARCH}/debug.S \
Julius Werner03020da2018-11-27 22:10:56 -0800390 drivers/console/multi_console.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100391 lib/${ARCH}/cache_helpers.S \
392 lib/${ARCH}/misc_helpers.S \
Boyan Karatotev05504ba2023-02-15 13:21:50 +0000393 lib/extensions/pmuv3/${ARCH}/pmuv3.c \
Soby Mathew2f38ce32018-02-08 17:45:12 +0000394 plat/common/plat_bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100395 plat/common/plat_log_common.c \
dp-arm230011c2017-03-07 11:02:47 +0000396 plat/common/${ARCH}/plat_common.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100397 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas0f8f9852018-05-08 10:27:10 +0100398 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000399
Chris Kaycfba6452023-12-04 09:55:50 +0000400ifeq ($($(ARCH)-cc-id),arm-clang)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100401 BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100402endif
403
Justin Chadwell83e04882019-08-20 11:01:52 +0100404ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100405 BL_COMMON_SOURCES += plat/common/ubsan.c
Justin Chadwell83e04882019-08-20 11:01:52 +0100406endif
407
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200408INCLUDES += -Iinclude \
Antonio Nino Diaz8d1ade62018-12-17 17:20:57 +0000409 -Iinclude/arch/${ARCH} \
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000410 -Iinclude/lib/cpus/${ARCH} \
411 -Iinclude/lib/el3_runtime/${ARCH} \
412 ${PLAT_INCLUDES} \
413 ${SPD_INCLUDES}
414
Nishant Sharma331b5682022-08-15 16:37:07 +0100415DTC_FLAGS += -I dts -O dtb
416DTC_CPPFLAGS += -P -nostdinc $(INCLUDES) -Ifdts -undef \
417 -x assembler-with-cpp $(DEFINES)
418
Antonio Nino Diazc3a2cf22018-11-19 11:48:30 +0000419include common/backtrace/backtrace.mk
420
Juan Castilloa3487d12015-08-18 14:23:04 +0100421################################################################################
Govindraj Raja1a211292023-09-20 14:32:24 -0500422# Generic definitions
423################################################################################
424include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
425
426ifeq (${BUILD_BASE},)
427 BUILD_BASE := ./build
428endif
429BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
430
431SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
432
433# Platforms providing their own TBB makefile may override this value
434INCLUDE_TBBR_MK := 1
435
436################################################################################
437# Include SPD Makefile if one has been specified
438################################################################################
439
440ifneq (${SPD},none)
441 ifeq (${ARCH},aarch32)
442 $(error "Error: SPD is incompatible with AArch32.")
443 endif
444
445 ifdef EL3_PAYLOAD_BASE
446 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
447 $(warning "The SPD and its BL32 companion will be present but \
448 ignored.")
449 endif
450
451 ifeq (${SPD},spmd)
452 # SPMD is located in std_svc directory
453 SPD_DIR := std_svc
454
455 ifeq ($(SPMD_SPM_AT_SEL2),1)
456 CTX_INCLUDE_EL2_REGS := 1
457 ifeq ($(SPMC_AT_EL3),1)
458 $(error SPM cannot be enabled in both S-EL2 and EL3.)
459 endif
Madhukar Pappireddy7503cdc2024-04-25 23:01:00 -0500460 ifeq ($(CTX_INCLUDE_SVE_REGS),1)
461 $(error SVE context management not needed with Hafnium SPMC.)
462 endif
Govindraj Raja1a211292023-09-20 14:32:24 -0500463 endif
464
465 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
466 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
467 endif
468
Arunachalam Ganapathyfd29d582022-04-11 14:36:54 +0100469 ifeq ($(findstring trusty_sp,$(ARM_SPMC_MANIFEST_DTS)),trusty_sp)
470 DTC_CPPFLAGS += -DTRUSTY_SP_FW_CONFIG
471 endif
472
Govindraj Raja1a211292023-09-20 14:32:24 -0500473 ifeq ($(TS_SP_FW_CONFIG),1)
Arunachalam Ganapathyfd29d582022-04-11 14:36:54 +0100474 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
Govindraj Raja1a211292023-09-20 14:32:24 -0500475 endif
476
477 ifneq ($(ARM_BL2_SP_LIST_DTS),)
478 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
479 endif
480
481 ifneq ($(SP_LAYOUT_FILE),)
482 BL2_ENABLE_SP_LOAD := 1
483 endif
Govindraj Rajabad835a2023-10-31 14:48:11 -0500484
485 ifeq ($(SPMC_AT_EL3_SEL0_SP),1)
486 ifneq ($(SPMC_AT_EL3),1)
487 $(error SEL0 SP cannot be enabled without SPMC at EL3)
488 endif
489 endif
Govindraj Raja1a211292023-09-20 14:32:24 -0500490 else
491 # All other SPDs in spd directory
492 SPD_DIR := spd
493 endif #(SPD)
494
495 # We expect to locate an spd.mk under the specified SPD directory
496 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
497
498 ifeq (${SPD_MAKE},)
499 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
500 endif
501 $(info Including ${SPD_MAKE})
502 include ${SPD_MAKE}
503
504 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
505 # Makefile would set NEED_BL32 to "yes". In this case, the build system
506 # supports two mutually exclusive options:
507 # * BL32 is built from source: then BL32_SOURCES must contain the list
508 # of source files to build BL32
509 # * BL32 is a prebuilt binary: then BL32 must point to the image file
510 # that will be included in the FIP
511 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
512 # over the sources.
513endif #(SPD=none)
514
515ifeq (${ENABLE_SPMD_LP}, 1)
516ifneq (${SPD},spmd)
517 $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
518endif
519ifeq ($(SPMC_AT_EL3),1)
520 $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
521endif
522endif
523
524################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500525# Process BRANCH_PROTECTION value and set
526# Pointer Authentication and Branch Target Identification flags
527################################################################################
528ifeq (${BRANCH_PROTECTION},0)
529 # Default value turns off all types of branch protection
530 BP_OPTION := none
531else ifneq (${ARCH},aarch64)
532 $(error BRANCH_PROTECTION requires AArch64)
533else ifeq (${BRANCH_PROTECTION},1)
534 # Enables all types of branch protection features
535 BP_OPTION := standard
536 ENABLE_BTI := 1
537 ENABLE_PAUTH := 1
538else ifeq (${BRANCH_PROTECTION},2)
539 # Return address signing to its standard level
540 BP_OPTION := pac-ret
541 ENABLE_PAUTH := 1
542else ifeq (${BRANCH_PROTECTION},3)
543 # Extend the signing to include leaf functions
544 BP_OPTION := pac-ret+leaf
545 ENABLE_PAUTH := 1
546else ifeq (${BRANCH_PROTECTION},4)
547 # Turn on branch target identification mechanism
548 BP_OPTION := bti
549 ENABLE_BTI := 1
550else
551 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
552endif #(BRANCH_PROTECTION)
553
554ifeq ($(ENABLE_PAUTH),1)
555 CTX_INCLUDE_PAUTH_REGS := 1
556endif
557ifneq (${BP_OPTION},none)
558 TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
559endif #(BP_OPTION)
560
561# Pointer Authentication sources
562ifeq (${ENABLE_PAUTH}, 1)
563# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
564# Pauth support. As it's not secure, it must be reimplemented for real platforms
565 BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
566endif
567
Govindraj Raja1a211292023-09-20 14:32:24 -0500568################################################################################
569# Include the platform specific Makefile after the SPD Makefile (the platform
570# makefile may use all previous definitions in this file)
571################################################################################
572include ${PLAT_MAKEFILE_FULL}
573
574################################################################################
575# Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from
576# platform.
577################################################################################
578include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
579
Govindraj Raja0386e312023-08-17 10:41:48 -0500580####################################################
581# Enable required options for Memory Stack Tagging.
582####################################################
583
584# Currently, these options are enabled only for clang and armclang compiler.
585ifeq (${SUPPORT_STACK_MEMTAG},yes)
586 ifdef mem_tag_arch_support
587 # Check for armclang and clang compilers
Chris Kaycfba6452023-12-04 09:55:50 +0000588 ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
Govindraj Raja0386e312023-08-17 10:41:48 -0500589 # Add "memtag" architecture feature modifier if not specified
590 ifeq ( ,$(findstring memtag,$(arch-features)))
591 arch-features := $(arch-features)+memtag
592 endif # memtag
Chris Kaycfba6452023-12-04 09:55:50 +0000593 ifeq ($($(ARCH)-cc-id),arm-clang)
Govindraj Raja0386e312023-08-17 10:41:48 -0500594 TF_CFLAGS += -mmemtag-stack
Chris Kaycfba6452023-12-04 09:55:50 +0000595 else ifeq ($($(ARCH)-cc-id),llvm-clang)
Govindraj Raja0386e312023-08-17 10:41:48 -0500596 TF_CFLAGS += -fsanitize=memtag
597 endif # armclang
598 endif
599 else
600 $(error "Error: stack memory tagging is not supported for \
601 architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
602 endif #(mem_tag_arch_support)
603endif #(SUPPORT_STACK_MEMTAG)
604
605################################################################################
606# RME dependent flags configuration, Enable optional features for RME.
607################################################################################
608# FEAT_RME
609ifeq (${ENABLE_RME},1)
Govindraj Raja60f52662023-10-12 16:57:46 -0500610 # RME doesn't support BRBE
611 ENABLE_BRBE_FOR_NS := 0
612
Govindraj Raja0386e312023-08-17 10:41:48 -0500613 # RME doesn't support PIE
614 ifneq (${ENABLE_PIE},0)
615 $(error ENABLE_RME does not support PIE)
616 endif
617
618 # RME doesn't support BRBE
619 ifneq (${ENABLE_BRBE_FOR_NS},0)
620 $(error ENABLE_RME does not support BRBE.)
621 endif
622
623 # RME requires AARCH64
624 ifneq (${ARCH},aarch64)
625 $(error ENABLE_RME requires AArch64)
626 endif
627
628 # RME requires el2 context to be saved for now.
629 CTX_INCLUDE_EL2_REGS := 1
630 CTX_INCLUDE_AARCH32_REGS := 0
631 CTX_INCLUDE_PAUTH_REGS := 1
632
633 # RME enables CSV2_2 extension by default.
634 ENABLE_FEAT_CSV2_2 = 1
635endif #(FEAT_RME)
636
637################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500638# Include rmmd Makefile if RME is enabled
639################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500640ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100641 ifneq (${ARCH},aarch64)
642 $(error ENABLE_RME requires AArch64)
643 endif
644 ifeq ($(SPMC_AT_EL3),1)
645 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
646 endif
647
648 ifneq (${SPD}, none)
649 ifneq (${SPD}, spmd)
650 $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
651 endif
652 endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500653include services/std_svc/rmmd/rmmd.mk
654$(warning "RME is an experimental feature")
655endif
656
Govindraj Raja1a211292023-09-20 14:32:24 -0500657ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
658 ifeq (${SPD},none)
659 ifeq (${ENABLE_RME},0)
660 $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
661 or RME is enabled)
662 endif
663 endif
664endif
Jon Medhurst66573cb2014-02-13 15:19:28 +0000665
Govindraj Raja69096412023-06-01 16:29:16 -0500666################################################################################
667# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
668# up with appropriate march values for compiler.
669################################################################################
670include ${MAKE_HELPERS_DIRECTORY}march.mk
671
672TF_CFLAGS += $(march-directive)
Govindraj Raja0c572472024-01-23 16:00:19 -0600673ASFLAGS += $(march-directive)
Govindraj Raja69096412023-06-01 16:29:16 -0500674
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600675# This internal flag is common option which is set to 1 for scenarios
676# when the BL2 is running in EL3 level. This occurs in two scenarios -
677# 4 world system running BL2 at EL3 and two world system without BL1 running
678# BL2 in EL3
679
680ifeq (${RESET_TO_BL2},1)
681 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100682 ifeq (${ENABLE_RME},1)
683 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
684 supported at the moment.)
685 endif
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600686else ifeq (${ENABLE_RME},1)
687 BL2_RUNS_AT_EL3 := 1
688else
689 BL2_RUNS_AT_EL3 := 0
690endif
691
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100692# This internal flag is set to 1 when Firmware First handling of External aborts
693# is required by lowe ELs. Currently only NS requires this support.
694ifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
695 FFH_SUPPORT := 1
696else
697 FFH_SUPPORT := 0
698endif
699
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100700ifeq (${ARM_ARCH_MAJOR},7)
701include make_helpers/armv7-a-cpus.mk
702endif
703
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900704PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
705ifneq ($(PIE_FOUND),)
706 TF_CFLAGS += -fno-PIE
Chris Kaycfba6452023-12-04 09:55:50 +0000707ifeq ($($(ARCH)-ld-id),gnu-gcc)
Samuel Holland9286c022022-04-08 21:56:02 -0500708 TF_LDFLAGS += -no-pie
709endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100710endif #(PIE_FOUND)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900711
Chris Kaycfba6452023-12-04 09:55:50 +0000712ifeq ($($(ARCH)-ld-id),gnu-gcc)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900713 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100714else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900715 PIE_LDFLAGS += -pie --no-dynamic-linker
716endif
717
718ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100719 ifeq ($(RESET_TO_BL2),1)
720 ifneq ($(BL2_IN_XIP_MEM),1)
721 BL2_CPPFLAGS += -fpie
722 BL2_CFLAGS += -fpie
723 BL2_LDFLAGS += $(PIE_LDFLAGS)
724 endif #(BL2_IN_XIP_MEM)
725 endif #(RESET_TO_BL2)
Chris Kay13886c82023-02-02 14:39:03 +0000726 BL31_CPPFLAGS += -fpie
727 BL31_CFLAGS += -fpie
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900728 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay13886c82023-02-02 14:39:03 +0000729
730 BL32_CPPFLAGS += -fpie
Masahiro Yamadade634f82020-01-17 13:45:14 +0900731 BL32_CFLAGS += -fpie
732 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100733endif #(ENABLE_PIE)
Soby Mathew078f1a42018-08-28 11:13:55 +0100734
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000735BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
736BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
737BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
738
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900739BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600740ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100741 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900742else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100743 BL2_CPPFLAGS += -DIMAGE_AT_EL1
744endif #(RESET_TO_BL2)
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000745
746ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100747 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
748 BL31_CPPFLAGS += -DIMAGE_AT_EL3
749 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000750else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100751 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900752endif
753
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000754# Include the CPU specific operations makefile, which provides default
755# values for all CPU errata workarounds and CPU specific optimisations.
756# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100757include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100758
dp-armcdd03cb2017-02-15 11:07:55 +0000759################################################################################
760# Build `AARCH32_SP` as BL32 image for AArch32
761################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100762ifeq (${ARCH},aarch32)
763 NEED_BL32 := yes
dp-armcdd03cb2017-02-15 11:07:55 +0000764
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100765 ifneq (${AARCH32_SP},none)
766 # We expect to locate an sp.mk under the specified AARCH32_SP directory
767 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-armcdd03cb2017-02-15 11:07:55 +0000768
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100769 ifeq (${AARCH32_SP_MAKE},)
770 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
771 endif
Juan Pablo Conde6aba3b12023-08-09 13:19:21 -0500772 $(info Including ${AARCH32_SP_MAKE})
773 include ${AARCH32_SP_MAKE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100774 endif
775endif #(ARCH=aarch32)
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800776
777################################################################################
778# Include libc if not overridden
779################################################################################
780ifeq (${OVERRIDE_LIBC},0)
781include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000782endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100783
784################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100785# Check incompatible options and dependencies
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000786################################################################################
787
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100788# USE_DEBUGFS experimental feature recommended only in debug builds
789ifeq (${USE_DEBUGFS},1)
790 ifeq (${DEBUG},1)
791 $(warning DEBUGFS experimental feature is enabled.)
792 else
793 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800794 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100795endif #(USE_DEBUGFS)
796
797# USE_SPINLOCK_CAS requires AArch64 build
798ifeq (${USE_SPINLOCK_CAS},1)
799 ifneq (${ARCH},aarch64)
800 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800801 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100802endif #(USE_SPINLOCK_CAS)
803
804# The cert_create tool cannot generate certificates individually, so we use the
805# target 'certificates' to create them all
806ifneq (${GENERATE_COT},0)
807 FIP_DEPS += certificates
808 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000809endif
810
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100811ifneq (${DECRYPTION_SUPPORT},none)
812 ENC_ARGS += -f ${FW_ENC_STATUS}
813 ENC_ARGS += -k ${ENC_KEY}
814 ENC_ARGS += -n ${ENC_NONCE}
815 FIP_DEPS += enctool
816 FWU_FIP_DEPS += enctool
817endif #(DECRYPTION_SUPPORT)
818
819ifdef EL3_PAYLOAD_BASE
820 ifdef PRELOADED_BL33_BASE
821 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
822 incompatible build options. EL3_PAYLOAD_BASE has priority.")
823 endif
824 ifneq (${GENERATE_COT},0)
825 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
826 build options.")
827 endif
828 ifneq (${TRUSTED_BOARD_BOOT},0)
829 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
830 incompatible \ build options.")
831 endif
832endif #(EL3_PAYLOAD_BASE)
833
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000834ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100835 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000836 $(warning "BL33 image is not needed when option \
837 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100838 endif
839 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100840 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100841 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
842 endif
843endif #(NEED_BL33)
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000844
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000845# When building for systems with hardware-assisted coherency, there's no need to
846# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
847ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100848 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000849endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100850
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600851#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
852ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100853 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000854endif
855
Manish Pandeyd419e222023-02-13 12:39:17 +0000856# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100857ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100858 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100859 and HANDLE_EA_EL3_FIRST_NS instead")
Manish Pandeyd419e222023-02-13 12:39:17 +0000860endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100861
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100862
Manish Pandeyd419e222023-02-13 12:39:17 +0000863# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000864ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100865 ifeq ($(ENABLE_FEAT_RAS),0)
866 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
867 endif
868endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000869
Roberto Vargas025946a2018-09-24 17:20:48 +0100870# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100871ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100872 ifeq (${TRUSTED_BOARD_BOOT}, 0)
873 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
874 to be set.")
875 endif
876endif #(DYN_DISABLE_AUTH)
Soby Mathew9fe88042018-03-26 12:43:37 +0100877
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100878ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
879# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100880 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100881else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
882# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100883 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100884else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
885# Support hash calculation only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100886 CRYPTO_SUPPORT := 2
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100887else ifeq (${TRUSTED_BOARD_BOOT},1)
888# Support authentication verification only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100889 CRYPTO_SUPPORT := 1
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000890else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100891 CRYPTO_SUPPORT := 0
892endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000893
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +0100894# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
895ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100896 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +0100897endif
898
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000899# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100900# registers associated to it are also saved and restored.
901# 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 +0000902ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100903 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
904 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
905 endif
906endif #(ENABLE_PAUTH)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100907
908ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100909 ifneq (${ARCH},aarch64)
910 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
911 endif
912endif #(CTX_INCLUDE_PAUTH_REGS)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000913
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000914ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100915 $(info FEATURE_DETECTION is an experimental feature)
916endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000917
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000918ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100919 ifeq (${ENABLE_SME_FOR_NS}, 0)
920 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
921 to be set")
922 $(warning "Forced ENABLE_SME_FOR_NS=1")
923 override ENABLE_SME_FOR_NS := 1
924 endif
925endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000926
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000927ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100928 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
929 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
930 library v2")
931 endif
932endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000933
Sumit Garg392e4df2019-11-15 10:43:00 +0530934ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100935 ifeq (${TRUSTED_BOARD_BOOT}, 0)
936 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
937 to be set)
938 endif
939endif #(DECRYPTION_SUPPORT)
Sumit Garg392e4df2019-11-15 10:43:00 +0530940
johpow0181865962022-01-28 17:06:20 -0600941# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -0500942ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -0600943
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100944 # SME/SVE only supported on AArch64
945 ifneq (${ENABLE_SME_FOR_NS},0)
946 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
947 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000948
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100949 ifeq (${ENABLE_SVE_FOR_NS},1)
950 # Warning instead of error due to CI dependency on this
951 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
952 endif
johpow0181865962022-01-28 17:06:20 -0600953
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100954 # BRBE is not supported in AArch32
955 ifeq (${ENABLE_BRBE_FOR_NS},1)
956 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
957 endif
johpow0181865962022-01-28 17:06:20 -0600958
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100959 # FEAT_RNG_TRAP is not supported in AArch32
960 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
961 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
962 endif
963endif #(ARCH=aarch32)
johpow019baade32021-07-08 14:14:00 -0500964
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000965ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100966 ifeq (${ENABLE_SVE_FOR_NS},0)
967 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
968 endif
969endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000970
johpow019baade32021-07-08 14:14:00 -0500971# Secure SME/SVE requires the non-secure component as well
972ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100973 ifeq (${ENABLE_SME_FOR_NS},0)
974 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
975 endif
976 ifeq (${ENABLE_SVE_FOR_SWD},0)
977 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
978 endif
979endif #(ENABLE_SME_FOR_SWD)
980
Madhukar Pappireddy7ff1be82024-06-17 15:28:33 -0500981# Enabling SVE for SWD requires enabling SVE for NWD due to ENABLE_FEAT
982# mechanism.
johpow019baade32021-07-08 14:14:00 -0500983ifeq (${ENABLE_SVE_FOR_SWD},1)
Madhukar Pappireddy7ff1be82024-06-17 15:28:33 -0500984 ifeq (${ENABLE_SVE_FOR_NS},0)
985 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
986 endif
987endif
johpow019baade32021-07-08 14:14:00 -0500988
Madhukar Pappireddy7ff1be82024-06-17 15:28:33 -0500989# Enabling SVE for both the worlds typically requires the context
990# management of SVE registers. The only exception being SPMC at S-EL2.
991ifeq (${ENABLE_SVE_FOR_SWD}, 1)
992 ifneq (${ENABLE_SVE_FOR_NS}, 0)
993 ifeq (${CTX_INCLUDE_SVE_REGS}-$(SPMD_SPM_AT_SEL2),0-0)
994 $(warning "ENABLE_SVE_FOR_SWD and ENABLE_SVE_FOR_NS together require CTX_INCLUDE_SVE_REGS")
995 endif
996 endif
997endif
998
999# Enabling SVE in either world while enabling CTX_INCLUDE_FPREGS requires
1000# CTX_INCLUDE_SVE_REGS to be enabled due to architectural dependency between FP
1001# and SVE registers.
1002ifeq (${CTX_INCLUDE_FPREGS}, 1)
1003 ifneq (${ENABLE_SVE_FOR_NS},0)
1004 ifeq (${CTX_INCLUDE_SVE_REGS},0)
1005 # Warning instead of error due to CI dependency on this
1006 $(warning "CTX_INCLUDE_FPREGS and ENABLE_SVE_FOR_NS together require CTX_INCLUDE_SVE_REGS")
1007 $(warning "Forced ENABLE_SVE_FOR_NS=0")
1008 override ENABLE_SVE_FOR_NS := 0
1009 endif
1010 endif
1011endif #(CTX_INCLUDE_FPREGS)
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001012
Madhukar Pappireddy7ff1be82024-06-17 15:28:33 -05001013# SVE context management is only required if secure world has access to SVE/FP
1014# functionality.
1015ifeq (${CTX_INCLUDE_SVE_REGS},1)
1016 ifeq (${ENABLE_SVE_FOR_SWD},0)
1017 $(error "CTX_INCLUDE_SVE_REGS requires ENABLE_SVE_FOR_SWD to also be enabled")
1018 endif
1019endif
1020
1021# SME cannot be used with CTX_INCLUDE_FPREGS since SPM does its own context
1022# management including FPU registers.
1023ifeq (${CTX_INCLUDE_FPREGS},1)
1024 ifneq (${ENABLE_SME_FOR_NS},0)
1025 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1026 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001027endif #(CTX_INCLUDE_FPREGS)
johpow019baade32021-07-08 14:14:00 -05001028
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001029ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001030 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001031endif
1032
Raymond Mao98983392023-07-25 07:53:35 -07001033ifeq (${TRANSFER_LIST},1)
1034 $(info TRANSFER_LIST is an experimental feature)
1035endif
1036
Chris Kayd02c2312022-09-29 16:21:24 +01001037ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001038 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1039 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1040 endif
Chris Kayd02c2312022-09-29 16:21:24 +01001041endif
1042
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001043ifeq ($(PSA_CRYPTO),1)
1044 $(info PSA_CRYPTO is an experimental feature)
1045endif
1046
Manish V Badarkhed8d7d932024-05-09 12:14:13 +01001047ifeq ($(DICE_PROTECTION_ENVIRONMENT),1)
1048 $(info DICE_PROTECTION_ENVIRONMENT is an experimental feature)
1049endif
1050
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001051################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001052# Process platform overrideable behaviour
1053################################################################################
1054
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001055ifdef BL1_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001056 NEED_BL1 := yes
1057endif #(BL1_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001058
Jon Medhurst66573cb2014-02-13 15:19:28 +00001059ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001060 NEED_BL2 := yes
1061
1062 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1063 # Certificate generation tools. This flag can be overridden by the platform.
1064 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001065 # If booting an EL3 payload there is no need for a BL33 image
1066 # in the FIP file.
1067 NEED_BL33 := no
1068 else
1069 ifdef PRELOADED_BL33_BASE
1070 # If booting a BL33 preloaded image there is no need of
1071 # another one in the FIP file.
1072 NEED_BL33 := no
1073 else
1074 NEED_BL33 ?= yes
1075 endif
1076 endif
1077endif #(BL2_SOURCES)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001078
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001079ifdef BL2U_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001080 NEED_BL2U := yes
1081endif #(BL2U_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001082
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001083# If SCP_BL2 is given, we always want FIP to include it.
1084ifdef SCP_BL2
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001085 NEED_SCP_BL2 := yes
1086endif #(SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001087
Soby Mathewbf169232017-11-14 14:10:10 +00001088# For AArch32, BL31 is not currently supported.
1089ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001090 ifdef BL31_SOURCES
1091 # When booting an EL3 payload, there is no need to compile the BL31
1092 # image nor put it in the FIP.
1093 ifndef EL3_PAYLOAD_BASE
1094 NEED_BL31 := yes
1095 endif
1096 endif
1097endif #(ARCH=aarch64)
Soby Mathewbf169232017-11-14 14:10:10 +00001098
Juan Castilloa3487d12015-08-18 14:23:04 +01001099# Process TBB related flags
1100ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001101 # Common cert_create options
1102 ifneq (${CREATE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001103 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001104 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001105 ifneq (${SAVE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001106 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001107 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001108 endif
1109 endif
1110 # Include TBBR makefile (unless the platform indicates otherwise)
1111 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castilloa3487d12015-08-18 14:23:04 +01001112 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001113 endif
1114endif #(GENERATE_COT)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001115
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001116ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001117 FIP_ARGS += --align ${FIP_ALIGN}
1118endif #(FIP_ALIGN)
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001119
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001120ifdef FDT_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001121 NEED_FDT := yes
1122endif #(FDT_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001123
Juan Castilloa3487d12015-08-18 14:23:04 +01001124################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +08001125# Include libraries' Makefile that are used in all BL
1126################################################################################
1127
1128include lib/stack_protector/stack_protector.mk
1129
1130################################################################################
Soby Mathew574e01e2017-02-14 10:05:07 +00001131# Include BL specific makefiles
1132################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001133
1134ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001135include bl1/bl1.mk
1136endif
1137
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001138ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001139include bl2/bl2.mk
1140endif
1141
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001142ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001143include bl2u/bl2u.mk
1144endif
1145
Soby Mathewbf169232017-11-14 14:10:10 +00001146ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001147include bl31/bl31.mk
1148endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001149
Soby Mathew574e01e2017-02-14 10:05:07 +00001150################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001151# Build options checks
1152################################################################################
1153
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001154# Boolean_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001155$(eval $(call assert_booleans,\
1156 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001157 ALLOW_RO_XLAT_TABLES \
1158 BL2_ENABLE_SP_LOAD \
1159 COLD_BOOT_SINGLE_CPU \
1160 CREATE_KEYS \
1161 CTX_INCLUDE_AARCH32_REGS \
1162 CTX_INCLUDE_FPREGS \
Madhukar Pappireddydd9af9b2024-06-17 15:17:03 -05001163 CTX_INCLUDE_SVE_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001164 CTX_INCLUDE_EL2_REGS \
Arvind Ram Prakash4851b492023-10-06 14:35:21 -05001165 CTX_INCLUDE_MPAM_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001166 DEBUG \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001167 DYN_DISABLE_AUTH \
1168 EL3_EXCEPTION_HANDLING \
1169 ENABLE_AMU_AUXILIARY_COUNTERS \
1170 ENABLE_AMU_FCONF \
1171 AMU_RESTRICT_COUNTERS \
1172 ENABLE_ASSERTIONS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001173 ENABLE_PIE \
1174 ENABLE_PMF \
1175 ENABLE_PSCI_STAT \
1176 ENABLE_RUNTIME_INSTRUMENTATION \
1177 ENABLE_SME_FOR_SWD \
1178 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001179 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001180 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001181 ERROR_DEPRECATED \
1182 FAULT_INJECTION_SUPPORT \
1183 GENERATE_COT \
1184 GICV2_G0_FOR_EL3 \
1185 HANDLE_EA_EL3_FIRST_NS \
Bipin Ravie53e6ae2023-09-28 13:17:24 -05001186 HARDEN_SLS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001187 HW_ASSISTED_COHERENCY \
1188 MEASURED_BOOT \
Tamas Bana4260892023-06-07 13:35:04 +02001189 DICE_PROTECTION_ENVIRONMENT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001190 DRTM_SUPPORT \
1191 NS_TIMER_SWITCH \
1192 OVERRIDE_LIBC \
1193 PL011_GENERIC_UART \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001194 PROGRAMMABLE_RESET_ADDRESS \
1195 PSCI_EXTENDED_STATE_ID \
1196 PSCI_OS_INIT_MODE \
1197 RESET_TO_BL31 \
1198 SAVE_KEYS \
1199 SEPARATE_CODE_AND_RODATA \
1200 SEPARATE_BL2_NOLOAD_REGION \
1201 SEPARATE_NOBITS_REGION \
Madhukar Pappireddy5c1b8d92024-06-17 15:26:00 -05001202 SEPARATE_SIMD_SECTION \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001203 SPIN_ON_BL1_EXIT \
1204 SPM_MM \
1205 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001206 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001207 SPMD_SPM_AT_SEL2 \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001208 ENABLE_SPMD_LP \
Raymond Mao98983392023-07-25 07:53:35 -07001209 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001210 TRUSTED_BOARD_BOOT \
1211 USE_COHERENT_MEM \
1212 USE_DEBUGFS \
1213 ARM_IO_IN_DTB \
1214 SDEI_IN_FCONF \
1215 SEC_INT_DESC_IN_FCONF \
1216 USE_ROMLIB \
1217 USE_TBBR_DEFS \
1218 WARMBOOT_ENABLE_DCACHE_EARLY \
1219 RESET_TO_BL2 \
1220 BL2_IN_XIP_MEM \
1221 BL2_INV_DCACHE \
1222 USE_SPINLOCK_CAS \
1223 ENCRYPT_BL31 \
1224 ENCRYPT_BL32 \
1225 ERRATA_SPECULATIVE_AT \
1226 RAS_TRAP_NS_ERR_REC_ACCESS \
1227 COT_DESC_IN_DTB \
1228 USE_SP804_TIMER \
1229 PSA_FWU_SUPPORT \
Sughosh Ganu61905e52024-02-01 12:51:20 +05301230 PSA_FWU_METADATA_FW_STORE_DESC \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001231 ENABLE_MPMM \
1232 ENABLE_MPMM_FCONF \
1233 FEATURE_DETECTION \
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +01001234 TRNG_SUPPORT \
Sona Mathew7fe03522022-11-18 18:05:38 -06001235 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001236 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001237 CONDITIONAL_CMO \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001238 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001239 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash8bd27c92023-08-15 16:28:06 -05001240 INIT_UNUSED_NS_EL2 \
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001241 PLATFORM_REPORT_CTX_MEM_USE \
Yann Gautier5ae29c02024-01-16 19:39:31 +01001242 EARLY_CONSOLE \
Arvind Ram Prakasheaa90192023-12-21 00:25:52 -06001243 PRESERVE_DSU_PMU_REGS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001244)))
Dan Handley81be1002015-03-27 17:44:35 +00001245
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001246# Numeric_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001247$(eval $(call assert_numerics,\
1248 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001249 ARM_ARCH_MAJOR \
1250 ARM_ARCH_MINOR \
1251 BRANCH_PROTECTION \
1252 CTX_INCLUDE_PAUTH_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001253 CTX_INCLUDE_NEVE_REGS \
1254 CRYPTO_SUPPORT \
Boyan Karatotev677ed8a2023-02-16 09:45:29 +00001255 DISABLE_MTPMU \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001256 ENABLE_BRBE_FOR_NS \
1257 ENABLE_TRBE_FOR_NS \
1258 ENABLE_BTI \
1259 ENABLE_PAUTH \
1260 ENABLE_FEAT_AMU \
1261 ENABLE_FEAT_AMUv1p1 \
1262 ENABLE_FEAT_CSV2_2 \
Sona Mathew3b84c962023-10-25 16:48:19 -05001263 ENABLE_FEAT_CSV2_3 \
Arvind Ram Prakash05b47632024-05-22 15:24:00 -05001264 ENABLE_FEAT_DEBUGV8P9 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001265 ENABLE_FEAT_DIT \
1266 ENABLE_FEAT_ECV \
1267 ENABLE_FEAT_FGT \
Arvind Ram Prakash62d87e72024-06-06 11:33:37 -05001268 ENABLE_FEAT_FGT2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001269 ENABLE_FEAT_HCX \
Govindraj Rajad7b63ac2024-01-26 10:08:37 -06001270 ENABLE_FEAT_MTE2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001271 ENABLE_FEAT_PAN \
1272 ENABLE_FEAT_RNG \
1273 ENABLE_FEAT_RNG_TRAP \
1274 ENABLE_FEAT_SEL2 \
1275 ENABLE_FEAT_TCR2 \
Govindraj Rajac2dad572024-01-23 16:03:53 -06001276 ENABLE_FEAT_SB \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001277 ENABLE_FEAT_S2PIE \
1278 ENABLE_FEAT_S1PIE \
1279 ENABLE_FEAT_S2POE \
1280 ENABLE_FEAT_S1POE \
1281 ENABLE_FEAT_GCS \
1282 ENABLE_FEAT_VHE \
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 \
Madhukar Pappireddydd9af9b2024-06-17 15:17:03 -05001323 CTX_INCLUDE_SVE_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001324 CTX_INCLUDE_PAUTH_REGS \
Arvind Ram Prakash4851b492023-10-06 14:35:21 -05001325 CTX_INCLUDE_MPAM_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001326 EL3_EXCEPTION_HANDLING \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001327 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 Prakash05b47632024-05-22 15:24:00 -05001337 ENABLE_FEAT_DEBUGV8P9 \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001338 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001339 ENABLE_PAUTH \
1340 ENABLE_PIE \
1341 ENABLE_PMF \
1342 ENABLE_PSCI_STAT \
1343 ENABLE_RME \
1344 ENABLE_RUNTIME_INSTRUMENTATION \
1345 ENABLE_SME_FOR_NS \
1346 ENABLE_SME2_FOR_NS \
1347 ENABLE_SME_FOR_SWD \
1348 ENABLE_SPE_FOR_NS \
1349 ENABLE_SVE_FOR_NS \
1350 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001351 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001352 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001353 ENCRYPT_BL31 \
1354 ENCRYPT_BL32 \
1355 ERROR_DEPRECATED \
1356 FAULT_INJECTION_SUPPORT \
1357 GICV2_G0_FOR_EL3 \
1358 HANDLE_EA_EL3_FIRST_NS \
1359 HW_ASSISTED_COHERENCY \
1360 LOG_LEVEL \
1361 MEASURED_BOOT \
Tamas Bana4260892023-06-07 13:35:04 +02001362 DICE_PROTECTION_ENVIRONMENT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001363 DRTM_SUPPORT \
1364 NS_TIMER_SWITCH \
1365 PL011_GENERIC_UART \
1366 PLAT_${PLAT} \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001367 PROGRAMMABLE_RESET_ADDRESS \
1368 PSCI_EXTENDED_STATE_ID \
1369 PSCI_OS_INIT_MODE \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001370 RESET_TO_BL31 \
AlexeiFedorovc0ca2d72024-05-13 15:35:54 +01001371 RME_GPT_BITLOCK_BLOCK \
AlexeiFedorovbd8b1bb2024-03-13 17:07:03 +00001372 RME_GPT_MAX_BLOCK \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001373 SEPARATE_CODE_AND_RODATA \
1374 SEPARATE_BL2_NOLOAD_REGION \
1375 SEPARATE_NOBITS_REGION \
Madhukar Pappireddy5c1b8d92024-06-17 15:26:00 -05001376 SEPARATE_SIMD_SECTION \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001377 RECLAIM_INIT_CODE \
1378 SPD_${SPD} \
1379 SPIN_ON_BL1_EXIT \
1380 SPM_MM \
1381 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001382 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001383 SPMD_SPM_AT_SEL2 \
Raymond Mao98983392023-07-25 07:53:35 -07001384 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001385 TRUSTED_BOARD_BOOT \
1386 CRYPTO_SUPPORT \
1387 TRNG_SUPPORT \
1388 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001389 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001390 USE_COHERENT_MEM \
1391 USE_DEBUGFS \
1392 ARM_IO_IN_DTB \
1393 SDEI_IN_FCONF \
1394 SEC_INT_DESC_IN_FCONF \
1395 USE_ROMLIB \
1396 USE_TBBR_DEFS \
1397 WARMBOOT_ENABLE_DCACHE_EARLY \
1398 RESET_TO_BL2 \
1399 BL2_RUNS_AT_EL3 \
1400 BL2_IN_XIP_MEM \
1401 BL2_INV_DCACHE \
1402 USE_SPINLOCK_CAS \
1403 ERRATA_SPECULATIVE_AT \
1404 RAS_TRAP_NS_ERR_REC_ACCESS \
1405 COT_DESC_IN_DTB \
1406 USE_SP804_TIMER \
1407 ENABLE_FEAT_RNG \
1408 ENABLE_FEAT_RNG_TRAP \
1409 ENABLE_FEAT_SB \
1410 ENABLE_FEAT_DIT \
1411 NR_OF_FW_BANKS \
1412 NR_OF_IMAGES_IN_FW_BANK \
1413 PSA_FWU_SUPPORT \
Sughosh Ganu61905e52024-02-01 12:51:20 +05301414 PSA_FWU_METADATA_FW_STORE_DESC \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001415 ENABLE_BRBE_FOR_NS \
1416 ENABLE_TRBE_FOR_NS \
1417 ENABLE_SYS_REG_TRACE_FOR_NS \
1418 ENABLE_TRF_FOR_NS \
1419 ENABLE_FEAT_HCX \
1420 ENABLE_MPMM \
1421 ENABLE_MPMM_FCONF \
1422 ENABLE_FEAT_FGT \
Arvind Ram Prakash62d87e72024-06-06 11:33:37 -05001423 ENABLE_FEAT_FGT2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001424 ENABLE_FEAT_ECV \
1425 ENABLE_FEAT_AMUv1p1 \
1426 ENABLE_FEAT_SEL2 \
1427 ENABLE_FEAT_VHE \
1428 ENABLE_FEAT_CSV2_2 \
Sona Mathew3b84c962023-10-25 16:48:19 -05001429 ENABLE_FEAT_CSV2_3 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001430 ENABLE_FEAT_PAN \
1431 ENABLE_FEAT_TCR2 \
1432 ENABLE_FEAT_S2PIE \
1433 ENABLE_FEAT_S1PIE \
1434 ENABLE_FEAT_S2POE \
1435 ENABLE_FEAT_S1POE \
1436 ENABLE_FEAT_GCS \
Govindraj Rajad7b63ac2024-01-26 10:08:37 -06001437 ENABLE_FEAT_MTE2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001438 FEATURE_DETECTION \
1439 TWED_DELAY \
1440 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001441 CONDITIONAL_CMO \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001442 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidanand23c2fe22023-04-26 15:57:30 +01001443 SVE_VECTOR_LEN \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001444 ENABLE_SPMD_LP \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001445 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001446 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash8bd27c92023-08-15 16:28:06 -05001447 INIT_UNUSED_NS_EL2 \
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001448 PLATFORM_REPORT_CTX_MEM_USE \
Yann Gautier5ae29c02024-01-16 19:39:31 +01001449 EARLY_CONSOLE \
Arvind Ram Prakasheaa90192023-12-21 00:25:52 -06001450 PRESERVE_DSU_PMU_REGS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001451)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001452
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001453ifeq (${PLATFORM_REPORT_CTX_MEM_USE}, 1)
1454ifeq (${DEBUG}, 0)
1455 $(warning "PLATFORM_REPORT_CTX_MEM_USE can be applied when DEBUG=1 only")
1456 override PLATFORM_REPORT_CTX_MEM_USE := 0
1457endif
1458endif
1459
Justin Chadwell83e04882019-08-20 11:01:52 +01001460ifeq (${SANITIZE_UB},trap)
1461 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001462endif #(SANITIZE_UB)
Justin Chadwell83e04882019-08-20 11:01:52 +01001463
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001464# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1465ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001466 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1467else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001468# Define the PRELOADED_BL33_BASE flag only if it is provided and
1469# EL3_PAYLOAD_BASE is not defined, as it has priority.
1470 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001471 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001472 endif
1473endif #(EL3_PAYLOAD_BASE)
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001474
Soby Mathew9fe88042018-03-26 12:43:37 +01001475# Define the DYN_DISABLE_AUTH flag only if set.
1476ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001477 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew9fe88042018-03-26 12:43:37 +01001478endif
1479
Chris Kaycfba6452023-12-04 09:55:50 +00001480ifeq ($($(ARCH)-ld-id),arm-link)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001481 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekar4d034c52019-01-11 14:47:48 -08001482endif
1483
Manish Pandey3f90ad72020-01-14 11:52:05 +00001484# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001485ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001486ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001487 -include $(BUILD_PLAT)/sp_gen.mk
1488 FIP_DEPS += sp
1489 CRT_DEPS += sp
1490 NEED_SP_PKG := yes
Manish Pandey3f90ad72020-01-14 11:52:05 +00001491else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001492 ifeq (${SPMD_SPM_AT_SEL2},1)
1493 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1494 endif
1495endif #(SP_LAYOUT_FILE)
1496endif #(SPD)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001497
Juan Castilloa3487d12015-08-18 14:23:04 +01001498################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001499# Build targets
1500################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001501
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301502.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 +01001503.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001504
Juan Castilloa3487d12015-08-18 14:23:04 +01001505all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001506
Juan Castilloa3487d12015-08-18 14:23:04 +01001507msg_start:
Chris Kay1870c722024-05-02 17:52:37 +00001508 $(s)echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001509
Soby Mathew18a62042015-10-26 14:29:21 +00001510ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001511# Check if deprecated declarations and cpp warnings should be treated as error or not.
Chris Kaycfba6452023-12-04 09:55:50 +00001512ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
Varun Wadekar4d034c52019-01-11 14:47:48 -08001513 CPPFLAGS += -Wno-error=deprecated-declarations
1514else
Dan Handley6fa89a22018-02-27 16:03:58 +00001515 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001516endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001517endif #(!ERROR_DEPRECATED)
Soby Mathew18a62042015-10-26 14:29:21 +00001518
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001519$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001520
Juan Castilloa3487d12015-08-18 14:23:04 +01001521# Expand build macros for the different images
1522ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001523BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001524$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001525endif #(NEED_BL1)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001526
Juan Castilloa3487d12015-08-18 14:23:04 +01001527ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001528
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001529ifeq (${RESET_TO_BL2}, 0)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001530FIP_BL2_ARGS := tb-fw
1531endif
1532
Chris Kayfb3b0512021-09-28 15:44:37 +01001533BL2_SOURCES := $(sort ${BL2_SOURCES})
1534
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001535$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001536 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001537
1538endif #(NEED_BL2)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001539
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001540ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001541$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001542endif #(NEED_SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001543
Juan Castilloa3487d12015-08-18 14:23:04 +01001544ifeq (${NEED_BL31},yes)
1545BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001546# Sort BL31 source files to remove duplicates
1547BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301548ifneq (${DECRYPTION_SUPPORT},none)
1549$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001550 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301551else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001552$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001553 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001554endif #(DECRYPTION_SUPPORT)
1555endif #(NEED_BL31)
Juan Castillo379954c2014-11-04 17:36:40 +00001556
Juan Castillo671b8db2015-11-12 10:59:26 +00001557# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001558# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001559# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001560ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001561# Sort BL32 source files to remove duplicates
1562BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001563BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1564
Sumit Gargeec52442019-11-14 16:33:45 +05301565ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001566$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301567 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1568else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001569$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001570 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001571endif #(DECRYPTION_SUPPORT)
1572endif #(NEED_BL32)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001573
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001574# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1575# needs to be built from RMM_SOURCES.
1576ifeq (${NEED_RMM},yes)
1577# Sort RMM source files to remove duplicates
1578RMM_SOURCES := $(sort ${RMM_SOURCES})
1579BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1580
1581$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001582 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1583endif #(NEED_RMM)
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001584
Juan Castilloa3487d12015-08-18 14:23:04 +01001585# Add the BL33 image if required by the platform
1586ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001587$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001588endif #(NEED_BL33)
Juan Castillo9c25a402015-01-13 12:21:04 +00001589
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001590ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001591$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001592 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001593endif #(NEED_BL2U)
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001594
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001595# Expand build macros for the different images
1596ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001597 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001598endif #(NEED_FDT)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001599
Manish Pandey3f90ad72020-01-14 11:52:05 +00001600# Add Secure Partition packages
1601ifeq (${NEED_SP_PKG},yes)
Chris Kayd67442e2024-07-30 13:33:56 +00001602$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | $$(@D)/
Chris Kay1870c722024-05-02 17:52:37 +00001603 $(q)${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
J-Alvesef8e0982022-03-22 16:28:51 +00001604sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Chris Kay1870c722024-05-02 17:52:37 +00001605 $(s)echo
1606 $(s)echo "Built SP Images successfully"
1607 $(s)echo
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001608endif #(NEED_SP_PKG)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001609
Ian Spray36eaaf32014-01-30 17:25:28 +00001610locate-checkpatch:
1611ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001612 $(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 +00001613else
1614ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001615 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001616endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001617endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001618
Achin Gupta4f6ad662013-10-25 09:08:21 +01001619clean:
Chris Kay1870c722024-05-02 17:52:37 +00001620 $(s)echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001621 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Xialin Liucfc47762024-06-28 12:52:29 -05001622 $(q)${MAKE} -C ${CERTCONVPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001623ifdef UNIX_MK
Chris Kay1870c722024-05-02 17:52:37 +00001624 $(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001625else
1626# Clear the MAKEFLAGS as we do not want
1627# to pass the gnumake flags to nmake.
Chris Kay1870c722024-05-02 17:52:37 +00001628 $(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 +01001629endif #(UNIX_MK)
Chris Kay1870c722024-05-02 17:52:37 +00001630 $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
1631 $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
1632 $(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001633
James Morrisseyeaaeece2013-11-01 13:56:59 +00001634realclean distclean:
Chris Kay1870c722024-05-02 17:52:37 +00001635 $(s)echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001636 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1637 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Xialin Liucfc47762024-06-28 12:52:29 -05001638 $(q)${MAKE} -C ${CERTCONVPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001639ifdef UNIX_MK
Chris Kay1870c722024-05-02 17:52:37 +00001640 $(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001641else
1642# Clear the MAKEFLAGS as we do not want
1643# to pass the gnumake flags to nmake.
Chris Kay1870c722024-05-02 17:52:37 +00001644 $(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 +01001645endif #(UNIX_MK)
Chris Kay1870c722024-05-02 17:52:37 +00001646 $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
1647 $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
1648 $(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001649
Ian Spray36eaaf32014-01-30 17:25:28 +00001650checkcodebase: locate-checkpatch
Chris Kay1870c722024-05-02 17:52:37 +00001651 $(s)echo " CHECKING STYLE"
1652 $(q)if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001653 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001654 while read GIT_FILE ; \
1655 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1656 done ; \
1657 else \
1658 find . -type f -not -iwholename "*.git*" \
1659 -not -iwholename "*build*" \
1660 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001661 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001662 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001663 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001664 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1665 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001666
1667checkpatch: locate-checkpatch
Chris Kay1870c722024-05-02 17:52:37 +00001668 $(s)echo " CHECKING STYLE"
1669 $(q)if test -n "${CHECKPATCH_OPTS}"; then \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001670 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1671 fi
Chris Kay1870c722024-05-02 17:52:37 +00001672 $(q)COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001673 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1674 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001675 printf "\n[*] Checking style of '$$commit'\n\n"; \
1676 git log --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001677 -- ${CHECK_PATHS} | \
1678 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001679 git diff --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001680 -- ${CHECK_PATHS} | \
1681 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001682 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001683
1684certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001685
Pali Rohár54ff2132020-11-24 15:38:08 +01001686${CRTTOOL}: FORCE
Chris Kay1870c722024-05-02 17:52:37 +00001687 $(q)${MAKE} PLAT=${PLAT} USE_TBBR_DEFS=${USE_TBBR_DEFS} COT=${COT} OPENSSL_DIR=${OPENSSL_DIR} CRTTOOL=${CRTTOOL} DEBUG=${DEBUG} --no-print-directory -C ${CRTTOOLPATH} all
1688 $(s)echo
1689 $(s)echo "Built $@ successfully"
1690 $(s)echo
Jon Medhurst407a95c2014-02-12 15:54:48 +00001691
Juan Castillo11abdcd2014-10-21 11:30:42 +01001692ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001693certificates: ${CRT_DEPS} ${CRTTOOL}
Chris Kay1870c722024-05-02 17:52:37 +00001694 $(q)${CRTTOOL} ${CRT_ARGS}
1695 $(s)echo
1696 $(s)echo "Built $@ successfully"
1697 $(s)echo "Certificates can be found in ${BUILD_PLAT}"
1698 $(s)echo
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001699endif #(GENERATE_COT)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001700
Juan Castilloa3487d12015-08-18 14:23:04 +01001701${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001702 $(eval ${CHECK_FIP_CMD})
Chris Kay1870c722024-05-02 17:52:37 +00001703 $(q)${FIPTOOL} create ${FIP_ARGS} $@
1704 $(q)${FIPTOOL} info $@
1705 $(s)echo
1706 $(s)echo "Built $@ successfully"
1707 $(s)echo
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001708
Yatharth Kochard1a93432015-10-12 12:33:47 +01001709ifneq (${GENERATE_COT},0)
1710fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
Chris Kay1870c722024-05-02 17:52:37 +00001711 $(q)${CRTTOOL} ${FWU_CRT_ARGS}
1712 $(s)echo
1713 $(s)echo "Built $@ successfully"
1714 $(s)echo "FWU certificates can be found in ${BUILD_PLAT}"
1715 $(s)echo
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001716endif #(GENERATE_COT)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001717
1718${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001719 $(eval ${CHECK_FWU_FIP_CMD})
Chris Kay1870c722024-05-02 17:52:37 +00001720 $(q)${FIPTOOL} create ${FWU_FIP_ARGS} $@
1721 $(q)${FIPTOOL} info $@
1722 $(s)echo
1723 $(s)echo "Built $@ successfully"
1724 $(s)echo
Yatharth Kochard1a93432015-10-12 12:33:47 +01001725
Juan Castilloa3487d12015-08-18 14:23:04 +01001726fiptool: ${FIPTOOL}
1727fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001728fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001729
Pali Rohár54ff2132020-11-24 15:38:08 +01001730${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001731ifdef UNIX_MK
Chris Kay1870c722024-05-02 17:52:37 +00001732 $(q)${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} --no-print-directory -C ${FIPTOOLPATH} all
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001733else
1734# Clear the MAKEFLAGS as we do not want
1735# to pass the gnumake flags to nmake.
Chris Kay1870c722024-05-02 17:52:37 +00001736 $(q)set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001737endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001738
Pali Rohár54ff2132020-11-24 15:38:08 +01001739romlib.bin: libraries FORCE
Chris Kay1870c722024-05-02 17:52:37 +00001740 $(q)${MAKE} PLAT_DIR=${PLAT_DIR} BUILD_PLAT=${BUILD_PLAT} ENABLE_BTI=${ENABLE_BTI} ARM_ARCH_MINOR=${ARM_ARCH_MINOR} INCLUDES=$(call escape-shell,$(INCLUDES)) DEFINES=$(call escape-shell,$(DEFINES)) --no-print-directory -C ${ROMLIBPATH} all
Roberto Vargase92111a2018-05-22 16:05:42 +01001741
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001742memmap: all
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001743ifdef UNIX_MK
Chris Kay1870c722024-05-02 17:52:37 +00001744 $(q)PYTHONPATH=${CURDIR}/tools/memory \
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001745 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1746else
Chris Kay1870c722024-05-02 17:52:37 +00001747 $(q)set PYTHONPATH=${CURDIR}/tools/memory && \
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001748 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1749endif
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001750
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001751doc:
Chris Kay1870c722024-05-02 17:52:37 +00001752 $(s)echo " BUILD DOCUMENTATION"
1753 $(q)${MAKE} --no-print-directory -C ${DOCS_PATH} html
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001754
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301755enctool: ${ENCTOOL}
1756
Pali Rohár54ff2132020-11-24 15:38:08 +01001757${ENCTOOL}: FORCE
Chris Kay1870c722024-05-02 17:52:37 +00001758 $(q)${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} --no-print-directory -C ${ENCTOOLPATH} all
1759 $(s)echo
1760 $(s)echo "Built $@ successfully"
1761 $(s)echo
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301762
Joakim Bech35fab8c2014-01-23 14:51:49 +01001763cscope:
Chris Kay1870c722024-05-02 17:52:37 +00001764 $(s)echo " CSCOPE"
1765 $(q)find ${CURDIR} -name "*.[chsS]" > cscope.files
1766 $(q)cscope -b -q -k
Joakim Bech35fab8c2014-01-23 14:51:49 +01001767
Ryan Harkin72ee3312014-01-15 16:55:07 +00001768help:
Chris Kay1870c722024-05-02 17:52:37 +00001769 $(s)echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
1770 $(s)echo ""
1771 $(s)echo "PLAT is used to specify which platform you wish to build."
1772 $(s)echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
1773 $(s)echo ""
1774 $(s)echo "platform = ${PLATFORM_LIST}"
1775 $(s)echo ""
1776 $(s)echo "Please refer to the User Guide for a list of all supported options."
1777 $(s)echo "Note that the build system doesn't track dependencies for build "
1778 $(s)echo "options. Therefore, if any of the build options are changed "
1779 $(s)echo "from a previous build, a clean build must be performed."
1780 $(s)echo ""
1781 $(s)echo "Supported Targets:"
1782 $(s)echo " all Build all individual bootloader binaries"
1783 $(s)echo " bl1 Build the BL1 binary"
1784 $(s)echo " bl2 Build the BL2 binary"
1785 $(s)echo " bl2u Build the BL2U binary"
1786 $(s)echo " bl31 Build the BL31 binary"
1787 $(s)echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1788 $(s)echo " this builds secure payload specified by AARCH32_SP"
1789 $(s)echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
1790 $(s)echo " fip Build the Firmware Image Package (FIP)"
1791 $(s)echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
1792 $(s)echo " checkcodebase Check the coding style of the entire source tree"
1793 $(s)echo " checkpatch Check the coding style on changes in the current"
1794 $(s)echo " branch against BASE_COMMIT (default origin/master)"
1795 $(s)echo " clean Clean the build for the selected platform"
1796 $(s)echo " cscope Generate cscope index"
1797 $(s)echo " distclean Remove all build artifacts for all platforms"
1798 $(s)echo " certtool Build the Certificate generation tool"
1799 $(s)echo " enctool Build the Firmware encryption tool"
1800 $(s)echo " fiptool Build the Firmware Image Package (FIP) creation tool"
1801 $(s)echo " sp Build the Secure Partition Packages"
1802 $(s)echo " sptool Build the Secure Partition Package creation tool"
1803 $(s)echo " dtbs Build the Device Tree Blobs (if required for the platform)"
1804 $(s)echo " memmap Print the memory map of the built binaries"
1805 $(s)echo " doc Build html based documentation using Sphinx tool"
1806 $(s)echo ""
1807 $(s)echo "Note: most build targets require PLAT to be set to a specific platform."
1808 $(s)echo ""
1809 $(s)echo "example: build all targets for the FVP platform:"
1810 $(s)echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001811
1812.PHONY: FORCE
1813FORCE:;