blob: d072df098ee96b41510e047efc53116f6870aa93 [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 Badarkhe5eeeb0c2023-11-21 14:35:13 +000011VERSION_MINOR := 10
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
Juan Castilloa3487d12015-08-18 14:23:04 +010027
28################################################################################
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010029# Default values for build configurations, and their dependencies
Juan Castilloa3487d12015-08-18 14:23:04 +010030################################################################################
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +010031
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010032include ${MAKE_HELPERS_DIRECTORY}defaults.mk
dp-arm3cac7862016-09-19 11:18:44 +010033
Chris Kayc8a47ba2023-10-20 09:17:33 +000034################################################################################
35# Configure the toolchains used to build TF-A and its tools
36################################################################################
37
Chris Kay0adde4e2024-05-14 13:08:31 +000038#
39# The clean and check targets do not behave correctly if the user's environment
40# does not appropriately configure a toolchain. While we try to find a permanent
41# solution to this, do not try to detect any toolchains if we are building
42# exclusively with targets which do not use any toolchain tools.
43#
44
45ifeq ($(filter-out check% %clean doc %tool,$(or $(MAKECMDGOALS),all)),)
46 toolchains :=
47endif
48
Chris Kayc8a47ba2023-10-20 09:17:33 +000049include ${MAKE_HELPERS_DIRECTORY}toolchain.mk
50
Antonio Nino Diaz808c2292017-04-18 15:16:05 +010051# Assertions enabled for DEBUG builds by default
Antonio Nino Diaz808c2292017-04-18 15:16:05 +010052ENABLE_ASSERTIONS := ${DEBUG}
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010053ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION}
54PLAT := ${DEFAULT_PLAT}
Achin Gupta4f6ad662013-10-25 09:08:21 +010055
Juan Castilloa3487d12015-08-18 14:23:04 +010056################################################################################
57# Checkpatch script options
58################################################################################
59
Sandrine Bailleux0b5a1582016-06-02 11:19:59 +010060CHECKCODE_ARGS := --no-patch
Dan Handleyd7b59e42016-06-02 17:15:13 +010061# Do not check the coding style on imported library files or documentation files
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030062INC_DRV_DIRS_TO_CHECK := $(sort $(filter-out \
63 include/drivers/arm, \
64 $(wildcard include/drivers/*)))
Dan Handleyd7b59e42016-06-02 17:15:13 +010065INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \
Dan Handley3a355712016-06-02 18:21:02 +010066 include/lib/libfdt \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010067 include/lib/libc, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010068 $(wildcard include/lib/*)))
69INC_DIRS_TO_CHECK := $(sort $(filter-out \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030070 include/lib \
71 include/drivers, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010072 $(wildcard include/*)))
73LIB_DIRS_TO_CHECK := $(sort $(filter-out \
dp-arme3cc8382017-05-04 12:15:35 +010074 lib/compiler-rt \
Antonio Nino Diazd84f88e2017-01-16 17:20:45 +000075 lib/libfdt% \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010076 lib/libc, \
Daniel Boulby958f1dd2022-10-05 11:05:22 +010077 lib/zlib \
Dan Handleyd7b59e42016-06-02 17:15:13 +010078 $(wildcard lib/*)))
79ROOT_DIRS_TO_CHECK := $(sort $(filter-out \
80 lib \
81 include \
82 docs \
Paul Beesleyadfab5b2019-03-07 16:42:31 +000083 %.rst, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010084 $(wildcard *)))
85CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \
86 ${INC_DIRS_TO_CHECK} \
87 ${INC_LIB_DIRS_TO_CHECK} \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030088 ${LIB_DIRS_TO_CHECK} \
89 ${INC_DRV_DIRS_TO_CHECK} \
90 ${INC_ARM_DIRS_TO_CHECK}
Ian Spray36eaaf32014-01-30 17:25:28 +000091
Juan Castilloa3487d12015-08-18 14:23:04 +010092################################################################################
93# Process build options
94################################################################################
95
96# Verbose flag
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +010097ifeq (${V},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010098 Q:=@
99 ECHO:=@echo
100 CHECKCODE_ARGS += --no-summary --terse
Achin Gupta4f6ad662013-10-25 09:08:21 +0100101else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100102 Q:=
103 ECHO:=$(ECHO_QUIET)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100104endif
105
106ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100107 Q:=@
108 ECHO:=$(ECHO_QUIET)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100109endif
Andre Przywaracf2bb082018-09-27 10:56:05 +0100110
111export Q ECHO
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +0000112
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100113################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100114# Auxiliary tools (fiptool, cert_create, etc)
115################################################################################
116
117# Variables for use with Certificate Generation Tool
118CRTTOOLPATH ?= tools/cert_create
119CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT}
120
121# Variables for use with Firmware Encryption Tool
122ENCTOOLPATH ?= tools/encrypt_fw
123ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
124
125# Variables for use with Firmware Image Package
126FIPTOOLPATH ?= tools/fiptool
127FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT}
128
129# Variables for use with sptool
130SPTOOLPATH ?= tools/sptool
131SPTOOL ?= ${SPTOOLPATH}/sptool.py
132SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py
Karl Meakinaba46182023-02-14 11:56:02 +0000133SP_DTS_LIST_FRAGMENT ?= ${BUILD_PLAT}/sp_list_fragment.dts
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100134
135# Variables for use with ROMLIB
136ROMLIBPATH ?= lib/romlib
137
138# Variable for use with Python
139PYTHON ?= python3
140
141# Variables for use with documentation build using Sphinx tool
142DOCS_PATH ?= docs
143
144################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100145# Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags
Juan Castilloa3487d12015-08-18 14:23:04 +0100146################################################################################
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100147ifeq (${ARM_ARCH_MAJOR},7)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100148 target32-directive = -target arm-none-eabi
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500149# Will set march-directive from platform configuration
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100150else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100151 target32-directive = -target armv8a-none-eabi
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100152endif #(ARM_ARCH_MAJOR)
153
154################################################################################
155# Get Architecture Feature Modifiers
156################################################################################
157arch-features = ${ARM_ARCH_FEATURE}
158
Chris Kaycfba6452023-12-04 09:55:50 +0000159ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
160 ifeq ($($(ARCH)-cc-id),arm-clang)
Govindraj Raja69096412023-06-01 16:29:16 -0500161 TF_CFLAGS_aarch32 := -target arm-arm-none-eabi
162 TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi
originfba80d82022-01-19 16:30:14 +0000163 else
Govindraj Raja69096412023-06-01 16:29:16 -0500164 TF_CFLAGS_aarch32 = $(target32-directive)
165 TF_CFLAGS_aarch64 := -target aarch64-elf
originfba80d82022-01-19 16:30:14 +0000166 endif
167
Chris Kaycfba6452023-12-04 09:55:50 +0000168else ifeq ($($(ARCH)-cc-id),gnu-gcc)
Chris Kay00416dc2024-02-20 16:19:54 +0000169 # Enable LTO only for aarch64
170 ifeq (${ARCH},aarch64)
171 LTO_CFLAGS = $(if $(filter-out 0,$(ENABLE_LTO)),-flto)
zelalem-aweked5f45272019-11-12 16:20:17 -0600172 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100173endif #(clang)
dp-arm320e8442017-05-02 12:00:08 +0100174
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100175# Process Debug flag
176$(eval $(call add_define,DEBUG))
177ifneq (${DEBUG}, 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100178 BUILD_TYPE := debug
179 TF_CFLAGS += -g -gdwarf-4
180 ASFLAGS += -g -Wa,-gdwarf-4
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100181
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100182 # Use LOG_LEVEL_INFO by default for debug builds
183 LOG_LEVEL := 40
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100184else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100185 BUILD_TYPE := release
186 # Use LOG_LEVEL_NOTICE by default for release builds
187 LOG_LEVEL := 20
188endif #(Debug)
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100189
Peiyuan Song44f8f472020-04-25 16:53:43 +0800190# Default build string (git branch and commit)
191ifeq (${BUILD_STRING},)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100192 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
Peiyuan Song44f8f472020-04-25 16:53:43 +0800193endif
laurenw-arme954f652022-07-12 10:12:05 -0500194VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
Peiyuan Song44f8f472020-04-25 16:53:43 +0800195
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100196ifeq (${AARCH32_INSTRUCTION_SET},A32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100197 TF_CFLAGS_aarch32 += -marm
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100198else ifeq (${AARCH32_INSTRUCTION_SET},T32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100199 TF_CFLAGS_aarch32 += -mthumb
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100200else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100201 $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
202endif #(AARCH32_INSTRUCTION_SET)
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100203
Sandrine Bailleux1aa72ec2018-07-03 09:14:45 +0200204TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-arm320e8442017-05-02 12:00:08 +0100205TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathewa1941252016-05-05 14:33:33 +0100206
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100207##############################################################################
208# WARNINGS Configuration
209###############################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100210# General warnings
211WARNINGS := -Wall -Wmissing-include-dirs -Wunused \
Yann Gautier94a40b62021-05-20 13:18:14 +0200212 -Wdisabled-optimization -Wvla -Wshadow \
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000213 -Wredundant-decls
214# stricter warnings
215WARNINGS += -Wextra -Wno-trigraphs
216# too verbose for generic build
217WARNINGS += -Wno-missing-field-initializers \
218 -Wno-type-limits -Wno-sign-compare \
219# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
220WARNINGS += -Wno-unused-parameter
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100221
222# Additional warnings
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000223# Level 1 - infrequent warnings we should have none of
224# full -Wextra
225WARNING1 += -Wsign-compare
226WARNING1 += -Wtype-limits
227WARNING1 += -Wmissing-field-initializers
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100228
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000229# Level 2 - problematic warnings that we want
230# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
231# TODO: disable just for them and move into default build
232WARNING2 += -Wold-style-definition
233WARNING2 += -Wmissing-prototypes
234WARNING2 += -Wmissing-format-attribute
235# TF-A aims to comply with this eventually. Effort too large at present
236WARNING2 += -Wundef
Boyan Karatotev9c6ba592022-11-21 14:49:05 +0000237# currently very involved and many platforms set this off
238WARNING2 += -Wunused-const-variable=2
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100239
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000240# Level 3 - very pedantic, frequently ignored
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100241WARNING3 := -Wbad-function-cast
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000242WARNING3 += -Waggregate-return
243WARNING3 += -Wnested-externs
244WARNING3 += -Wcast-align
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100245WARNING3 += -Wcast-qual
246WARNING3 += -Wconversion
247WARNING3 += -Wpacked
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100248WARNING3 += -Wpointer-arith
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100249WARNING3 += -Wswitch-default
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100250
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000251# Setting W is quite verbose and most warnings will be pre-existing issues
252# outside of the contributor's control. Don't fail the build on them so warnings
253# can be seen and hopefully addressed
254ifdef W
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100255 ifneq (${W},0)
256 E ?= 0
257 endif
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000258endif
259
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100260ifeq (${W},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100261 WARNINGS += $(WARNING1)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100262else ifeq (${W},2)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100263 WARNINGS += $(WARNING1) $(WARNING2)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100264else ifeq (${W},3)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100265 WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
266endif #(W)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100267
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100268# Compiler specific warnings
Chris Kaycfba6452023-12-04 09:55:50 +0000269ifeq ($(filter %-clang,$($(ARCH)-cc-id)),)
Justin Chadwell7a914232019-07-03 14:15:56 +0100270# not using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100271WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \
272 -Wpacked-bitfield-compat -Wshift-overflow=2 \
273 -Wlogical-op
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500274
275# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
276TF_CFLAGS += $(call cc_option, --param=min-pagesize=0)
277
Bipin Ravie53e6ae2023-09-28 13:17:24 -0500278ifeq ($(HARDEN_SLS), 1)
279 TF_CFLAGS_aarch64 += $(call cc_option, -mharden-sls=all)
280endif
281
Justin Chadwell7a914232019-07-03 14:15:56 +0100282else
283# using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100284WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
285 -Wlogical-op-parentheses
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100286endif #(Clang Warning)
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100287
Yann Gautier957c3532018-12-10 18:08:53 +0100288ifneq (${E},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100289 ERRORS := -Werror
290endif #(E)
Yann Gautier957c3532018-12-10 18:08:53 +0100291
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100292################################################################################
293# Compiler and Linker Directives
294################################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100295CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
296 $(ERRORS) $(WARNINGS)
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500297ASFLAGS += $(CPPFLAGS) \
Julius Werner53456fc2019-07-09 13:49:11 -0700298 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900299TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Holland23f5e542019-10-20 16:11:25 -0500300 -ffunction-sections -fdata-sections \
301 -ffreestanding -fno-builtin -fno-common \
302 -Os -std=gnu99
Juan Castilloa3487d12015-08-18 14:23:04 +0100303
Justin Chadwell83e04882019-08-20 11:01:52 +0100304ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100305 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
306endif #(${SANITIZE_UB},on)
307
Justin Chadwell83e04882019-08-20 11:01:52 +0100308ifeq (${SANITIZE_UB},trap)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100309 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
Justin Chadwell83e04882019-08-20 11:01:52 +0100310 -fsanitize-undefined-trap-on-error
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100311endif #(${SANITIZE_UB},trap)
Justin Chadwell83e04882019-08-20 11:01:52 +0100312
Chris Kay0adde4e2024-05-14 13:08:31 +0000313GCC_V_OUTPUT := $(if $($(ARCH)-cc),$(shell $($(ARCH)-cc) -v 2>&1))
david cunado34ab6092017-11-30 21:58:01 +0000314
Marco Felsch24ad8402022-11-09 12:59:09 +0100315TF_LDFLAGS += -z noexecstack
316
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100317# LD = armlink
Chris Kaycfba6452023-12-04 09:55:50 +0000318ifeq ($($(ARCH)-ld-id),arm-link)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100319 TF_LDFLAGS += --diag_error=warning --lto_level=O1
320 TF_LDFLAGS += --remove --info=unused,unusedsymbols
321 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100322
323# LD = gcc (used when GCC LTO is enabled)
Chris Kaycfba6452023-12-04 09:55:50 +0000324else ifeq ($($(ARCH)-ld-id),gnu-gcc)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100325 # Pass ld options with Wl or Xlinker switches
Chris Kayb0fe96f2024-01-16 11:53:35 +0000326 TF_LDFLAGS += $(call ld_option,-Xlinker --no-warn-rwx-segments)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100327 TF_LDFLAGS += -Wl,--fatal-warnings -O1
328 TF_LDFLAGS += -Wl,--gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000329
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100330 TF_LDFLAGS += -Wl,-z,common-page-size=4096 #Configure page size constants
331 TF_LDFLAGS += -Wl,-z,max-page-size=4096
Andrey Skvortsove2ebb722023-09-05 23:06:29 +0300332 TF_LDFLAGS += -Wl,--build-id=none
Chris Kay73b1f402022-12-22 13:26:37 +0000333
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100334 ifeq ($(ENABLE_LTO),1)
335 ifeq (${ARCH},aarch64)
336 TF_LDFLAGS += -flto -fuse-linker-plugin
Andrey Skvortsov664d6502023-12-08 18:04:51 +0300337 TF_LDFLAGS += -flto-partition=one
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100338 endif
339 endif #(ENABLE_LTO)
340
zelalem-aweked5f45272019-11-12 16:20:17 -0600341# GCC automatically adds fix-cortex-a53-843419 flag when used to link
342# which breaks some builds, so disable if errata fix is not explicitly enabled
Yann Gautier3d73d162023-03-15 16:18:16 +0100343 ifeq (${ARCH},aarch64)
344 ifneq (${ERRATA_A53_843419},1)
345 TF_LDFLAGS += -mno-fix-cortex-a53-843419
346 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100347 endif
348 TF_LDFLAGS += -nostdlib
349 TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100350
351# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekar4d034c52019-01-11 14:47:48 -0800352else
Marco Felsch24ad8402022-11-09 12:59:09 +0100353# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
354# are not loaded by a elf loader.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100355 TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
356 TF_LDFLAGS += -O1
357 TF_LDFLAGS += --gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000358
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100359 TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
360 TF_LDFLAGS += -z max-page-size=4096
Andrey Skvortsove2ebb722023-09-05 23:06:29 +0300361 TF_LDFLAGS += --build-id=none
Chris Kay73b1f402022-12-22 13:26:37 +0000362
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100363# ld.lld doesn't recognize the errata flags,
Yabin Cuied7dc512023-01-19 20:06:04 +0000364# therefore don't add those in that case.
365# ld.lld reports section type mismatch warnings,
366# therefore don't add --fatal-warnings to it.
Chris Kaycfba6452023-12-04 09:55:50 +0000367 ifneq ($($(ARCH)-ld-id),llvm-lld)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100368 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
369 endif
370
371endif #(LD = armlink)
Juan Castilloa3487d12015-08-18 14:23:04 +0100372
373################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500374# Setup ARCH_MAJOR/MINOR before parsing arch_features.
375################################################################################
376ifeq (${ENABLE_RME},1)
AlexeiFedorov65258452024-03-13 11:53:44 +0000377 ARM_ARCH_MAJOR := 9
378 ARM_ARCH_MINOR := 2
Govindraj Raja0386e312023-08-17 10:41:48 -0500379endif
380
381################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100382# Common sources and include directories
383################################################################################
dp-arme3cc8382017-05-04 12:15:35 +0100384include lib/compiler-rt/compiler-rt.mk
Juan Castilloa3487d12015-08-18 14:23:04 +0100385
Chris Kay99b5b2e2024-03-08 16:08:31 +0000386# Allow overriding the timestamp, for example for reproducible builds, or to
387# synchronize timestamps across multiple projects.
388# This must be set to a C string (including quotes where applicable).
389BUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__
390
391DEFINES += -DBUILD_MESSAGE_TIMESTAMP='$(BUILD_MESSAGE_TIMESTAMP)'
392DEFINES += -DBUILD_MESSAGE_VERSION_STRING='"$(VERSION_STRING)"'
393DEFINES += -DBUILD_MESSAGE_VERSION='"$(VERSION)"'
394
Juan Castilloa3487d12015-08-18 14:23:04 +0100395BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100396 common/tf_log.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100397 common/${ARCH}/debug.S \
Julius Werner03020da2018-11-27 22:10:56 -0800398 drivers/console/multi_console.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100399 lib/${ARCH}/cache_helpers.S \
400 lib/${ARCH}/misc_helpers.S \
Boyan Karatotev05504ba2023-02-15 13:21:50 +0000401 lib/extensions/pmuv3/${ARCH}/pmuv3.c \
Soby Mathew2f38ce32018-02-08 17:45:12 +0000402 plat/common/plat_bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100403 plat/common/plat_log_common.c \
dp-arm230011c2017-03-07 11:02:47 +0000404 plat/common/${ARCH}/plat_common.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100405 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas0f8f9852018-05-08 10:27:10 +0100406 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000407
Chris Kaycfba6452023-12-04 09:55:50 +0000408ifeq ($($(ARCH)-cc-id),arm-clang)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100409 BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100410endif
411
Justin Chadwell83e04882019-08-20 11:01:52 +0100412ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100413 BL_COMMON_SOURCES += plat/common/ubsan.c
Justin Chadwell83e04882019-08-20 11:01:52 +0100414endif
415
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200416INCLUDES += -Iinclude \
Antonio Nino Diaz8d1ade62018-12-17 17:20:57 +0000417 -Iinclude/arch/${ARCH} \
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000418 -Iinclude/lib/cpus/${ARCH} \
419 -Iinclude/lib/el3_runtime/${ARCH} \
420 ${PLAT_INCLUDES} \
421 ${SPD_INCLUDES}
422
Nishant Sharma331b5682022-08-15 16:37:07 +0100423DTC_FLAGS += -I dts -O dtb
424DTC_CPPFLAGS += -P -nostdinc $(INCLUDES) -Ifdts -undef \
425 -x assembler-with-cpp $(DEFINES)
426
Antonio Nino Diazc3a2cf22018-11-19 11:48:30 +0000427include common/backtrace/backtrace.mk
428
Juan Castilloa3487d12015-08-18 14:23:04 +0100429################################################################################
Govindraj Raja1a211292023-09-20 14:32:24 -0500430# Generic definitions
431################################################################################
432include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
433
434ifeq (${BUILD_BASE},)
435 BUILD_BASE := ./build
436endif
437BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
438
439SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
440
441# Platforms providing their own TBB makefile may override this value
442INCLUDE_TBBR_MK := 1
443
444################################################################################
445# Include SPD Makefile if one has been specified
446################################################################################
447
448ifneq (${SPD},none)
449 ifeq (${ARCH},aarch32)
450 $(error "Error: SPD is incompatible with AArch32.")
451 endif
452
453 ifdef EL3_PAYLOAD_BASE
454 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
455 $(warning "The SPD and its BL32 companion will be present but \
456 ignored.")
457 endif
458
459 ifeq (${SPD},spmd)
460 # SPMD is located in std_svc directory
461 SPD_DIR := std_svc
462
463 ifeq ($(SPMD_SPM_AT_SEL2),1)
464 CTX_INCLUDE_EL2_REGS := 1
465 ifeq ($(SPMC_AT_EL3),1)
466 $(error SPM cannot be enabled in both S-EL2 and EL3.)
467 endif
468 endif
469
470 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
471 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
472 endif
473
Arunachalam Ganapathyfd29d582022-04-11 14:36:54 +0100474 ifeq ($(findstring trusty_sp,$(ARM_SPMC_MANIFEST_DTS)),trusty_sp)
475 DTC_CPPFLAGS += -DTRUSTY_SP_FW_CONFIG
476 endif
477
Govindraj Raja1a211292023-09-20 14:32:24 -0500478 ifeq ($(TS_SP_FW_CONFIG),1)
Arunachalam Ganapathyfd29d582022-04-11 14:36:54 +0100479 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
Govindraj Raja1a211292023-09-20 14:32:24 -0500480 endif
481
482 ifneq ($(ARM_BL2_SP_LIST_DTS),)
483 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
484 endif
485
486 ifneq ($(SP_LAYOUT_FILE),)
487 BL2_ENABLE_SP_LOAD := 1
488 endif
Govindraj Rajabad835a2023-10-31 14:48:11 -0500489
490 ifeq ($(SPMC_AT_EL3_SEL0_SP),1)
491 ifneq ($(SPMC_AT_EL3),1)
492 $(error SEL0 SP cannot be enabled without SPMC at EL3)
493 endif
494 endif
Govindraj Raja1a211292023-09-20 14:32:24 -0500495 else
496 # All other SPDs in spd directory
497 SPD_DIR := spd
498 endif #(SPD)
499
500 # We expect to locate an spd.mk under the specified SPD directory
501 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
502
503 ifeq (${SPD_MAKE},)
504 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
505 endif
506 $(info Including ${SPD_MAKE})
507 include ${SPD_MAKE}
508
509 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
510 # Makefile would set NEED_BL32 to "yes". In this case, the build system
511 # supports two mutually exclusive options:
512 # * BL32 is built from source: then BL32_SOURCES must contain the list
513 # of source files to build BL32
514 # * BL32 is a prebuilt binary: then BL32 must point to the image file
515 # that will be included in the FIP
516 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
517 # over the sources.
518endif #(SPD=none)
519
520ifeq (${ENABLE_SPMD_LP}, 1)
521ifneq (${SPD},spmd)
522 $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
523endif
524ifeq ($(SPMC_AT_EL3),1)
525 $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
526endif
527endif
528
529################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500530# Process BRANCH_PROTECTION value and set
531# Pointer Authentication and Branch Target Identification flags
532################################################################################
533ifeq (${BRANCH_PROTECTION},0)
534 # Default value turns off all types of branch protection
535 BP_OPTION := none
536else ifneq (${ARCH},aarch64)
537 $(error BRANCH_PROTECTION requires AArch64)
538else ifeq (${BRANCH_PROTECTION},1)
539 # Enables all types of branch protection features
540 BP_OPTION := standard
541 ENABLE_BTI := 1
542 ENABLE_PAUTH := 1
543else ifeq (${BRANCH_PROTECTION},2)
544 # Return address signing to its standard level
545 BP_OPTION := pac-ret
546 ENABLE_PAUTH := 1
547else ifeq (${BRANCH_PROTECTION},3)
548 # Extend the signing to include leaf functions
549 BP_OPTION := pac-ret+leaf
550 ENABLE_PAUTH := 1
551else ifeq (${BRANCH_PROTECTION},4)
552 # Turn on branch target identification mechanism
553 BP_OPTION := bti
554 ENABLE_BTI := 1
555else
556 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
557endif #(BRANCH_PROTECTION)
558
559ifeq ($(ENABLE_PAUTH),1)
560 CTX_INCLUDE_PAUTH_REGS := 1
561endif
562ifneq (${BP_OPTION},none)
563 TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
564endif #(BP_OPTION)
565
566# Pointer Authentication sources
567ifeq (${ENABLE_PAUTH}, 1)
568# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
569# Pauth support. As it's not secure, it must be reimplemented for real platforms
570 BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
571endif
572
Govindraj Raja1a211292023-09-20 14:32:24 -0500573################################################################################
574# Include the platform specific Makefile after the SPD Makefile (the platform
575# makefile may use all previous definitions in this file)
576################################################################################
577include ${PLAT_MAKEFILE_FULL}
578
579################################################################################
580# Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from
581# platform.
582################################################################################
583include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
584
Govindraj Raja0386e312023-08-17 10:41:48 -0500585####################################################
586# Enable required options for Memory Stack Tagging.
587####################################################
588
589# Currently, these options are enabled only for clang and armclang compiler.
590ifeq (${SUPPORT_STACK_MEMTAG},yes)
591 ifdef mem_tag_arch_support
592 # Check for armclang and clang compilers
Chris Kaycfba6452023-12-04 09:55:50 +0000593 ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
Govindraj Raja0386e312023-08-17 10:41:48 -0500594 # Add "memtag" architecture feature modifier if not specified
595 ifeq ( ,$(findstring memtag,$(arch-features)))
596 arch-features := $(arch-features)+memtag
597 endif # memtag
Chris Kaycfba6452023-12-04 09:55:50 +0000598 ifeq ($($(ARCH)-cc-id),arm-clang)
Govindraj Raja0386e312023-08-17 10:41:48 -0500599 TF_CFLAGS += -mmemtag-stack
Chris Kaycfba6452023-12-04 09:55:50 +0000600 else ifeq ($($(ARCH)-cc-id),llvm-clang)
Govindraj Raja0386e312023-08-17 10:41:48 -0500601 TF_CFLAGS += -fsanitize=memtag
602 endif # armclang
603 endif
604 else
605 $(error "Error: stack memory tagging is not supported for \
606 architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
607 endif #(mem_tag_arch_support)
608endif #(SUPPORT_STACK_MEMTAG)
609
610################################################################################
611# RME dependent flags configuration, Enable optional features for RME.
612################################################################################
613# FEAT_RME
614ifeq (${ENABLE_RME},1)
Govindraj Raja60f52662023-10-12 16:57:46 -0500615 # RME doesn't support BRBE
616 ENABLE_BRBE_FOR_NS := 0
617
Govindraj Raja0386e312023-08-17 10:41:48 -0500618 # RME doesn't support PIE
619 ifneq (${ENABLE_PIE},0)
620 $(error ENABLE_RME does not support PIE)
621 endif
622
623 # RME doesn't support BRBE
624 ifneq (${ENABLE_BRBE_FOR_NS},0)
625 $(error ENABLE_RME does not support BRBE.)
626 endif
627
628 # RME requires AARCH64
629 ifneq (${ARCH},aarch64)
630 $(error ENABLE_RME requires AArch64)
631 endif
632
633 # RME requires el2 context to be saved for now.
634 CTX_INCLUDE_EL2_REGS := 1
635 CTX_INCLUDE_AARCH32_REGS := 0
636 CTX_INCLUDE_PAUTH_REGS := 1
637
638 # RME enables CSV2_2 extension by default.
639 ENABLE_FEAT_CSV2_2 = 1
640endif #(FEAT_RME)
641
642################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500643# Include rmmd Makefile if RME is enabled
644################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500645ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100646 ifneq (${ARCH},aarch64)
647 $(error ENABLE_RME requires AArch64)
648 endif
649 ifeq ($(SPMC_AT_EL3),1)
650 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
651 endif
652
653 ifneq (${SPD}, none)
654 ifneq (${SPD}, spmd)
655 $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
656 endif
657 endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500658include services/std_svc/rmmd/rmmd.mk
659$(warning "RME is an experimental feature")
660endif
661
Govindraj Raja1a211292023-09-20 14:32:24 -0500662ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
663 ifeq (${SPD},none)
664 ifeq (${ENABLE_RME},0)
665 $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
666 or RME is enabled)
667 endif
668 endif
669endif
Jon Medhurst66573cb2014-02-13 15:19:28 +0000670
Govindraj Raja69096412023-06-01 16:29:16 -0500671################################################################################
672# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
673# up with appropriate march values for compiler.
674################################################################################
675include ${MAKE_HELPERS_DIRECTORY}march.mk
676
677TF_CFLAGS += $(march-directive)
Govindraj Raja0c572472024-01-23 16:00:19 -0600678ASFLAGS += $(march-directive)
Govindraj Raja69096412023-06-01 16:29:16 -0500679
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600680# This internal flag is common option which is set to 1 for scenarios
681# when the BL2 is running in EL3 level. This occurs in two scenarios -
682# 4 world system running BL2 at EL3 and two world system without BL1 running
683# BL2 in EL3
684
685ifeq (${RESET_TO_BL2},1)
686 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100687 ifeq (${ENABLE_RME},1)
688 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
689 supported at the moment.)
690 endif
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600691else ifeq (${ENABLE_RME},1)
692 BL2_RUNS_AT_EL3 := 1
693else
694 BL2_RUNS_AT_EL3 := 0
695endif
696
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100697# This internal flag is set to 1 when Firmware First handling of External aborts
698# is required by lowe ELs. Currently only NS requires this support.
699ifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
700 FFH_SUPPORT := 1
701else
702 FFH_SUPPORT := 0
703endif
704
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900705$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
706
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100707ifeq (${ARM_ARCH_MAJOR},7)
708include make_helpers/armv7-a-cpus.mk
709endif
710
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900711PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
712ifneq ($(PIE_FOUND),)
713 TF_CFLAGS += -fno-PIE
Chris Kaycfba6452023-12-04 09:55:50 +0000714ifeq ($($(ARCH)-ld-id),gnu-gcc)
Samuel Holland9286c022022-04-08 21:56:02 -0500715 TF_LDFLAGS += -no-pie
716endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100717endif #(PIE_FOUND)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900718
Chris Kaycfba6452023-12-04 09:55:50 +0000719ifeq ($($(ARCH)-ld-id),gnu-gcc)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900720 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100721else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900722 PIE_LDFLAGS += -pie --no-dynamic-linker
723endif
724
725ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100726 ifeq ($(RESET_TO_BL2),1)
727 ifneq ($(BL2_IN_XIP_MEM),1)
728 BL2_CPPFLAGS += -fpie
729 BL2_CFLAGS += -fpie
730 BL2_LDFLAGS += $(PIE_LDFLAGS)
731 endif #(BL2_IN_XIP_MEM)
732 endif #(RESET_TO_BL2)
Chris Kay13886c82023-02-02 14:39:03 +0000733 BL31_CPPFLAGS += -fpie
734 BL31_CFLAGS += -fpie
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900735 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay13886c82023-02-02 14:39:03 +0000736
737 BL32_CPPFLAGS += -fpie
Masahiro Yamadade634f82020-01-17 13:45:14 +0900738 BL32_CFLAGS += -fpie
739 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100740endif #(ENABLE_PIE)
Soby Mathew078f1a42018-08-28 11:13:55 +0100741
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000742BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
743BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
744BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
745
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900746BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600747ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100748 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900749else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100750 BL2_CPPFLAGS += -DIMAGE_AT_EL1
751endif #(RESET_TO_BL2)
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000752
753ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100754 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
755 BL31_CPPFLAGS += -DIMAGE_AT_EL3
756 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000757else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100758 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900759endif
760
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000761# Include the CPU specific operations makefile, which provides default
762# values for all CPU errata workarounds and CPU specific optimisations.
763# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100764include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100765
dp-armcdd03cb2017-02-15 11:07:55 +0000766################################################################################
767# Build `AARCH32_SP` as BL32 image for AArch32
768################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100769ifeq (${ARCH},aarch32)
770 NEED_BL32 := yes
dp-armcdd03cb2017-02-15 11:07:55 +0000771
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100772 ifneq (${AARCH32_SP},none)
773 # We expect to locate an sp.mk under the specified AARCH32_SP directory
774 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-armcdd03cb2017-02-15 11:07:55 +0000775
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100776 ifeq (${AARCH32_SP_MAKE},)
777 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
778 endif
Juan Pablo Conde6aba3b12023-08-09 13:19:21 -0500779 $(info Including ${AARCH32_SP_MAKE})
780 include ${AARCH32_SP_MAKE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100781 endif
782endif #(ARCH=aarch32)
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800783
784################################################################################
785# Include libc if not overridden
786################################################################################
787ifeq (${OVERRIDE_LIBC},0)
788include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000789endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100790
791################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100792# Check incompatible options and dependencies
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000793################################################################################
794
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100795# USE_DEBUGFS experimental feature recommended only in debug builds
796ifeq (${USE_DEBUGFS},1)
797 ifeq (${DEBUG},1)
798 $(warning DEBUGFS experimental feature is enabled.)
799 else
800 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800801 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100802endif #(USE_DEBUGFS)
803
804# USE_SPINLOCK_CAS requires AArch64 build
805ifeq (${USE_SPINLOCK_CAS},1)
806 ifneq (${ARCH},aarch64)
807 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800808 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100809endif #(USE_SPINLOCK_CAS)
810
811# The cert_create tool cannot generate certificates individually, so we use the
812# target 'certificates' to create them all
813ifneq (${GENERATE_COT},0)
814 FIP_DEPS += certificates
815 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000816endif
817
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100818ifneq (${DECRYPTION_SUPPORT},none)
819 ENC_ARGS += -f ${FW_ENC_STATUS}
820 ENC_ARGS += -k ${ENC_KEY}
821 ENC_ARGS += -n ${ENC_NONCE}
822 FIP_DEPS += enctool
823 FWU_FIP_DEPS += enctool
824endif #(DECRYPTION_SUPPORT)
825
826ifdef EL3_PAYLOAD_BASE
827 ifdef PRELOADED_BL33_BASE
828 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
829 incompatible build options. EL3_PAYLOAD_BASE has priority.")
830 endif
831 ifneq (${GENERATE_COT},0)
832 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
833 build options.")
834 endif
835 ifneq (${TRUSTED_BOARD_BOOT},0)
836 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
837 incompatible \ build options.")
838 endif
839endif #(EL3_PAYLOAD_BASE)
840
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000841ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100842 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000843 $(warning "BL33 image is not needed when option \
844 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100845 endif
846 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100847 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100848 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
849 endif
850endif #(NEED_BL33)
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000851
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000852# When building for systems with hardware-assisted coherency, there's no need to
853# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
854ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100855 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000856endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100857
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600858#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
859ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100860 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000861endif
862
Manish Pandeyd419e222023-02-13 12:39:17 +0000863# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100864ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100865 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100866 and HANDLE_EA_EL3_FIRST_NS instead")
Manish Pandeyd419e222023-02-13 12:39:17 +0000867endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100868
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100869
Manish Pandeyd419e222023-02-13 12:39:17 +0000870# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000871ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100872 ifeq ($(ENABLE_FEAT_RAS),0)
873 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
874 endif
875endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000876
Roberto Vargas025946a2018-09-24 17:20:48 +0100877# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100878ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100879 ifeq (${TRUSTED_BOARD_BOOT}, 0)
880 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
881 to be set.")
882 endif
883endif #(DYN_DISABLE_AUTH)
Soby Mathew9fe88042018-03-26 12:43:37 +0100884
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100885ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
886# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100887 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100888else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
889# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100890 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100891else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
892# Support hash calculation only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100893 CRYPTO_SUPPORT := 2
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100894else ifeq (${TRUSTED_BOARD_BOOT},1)
895# Support authentication verification only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100896 CRYPTO_SUPPORT := 1
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000897else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100898 CRYPTO_SUPPORT := 0
899endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000900
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +0100901# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
902ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100903 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +0100904endif
905
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000906# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100907# registers associated to it are also saved and restored.
908# 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 +0000909ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100910 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
911 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
912 endif
913endif #(ENABLE_PAUTH)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100914
915ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100916 ifneq (${ARCH},aarch64)
917 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
918 endif
919endif #(CTX_INCLUDE_PAUTH_REGS)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000920
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000921ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100922 $(info FEATURE_DETECTION is an experimental feature)
923endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000924
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000925ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100926 ifeq (${ENABLE_SME_FOR_NS}, 0)
927 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
928 to be set")
929 $(warning "Forced ENABLE_SME_FOR_NS=1")
930 override ENABLE_SME_FOR_NS := 1
931 endif
932endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000933
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000934ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100935 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
936 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
937 library v2")
938 endif
939endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000940
Sumit Garg392e4df2019-11-15 10:43:00 +0530941ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100942 ifeq (${TRUSTED_BOARD_BOOT}, 0)
943 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
944 to be set)
945 endif
946endif #(DECRYPTION_SUPPORT)
Sumit Garg392e4df2019-11-15 10:43:00 +0530947
johpow0181865962022-01-28 17:06:20 -0600948# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -0500949ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -0600950
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100951 # SME/SVE only supported on AArch64
952 ifneq (${ENABLE_SME_FOR_NS},0)
953 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
954 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000955
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100956 ifeq (${ENABLE_SVE_FOR_NS},1)
957 # Warning instead of error due to CI dependency on this
958 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
959 endif
johpow0181865962022-01-28 17:06:20 -0600960
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100961 # BRBE is not supported in AArch32
962 ifeq (${ENABLE_BRBE_FOR_NS},1)
963 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
964 endif
johpow0181865962022-01-28 17:06:20 -0600965
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100966 # FEAT_RNG_TRAP is not supported in AArch32
967 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
968 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
969 endif
970endif #(ARCH=aarch32)
johpow019baade32021-07-08 14:14:00 -0500971
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000972ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100973 ifeq (${ENABLE_SVE_FOR_NS},0)
974 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
975 endif
976endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000977
johpow019baade32021-07-08 14:14:00 -0500978# Secure SME/SVE requires the non-secure component as well
979ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100980 ifeq (${ENABLE_SME_FOR_NS},0)
981 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
982 endif
983 ifeq (${ENABLE_SVE_FOR_SWD},0)
984 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
985 endif
986endif #(ENABLE_SME_FOR_SWD)
987
johpow019baade32021-07-08 14:14:00 -0500988ifeq (${ENABLE_SVE_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100989 ifeq (${ENABLE_SVE_FOR_NS},0)
990 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
991 endif
992endif #(ENABLE_SVE_FOR_SWD)
johpow019baade32021-07-08 14:14:00 -0500993
994# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
995# its own context management including FPU registers.
996ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100997 ifneq (${ENABLE_SME_FOR_NS},0)
998 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
999 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001000
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001001 ifeq (${ENABLE_SVE_FOR_NS},1)
1002 # Warning instead of error due to CI dependency on this
1003 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1004 $(warning "Forced ENABLE_SVE_FOR_NS=0")
1005 override ENABLE_SVE_FOR_NS := 0
1006 endif
1007endif #(CTX_INCLUDE_FPREGS)
johpow019baade32021-07-08 14:14:00 -05001008
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001009ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001010 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001011endif
1012
Raymond Mao98983392023-07-25 07:53:35 -07001013ifeq (${TRANSFER_LIST},1)
1014 $(info TRANSFER_LIST is an experimental feature)
1015endif
1016
Chris Kayd02c2312022-09-29 16:21:24 +01001017ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001018 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1019 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1020 endif
Chris Kayd02c2312022-09-29 16:21:24 +01001021endif
1022
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001023ifeq ($(PSA_CRYPTO),1)
1024 $(info PSA_CRYPTO is an experimental feature)
1025endif
1026
Manish V Badarkhed8d7d932024-05-09 12:14:13 +01001027ifeq ($(DICE_PROTECTION_ENVIRONMENT),1)
1028 $(info DICE_PROTECTION_ENVIRONMENT is an experimental feature)
1029endif
1030
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001031################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001032# Process platform overrideable behaviour
1033################################################################################
1034
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001035ifdef BL1_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001036 NEED_BL1 := yes
1037endif #(BL1_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001038
Jon Medhurst66573cb2014-02-13 15:19:28 +00001039ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001040 NEED_BL2 := yes
1041
1042 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1043 # Certificate generation tools. This flag can be overridden by the platform.
1044 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001045 # If booting an EL3 payload there is no need for a BL33 image
1046 # in the FIP file.
1047 NEED_BL33 := no
1048 else
1049 ifdef PRELOADED_BL33_BASE
1050 # If booting a BL33 preloaded image there is no need of
1051 # another one in the FIP file.
1052 NEED_BL33 := no
1053 else
1054 NEED_BL33 ?= yes
1055 endif
1056 endif
1057endif #(BL2_SOURCES)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001058
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001059ifdef BL2U_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001060 NEED_BL2U := yes
1061endif #(BL2U_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001062
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001063# If SCP_BL2 is given, we always want FIP to include it.
1064ifdef SCP_BL2
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001065 NEED_SCP_BL2 := yes
1066endif #(SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001067
Soby Mathewbf169232017-11-14 14:10:10 +00001068# For AArch32, BL31 is not currently supported.
1069ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001070 ifdef BL31_SOURCES
1071 # When booting an EL3 payload, there is no need to compile the BL31
1072 # image nor put it in the FIP.
1073 ifndef EL3_PAYLOAD_BASE
1074 NEED_BL31 := yes
1075 endif
1076 endif
1077endif #(ARCH=aarch64)
Soby Mathewbf169232017-11-14 14:10:10 +00001078
Juan Castilloa3487d12015-08-18 14:23:04 +01001079# Process TBB related flags
1080ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001081 # Common cert_create options
1082 ifneq (${CREATE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001083 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001084 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001085 ifneq (${SAVE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001086 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001087 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001088 endif
1089 endif
1090 # Include TBBR makefile (unless the platform indicates otherwise)
1091 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castilloa3487d12015-08-18 14:23:04 +01001092 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001093 endif
1094endif #(GENERATE_COT)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001095
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001096ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001097 FIP_ARGS += --align ${FIP_ALIGN}
1098endif #(FIP_ALIGN)
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001099
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001100ifdef FDT_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001101 NEED_FDT := yes
1102endif #(FDT_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001103
Juan Castilloa3487d12015-08-18 14:23:04 +01001104################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +08001105# Include libraries' Makefile that are used in all BL
1106################################################################################
1107
1108include lib/stack_protector/stack_protector.mk
1109
1110################################################################################
Soby Mathew574e01e2017-02-14 10:05:07 +00001111# Include BL specific makefiles
1112################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001113
1114ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001115include bl1/bl1.mk
1116endif
1117
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001118ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001119include bl2/bl2.mk
1120endif
1121
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001122ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001123include bl2u/bl2u.mk
1124endif
1125
Soby Mathewbf169232017-11-14 14:10:10 +00001126ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001127include bl31/bl31.mk
1128endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001129
Soby Mathew574e01e2017-02-14 10:05:07 +00001130################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001131# Build options checks
1132################################################################################
1133
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001134# Boolean_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001135$(eval $(call assert_booleans,\
1136 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001137 ALLOW_RO_XLAT_TABLES \
1138 BL2_ENABLE_SP_LOAD \
1139 COLD_BOOT_SINGLE_CPU \
1140 CREATE_KEYS \
1141 CTX_INCLUDE_AARCH32_REGS \
1142 CTX_INCLUDE_FPREGS \
1143 CTX_INCLUDE_EL2_REGS \
Arvind Ram Prakash4851b492023-10-06 14:35:21 -05001144 CTX_INCLUDE_MPAM_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001145 DEBUG \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001146 DYN_DISABLE_AUTH \
1147 EL3_EXCEPTION_HANDLING \
1148 ENABLE_AMU_AUXILIARY_COUNTERS \
1149 ENABLE_AMU_FCONF \
1150 AMU_RESTRICT_COUNTERS \
1151 ENABLE_ASSERTIONS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001152 ENABLE_PIE \
1153 ENABLE_PMF \
1154 ENABLE_PSCI_STAT \
1155 ENABLE_RUNTIME_INSTRUMENTATION \
1156 ENABLE_SME_FOR_SWD \
1157 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001158 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001159 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001160 ERROR_DEPRECATED \
1161 FAULT_INJECTION_SUPPORT \
1162 GENERATE_COT \
1163 GICV2_G0_FOR_EL3 \
1164 HANDLE_EA_EL3_FIRST_NS \
Bipin Ravie53e6ae2023-09-28 13:17:24 -05001165 HARDEN_SLS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001166 HW_ASSISTED_COHERENCY \
1167 MEASURED_BOOT \
Tamas Bana4260892023-06-07 13:35:04 +02001168 DICE_PROTECTION_ENVIRONMENT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001169 DRTM_SUPPORT \
1170 NS_TIMER_SWITCH \
1171 OVERRIDE_LIBC \
1172 PL011_GENERIC_UART \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001173 PROGRAMMABLE_RESET_ADDRESS \
1174 PSCI_EXTENDED_STATE_ID \
1175 PSCI_OS_INIT_MODE \
1176 RESET_TO_BL31 \
1177 SAVE_KEYS \
1178 SEPARATE_CODE_AND_RODATA \
1179 SEPARATE_BL2_NOLOAD_REGION \
1180 SEPARATE_NOBITS_REGION \
1181 SPIN_ON_BL1_EXIT \
1182 SPM_MM \
1183 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001184 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001185 SPMD_SPM_AT_SEL2 \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001186 ENABLE_SPMD_LP \
Raymond Mao98983392023-07-25 07:53:35 -07001187 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001188 TRUSTED_BOARD_BOOT \
1189 USE_COHERENT_MEM \
1190 USE_DEBUGFS \
1191 ARM_IO_IN_DTB \
1192 SDEI_IN_FCONF \
1193 SEC_INT_DESC_IN_FCONF \
1194 USE_ROMLIB \
1195 USE_TBBR_DEFS \
1196 WARMBOOT_ENABLE_DCACHE_EARLY \
1197 RESET_TO_BL2 \
1198 BL2_IN_XIP_MEM \
1199 BL2_INV_DCACHE \
1200 USE_SPINLOCK_CAS \
1201 ENCRYPT_BL31 \
1202 ENCRYPT_BL32 \
1203 ERRATA_SPECULATIVE_AT \
1204 RAS_TRAP_NS_ERR_REC_ACCESS \
1205 COT_DESC_IN_DTB \
1206 USE_SP804_TIMER \
1207 PSA_FWU_SUPPORT \
Sughosh Ganu61905e52024-02-01 12:51:20 +05301208 PSA_FWU_METADATA_FW_STORE_DESC \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001209 ENABLE_MPMM \
1210 ENABLE_MPMM_FCONF \
1211 FEATURE_DETECTION \
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +01001212 TRNG_SUPPORT \
Sona Mathew7fe03522022-11-18 18:05:38 -06001213 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001214 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001215 CONDITIONAL_CMO \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001216 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001217 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash8bd27c92023-08-15 16:28:06 -05001218 INIT_UNUSED_NS_EL2 \
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001219 PLATFORM_REPORT_CTX_MEM_USE \
Yann Gautier5ae29c02024-01-16 19:39:31 +01001220 EARLY_CONSOLE \
Arvind Ram Prakasheaa90192023-12-21 00:25:52 -06001221 PRESERVE_DSU_PMU_REGS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001222)))
Dan Handley81be1002015-03-27 17:44:35 +00001223
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001224# Numeric_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001225$(eval $(call assert_numerics,\
1226 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001227 ARM_ARCH_MAJOR \
1228 ARM_ARCH_MINOR \
1229 BRANCH_PROTECTION \
1230 CTX_INCLUDE_PAUTH_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001231 CTX_INCLUDE_NEVE_REGS \
1232 CRYPTO_SUPPORT \
Boyan Karatotev677ed8a2023-02-16 09:45:29 +00001233 DISABLE_MTPMU \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001234 ENABLE_BRBE_FOR_NS \
1235 ENABLE_TRBE_FOR_NS \
1236 ENABLE_BTI \
1237 ENABLE_PAUTH \
1238 ENABLE_FEAT_AMU \
1239 ENABLE_FEAT_AMUv1p1 \
1240 ENABLE_FEAT_CSV2_2 \
Sona Mathew3b84c962023-10-25 16:48:19 -05001241 ENABLE_FEAT_CSV2_3 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001242 ENABLE_FEAT_DIT \
1243 ENABLE_FEAT_ECV \
1244 ENABLE_FEAT_FGT \
1245 ENABLE_FEAT_HCX \
Govindraj Rajad7b63ac2024-01-26 10:08:37 -06001246 ENABLE_FEAT_MTE2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001247 ENABLE_FEAT_PAN \
1248 ENABLE_FEAT_RNG \
1249 ENABLE_FEAT_RNG_TRAP \
1250 ENABLE_FEAT_SEL2 \
1251 ENABLE_FEAT_TCR2 \
Govindraj Rajac2dad572024-01-23 16:03:53 -06001252 ENABLE_FEAT_SB \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001253 ENABLE_FEAT_S2PIE \
1254 ENABLE_FEAT_S1PIE \
1255 ENABLE_FEAT_S2POE \
1256 ENABLE_FEAT_S1POE \
1257 ENABLE_FEAT_GCS \
1258 ENABLE_FEAT_VHE \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001259 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001260 ENABLE_RME \
1261 ENABLE_SPE_FOR_NS \
1262 ENABLE_SYS_REG_TRACE_FOR_NS \
1263 ENABLE_SME_FOR_NS \
1264 ENABLE_SME2_FOR_NS \
1265 ENABLE_SVE_FOR_NS \
1266 ENABLE_TRF_FOR_NS \
1267 FW_ENC_STATUS \
1268 NR_OF_FW_BANKS \
1269 NR_OF_IMAGES_IN_FW_BANK \
1270 TWED_DELAY \
1271 ENABLE_FEAT_TWED \
1272 SVE_VECTOR_LEN \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001273 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001274)))
Jeenu Viswambharanfca76802017-01-16 16:52:35 +00001275
Justin Chadwellf9b32c12019-07-29 17:13:10 +01001276ifdef KEY_SIZE
1277 $(eval $(call assert_numeric,KEY_SIZE))
1278endif
1279
Justin Chadwell83e04882019-08-20 11:01:52 +01001280ifeq ($(filter $(SANITIZE_UB), on off trap),)
1281 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1282endif
1283
Juan Castilloa3487d12015-08-18 14:23:04 +01001284################################################################################
1285# Add definitions to the cpp preprocessor based on the current build options.
1286# This is done after including the platform specific makefile to allow the
1287# platform to overwrite the default options
1288################################################################################
Jeenu Viswambharand1b60152014-05-12 15:28:47 +01001289
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001290$(eval $(call add_defines,\
1291 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001292 ALLOW_RO_XLAT_TABLES \
1293 ARM_ARCH_MAJOR \
1294 ARM_ARCH_MINOR \
1295 BL2_ENABLE_SP_LOAD \
1296 COLD_BOOT_SINGLE_CPU \
1297 CTX_INCLUDE_AARCH32_REGS \
1298 CTX_INCLUDE_FPREGS \
1299 CTX_INCLUDE_PAUTH_REGS \
Arvind Ram Prakash4851b492023-10-06 14:35:21 -05001300 CTX_INCLUDE_MPAM_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001301 EL3_EXCEPTION_HANDLING \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001302 CTX_INCLUDE_EL2_REGS \
1303 CTX_INCLUDE_NEVE_REGS \
1304 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1305 DISABLE_MTPMU \
1306 ENABLE_FEAT_AMU \
1307 ENABLE_AMU_AUXILIARY_COUNTERS \
1308 ENABLE_AMU_FCONF \
1309 AMU_RESTRICT_COUNTERS \
1310 ENABLE_ASSERTIONS \
1311 ENABLE_BTI \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001312 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001313 ENABLE_PAUTH \
1314 ENABLE_PIE \
1315 ENABLE_PMF \
1316 ENABLE_PSCI_STAT \
1317 ENABLE_RME \
1318 ENABLE_RUNTIME_INSTRUMENTATION \
1319 ENABLE_SME_FOR_NS \
1320 ENABLE_SME2_FOR_NS \
1321 ENABLE_SME_FOR_SWD \
1322 ENABLE_SPE_FOR_NS \
1323 ENABLE_SVE_FOR_NS \
1324 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001325 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001326 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001327 ENCRYPT_BL31 \
1328 ENCRYPT_BL32 \
1329 ERROR_DEPRECATED \
1330 FAULT_INJECTION_SUPPORT \
1331 GICV2_G0_FOR_EL3 \
1332 HANDLE_EA_EL3_FIRST_NS \
1333 HW_ASSISTED_COHERENCY \
1334 LOG_LEVEL \
1335 MEASURED_BOOT \
Tamas Bana4260892023-06-07 13:35:04 +02001336 DICE_PROTECTION_ENVIRONMENT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001337 DRTM_SUPPORT \
1338 NS_TIMER_SWITCH \
1339 PL011_GENERIC_UART \
1340 PLAT_${PLAT} \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001341 PROGRAMMABLE_RESET_ADDRESS \
1342 PSCI_EXTENDED_STATE_ID \
1343 PSCI_OS_INIT_MODE \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001344 RESET_TO_BL31 \
1345 SEPARATE_CODE_AND_RODATA \
1346 SEPARATE_BL2_NOLOAD_REGION \
1347 SEPARATE_NOBITS_REGION \
1348 RECLAIM_INIT_CODE \
1349 SPD_${SPD} \
1350 SPIN_ON_BL1_EXIT \
1351 SPM_MM \
1352 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001353 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001354 SPMD_SPM_AT_SEL2 \
Raymond Mao98983392023-07-25 07:53:35 -07001355 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001356 TRUSTED_BOARD_BOOT \
1357 CRYPTO_SUPPORT \
1358 TRNG_SUPPORT \
1359 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001360 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001361 USE_COHERENT_MEM \
1362 USE_DEBUGFS \
1363 ARM_IO_IN_DTB \
1364 SDEI_IN_FCONF \
1365 SEC_INT_DESC_IN_FCONF \
1366 USE_ROMLIB \
1367 USE_TBBR_DEFS \
1368 WARMBOOT_ENABLE_DCACHE_EARLY \
1369 RESET_TO_BL2 \
1370 BL2_RUNS_AT_EL3 \
1371 BL2_IN_XIP_MEM \
1372 BL2_INV_DCACHE \
1373 USE_SPINLOCK_CAS \
1374 ERRATA_SPECULATIVE_AT \
1375 RAS_TRAP_NS_ERR_REC_ACCESS \
1376 COT_DESC_IN_DTB \
1377 USE_SP804_TIMER \
1378 ENABLE_FEAT_RNG \
1379 ENABLE_FEAT_RNG_TRAP \
1380 ENABLE_FEAT_SB \
1381 ENABLE_FEAT_DIT \
1382 NR_OF_FW_BANKS \
1383 NR_OF_IMAGES_IN_FW_BANK \
1384 PSA_FWU_SUPPORT \
Sughosh Ganu61905e52024-02-01 12:51:20 +05301385 PSA_FWU_METADATA_FW_STORE_DESC \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001386 ENABLE_BRBE_FOR_NS \
1387 ENABLE_TRBE_FOR_NS \
1388 ENABLE_SYS_REG_TRACE_FOR_NS \
1389 ENABLE_TRF_FOR_NS \
1390 ENABLE_FEAT_HCX \
1391 ENABLE_MPMM \
1392 ENABLE_MPMM_FCONF \
1393 ENABLE_FEAT_FGT \
1394 ENABLE_FEAT_ECV \
1395 ENABLE_FEAT_AMUv1p1 \
1396 ENABLE_FEAT_SEL2 \
1397 ENABLE_FEAT_VHE \
1398 ENABLE_FEAT_CSV2_2 \
Sona Mathew3b84c962023-10-25 16:48:19 -05001399 ENABLE_FEAT_CSV2_3 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001400 ENABLE_FEAT_PAN \
1401 ENABLE_FEAT_TCR2 \
1402 ENABLE_FEAT_S2PIE \
1403 ENABLE_FEAT_S1PIE \
1404 ENABLE_FEAT_S2POE \
1405 ENABLE_FEAT_S1POE \
1406 ENABLE_FEAT_GCS \
Govindraj Rajad7b63ac2024-01-26 10:08:37 -06001407 ENABLE_FEAT_MTE2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001408 FEATURE_DETECTION \
1409 TWED_DELAY \
1410 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001411 CONDITIONAL_CMO \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001412 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidanand23c2fe22023-04-26 15:57:30 +01001413 SVE_VECTOR_LEN \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001414 ENABLE_SPMD_LP \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001415 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001416 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash8bd27c92023-08-15 16:28:06 -05001417 INIT_UNUSED_NS_EL2 \
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001418 PLATFORM_REPORT_CTX_MEM_USE \
Yann Gautier5ae29c02024-01-16 19:39:31 +01001419 EARLY_CONSOLE \
Arvind Ram Prakasheaa90192023-12-21 00:25:52 -06001420 PRESERVE_DSU_PMU_REGS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001421)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001422
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001423ifeq (${PLATFORM_REPORT_CTX_MEM_USE}, 1)
1424ifeq (${DEBUG}, 0)
1425 $(warning "PLATFORM_REPORT_CTX_MEM_USE can be applied when DEBUG=1 only")
1426 override PLATFORM_REPORT_CTX_MEM_USE := 0
1427endif
1428endif
1429
Justin Chadwell83e04882019-08-20 11:01:52 +01001430ifeq (${SANITIZE_UB},trap)
1431 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001432endif #(SANITIZE_UB)
Justin Chadwell83e04882019-08-20 11:01:52 +01001433
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001434# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1435ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001436 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1437else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001438# Define the PRELOADED_BL33_BASE flag only if it is provided and
1439# EL3_PAYLOAD_BASE is not defined, as it has priority.
1440 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001441 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001442 endif
1443endif #(EL3_PAYLOAD_BASE)
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001444
Soby Mathew9fe88042018-03-26 12:43:37 +01001445# Define the DYN_DISABLE_AUTH flag only if set.
1446ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001447 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew9fe88042018-03-26 12:43:37 +01001448endif
1449
Chris Kaycfba6452023-12-04 09:55:50 +00001450ifeq ($($(ARCH)-ld-id),arm-link)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001451 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekar4d034c52019-01-11 14:47:48 -08001452endif
1453
Manish Pandey3f90ad72020-01-14 11:52:05 +00001454# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001455ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001456ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001457 -include $(BUILD_PLAT)/sp_gen.mk
1458 FIP_DEPS += sp
1459 CRT_DEPS += sp
1460 NEED_SP_PKG := yes
Manish Pandey3f90ad72020-01-14 11:52:05 +00001461else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001462 ifeq (${SPMD_SPM_AT_SEL2},1)
1463 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1464 endif
1465endif #(SP_LAYOUT_FILE)
1466endif #(SPD)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001467
Juan Castilloa3487d12015-08-18 14:23:04 +01001468################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001469# Build targets
1470################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001471
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301472.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 +01001473.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001474
Juan Castilloa3487d12015-08-18 14:23:04 +01001475all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001476
Juan Castilloa3487d12015-08-18 14:23:04 +01001477msg_start:
1478 @echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001479
Soby Mathew18a62042015-10-26 14:29:21 +00001480ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001481# Check if deprecated declarations and cpp warnings should be treated as error or not.
Chris Kaycfba6452023-12-04 09:55:50 +00001482ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
Varun Wadekar4d034c52019-01-11 14:47:48 -08001483 CPPFLAGS += -Wno-error=deprecated-declarations
1484else
Dan Handley6fa89a22018-02-27 16:03:58 +00001485 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001486endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001487endif #(!ERROR_DEPRECATED)
Soby Mathew18a62042015-10-26 14:29:21 +00001488
Roberto Vargase92111a2018-05-22 16:05:42 +01001489$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001490$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001491
Juan Castilloa3487d12015-08-18 14:23:04 +01001492# Expand build macros for the different images
1493ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001494BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001495$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001496endif #(NEED_BL1)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001497
Juan Castilloa3487d12015-08-18 14:23:04 +01001498ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001499
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001500ifeq (${RESET_TO_BL2}, 0)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001501FIP_BL2_ARGS := tb-fw
1502endif
1503
Chris Kayfb3b0512021-09-28 15:44:37 +01001504BL2_SOURCES := $(sort ${BL2_SOURCES})
1505
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001506$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001507 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001508
1509endif #(NEED_BL2)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001510
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001511ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001512$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001513endif #(NEED_SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001514
Juan Castilloa3487d12015-08-18 14:23:04 +01001515ifeq (${NEED_BL31},yes)
1516BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001517# Sort BL31 source files to remove duplicates
1518BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301519ifneq (${DECRYPTION_SUPPORT},none)
1520$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001521 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301522else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001523$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001524 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001525endif #(DECRYPTION_SUPPORT)
1526endif #(NEED_BL31)
Juan Castillo379954c2014-11-04 17:36:40 +00001527
Juan Castillo671b8db2015-11-12 10:59:26 +00001528# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001529# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001530# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001531ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001532# Sort BL32 source files to remove duplicates
1533BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001534BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1535
Sumit Gargeec52442019-11-14 16:33:45 +05301536ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001537$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301538 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1539else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001540$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001541 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001542endif #(DECRYPTION_SUPPORT)
1543endif #(NEED_BL32)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001544
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001545# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1546# needs to be built from RMM_SOURCES.
1547ifeq (${NEED_RMM},yes)
1548# Sort RMM source files to remove duplicates
1549RMM_SOURCES := $(sort ${RMM_SOURCES})
1550BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1551
1552$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001553 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1554endif #(NEED_RMM)
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001555
Juan Castilloa3487d12015-08-18 14:23:04 +01001556# Add the BL33 image if required by the platform
1557ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001558$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001559endif #(NEED_BL33)
Juan Castillo9c25a402015-01-13 12:21:04 +00001560
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001561ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001562$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001563 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001564endif #(NEED_BL2U)
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001565
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001566# Expand build macros for the different images
1567ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001568 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001569endif #(NEED_FDT)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001570
Manish Pandey3f90ad72020-01-14 11:52:05 +00001571# Add Secure Partition packages
1572ifeq (${NEED_SP_PKG},yes)
Olivier Deprezf5033072024-01-26 12:05:36 +01001573$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
1574 @${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
J-Alvesef8e0982022-03-22 16:28:51 +00001575sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001576 @${ECHO_BLANK_LINE}
1577 @echo "Built SP Images successfully"
1578 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001579endif #(NEED_SP_PKG)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001580
Ian Spray36eaaf32014-01-30 17:25:28 +00001581locate-checkpatch:
1582ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001583 $(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 +00001584else
1585ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001586 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001587endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001588endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001589
Achin Gupta4f6ad662013-10-25 09:08:21 +01001590clean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001591 @echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001592 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001593ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001594 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001595else
1596# Clear the MAKEFLAGS as we do not want
1597# to pass the gnumake flags to nmake.
1598 ${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 +01001599endif #(UNIX_MK)
Juan Castilloa3487d12015-08-18 14:23:04 +01001600 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301601 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
Roberto Vargase92111a2018-05-22 16:05:42 +01001602 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001603
James Morrisseyeaaeece2013-11-01 13:56:59 +00001604realclean distclean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001605 @echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001606 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1607 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001608ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001609 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001610else
1611# Clear the MAKEFLAGS as we do not want
1612# to pass the gnumake flags to nmake.
1613 ${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 +01001614endif #(UNIX_MK)
Nicolas Boulenguezdf612a52021-03-31 12:22:45 +02001615 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301616 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
Roberto Vargase92111a2018-05-22 16:05:42 +01001617 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001618
Ian Spray36eaaf32014-01-30 17:25:28 +00001619checkcodebase: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001620 @echo " CHECKING STYLE"
Dan Handley3a355712016-06-02 18:21:02 +01001621 @if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001622 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001623 while read GIT_FILE ; \
1624 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1625 done ; \
1626 else \
1627 find . -type f -not -iwholename "*.git*" \
1628 -not -iwholename "*build*" \
1629 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001630 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001631 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001632 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001633 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1634 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001635
1636checkpatch: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001637 @echo " CHECKING STYLE"
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001638 @if test -n "${CHECKPATCH_OPTS}"; then \
1639 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1640 fi
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001641 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001642 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1643 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001644 printf "\n[*] Checking style of '$$commit'\n\n"; \
1645 git log --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001646 -- ${CHECK_PATHS} | \
1647 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001648 git diff --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001649 -- ${CHECK_PATHS} | \
1650 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001651 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001652
1653certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001654
Pali Rohár54ff2132020-11-24 15:38:08 +01001655${CRTTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001656 ${Q}${MAKE} PLAT=${PLAT} USE_TBBR_DEFS=${USE_TBBR_DEFS} COT=${COT} OPENSSL_DIR=${OPENSSL_DIR} CRTTOOL=${CRTTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${CRTTOOLPATH} all
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001657 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001658 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001659 @${ECHO_BLANK_LINE}
Jon Medhurst407a95c2014-02-12 15:54:48 +00001660
Juan Castillo11abdcd2014-10-21 11:30:42 +01001661ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001662certificates: ${CRT_DEPS} ${CRTTOOL}
1663 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001664 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001665 @echo "Built $@ successfully"
1666 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001667 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001668endif #(GENERATE_COT)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001669
Juan Castilloa3487d12015-08-18 14:23:04 +01001670${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001671 $(eval ${CHECK_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001672 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
1673 ${Q}${FIPTOOL} info $@
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001674 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001675 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001676 @${ECHO_BLANK_LINE}
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001677
Yatharth Kochard1a93432015-10-12 12:33:47 +01001678ifneq (${GENERATE_COT},0)
1679fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1680 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001681 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001682 @echo "Built $@ successfully"
1683 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001684 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001685endif #(GENERATE_COT)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001686
1687${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001688 $(eval ${CHECK_FWU_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001689 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1690 ${Q}${FIPTOOL} info $@
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001691 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001692 @echo "Built $@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001693 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001694
Juan Castilloa3487d12015-08-18 14:23:04 +01001695fiptool: ${FIPTOOL}
1696fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001697fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001698
Pali Rohár54ff2132020-11-24 15:38:08 +01001699${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001700ifdef UNIX_MK
Lionel Debieve730bde82022-11-14 11:05:09 +01001701 ${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${FIPTOOLPATH} all
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001702else
1703# Clear the MAKEFLAGS as we do not want
1704# to pass the gnumake flags to nmake.
1705 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001706endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001707
Pali Rohár54ff2132020-11-24 15:38:08 +01001708romlib.bin: libraries FORCE
Chris Kay99b5b2e2024-03-08 16:08:31 +00001709 ${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 +01001710
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001711memmap: all
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001712ifdef UNIX_MK
1713 ${Q}PYTHONPATH=${CURDIR}/tools/memory \
1714 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1715else
1716 ${Q}set PYTHONPATH=${CURDIR}/tools/memory && \
1717 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1718endif
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001719
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001720doc:
1721 @echo " BUILD DOCUMENTATION"
1722 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1723
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301724enctool: ${ENCTOOL}
1725
Pali Rohár54ff2132020-11-24 15:38:08 +01001726${ENCTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001727 ${Q}${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${ENCTOOLPATH} all
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301728 @${ECHO_BLANK_LINE}
1729 @echo "Built $@ successfully"
1730 @${ECHO_BLANK_LINE}
1731
Joakim Bech35fab8c2014-01-23 14:51:49 +01001732cscope:
1733 @echo " CSCOPE"
1734 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1735 ${Q}cscope -b -q -k
1736
Ryan Harkin72ee3312014-01-15 16:55:07 +00001737help:
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001738 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001739 @echo ""
1740 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +00001741 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001742 @echo ""
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001743 @echo "platform = ${PLATFORM_LIST}"
1744 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001745 @echo "Please refer to the User Guide for a list of all supported options."
1746 @echo "Note that the build system doesn't track dependencies for build "
1747 @echo "options. Therefore, if any of the build options are changed "
1748 @echo "from a previous build, a clean build must be performed."
1749 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +00001750 @echo "Supported Targets:"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001751 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +00001752 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +00001753 @echo " bl2 Build the BL2 binary"
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001754 @echo " bl2u Build the BL2U binary"
Juan Castillo7d199412015-12-14 09:35:25 +00001755 @echo " bl31 Build the BL31 binary"
Soby Mathewa1941252016-05-05 14:33:33 +01001756 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1757 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castilloa3487d12015-08-18 14:23:04 +01001758 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001759 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochard1a93432015-10-12 12:33:47 +01001760 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +00001761 @echo " checkcodebase Check the coding style of the entire source tree"
1762 @echo " checkpatch Check the coding style on changes in the current"
1763 @echo " branch against BASE_COMMIT (default origin/master)"
1764 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +00001765 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +00001766 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001767 @echo " certtool Build the Certificate generation tool"
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301768 @echo " enctool Build the Firmware encryption tool"
Andreas Färberec82cfb2016-10-10 05:18:49 +02001769 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Manish Pandey3f90ad72020-01-14 11:52:05 +00001770 @echo " sp Build the Secure Partition Packages"
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001771 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathewab4181d2017-12-14 17:44:56 +00001772 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001773 @echo " memmap Print the memory map of the built binaries"
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001774 @echo " doc Build html based documentation using Sphinx tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001775 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001776 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +00001777 @echo ""
1778 @echo "example: build all targets for the FVP platform:"
1779 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001780
1781.PHONY: FORCE
1782FORCE:;