blob: f7737e3506c2311c645162236f16b0e2467d70e9 [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
460 endif
461
462 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
463 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
464 endif
465
Arunachalam Ganapathyfd29d582022-04-11 14:36:54 +0100466 ifeq ($(findstring trusty_sp,$(ARM_SPMC_MANIFEST_DTS)),trusty_sp)
467 DTC_CPPFLAGS += -DTRUSTY_SP_FW_CONFIG
468 endif
469
Govindraj Raja1a211292023-09-20 14:32:24 -0500470 ifeq ($(TS_SP_FW_CONFIG),1)
Arunachalam Ganapathyfd29d582022-04-11 14:36:54 +0100471 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
Govindraj Raja1a211292023-09-20 14:32:24 -0500472 endif
473
474 ifneq ($(ARM_BL2_SP_LIST_DTS),)
475 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
476 endif
477
478 ifneq ($(SP_LAYOUT_FILE),)
479 BL2_ENABLE_SP_LOAD := 1
480 endif
Govindraj Rajabad835a2023-10-31 14:48:11 -0500481
482 ifeq ($(SPMC_AT_EL3_SEL0_SP),1)
483 ifneq ($(SPMC_AT_EL3),1)
484 $(error SEL0 SP cannot be enabled without SPMC at EL3)
485 endif
486 endif
Govindraj Raja1a211292023-09-20 14:32:24 -0500487 else
488 # All other SPDs in spd directory
489 SPD_DIR := spd
490 endif #(SPD)
491
492 # We expect to locate an spd.mk under the specified SPD directory
493 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
494
495 ifeq (${SPD_MAKE},)
496 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
497 endif
498 $(info Including ${SPD_MAKE})
499 include ${SPD_MAKE}
500
501 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
502 # Makefile would set NEED_BL32 to "yes". In this case, the build system
503 # supports two mutually exclusive options:
504 # * BL32 is built from source: then BL32_SOURCES must contain the list
505 # of source files to build BL32
506 # * BL32 is a prebuilt binary: then BL32 must point to the image file
507 # that will be included in the FIP
508 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
509 # over the sources.
510endif #(SPD=none)
511
512ifeq (${ENABLE_SPMD_LP}, 1)
513ifneq (${SPD},spmd)
514 $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
515endif
516ifeq ($(SPMC_AT_EL3),1)
517 $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
518endif
519endif
520
521################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500522# Process BRANCH_PROTECTION value and set
523# Pointer Authentication and Branch Target Identification flags
524################################################################################
525ifeq (${BRANCH_PROTECTION},0)
526 # Default value turns off all types of branch protection
527 BP_OPTION := none
528else ifneq (${ARCH},aarch64)
529 $(error BRANCH_PROTECTION requires AArch64)
530else ifeq (${BRANCH_PROTECTION},1)
531 # Enables all types of branch protection features
532 BP_OPTION := standard
533 ENABLE_BTI := 1
534 ENABLE_PAUTH := 1
535else ifeq (${BRANCH_PROTECTION},2)
536 # Return address signing to its standard level
537 BP_OPTION := pac-ret
538 ENABLE_PAUTH := 1
539else ifeq (${BRANCH_PROTECTION},3)
540 # Extend the signing to include leaf functions
541 BP_OPTION := pac-ret+leaf
542 ENABLE_PAUTH := 1
543else ifeq (${BRANCH_PROTECTION},4)
544 # Turn on branch target identification mechanism
545 BP_OPTION := bti
546 ENABLE_BTI := 1
547else
548 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
549endif #(BRANCH_PROTECTION)
550
551ifeq ($(ENABLE_PAUTH),1)
552 CTX_INCLUDE_PAUTH_REGS := 1
553endif
554ifneq (${BP_OPTION},none)
555 TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
556endif #(BP_OPTION)
557
558# Pointer Authentication sources
559ifeq (${ENABLE_PAUTH}, 1)
560# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
561# Pauth support. As it's not secure, it must be reimplemented for real platforms
562 BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
563endif
564
Govindraj Raja1a211292023-09-20 14:32:24 -0500565################################################################################
566# Include the platform specific Makefile after the SPD Makefile (the platform
567# makefile may use all previous definitions in this file)
568################################################################################
569include ${PLAT_MAKEFILE_FULL}
570
571################################################################################
572# Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from
573# platform.
574################################################################################
575include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
576
Govindraj Raja0386e312023-08-17 10:41:48 -0500577####################################################
578# Enable required options for Memory Stack Tagging.
579####################################################
580
581# Currently, these options are enabled only for clang and armclang compiler.
582ifeq (${SUPPORT_STACK_MEMTAG},yes)
583 ifdef mem_tag_arch_support
584 # Check for armclang and clang compilers
Chris Kaycfba6452023-12-04 09:55:50 +0000585 ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
Govindraj Raja0386e312023-08-17 10:41:48 -0500586 # Add "memtag" architecture feature modifier if not specified
587 ifeq ( ,$(findstring memtag,$(arch-features)))
588 arch-features := $(arch-features)+memtag
589 endif # memtag
Chris Kaycfba6452023-12-04 09:55:50 +0000590 ifeq ($($(ARCH)-cc-id),arm-clang)
Govindraj Raja0386e312023-08-17 10:41:48 -0500591 TF_CFLAGS += -mmemtag-stack
Chris Kaycfba6452023-12-04 09:55:50 +0000592 else ifeq ($($(ARCH)-cc-id),llvm-clang)
Govindraj Raja0386e312023-08-17 10:41:48 -0500593 TF_CFLAGS += -fsanitize=memtag
594 endif # armclang
595 endif
596 else
597 $(error "Error: stack memory tagging is not supported for \
598 architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
599 endif #(mem_tag_arch_support)
600endif #(SUPPORT_STACK_MEMTAG)
601
602################################################################################
603# RME dependent flags configuration, Enable optional features for RME.
604################################################################################
605# FEAT_RME
606ifeq (${ENABLE_RME},1)
Govindraj Raja60f52662023-10-12 16:57:46 -0500607 # RME doesn't support BRBE
608 ENABLE_BRBE_FOR_NS := 0
609
Govindraj Raja0386e312023-08-17 10:41:48 -0500610 # RME doesn't support PIE
611 ifneq (${ENABLE_PIE},0)
612 $(error ENABLE_RME does not support PIE)
613 endif
614
615 # RME doesn't support BRBE
616 ifneq (${ENABLE_BRBE_FOR_NS},0)
617 $(error ENABLE_RME does not support BRBE.)
618 endif
619
620 # RME requires AARCH64
621 ifneq (${ARCH},aarch64)
622 $(error ENABLE_RME requires AArch64)
623 endif
624
625 # RME requires el2 context to be saved for now.
626 CTX_INCLUDE_EL2_REGS := 1
627 CTX_INCLUDE_AARCH32_REGS := 0
628 CTX_INCLUDE_PAUTH_REGS := 1
629
630 # RME enables CSV2_2 extension by default.
631 ENABLE_FEAT_CSV2_2 = 1
632endif #(FEAT_RME)
633
634################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500635# Include rmmd Makefile if RME is enabled
636################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500637ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100638 ifneq (${ARCH},aarch64)
639 $(error ENABLE_RME requires AArch64)
640 endif
641 ifeq ($(SPMC_AT_EL3),1)
642 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
643 endif
644
645 ifneq (${SPD}, none)
646 ifneq (${SPD}, spmd)
647 $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
648 endif
649 endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500650include services/std_svc/rmmd/rmmd.mk
651$(warning "RME is an experimental feature")
652endif
653
Govindraj Raja1a211292023-09-20 14:32:24 -0500654ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
655 ifeq (${SPD},none)
656 ifeq (${ENABLE_RME},0)
657 $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
658 or RME is enabled)
659 endif
660 endif
661endif
Jon Medhurst66573cb2014-02-13 15:19:28 +0000662
Govindraj Raja69096412023-06-01 16:29:16 -0500663################################################################################
664# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
665# up with appropriate march values for compiler.
666################################################################################
667include ${MAKE_HELPERS_DIRECTORY}march.mk
668
669TF_CFLAGS += $(march-directive)
Govindraj Raja0c572472024-01-23 16:00:19 -0600670ASFLAGS += $(march-directive)
Govindraj Raja69096412023-06-01 16:29:16 -0500671
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600672# This internal flag is common option which is set to 1 for scenarios
673# when the BL2 is running in EL3 level. This occurs in two scenarios -
674# 4 world system running BL2 at EL3 and two world system without BL1 running
675# BL2 in EL3
676
677ifeq (${RESET_TO_BL2},1)
678 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100679 ifeq (${ENABLE_RME},1)
680 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
681 supported at the moment.)
682 endif
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600683else ifeq (${ENABLE_RME},1)
684 BL2_RUNS_AT_EL3 := 1
685else
686 BL2_RUNS_AT_EL3 := 0
687endif
688
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100689# This internal flag is set to 1 when Firmware First handling of External aborts
690# is required by lowe ELs. Currently only NS requires this support.
691ifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
692 FFH_SUPPORT := 1
693else
694 FFH_SUPPORT := 0
695endif
696
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100697ifeq (${ARM_ARCH_MAJOR},7)
698include make_helpers/armv7-a-cpus.mk
699endif
700
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900701PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
702ifneq ($(PIE_FOUND),)
703 TF_CFLAGS += -fno-PIE
Chris Kaycfba6452023-12-04 09:55:50 +0000704ifeq ($($(ARCH)-ld-id),gnu-gcc)
Samuel Holland9286c022022-04-08 21:56:02 -0500705 TF_LDFLAGS += -no-pie
706endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100707endif #(PIE_FOUND)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900708
Chris Kaycfba6452023-12-04 09:55:50 +0000709ifeq ($($(ARCH)-ld-id),gnu-gcc)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900710 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100711else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900712 PIE_LDFLAGS += -pie --no-dynamic-linker
713endif
714
715ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100716 ifeq ($(RESET_TO_BL2),1)
717 ifneq ($(BL2_IN_XIP_MEM),1)
718 BL2_CPPFLAGS += -fpie
719 BL2_CFLAGS += -fpie
720 BL2_LDFLAGS += $(PIE_LDFLAGS)
721 endif #(BL2_IN_XIP_MEM)
722 endif #(RESET_TO_BL2)
Chris Kay13886c82023-02-02 14:39:03 +0000723 BL31_CPPFLAGS += -fpie
724 BL31_CFLAGS += -fpie
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900725 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay13886c82023-02-02 14:39:03 +0000726
727 BL32_CPPFLAGS += -fpie
Masahiro Yamadade634f82020-01-17 13:45:14 +0900728 BL32_CFLAGS += -fpie
729 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100730endif #(ENABLE_PIE)
Soby Mathew078f1a42018-08-28 11:13:55 +0100731
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000732BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
733BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
734BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
735
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900736BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600737ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100738 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900739else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100740 BL2_CPPFLAGS += -DIMAGE_AT_EL1
741endif #(RESET_TO_BL2)
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000742
743ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100744 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
745 BL31_CPPFLAGS += -DIMAGE_AT_EL3
746 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000747else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100748 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900749endif
750
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000751# Include the CPU specific operations makefile, which provides default
752# values for all CPU errata workarounds and CPU specific optimisations.
753# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100754include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100755
dp-armcdd03cb2017-02-15 11:07:55 +0000756################################################################################
757# Build `AARCH32_SP` as BL32 image for AArch32
758################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100759ifeq (${ARCH},aarch32)
760 NEED_BL32 := yes
dp-armcdd03cb2017-02-15 11:07:55 +0000761
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100762 ifneq (${AARCH32_SP},none)
763 # We expect to locate an sp.mk under the specified AARCH32_SP directory
764 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-armcdd03cb2017-02-15 11:07:55 +0000765
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100766 ifeq (${AARCH32_SP_MAKE},)
767 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
768 endif
Juan Pablo Conde6aba3b12023-08-09 13:19:21 -0500769 $(info Including ${AARCH32_SP_MAKE})
770 include ${AARCH32_SP_MAKE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100771 endif
772endif #(ARCH=aarch32)
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800773
774################################################################################
775# Include libc if not overridden
776################################################################################
777ifeq (${OVERRIDE_LIBC},0)
778include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000779endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100780
781################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100782# Check incompatible options and dependencies
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000783################################################################################
784
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100785# USE_DEBUGFS experimental feature recommended only in debug builds
786ifeq (${USE_DEBUGFS},1)
787 ifeq (${DEBUG},1)
788 $(warning DEBUGFS experimental feature is enabled.)
789 else
790 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800791 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100792endif #(USE_DEBUGFS)
793
794# USE_SPINLOCK_CAS requires AArch64 build
795ifeq (${USE_SPINLOCK_CAS},1)
796 ifneq (${ARCH},aarch64)
797 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800798 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100799endif #(USE_SPINLOCK_CAS)
800
801# The cert_create tool cannot generate certificates individually, so we use the
802# target 'certificates' to create them all
803ifneq (${GENERATE_COT},0)
804 FIP_DEPS += certificates
805 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000806endif
807
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100808ifneq (${DECRYPTION_SUPPORT},none)
809 ENC_ARGS += -f ${FW_ENC_STATUS}
810 ENC_ARGS += -k ${ENC_KEY}
811 ENC_ARGS += -n ${ENC_NONCE}
812 FIP_DEPS += enctool
813 FWU_FIP_DEPS += enctool
814endif #(DECRYPTION_SUPPORT)
815
816ifdef EL3_PAYLOAD_BASE
817 ifdef PRELOADED_BL33_BASE
818 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
819 incompatible build options. EL3_PAYLOAD_BASE has priority.")
820 endif
821 ifneq (${GENERATE_COT},0)
822 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
823 build options.")
824 endif
825 ifneq (${TRUSTED_BOARD_BOOT},0)
826 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
827 incompatible \ build options.")
828 endif
829endif #(EL3_PAYLOAD_BASE)
830
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000831ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100832 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000833 $(warning "BL33 image is not needed when option \
834 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100835 endif
836 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100837 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100838 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
839 endif
840endif #(NEED_BL33)
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000841
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000842# When building for systems with hardware-assisted coherency, there's no need to
843# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
844ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100845 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000846endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100847
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600848#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
849ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100850 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000851endif
852
Manish Pandeyd419e222023-02-13 12:39:17 +0000853# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100854ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100855 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100856 and HANDLE_EA_EL3_FIRST_NS instead")
Manish Pandeyd419e222023-02-13 12:39:17 +0000857endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100858
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100859
Manish Pandeyd419e222023-02-13 12:39:17 +0000860# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000861ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100862 ifeq ($(ENABLE_FEAT_RAS),0)
863 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
864 endif
865endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000866
Roberto Vargas025946a2018-09-24 17:20:48 +0100867# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100868ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100869 ifeq (${TRUSTED_BOARD_BOOT}, 0)
870 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
871 to be set.")
872 endif
873endif #(DYN_DISABLE_AUTH)
Soby Mathew9fe88042018-03-26 12:43:37 +0100874
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100875ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
876# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100877 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100878else ifeq ($(DRTM_SUPPORT)-$(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 ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
882# Support hash calculation only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100883 CRYPTO_SUPPORT := 2
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100884else ifeq (${TRUSTED_BOARD_BOOT},1)
885# Support authentication verification only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100886 CRYPTO_SUPPORT := 1
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000887else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100888 CRYPTO_SUPPORT := 0
889endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000890
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +0100891# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
892ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100893 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +0100894endif
895
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000896# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100897# registers associated to it are also saved and restored.
898# 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 +0000899ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100900 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
901 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
902 endif
903endif #(ENABLE_PAUTH)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100904
905ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100906 ifneq (${ARCH},aarch64)
907 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
908 endif
909endif #(CTX_INCLUDE_PAUTH_REGS)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000910
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000911ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100912 $(info FEATURE_DETECTION is an experimental feature)
913endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000914
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000915ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100916 ifeq (${ENABLE_SME_FOR_NS}, 0)
917 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
918 to be set")
919 $(warning "Forced ENABLE_SME_FOR_NS=1")
920 override ENABLE_SME_FOR_NS := 1
921 endif
922endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000923
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000924ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100925 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
926 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
927 library v2")
928 endif
929endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000930
Sumit Garg392e4df2019-11-15 10:43:00 +0530931ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100932 ifeq (${TRUSTED_BOARD_BOOT}, 0)
933 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
934 to be set)
935 endif
936endif #(DECRYPTION_SUPPORT)
Sumit Garg392e4df2019-11-15 10:43:00 +0530937
johpow0181865962022-01-28 17:06:20 -0600938# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -0500939ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -0600940
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100941 # SME/SVE only supported on AArch64
942 ifneq (${ENABLE_SME_FOR_NS},0)
943 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
944 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000945
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100946 ifeq (${ENABLE_SVE_FOR_NS},1)
947 # Warning instead of error due to CI dependency on this
948 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
949 endif
johpow0181865962022-01-28 17:06:20 -0600950
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100951 # BRBE is not supported in AArch32
952 ifeq (${ENABLE_BRBE_FOR_NS},1)
953 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
954 endif
johpow0181865962022-01-28 17:06:20 -0600955
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100956 # FEAT_RNG_TRAP is not supported in AArch32
957 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
958 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
959 endif
960endif #(ARCH=aarch32)
johpow019baade32021-07-08 14:14:00 -0500961
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000962ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100963 ifeq (${ENABLE_SVE_FOR_NS},0)
964 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
965 endif
966endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000967
johpow019baade32021-07-08 14:14:00 -0500968# Secure SME/SVE requires the non-secure component as well
969ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100970 ifeq (${ENABLE_SME_FOR_NS},0)
971 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
972 endif
973 ifeq (${ENABLE_SVE_FOR_SWD},0)
974 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
975 endif
976endif #(ENABLE_SME_FOR_SWD)
977
Madhukar Pappireddy7ff1be82024-06-17 15:28:33 -0500978# Enabling SVE for SWD requires enabling SVE for NWD due to ENABLE_FEAT
979# mechanism.
johpow019baade32021-07-08 14:14:00 -0500980ifeq (${ENABLE_SVE_FOR_SWD},1)
Madhukar Pappireddy7ff1be82024-06-17 15:28:33 -0500981 ifeq (${ENABLE_SVE_FOR_NS},0)
982 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
983 endif
984endif
johpow019baade32021-07-08 14:14:00 -0500985
Madhukar Pappireddy7ff1be82024-06-17 15:28:33 -0500986# Enabling SVE for both the worlds typically requires the context
987# management of SVE registers. The only exception being SPMC at S-EL2.
988ifeq (${ENABLE_SVE_FOR_SWD}, 1)
989 ifneq (${ENABLE_SVE_FOR_NS}, 0)
990 ifeq (${CTX_INCLUDE_SVE_REGS}-$(SPMD_SPM_AT_SEL2),0-0)
991 $(warning "ENABLE_SVE_FOR_SWD and ENABLE_SVE_FOR_NS together require CTX_INCLUDE_SVE_REGS")
992 endif
993 endif
994endif
995
996# Enabling SVE in either world while enabling CTX_INCLUDE_FPREGS requires
997# CTX_INCLUDE_SVE_REGS to be enabled due to architectural dependency between FP
998# and SVE registers.
999ifeq (${CTX_INCLUDE_FPREGS}, 1)
1000 ifneq (${ENABLE_SVE_FOR_NS},0)
1001 ifeq (${CTX_INCLUDE_SVE_REGS},0)
1002 # Warning instead of error due to CI dependency on this
1003 $(warning "CTX_INCLUDE_FPREGS and ENABLE_SVE_FOR_NS together require CTX_INCLUDE_SVE_REGS")
1004 $(warning "Forced ENABLE_SVE_FOR_NS=0")
1005 override ENABLE_SVE_FOR_NS := 0
1006 endif
1007 endif
1008endif #(CTX_INCLUDE_FPREGS)
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001009
Madhukar Pappireddy7ff1be82024-06-17 15:28:33 -05001010# SVE context management is only required if secure world has access to SVE/FP
1011# functionality.
1012ifeq (${CTX_INCLUDE_SVE_REGS},1)
1013 ifeq (${ENABLE_SVE_FOR_SWD},0)
1014 $(error "CTX_INCLUDE_SVE_REGS requires ENABLE_SVE_FOR_SWD to also be enabled")
1015 endif
1016endif
1017
1018# SME cannot be used with CTX_INCLUDE_FPREGS since SPM does its own context
1019# management including FPU registers.
1020ifeq (${CTX_INCLUDE_FPREGS},1)
1021 ifneq (${ENABLE_SME_FOR_NS},0)
1022 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1023 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001024endif #(CTX_INCLUDE_FPREGS)
johpow019baade32021-07-08 14:14:00 -05001025
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001026ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001027 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001028endif
1029
Raymond Mao98983392023-07-25 07:53:35 -07001030ifeq (${TRANSFER_LIST},1)
1031 $(info TRANSFER_LIST is an experimental feature)
1032endif
1033
Chris Kayd02c2312022-09-29 16:21:24 +01001034ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001035 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1036 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1037 endif
Chris Kayd02c2312022-09-29 16:21:24 +01001038endif
1039
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001040ifeq ($(PSA_CRYPTO),1)
1041 $(info PSA_CRYPTO is an experimental feature)
1042endif
1043
Manish V Badarkhed8d7d932024-05-09 12:14:13 +01001044ifeq ($(DICE_PROTECTION_ENVIRONMENT),1)
1045 $(info DICE_PROTECTION_ENVIRONMENT is an experimental feature)
1046endif
1047
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001048################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001049# Process platform overrideable behaviour
1050################################################################################
1051
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001052ifdef BL1_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001053 NEED_BL1 := yes
1054endif #(BL1_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001055
Jon Medhurst66573cb2014-02-13 15:19:28 +00001056ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001057 NEED_BL2 := yes
1058
1059 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1060 # Certificate generation tools. This flag can be overridden by the platform.
1061 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001062 # If booting an EL3 payload there is no need for a BL33 image
1063 # in the FIP file.
1064 NEED_BL33 := no
1065 else
1066 ifdef PRELOADED_BL33_BASE
1067 # If booting a BL33 preloaded image there is no need of
1068 # another one in the FIP file.
1069 NEED_BL33 := no
1070 else
1071 NEED_BL33 ?= yes
1072 endif
1073 endif
1074endif #(BL2_SOURCES)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001075
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001076ifdef BL2U_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001077 NEED_BL2U := yes
1078endif #(BL2U_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001079
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001080# If SCP_BL2 is given, we always want FIP to include it.
1081ifdef SCP_BL2
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001082 NEED_SCP_BL2 := yes
1083endif #(SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001084
Soby Mathewbf169232017-11-14 14:10:10 +00001085# For AArch32, BL31 is not currently supported.
1086ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001087 ifdef BL31_SOURCES
1088 # When booting an EL3 payload, there is no need to compile the BL31
1089 # image nor put it in the FIP.
1090 ifndef EL3_PAYLOAD_BASE
1091 NEED_BL31 := yes
1092 endif
1093 endif
1094endif #(ARCH=aarch64)
Soby Mathewbf169232017-11-14 14:10:10 +00001095
Juan Castilloa3487d12015-08-18 14:23:04 +01001096# Process TBB related flags
1097ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001098 # Common cert_create options
1099 ifneq (${CREATE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001100 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001101 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001102 ifneq (${SAVE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001103 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001104 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001105 endif
1106 endif
1107 # Include TBBR makefile (unless the platform indicates otherwise)
1108 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castilloa3487d12015-08-18 14:23:04 +01001109 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001110 endif
1111endif #(GENERATE_COT)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001112
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001113ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001114 FIP_ARGS += --align ${FIP_ALIGN}
1115endif #(FIP_ALIGN)
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001116
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001117ifdef FDT_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001118 NEED_FDT := yes
1119endif #(FDT_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001120
Juan Castilloa3487d12015-08-18 14:23:04 +01001121################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +08001122# Include libraries' Makefile that are used in all BL
1123################################################################################
1124
1125include lib/stack_protector/stack_protector.mk
1126
1127################################################################################
Soby Mathew574e01e2017-02-14 10:05:07 +00001128# Include BL specific makefiles
1129################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001130
1131ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001132include bl1/bl1.mk
1133endif
1134
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001135ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001136include bl2/bl2.mk
1137endif
1138
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001139ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001140include bl2u/bl2u.mk
1141endif
1142
Soby Mathewbf169232017-11-14 14:10:10 +00001143ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001144include bl31/bl31.mk
1145endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001146
Soby Mathew574e01e2017-02-14 10:05:07 +00001147################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001148# Build options checks
1149################################################################################
1150
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001151# Boolean_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001152$(eval $(call assert_booleans,\
1153 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001154 ALLOW_RO_XLAT_TABLES \
1155 BL2_ENABLE_SP_LOAD \
1156 COLD_BOOT_SINGLE_CPU \
1157 CREATE_KEYS \
1158 CTX_INCLUDE_AARCH32_REGS \
1159 CTX_INCLUDE_FPREGS \
Madhukar Pappireddydd9af9b2024-06-17 15:17:03 -05001160 CTX_INCLUDE_SVE_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001161 CTX_INCLUDE_EL2_REGS \
Arvind Ram Prakash4851b492023-10-06 14:35:21 -05001162 CTX_INCLUDE_MPAM_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001163 DEBUG \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001164 DYN_DISABLE_AUTH \
1165 EL3_EXCEPTION_HANDLING \
1166 ENABLE_AMU_AUXILIARY_COUNTERS \
1167 ENABLE_AMU_FCONF \
1168 AMU_RESTRICT_COUNTERS \
1169 ENABLE_ASSERTIONS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001170 ENABLE_PIE \
1171 ENABLE_PMF \
1172 ENABLE_PSCI_STAT \
1173 ENABLE_RUNTIME_INSTRUMENTATION \
1174 ENABLE_SME_FOR_SWD \
1175 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001176 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001177 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001178 ERROR_DEPRECATED \
1179 FAULT_INJECTION_SUPPORT \
1180 GENERATE_COT \
1181 GICV2_G0_FOR_EL3 \
1182 HANDLE_EA_EL3_FIRST_NS \
Bipin Ravie53e6ae2023-09-28 13:17:24 -05001183 HARDEN_SLS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001184 HW_ASSISTED_COHERENCY \
1185 MEASURED_BOOT \
Tamas Bana4260892023-06-07 13:35:04 +02001186 DICE_PROTECTION_ENVIRONMENT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001187 DRTM_SUPPORT \
1188 NS_TIMER_SWITCH \
1189 OVERRIDE_LIBC \
1190 PL011_GENERIC_UART \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001191 PROGRAMMABLE_RESET_ADDRESS \
1192 PSCI_EXTENDED_STATE_ID \
1193 PSCI_OS_INIT_MODE \
1194 RESET_TO_BL31 \
1195 SAVE_KEYS \
1196 SEPARATE_CODE_AND_RODATA \
1197 SEPARATE_BL2_NOLOAD_REGION \
1198 SEPARATE_NOBITS_REGION \
Madhukar Pappireddy5c1b8d92024-06-17 15:26:00 -05001199 SEPARATE_SIMD_SECTION \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001200 SPIN_ON_BL1_EXIT \
1201 SPM_MM \
1202 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001203 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001204 SPMD_SPM_AT_SEL2 \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001205 ENABLE_SPMD_LP \
Raymond Mao98983392023-07-25 07:53:35 -07001206 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001207 TRUSTED_BOARD_BOOT \
1208 USE_COHERENT_MEM \
1209 USE_DEBUGFS \
1210 ARM_IO_IN_DTB \
1211 SDEI_IN_FCONF \
1212 SEC_INT_DESC_IN_FCONF \
1213 USE_ROMLIB \
1214 USE_TBBR_DEFS \
1215 WARMBOOT_ENABLE_DCACHE_EARLY \
1216 RESET_TO_BL2 \
1217 BL2_IN_XIP_MEM \
1218 BL2_INV_DCACHE \
1219 USE_SPINLOCK_CAS \
1220 ENCRYPT_BL31 \
1221 ENCRYPT_BL32 \
1222 ERRATA_SPECULATIVE_AT \
1223 RAS_TRAP_NS_ERR_REC_ACCESS \
1224 COT_DESC_IN_DTB \
1225 USE_SP804_TIMER \
1226 PSA_FWU_SUPPORT \
Sughosh Ganu61905e52024-02-01 12:51:20 +05301227 PSA_FWU_METADATA_FW_STORE_DESC \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001228 ENABLE_MPMM \
1229 ENABLE_MPMM_FCONF \
1230 FEATURE_DETECTION \
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +01001231 TRNG_SUPPORT \
Sona Mathew7fe03522022-11-18 18:05:38 -06001232 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001233 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001234 CONDITIONAL_CMO \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001235 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001236 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash8bd27c92023-08-15 16:28:06 -05001237 INIT_UNUSED_NS_EL2 \
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001238 PLATFORM_REPORT_CTX_MEM_USE \
Yann Gautier5ae29c02024-01-16 19:39:31 +01001239 EARLY_CONSOLE \
Arvind Ram Prakasheaa90192023-12-21 00:25:52 -06001240 PRESERVE_DSU_PMU_REGS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001241)))
Dan Handley81be1002015-03-27 17:44:35 +00001242
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001243# Numeric_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001244$(eval $(call assert_numerics,\
1245 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001246 ARM_ARCH_MAJOR \
1247 ARM_ARCH_MINOR \
1248 BRANCH_PROTECTION \
1249 CTX_INCLUDE_PAUTH_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001250 CTX_INCLUDE_NEVE_REGS \
1251 CRYPTO_SUPPORT \
Boyan Karatotev677ed8a2023-02-16 09:45:29 +00001252 DISABLE_MTPMU \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001253 ENABLE_BRBE_FOR_NS \
1254 ENABLE_TRBE_FOR_NS \
1255 ENABLE_BTI \
1256 ENABLE_PAUTH \
1257 ENABLE_FEAT_AMU \
1258 ENABLE_FEAT_AMUv1p1 \
1259 ENABLE_FEAT_CSV2_2 \
Sona Mathew3b84c962023-10-25 16:48:19 -05001260 ENABLE_FEAT_CSV2_3 \
Arvind Ram Prakash05b47632024-05-22 15:24:00 -05001261 ENABLE_FEAT_DEBUGV8P9 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001262 ENABLE_FEAT_DIT \
1263 ENABLE_FEAT_ECV \
1264 ENABLE_FEAT_FGT \
Arvind Ram Prakash62d87e72024-06-06 11:33:37 -05001265 ENABLE_FEAT_FGT2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001266 ENABLE_FEAT_HCX \
Govindraj Rajad7b63ac2024-01-26 10:08:37 -06001267 ENABLE_FEAT_MTE2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001268 ENABLE_FEAT_PAN \
1269 ENABLE_FEAT_RNG \
1270 ENABLE_FEAT_RNG_TRAP \
1271 ENABLE_FEAT_SEL2 \
1272 ENABLE_FEAT_TCR2 \
Govindraj Rajac2dad572024-01-23 16:03:53 -06001273 ENABLE_FEAT_SB \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001274 ENABLE_FEAT_S2PIE \
1275 ENABLE_FEAT_S1PIE \
1276 ENABLE_FEAT_S2POE \
1277 ENABLE_FEAT_S1POE \
1278 ENABLE_FEAT_GCS \
1279 ENABLE_FEAT_VHE \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001280 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001281 ENABLE_RME \
1282 ENABLE_SPE_FOR_NS \
1283 ENABLE_SYS_REG_TRACE_FOR_NS \
1284 ENABLE_SME_FOR_NS \
1285 ENABLE_SME2_FOR_NS \
1286 ENABLE_SVE_FOR_NS \
1287 ENABLE_TRF_FOR_NS \
1288 FW_ENC_STATUS \
1289 NR_OF_FW_BANKS \
1290 NR_OF_IMAGES_IN_FW_BANK \
1291 TWED_DELAY \
1292 ENABLE_FEAT_TWED \
1293 SVE_VECTOR_LEN \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001294 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001295)))
Jeenu Viswambharanfca76802017-01-16 16:52:35 +00001296
Justin Chadwellf9b32c12019-07-29 17:13:10 +01001297ifdef KEY_SIZE
1298 $(eval $(call assert_numeric,KEY_SIZE))
1299endif
1300
Justin Chadwell83e04882019-08-20 11:01:52 +01001301ifeq ($(filter $(SANITIZE_UB), on off trap),)
1302 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1303endif
1304
Juan Castilloa3487d12015-08-18 14:23:04 +01001305################################################################################
1306# Add definitions to the cpp preprocessor based on the current build options.
1307# This is done after including the platform specific makefile to allow the
1308# platform to overwrite the default options
1309################################################################################
Jeenu Viswambharand1b60152014-05-12 15:28:47 +01001310
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001311$(eval $(call add_defines,\
1312 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001313 ALLOW_RO_XLAT_TABLES \
1314 ARM_ARCH_MAJOR \
1315 ARM_ARCH_MINOR \
1316 BL2_ENABLE_SP_LOAD \
1317 COLD_BOOT_SINGLE_CPU \
1318 CTX_INCLUDE_AARCH32_REGS \
1319 CTX_INCLUDE_FPREGS \
Madhukar Pappireddydd9af9b2024-06-17 15:17:03 -05001320 CTX_INCLUDE_SVE_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001321 CTX_INCLUDE_PAUTH_REGS \
Arvind Ram Prakash4851b492023-10-06 14:35:21 -05001322 CTX_INCLUDE_MPAM_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001323 EL3_EXCEPTION_HANDLING \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001324 CTX_INCLUDE_EL2_REGS \
1325 CTX_INCLUDE_NEVE_REGS \
1326 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1327 DISABLE_MTPMU \
1328 ENABLE_FEAT_AMU \
1329 ENABLE_AMU_AUXILIARY_COUNTERS \
1330 ENABLE_AMU_FCONF \
1331 AMU_RESTRICT_COUNTERS \
1332 ENABLE_ASSERTIONS \
1333 ENABLE_BTI \
Arvind Ram Prakash05b47632024-05-22 15:24:00 -05001334 ENABLE_FEAT_DEBUGV8P9 \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001335 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001336 ENABLE_PAUTH \
1337 ENABLE_PIE \
1338 ENABLE_PMF \
1339 ENABLE_PSCI_STAT \
1340 ENABLE_RME \
1341 ENABLE_RUNTIME_INSTRUMENTATION \
1342 ENABLE_SME_FOR_NS \
1343 ENABLE_SME2_FOR_NS \
1344 ENABLE_SME_FOR_SWD \
1345 ENABLE_SPE_FOR_NS \
1346 ENABLE_SVE_FOR_NS \
1347 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001348 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001349 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001350 ENCRYPT_BL31 \
1351 ENCRYPT_BL32 \
1352 ERROR_DEPRECATED \
1353 FAULT_INJECTION_SUPPORT \
1354 GICV2_G0_FOR_EL3 \
1355 HANDLE_EA_EL3_FIRST_NS \
1356 HW_ASSISTED_COHERENCY \
1357 LOG_LEVEL \
1358 MEASURED_BOOT \
Tamas Bana4260892023-06-07 13:35:04 +02001359 DICE_PROTECTION_ENVIRONMENT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001360 DRTM_SUPPORT \
1361 NS_TIMER_SWITCH \
1362 PL011_GENERIC_UART \
1363 PLAT_${PLAT} \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001364 PROGRAMMABLE_RESET_ADDRESS \
1365 PSCI_EXTENDED_STATE_ID \
1366 PSCI_OS_INIT_MODE \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001367 RESET_TO_BL31 \
AlexeiFedorovc0ca2d72024-05-13 15:35:54 +01001368 RME_GPT_BITLOCK_BLOCK \
AlexeiFedorovbd8b1bb2024-03-13 17:07:03 +00001369 RME_GPT_MAX_BLOCK \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001370 SEPARATE_CODE_AND_RODATA \
1371 SEPARATE_BL2_NOLOAD_REGION \
1372 SEPARATE_NOBITS_REGION \
Madhukar Pappireddy5c1b8d92024-06-17 15:26:00 -05001373 SEPARATE_SIMD_SECTION \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001374 RECLAIM_INIT_CODE \
1375 SPD_${SPD} \
1376 SPIN_ON_BL1_EXIT \
1377 SPM_MM \
1378 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001379 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001380 SPMD_SPM_AT_SEL2 \
Raymond Mao98983392023-07-25 07:53:35 -07001381 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001382 TRUSTED_BOARD_BOOT \
1383 CRYPTO_SUPPORT \
1384 TRNG_SUPPORT \
1385 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001386 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001387 USE_COHERENT_MEM \
1388 USE_DEBUGFS \
1389 ARM_IO_IN_DTB \
1390 SDEI_IN_FCONF \
1391 SEC_INT_DESC_IN_FCONF \
1392 USE_ROMLIB \
1393 USE_TBBR_DEFS \
1394 WARMBOOT_ENABLE_DCACHE_EARLY \
1395 RESET_TO_BL2 \
1396 BL2_RUNS_AT_EL3 \
1397 BL2_IN_XIP_MEM \
1398 BL2_INV_DCACHE \
1399 USE_SPINLOCK_CAS \
1400 ERRATA_SPECULATIVE_AT \
1401 RAS_TRAP_NS_ERR_REC_ACCESS \
1402 COT_DESC_IN_DTB \
1403 USE_SP804_TIMER \
1404 ENABLE_FEAT_RNG \
1405 ENABLE_FEAT_RNG_TRAP \
1406 ENABLE_FEAT_SB \
1407 ENABLE_FEAT_DIT \
1408 NR_OF_FW_BANKS \
1409 NR_OF_IMAGES_IN_FW_BANK \
1410 PSA_FWU_SUPPORT \
Sughosh Ganu61905e52024-02-01 12:51:20 +05301411 PSA_FWU_METADATA_FW_STORE_DESC \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001412 ENABLE_BRBE_FOR_NS \
1413 ENABLE_TRBE_FOR_NS \
1414 ENABLE_SYS_REG_TRACE_FOR_NS \
1415 ENABLE_TRF_FOR_NS \
1416 ENABLE_FEAT_HCX \
1417 ENABLE_MPMM \
1418 ENABLE_MPMM_FCONF \
1419 ENABLE_FEAT_FGT \
Arvind Ram Prakash62d87e72024-06-06 11:33:37 -05001420 ENABLE_FEAT_FGT2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001421 ENABLE_FEAT_ECV \
1422 ENABLE_FEAT_AMUv1p1 \
1423 ENABLE_FEAT_SEL2 \
1424 ENABLE_FEAT_VHE \
1425 ENABLE_FEAT_CSV2_2 \
Sona Mathew3b84c962023-10-25 16:48:19 -05001426 ENABLE_FEAT_CSV2_3 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001427 ENABLE_FEAT_PAN \
1428 ENABLE_FEAT_TCR2 \
1429 ENABLE_FEAT_S2PIE \
1430 ENABLE_FEAT_S1PIE \
1431 ENABLE_FEAT_S2POE \
1432 ENABLE_FEAT_S1POE \
1433 ENABLE_FEAT_GCS \
Govindraj Rajad7b63ac2024-01-26 10:08:37 -06001434 ENABLE_FEAT_MTE2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001435 FEATURE_DETECTION \
1436 TWED_DELAY \
1437 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001438 CONDITIONAL_CMO \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001439 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidanand23c2fe22023-04-26 15:57:30 +01001440 SVE_VECTOR_LEN \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001441 ENABLE_SPMD_LP \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001442 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001443 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash8bd27c92023-08-15 16:28:06 -05001444 INIT_UNUSED_NS_EL2 \
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001445 PLATFORM_REPORT_CTX_MEM_USE \
Yann Gautier5ae29c02024-01-16 19:39:31 +01001446 EARLY_CONSOLE \
Arvind Ram Prakasheaa90192023-12-21 00:25:52 -06001447 PRESERVE_DSU_PMU_REGS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001448)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001449
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001450ifeq (${PLATFORM_REPORT_CTX_MEM_USE}, 1)
1451ifeq (${DEBUG}, 0)
1452 $(warning "PLATFORM_REPORT_CTX_MEM_USE can be applied when DEBUG=1 only")
1453 override PLATFORM_REPORT_CTX_MEM_USE := 0
1454endif
1455endif
1456
Justin Chadwell83e04882019-08-20 11:01:52 +01001457ifeq (${SANITIZE_UB},trap)
1458 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001459endif #(SANITIZE_UB)
Justin Chadwell83e04882019-08-20 11:01:52 +01001460
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001461# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1462ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001463 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1464else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001465# Define the PRELOADED_BL33_BASE flag only if it is provided and
1466# EL3_PAYLOAD_BASE is not defined, as it has priority.
1467 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001468 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001469 endif
1470endif #(EL3_PAYLOAD_BASE)
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001471
Soby Mathew9fe88042018-03-26 12:43:37 +01001472# Define the DYN_DISABLE_AUTH flag only if set.
1473ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001474 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew9fe88042018-03-26 12:43:37 +01001475endif
1476
Chris Kaycfba6452023-12-04 09:55:50 +00001477ifeq ($($(ARCH)-ld-id),arm-link)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001478 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekar4d034c52019-01-11 14:47:48 -08001479endif
1480
Manish Pandey3f90ad72020-01-14 11:52:05 +00001481# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001482ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001483ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001484 -include $(BUILD_PLAT)/sp_gen.mk
1485 FIP_DEPS += sp
1486 CRT_DEPS += sp
1487 NEED_SP_PKG := yes
Manish Pandey3f90ad72020-01-14 11:52:05 +00001488else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001489 ifeq (${SPMD_SPM_AT_SEL2},1)
1490 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1491 endif
1492endif #(SP_LAYOUT_FILE)
1493endif #(SPD)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001494
Juan Castilloa3487d12015-08-18 14:23:04 +01001495################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001496# Build targets
1497################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001498
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301499.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 +01001500.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001501
Juan Castilloa3487d12015-08-18 14:23:04 +01001502all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001503
Juan Castilloa3487d12015-08-18 14:23:04 +01001504msg_start:
Chris Kay1870c722024-05-02 17:52:37 +00001505 $(s)echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001506
Soby Mathew18a62042015-10-26 14:29:21 +00001507ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001508# Check if deprecated declarations and cpp warnings should be treated as error or not.
Chris Kaycfba6452023-12-04 09:55:50 +00001509ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
Varun Wadekar4d034c52019-01-11 14:47:48 -08001510 CPPFLAGS += -Wno-error=deprecated-declarations
1511else
Dan Handley6fa89a22018-02-27 16:03:58 +00001512 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001513endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001514endif #(!ERROR_DEPRECATED)
Soby Mathew18a62042015-10-26 14:29:21 +00001515
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001516$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001517
Juan Castilloa3487d12015-08-18 14:23:04 +01001518# Expand build macros for the different images
1519ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001520BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001521$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001522endif #(NEED_BL1)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001523
Juan Castilloa3487d12015-08-18 14:23:04 +01001524ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001525
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001526ifeq (${RESET_TO_BL2}, 0)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001527FIP_BL2_ARGS := tb-fw
1528endif
1529
Chris Kayfb3b0512021-09-28 15:44:37 +01001530BL2_SOURCES := $(sort ${BL2_SOURCES})
1531
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001532$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001533 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001534
1535endif #(NEED_BL2)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001536
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001537ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001538$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001539endif #(NEED_SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001540
Juan Castilloa3487d12015-08-18 14:23:04 +01001541ifeq (${NEED_BL31},yes)
1542BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001543# Sort BL31 source files to remove duplicates
1544BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301545ifneq (${DECRYPTION_SUPPORT},none)
1546$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001547 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301548else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001549$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001550 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001551endif #(DECRYPTION_SUPPORT)
1552endif #(NEED_BL31)
Juan Castillo379954c2014-11-04 17:36:40 +00001553
Juan Castillo671b8db2015-11-12 10:59:26 +00001554# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001555# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001556# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001557ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001558# Sort BL32 source files to remove duplicates
1559BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001560BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1561
Sumit Gargeec52442019-11-14 16:33:45 +05301562ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001563$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301564 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1565else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001566$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001567 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001568endif #(DECRYPTION_SUPPORT)
1569endif #(NEED_BL32)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001570
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001571# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1572# needs to be built from RMM_SOURCES.
1573ifeq (${NEED_RMM},yes)
1574# Sort RMM source files to remove duplicates
1575RMM_SOURCES := $(sort ${RMM_SOURCES})
1576BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1577
1578$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001579 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1580endif #(NEED_RMM)
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001581
Juan Castilloa3487d12015-08-18 14:23:04 +01001582# Add the BL33 image if required by the platform
1583ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001584$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001585endif #(NEED_BL33)
Juan Castillo9c25a402015-01-13 12:21:04 +00001586
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001587ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001588$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001589 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001590endif #(NEED_BL2U)
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001591
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001592# Expand build macros for the different images
1593ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001594 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001595endif #(NEED_FDT)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001596
Manish Pandey3f90ad72020-01-14 11:52:05 +00001597# Add Secure Partition packages
1598ifeq (${NEED_SP_PKG},yes)
Chris Kayd67442e2024-07-30 13:33:56 +00001599$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | $$(@D)/
Chris Kay1870c722024-05-02 17:52:37 +00001600 $(q)${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
J-Alvesef8e0982022-03-22 16:28:51 +00001601sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Chris Kay1870c722024-05-02 17:52:37 +00001602 $(s)echo
1603 $(s)echo "Built SP Images successfully"
1604 $(s)echo
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001605endif #(NEED_SP_PKG)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001606
Ian Spray36eaaf32014-01-30 17:25:28 +00001607locate-checkpatch:
1608ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001609 $(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 +00001610else
1611ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001612 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001613endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001614endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001615
Achin Gupta4f6ad662013-10-25 09:08:21 +01001616clean:
Chris Kay1870c722024-05-02 17:52:37 +00001617 $(s)echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001618 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Xialin Liucfc47762024-06-28 12:52:29 -05001619 $(q)${MAKE} -C ${CERTCONVPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001620ifdef UNIX_MK
Chris Kay1870c722024-05-02 17:52:37 +00001621 $(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001622else
1623# Clear the MAKEFLAGS as we do not want
1624# to pass the gnumake flags to nmake.
Chris Kay1870c722024-05-02 17:52:37 +00001625 $(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 +01001626endif #(UNIX_MK)
Chris Kay1870c722024-05-02 17:52:37 +00001627 $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
1628 $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
1629 $(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001630
James Morrisseyeaaeece2013-11-01 13:56:59 +00001631realclean distclean:
Chris Kay1870c722024-05-02 17:52:37 +00001632 $(s)echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001633 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1634 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Xialin Liucfc47762024-06-28 12:52:29 -05001635 $(q)${MAKE} -C ${CERTCONVPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001636ifdef UNIX_MK
Chris Kay1870c722024-05-02 17:52:37 +00001637 $(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001638else
1639# Clear the MAKEFLAGS as we do not want
1640# to pass the gnumake flags to nmake.
Chris Kay1870c722024-05-02 17:52:37 +00001641 $(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 +01001642endif #(UNIX_MK)
Chris Kay1870c722024-05-02 17:52:37 +00001643 $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
1644 $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
1645 $(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001646
Ian Spray36eaaf32014-01-30 17:25:28 +00001647checkcodebase: locate-checkpatch
Chris Kay1870c722024-05-02 17:52:37 +00001648 $(s)echo " CHECKING STYLE"
1649 $(q)if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001650 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001651 while read GIT_FILE ; \
1652 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1653 done ; \
1654 else \
1655 find . -type f -not -iwholename "*.git*" \
1656 -not -iwholename "*build*" \
1657 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001658 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001659 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001660 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001661 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1662 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001663
1664checkpatch: locate-checkpatch
Chris Kay1870c722024-05-02 17:52:37 +00001665 $(s)echo " CHECKING STYLE"
1666 $(q)if test -n "${CHECKPATCH_OPTS}"; then \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001667 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1668 fi
Chris Kay1870c722024-05-02 17:52:37 +00001669 $(q)COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001670 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1671 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001672 printf "\n[*] Checking style of '$$commit'\n\n"; \
1673 git log --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001674 -- ${CHECK_PATHS} | \
1675 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001676 git diff --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 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001680
1681certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001682
Pali Rohár54ff2132020-11-24 15:38:08 +01001683${CRTTOOL}: FORCE
Chris Kay1870c722024-05-02 17:52:37 +00001684 $(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
1685 $(s)echo
1686 $(s)echo "Built $@ successfully"
1687 $(s)echo
Jon Medhurst407a95c2014-02-12 15:54:48 +00001688
Juan Castillo11abdcd2014-10-21 11:30:42 +01001689ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001690certificates: ${CRT_DEPS} ${CRTTOOL}
Chris Kay1870c722024-05-02 17:52:37 +00001691 $(q)${CRTTOOL} ${CRT_ARGS}
1692 $(s)echo
1693 $(s)echo "Built $@ successfully"
1694 $(s)echo "Certificates can be found in ${BUILD_PLAT}"
1695 $(s)echo
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001696endif #(GENERATE_COT)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001697
Juan Castilloa3487d12015-08-18 14:23:04 +01001698${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001699 $(eval ${CHECK_FIP_CMD})
Chris Kay1870c722024-05-02 17:52:37 +00001700 $(q)${FIPTOOL} create ${FIP_ARGS} $@
1701 $(q)${FIPTOOL} info $@
1702 $(s)echo
1703 $(s)echo "Built $@ successfully"
1704 $(s)echo
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001705
Yatharth Kochard1a93432015-10-12 12:33:47 +01001706ifneq (${GENERATE_COT},0)
1707fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
Chris Kay1870c722024-05-02 17:52:37 +00001708 $(q)${CRTTOOL} ${FWU_CRT_ARGS}
1709 $(s)echo
1710 $(s)echo "Built $@ successfully"
1711 $(s)echo "FWU certificates can be found in ${BUILD_PLAT}"
1712 $(s)echo
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001713endif #(GENERATE_COT)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001714
1715${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001716 $(eval ${CHECK_FWU_FIP_CMD})
Chris Kay1870c722024-05-02 17:52:37 +00001717 $(q)${FIPTOOL} create ${FWU_FIP_ARGS} $@
1718 $(q)${FIPTOOL} info $@
1719 $(s)echo
1720 $(s)echo "Built $@ successfully"
1721 $(s)echo
Yatharth Kochard1a93432015-10-12 12:33:47 +01001722
Juan Castilloa3487d12015-08-18 14:23:04 +01001723fiptool: ${FIPTOOL}
1724fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001725fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001726
Pali Rohár54ff2132020-11-24 15:38:08 +01001727${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001728ifdef UNIX_MK
Chris Kay1870c722024-05-02 17:52:37 +00001729 $(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 +01001730else
1731# Clear the MAKEFLAGS as we do not want
1732# to pass the gnumake flags to nmake.
Chris Kay1870c722024-05-02 17:52:37 +00001733 $(q)set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001734endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001735
Pali Rohár54ff2132020-11-24 15:38:08 +01001736romlib.bin: libraries FORCE
Chris Kay1870c722024-05-02 17:52:37 +00001737 $(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 +01001738
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001739memmap: all
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001740ifdef UNIX_MK
Chris Kay1870c722024-05-02 17:52:37 +00001741 $(q)PYTHONPATH=${CURDIR}/tools/memory \
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001742 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1743else
Chris Kay1870c722024-05-02 17:52:37 +00001744 $(q)set PYTHONPATH=${CURDIR}/tools/memory && \
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001745 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1746endif
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001747
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001748doc:
Chris Kay1870c722024-05-02 17:52:37 +00001749 $(s)echo " BUILD DOCUMENTATION"
1750 $(q)${MAKE} --no-print-directory -C ${DOCS_PATH} html
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001751
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301752enctool: ${ENCTOOL}
1753
Pali Rohár54ff2132020-11-24 15:38:08 +01001754${ENCTOOL}: FORCE
Chris Kay1870c722024-05-02 17:52:37 +00001755 $(q)${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} --no-print-directory -C ${ENCTOOLPATH} all
1756 $(s)echo
1757 $(s)echo "Built $@ successfully"
1758 $(s)echo
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301759
Joakim Bech35fab8c2014-01-23 14:51:49 +01001760cscope:
Chris Kay1870c722024-05-02 17:52:37 +00001761 $(s)echo " CSCOPE"
1762 $(q)find ${CURDIR} -name "*.[chsS]" > cscope.files
1763 $(q)cscope -b -q -k
Joakim Bech35fab8c2014-01-23 14:51:49 +01001764
Ryan Harkin72ee3312014-01-15 16:55:07 +00001765help:
Chris Kay1870c722024-05-02 17:52:37 +00001766 $(s)echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
1767 $(s)echo ""
1768 $(s)echo "PLAT is used to specify which platform you wish to build."
1769 $(s)echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
1770 $(s)echo ""
1771 $(s)echo "platform = ${PLATFORM_LIST}"
1772 $(s)echo ""
1773 $(s)echo "Please refer to the User Guide for a list of all supported options."
1774 $(s)echo "Note that the build system doesn't track dependencies for build "
1775 $(s)echo "options. Therefore, if any of the build options are changed "
1776 $(s)echo "from a previous build, a clean build must be performed."
1777 $(s)echo ""
1778 $(s)echo "Supported Targets:"
1779 $(s)echo " all Build all individual bootloader binaries"
1780 $(s)echo " bl1 Build the BL1 binary"
1781 $(s)echo " bl2 Build the BL2 binary"
1782 $(s)echo " bl2u Build the BL2U binary"
1783 $(s)echo " bl31 Build the BL31 binary"
1784 $(s)echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1785 $(s)echo " this builds secure payload specified by AARCH32_SP"
1786 $(s)echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
1787 $(s)echo " fip Build the Firmware Image Package (FIP)"
1788 $(s)echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
1789 $(s)echo " checkcodebase Check the coding style of the entire source tree"
1790 $(s)echo " checkpatch Check the coding style on changes in the current"
1791 $(s)echo " branch against BASE_COMMIT (default origin/master)"
1792 $(s)echo " clean Clean the build for the selected platform"
1793 $(s)echo " cscope Generate cscope index"
1794 $(s)echo " distclean Remove all build artifacts for all platforms"
1795 $(s)echo " certtool Build the Certificate generation tool"
1796 $(s)echo " enctool Build the Firmware encryption tool"
1797 $(s)echo " fiptool Build the Firmware Image Package (FIP) creation tool"
1798 $(s)echo " sp Build the Secure Partition Packages"
1799 $(s)echo " sptool Build the Secure Partition Package creation tool"
1800 $(s)echo " dtbs Build the Device Tree Blobs (if required for the platform)"
1801 $(s)echo " memmap Print the memory map of the built binaries"
1802 $(s)echo " doc Build html based documentation using Sphinx tool"
1803 $(s)echo ""
1804 $(s)echo "Note: most build targets require PLAT to be set to a specific platform."
1805 $(s)echo ""
1806 $(s)echo "example: build all targets for the FVP platform:"
1807 $(s)echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001808
1809.PHONY: FORCE
1810FORCE:;