blob: bbde1a7a009e5b677d7dc5da2ce056e401342e43 [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 Kay1870c722024-05-02 17:52:37 +000027include ${MAKE_HELPERS_DIRECTORY}common.mk
Juan Castilloa3487d12015-08-18 14:23:04 +010028
29################################################################################
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010030# Default values for build configurations, and their dependencies
Juan Castilloa3487d12015-08-18 14:23:04 +010031################################################################################
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +010032
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010033include ${MAKE_HELPERS_DIRECTORY}defaults.mk
dp-arm3cac7862016-09-19 11:18:44 +010034
Chris Kayc8a47ba2023-10-20 09:17:33 +000035################################################################################
36# Configure the toolchains used to build TF-A and its tools
37################################################################################
38
Chris Kay0adde4e2024-05-14 13:08:31 +000039#
40# The clean and check targets do not behave correctly if the user's environment
41# does not appropriately configure a toolchain. While we try to find a permanent
42# solution to this, do not try to detect any toolchains if we are building
43# exclusively with targets which do not use any toolchain tools.
44#
45
46ifeq ($(filter-out check% %clean doc %tool,$(or $(MAKECMDGOALS),all)),)
47 toolchains :=
48endif
49
Chris Kayc8a47ba2023-10-20 09:17:33 +000050include ${MAKE_HELPERS_DIRECTORY}toolchain.mk
51
Antonio Nino Diaz808c2292017-04-18 15:16:05 +010052# Assertions enabled for DEBUG builds by default
Antonio Nino Diaz808c2292017-04-18 15:16:05 +010053ENABLE_ASSERTIONS := ${DEBUG}
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010054ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION}
55PLAT := ${DEFAULT_PLAT}
Achin Gupta4f6ad662013-10-25 09:08:21 +010056
Juan Castilloa3487d12015-08-18 14:23:04 +010057################################################################################
58# Checkpatch script options
59################################################################################
60
Sandrine Bailleux0b5a1582016-06-02 11:19:59 +010061CHECKCODE_ARGS := --no-patch
Dan Handleyd7b59e42016-06-02 17:15:13 +010062# Do not check the coding style on imported library files or documentation files
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030063INC_DRV_DIRS_TO_CHECK := $(sort $(filter-out \
64 include/drivers/arm, \
65 $(wildcard include/drivers/*)))
Dan Handleyd7b59e42016-06-02 17:15:13 +010066INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \
Dan Handley3a355712016-06-02 18:21:02 +010067 include/lib/libfdt \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010068 include/lib/libc, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010069 $(wildcard include/lib/*)))
70INC_DIRS_TO_CHECK := $(sort $(filter-out \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030071 include/lib \
72 include/drivers, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010073 $(wildcard include/*)))
74LIB_DIRS_TO_CHECK := $(sort $(filter-out \
dp-arme3cc8382017-05-04 12:15:35 +010075 lib/compiler-rt \
Antonio Nino Diazd84f88e2017-01-16 17:20:45 +000076 lib/libfdt% \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010077 lib/libc, \
Daniel Boulby958f1dd2022-10-05 11:05:22 +010078 lib/zlib \
Dan Handleyd7b59e42016-06-02 17:15:13 +010079 $(wildcard lib/*)))
80ROOT_DIRS_TO_CHECK := $(sort $(filter-out \
81 lib \
82 include \
83 docs \
Paul Beesleyadfab5b2019-03-07 16:42:31 +000084 %.rst, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010085 $(wildcard *)))
86CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \
87 ${INC_DIRS_TO_CHECK} \
88 ${INC_LIB_DIRS_TO_CHECK} \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030089 ${LIB_DIRS_TO_CHECK} \
90 ${INC_DRV_DIRS_TO_CHECK} \
91 ${INC_ARM_DIRS_TO_CHECK}
Ian Spray36eaaf32014-01-30 17:25:28 +000092
Juan Castilloa3487d12015-08-18 14:23:04 +010093################################################################################
94# Process build options
95################################################################################
96
Chris Kay1870c722024-05-02 17:52:37 +000097ifeq ($(verbose),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010098 CHECKCODE_ARGS += --no-summary --terse
Achin Gupta4f6ad662013-10-25 09:08:21 +010099endif
Andre Przywaracf2bb082018-09-27 10:56:05 +0100100
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100101################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100102# Auxiliary tools (fiptool, cert_create, etc)
103################################################################################
104
105# Variables for use with Certificate Generation Tool
106CRTTOOLPATH ?= tools/cert_create
107CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT}
108
109# Variables for use with Firmware Encryption Tool
110ENCTOOLPATH ?= tools/encrypt_fw
111ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
112
113# Variables for use with Firmware Image Package
114FIPTOOLPATH ?= tools/fiptool
115FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT}
116
117# Variables for use with sptool
118SPTOOLPATH ?= tools/sptool
119SPTOOL ?= ${SPTOOLPATH}/sptool.py
120SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py
Karl Meakinaba46182023-02-14 11:56:02 +0000121SP_DTS_LIST_FRAGMENT ?= ${BUILD_PLAT}/sp_list_fragment.dts
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100122
123# Variables for use with ROMLIB
124ROMLIBPATH ?= lib/romlib
125
126# Variable for use with Python
127PYTHON ?= python3
128
129# Variables for use with documentation build using Sphinx tool
130DOCS_PATH ?= docs
131
132################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100133# Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags
Juan Castilloa3487d12015-08-18 14:23:04 +0100134################################################################################
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100135ifeq (${ARM_ARCH_MAJOR},7)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100136 target32-directive = -target arm-none-eabi
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500137# Will set march-directive from platform configuration
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100138else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100139 target32-directive = -target armv8a-none-eabi
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100140endif #(ARM_ARCH_MAJOR)
141
142################################################################################
143# Get Architecture Feature Modifiers
144################################################################################
145arch-features = ${ARM_ARCH_FEATURE}
146
Chris Kaycfba6452023-12-04 09:55:50 +0000147ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
148 ifeq ($($(ARCH)-cc-id),arm-clang)
Govindraj Raja69096412023-06-01 16:29:16 -0500149 TF_CFLAGS_aarch32 := -target arm-arm-none-eabi
150 TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi
originfba80d82022-01-19 16:30:14 +0000151 else
Govindraj Raja69096412023-06-01 16:29:16 -0500152 TF_CFLAGS_aarch32 = $(target32-directive)
153 TF_CFLAGS_aarch64 := -target aarch64-elf
originfba80d82022-01-19 16:30:14 +0000154 endif
155
Chris Kaycfba6452023-12-04 09:55:50 +0000156else ifeq ($($(ARCH)-cc-id),gnu-gcc)
Chris Kay00416dc2024-02-20 16:19:54 +0000157 # Enable LTO only for aarch64
158 ifeq (${ARCH},aarch64)
159 LTO_CFLAGS = $(if $(filter-out 0,$(ENABLE_LTO)),-flto)
zelalem-aweked5f45272019-11-12 16:20:17 -0600160 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100161endif #(clang)
dp-arm320e8442017-05-02 12:00:08 +0100162
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100163# Process Debug flag
164$(eval $(call add_define,DEBUG))
165ifneq (${DEBUG}, 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100166 BUILD_TYPE := debug
167 TF_CFLAGS += -g -gdwarf-4
168 ASFLAGS += -g -Wa,-gdwarf-4
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100169
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100170 # Use LOG_LEVEL_INFO by default for debug builds
171 LOG_LEVEL := 40
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100172else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100173 BUILD_TYPE := release
174 # Use LOG_LEVEL_NOTICE by default for release builds
175 LOG_LEVEL := 20
176endif #(Debug)
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100177
Peiyuan Song44f8f472020-04-25 16:53:43 +0800178# Default build string (git branch and commit)
179ifeq (${BUILD_STRING},)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100180 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
Peiyuan Song44f8f472020-04-25 16:53:43 +0800181endif
laurenw-arme954f652022-07-12 10:12:05 -0500182VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
Peiyuan Song44f8f472020-04-25 16:53:43 +0800183
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100184ifeq (${AARCH32_INSTRUCTION_SET},A32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100185 TF_CFLAGS_aarch32 += -marm
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100186else ifeq (${AARCH32_INSTRUCTION_SET},T32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100187 TF_CFLAGS_aarch32 += -mthumb
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100188else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100189 $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
190endif #(AARCH32_INSTRUCTION_SET)
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100191
Sandrine Bailleux1aa72ec2018-07-03 09:14:45 +0200192TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-arm320e8442017-05-02 12:00:08 +0100193TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathewa1941252016-05-05 14:33:33 +0100194
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100195##############################################################################
196# WARNINGS Configuration
197###############################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100198# General warnings
199WARNINGS := -Wall -Wmissing-include-dirs -Wunused \
Yann Gautier94a40b62021-05-20 13:18:14 +0200200 -Wdisabled-optimization -Wvla -Wshadow \
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000201 -Wredundant-decls
202# stricter warnings
203WARNINGS += -Wextra -Wno-trigraphs
204# too verbose for generic build
205WARNINGS += -Wno-missing-field-initializers \
206 -Wno-type-limits -Wno-sign-compare \
207# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
208WARNINGS += -Wno-unused-parameter
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100209
210# Additional warnings
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000211# Level 1 - infrequent warnings we should have none of
212# full -Wextra
213WARNING1 += -Wsign-compare
214WARNING1 += -Wtype-limits
215WARNING1 += -Wmissing-field-initializers
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100216
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000217# Level 2 - problematic warnings that we want
218# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
219# TODO: disable just for them and move into default build
220WARNING2 += -Wold-style-definition
221WARNING2 += -Wmissing-prototypes
222WARNING2 += -Wmissing-format-attribute
223# TF-A aims to comply with this eventually. Effort too large at present
224WARNING2 += -Wundef
Boyan Karatotev9c6ba592022-11-21 14:49:05 +0000225# currently very involved and many platforms set this off
226WARNING2 += -Wunused-const-variable=2
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100227
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000228# Level 3 - very pedantic, frequently ignored
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100229WARNING3 := -Wbad-function-cast
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000230WARNING3 += -Waggregate-return
231WARNING3 += -Wnested-externs
232WARNING3 += -Wcast-align
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100233WARNING3 += -Wcast-qual
234WARNING3 += -Wconversion
235WARNING3 += -Wpacked
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100236WARNING3 += -Wpointer-arith
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100237WARNING3 += -Wswitch-default
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100238
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000239# Setting W is quite verbose and most warnings will be pre-existing issues
240# outside of the contributor's control. Don't fail the build on them so warnings
241# can be seen and hopefully addressed
242ifdef W
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100243 ifneq (${W},0)
244 E ?= 0
245 endif
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000246endif
247
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100248ifeq (${W},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100249 WARNINGS += $(WARNING1)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100250else ifeq (${W},2)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100251 WARNINGS += $(WARNING1) $(WARNING2)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100252else ifeq (${W},3)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100253 WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
254endif #(W)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100255
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100256# Compiler specific warnings
Chris Kaycfba6452023-12-04 09:55:50 +0000257ifeq ($(filter %-clang,$($(ARCH)-cc-id)),)
Justin Chadwell7a914232019-07-03 14:15:56 +0100258# not using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100259WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \
260 -Wpacked-bitfield-compat -Wshift-overflow=2 \
261 -Wlogical-op
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500262
263# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
264TF_CFLAGS += $(call cc_option, --param=min-pagesize=0)
265
Bipin Ravie53e6ae2023-09-28 13:17:24 -0500266ifeq ($(HARDEN_SLS), 1)
267 TF_CFLAGS_aarch64 += $(call cc_option, -mharden-sls=all)
268endif
269
Justin Chadwell7a914232019-07-03 14:15:56 +0100270else
271# using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100272WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
273 -Wlogical-op-parentheses
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100274endif #(Clang Warning)
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100275
Yann Gautier957c3532018-12-10 18:08:53 +0100276ifneq (${E},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100277 ERRORS := -Werror
278endif #(E)
Yann Gautier957c3532018-12-10 18:08:53 +0100279
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100280################################################################################
281# Compiler and Linker Directives
282################################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100283CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
284 $(ERRORS) $(WARNINGS)
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500285ASFLAGS += $(CPPFLAGS) \
Julius Werner53456fc2019-07-09 13:49:11 -0700286 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900287TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Holland23f5e542019-10-20 16:11:25 -0500288 -ffunction-sections -fdata-sections \
289 -ffreestanding -fno-builtin -fno-common \
290 -Os -std=gnu99
Juan Castilloa3487d12015-08-18 14:23:04 +0100291
Justin Chadwell83e04882019-08-20 11:01:52 +0100292ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100293 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
294endif #(${SANITIZE_UB},on)
295
Justin Chadwell83e04882019-08-20 11:01:52 +0100296ifeq (${SANITIZE_UB},trap)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100297 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
Justin Chadwell83e04882019-08-20 11:01:52 +0100298 -fsanitize-undefined-trap-on-error
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100299endif #(${SANITIZE_UB},trap)
Justin Chadwell83e04882019-08-20 11:01:52 +0100300
Chris Kay0adde4e2024-05-14 13:08:31 +0000301GCC_V_OUTPUT := $(if $($(ARCH)-cc),$(shell $($(ARCH)-cc) -v 2>&1))
david cunado34ab6092017-11-30 21:58:01 +0000302
Marco Felsch24ad8402022-11-09 12:59:09 +0100303TF_LDFLAGS += -z noexecstack
304
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100305# LD = armlink
Chris Kaycfba6452023-12-04 09:55:50 +0000306ifeq ($($(ARCH)-ld-id),arm-link)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100307 TF_LDFLAGS += --diag_error=warning --lto_level=O1
308 TF_LDFLAGS += --remove --info=unused,unusedsymbols
309 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100310
311# LD = gcc (used when GCC LTO is enabled)
Chris Kaycfba6452023-12-04 09:55:50 +0000312else ifeq ($($(ARCH)-ld-id),gnu-gcc)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100313 # Pass ld options with Wl or Xlinker switches
Chris Kayb0fe96f2024-01-16 11:53:35 +0000314 TF_LDFLAGS += $(call ld_option,-Xlinker --no-warn-rwx-segments)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100315 TF_LDFLAGS += -Wl,--fatal-warnings -O1
316 TF_LDFLAGS += -Wl,--gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000317
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100318 TF_LDFLAGS += -Wl,-z,common-page-size=4096 #Configure page size constants
319 TF_LDFLAGS += -Wl,-z,max-page-size=4096
Andrey Skvortsove2ebb722023-09-05 23:06:29 +0300320 TF_LDFLAGS += -Wl,--build-id=none
Chris Kay73b1f402022-12-22 13:26:37 +0000321
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100322 ifeq ($(ENABLE_LTO),1)
323 ifeq (${ARCH},aarch64)
324 TF_LDFLAGS += -flto -fuse-linker-plugin
Andrey Skvortsov664d6502023-12-08 18:04:51 +0300325 TF_LDFLAGS += -flto-partition=one
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100326 endif
327 endif #(ENABLE_LTO)
328
zelalem-aweked5f45272019-11-12 16:20:17 -0600329# GCC automatically adds fix-cortex-a53-843419 flag when used to link
330# which breaks some builds, so disable if errata fix is not explicitly enabled
Yann Gautier3d73d162023-03-15 16:18:16 +0100331 ifeq (${ARCH},aarch64)
332 ifneq (${ERRATA_A53_843419},1)
333 TF_LDFLAGS += -mno-fix-cortex-a53-843419
334 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100335 endif
336 TF_LDFLAGS += -nostdlib
337 TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100338
339# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekar4d034c52019-01-11 14:47:48 -0800340else
Marco Felsch24ad8402022-11-09 12:59:09 +0100341# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
342# are not loaded by a elf loader.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100343 TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
344 TF_LDFLAGS += -O1
345 TF_LDFLAGS += --gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000346
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100347 TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
348 TF_LDFLAGS += -z max-page-size=4096
Andrey Skvortsove2ebb722023-09-05 23:06:29 +0300349 TF_LDFLAGS += --build-id=none
Chris Kay73b1f402022-12-22 13:26:37 +0000350
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100351# ld.lld doesn't recognize the errata flags,
Yabin Cuied7dc512023-01-19 20:06:04 +0000352# therefore don't add those in that case.
353# ld.lld reports section type mismatch warnings,
354# therefore don't add --fatal-warnings to it.
Chris Kaycfba6452023-12-04 09:55:50 +0000355 ifneq ($($(ARCH)-ld-id),llvm-lld)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100356 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
357 endif
358
359endif #(LD = armlink)
Juan Castilloa3487d12015-08-18 14:23:04 +0100360
361################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500362# Setup ARCH_MAJOR/MINOR before parsing arch_features.
363################################################################################
364ifeq (${ENABLE_RME},1)
AlexeiFedorov65258452024-03-13 11:53:44 +0000365 ARM_ARCH_MAJOR := 9
366 ARM_ARCH_MINOR := 2
Govindraj Raja0386e312023-08-17 10:41:48 -0500367endif
368
369################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100370# Common sources and include directories
371################################################################################
dp-arme3cc8382017-05-04 12:15:35 +0100372include lib/compiler-rt/compiler-rt.mk
Juan Castilloa3487d12015-08-18 14:23:04 +0100373
Chris Kay99b5b2e2024-03-08 16:08:31 +0000374# Allow overriding the timestamp, for example for reproducible builds, or to
375# synchronize timestamps across multiple projects.
376# This must be set to a C string (including quotes where applicable).
377BUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__
378
379DEFINES += -DBUILD_MESSAGE_TIMESTAMP='$(BUILD_MESSAGE_TIMESTAMP)'
380DEFINES += -DBUILD_MESSAGE_VERSION_STRING='"$(VERSION_STRING)"'
381DEFINES += -DBUILD_MESSAGE_VERSION='"$(VERSION)"'
382
Juan Castilloa3487d12015-08-18 14:23:04 +0100383BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100384 common/tf_log.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100385 common/${ARCH}/debug.S \
Julius Werner03020da2018-11-27 22:10:56 -0800386 drivers/console/multi_console.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100387 lib/${ARCH}/cache_helpers.S \
388 lib/${ARCH}/misc_helpers.S \
Boyan Karatotev05504ba2023-02-15 13:21:50 +0000389 lib/extensions/pmuv3/${ARCH}/pmuv3.c \
Soby Mathew2f38ce32018-02-08 17:45:12 +0000390 plat/common/plat_bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100391 plat/common/plat_log_common.c \
dp-arm230011c2017-03-07 11:02:47 +0000392 plat/common/${ARCH}/plat_common.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100393 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas0f8f9852018-05-08 10:27:10 +0100394 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000395
Chris Kaycfba6452023-12-04 09:55:50 +0000396ifeq ($($(ARCH)-cc-id),arm-clang)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100397 BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100398endif
399
Justin Chadwell83e04882019-08-20 11:01:52 +0100400ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100401 BL_COMMON_SOURCES += plat/common/ubsan.c
Justin Chadwell83e04882019-08-20 11:01:52 +0100402endif
403
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200404INCLUDES += -Iinclude \
Antonio Nino Diaz8d1ade62018-12-17 17:20:57 +0000405 -Iinclude/arch/${ARCH} \
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000406 -Iinclude/lib/cpus/${ARCH} \
407 -Iinclude/lib/el3_runtime/${ARCH} \
408 ${PLAT_INCLUDES} \
409 ${SPD_INCLUDES}
410
Nishant Sharma331b5682022-08-15 16:37:07 +0100411DTC_FLAGS += -I dts -O dtb
412DTC_CPPFLAGS += -P -nostdinc $(INCLUDES) -Ifdts -undef \
413 -x assembler-with-cpp $(DEFINES)
414
Antonio Nino Diazc3a2cf22018-11-19 11:48:30 +0000415include common/backtrace/backtrace.mk
416
Juan Castilloa3487d12015-08-18 14:23:04 +0100417################################################################################
Govindraj Raja1a211292023-09-20 14:32:24 -0500418# Generic definitions
419################################################################################
420include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
421
422ifeq (${BUILD_BASE},)
423 BUILD_BASE := ./build
424endif
425BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
426
427SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
428
429# Platforms providing their own TBB makefile may override this value
430INCLUDE_TBBR_MK := 1
431
432################################################################################
433# Include SPD Makefile if one has been specified
434################################################################################
435
436ifneq (${SPD},none)
437 ifeq (${ARCH},aarch32)
438 $(error "Error: SPD is incompatible with AArch32.")
439 endif
440
441 ifdef EL3_PAYLOAD_BASE
442 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
443 $(warning "The SPD and its BL32 companion will be present but \
444 ignored.")
445 endif
446
447 ifeq (${SPD},spmd)
448 # SPMD is located in std_svc directory
449 SPD_DIR := std_svc
450
451 ifeq ($(SPMD_SPM_AT_SEL2),1)
452 CTX_INCLUDE_EL2_REGS := 1
453 ifeq ($(SPMC_AT_EL3),1)
454 $(error SPM cannot be enabled in both S-EL2 and EL3.)
455 endif
456 endif
457
458 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
459 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
460 endif
461
Arunachalam Ganapathyfd29d582022-04-11 14:36:54 +0100462 ifeq ($(findstring trusty_sp,$(ARM_SPMC_MANIFEST_DTS)),trusty_sp)
463 DTC_CPPFLAGS += -DTRUSTY_SP_FW_CONFIG
464 endif
465
Govindraj Raja1a211292023-09-20 14:32:24 -0500466 ifeq ($(TS_SP_FW_CONFIG),1)
Arunachalam Ganapathyfd29d582022-04-11 14:36:54 +0100467 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
Govindraj Raja1a211292023-09-20 14:32:24 -0500468 endif
469
470 ifneq ($(ARM_BL2_SP_LIST_DTS),)
471 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
472 endif
473
474 ifneq ($(SP_LAYOUT_FILE),)
475 BL2_ENABLE_SP_LOAD := 1
476 endif
Govindraj Rajabad835a2023-10-31 14:48:11 -0500477
478 ifeq ($(SPMC_AT_EL3_SEL0_SP),1)
479 ifneq ($(SPMC_AT_EL3),1)
480 $(error SEL0 SP cannot be enabled without SPMC at EL3)
481 endif
482 endif
Govindraj Raja1a211292023-09-20 14:32:24 -0500483 else
484 # All other SPDs in spd directory
485 SPD_DIR := spd
486 endif #(SPD)
487
488 # We expect to locate an spd.mk under the specified SPD directory
489 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
490
491 ifeq (${SPD_MAKE},)
492 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
493 endif
494 $(info Including ${SPD_MAKE})
495 include ${SPD_MAKE}
496
497 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
498 # Makefile would set NEED_BL32 to "yes". In this case, the build system
499 # supports two mutually exclusive options:
500 # * BL32 is built from source: then BL32_SOURCES must contain the list
501 # of source files to build BL32
502 # * BL32 is a prebuilt binary: then BL32 must point to the image file
503 # that will be included in the FIP
504 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
505 # over the sources.
506endif #(SPD=none)
507
508ifeq (${ENABLE_SPMD_LP}, 1)
509ifneq (${SPD},spmd)
510 $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
511endif
512ifeq ($(SPMC_AT_EL3),1)
513 $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
514endif
515endif
516
517################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500518# Process BRANCH_PROTECTION value and set
519# Pointer Authentication and Branch Target Identification flags
520################################################################################
521ifeq (${BRANCH_PROTECTION},0)
522 # Default value turns off all types of branch protection
523 BP_OPTION := none
524else ifneq (${ARCH},aarch64)
525 $(error BRANCH_PROTECTION requires AArch64)
526else ifeq (${BRANCH_PROTECTION},1)
527 # Enables all types of branch protection features
528 BP_OPTION := standard
529 ENABLE_BTI := 1
530 ENABLE_PAUTH := 1
531else ifeq (${BRANCH_PROTECTION},2)
532 # Return address signing to its standard level
533 BP_OPTION := pac-ret
534 ENABLE_PAUTH := 1
535else ifeq (${BRANCH_PROTECTION},3)
536 # Extend the signing to include leaf functions
537 BP_OPTION := pac-ret+leaf
538 ENABLE_PAUTH := 1
539else ifeq (${BRANCH_PROTECTION},4)
540 # Turn on branch target identification mechanism
541 BP_OPTION := bti
542 ENABLE_BTI := 1
543else
544 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
545endif #(BRANCH_PROTECTION)
546
547ifeq ($(ENABLE_PAUTH),1)
548 CTX_INCLUDE_PAUTH_REGS := 1
549endif
550ifneq (${BP_OPTION},none)
551 TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
552endif #(BP_OPTION)
553
554# Pointer Authentication sources
555ifeq (${ENABLE_PAUTH}, 1)
556# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
557# Pauth support. As it's not secure, it must be reimplemented for real platforms
558 BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
559endif
560
Govindraj Raja1a211292023-09-20 14:32:24 -0500561################################################################################
562# Include the platform specific Makefile after the SPD Makefile (the platform
563# makefile may use all previous definitions in this file)
564################################################################################
565include ${PLAT_MAKEFILE_FULL}
566
567################################################################################
568# Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from
569# platform.
570################################################################################
571include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
572
Govindraj Raja0386e312023-08-17 10:41:48 -0500573####################################################
574# Enable required options for Memory Stack Tagging.
575####################################################
576
577# Currently, these options are enabled only for clang and armclang compiler.
578ifeq (${SUPPORT_STACK_MEMTAG},yes)
579 ifdef mem_tag_arch_support
580 # Check for armclang and clang compilers
Chris Kaycfba6452023-12-04 09:55:50 +0000581 ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
Govindraj Raja0386e312023-08-17 10:41:48 -0500582 # Add "memtag" architecture feature modifier if not specified
583 ifeq ( ,$(findstring memtag,$(arch-features)))
584 arch-features := $(arch-features)+memtag
585 endif # memtag
Chris Kaycfba6452023-12-04 09:55:50 +0000586 ifeq ($($(ARCH)-cc-id),arm-clang)
Govindraj Raja0386e312023-08-17 10:41:48 -0500587 TF_CFLAGS += -mmemtag-stack
Chris Kaycfba6452023-12-04 09:55:50 +0000588 else ifeq ($($(ARCH)-cc-id),llvm-clang)
Govindraj Raja0386e312023-08-17 10:41:48 -0500589 TF_CFLAGS += -fsanitize=memtag
590 endif # armclang
591 endif
592 else
593 $(error "Error: stack memory tagging is not supported for \
594 architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
595 endif #(mem_tag_arch_support)
596endif #(SUPPORT_STACK_MEMTAG)
597
598################################################################################
599# RME dependent flags configuration, Enable optional features for RME.
600################################################################################
601# FEAT_RME
602ifeq (${ENABLE_RME},1)
Govindraj Raja60f52662023-10-12 16:57:46 -0500603 # RME doesn't support BRBE
604 ENABLE_BRBE_FOR_NS := 0
605
Govindraj Raja0386e312023-08-17 10:41:48 -0500606 # RME doesn't support PIE
607 ifneq (${ENABLE_PIE},0)
608 $(error ENABLE_RME does not support PIE)
609 endif
610
611 # RME doesn't support BRBE
612 ifneq (${ENABLE_BRBE_FOR_NS},0)
613 $(error ENABLE_RME does not support BRBE.)
614 endif
615
616 # RME requires AARCH64
617 ifneq (${ARCH},aarch64)
618 $(error ENABLE_RME requires AArch64)
619 endif
620
621 # RME requires el2 context to be saved for now.
622 CTX_INCLUDE_EL2_REGS := 1
623 CTX_INCLUDE_AARCH32_REGS := 0
624 CTX_INCLUDE_PAUTH_REGS := 1
625
626 # RME enables CSV2_2 extension by default.
627 ENABLE_FEAT_CSV2_2 = 1
628endif #(FEAT_RME)
629
630################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500631# Include rmmd Makefile if RME is enabled
632################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500633ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100634 ifneq (${ARCH},aarch64)
635 $(error ENABLE_RME requires AArch64)
636 endif
637 ifeq ($(SPMC_AT_EL3),1)
638 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
639 endif
640
641 ifneq (${SPD}, none)
642 ifneq (${SPD}, spmd)
643 $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
644 endif
645 endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500646include services/std_svc/rmmd/rmmd.mk
647$(warning "RME is an experimental feature")
648endif
649
Govindraj Raja1a211292023-09-20 14:32:24 -0500650ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
651 ifeq (${SPD},none)
652 ifeq (${ENABLE_RME},0)
653 $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
654 or RME is enabled)
655 endif
656 endif
657endif
Jon Medhurst66573cb2014-02-13 15:19:28 +0000658
Govindraj Raja69096412023-06-01 16:29:16 -0500659################################################################################
660# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
661# up with appropriate march values for compiler.
662################################################################################
663include ${MAKE_HELPERS_DIRECTORY}march.mk
664
665TF_CFLAGS += $(march-directive)
Govindraj Raja0c572472024-01-23 16:00:19 -0600666ASFLAGS += $(march-directive)
Govindraj Raja69096412023-06-01 16:29:16 -0500667
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600668# This internal flag is common option which is set to 1 for scenarios
669# when the BL2 is running in EL3 level. This occurs in two scenarios -
670# 4 world system running BL2 at EL3 and two world system without BL1 running
671# BL2 in EL3
672
673ifeq (${RESET_TO_BL2},1)
674 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100675 ifeq (${ENABLE_RME},1)
676 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
677 supported at the moment.)
678 endif
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600679else ifeq (${ENABLE_RME},1)
680 BL2_RUNS_AT_EL3 := 1
681else
682 BL2_RUNS_AT_EL3 := 0
683endif
684
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100685# This internal flag is set to 1 when Firmware First handling of External aborts
686# is required by lowe ELs. Currently only NS requires this support.
687ifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
688 FFH_SUPPORT := 1
689else
690 FFH_SUPPORT := 0
691endif
692
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900693$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
694
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100695ifeq (${ARM_ARCH_MAJOR},7)
696include make_helpers/armv7-a-cpus.mk
697endif
698
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900699PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
700ifneq ($(PIE_FOUND),)
701 TF_CFLAGS += -fno-PIE
Chris Kaycfba6452023-12-04 09:55:50 +0000702ifeq ($($(ARCH)-ld-id),gnu-gcc)
Samuel Holland9286c022022-04-08 21:56:02 -0500703 TF_LDFLAGS += -no-pie
704endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100705endif #(PIE_FOUND)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900706
Chris Kaycfba6452023-12-04 09:55:50 +0000707ifeq ($($(ARCH)-ld-id),gnu-gcc)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900708 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100709else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900710 PIE_LDFLAGS += -pie --no-dynamic-linker
711endif
712
713ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100714 ifeq ($(RESET_TO_BL2),1)
715 ifneq ($(BL2_IN_XIP_MEM),1)
716 BL2_CPPFLAGS += -fpie
717 BL2_CFLAGS += -fpie
718 BL2_LDFLAGS += $(PIE_LDFLAGS)
719 endif #(BL2_IN_XIP_MEM)
720 endif #(RESET_TO_BL2)
Chris Kay13886c82023-02-02 14:39:03 +0000721 BL31_CPPFLAGS += -fpie
722 BL31_CFLAGS += -fpie
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900723 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay13886c82023-02-02 14:39:03 +0000724
725 BL32_CPPFLAGS += -fpie
Masahiro Yamadade634f82020-01-17 13:45:14 +0900726 BL32_CFLAGS += -fpie
727 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100728endif #(ENABLE_PIE)
Soby Mathew078f1a42018-08-28 11:13:55 +0100729
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000730BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
731BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
732BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
733
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900734BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600735ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100736 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900737else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100738 BL2_CPPFLAGS += -DIMAGE_AT_EL1
739endif #(RESET_TO_BL2)
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000740
741ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100742 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
743 BL31_CPPFLAGS += -DIMAGE_AT_EL3
744 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000745else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100746 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900747endif
748
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000749# Include the CPU specific operations makefile, which provides default
750# values for all CPU errata workarounds and CPU specific optimisations.
751# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100752include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100753
dp-armcdd03cb2017-02-15 11:07:55 +0000754################################################################################
755# Build `AARCH32_SP` as BL32 image for AArch32
756################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100757ifeq (${ARCH},aarch32)
758 NEED_BL32 := yes
dp-armcdd03cb2017-02-15 11:07:55 +0000759
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100760 ifneq (${AARCH32_SP},none)
761 # We expect to locate an sp.mk under the specified AARCH32_SP directory
762 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-armcdd03cb2017-02-15 11:07:55 +0000763
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100764 ifeq (${AARCH32_SP_MAKE},)
765 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
766 endif
Juan Pablo Conde6aba3b12023-08-09 13:19:21 -0500767 $(info Including ${AARCH32_SP_MAKE})
768 include ${AARCH32_SP_MAKE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100769 endif
770endif #(ARCH=aarch32)
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800771
772################################################################################
773# Include libc if not overridden
774################################################################################
775ifeq (${OVERRIDE_LIBC},0)
776include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000777endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100778
779################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100780# Check incompatible options and dependencies
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000781################################################################################
782
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100783# USE_DEBUGFS experimental feature recommended only in debug builds
784ifeq (${USE_DEBUGFS},1)
785 ifeq (${DEBUG},1)
786 $(warning DEBUGFS experimental feature is enabled.)
787 else
788 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800789 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100790endif #(USE_DEBUGFS)
791
792# USE_SPINLOCK_CAS requires AArch64 build
793ifeq (${USE_SPINLOCK_CAS},1)
794 ifneq (${ARCH},aarch64)
795 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800796 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100797endif #(USE_SPINLOCK_CAS)
798
799# The cert_create tool cannot generate certificates individually, so we use the
800# target 'certificates' to create them all
801ifneq (${GENERATE_COT},0)
802 FIP_DEPS += certificates
803 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000804endif
805
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100806ifneq (${DECRYPTION_SUPPORT},none)
807 ENC_ARGS += -f ${FW_ENC_STATUS}
808 ENC_ARGS += -k ${ENC_KEY}
809 ENC_ARGS += -n ${ENC_NONCE}
810 FIP_DEPS += enctool
811 FWU_FIP_DEPS += enctool
812endif #(DECRYPTION_SUPPORT)
813
814ifdef EL3_PAYLOAD_BASE
815 ifdef PRELOADED_BL33_BASE
816 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
817 incompatible build options. EL3_PAYLOAD_BASE has priority.")
818 endif
819 ifneq (${GENERATE_COT},0)
820 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
821 build options.")
822 endif
823 ifneq (${TRUSTED_BOARD_BOOT},0)
824 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
825 incompatible \ build options.")
826 endif
827endif #(EL3_PAYLOAD_BASE)
828
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000829ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100830 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000831 $(warning "BL33 image is not needed when option \
832 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100833 endif
834 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100835 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100836 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
837 endif
838endif #(NEED_BL33)
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000839
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000840# When building for systems with hardware-assisted coherency, there's no need to
841# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
842ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100843 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000844endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100845
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600846#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
847ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100848 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000849endif
850
Manish Pandeyd419e222023-02-13 12:39:17 +0000851# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100852ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100853 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100854 and HANDLE_EA_EL3_FIRST_NS instead")
Manish Pandeyd419e222023-02-13 12:39:17 +0000855endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100856
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100857
Manish Pandeyd419e222023-02-13 12:39:17 +0000858# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000859ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100860 ifeq ($(ENABLE_FEAT_RAS),0)
861 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
862 endif
863endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000864
Roberto Vargas025946a2018-09-24 17:20:48 +0100865# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100866ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100867 ifeq (${TRUSTED_BOARD_BOOT}, 0)
868 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
869 to be set.")
870 endif
871endif #(DYN_DISABLE_AUTH)
Soby Mathew9fe88042018-03-26 12:43:37 +0100872
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100873ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
874# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100875 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100876else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
877# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100878 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100879else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
880# Support hash calculation only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100881 CRYPTO_SUPPORT := 2
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100882else ifeq (${TRUSTED_BOARD_BOOT},1)
883# Support authentication verification only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100884 CRYPTO_SUPPORT := 1
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000885else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100886 CRYPTO_SUPPORT := 0
887endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000888
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +0100889# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
890ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100891 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +0100892endif
893
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000894# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100895# registers associated to it are also saved and restored.
896# 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 +0000897ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100898 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
899 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
900 endif
901endif #(ENABLE_PAUTH)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100902
903ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100904 ifneq (${ARCH},aarch64)
905 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
906 endif
907endif #(CTX_INCLUDE_PAUTH_REGS)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000908
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000909ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100910 $(info FEATURE_DETECTION is an experimental feature)
911endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000912
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000913ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100914 ifeq (${ENABLE_SME_FOR_NS}, 0)
915 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
916 to be set")
917 $(warning "Forced ENABLE_SME_FOR_NS=1")
918 override ENABLE_SME_FOR_NS := 1
919 endif
920endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000921
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000922ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100923 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
924 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
925 library v2")
926 endif
927endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000928
Sumit Garg392e4df2019-11-15 10:43:00 +0530929ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100930 ifeq (${TRUSTED_BOARD_BOOT}, 0)
931 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
932 to be set)
933 endif
934endif #(DECRYPTION_SUPPORT)
Sumit Garg392e4df2019-11-15 10:43:00 +0530935
johpow0181865962022-01-28 17:06:20 -0600936# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -0500937ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -0600938
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100939 # SME/SVE only supported on AArch64
940 ifneq (${ENABLE_SME_FOR_NS},0)
941 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
942 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000943
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100944 ifeq (${ENABLE_SVE_FOR_NS},1)
945 # Warning instead of error due to CI dependency on this
946 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
947 endif
johpow0181865962022-01-28 17:06:20 -0600948
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100949 # BRBE is not supported in AArch32
950 ifeq (${ENABLE_BRBE_FOR_NS},1)
951 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
952 endif
johpow0181865962022-01-28 17:06:20 -0600953
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100954 # FEAT_RNG_TRAP is not supported in AArch32
955 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
956 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
957 endif
958endif #(ARCH=aarch32)
johpow019baade32021-07-08 14:14:00 -0500959
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000960ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100961 ifeq (${ENABLE_SVE_FOR_NS},0)
962 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
963 endif
964endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000965
johpow019baade32021-07-08 14:14:00 -0500966# Secure SME/SVE requires the non-secure component as well
967ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100968 ifeq (${ENABLE_SME_FOR_NS},0)
969 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
970 endif
971 ifeq (${ENABLE_SVE_FOR_SWD},0)
972 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
973 endif
974endif #(ENABLE_SME_FOR_SWD)
975
johpow019baade32021-07-08 14:14:00 -0500976ifeq (${ENABLE_SVE_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100977 ifeq (${ENABLE_SVE_FOR_NS},0)
978 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
979 endif
980endif #(ENABLE_SVE_FOR_SWD)
johpow019baade32021-07-08 14:14:00 -0500981
982# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
983# its own context management including FPU registers.
984ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100985 ifneq (${ENABLE_SME_FOR_NS},0)
986 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
987 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000988
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100989 ifeq (${ENABLE_SVE_FOR_NS},1)
990 # Warning instead of error due to CI dependency on this
991 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
992 $(warning "Forced ENABLE_SVE_FOR_NS=0")
993 override ENABLE_SVE_FOR_NS := 0
994 endif
995endif #(CTX_INCLUDE_FPREGS)
johpow019baade32021-07-08 14:14:00 -0500996
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +0000997ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100998 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +0000999endif
1000
Raymond Mao98983392023-07-25 07:53:35 -07001001ifeq (${TRANSFER_LIST},1)
1002 $(info TRANSFER_LIST is an experimental feature)
1003endif
1004
Chris Kayd02c2312022-09-29 16:21:24 +01001005ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001006 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1007 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1008 endif
Chris Kayd02c2312022-09-29 16:21:24 +01001009endif
1010
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001011ifeq ($(PSA_CRYPTO),1)
1012 $(info PSA_CRYPTO is an experimental feature)
1013endif
1014
Manish V Badarkhed8d7d932024-05-09 12:14:13 +01001015ifeq ($(DICE_PROTECTION_ENVIRONMENT),1)
1016 $(info DICE_PROTECTION_ENVIRONMENT is an experimental feature)
1017endif
1018
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001019################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001020# Process platform overrideable behaviour
1021################################################################################
1022
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001023ifdef BL1_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001024 NEED_BL1 := yes
1025endif #(BL1_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001026
Jon Medhurst66573cb2014-02-13 15:19:28 +00001027ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001028 NEED_BL2 := yes
1029
1030 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1031 # Certificate generation tools. This flag can be overridden by the platform.
1032 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001033 # If booting an EL3 payload there is no need for a BL33 image
1034 # in the FIP file.
1035 NEED_BL33 := no
1036 else
1037 ifdef PRELOADED_BL33_BASE
1038 # If booting a BL33 preloaded image there is no need of
1039 # another one in the FIP file.
1040 NEED_BL33 := no
1041 else
1042 NEED_BL33 ?= yes
1043 endif
1044 endif
1045endif #(BL2_SOURCES)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001046
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001047ifdef BL2U_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001048 NEED_BL2U := yes
1049endif #(BL2U_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001050
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001051# If SCP_BL2 is given, we always want FIP to include it.
1052ifdef SCP_BL2
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001053 NEED_SCP_BL2 := yes
1054endif #(SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001055
Soby Mathewbf169232017-11-14 14:10:10 +00001056# For AArch32, BL31 is not currently supported.
1057ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001058 ifdef BL31_SOURCES
1059 # When booting an EL3 payload, there is no need to compile the BL31
1060 # image nor put it in the FIP.
1061 ifndef EL3_PAYLOAD_BASE
1062 NEED_BL31 := yes
1063 endif
1064 endif
1065endif #(ARCH=aarch64)
Soby Mathewbf169232017-11-14 14:10:10 +00001066
Juan Castilloa3487d12015-08-18 14:23:04 +01001067# Process TBB related flags
1068ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001069 # Common cert_create options
1070 ifneq (${CREATE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001071 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001072 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001073 ifneq (${SAVE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001074 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001075 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001076 endif
1077 endif
1078 # Include TBBR makefile (unless the platform indicates otherwise)
1079 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castilloa3487d12015-08-18 14:23:04 +01001080 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001081 endif
1082endif #(GENERATE_COT)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001083
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001084ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001085 FIP_ARGS += --align ${FIP_ALIGN}
1086endif #(FIP_ALIGN)
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001087
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001088ifdef FDT_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001089 NEED_FDT := yes
1090endif #(FDT_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001091
Juan Castilloa3487d12015-08-18 14:23:04 +01001092################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +08001093# Include libraries' Makefile that are used in all BL
1094################################################################################
1095
1096include lib/stack_protector/stack_protector.mk
1097
1098################################################################################
Soby Mathew574e01e2017-02-14 10:05:07 +00001099# Include BL specific makefiles
1100################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001101
1102ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001103include bl1/bl1.mk
1104endif
1105
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001106ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001107include bl2/bl2.mk
1108endif
1109
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001110ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001111include bl2u/bl2u.mk
1112endif
1113
Soby Mathewbf169232017-11-14 14:10:10 +00001114ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001115include bl31/bl31.mk
1116endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001117
Soby Mathew574e01e2017-02-14 10:05:07 +00001118################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001119# Build options checks
1120################################################################################
1121
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001122# Boolean_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001123$(eval $(call assert_booleans,\
1124 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001125 ALLOW_RO_XLAT_TABLES \
1126 BL2_ENABLE_SP_LOAD \
1127 COLD_BOOT_SINGLE_CPU \
1128 CREATE_KEYS \
1129 CTX_INCLUDE_AARCH32_REGS \
1130 CTX_INCLUDE_FPREGS \
1131 CTX_INCLUDE_EL2_REGS \
Arvind Ram Prakash4851b492023-10-06 14:35:21 -05001132 CTX_INCLUDE_MPAM_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001133 DEBUG \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001134 DYN_DISABLE_AUTH \
1135 EL3_EXCEPTION_HANDLING \
1136 ENABLE_AMU_AUXILIARY_COUNTERS \
1137 ENABLE_AMU_FCONF \
1138 AMU_RESTRICT_COUNTERS \
1139 ENABLE_ASSERTIONS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001140 ENABLE_PIE \
1141 ENABLE_PMF \
1142 ENABLE_PSCI_STAT \
1143 ENABLE_RUNTIME_INSTRUMENTATION \
1144 ENABLE_SME_FOR_SWD \
1145 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001146 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001147 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001148 ERROR_DEPRECATED \
1149 FAULT_INJECTION_SUPPORT \
1150 GENERATE_COT \
1151 GICV2_G0_FOR_EL3 \
1152 HANDLE_EA_EL3_FIRST_NS \
Bipin Ravie53e6ae2023-09-28 13:17:24 -05001153 HARDEN_SLS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001154 HW_ASSISTED_COHERENCY \
1155 MEASURED_BOOT \
Tamas Bana4260892023-06-07 13:35:04 +02001156 DICE_PROTECTION_ENVIRONMENT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001157 DRTM_SUPPORT \
1158 NS_TIMER_SWITCH \
1159 OVERRIDE_LIBC \
1160 PL011_GENERIC_UART \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001161 PROGRAMMABLE_RESET_ADDRESS \
1162 PSCI_EXTENDED_STATE_ID \
1163 PSCI_OS_INIT_MODE \
1164 RESET_TO_BL31 \
1165 SAVE_KEYS \
1166 SEPARATE_CODE_AND_RODATA \
1167 SEPARATE_BL2_NOLOAD_REGION \
1168 SEPARATE_NOBITS_REGION \
1169 SPIN_ON_BL1_EXIT \
1170 SPM_MM \
1171 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001172 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001173 SPMD_SPM_AT_SEL2 \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001174 ENABLE_SPMD_LP \
Raymond Mao98983392023-07-25 07:53:35 -07001175 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001176 TRUSTED_BOARD_BOOT \
1177 USE_COHERENT_MEM \
1178 USE_DEBUGFS \
1179 ARM_IO_IN_DTB \
1180 SDEI_IN_FCONF \
1181 SEC_INT_DESC_IN_FCONF \
1182 USE_ROMLIB \
1183 USE_TBBR_DEFS \
1184 WARMBOOT_ENABLE_DCACHE_EARLY \
1185 RESET_TO_BL2 \
1186 BL2_IN_XIP_MEM \
1187 BL2_INV_DCACHE \
1188 USE_SPINLOCK_CAS \
1189 ENCRYPT_BL31 \
1190 ENCRYPT_BL32 \
1191 ERRATA_SPECULATIVE_AT \
1192 RAS_TRAP_NS_ERR_REC_ACCESS \
1193 COT_DESC_IN_DTB \
1194 USE_SP804_TIMER \
1195 PSA_FWU_SUPPORT \
Sughosh Ganu61905e52024-02-01 12:51:20 +05301196 PSA_FWU_METADATA_FW_STORE_DESC \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001197 ENABLE_MPMM \
1198 ENABLE_MPMM_FCONF \
1199 FEATURE_DETECTION \
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +01001200 TRNG_SUPPORT \
Sona Mathew7fe03522022-11-18 18:05:38 -06001201 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001202 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001203 CONDITIONAL_CMO \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001204 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001205 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash8bd27c92023-08-15 16:28:06 -05001206 INIT_UNUSED_NS_EL2 \
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001207 PLATFORM_REPORT_CTX_MEM_USE \
Yann Gautier5ae29c02024-01-16 19:39:31 +01001208 EARLY_CONSOLE \
Arvind Ram Prakasheaa90192023-12-21 00:25:52 -06001209 PRESERVE_DSU_PMU_REGS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001210)))
Dan Handley81be1002015-03-27 17:44:35 +00001211
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001212# Numeric_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001213$(eval $(call assert_numerics,\
1214 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001215 ARM_ARCH_MAJOR \
1216 ARM_ARCH_MINOR \
1217 BRANCH_PROTECTION \
1218 CTX_INCLUDE_PAUTH_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001219 CTX_INCLUDE_NEVE_REGS \
1220 CRYPTO_SUPPORT \
Boyan Karatotev677ed8a2023-02-16 09:45:29 +00001221 DISABLE_MTPMU \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001222 ENABLE_BRBE_FOR_NS \
1223 ENABLE_TRBE_FOR_NS \
1224 ENABLE_BTI \
1225 ENABLE_PAUTH \
1226 ENABLE_FEAT_AMU \
1227 ENABLE_FEAT_AMUv1p1 \
1228 ENABLE_FEAT_CSV2_2 \
Sona Mathew3b84c962023-10-25 16:48:19 -05001229 ENABLE_FEAT_CSV2_3 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001230 ENABLE_FEAT_DIT \
1231 ENABLE_FEAT_ECV \
1232 ENABLE_FEAT_FGT \
1233 ENABLE_FEAT_HCX \
Govindraj Rajad7b63ac2024-01-26 10:08:37 -06001234 ENABLE_FEAT_MTE2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001235 ENABLE_FEAT_PAN \
1236 ENABLE_FEAT_RNG \
1237 ENABLE_FEAT_RNG_TRAP \
1238 ENABLE_FEAT_SEL2 \
1239 ENABLE_FEAT_TCR2 \
Govindraj Rajac2dad572024-01-23 16:03:53 -06001240 ENABLE_FEAT_SB \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001241 ENABLE_FEAT_S2PIE \
1242 ENABLE_FEAT_S1PIE \
1243 ENABLE_FEAT_S2POE \
1244 ENABLE_FEAT_S1POE \
1245 ENABLE_FEAT_GCS \
1246 ENABLE_FEAT_VHE \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001247 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001248 ENABLE_RME \
1249 ENABLE_SPE_FOR_NS \
1250 ENABLE_SYS_REG_TRACE_FOR_NS \
1251 ENABLE_SME_FOR_NS \
1252 ENABLE_SME2_FOR_NS \
1253 ENABLE_SVE_FOR_NS \
1254 ENABLE_TRF_FOR_NS \
1255 FW_ENC_STATUS \
1256 NR_OF_FW_BANKS \
1257 NR_OF_IMAGES_IN_FW_BANK \
1258 TWED_DELAY \
1259 ENABLE_FEAT_TWED \
1260 SVE_VECTOR_LEN \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001261 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001262)))
Jeenu Viswambharanfca76802017-01-16 16:52:35 +00001263
Justin Chadwellf9b32c12019-07-29 17:13:10 +01001264ifdef KEY_SIZE
1265 $(eval $(call assert_numeric,KEY_SIZE))
1266endif
1267
Justin Chadwell83e04882019-08-20 11:01:52 +01001268ifeq ($(filter $(SANITIZE_UB), on off trap),)
1269 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1270endif
1271
Juan Castilloa3487d12015-08-18 14:23:04 +01001272################################################################################
1273# Add definitions to the cpp preprocessor based on the current build options.
1274# This is done after including the platform specific makefile to allow the
1275# platform to overwrite the default options
1276################################################################################
Jeenu Viswambharand1b60152014-05-12 15:28:47 +01001277
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001278$(eval $(call add_defines,\
1279 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001280 ALLOW_RO_XLAT_TABLES \
1281 ARM_ARCH_MAJOR \
1282 ARM_ARCH_MINOR \
1283 BL2_ENABLE_SP_LOAD \
1284 COLD_BOOT_SINGLE_CPU \
1285 CTX_INCLUDE_AARCH32_REGS \
1286 CTX_INCLUDE_FPREGS \
1287 CTX_INCLUDE_PAUTH_REGS \
Arvind Ram Prakash4851b492023-10-06 14:35:21 -05001288 CTX_INCLUDE_MPAM_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001289 EL3_EXCEPTION_HANDLING \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001290 CTX_INCLUDE_EL2_REGS \
1291 CTX_INCLUDE_NEVE_REGS \
1292 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1293 DISABLE_MTPMU \
1294 ENABLE_FEAT_AMU \
1295 ENABLE_AMU_AUXILIARY_COUNTERS \
1296 ENABLE_AMU_FCONF \
1297 AMU_RESTRICT_COUNTERS \
1298 ENABLE_ASSERTIONS \
1299 ENABLE_BTI \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001300 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001301 ENABLE_PAUTH \
1302 ENABLE_PIE \
1303 ENABLE_PMF \
1304 ENABLE_PSCI_STAT \
1305 ENABLE_RME \
1306 ENABLE_RUNTIME_INSTRUMENTATION \
1307 ENABLE_SME_FOR_NS \
1308 ENABLE_SME2_FOR_NS \
1309 ENABLE_SME_FOR_SWD \
1310 ENABLE_SPE_FOR_NS \
1311 ENABLE_SVE_FOR_NS \
1312 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001313 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001314 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001315 ENCRYPT_BL31 \
1316 ENCRYPT_BL32 \
1317 ERROR_DEPRECATED \
1318 FAULT_INJECTION_SUPPORT \
1319 GICV2_G0_FOR_EL3 \
1320 HANDLE_EA_EL3_FIRST_NS \
1321 HW_ASSISTED_COHERENCY \
1322 LOG_LEVEL \
1323 MEASURED_BOOT \
Tamas Bana4260892023-06-07 13:35:04 +02001324 DICE_PROTECTION_ENVIRONMENT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001325 DRTM_SUPPORT \
1326 NS_TIMER_SWITCH \
1327 PL011_GENERIC_UART \
1328 PLAT_${PLAT} \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001329 PROGRAMMABLE_RESET_ADDRESS \
1330 PSCI_EXTENDED_STATE_ID \
1331 PSCI_OS_INIT_MODE \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001332 RESET_TO_BL31 \
AlexeiFedorovc0ca2d72024-05-13 15:35:54 +01001333 RME_GPT_BITLOCK_BLOCK \
AlexeiFedorovbd8b1bb2024-03-13 17:07:03 +00001334 RME_GPT_MAX_BLOCK \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001335 SEPARATE_CODE_AND_RODATA \
1336 SEPARATE_BL2_NOLOAD_REGION \
1337 SEPARATE_NOBITS_REGION \
1338 RECLAIM_INIT_CODE \
1339 SPD_${SPD} \
1340 SPIN_ON_BL1_EXIT \
1341 SPM_MM \
1342 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001343 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001344 SPMD_SPM_AT_SEL2 \
Raymond Mao98983392023-07-25 07:53:35 -07001345 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001346 TRUSTED_BOARD_BOOT \
1347 CRYPTO_SUPPORT \
1348 TRNG_SUPPORT \
1349 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001350 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001351 USE_COHERENT_MEM \
1352 USE_DEBUGFS \
1353 ARM_IO_IN_DTB \
1354 SDEI_IN_FCONF \
1355 SEC_INT_DESC_IN_FCONF \
1356 USE_ROMLIB \
1357 USE_TBBR_DEFS \
1358 WARMBOOT_ENABLE_DCACHE_EARLY \
1359 RESET_TO_BL2 \
1360 BL2_RUNS_AT_EL3 \
1361 BL2_IN_XIP_MEM \
1362 BL2_INV_DCACHE \
1363 USE_SPINLOCK_CAS \
1364 ERRATA_SPECULATIVE_AT \
1365 RAS_TRAP_NS_ERR_REC_ACCESS \
1366 COT_DESC_IN_DTB \
1367 USE_SP804_TIMER \
1368 ENABLE_FEAT_RNG \
1369 ENABLE_FEAT_RNG_TRAP \
1370 ENABLE_FEAT_SB \
1371 ENABLE_FEAT_DIT \
1372 NR_OF_FW_BANKS \
1373 NR_OF_IMAGES_IN_FW_BANK \
1374 PSA_FWU_SUPPORT \
Sughosh Ganu61905e52024-02-01 12:51:20 +05301375 PSA_FWU_METADATA_FW_STORE_DESC \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001376 ENABLE_BRBE_FOR_NS \
1377 ENABLE_TRBE_FOR_NS \
1378 ENABLE_SYS_REG_TRACE_FOR_NS \
1379 ENABLE_TRF_FOR_NS \
1380 ENABLE_FEAT_HCX \
1381 ENABLE_MPMM \
1382 ENABLE_MPMM_FCONF \
1383 ENABLE_FEAT_FGT \
1384 ENABLE_FEAT_ECV \
1385 ENABLE_FEAT_AMUv1p1 \
1386 ENABLE_FEAT_SEL2 \
1387 ENABLE_FEAT_VHE \
1388 ENABLE_FEAT_CSV2_2 \
Sona Mathew3b84c962023-10-25 16:48:19 -05001389 ENABLE_FEAT_CSV2_3 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001390 ENABLE_FEAT_PAN \
1391 ENABLE_FEAT_TCR2 \
1392 ENABLE_FEAT_S2PIE \
1393 ENABLE_FEAT_S1PIE \
1394 ENABLE_FEAT_S2POE \
1395 ENABLE_FEAT_S1POE \
1396 ENABLE_FEAT_GCS \
Govindraj Rajad7b63ac2024-01-26 10:08:37 -06001397 ENABLE_FEAT_MTE2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001398 FEATURE_DETECTION \
1399 TWED_DELAY \
1400 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001401 CONDITIONAL_CMO \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001402 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidanand23c2fe22023-04-26 15:57:30 +01001403 SVE_VECTOR_LEN \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001404 ENABLE_SPMD_LP \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001405 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001406 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash8bd27c92023-08-15 16:28:06 -05001407 INIT_UNUSED_NS_EL2 \
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001408 PLATFORM_REPORT_CTX_MEM_USE \
Yann Gautier5ae29c02024-01-16 19:39:31 +01001409 EARLY_CONSOLE \
Arvind Ram Prakasheaa90192023-12-21 00:25:52 -06001410 PRESERVE_DSU_PMU_REGS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001411)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001412
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001413ifeq (${PLATFORM_REPORT_CTX_MEM_USE}, 1)
1414ifeq (${DEBUG}, 0)
1415 $(warning "PLATFORM_REPORT_CTX_MEM_USE can be applied when DEBUG=1 only")
1416 override PLATFORM_REPORT_CTX_MEM_USE := 0
1417endif
1418endif
1419
Justin Chadwell83e04882019-08-20 11:01:52 +01001420ifeq (${SANITIZE_UB},trap)
1421 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001422endif #(SANITIZE_UB)
Justin Chadwell83e04882019-08-20 11:01:52 +01001423
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001424# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1425ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001426 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1427else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001428# Define the PRELOADED_BL33_BASE flag only if it is provided and
1429# EL3_PAYLOAD_BASE is not defined, as it has priority.
1430 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001431 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001432 endif
1433endif #(EL3_PAYLOAD_BASE)
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001434
Soby Mathew9fe88042018-03-26 12:43:37 +01001435# Define the DYN_DISABLE_AUTH flag only if set.
1436ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001437 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew9fe88042018-03-26 12:43:37 +01001438endif
1439
Chris Kaycfba6452023-12-04 09:55:50 +00001440ifeq ($($(ARCH)-ld-id),arm-link)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001441 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekar4d034c52019-01-11 14:47:48 -08001442endif
1443
Manish Pandey3f90ad72020-01-14 11:52:05 +00001444# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001445ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001446ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001447 -include $(BUILD_PLAT)/sp_gen.mk
1448 FIP_DEPS += sp
1449 CRT_DEPS += sp
1450 NEED_SP_PKG := yes
Manish Pandey3f90ad72020-01-14 11:52:05 +00001451else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001452 ifeq (${SPMD_SPM_AT_SEL2},1)
1453 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1454 endif
1455endif #(SP_LAYOUT_FILE)
1456endif #(SPD)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001457
Juan Castilloa3487d12015-08-18 14:23:04 +01001458################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001459# Build targets
1460################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001461
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301462.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 +01001463.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001464
Juan Castilloa3487d12015-08-18 14:23:04 +01001465all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001466
Juan Castilloa3487d12015-08-18 14:23:04 +01001467msg_start:
Chris Kay1870c722024-05-02 17:52:37 +00001468 $(s)echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001469
Soby Mathew18a62042015-10-26 14:29:21 +00001470ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001471# Check if deprecated declarations and cpp warnings should be treated as error or not.
Chris Kaycfba6452023-12-04 09:55:50 +00001472ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
Varun Wadekar4d034c52019-01-11 14:47:48 -08001473 CPPFLAGS += -Wno-error=deprecated-declarations
1474else
Dan Handley6fa89a22018-02-27 16:03:58 +00001475 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001476endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001477endif #(!ERROR_DEPRECATED)
Soby Mathew18a62042015-10-26 14:29:21 +00001478
Roberto Vargase92111a2018-05-22 16:05:42 +01001479$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001480$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001481
Juan Castilloa3487d12015-08-18 14:23:04 +01001482# Expand build macros for the different images
1483ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001484BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001485$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001486endif #(NEED_BL1)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001487
Juan Castilloa3487d12015-08-18 14:23:04 +01001488ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001489
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001490ifeq (${RESET_TO_BL2}, 0)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001491FIP_BL2_ARGS := tb-fw
1492endif
1493
Chris Kayfb3b0512021-09-28 15:44:37 +01001494BL2_SOURCES := $(sort ${BL2_SOURCES})
1495
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001496$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001497 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001498
1499endif #(NEED_BL2)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001500
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001501ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001502$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001503endif #(NEED_SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001504
Juan Castilloa3487d12015-08-18 14:23:04 +01001505ifeq (${NEED_BL31},yes)
1506BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001507# Sort BL31 source files to remove duplicates
1508BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301509ifneq (${DECRYPTION_SUPPORT},none)
1510$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001511 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301512else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001513$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001514 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001515endif #(DECRYPTION_SUPPORT)
1516endif #(NEED_BL31)
Juan Castillo379954c2014-11-04 17:36:40 +00001517
Juan Castillo671b8db2015-11-12 10:59:26 +00001518# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001519# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001520# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001521ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001522# Sort BL32 source files to remove duplicates
1523BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001524BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1525
Sumit Gargeec52442019-11-14 16:33:45 +05301526ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001527$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301528 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1529else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001530$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001531 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001532endif #(DECRYPTION_SUPPORT)
1533endif #(NEED_BL32)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001534
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001535# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1536# needs to be built from RMM_SOURCES.
1537ifeq (${NEED_RMM},yes)
1538# Sort RMM source files to remove duplicates
1539RMM_SOURCES := $(sort ${RMM_SOURCES})
1540BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1541
1542$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001543 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1544endif #(NEED_RMM)
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001545
Juan Castilloa3487d12015-08-18 14:23:04 +01001546# Add the BL33 image if required by the platform
1547ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001548$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001549endif #(NEED_BL33)
Juan Castillo9c25a402015-01-13 12:21:04 +00001550
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001551ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001552$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001553 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001554endif #(NEED_BL2U)
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001555
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001556# Expand build macros for the different images
1557ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001558 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001559endif #(NEED_FDT)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001560
Manish Pandey3f90ad72020-01-14 11:52:05 +00001561# Add Secure Partition packages
1562ifeq (${NEED_SP_PKG},yes)
Olivier Deprezf5033072024-01-26 12:05:36 +01001563$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
Chris Kay1870c722024-05-02 17:52:37 +00001564 $(q)${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
J-Alvesef8e0982022-03-22 16:28:51 +00001565sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Chris Kay1870c722024-05-02 17:52:37 +00001566 $(s)echo
1567 $(s)echo "Built SP Images successfully"
1568 $(s)echo
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001569endif #(NEED_SP_PKG)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001570
Ian Spray36eaaf32014-01-30 17:25:28 +00001571locate-checkpatch:
1572ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001573 $(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 +00001574else
1575ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001576 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001577endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001578endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001579
Achin Gupta4f6ad662013-10-25 09:08:21 +01001580clean:
Chris Kay1870c722024-05-02 17:52:37 +00001581 $(s)echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001582 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001583ifdef UNIX_MK
Chris Kay1870c722024-05-02 17:52:37 +00001584 $(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001585else
1586# Clear the MAKEFLAGS as we do not want
1587# to pass the gnumake flags to nmake.
Chris Kay1870c722024-05-02 17:52:37 +00001588 $(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 +01001589endif #(UNIX_MK)
Chris Kay1870c722024-05-02 17:52:37 +00001590 $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
1591 $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
1592 $(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001593
James Morrisseyeaaeece2013-11-01 13:56:59 +00001594realclean distclean:
Chris Kay1870c722024-05-02 17:52:37 +00001595 $(s)echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001596 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1597 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001598ifdef UNIX_MK
Chris Kay1870c722024-05-02 17:52:37 +00001599 $(q)${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001600else
1601# Clear the MAKEFLAGS as we do not want
1602# to pass the gnumake flags to nmake.
Chris Kay1870c722024-05-02 17:52:37 +00001603 $(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 +01001604endif #(UNIX_MK)
Chris Kay1870c722024-05-02 17:52:37 +00001605 $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
1606 $(q)${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
1607 $(q)${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001608
Ian Spray36eaaf32014-01-30 17:25:28 +00001609checkcodebase: locate-checkpatch
Chris Kay1870c722024-05-02 17:52:37 +00001610 $(s)echo " CHECKING STYLE"
1611 $(q)if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001612 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001613 while read GIT_FILE ; \
1614 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1615 done ; \
1616 else \
1617 find . -type f -not -iwholename "*.git*" \
1618 -not -iwholename "*build*" \
1619 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001620 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001621 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001622 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001623 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1624 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001625
1626checkpatch: locate-checkpatch
Chris Kay1870c722024-05-02 17:52:37 +00001627 $(s)echo " CHECKING STYLE"
1628 $(q)if test -n "${CHECKPATCH_OPTS}"; then \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001629 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1630 fi
Chris Kay1870c722024-05-02 17:52:37 +00001631 $(q)COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001632 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1633 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001634 printf "\n[*] Checking style of '$$commit'\n\n"; \
1635 git log --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001636 -- ${CHECK_PATHS} | \
1637 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001638 git diff --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001639 -- ${CHECK_PATHS} | \
1640 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001641 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001642
1643certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001644
Pali Rohár54ff2132020-11-24 15:38:08 +01001645${CRTTOOL}: FORCE
Chris Kay1870c722024-05-02 17:52:37 +00001646 $(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
1647 $(s)echo
1648 $(s)echo "Built $@ successfully"
1649 $(s)echo
Jon Medhurst407a95c2014-02-12 15:54:48 +00001650
Juan Castillo11abdcd2014-10-21 11:30:42 +01001651ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001652certificates: ${CRT_DEPS} ${CRTTOOL}
Chris Kay1870c722024-05-02 17:52:37 +00001653 $(q)${CRTTOOL} ${CRT_ARGS}
1654 $(s)echo
1655 $(s)echo "Built $@ successfully"
1656 $(s)echo "Certificates can be found in ${BUILD_PLAT}"
1657 $(s)echo
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001658endif #(GENERATE_COT)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001659
Juan Castilloa3487d12015-08-18 14:23:04 +01001660${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001661 $(eval ${CHECK_FIP_CMD})
Chris Kay1870c722024-05-02 17:52:37 +00001662 $(q)${FIPTOOL} create ${FIP_ARGS} $@
1663 $(q)${FIPTOOL} info $@
1664 $(s)echo
1665 $(s)echo "Built $@ successfully"
1666 $(s)echo
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001667
Yatharth Kochard1a93432015-10-12 12:33:47 +01001668ifneq (${GENERATE_COT},0)
1669fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
Chris Kay1870c722024-05-02 17:52:37 +00001670 $(q)${CRTTOOL} ${FWU_CRT_ARGS}
1671 $(s)echo
1672 $(s)echo "Built $@ successfully"
1673 $(s)echo "FWU certificates can be found in ${BUILD_PLAT}"
1674 $(s)echo
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001675endif #(GENERATE_COT)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001676
1677${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001678 $(eval ${CHECK_FWU_FIP_CMD})
Chris Kay1870c722024-05-02 17:52:37 +00001679 $(q)${FIPTOOL} create ${FWU_FIP_ARGS} $@
1680 $(q)${FIPTOOL} info $@
1681 $(s)echo
1682 $(s)echo "Built $@ successfully"
1683 $(s)echo
Yatharth Kochard1a93432015-10-12 12:33:47 +01001684
Juan Castilloa3487d12015-08-18 14:23:04 +01001685fiptool: ${FIPTOOL}
1686fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001687fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001688
Pali Rohár54ff2132020-11-24 15:38:08 +01001689${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001690ifdef UNIX_MK
Chris Kay1870c722024-05-02 17:52:37 +00001691 $(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 +01001692else
1693# Clear the MAKEFLAGS as we do not want
1694# to pass the gnumake flags to nmake.
Chris Kay1870c722024-05-02 17:52:37 +00001695 $(q)set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001696endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001697
Pali Rohár54ff2132020-11-24 15:38:08 +01001698romlib.bin: libraries FORCE
Chris Kay1870c722024-05-02 17:52:37 +00001699 $(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 +01001700
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001701memmap: all
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001702ifdef UNIX_MK
Chris Kay1870c722024-05-02 17:52:37 +00001703 $(q)PYTHONPATH=${CURDIR}/tools/memory \
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001704 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1705else
Chris Kay1870c722024-05-02 17:52:37 +00001706 $(q)set PYTHONPATH=${CURDIR}/tools/memory && \
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001707 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1708endif
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001709
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001710doc:
Chris Kay1870c722024-05-02 17:52:37 +00001711 $(s)echo " BUILD DOCUMENTATION"
1712 $(q)${MAKE} --no-print-directory -C ${DOCS_PATH} html
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001713
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301714enctool: ${ENCTOOL}
1715
Pali Rohár54ff2132020-11-24 15:38:08 +01001716${ENCTOOL}: FORCE
Chris Kay1870c722024-05-02 17:52:37 +00001717 $(q)${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} --no-print-directory -C ${ENCTOOLPATH} all
1718 $(s)echo
1719 $(s)echo "Built $@ successfully"
1720 $(s)echo
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301721
Joakim Bech35fab8c2014-01-23 14:51:49 +01001722cscope:
Chris Kay1870c722024-05-02 17:52:37 +00001723 $(s)echo " CSCOPE"
1724 $(q)find ${CURDIR} -name "*.[chsS]" > cscope.files
1725 $(q)cscope -b -q -k
Joakim Bech35fab8c2014-01-23 14:51:49 +01001726
Ryan Harkin72ee3312014-01-15 16:55:07 +00001727help:
Chris Kay1870c722024-05-02 17:52:37 +00001728 $(s)echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
1729 $(s)echo ""
1730 $(s)echo "PLAT is used to specify which platform you wish to build."
1731 $(s)echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
1732 $(s)echo ""
1733 $(s)echo "platform = ${PLATFORM_LIST}"
1734 $(s)echo ""
1735 $(s)echo "Please refer to the User Guide for a list of all supported options."
1736 $(s)echo "Note that the build system doesn't track dependencies for build "
1737 $(s)echo "options. Therefore, if any of the build options are changed "
1738 $(s)echo "from a previous build, a clean build must be performed."
1739 $(s)echo ""
1740 $(s)echo "Supported Targets:"
1741 $(s)echo " all Build all individual bootloader binaries"
1742 $(s)echo " bl1 Build the BL1 binary"
1743 $(s)echo " bl2 Build the BL2 binary"
1744 $(s)echo " bl2u Build the BL2U binary"
1745 $(s)echo " bl31 Build the BL31 binary"
1746 $(s)echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1747 $(s)echo " this builds secure payload specified by AARCH32_SP"
1748 $(s)echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
1749 $(s)echo " fip Build the Firmware Image Package (FIP)"
1750 $(s)echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
1751 $(s)echo " checkcodebase Check the coding style of the entire source tree"
1752 $(s)echo " checkpatch Check the coding style on changes in the current"
1753 $(s)echo " branch against BASE_COMMIT (default origin/master)"
1754 $(s)echo " clean Clean the build for the selected platform"
1755 $(s)echo " cscope Generate cscope index"
1756 $(s)echo " distclean Remove all build artifacts for all platforms"
1757 $(s)echo " certtool Build the Certificate generation tool"
1758 $(s)echo " enctool Build the Firmware encryption tool"
1759 $(s)echo " fiptool Build the Firmware Image Package (FIP) creation tool"
1760 $(s)echo " sp Build the Secure Partition Packages"
1761 $(s)echo " sptool Build the Secure Partition Package creation tool"
1762 $(s)echo " dtbs Build the Device Tree Blobs (if required for the platform)"
1763 $(s)echo " memmap Print the memory map of the built binaries"
1764 $(s)echo " doc Build html based documentation using Sphinx tool"
1765 $(s)echo ""
1766 $(s)echo "Note: most build targets require PLAT to be set to a specific platform."
1767 $(s)echo ""
1768 $(s)echo "example: build all targets for the FVP platform:"
1769 $(s)echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001770
1771.PHONY: FORCE
1772FORCE:;