blob: b44084753f5c3dc0ceb3246b1849f88cee92130c [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
124# Variables for use with ROMLIB
125ROMLIBPATH ?= lib/romlib
126
127# Variable for use with Python
128PYTHON ?= python3
129
130# Variables for use with documentation build using Sphinx tool
131DOCS_PATH ?= docs
132
133################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100134# Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags
Juan Castilloa3487d12015-08-18 14:23:04 +0100135################################################################################
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100136ifeq (${ARM_ARCH_MAJOR},7)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100137 target32-directive = -target arm-none-eabi
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500138# Will set march-directive from platform configuration
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100139else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100140 target32-directive = -target armv8a-none-eabi
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100141endif #(ARM_ARCH_MAJOR)
142
143################################################################################
144# Get Architecture Feature Modifiers
145################################################################################
146arch-features = ${ARM_ARCH_FEATURE}
147
Chris Kaycfba6452023-12-04 09:55:50 +0000148ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
149 ifeq ($($(ARCH)-cc-id),arm-clang)
Govindraj Raja69096412023-06-01 16:29:16 -0500150 TF_CFLAGS_aarch32 := -target arm-arm-none-eabi
151 TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi
originfba80d82022-01-19 16:30:14 +0000152 else
Govindraj Raja69096412023-06-01 16:29:16 -0500153 TF_CFLAGS_aarch32 = $(target32-directive)
154 TF_CFLAGS_aarch64 := -target aarch64-elf
originfba80d82022-01-19 16:30:14 +0000155 endif
156
Chris Kaycfba6452023-12-04 09:55:50 +0000157else ifeq ($($(ARCH)-cc-id),gnu-gcc)
Chris Kay00416dc2024-02-20 16:19:54 +0000158 # Enable LTO only for aarch64
159 ifeq (${ARCH},aarch64)
160 LTO_CFLAGS = $(if $(filter-out 0,$(ENABLE_LTO)),-flto)
zelalem-aweked5f45272019-11-12 16:20:17 -0600161 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100162endif #(clang)
dp-arm320e8442017-05-02 12:00:08 +0100163
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100164# Process Debug flag
165$(eval $(call add_define,DEBUG))
166ifneq (${DEBUG}, 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100167 BUILD_TYPE := debug
168 TF_CFLAGS += -g -gdwarf-4
169 ASFLAGS += -g -Wa,-gdwarf-4
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100170
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100171 # Use LOG_LEVEL_INFO by default for debug builds
172 LOG_LEVEL := 40
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100173else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100174 BUILD_TYPE := release
175 # Use LOG_LEVEL_NOTICE by default for release builds
176 LOG_LEVEL := 20
177endif #(Debug)
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100178
Peiyuan Song44f8f472020-04-25 16:53:43 +0800179# Default build string (git branch and commit)
180ifeq (${BUILD_STRING},)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100181 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
Peiyuan Song44f8f472020-04-25 16:53:43 +0800182endif
laurenw-arme954f652022-07-12 10:12:05 -0500183VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
Peiyuan Song44f8f472020-04-25 16:53:43 +0800184
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100185ifeq (${AARCH32_INSTRUCTION_SET},A32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100186 TF_CFLAGS_aarch32 += -marm
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100187else ifeq (${AARCH32_INSTRUCTION_SET},T32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100188 TF_CFLAGS_aarch32 += -mthumb
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100189else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100190 $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
191endif #(AARCH32_INSTRUCTION_SET)
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100192
Sandrine Bailleux1aa72ec2018-07-03 09:14:45 +0200193TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-arm320e8442017-05-02 12:00:08 +0100194TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathewa1941252016-05-05 14:33:33 +0100195
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100196##############################################################################
197# WARNINGS Configuration
198###############################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100199# General warnings
200WARNINGS := -Wall -Wmissing-include-dirs -Wunused \
Yann Gautier94a40b62021-05-20 13:18:14 +0200201 -Wdisabled-optimization -Wvla -Wshadow \
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000202 -Wredundant-decls
203# stricter warnings
204WARNINGS += -Wextra -Wno-trigraphs
205# too verbose for generic build
206WARNINGS += -Wno-missing-field-initializers \
207 -Wno-type-limits -Wno-sign-compare \
208# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
209WARNINGS += -Wno-unused-parameter
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100210
211# Additional warnings
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000212# Level 1 - infrequent warnings we should have none of
213# full -Wextra
214WARNING1 += -Wsign-compare
215WARNING1 += -Wtype-limits
216WARNING1 += -Wmissing-field-initializers
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100217
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000218# Level 2 - problematic warnings that we want
219# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
220# TODO: disable just for them and move into default build
221WARNING2 += -Wold-style-definition
222WARNING2 += -Wmissing-prototypes
223WARNING2 += -Wmissing-format-attribute
224# TF-A aims to comply with this eventually. Effort too large at present
225WARNING2 += -Wundef
Boyan Karatotev9c6ba592022-11-21 14:49:05 +0000226# currently very involved and many platforms set this off
227WARNING2 += -Wunused-const-variable=2
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100228
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000229# Level 3 - very pedantic, frequently ignored
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100230WARNING3 := -Wbad-function-cast
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000231WARNING3 += -Waggregate-return
232WARNING3 += -Wnested-externs
233WARNING3 += -Wcast-align
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100234WARNING3 += -Wcast-qual
235WARNING3 += -Wconversion
236WARNING3 += -Wpacked
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100237WARNING3 += -Wpointer-arith
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100238WARNING3 += -Wswitch-default
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100239
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000240# Setting W is quite verbose and most warnings will be pre-existing issues
241# outside of the contributor's control. Don't fail the build on them so warnings
242# can be seen and hopefully addressed
243ifdef W
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100244 ifneq (${W},0)
245 E ?= 0
246 endif
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000247endif
248
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100249ifeq (${W},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100250 WARNINGS += $(WARNING1)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100251else ifeq (${W},2)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100252 WARNINGS += $(WARNING1) $(WARNING2)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100253else ifeq (${W},3)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100254 WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
255endif #(W)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100256
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100257# Compiler specific warnings
Chris Kaycfba6452023-12-04 09:55:50 +0000258ifeq ($(filter %-clang,$($(ARCH)-cc-id)),)
Justin Chadwell7a914232019-07-03 14:15:56 +0100259# not using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100260WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \
261 -Wpacked-bitfield-compat -Wshift-overflow=2 \
262 -Wlogical-op
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500263
264# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
265TF_CFLAGS += $(call cc_option, --param=min-pagesize=0)
266
Bipin Ravie53e6ae2023-09-28 13:17:24 -0500267ifeq ($(HARDEN_SLS), 1)
268 TF_CFLAGS_aarch64 += $(call cc_option, -mharden-sls=all)
269endif
270
Justin Chadwell7a914232019-07-03 14:15:56 +0100271else
272# using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100273WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
274 -Wlogical-op-parentheses
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100275endif #(Clang Warning)
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100276
Yann Gautier957c3532018-12-10 18:08:53 +0100277ifneq (${E},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100278 ERRORS := -Werror
279endif #(E)
Yann Gautier957c3532018-12-10 18:08:53 +0100280
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100281################################################################################
282# Compiler and Linker Directives
283################################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100284CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
285 $(ERRORS) $(WARNINGS)
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500286ASFLAGS += $(CPPFLAGS) \
Julius Werner53456fc2019-07-09 13:49:11 -0700287 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900288TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Holland23f5e542019-10-20 16:11:25 -0500289 -ffunction-sections -fdata-sections \
290 -ffreestanding -fno-builtin -fno-common \
291 -Os -std=gnu99
Juan Castilloa3487d12015-08-18 14:23:04 +0100292
Justin Chadwell83e04882019-08-20 11:01:52 +0100293ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100294 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
295endif #(${SANITIZE_UB},on)
296
Justin Chadwell83e04882019-08-20 11:01:52 +0100297ifeq (${SANITIZE_UB},trap)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100298 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
Justin Chadwell83e04882019-08-20 11:01:52 +0100299 -fsanitize-undefined-trap-on-error
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100300endif #(${SANITIZE_UB},trap)
Justin Chadwell83e04882019-08-20 11:01:52 +0100301
Chris Kay0adde4e2024-05-14 13:08:31 +0000302GCC_V_OUTPUT := $(if $($(ARCH)-cc),$(shell $($(ARCH)-cc) -v 2>&1))
david cunado34ab6092017-11-30 21:58:01 +0000303
Marco Felsch24ad8402022-11-09 12:59:09 +0100304TF_LDFLAGS += -z noexecstack
305
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100306# LD = armlink
Chris Kaycfba6452023-12-04 09:55:50 +0000307ifeq ($($(ARCH)-ld-id),arm-link)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100308 TF_LDFLAGS += --diag_error=warning --lto_level=O1
309 TF_LDFLAGS += --remove --info=unused,unusedsymbols
310 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100311
312# LD = gcc (used when GCC LTO is enabled)
Chris Kaycfba6452023-12-04 09:55:50 +0000313else ifeq ($($(ARCH)-ld-id),gnu-gcc)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100314 # Pass ld options with Wl or Xlinker switches
Chris Kayb0fe96f2024-01-16 11:53:35 +0000315 TF_LDFLAGS += $(call ld_option,-Xlinker --no-warn-rwx-segments)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100316 TF_LDFLAGS += -Wl,--fatal-warnings -O1
317 TF_LDFLAGS += -Wl,--gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000318
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100319 TF_LDFLAGS += -Wl,-z,common-page-size=4096 #Configure page size constants
320 TF_LDFLAGS += -Wl,-z,max-page-size=4096
Andrey Skvortsove2ebb722023-09-05 23:06:29 +0300321 TF_LDFLAGS += -Wl,--build-id=none
Chris Kay73b1f402022-12-22 13:26:37 +0000322
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100323 ifeq ($(ENABLE_LTO),1)
324 ifeq (${ARCH},aarch64)
325 TF_LDFLAGS += -flto -fuse-linker-plugin
Andrey Skvortsov664d6502023-12-08 18:04:51 +0300326 TF_LDFLAGS += -flto-partition=one
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100327 endif
328 endif #(ENABLE_LTO)
329
zelalem-aweked5f45272019-11-12 16:20:17 -0600330# GCC automatically adds fix-cortex-a53-843419 flag when used to link
331# which breaks some builds, so disable if errata fix is not explicitly enabled
Yann Gautier3d73d162023-03-15 16:18:16 +0100332 ifeq (${ARCH},aarch64)
333 ifneq (${ERRATA_A53_843419},1)
334 TF_LDFLAGS += -mno-fix-cortex-a53-843419
335 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100336 endif
337 TF_LDFLAGS += -nostdlib
338 TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100339
340# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekar4d034c52019-01-11 14:47:48 -0800341else
Marco Felsch24ad8402022-11-09 12:59:09 +0100342# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
343# are not loaded by a elf loader.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100344 TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
345 TF_LDFLAGS += -O1
346 TF_LDFLAGS += --gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000347
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100348 TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
349 TF_LDFLAGS += -z max-page-size=4096
Andrey Skvortsove2ebb722023-09-05 23:06:29 +0300350 TF_LDFLAGS += --build-id=none
Chris Kay73b1f402022-12-22 13:26:37 +0000351
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100352# ld.lld doesn't recognize the errata flags,
Yabin Cuied7dc512023-01-19 20:06:04 +0000353# therefore don't add those in that case.
354# ld.lld reports section type mismatch warnings,
355# therefore don't add --fatal-warnings to it.
Chris Kaycfba6452023-12-04 09:55:50 +0000356 ifneq ($($(ARCH)-ld-id),llvm-lld)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100357 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
358 endif
359
360endif #(LD = armlink)
Juan Castilloa3487d12015-08-18 14:23:04 +0100361
362################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500363# Setup ARCH_MAJOR/MINOR before parsing arch_features.
364################################################################################
365ifeq (${ENABLE_RME},1)
AlexeiFedorov65258452024-03-13 11:53:44 +0000366 ARM_ARCH_MAJOR := 9
367 ARM_ARCH_MINOR := 2
Govindraj Raja0386e312023-08-17 10:41:48 -0500368endif
369
370################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100371# Common sources and include directories
372################################################################################
dp-arme3cc8382017-05-04 12:15:35 +0100373include lib/compiler-rt/compiler-rt.mk
Juan Castilloa3487d12015-08-18 14:23:04 +0100374
Chris Kay99b5b2e2024-03-08 16:08:31 +0000375# Allow overriding the timestamp, for example for reproducible builds, or to
376# synchronize timestamps across multiple projects.
377# This must be set to a C string (including quotes where applicable).
378BUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__
379
380DEFINES += -DBUILD_MESSAGE_TIMESTAMP='$(BUILD_MESSAGE_TIMESTAMP)'
381DEFINES += -DBUILD_MESSAGE_VERSION_STRING='"$(VERSION_STRING)"'
382DEFINES += -DBUILD_MESSAGE_VERSION='"$(VERSION)"'
383
Juan Castilloa3487d12015-08-18 14:23:04 +0100384BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100385 common/tf_log.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100386 common/${ARCH}/debug.S \
Julius Werner03020da2018-11-27 22:10:56 -0800387 drivers/console/multi_console.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100388 lib/${ARCH}/cache_helpers.S \
389 lib/${ARCH}/misc_helpers.S \
Boyan Karatotev05504ba2023-02-15 13:21:50 +0000390 lib/extensions/pmuv3/${ARCH}/pmuv3.c \
Soby Mathew2f38ce32018-02-08 17:45:12 +0000391 plat/common/plat_bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100392 plat/common/plat_log_common.c \
dp-arm230011c2017-03-07 11:02:47 +0000393 plat/common/${ARCH}/plat_common.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100394 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas0f8f9852018-05-08 10:27:10 +0100395 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000396
Chris Kaycfba6452023-12-04 09:55:50 +0000397ifeq ($($(ARCH)-cc-id),arm-clang)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100398 BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100399endif
400
Justin Chadwell83e04882019-08-20 11:01:52 +0100401ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100402 BL_COMMON_SOURCES += plat/common/ubsan.c
Justin Chadwell83e04882019-08-20 11:01:52 +0100403endif
404
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200405INCLUDES += -Iinclude \
Antonio Nino Diaz8d1ade62018-12-17 17:20:57 +0000406 -Iinclude/arch/${ARCH} \
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000407 -Iinclude/lib/cpus/${ARCH} \
408 -Iinclude/lib/el3_runtime/${ARCH} \
409 ${PLAT_INCLUDES} \
410 ${SPD_INCLUDES}
411
Nishant Sharma331b5682022-08-15 16:37:07 +0100412DTC_FLAGS += -I dts -O dtb
413DTC_CPPFLAGS += -P -nostdinc $(INCLUDES) -Ifdts -undef \
414 -x assembler-with-cpp $(DEFINES)
415
Antonio Nino Diazc3a2cf22018-11-19 11:48:30 +0000416include common/backtrace/backtrace.mk
417
Juan Castilloa3487d12015-08-18 14:23:04 +0100418################################################################################
Govindraj Raja1a211292023-09-20 14:32:24 -0500419# Generic definitions
420################################################################################
421include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
422
423ifeq (${BUILD_BASE},)
424 BUILD_BASE := ./build
425endif
426BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
427
428SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
429
430# Platforms providing their own TBB makefile may override this value
431INCLUDE_TBBR_MK := 1
432
433################################################################################
434# Include SPD Makefile if one has been specified
435################################################################################
436
437ifneq (${SPD},none)
438 ifeq (${ARCH},aarch32)
439 $(error "Error: SPD is incompatible with AArch32.")
440 endif
441
442 ifdef EL3_PAYLOAD_BASE
443 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
444 $(warning "The SPD and its BL32 companion will be present but \
445 ignored.")
446 endif
447
448 ifeq (${SPD},spmd)
449 # SPMD is located in std_svc directory
450 SPD_DIR := std_svc
451
452 ifeq ($(SPMD_SPM_AT_SEL2),1)
453 CTX_INCLUDE_EL2_REGS := 1
454 ifeq ($(SPMC_AT_EL3),1)
455 $(error SPM cannot be enabled in both S-EL2 and EL3.)
456 endif
457 endif
458
459 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
460 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
461 endif
462
Arunachalam Ganapathyfd29d582022-04-11 14:36:54 +0100463 ifeq ($(findstring trusty_sp,$(ARM_SPMC_MANIFEST_DTS)),trusty_sp)
464 DTC_CPPFLAGS += -DTRUSTY_SP_FW_CONFIG
465 endif
466
Govindraj Raja1a211292023-09-20 14:32:24 -0500467 ifeq ($(TS_SP_FW_CONFIG),1)
Arunachalam Ganapathyfd29d582022-04-11 14:36:54 +0100468 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
Govindraj Raja1a211292023-09-20 14:32:24 -0500469 endif
470
471 ifneq ($(ARM_BL2_SP_LIST_DTS),)
472 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
473 endif
474
475 ifneq ($(SP_LAYOUT_FILE),)
476 BL2_ENABLE_SP_LOAD := 1
477 endif
Govindraj Rajabad835a2023-10-31 14:48:11 -0500478
479 ifeq ($(SPMC_AT_EL3_SEL0_SP),1)
480 ifneq ($(SPMC_AT_EL3),1)
481 $(error SEL0 SP cannot be enabled without SPMC at EL3)
482 endif
483 endif
Govindraj Raja1a211292023-09-20 14:32:24 -0500484 else
485 # All other SPDs in spd directory
486 SPD_DIR := spd
487 endif #(SPD)
488
489 # We expect to locate an spd.mk under the specified SPD directory
490 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
491
492 ifeq (${SPD_MAKE},)
493 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
494 endif
495 $(info Including ${SPD_MAKE})
496 include ${SPD_MAKE}
497
498 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
499 # Makefile would set NEED_BL32 to "yes". In this case, the build system
500 # supports two mutually exclusive options:
501 # * BL32 is built from source: then BL32_SOURCES must contain the list
502 # of source files to build BL32
503 # * BL32 is a prebuilt binary: then BL32 must point to the image file
504 # that will be included in the FIP
505 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
506 # over the sources.
507endif #(SPD=none)
508
509ifeq (${ENABLE_SPMD_LP}, 1)
510ifneq (${SPD},spmd)
511 $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
512endif
513ifeq ($(SPMC_AT_EL3),1)
514 $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
515endif
516endif
517
518################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500519# Process BRANCH_PROTECTION value and set
520# Pointer Authentication and Branch Target Identification flags
521################################################################################
522ifeq (${BRANCH_PROTECTION},0)
523 # Default value turns off all types of branch protection
524 BP_OPTION := none
525else ifneq (${ARCH},aarch64)
526 $(error BRANCH_PROTECTION requires AArch64)
527else ifeq (${BRANCH_PROTECTION},1)
528 # Enables all types of branch protection features
529 BP_OPTION := standard
530 ENABLE_BTI := 1
531 ENABLE_PAUTH := 1
532else ifeq (${BRANCH_PROTECTION},2)
533 # Return address signing to its standard level
534 BP_OPTION := pac-ret
535 ENABLE_PAUTH := 1
536else ifeq (${BRANCH_PROTECTION},3)
537 # Extend the signing to include leaf functions
538 BP_OPTION := pac-ret+leaf
539 ENABLE_PAUTH := 1
540else ifeq (${BRANCH_PROTECTION},4)
541 # Turn on branch target identification mechanism
542 BP_OPTION := bti
543 ENABLE_BTI := 1
544else
545 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
546endif #(BRANCH_PROTECTION)
547
548ifeq ($(ENABLE_PAUTH),1)
549 CTX_INCLUDE_PAUTH_REGS := 1
550endif
551ifneq (${BP_OPTION},none)
552 TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
553endif #(BP_OPTION)
554
555# Pointer Authentication sources
556ifeq (${ENABLE_PAUTH}, 1)
557# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
558# Pauth support. As it's not secure, it must be reimplemented for real platforms
559 BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
560endif
561
Govindraj Raja1a211292023-09-20 14:32:24 -0500562################################################################################
563# Include the platform specific Makefile after the SPD Makefile (the platform
564# makefile may use all previous definitions in this file)
565################################################################################
566include ${PLAT_MAKEFILE_FULL}
567
568################################################################################
569# Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from
570# platform.
571################################################################################
572include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
573
Govindraj Raja0386e312023-08-17 10:41:48 -0500574####################################################
575# Enable required options for Memory Stack Tagging.
576####################################################
577
578# Currently, these options are enabled only for clang and armclang compiler.
579ifeq (${SUPPORT_STACK_MEMTAG},yes)
580 ifdef mem_tag_arch_support
581 # Check for armclang and clang compilers
Chris Kaycfba6452023-12-04 09:55:50 +0000582 ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
Govindraj Raja0386e312023-08-17 10:41:48 -0500583 # Add "memtag" architecture feature modifier if not specified
584 ifeq ( ,$(findstring memtag,$(arch-features)))
585 arch-features := $(arch-features)+memtag
586 endif # memtag
Chris Kaycfba6452023-12-04 09:55:50 +0000587 ifeq ($($(ARCH)-cc-id),arm-clang)
Govindraj Raja0386e312023-08-17 10:41:48 -0500588 TF_CFLAGS += -mmemtag-stack
Chris Kaycfba6452023-12-04 09:55:50 +0000589 else ifeq ($($(ARCH)-cc-id),llvm-clang)
Govindraj Raja0386e312023-08-17 10:41:48 -0500590 TF_CFLAGS += -fsanitize=memtag
591 endif # armclang
592 endif
593 else
594 $(error "Error: stack memory tagging is not supported for \
595 architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
596 endif #(mem_tag_arch_support)
597endif #(SUPPORT_STACK_MEMTAG)
598
599################################################################################
600# RME dependent flags configuration, Enable optional features for RME.
601################################################################################
602# FEAT_RME
603ifeq (${ENABLE_RME},1)
Govindraj Raja60f52662023-10-12 16:57:46 -0500604 # RME doesn't support BRBE
605 ENABLE_BRBE_FOR_NS := 0
606
Govindraj Raja0386e312023-08-17 10:41:48 -0500607 # RME doesn't support PIE
608 ifneq (${ENABLE_PIE},0)
609 $(error ENABLE_RME does not support PIE)
610 endif
611
612 # RME doesn't support BRBE
613 ifneq (${ENABLE_BRBE_FOR_NS},0)
614 $(error ENABLE_RME does not support BRBE.)
615 endif
616
617 # RME requires AARCH64
618 ifneq (${ARCH},aarch64)
619 $(error ENABLE_RME requires AArch64)
620 endif
621
622 # RME requires el2 context to be saved for now.
623 CTX_INCLUDE_EL2_REGS := 1
624 CTX_INCLUDE_AARCH32_REGS := 0
625 CTX_INCLUDE_PAUTH_REGS := 1
626
627 # RME enables CSV2_2 extension by default.
628 ENABLE_FEAT_CSV2_2 = 1
629endif #(FEAT_RME)
630
631################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500632# Include rmmd Makefile if RME is enabled
633################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500634ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100635 ifneq (${ARCH},aarch64)
636 $(error ENABLE_RME requires AArch64)
637 endif
638 ifeq ($(SPMC_AT_EL3),1)
639 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
640 endif
641
642 ifneq (${SPD}, none)
643 ifneq (${SPD}, spmd)
644 $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
645 endif
646 endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500647include services/std_svc/rmmd/rmmd.mk
648$(warning "RME is an experimental feature")
649endif
650
Govindraj Raja1a211292023-09-20 14:32:24 -0500651ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
652 ifeq (${SPD},none)
653 ifeq (${ENABLE_RME},0)
654 $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
655 or RME is enabled)
656 endif
657 endif
658endif
Jon Medhurst66573cb2014-02-13 15:19:28 +0000659
Govindraj Raja69096412023-06-01 16:29:16 -0500660################################################################################
661# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
662# up with appropriate march values for compiler.
663################################################################################
664include ${MAKE_HELPERS_DIRECTORY}march.mk
665
666TF_CFLAGS += $(march-directive)
Govindraj Raja0c572472024-01-23 16:00:19 -0600667ASFLAGS += $(march-directive)
Govindraj Raja69096412023-06-01 16:29:16 -0500668
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600669# This internal flag is common option which is set to 1 for scenarios
670# when the BL2 is running in EL3 level. This occurs in two scenarios -
671# 4 world system running BL2 at EL3 and two world system without BL1 running
672# BL2 in EL3
673
674ifeq (${RESET_TO_BL2},1)
675 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100676 ifeq (${ENABLE_RME},1)
677 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
678 supported at the moment.)
679 endif
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600680else ifeq (${ENABLE_RME},1)
681 BL2_RUNS_AT_EL3 := 1
682else
683 BL2_RUNS_AT_EL3 := 0
684endif
685
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100686# This internal flag is set to 1 when Firmware First handling of External aborts
687# is required by lowe ELs. Currently only NS requires this support.
688ifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
689 FFH_SUPPORT := 1
690else
691 FFH_SUPPORT := 0
692endif
693
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100694ifeq (${ARM_ARCH_MAJOR},7)
695include make_helpers/armv7-a-cpus.mk
696endif
697
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900698PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
699ifneq ($(PIE_FOUND),)
700 TF_CFLAGS += -fno-PIE
Chris Kaycfba6452023-12-04 09:55:50 +0000701ifeq ($($(ARCH)-ld-id),gnu-gcc)
Samuel Holland9286c022022-04-08 21:56:02 -0500702 TF_LDFLAGS += -no-pie
703endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100704endif #(PIE_FOUND)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900705
Chris Kaycfba6452023-12-04 09:55:50 +0000706ifeq ($($(ARCH)-ld-id),gnu-gcc)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900707 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100708else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900709 PIE_LDFLAGS += -pie --no-dynamic-linker
710endif
711
712ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100713 ifeq ($(RESET_TO_BL2),1)
714 ifneq ($(BL2_IN_XIP_MEM),1)
715 BL2_CPPFLAGS += -fpie
716 BL2_CFLAGS += -fpie
717 BL2_LDFLAGS += $(PIE_LDFLAGS)
718 endif #(BL2_IN_XIP_MEM)
719 endif #(RESET_TO_BL2)
Chris Kay13886c82023-02-02 14:39:03 +0000720 BL31_CPPFLAGS += -fpie
721 BL31_CFLAGS += -fpie
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900722 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay13886c82023-02-02 14:39:03 +0000723
724 BL32_CPPFLAGS += -fpie
Masahiro Yamadade634f82020-01-17 13:45:14 +0900725 BL32_CFLAGS += -fpie
726 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100727endif #(ENABLE_PIE)
Soby Mathew078f1a42018-08-28 11:13:55 +0100728
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000729BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
730BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
731BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
732
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900733BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600734ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100735 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900736else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100737 BL2_CPPFLAGS += -DIMAGE_AT_EL1
738endif #(RESET_TO_BL2)
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000739
740ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100741 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
742 BL31_CPPFLAGS += -DIMAGE_AT_EL3
743 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000744else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100745 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900746endif
747
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000748# Include the CPU specific operations makefile, which provides default
749# values for all CPU errata workarounds and CPU specific optimisations.
750# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100751include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100752
dp-armcdd03cb2017-02-15 11:07:55 +0000753################################################################################
754# Build `AARCH32_SP` as BL32 image for AArch32
755################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100756ifeq (${ARCH},aarch32)
757 NEED_BL32 := yes
dp-armcdd03cb2017-02-15 11:07:55 +0000758
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100759 ifneq (${AARCH32_SP},none)
760 # We expect to locate an sp.mk under the specified AARCH32_SP directory
761 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-armcdd03cb2017-02-15 11:07:55 +0000762
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100763 ifeq (${AARCH32_SP_MAKE},)
764 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
765 endif
Juan Pablo Conde6aba3b12023-08-09 13:19:21 -0500766 $(info Including ${AARCH32_SP_MAKE})
767 include ${AARCH32_SP_MAKE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100768 endif
769endif #(ARCH=aarch32)
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800770
771################################################################################
772# Include libc if not overridden
773################################################################################
774ifeq (${OVERRIDE_LIBC},0)
775include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000776endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100777
778################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100779# Check incompatible options and dependencies
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000780################################################################################
781
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100782# USE_DEBUGFS experimental feature recommended only in debug builds
783ifeq (${USE_DEBUGFS},1)
784 ifeq (${DEBUG},1)
785 $(warning DEBUGFS experimental feature is enabled.)
786 else
787 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800788 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100789endif #(USE_DEBUGFS)
790
791# USE_SPINLOCK_CAS requires AArch64 build
792ifeq (${USE_SPINLOCK_CAS},1)
793 ifneq (${ARCH},aarch64)
794 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800795 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100796endif #(USE_SPINLOCK_CAS)
797
798# The cert_create tool cannot generate certificates individually, so we use the
799# target 'certificates' to create them all
800ifneq (${GENERATE_COT},0)
801 FIP_DEPS += certificates
802 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000803endif
804
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100805ifneq (${DECRYPTION_SUPPORT},none)
806 ENC_ARGS += -f ${FW_ENC_STATUS}
807 ENC_ARGS += -k ${ENC_KEY}
808 ENC_ARGS += -n ${ENC_NONCE}
809 FIP_DEPS += enctool
810 FWU_FIP_DEPS += enctool
811endif #(DECRYPTION_SUPPORT)
812
813ifdef EL3_PAYLOAD_BASE
814 ifdef PRELOADED_BL33_BASE
815 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
816 incompatible build options. EL3_PAYLOAD_BASE has priority.")
817 endif
818 ifneq (${GENERATE_COT},0)
819 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
820 build options.")
821 endif
822 ifneq (${TRUSTED_BOARD_BOOT},0)
823 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
824 incompatible \ build options.")
825 endif
826endif #(EL3_PAYLOAD_BASE)
827
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000828ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100829 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000830 $(warning "BL33 image is not needed when option \
831 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100832 endif
833 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100834 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100835 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
836 endif
837endif #(NEED_BL33)
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000838
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000839# When building for systems with hardware-assisted coherency, there's no need to
840# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
841ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100842 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000843endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100844
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600845#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
846ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100847 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000848endif
849
Manish Pandeyd419e222023-02-13 12:39:17 +0000850# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100851ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100852 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100853 and HANDLE_EA_EL3_FIRST_NS instead")
Manish Pandeyd419e222023-02-13 12:39:17 +0000854endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100855
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100856
Manish Pandeyd419e222023-02-13 12:39:17 +0000857# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000858ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100859 ifeq ($(ENABLE_FEAT_RAS),0)
860 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
861 endif
862endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000863
Roberto Vargas025946a2018-09-24 17:20:48 +0100864# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100865ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100866 ifeq (${TRUSTED_BOARD_BOOT}, 0)
867 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
868 to be set.")
869 endif
870endif #(DYN_DISABLE_AUTH)
Soby Mathew9fe88042018-03-26 12:43:37 +0100871
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100872ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
873# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100874 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100875else ifeq ($(DRTM_SUPPORT)-$(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 ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
879# Support hash calculation only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100880 CRYPTO_SUPPORT := 2
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100881else ifeq (${TRUSTED_BOARD_BOOT},1)
882# Support authentication verification only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100883 CRYPTO_SUPPORT := 1
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000884else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100885 CRYPTO_SUPPORT := 0
886endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000887
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +0100888# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
889ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100890 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +0100891endif
892
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000893# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100894# registers associated to it are also saved and restored.
895# 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 +0000896ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100897 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
898 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
899 endif
900endif #(ENABLE_PAUTH)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100901
902ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100903 ifneq (${ARCH},aarch64)
904 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
905 endif
906endif #(CTX_INCLUDE_PAUTH_REGS)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000907
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000908ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100909 $(info FEATURE_DETECTION is an experimental feature)
910endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000911
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000912ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100913 ifeq (${ENABLE_SME_FOR_NS}, 0)
914 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
915 to be set")
916 $(warning "Forced ENABLE_SME_FOR_NS=1")
917 override ENABLE_SME_FOR_NS := 1
918 endif
919endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000920
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000921ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100922 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
923 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
924 library v2")
925 endif
926endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000927
Sumit Garg392e4df2019-11-15 10:43:00 +0530928ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100929 ifeq (${TRUSTED_BOARD_BOOT}, 0)
930 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
931 to be set)
932 endif
933endif #(DECRYPTION_SUPPORT)
Sumit Garg392e4df2019-11-15 10:43:00 +0530934
johpow0181865962022-01-28 17:06:20 -0600935# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -0500936ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -0600937
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100938 # SME/SVE only supported on AArch64
939 ifneq (${ENABLE_SME_FOR_NS},0)
940 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
941 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000942
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100943 ifeq (${ENABLE_SVE_FOR_NS},1)
944 # Warning instead of error due to CI dependency on this
945 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
946 endif
johpow0181865962022-01-28 17:06:20 -0600947
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100948 # BRBE is not supported in AArch32
949 ifeq (${ENABLE_BRBE_FOR_NS},1)
950 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
951 endif
johpow0181865962022-01-28 17:06:20 -0600952
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100953 # FEAT_RNG_TRAP is not supported in AArch32
954 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
955 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
956 endif
957endif #(ARCH=aarch32)
johpow019baade32021-07-08 14:14:00 -0500958
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000959ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100960 ifeq (${ENABLE_SVE_FOR_NS},0)
961 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
962 endif
963endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000964
johpow019baade32021-07-08 14:14:00 -0500965# Secure SME/SVE requires the non-secure component as well
966ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100967 ifeq (${ENABLE_SME_FOR_NS},0)
968 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
969 endif
970 ifeq (${ENABLE_SVE_FOR_SWD},0)
971 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
972 endif
973endif #(ENABLE_SME_FOR_SWD)
974
johpow019baade32021-07-08 14:14:00 -0500975ifeq (${ENABLE_SVE_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100976 ifeq (${ENABLE_SVE_FOR_NS},0)
977 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
978 endif
979endif #(ENABLE_SVE_FOR_SWD)
johpow019baade32021-07-08 14:14:00 -0500980
981# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
982# its own context management including FPU registers.
983ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100984 ifneq (${ENABLE_SME_FOR_NS},0)
985 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
986 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000987
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100988 ifeq (${ENABLE_SVE_FOR_NS},1)
989 # Warning instead of error due to CI dependency on this
990 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
991 $(warning "Forced ENABLE_SVE_FOR_NS=0")
992 override ENABLE_SVE_FOR_NS := 0
993 endif
994endif #(CTX_INCLUDE_FPREGS)
johpow019baade32021-07-08 14:14:00 -0500995
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +0000996ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100997 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +0000998endif
999
Raymond Mao98983392023-07-25 07:53:35 -07001000ifeq (${TRANSFER_LIST},1)
1001 $(info TRANSFER_LIST is an experimental feature)
1002endif
1003
Chris Kayd02c2312022-09-29 16:21:24 +01001004ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001005 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1006 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1007 endif
Chris Kayd02c2312022-09-29 16:21:24 +01001008endif
1009
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001010ifeq ($(PSA_CRYPTO),1)
1011 $(info PSA_CRYPTO is an experimental feature)
1012endif
1013
Manish V Badarkhed8d7d932024-05-09 12:14:13 +01001014ifeq ($(DICE_PROTECTION_ENVIRONMENT),1)
1015 $(info DICE_PROTECTION_ENVIRONMENT is an experimental feature)
1016endif
1017
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001018################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001019# Process platform overrideable behaviour
1020################################################################################
1021
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001022ifdef BL1_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001023 NEED_BL1 := yes
1024endif #(BL1_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001025
Jon Medhurst66573cb2014-02-13 15:19:28 +00001026ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001027 NEED_BL2 := yes
1028
1029 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1030 # Certificate generation tools. This flag can be overridden by the platform.
1031 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001032 # If booting an EL3 payload there is no need for a BL33 image
1033 # in the FIP file.
1034 NEED_BL33 := no
1035 else
1036 ifdef PRELOADED_BL33_BASE
1037 # If booting a BL33 preloaded image there is no need of
1038 # another one in the FIP file.
1039 NEED_BL33 := no
1040 else
1041 NEED_BL33 ?= yes
1042 endif
1043 endif
1044endif #(BL2_SOURCES)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001045
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001046ifdef BL2U_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001047 NEED_BL2U := yes
1048endif #(BL2U_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001049
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001050# If SCP_BL2 is given, we always want FIP to include it.
1051ifdef SCP_BL2
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001052 NEED_SCP_BL2 := yes
1053endif #(SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001054
Soby Mathewbf169232017-11-14 14:10:10 +00001055# For AArch32, BL31 is not currently supported.
1056ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001057 ifdef BL31_SOURCES
1058 # When booting an EL3 payload, there is no need to compile the BL31
1059 # image nor put it in the FIP.
1060 ifndef EL3_PAYLOAD_BASE
1061 NEED_BL31 := yes
1062 endif
1063 endif
1064endif #(ARCH=aarch64)
Soby Mathewbf169232017-11-14 14:10:10 +00001065
Juan Castilloa3487d12015-08-18 14:23:04 +01001066# Process TBB related flags
1067ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001068 # Common cert_create options
1069 ifneq (${CREATE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001070 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001071 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001072 ifneq (${SAVE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001073 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001074 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001075 endif
1076 endif
1077 # Include TBBR makefile (unless the platform indicates otherwise)
1078 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castilloa3487d12015-08-18 14:23:04 +01001079 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001080 endif
1081endif #(GENERATE_COT)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001082
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001083ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001084 FIP_ARGS += --align ${FIP_ALIGN}
1085endif #(FIP_ALIGN)
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001086
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001087ifdef FDT_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001088 NEED_FDT := yes
1089endif #(FDT_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001090
Juan Castilloa3487d12015-08-18 14:23:04 +01001091################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +08001092# Include libraries' Makefile that are used in all BL
1093################################################################################
1094
1095include lib/stack_protector/stack_protector.mk
1096
1097################################################################################
Soby Mathew574e01e2017-02-14 10:05:07 +00001098# Include BL specific makefiles
1099################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001100
1101ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001102include bl1/bl1.mk
1103endif
1104
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001105ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001106include bl2/bl2.mk
1107endif
1108
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001109ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001110include bl2u/bl2u.mk
1111endif
1112
Soby Mathewbf169232017-11-14 14:10:10 +00001113ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001114include bl31/bl31.mk
1115endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001116
Soby Mathew574e01e2017-02-14 10:05:07 +00001117################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001118# Build options checks
1119################################################################################
1120
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001121# Boolean_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001122$(eval $(call assert_booleans,\
1123 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001124 ALLOW_RO_XLAT_TABLES \
1125 BL2_ENABLE_SP_LOAD \
1126 COLD_BOOT_SINGLE_CPU \
1127 CREATE_KEYS \
1128 CTX_INCLUDE_AARCH32_REGS \
1129 CTX_INCLUDE_FPREGS \
1130 CTX_INCLUDE_EL2_REGS \
Arvind Ram Prakash4851b492023-10-06 14:35:21 -05001131 CTX_INCLUDE_MPAM_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001132 DEBUG \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001133 DYN_DISABLE_AUTH \
1134 EL3_EXCEPTION_HANDLING \
1135 ENABLE_AMU_AUXILIARY_COUNTERS \
1136 ENABLE_AMU_FCONF \
1137 AMU_RESTRICT_COUNTERS \
1138 ENABLE_ASSERTIONS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001139 ENABLE_PIE \
1140 ENABLE_PMF \
1141 ENABLE_PSCI_STAT \
1142 ENABLE_RUNTIME_INSTRUMENTATION \
1143 ENABLE_SME_FOR_SWD \
1144 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001145 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001146 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001147 ERROR_DEPRECATED \
1148 FAULT_INJECTION_SUPPORT \
1149 GENERATE_COT \
1150 GICV2_G0_FOR_EL3 \
1151 HANDLE_EA_EL3_FIRST_NS \
Bipin Ravie53e6ae2023-09-28 13:17:24 -05001152 HARDEN_SLS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001153 HW_ASSISTED_COHERENCY \
1154 MEASURED_BOOT \
Tamas Bana4260892023-06-07 13:35:04 +02001155 DICE_PROTECTION_ENVIRONMENT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001156 DRTM_SUPPORT \
1157 NS_TIMER_SWITCH \
1158 OVERRIDE_LIBC \
1159 PL011_GENERIC_UART \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001160 PROGRAMMABLE_RESET_ADDRESS \
1161 PSCI_EXTENDED_STATE_ID \
1162 PSCI_OS_INIT_MODE \
1163 RESET_TO_BL31 \
1164 SAVE_KEYS \
1165 SEPARATE_CODE_AND_RODATA \
1166 SEPARATE_BL2_NOLOAD_REGION \
1167 SEPARATE_NOBITS_REGION \
1168 SPIN_ON_BL1_EXIT \
1169 SPM_MM \
1170 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001171 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001172 SPMD_SPM_AT_SEL2 \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001173 ENABLE_SPMD_LP \
Raymond Mao98983392023-07-25 07:53:35 -07001174 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001175 TRUSTED_BOARD_BOOT \
1176 USE_COHERENT_MEM \
1177 USE_DEBUGFS \
1178 ARM_IO_IN_DTB \
1179 SDEI_IN_FCONF \
1180 SEC_INT_DESC_IN_FCONF \
1181 USE_ROMLIB \
1182 USE_TBBR_DEFS \
1183 WARMBOOT_ENABLE_DCACHE_EARLY \
1184 RESET_TO_BL2 \
1185 BL2_IN_XIP_MEM \
1186 BL2_INV_DCACHE \
1187 USE_SPINLOCK_CAS \
1188 ENCRYPT_BL31 \
1189 ENCRYPT_BL32 \
1190 ERRATA_SPECULATIVE_AT \
1191 RAS_TRAP_NS_ERR_REC_ACCESS \
1192 COT_DESC_IN_DTB \
1193 USE_SP804_TIMER \
1194 PSA_FWU_SUPPORT \
Sughosh Ganu61905e52024-02-01 12:51:20 +05301195 PSA_FWU_METADATA_FW_STORE_DESC \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001196 ENABLE_MPMM \
1197 ENABLE_MPMM_FCONF \
1198 FEATURE_DETECTION \
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +01001199 TRNG_SUPPORT \
Sona Mathew7fe03522022-11-18 18:05:38 -06001200 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001201 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001202 CONDITIONAL_CMO \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001203 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001204 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash8bd27c92023-08-15 16:28:06 -05001205 INIT_UNUSED_NS_EL2 \
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001206 PLATFORM_REPORT_CTX_MEM_USE \
Yann Gautier5ae29c02024-01-16 19:39:31 +01001207 EARLY_CONSOLE \
Arvind Ram Prakasheaa90192023-12-21 00:25:52 -06001208 PRESERVE_DSU_PMU_REGS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001209)))
Dan Handley81be1002015-03-27 17:44:35 +00001210
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001211# Numeric_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001212$(eval $(call assert_numerics,\
1213 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001214 ARM_ARCH_MAJOR \
1215 ARM_ARCH_MINOR \
1216 BRANCH_PROTECTION \
1217 CTX_INCLUDE_PAUTH_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001218 CTX_INCLUDE_NEVE_REGS \
1219 CRYPTO_SUPPORT \
Boyan Karatotev677ed8a2023-02-16 09:45:29 +00001220 DISABLE_MTPMU \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001221 ENABLE_BRBE_FOR_NS \
1222 ENABLE_TRBE_FOR_NS \
1223 ENABLE_BTI \
1224 ENABLE_PAUTH \
1225 ENABLE_FEAT_AMU \
1226 ENABLE_FEAT_AMUv1p1 \
1227 ENABLE_FEAT_CSV2_2 \
Sona Mathew3b84c962023-10-25 16:48:19 -05001228 ENABLE_FEAT_CSV2_3 \
Arvind Ram Prakash05b47632024-05-22 15:24:00 -05001229 ENABLE_FEAT_DEBUGV8P9 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001230 ENABLE_FEAT_DIT \
1231 ENABLE_FEAT_ECV \
1232 ENABLE_FEAT_FGT \
Arvind Ram Prakash62d87e72024-06-06 11:33:37 -05001233 ENABLE_FEAT_FGT2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001234 ENABLE_FEAT_HCX \
Govindraj Rajad7b63ac2024-01-26 10:08:37 -06001235 ENABLE_FEAT_MTE2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001236 ENABLE_FEAT_PAN \
1237 ENABLE_FEAT_RNG \
1238 ENABLE_FEAT_RNG_TRAP \
1239 ENABLE_FEAT_SEL2 \
1240 ENABLE_FEAT_TCR2 \
Govindraj Rajac2dad572024-01-23 16:03:53 -06001241 ENABLE_FEAT_SB \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001242 ENABLE_FEAT_S2PIE \
1243 ENABLE_FEAT_S1PIE \
1244 ENABLE_FEAT_S2POE \
1245 ENABLE_FEAT_S1POE \
1246 ENABLE_FEAT_GCS \
1247 ENABLE_FEAT_VHE \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001248 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001249 ENABLE_RME \
1250 ENABLE_SPE_FOR_NS \
1251 ENABLE_SYS_REG_TRACE_FOR_NS \
1252 ENABLE_SME_FOR_NS \
1253 ENABLE_SME2_FOR_NS \
1254 ENABLE_SVE_FOR_NS \
1255 ENABLE_TRF_FOR_NS \
1256 FW_ENC_STATUS \
1257 NR_OF_FW_BANKS \
1258 NR_OF_IMAGES_IN_FW_BANK \
1259 TWED_DELAY \
1260 ENABLE_FEAT_TWED \
1261 SVE_VECTOR_LEN \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001262 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001263)))
Jeenu Viswambharanfca76802017-01-16 16:52:35 +00001264
Justin Chadwellf9b32c12019-07-29 17:13:10 +01001265ifdef KEY_SIZE
1266 $(eval $(call assert_numeric,KEY_SIZE))
1267endif
1268
Justin Chadwell83e04882019-08-20 11:01:52 +01001269ifeq ($(filter $(SANITIZE_UB), on off trap),)
1270 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1271endif
1272
Juan Castilloa3487d12015-08-18 14:23:04 +01001273################################################################################
1274# Add definitions to the cpp preprocessor based on the current build options.
1275# This is done after including the platform specific makefile to allow the
1276# platform to overwrite the default options
1277################################################################################
Jeenu Viswambharand1b60152014-05-12 15:28:47 +01001278
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001279$(eval $(call add_defines,\
1280 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001281 ALLOW_RO_XLAT_TABLES \
1282 ARM_ARCH_MAJOR \
1283 ARM_ARCH_MINOR \
1284 BL2_ENABLE_SP_LOAD \
1285 COLD_BOOT_SINGLE_CPU \
1286 CTX_INCLUDE_AARCH32_REGS \
1287 CTX_INCLUDE_FPREGS \
1288 CTX_INCLUDE_PAUTH_REGS \
Arvind Ram Prakash4851b492023-10-06 14:35:21 -05001289 CTX_INCLUDE_MPAM_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001290 EL3_EXCEPTION_HANDLING \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001291 CTX_INCLUDE_EL2_REGS \
1292 CTX_INCLUDE_NEVE_REGS \
1293 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1294 DISABLE_MTPMU \
1295 ENABLE_FEAT_AMU \
1296 ENABLE_AMU_AUXILIARY_COUNTERS \
1297 ENABLE_AMU_FCONF \
1298 AMU_RESTRICT_COUNTERS \
1299 ENABLE_ASSERTIONS \
1300 ENABLE_BTI \
Arvind Ram Prakash05b47632024-05-22 15:24:00 -05001301 ENABLE_FEAT_DEBUGV8P9 \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001302 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001303 ENABLE_PAUTH \
1304 ENABLE_PIE \
1305 ENABLE_PMF \
1306 ENABLE_PSCI_STAT \
1307 ENABLE_RME \
1308 ENABLE_RUNTIME_INSTRUMENTATION \
1309 ENABLE_SME_FOR_NS \
1310 ENABLE_SME2_FOR_NS \
1311 ENABLE_SME_FOR_SWD \
1312 ENABLE_SPE_FOR_NS \
1313 ENABLE_SVE_FOR_NS \
1314 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001315 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001316 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001317 ENCRYPT_BL31 \
1318 ENCRYPT_BL32 \
1319 ERROR_DEPRECATED \
1320 FAULT_INJECTION_SUPPORT \
1321 GICV2_G0_FOR_EL3 \
1322 HANDLE_EA_EL3_FIRST_NS \
1323 HW_ASSISTED_COHERENCY \
1324 LOG_LEVEL \
1325 MEASURED_BOOT \
Tamas Bana4260892023-06-07 13:35:04 +02001326 DICE_PROTECTION_ENVIRONMENT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001327 DRTM_SUPPORT \
1328 NS_TIMER_SWITCH \
1329 PL011_GENERIC_UART \
1330 PLAT_${PLAT} \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001331 PROGRAMMABLE_RESET_ADDRESS \
1332 PSCI_EXTENDED_STATE_ID \
1333 PSCI_OS_INIT_MODE \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001334 RESET_TO_BL31 \
AlexeiFedorovc0ca2d72024-05-13 15:35:54 +01001335 RME_GPT_BITLOCK_BLOCK \
AlexeiFedorovbd8b1bb2024-03-13 17:07:03 +00001336 RME_GPT_MAX_BLOCK \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001337 SEPARATE_CODE_AND_RODATA \
1338 SEPARATE_BL2_NOLOAD_REGION \
1339 SEPARATE_NOBITS_REGION \
1340 RECLAIM_INIT_CODE \
1341 SPD_${SPD} \
1342 SPIN_ON_BL1_EXIT \
1343 SPM_MM \
1344 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001345 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001346 SPMD_SPM_AT_SEL2 \
Raymond Mao98983392023-07-25 07:53:35 -07001347 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001348 TRUSTED_BOARD_BOOT \
1349 CRYPTO_SUPPORT \
1350 TRNG_SUPPORT \
1351 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001352 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001353 USE_COHERENT_MEM \
1354 USE_DEBUGFS \
1355 ARM_IO_IN_DTB \
1356 SDEI_IN_FCONF \
1357 SEC_INT_DESC_IN_FCONF \
1358 USE_ROMLIB \
1359 USE_TBBR_DEFS \
1360 WARMBOOT_ENABLE_DCACHE_EARLY \
1361 RESET_TO_BL2 \
1362 BL2_RUNS_AT_EL3 \
1363 BL2_IN_XIP_MEM \
1364 BL2_INV_DCACHE \
1365 USE_SPINLOCK_CAS \
1366 ERRATA_SPECULATIVE_AT \
1367 RAS_TRAP_NS_ERR_REC_ACCESS \
1368 COT_DESC_IN_DTB \
1369 USE_SP804_TIMER \
1370 ENABLE_FEAT_RNG \
1371 ENABLE_FEAT_RNG_TRAP \
1372 ENABLE_FEAT_SB \
1373 ENABLE_FEAT_DIT \
1374 NR_OF_FW_BANKS \
1375 NR_OF_IMAGES_IN_FW_BANK \
1376 PSA_FWU_SUPPORT \
Sughosh Ganu61905e52024-02-01 12:51:20 +05301377 PSA_FWU_METADATA_FW_STORE_DESC \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001378 ENABLE_BRBE_FOR_NS \
1379 ENABLE_TRBE_FOR_NS \
1380 ENABLE_SYS_REG_TRACE_FOR_NS \
1381 ENABLE_TRF_FOR_NS \
1382 ENABLE_FEAT_HCX \
1383 ENABLE_MPMM \
1384 ENABLE_MPMM_FCONF \
1385 ENABLE_FEAT_FGT \
Arvind Ram Prakash62d87e72024-06-06 11:33:37 -05001386 ENABLE_FEAT_FGT2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001387 ENABLE_FEAT_ECV \
1388 ENABLE_FEAT_AMUv1p1 \
1389 ENABLE_FEAT_SEL2 \
1390 ENABLE_FEAT_VHE \
1391 ENABLE_FEAT_CSV2_2 \
Sona Mathew3b84c962023-10-25 16:48:19 -05001392 ENABLE_FEAT_CSV2_3 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001393 ENABLE_FEAT_PAN \
1394 ENABLE_FEAT_TCR2 \
1395 ENABLE_FEAT_S2PIE \
1396 ENABLE_FEAT_S1PIE \
1397 ENABLE_FEAT_S2POE \
1398 ENABLE_FEAT_S1POE \
1399 ENABLE_FEAT_GCS \
Govindraj Rajad7b63ac2024-01-26 10:08:37 -06001400 ENABLE_FEAT_MTE2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001401 FEATURE_DETECTION \
1402 TWED_DELAY \
1403 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001404 CONDITIONAL_CMO \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001405 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidanand23c2fe22023-04-26 15:57:30 +01001406 SVE_VECTOR_LEN \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001407 ENABLE_SPMD_LP \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001408 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001409 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash8bd27c92023-08-15 16:28:06 -05001410 INIT_UNUSED_NS_EL2 \
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001411 PLATFORM_REPORT_CTX_MEM_USE \
Yann Gautier5ae29c02024-01-16 19:39:31 +01001412 EARLY_CONSOLE \
Arvind Ram Prakasheaa90192023-12-21 00:25:52 -06001413 PRESERVE_DSU_PMU_REGS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001414)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001415
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001416ifeq (${PLATFORM_REPORT_CTX_MEM_USE}, 1)
1417ifeq (${DEBUG}, 0)
1418 $(warning "PLATFORM_REPORT_CTX_MEM_USE can be applied when DEBUG=1 only")
1419 override PLATFORM_REPORT_CTX_MEM_USE := 0
1420endif
1421endif
1422
Justin Chadwell83e04882019-08-20 11:01:52 +01001423ifeq (${SANITIZE_UB},trap)
1424 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001425endif #(SANITIZE_UB)
Justin Chadwell83e04882019-08-20 11:01:52 +01001426
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001427# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1428ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001429 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1430else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001431# Define the PRELOADED_BL33_BASE flag only if it is provided and
1432# EL3_PAYLOAD_BASE is not defined, as it has priority.
1433 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001434 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001435 endif
1436endif #(EL3_PAYLOAD_BASE)
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001437
Soby Mathew9fe88042018-03-26 12:43:37 +01001438# Define the DYN_DISABLE_AUTH flag only if set.
1439ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001440 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew9fe88042018-03-26 12:43:37 +01001441endif
1442
Chris Kaycfba6452023-12-04 09:55:50 +00001443ifeq ($($(ARCH)-ld-id),arm-link)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001444 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekar4d034c52019-01-11 14:47:48 -08001445endif
1446
Manish Pandey3f90ad72020-01-14 11:52:05 +00001447# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001448ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001449ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001450 -include $(BUILD_PLAT)/sp_gen.mk
1451 FIP_DEPS += sp
1452 CRT_DEPS += sp
1453 NEED_SP_PKG := yes
Manish Pandey3f90ad72020-01-14 11:52:05 +00001454else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001455 ifeq (${SPMD_SPM_AT_SEL2},1)
1456 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1457 endif
1458endif #(SP_LAYOUT_FILE)
1459endif #(SPD)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001460
Juan Castilloa3487d12015-08-18 14:23:04 +01001461################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001462# Build targets
1463################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001464
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301465.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 +01001466.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001467
Juan Castilloa3487d12015-08-18 14:23:04 +01001468all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001469
Juan Castilloa3487d12015-08-18 14:23:04 +01001470msg_start:
Chris Kay1870c722024-05-02 17:52:37 +00001471 $(s)echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001472
Soby Mathew18a62042015-10-26 14:29:21 +00001473ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001474# Check if deprecated declarations and cpp warnings should be treated as error or not.
Chris Kaycfba6452023-12-04 09:55:50 +00001475ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
Varun Wadekar4d034c52019-01-11 14:47:48 -08001476 CPPFLAGS += -Wno-error=deprecated-declarations
1477else
Dan Handley6fa89a22018-02-27 16:03:58 +00001478 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001479endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001480endif #(!ERROR_DEPRECATED)
Soby Mathew18a62042015-10-26 14:29:21 +00001481
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001482$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001483
Juan Castilloa3487d12015-08-18 14:23:04 +01001484# Expand build macros for the different images
1485ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001486BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001487$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001488endif #(NEED_BL1)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001489
Juan Castilloa3487d12015-08-18 14:23:04 +01001490ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001491
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001492ifeq (${RESET_TO_BL2}, 0)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001493FIP_BL2_ARGS := tb-fw
1494endif
1495
Chris Kayfb3b0512021-09-28 15:44:37 +01001496BL2_SOURCES := $(sort ${BL2_SOURCES})
1497
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001498$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001499 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001500
1501endif #(NEED_BL2)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001502
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001503ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001504$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001505endif #(NEED_SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001506
Juan Castilloa3487d12015-08-18 14:23:04 +01001507ifeq (${NEED_BL31},yes)
1508BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001509# Sort BL31 source files to remove duplicates
1510BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301511ifneq (${DECRYPTION_SUPPORT},none)
1512$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001513 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301514else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001515$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001516 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001517endif #(DECRYPTION_SUPPORT)
1518endif #(NEED_BL31)
Juan Castillo379954c2014-11-04 17:36:40 +00001519
Juan Castillo671b8db2015-11-12 10:59:26 +00001520# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001521# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001522# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001523ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001524# Sort BL32 source files to remove duplicates
1525BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001526BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1527
Sumit Gargeec52442019-11-14 16:33:45 +05301528ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001529$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301530 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1531else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001532$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001533 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001534endif #(DECRYPTION_SUPPORT)
1535endif #(NEED_BL32)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001536
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001537# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1538# needs to be built from RMM_SOURCES.
1539ifeq (${NEED_RMM},yes)
1540# Sort RMM source files to remove duplicates
1541RMM_SOURCES := $(sort ${RMM_SOURCES})
1542BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1543
1544$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001545 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1546endif #(NEED_RMM)
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001547
Juan Castilloa3487d12015-08-18 14:23:04 +01001548# Add the BL33 image if required by the platform
1549ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001550$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001551endif #(NEED_BL33)
Juan Castillo9c25a402015-01-13 12:21:04 +00001552
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001553ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001554$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001555 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001556endif #(NEED_BL2U)
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001557
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001558# Expand build macros for the different images
1559ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001560 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001561endif #(NEED_FDT)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001562
Manish Pandey3f90ad72020-01-14 11:52:05 +00001563# Add Secure Partition packages
1564ifeq (${NEED_SP_PKG},yes)
Chris Kayd67442e2024-07-30 13:33:56 +00001565$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | $$(@D)/
Chris Kay1870c722024-05-02 17:52:37 +00001566 $(q)${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
J-Alvesef8e0982022-03-22 16:28:51 +00001567sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Chris Kay1870c722024-05-02 17:52:37 +00001568 $(s)echo
1569 $(s)echo "Built SP Images successfully"
1570 $(s)echo
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001571endif #(NEED_SP_PKG)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001572
Ian Spray36eaaf32014-01-30 17:25:28 +00001573locate-checkpatch:
1574ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001575 $(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 +00001576else
1577ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001578 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001579endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001580endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001581
Achin Gupta4f6ad662013-10-25 09:08:21 +01001582clean:
Chris Kay1870c722024-05-02 17:52:37 +00001583 $(s)echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001584 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001585ifdef UNIX_MK
Chris Kay1870c722024-05-02 17:52:37 +00001586 $(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001587else
1588# Clear the MAKEFLAGS as we do not want
1589# to pass the gnumake flags to nmake.
Chris Kay1870c722024-05-02 17:52:37 +00001590 $(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 +01001591endif #(UNIX_MK)
Chris Kay1870c722024-05-02 17:52:37 +00001592 $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
1593 $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
1594 $(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001595
James Morrisseyeaaeece2013-11-01 13:56:59 +00001596realclean distclean:
Chris Kay1870c722024-05-02 17:52:37 +00001597 $(s)echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001598 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1599 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001600ifdef UNIX_MK
Chris Kay1870c722024-05-02 17:52:37 +00001601 $(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001602else
1603# Clear the MAKEFLAGS as we do not want
1604# to pass the gnumake flags to nmake.
Chris Kay1870c722024-05-02 17:52:37 +00001605 $(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 +01001606endif #(UNIX_MK)
Chris Kay1870c722024-05-02 17:52:37 +00001607 $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
1608 $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
1609 $(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001610
Ian Spray36eaaf32014-01-30 17:25:28 +00001611checkcodebase: locate-checkpatch
Chris Kay1870c722024-05-02 17:52:37 +00001612 $(s)echo " CHECKING STYLE"
1613 $(q)if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001614 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001615 while read GIT_FILE ; \
1616 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1617 done ; \
1618 else \
1619 find . -type f -not -iwholename "*.git*" \
1620 -not -iwholename "*build*" \
1621 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001622 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001623 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001624 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001625 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1626 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001627
1628checkpatch: locate-checkpatch
Chris Kay1870c722024-05-02 17:52:37 +00001629 $(s)echo " CHECKING STYLE"
1630 $(q)if test -n "${CHECKPATCH_OPTS}"; then \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001631 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1632 fi
Chris Kay1870c722024-05-02 17:52:37 +00001633 $(q)COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001634 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1635 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001636 printf "\n[*] Checking style of '$$commit'\n\n"; \
Yann Gautierfaf8c612024-08-09 11:52:03 +02001637 ( git log --format=email "$$commit~..$$commit" \
1638 -- ${CHECK_PATHS} ; \
1639 git diff --format=email "$$commit~..$$commit" \
1640 -- ${CHECK_PATHS}; ) | \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001641 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001642 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001643
1644certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001645
Pali Rohár54ff2132020-11-24 15:38:08 +01001646${CRTTOOL}: FORCE
Chris Kay1870c722024-05-02 17:52:37 +00001647 $(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
1648 $(s)echo
1649 $(s)echo "Built $@ successfully"
1650 $(s)echo
Jon Medhurst407a95c2014-02-12 15:54:48 +00001651
Juan Castillo11abdcd2014-10-21 11:30:42 +01001652ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001653certificates: ${CRT_DEPS} ${CRTTOOL}
Chris Kay1870c722024-05-02 17:52:37 +00001654 $(q)${CRTTOOL} ${CRT_ARGS}
1655 $(s)echo
1656 $(s)echo "Built $@ successfully"
1657 $(s)echo "Certificates can be found in ${BUILD_PLAT}"
1658 $(s)echo
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001659endif #(GENERATE_COT)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001660
Juan Castilloa3487d12015-08-18 14:23:04 +01001661${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001662 $(eval ${CHECK_FIP_CMD})
Chris Kay1870c722024-05-02 17:52:37 +00001663 $(q)${FIPTOOL} create ${FIP_ARGS} $@
1664 $(q)${FIPTOOL} info $@
1665 $(s)echo
1666 $(s)echo "Built $@ successfully"
1667 $(s)echo
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001668
Yatharth Kochard1a93432015-10-12 12:33:47 +01001669ifneq (${GENERATE_COT},0)
1670fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
Chris Kay1870c722024-05-02 17:52:37 +00001671 $(q)${CRTTOOL} ${FWU_CRT_ARGS}
1672 $(s)echo
1673 $(s)echo "Built $@ successfully"
1674 $(s)echo "FWU certificates can be found in ${BUILD_PLAT}"
1675 $(s)echo
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001676endif #(GENERATE_COT)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001677
1678${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001679 $(eval ${CHECK_FWU_FIP_CMD})
Chris Kay1870c722024-05-02 17:52:37 +00001680 $(q)${FIPTOOL} create ${FWU_FIP_ARGS} $@
1681 $(q)${FIPTOOL} info $@
1682 $(s)echo
1683 $(s)echo "Built $@ successfully"
1684 $(s)echo
Yatharth Kochard1a93432015-10-12 12:33:47 +01001685
Juan Castilloa3487d12015-08-18 14:23:04 +01001686fiptool: ${FIPTOOL}
1687fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001688fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001689
Pali Rohár54ff2132020-11-24 15:38:08 +01001690${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001691ifdef UNIX_MK
Chris Kay1870c722024-05-02 17:52:37 +00001692 $(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 +01001693else
1694# Clear the MAKEFLAGS as we do not want
1695# to pass the gnumake flags to nmake.
Chris Kay1870c722024-05-02 17:52:37 +00001696 $(q)set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001697endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001698
Pali Rohár54ff2132020-11-24 15:38:08 +01001699romlib.bin: libraries FORCE
Chris Kay1870c722024-05-02 17:52:37 +00001700 $(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 +01001701
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001702memmap: all
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001703ifdef UNIX_MK
Chris Kay1870c722024-05-02 17:52:37 +00001704 $(q)PYTHONPATH=${CURDIR}/tools/memory \
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001705 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1706else
Chris Kay1870c722024-05-02 17:52:37 +00001707 $(q)set PYTHONPATH=${CURDIR}/tools/memory && \
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001708 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1709endif
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001710
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001711doc:
Chris Kay1870c722024-05-02 17:52:37 +00001712 $(s)echo " BUILD DOCUMENTATION"
1713 $(q)${MAKE} --no-print-directory -C ${DOCS_PATH} html
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001714
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301715enctool: ${ENCTOOL}
1716
Pali Rohár54ff2132020-11-24 15:38:08 +01001717${ENCTOOL}: FORCE
Chris Kay1870c722024-05-02 17:52:37 +00001718 $(q)${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} --no-print-directory -C ${ENCTOOLPATH} all
1719 $(s)echo
1720 $(s)echo "Built $@ successfully"
1721 $(s)echo
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301722
Joakim Bech35fab8c2014-01-23 14:51:49 +01001723cscope:
Chris Kay1870c722024-05-02 17:52:37 +00001724 $(s)echo " CSCOPE"
1725 $(q)find ${CURDIR} -name "*.[chsS]" > cscope.files
1726 $(q)cscope -b -q -k
Joakim Bech35fab8c2014-01-23 14:51:49 +01001727
Ryan Harkin72ee3312014-01-15 16:55:07 +00001728help:
Chris Kay1870c722024-05-02 17:52:37 +00001729 $(s)echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
1730 $(s)echo ""
1731 $(s)echo "PLAT is used to specify which platform you wish to build."
1732 $(s)echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
1733 $(s)echo ""
1734 $(s)echo "platform = ${PLATFORM_LIST}"
1735 $(s)echo ""
1736 $(s)echo "Please refer to the User Guide for a list of all supported options."
1737 $(s)echo "Note that the build system doesn't track dependencies for build "
1738 $(s)echo "options. Therefore, if any of the build options are changed "
1739 $(s)echo "from a previous build, a clean build must be performed."
1740 $(s)echo ""
1741 $(s)echo "Supported Targets:"
1742 $(s)echo " all Build all individual bootloader binaries"
1743 $(s)echo " bl1 Build the BL1 binary"
1744 $(s)echo " bl2 Build the BL2 binary"
1745 $(s)echo " bl2u Build the BL2U binary"
1746 $(s)echo " bl31 Build the BL31 binary"
1747 $(s)echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1748 $(s)echo " this builds secure payload specified by AARCH32_SP"
1749 $(s)echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
1750 $(s)echo " fip Build the Firmware Image Package (FIP)"
1751 $(s)echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
1752 $(s)echo " checkcodebase Check the coding style of the entire source tree"
1753 $(s)echo " checkpatch Check the coding style on changes in the current"
1754 $(s)echo " branch against BASE_COMMIT (default origin/master)"
1755 $(s)echo " clean Clean the build for the selected platform"
1756 $(s)echo " cscope Generate cscope index"
1757 $(s)echo " distclean Remove all build artifacts for all platforms"
1758 $(s)echo " certtool Build the Certificate generation tool"
1759 $(s)echo " enctool Build the Firmware encryption tool"
1760 $(s)echo " fiptool Build the Firmware Image Package (FIP) creation tool"
1761 $(s)echo " sp Build the Secure Partition Packages"
1762 $(s)echo " sptool Build the Secure Partition Package creation tool"
1763 $(s)echo " dtbs Build the Device Tree Blobs (if required for the platform)"
1764 $(s)echo " memmap Print the memory map of the built binaries"
1765 $(s)echo " doc Build html based documentation using Sphinx tool"
1766 $(s)echo ""
1767 $(s)echo "Note: most build targets require PLAT to be set to a specific platform."
1768 $(s)echo ""
1769 $(s)echo "example: build all targets for the FVP platform:"
1770 $(s)echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001771
1772.PHONY: FORCE
1773FORCE:;