blob: 2892f215abb76fcbff87f180dd131f02a84ada2e [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
38include ${MAKE_HELPERS_DIRECTORY}toolchain.mk
39
Antonio Nino Diaz808c2292017-04-18 15:16:05 +010040# Assertions enabled for DEBUG builds by default
Antonio Nino Diaz808c2292017-04-18 15:16:05 +010041ENABLE_ASSERTIONS := ${DEBUG}
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010042ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION}
43PLAT := ${DEFAULT_PLAT}
Achin Gupta4f6ad662013-10-25 09:08:21 +010044
Juan Castilloa3487d12015-08-18 14:23:04 +010045################################################################################
46# Checkpatch script options
47################################################################################
48
Sandrine Bailleux0b5a1582016-06-02 11:19:59 +010049CHECKCODE_ARGS := --no-patch
Dan Handleyd7b59e42016-06-02 17:15:13 +010050# Do not check the coding style on imported library files or documentation files
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030051INC_DRV_DIRS_TO_CHECK := $(sort $(filter-out \
52 include/drivers/arm, \
53 $(wildcard include/drivers/*)))
Dan Handleyd7b59e42016-06-02 17:15:13 +010054INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \
Dan Handley3a355712016-06-02 18:21:02 +010055 include/lib/libfdt \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010056 include/lib/libc, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010057 $(wildcard include/lib/*)))
58INC_DIRS_TO_CHECK := $(sort $(filter-out \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030059 include/lib \
60 include/drivers, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010061 $(wildcard include/*)))
62LIB_DIRS_TO_CHECK := $(sort $(filter-out \
dp-arme3cc8382017-05-04 12:15:35 +010063 lib/compiler-rt \
Antonio Nino Diazd84f88e2017-01-16 17:20:45 +000064 lib/libfdt% \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010065 lib/libc, \
Daniel Boulby958f1dd2022-10-05 11:05:22 +010066 lib/zlib \
Dan Handleyd7b59e42016-06-02 17:15:13 +010067 $(wildcard lib/*)))
68ROOT_DIRS_TO_CHECK := $(sort $(filter-out \
69 lib \
70 include \
71 docs \
Paul Beesleyadfab5b2019-03-07 16:42:31 +000072 %.rst, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010073 $(wildcard *)))
74CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \
75 ${INC_DIRS_TO_CHECK} \
76 ${INC_LIB_DIRS_TO_CHECK} \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030077 ${LIB_DIRS_TO_CHECK} \
78 ${INC_DRV_DIRS_TO_CHECK} \
79 ${INC_ARM_DIRS_TO_CHECK}
Ian Spray36eaaf32014-01-30 17:25:28 +000080
Juan Castilloa3487d12015-08-18 14:23:04 +010081################################################################################
82# Process build options
83################################################################################
84
85# Verbose flag
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +010086ifeq (${V},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010087 Q:=@
88 ECHO:=@echo
89 CHECKCODE_ARGS += --no-summary --terse
Achin Gupta4f6ad662013-10-25 09:08:21 +010090else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010091 Q:=
92 ECHO:=$(ECHO_QUIET)
Andre Przywaracf2bb082018-09-27 10:56:05 +010093endif
94
95ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010096 Q:=@
97 ECHO:=$(ECHO_QUIET)
Achin Gupta4f6ad662013-10-25 09:08:21 +010098endif
Andre Przywaracf2bb082018-09-27 10:56:05 +010099
100export Q ECHO
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +0000101
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100102################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100103# Auxiliary tools (fiptool, cert_create, etc)
104################################################################################
105
106# Variables for use with Certificate Generation Tool
107CRTTOOLPATH ?= tools/cert_create
108CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT}
109
110# Variables for use with Firmware Encryption Tool
111ENCTOOLPATH ?= tools/encrypt_fw
112ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
113
114# Variables for use with Firmware Image Package
115FIPTOOLPATH ?= tools/fiptool
116FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT}
117
118# Variables for use with sptool
119SPTOOLPATH ?= tools/sptool
120SPTOOL ?= ${SPTOOLPATH}/sptool.py
121SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py
Karl Meakinaba46182023-02-14 11:56:02 +0000122SP_DTS_LIST_FRAGMENT ?= ${BUILD_PLAT}/sp_list_fragment.dts
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100123
124# Variables for use with ROMLIB
125ROMLIBPATH ?= lib/romlib
126
127# Variable for use with Python
128PYTHON ?= python3
129
130# Variables for use with documentation build using Sphinx tool
131DOCS_PATH ?= docs
132
133################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100134# Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags
Juan Castilloa3487d12015-08-18 14:23:04 +0100135################################################################################
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100136ifeq (${ARM_ARCH_MAJOR},7)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100137 target32-directive = -target arm-none-eabi
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500138# Will set march-directive from platform configuration
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100139else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100140 target32-directive = -target armv8a-none-eabi
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100141endif #(ARM_ARCH_MAJOR)
142
143################################################################################
144# Get Architecture Feature Modifiers
145################################################################################
146arch-features = ${ARM_ARCH_FEATURE}
147
Chris Kaycfba6452023-12-04 09:55:50 +0000148ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
149 ifeq ($($(ARCH)-cc-id),arm-clang)
Govindraj Raja69096412023-06-01 16:29:16 -0500150 TF_CFLAGS_aarch32 := -target arm-arm-none-eabi
151 TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi
originfba80d82022-01-19 16:30:14 +0000152 else
Govindraj Raja69096412023-06-01 16:29:16 -0500153 TF_CFLAGS_aarch32 = $(target32-directive)
154 TF_CFLAGS_aarch64 := -target aarch64-elf
originfba80d82022-01-19 16:30:14 +0000155 endif
156
Chris Kaycfba6452023-12-04 09:55:50 +0000157else ifeq ($($(ARCH)-cc-id),gnu-gcc)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100158 ifeq ($(ENABLE_LTO),1)
159 # Enable LTO only for aarch64
160 ifeq (${ARCH},aarch64)
161 LTO_CFLAGS = -flto
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100162 endif
zelalem-aweked5f45272019-11-12 16:20:17 -0600163 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100164endif #(clang)
dp-arm320e8442017-05-02 12:00:08 +0100165
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100166# Process Debug flag
167$(eval $(call add_define,DEBUG))
168ifneq (${DEBUG}, 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100169 BUILD_TYPE := debug
170 TF_CFLAGS += -g -gdwarf-4
171 ASFLAGS += -g -Wa,-gdwarf-4
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100172
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100173 # Use LOG_LEVEL_INFO by default for debug builds
174 LOG_LEVEL := 40
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100175else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100176 BUILD_TYPE := release
177 # Use LOG_LEVEL_NOTICE by default for release builds
178 LOG_LEVEL := 20
179endif #(Debug)
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100180
Peiyuan Song44f8f472020-04-25 16:53:43 +0800181# Default build string (git branch and commit)
182ifeq (${BUILD_STRING},)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100183 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
Peiyuan Song44f8f472020-04-25 16:53:43 +0800184endif
laurenw-arme954f652022-07-12 10:12:05 -0500185VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
Peiyuan Song44f8f472020-04-25 16:53:43 +0800186
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100187ifeq (${AARCH32_INSTRUCTION_SET},A32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100188 TF_CFLAGS_aarch32 += -marm
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100189else ifeq (${AARCH32_INSTRUCTION_SET},T32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100190 TF_CFLAGS_aarch32 += -mthumb
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100191else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100192 $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
193endif #(AARCH32_INSTRUCTION_SET)
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100194
Sandrine Bailleux1aa72ec2018-07-03 09:14:45 +0200195TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-arm320e8442017-05-02 12:00:08 +0100196TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathewa1941252016-05-05 14:33:33 +0100197
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100198##############################################################################
199# WARNINGS Configuration
200###############################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100201# General warnings
202WARNINGS := -Wall -Wmissing-include-dirs -Wunused \
Yann Gautier94a40b62021-05-20 13:18:14 +0200203 -Wdisabled-optimization -Wvla -Wshadow \
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000204 -Wredundant-decls
205# stricter warnings
206WARNINGS += -Wextra -Wno-trigraphs
207# too verbose for generic build
208WARNINGS += -Wno-missing-field-initializers \
209 -Wno-type-limits -Wno-sign-compare \
210# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
211WARNINGS += -Wno-unused-parameter
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100212
213# Additional warnings
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000214# Level 1 - infrequent warnings we should have none of
215# full -Wextra
216WARNING1 += -Wsign-compare
217WARNING1 += -Wtype-limits
218WARNING1 += -Wmissing-field-initializers
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100219
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000220# Level 2 - problematic warnings that we want
221# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
222# TODO: disable just for them and move into default build
223WARNING2 += -Wold-style-definition
224WARNING2 += -Wmissing-prototypes
225WARNING2 += -Wmissing-format-attribute
226# TF-A aims to comply with this eventually. Effort too large at present
227WARNING2 += -Wundef
Boyan Karatotev9c6ba592022-11-21 14:49:05 +0000228# currently very involved and many platforms set this off
229WARNING2 += -Wunused-const-variable=2
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100230
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000231# Level 3 - very pedantic, frequently ignored
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100232WARNING3 := -Wbad-function-cast
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000233WARNING3 += -Waggregate-return
234WARNING3 += -Wnested-externs
235WARNING3 += -Wcast-align
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100236WARNING3 += -Wcast-qual
237WARNING3 += -Wconversion
238WARNING3 += -Wpacked
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100239WARNING3 += -Wpointer-arith
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100240WARNING3 += -Wswitch-default
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100241
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000242# Setting W is quite verbose and most warnings will be pre-existing issues
243# outside of the contributor's control. Don't fail the build on them so warnings
244# can be seen and hopefully addressed
245ifdef W
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100246 ifneq (${W},0)
247 E ?= 0
248 endif
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000249endif
250
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100251ifeq (${W},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100252 WARNINGS += $(WARNING1)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100253else ifeq (${W},2)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100254 WARNINGS += $(WARNING1) $(WARNING2)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100255else ifeq (${W},3)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100256 WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
257endif #(W)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100258
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100259# Compiler specific warnings
Chris Kaycfba6452023-12-04 09:55:50 +0000260ifeq ($(filter %-clang,$($(ARCH)-cc-id)),)
Justin Chadwell7a914232019-07-03 14:15:56 +0100261# not using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100262WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \
263 -Wpacked-bitfield-compat -Wshift-overflow=2 \
264 -Wlogical-op
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500265
266# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
267TF_CFLAGS += $(call cc_option, --param=min-pagesize=0)
268
Bipin Ravie53e6ae2023-09-28 13:17:24 -0500269ifeq ($(HARDEN_SLS), 1)
270 TF_CFLAGS_aarch64 += $(call cc_option, -mharden-sls=all)
271endif
272
Justin Chadwell7a914232019-07-03 14:15:56 +0100273else
274# using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100275WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
276 -Wlogical-op-parentheses
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100277endif #(Clang Warning)
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100278
Yann Gautier957c3532018-12-10 18:08:53 +0100279ifneq (${E},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100280 ERRORS := -Werror
281endif #(E)
Yann Gautier957c3532018-12-10 18:08:53 +0100282
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100283################################################################################
284# Compiler and Linker Directives
285################################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100286CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
287 $(ERRORS) $(WARNINGS)
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500288ASFLAGS += $(CPPFLAGS) \
Julius Werner53456fc2019-07-09 13:49:11 -0700289 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900290TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Holland23f5e542019-10-20 16:11:25 -0500291 -ffunction-sections -fdata-sections \
292 -ffreestanding -fno-builtin -fno-common \
293 -Os -std=gnu99
Juan Castilloa3487d12015-08-18 14:23:04 +0100294
Justin Chadwell83e04882019-08-20 11:01:52 +0100295ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100296 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
297endif #(${SANITIZE_UB},on)
298
Justin Chadwell83e04882019-08-20 11:01:52 +0100299ifeq (${SANITIZE_UB},trap)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100300 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
Justin Chadwell83e04882019-08-20 11:01:52 +0100301 -fsanitize-undefined-trap-on-error
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100302endif #(${SANITIZE_UB},trap)
Justin Chadwell83e04882019-08-20 11:01:52 +0100303
Chris Kay523e8642023-12-04 12:03:51 +0000304GCC_V_OUTPUT := $(shell $($(ARCH)-cc) -v 2>&1)
david cunado34ab6092017-11-30 21:58:01 +0000305
Marco Felsch24ad8402022-11-09 12:59:09 +0100306TF_LDFLAGS += -z noexecstack
307
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100308# LD = armlink
Chris Kaycfba6452023-12-04 09:55:50 +0000309ifeq ($($(ARCH)-ld-id),arm-link)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100310 TF_LDFLAGS += --diag_error=warning --lto_level=O1
311 TF_LDFLAGS += --remove --info=unused,unusedsymbols
312 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100313
314# LD = gcc (used when GCC LTO is enabled)
Chris Kaycfba6452023-12-04 09:55:50 +0000315else ifeq ($($(ARCH)-ld-id),gnu-gcc)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100316 # Pass ld options with Wl or Xlinker switches
Chris Kayb0fe96f2024-01-16 11:53:35 +0000317 TF_LDFLAGS += $(call ld_option,-Xlinker --no-warn-rwx-segments)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100318 TF_LDFLAGS += -Wl,--fatal-warnings -O1
319 TF_LDFLAGS += -Wl,--gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000320
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100321 TF_LDFLAGS += -Wl,-z,common-page-size=4096 #Configure page size constants
322 TF_LDFLAGS += -Wl,-z,max-page-size=4096
Andrey Skvortsove2ebb722023-09-05 23:06:29 +0300323 TF_LDFLAGS += -Wl,--build-id=none
Chris Kay73b1f402022-12-22 13:26:37 +0000324
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100325 ifeq ($(ENABLE_LTO),1)
326 ifeq (${ARCH},aarch64)
327 TF_LDFLAGS += -flto -fuse-linker-plugin
328 endif
329 endif #(ENABLE_LTO)
330
zelalem-aweked5f45272019-11-12 16:20:17 -0600331# GCC automatically adds fix-cortex-a53-843419 flag when used to link
332# which breaks some builds, so disable if errata fix is not explicitly enabled
Yann Gautier3d73d162023-03-15 16:18:16 +0100333 ifeq (${ARCH},aarch64)
334 ifneq (${ERRATA_A53_843419},1)
335 TF_LDFLAGS += -mno-fix-cortex-a53-843419
336 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100337 endif
338 TF_LDFLAGS += -nostdlib
339 TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100340
341# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekar4d034c52019-01-11 14:47:48 -0800342else
Marco Felsch24ad8402022-11-09 12:59:09 +0100343# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
344# are not loaded by a elf loader.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100345 TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
346 TF_LDFLAGS += -O1
347 TF_LDFLAGS += --gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000348
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100349 TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
350 TF_LDFLAGS += -z max-page-size=4096
Andrey Skvortsove2ebb722023-09-05 23:06:29 +0300351 TF_LDFLAGS += --build-id=none
Chris Kay73b1f402022-12-22 13:26:37 +0000352
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100353# ld.lld doesn't recognize the errata flags,
Yabin Cuied7dc512023-01-19 20:06:04 +0000354# therefore don't add those in that case.
355# ld.lld reports section type mismatch warnings,
356# therefore don't add --fatal-warnings to it.
Chris Kaycfba6452023-12-04 09:55:50 +0000357 ifneq ($($(ARCH)-ld-id),llvm-lld)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100358 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
359 endif
360
361endif #(LD = armlink)
Juan Castilloa3487d12015-08-18 14:23:04 +0100362
363################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500364# Setup ARCH_MAJOR/MINOR before parsing arch_features.
365################################################################################
366ifeq (${ENABLE_RME},1)
367 ARM_ARCH_MAJOR := 8
368 ARM_ARCH_MINOR := 6
369endif
370
371################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100372# Common sources and include directories
373################################################################################
dp-arme3cc8382017-05-04 12:15:35 +0100374include lib/compiler-rt/compiler-rt.mk
Juan Castilloa3487d12015-08-18 14:23:04 +0100375
376BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100377 common/tf_log.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100378 common/${ARCH}/debug.S \
Julius Werner03020da2018-11-27 22:10:56 -0800379 drivers/console/multi_console.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100380 lib/${ARCH}/cache_helpers.S \
381 lib/${ARCH}/misc_helpers.S \
Boyan Karatotev05504ba2023-02-15 13:21:50 +0000382 lib/extensions/pmuv3/${ARCH}/pmuv3.c \
Soby Mathew2f38ce32018-02-08 17:45:12 +0000383 plat/common/plat_bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100384 plat/common/plat_log_common.c \
dp-arm230011c2017-03-07 11:02:47 +0000385 plat/common/${ARCH}/plat_common.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100386 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas0f8f9852018-05-08 10:27:10 +0100387 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000388
Chris Kaycfba6452023-12-04 09:55:50 +0000389ifeq ($($(ARCH)-cc-id),arm-clang)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100390 BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100391endif
392
Justin Chadwell83e04882019-08-20 11:01:52 +0100393ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100394 BL_COMMON_SOURCES += plat/common/ubsan.c
Justin Chadwell83e04882019-08-20 11:01:52 +0100395endif
396
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200397INCLUDES += -Iinclude \
Antonio Nino Diaz8d1ade62018-12-17 17:20:57 +0000398 -Iinclude/arch/${ARCH} \
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000399 -Iinclude/lib/cpus/${ARCH} \
400 -Iinclude/lib/el3_runtime/${ARCH} \
401 ${PLAT_INCLUDES} \
402 ${SPD_INCLUDES}
403
Nishant Sharma331b5682022-08-15 16:37:07 +0100404DTC_FLAGS += -I dts -O dtb
405DTC_CPPFLAGS += -P -nostdinc $(INCLUDES) -Ifdts -undef \
406 -x assembler-with-cpp $(DEFINES)
407
Antonio Nino Diazc3a2cf22018-11-19 11:48:30 +0000408include common/backtrace/backtrace.mk
409
Juan Castilloa3487d12015-08-18 14:23:04 +0100410################################################################################
Govindraj Raja1a211292023-09-20 14:32:24 -0500411# Generic definitions
412################################################################################
413include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
414
415ifeq (${BUILD_BASE},)
416 BUILD_BASE := ./build
417endif
418BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
419
420SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
421
422# Platforms providing their own TBB makefile may override this value
423INCLUDE_TBBR_MK := 1
424
425################################################################################
426# Include SPD Makefile if one has been specified
427################################################################################
428
429ifneq (${SPD},none)
430 ifeq (${ARCH},aarch32)
431 $(error "Error: SPD is incompatible with AArch32.")
432 endif
433
434 ifdef EL3_PAYLOAD_BASE
435 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
436 $(warning "The SPD and its BL32 companion will be present but \
437 ignored.")
438 endif
439
440 ifeq (${SPD},spmd)
441 # SPMD is located in std_svc directory
442 SPD_DIR := std_svc
443
444 ifeq ($(SPMD_SPM_AT_SEL2),1)
445 CTX_INCLUDE_EL2_REGS := 1
446 ifeq ($(SPMC_AT_EL3),1)
447 $(error SPM cannot be enabled in both S-EL2 and EL3.)
448 endif
449 endif
450
451 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
452 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
453 endif
454
455 ifeq ($(TS_SP_FW_CONFIG),1)
456 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
457 endif
458
459 ifneq ($(ARM_BL2_SP_LIST_DTS),)
460 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
461 endif
462
463 ifneq ($(SP_LAYOUT_FILE),)
464 BL2_ENABLE_SP_LOAD := 1
465 endif
Govindraj Rajabad835a2023-10-31 14:48:11 -0500466
467 ifeq ($(SPMC_AT_EL3_SEL0_SP),1)
468 ifneq ($(SPMC_AT_EL3),1)
469 $(error SEL0 SP cannot be enabled without SPMC at EL3)
470 endif
471 endif
Govindraj Raja1a211292023-09-20 14:32:24 -0500472 else
473 # All other SPDs in spd directory
474 SPD_DIR := spd
475 endif #(SPD)
476
477 # We expect to locate an spd.mk under the specified SPD directory
478 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
479
480 ifeq (${SPD_MAKE},)
481 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
482 endif
483 $(info Including ${SPD_MAKE})
484 include ${SPD_MAKE}
485
486 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
487 # Makefile would set NEED_BL32 to "yes". In this case, the build system
488 # supports two mutually exclusive options:
489 # * BL32 is built from source: then BL32_SOURCES must contain the list
490 # of source files to build BL32
491 # * BL32 is a prebuilt binary: then BL32 must point to the image file
492 # that will be included in the FIP
493 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
494 # over the sources.
495endif #(SPD=none)
496
497ifeq (${ENABLE_SPMD_LP}, 1)
498ifneq (${SPD},spmd)
499 $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
500endif
501ifeq ($(SPMC_AT_EL3),1)
502 $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
503endif
504endif
505
506################################################################################
Govindraj Raja0386e312023-08-17 10:41:48 -0500507# Process BRANCH_PROTECTION value and set
508# Pointer Authentication and Branch Target Identification flags
509################################################################################
510ifeq (${BRANCH_PROTECTION},0)
511 # Default value turns off all types of branch protection
512 BP_OPTION := none
513else ifneq (${ARCH},aarch64)
514 $(error BRANCH_PROTECTION requires AArch64)
515else ifeq (${BRANCH_PROTECTION},1)
516 # Enables all types of branch protection features
517 BP_OPTION := standard
518 ENABLE_BTI := 1
519 ENABLE_PAUTH := 1
520else ifeq (${BRANCH_PROTECTION},2)
521 # Return address signing to its standard level
522 BP_OPTION := pac-ret
523 ENABLE_PAUTH := 1
524else ifeq (${BRANCH_PROTECTION},3)
525 # Extend the signing to include leaf functions
526 BP_OPTION := pac-ret+leaf
527 ENABLE_PAUTH := 1
528else ifeq (${BRANCH_PROTECTION},4)
529 # Turn on branch target identification mechanism
530 BP_OPTION := bti
531 ENABLE_BTI := 1
532else
533 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
534endif #(BRANCH_PROTECTION)
535
536ifeq ($(ENABLE_PAUTH),1)
537 CTX_INCLUDE_PAUTH_REGS := 1
538endif
539ifneq (${BP_OPTION},none)
540 TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
541endif #(BP_OPTION)
542
543# Pointer Authentication sources
544ifeq (${ENABLE_PAUTH}, 1)
545# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
546# Pauth support. As it's not secure, it must be reimplemented for real platforms
547 BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
548endif
549
Govindraj Raja1a211292023-09-20 14:32:24 -0500550################################################################################
551# Include the platform specific Makefile after the SPD Makefile (the platform
552# makefile may use all previous definitions in this file)
553################################################################################
554include ${PLAT_MAKEFILE_FULL}
555
556################################################################################
557# Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from
558# platform.
559################################################################################
560include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
561
Govindraj Raja0386e312023-08-17 10:41:48 -0500562####################################################
563# Enable required options for Memory Stack Tagging.
564####################################################
565
566# Currently, these options are enabled only for clang and armclang compiler.
567ifeq (${SUPPORT_STACK_MEMTAG},yes)
568 ifdef mem_tag_arch_support
569 # Check for armclang and clang compilers
Chris Kaycfba6452023-12-04 09:55:50 +0000570 ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
Govindraj Raja0386e312023-08-17 10:41:48 -0500571 # Add "memtag" architecture feature modifier if not specified
572 ifeq ( ,$(findstring memtag,$(arch-features)))
573 arch-features := $(arch-features)+memtag
574 endif # memtag
Chris Kaycfba6452023-12-04 09:55:50 +0000575 ifeq ($($(ARCH)-cc-id),arm-clang)
Govindraj Raja0386e312023-08-17 10:41:48 -0500576 TF_CFLAGS += -mmemtag-stack
Chris Kaycfba6452023-12-04 09:55:50 +0000577 else ifeq ($($(ARCH)-cc-id),llvm-clang)
Govindraj Raja0386e312023-08-17 10:41:48 -0500578 TF_CFLAGS += -fsanitize=memtag
579 endif # armclang
580 endif
581 else
582 $(error "Error: stack memory tagging is not supported for \
583 architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
584 endif #(mem_tag_arch_support)
585endif #(SUPPORT_STACK_MEMTAG)
586
587################################################################################
588# RME dependent flags configuration, Enable optional features for RME.
589################################################################################
590# FEAT_RME
591ifeq (${ENABLE_RME},1)
Govindraj Raja60f52662023-10-12 16:57:46 -0500592 # RME doesn't support BRBE
593 ENABLE_BRBE_FOR_NS := 0
594
Govindraj Raja0386e312023-08-17 10:41:48 -0500595 # RME doesn't support PIE
596 ifneq (${ENABLE_PIE},0)
597 $(error ENABLE_RME does not support PIE)
598 endif
599
600 # RME doesn't support BRBE
601 ifneq (${ENABLE_BRBE_FOR_NS},0)
602 $(error ENABLE_RME does not support BRBE.)
603 endif
604
605 # RME requires AARCH64
606 ifneq (${ARCH},aarch64)
607 $(error ENABLE_RME requires AArch64)
608 endif
609
610 # RME requires el2 context to be saved for now.
611 CTX_INCLUDE_EL2_REGS := 1
612 CTX_INCLUDE_AARCH32_REGS := 0
613 CTX_INCLUDE_PAUTH_REGS := 1
614
615 # RME enables CSV2_2 extension by default.
616 ENABLE_FEAT_CSV2_2 = 1
617endif #(FEAT_RME)
618
619################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500620# Include rmmd Makefile if RME is enabled
621################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500622ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100623 ifneq (${ARCH},aarch64)
624 $(error ENABLE_RME requires AArch64)
625 endif
626 ifeq ($(SPMC_AT_EL3),1)
627 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
628 endif
629
630 ifneq (${SPD}, none)
631 ifneq (${SPD}, spmd)
632 $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
633 endif
634 endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500635include services/std_svc/rmmd/rmmd.mk
636$(warning "RME is an experimental feature")
637endif
638
Govindraj Raja1a211292023-09-20 14:32:24 -0500639ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
640 ifeq (${SPD},none)
641 ifeq (${ENABLE_RME},0)
642 $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
643 or RME is enabled)
644 endif
645 endif
646endif
Jon Medhurst66573cb2014-02-13 15:19:28 +0000647
Govindraj Raja69096412023-06-01 16:29:16 -0500648################################################################################
649# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
650# up with appropriate march values for compiler.
651################################################################################
652include ${MAKE_HELPERS_DIRECTORY}march.mk
653
654TF_CFLAGS += $(march-directive)
Govindraj Raja0c572472024-01-23 16:00:19 -0600655ASFLAGS += $(march-directive)
Govindraj Raja69096412023-06-01 16:29:16 -0500656
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600657# This internal flag is common option which is set to 1 for scenarios
658# when the BL2 is running in EL3 level. This occurs in two scenarios -
659# 4 world system running BL2 at EL3 and two world system without BL1 running
660# BL2 in EL3
661
662ifeq (${RESET_TO_BL2},1)
663 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100664 ifeq (${ENABLE_RME},1)
665 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
666 supported at the moment.)
667 endif
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600668else ifeq (${ENABLE_RME},1)
669 BL2_RUNS_AT_EL3 := 1
670else
671 BL2_RUNS_AT_EL3 := 0
672endif
673
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100674# This internal flag is set to 1 when Firmware First handling of External aborts
675# is required by lowe ELs. Currently only NS requires this support.
676ifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
677 FFH_SUPPORT := 1
678else
679 FFH_SUPPORT := 0
680endif
681
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900682$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
683
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100684ifeq (${ARM_ARCH_MAJOR},7)
685include make_helpers/armv7-a-cpus.mk
686endif
687
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900688PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
689ifneq ($(PIE_FOUND),)
690 TF_CFLAGS += -fno-PIE
Chris Kaycfba6452023-12-04 09:55:50 +0000691ifeq ($($(ARCH)-ld-id),gnu-gcc)
Samuel Holland9286c022022-04-08 21:56:02 -0500692 TF_LDFLAGS += -no-pie
693endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100694endif #(PIE_FOUND)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900695
Chris Kaycfba6452023-12-04 09:55:50 +0000696ifeq ($($(ARCH)-ld-id),gnu-gcc)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900697 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100698else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900699 PIE_LDFLAGS += -pie --no-dynamic-linker
700endif
701
702ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100703 ifeq ($(RESET_TO_BL2),1)
704 ifneq ($(BL2_IN_XIP_MEM),1)
705 BL2_CPPFLAGS += -fpie
706 BL2_CFLAGS += -fpie
707 BL2_LDFLAGS += $(PIE_LDFLAGS)
708 endif #(BL2_IN_XIP_MEM)
709 endif #(RESET_TO_BL2)
Chris Kay13886c82023-02-02 14:39:03 +0000710 BL31_CPPFLAGS += -fpie
711 BL31_CFLAGS += -fpie
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900712 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay13886c82023-02-02 14:39:03 +0000713
714 BL32_CPPFLAGS += -fpie
Masahiro Yamadade634f82020-01-17 13:45:14 +0900715 BL32_CFLAGS += -fpie
716 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100717endif #(ENABLE_PIE)
Soby Mathew078f1a42018-08-28 11:13:55 +0100718
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000719BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
720BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
721BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
722
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900723BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600724ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100725 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900726else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100727 BL2_CPPFLAGS += -DIMAGE_AT_EL1
728endif #(RESET_TO_BL2)
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000729
730ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100731 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
732 BL31_CPPFLAGS += -DIMAGE_AT_EL3
733 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000734else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100735 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900736endif
737
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000738# Include the CPU specific operations makefile, which provides default
739# values for all CPU errata workarounds and CPU specific optimisations.
740# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100741include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100742
dp-armcdd03cb2017-02-15 11:07:55 +0000743################################################################################
744# Build `AARCH32_SP` as BL32 image for AArch32
745################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100746ifeq (${ARCH},aarch32)
747 NEED_BL32 := yes
dp-armcdd03cb2017-02-15 11:07:55 +0000748
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100749 ifneq (${AARCH32_SP},none)
750 # We expect to locate an sp.mk under the specified AARCH32_SP directory
751 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-armcdd03cb2017-02-15 11:07:55 +0000752
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100753 ifeq (${AARCH32_SP_MAKE},)
754 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
755 endif
Juan Pablo Conde6aba3b12023-08-09 13:19:21 -0500756 $(info Including ${AARCH32_SP_MAKE})
757 include ${AARCH32_SP_MAKE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100758 endif
759endif #(ARCH=aarch32)
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800760
761################################################################################
762# Include libc if not overridden
763################################################################################
764ifeq (${OVERRIDE_LIBC},0)
765include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000766endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100767
768################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100769# Check incompatible options and dependencies
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000770################################################################################
771
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100772# USE_DEBUGFS experimental feature recommended only in debug builds
773ifeq (${USE_DEBUGFS},1)
774 ifeq (${DEBUG},1)
775 $(warning DEBUGFS experimental feature is enabled.)
776 else
777 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800778 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100779endif #(USE_DEBUGFS)
780
781# USE_SPINLOCK_CAS requires AArch64 build
782ifeq (${USE_SPINLOCK_CAS},1)
783 ifneq (${ARCH},aarch64)
784 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800785 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100786endif #(USE_SPINLOCK_CAS)
787
788# The cert_create tool cannot generate certificates individually, so we use the
789# target 'certificates' to create them all
790ifneq (${GENERATE_COT},0)
791 FIP_DEPS += certificates
792 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000793endif
794
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100795ifneq (${DECRYPTION_SUPPORT},none)
796 ENC_ARGS += -f ${FW_ENC_STATUS}
797 ENC_ARGS += -k ${ENC_KEY}
798 ENC_ARGS += -n ${ENC_NONCE}
799 FIP_DEPS += enctool
800 FWU_FIP_DEPS += enctool
801endif #(DECRYPTION_SUPPORT)
802
803ifdef EL3_PAYLOAD_BASE
804 ifdef PRELOADED_BL33_BASE
805 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
806 incompatible build options. EL3_PAYLOAD_BASE has priority.")
807 endif
808 ifneq (${GENERATE_COT},0)
809 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
810 build options.")
811 endif
812 ifneq (${TRUSTED_BOARD_BOOT},0)
813 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
814 incompatible \ build options.")
815 endif
816endif #(EL3_PAYLOAD_BASE)
817
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000818ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100819 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000820 $(warning "BL33 image is not needed when option \
821 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100822 endif
823 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100824 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100825 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
826 endif
827endif #(NEED_BL33)
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000828
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000829# When building for systems with hardware-assisted coherency, there's no need to
830# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
831ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100832 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000833endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100834
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600835#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
836ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100837 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000838endif
839
Manish Pandeyd419e222023-02-13 12:39:17 +0000840# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100841ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100842 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +0100843 and HANDLE_EA_EL3_FIRST_NS instead")
Manish Pandeyd419e222023-02-13 12:39:17 +0000844endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100845
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100846
Manish Pandeyd419e222023-02-13 12:39:17 +0000847# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000848ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100849 ifeq ($(ENABLE_FEAT_RAS),0)
850 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
851 endif
852endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000853
Roberto Vargas025946a2018-09-24 17:20:48 +0100854# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100855ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100856 ifeq (${TRUSTED_BOARD_BOOT}, 0)
857 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
858 to be set.")
859 endif
860endif #(DYN_DISABLE_AUTH)
Soby Mathew9fe88042018-03-26 12:43:37 +0100861
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100862ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
863# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100864 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100865else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
866# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100867 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100868else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
869# Support hash calculation only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100870 CRYPTO_SUPPORT := 2
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100871else ifeq (${TRUSTED_BOARD_BOOT},1)
872# Support authentication verification only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100873 CRYPTO_SUPPORT := 1
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000874else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100875 CRYPTO_SUPPORT := 0
876endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000877
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +0100878# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
879ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100880 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +0100881endif
882
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000883# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100884# registers associated to it are also saved and restored.
885# 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 +0000886ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100887 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
888 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
889 endif
890endif #(ENABLE_PAUTH)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100891
892ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100893 ifneq (${ARCH},aarch64)
894 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
895 endif
896endif #(CTX_INCLUDE_PAUTH_REGS)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000897
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100898ifeq ($(PSA_FWU_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100899 $(info PSA_FWU_SUPPORT is an experimental feature)
900endif #(PSA_FWU_SUPPORT)
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100901
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000902ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100903 $(info FEATURE_DETECTION is an experimental feature)
904endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000905
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000906ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100907 ifeq (${ENABLE_SME_FOR_NS}, 0)
908 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
909 to be set")
910 $(warning "Forced ENABLE_SME_FOR_NS=1")
911 override ENABLE_SME_FOR_NS := 1
912 endif
913endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000914
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000915ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100916 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
917 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
918 library v2")
919 endif
920endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000921
Sumit Garg392e4df2019-11-15 10:43:00 +0530922ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100923 ifeq (${TRUSTED_BOARD_BOOT}, 0)
924 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
925 to be set)
926 endif
927endif #(DECRYPTION_SUPPORT)
Sumit Garg392e4df2019-11-15 10:43:00 +0530928
johpow0181865962022-01-28 17:06:20 -0600929# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -0500930ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -0600931
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100932 # SME/SVE only supported on AArch64
933 ifneq (${ENABLE_SME_FOR_NS},0)
934 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
935 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000936
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100937 ifeq (${ENABLE_SVE_FOR_NS},1)
938 # Warning instead of error due to CI dependency on this
939 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
940 endif
johpow0181865962022-01-28 17:06:20 -0600941
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100942 # BRBE is not supported in AArch32
943 ifeq (${ENABLE_BRBE_FOR_NS},1)
944 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
945 endif
johpow0181865962022-01-28 17:06:20 -0600946
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100947 # FEAT_RNG_TRAP is not supported in AArch32
948 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
949 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
950 endif
951endif #(ARCH=aarch32)
johpow019baade32021-07-08 14:14:00 -0500952
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000953ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100954 ifeq (${ENABLE_SVE_FOR_NS},0)
955 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
956 endif
957endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000958
johpow019baade32021-07-08 14:14:00 -0500959# Secure SME/SVE requires the non-secure component as well
960ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100961 ifeq (${ENABLE_SME_FOR_NS},0)
962 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
963 endif
964 ifeq (${ENABLE_SVE_FOR_SWD},0)
965 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
966 endif
967endif #(ENABLE_SME_FOR_SWD)
968
johpow019baade32021-07-08 14:14:00 -0500969ifeq (${ENABLE_SVE_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100970 ifeq (${ENABLE_SVE_FOR_NS},0)
971 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
972 endif
973endif #(ENABLE_SVE_FOR_SWD)
johpow019baade32021-07-08 14:14:00 -0500974
975# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
976# its own context management including FPU registers.
977ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100978 ifneq (${ENABLE_SME_FOR_NS},0)
979 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
980 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000981
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100982 ifeq (${ENABLE_SVE_FOR_NS},1)
983 # Warning instead of error due to CI dependency on this
984 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
985 $(warning "Forced ENABLE_SVE_FOR_NS=0")
986 override ENABLE_SVE_FOR_NS := 0
987 endif
988endif #(CTX_INCLUDE_FPREGS)
johpow019baade32021-07-08 14:14:00 -0500989
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +0000990ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100991 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +0000992endif
993
Raymond Mao98983392023-07-25 07:53:35 -0700994ifeq (${TRANSFER_LIST},1)
995 $(info TRANSFER_LIST is an experimental feature)
996endif
997
Chris Kayd02c2312022-09-29 16:21:24 +0100998ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100999 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1000 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1001 endif
Chris Kayd02c2312022-09-29 16:21:24 +01001002endif
1003
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001004ifeq ($(PSA_CRYPTO),1)
1005 $(info PSA_CRYPTO is an experimental feature)
1006endif
1007
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001008################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001009# Process platform overrideable behaviour
1010################################################################################
1011
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001012ifdef BL1_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001013 NEED_BL1 := yes
1014endif #(BL1_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001015
Jon Medhurst66573cb2014-02-13 15:19:28 +00001016ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001017 NEED_BL2 := yes
1018
1019 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1020 # Certificate generation tools. This flag can be overridden by the platform.
1021 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001022 # If booting an EL3 payload there is no need for a BL33 image
1023 # in the FIP file.
1024 NEED_BL33 := no
1025 else
1026 ifdef PRELOADED_BL33_BASE
1027 # If booting a BL33 preloaded image there is no need of
1028 # another one in the FIP file.
1029 NEED_BL33 := no
1030 else
1031 NEED_BL33 ?= yes
1032 endif
1033 endif
1034endif #(BL2_SOURCES)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001035
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001036ifdef BL2U_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001037 NEED_BL2U := yes
1038endif #(BL2U_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001039
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001040# If SCP_BL2 is given, we always want FIP to include it.
1041ifdef SCP_BL2
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001042 NEED_SCP_BL2 := yes
1043endif #(SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001044
Soby Mathewbf169232017-11-14 14:10:10 +00001045# For AArch32, BL31 is not currently supported.
1046ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001047 ifdef BL31_SOURCES
1048 # When booting an EL3 payload, there is no need to compile the BL31
1049 # image nor put it in the FIP.
1050 ifndef EL3_PAYLOAD_BASE
1051 NEED_BL31 := yes
1052 endif
1053 endif
1054endif #(ARCH=aarch64)
Soby Mathewbf169232017-11-14 14:10:10 +00001055
Juan Castilloa3487d12015-08-18 14:23:04 +01001056# Process TBB related flags
1057ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001058 # Common cert_create options
1059 ifneq (${CREATE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001060 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001061 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001062 ifneq (${SAVE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001063 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001064 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001065 endif
1066 endif
1067 # Include TBBR makefile (unless the platform indicates otherwise)
1068 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castilloa3487d12015-08-18 14:23:04 +01001069 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001070 endif
1071endif #(GENERATE_COT)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001072
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001073ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001074 FIP_ARGS += --align ${FIP_ALIGN}
1075endif #(FIP_ALIGN)
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001076
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001077ifdef FDT_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001078 NEED_FDT := yes
1079endif #(FDT_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001080
Juan Castilloa3487d12015-08-18 14:23:04 +01001081################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +08001082# Include libraries' Makefile that are used in all BL
1083################################################################################
1084
1085include lib/stack_protector/stack_protector.mk
1086
1087################################################################################
Soby Mathew574e01e2017-02-14 10:05:07 +00001088# Include BL specific makefiles
1089################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001090
1091ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001092include bl1/bl1.mk
1093endif
1094
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001095ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001096include bl2/bl2.mk
1097endif
1098
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001099ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001100include bl2u/bl2u.mk
1101endif
1102
Soby Mathewbf169232017-11-14 14:10:10 +00001103ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001104include bl31/bl31.mk
1105endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001106
Soby Mathew574e01e2017-02-14 10:05:07 +00001107################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001108# Build options checks
1109################################################################################
1110
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001111# Boolean_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001112$(eval $(call assert_booleans,\
1113 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001114 ALLOW_RO_XLAT_TABLES \
1115 BL2_ENABLE_SP_LOAD \
1116 COLD_BOOT_SINGLE_CPU \
1117 CREATE_KEYS \
1118 CTX_INCLUDE_AARCH32_REGS \
1119 CTX_INCLUDE_FPREGS \
1120 CTX_INCLUDE_EL2_REGS \
Arvind Ram Prakash4851b492023-10-06 14:35:21 -05001121 CTX_INCLUDE_MPAM_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001122 DEBUG \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001123 DYN_DISABLE_AUTH \
1124 EL3_EXCEPTION_HANDLING \
1125 ENABLE_AMU_AUXILIARY_COUNTERS \
1126 ENABLE_AMU_FCONF \
1127 AMU_RESTRICT_COUNTERS \
1128 ENABLE_ASSERTIONS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001129 ENABLE_PIE \
1130 ENABLE_PMF \
1131 ENABLE_PSCI_STAT \
1132 ENABLE_RUNTIME_INSTRUMENTATION \
1133 ENABLE_SME_FOR_SWD \
1134 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001135 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001136 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001137 ERROR_DEPRECATED \
1138 FAULT_INJECTION_SUPPORT \
1139 GENERATE_COT \
1140 GICV2_G0_FOR_EL3 \
1141 HANDLE_EA_EL3_FIRST_NS \
Bipin Ravie53e6ae2023-09-28 13:17:24 -05001142 HARDEN_SLS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001143 HW_ASSISTED_COHERENCY \
1144 MEASURED_BOOT \
1145 DRTM_SUPPORT \
1146 NS_TIMER_SWITCH \
1147 OVERRIDE_LIBC \
1148 PL011_GENERIC_UART \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001149 PROGRAMMABLE_RESET_ADDRESS \
1150 PSCI_EXTENDED_STATE_ID \
1151 PSCI_OS_INIT_MODE \
1152 RESET_TO_BL31 \
1153 SAVE_KEYS \
1154 SEPARATE_CODE_AND_RODATA \
1155 SEPARATE_BL2_NOLOAD_REGION \
1156 SEPARATE_NOBITS_REGION \
1157 SPIN_ON_BL1_EXIT \
1158 SPM_MM \
1159 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001160 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001161 SPMD_SPM_AT_SEL2 \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001162 ENABLE_SPMD_LP \
Raymond Mao98983392023-07-25 07:53:35 -07001163 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001164 TRUSTED_BOARD_BOOT \
1165 USE_COHERENT_MEM \
1166 USE_DEBUGFS \
1167 ARM_IO_IN_DTB \
1168 SDEI_IN_FCONF \
1169 SEC_INT_DESC_IN_FCONF \
1170 USE_ROMLIB \
1171 USE_TBBR_DEFS \
1172 WARMBOOT_ENABLE_DCACHE_EARLY \
1173 RESET_TO_BL2 \
1174 BL2_IN_XIP_MEM \
1175 BL2_INV_DCACHE \
1176 USE_SPINLOCK_CAS \
1177 ENCRYPT_BL31 \
1178 ENCRYPT_BL32 \
1179 ERRATA_SPECULATIVE_AT \
1180 RAS_TRAP_NS_ERR_REC_ACCESS \
1181 COT_DESC_IN_DTB \
1182 USE_SP804_TIMER \
1183 PSA_FWU_SUPPORT \
1184 ENABLE_MPMM \
1185 ENABLE_MPMM_FCONF \
1186 FEATURE_DETECTION \
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +01001187 TRNG_SUPPORT \
Sona Mathew7fe03522022-11-18 18:05:38 -06001188 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001189 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001190 CONDITIONAL_CMO \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001191 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001192 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash8bd27c92023-08-15 16:28:06 -05001193 INIT_UNUSED_NS_EL2 \
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001194 PLATFORM_REPORT_CTX_MEM_USE \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001195)))
Dan Handley81be1002015-03-27 17:44:35 +00001196
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001197# Numeric_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001198$(eval $(call assert_numerics,\
1199 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001200 ARM_ARCH_MAJOR \
1201 ARM_ARCH_MINOR \
1202 BRANCH_PROTECTION \
1203 CTX_INCLUDE_PAUTH_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001204 CTX_INCLUDE_NEVE_REGS \
1205 CRYPTO_SUPPORT \
Boyan Karatotev677ed8a2023-02-16 09:45:29 +00001206 DISABLE_MTPMU \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001207 ENABLE_BRBE_FOR_NS \
1208 ENABLE_TRBE_FOR_NS \
1209 ENABLE_BTI \
1210 ENABLE_PAUTH \
1211 ENABLE_FEAT_AMU \
1212 ENABLE_FEAT_AMUv1p1 \
1213 ENABLE_FEAT_CSV2_2 \
Sona Mathew3b84c962023-10-25 16:48:19 -05001214 ENABLE_FEAT_CSV2_3 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001215 ENABLE_FEAT_DIT \
1216 ENABLE_FEAT_ECV \
1217 ENABLE_FEAT_FGT \
1218 ENABLE_FEAT_HCX \
Govindraj Raja24d3a4e2023-12-21 13:57:49 -06001219 ENABLE_FEAT_MTE \
Govindraj Rajad7b63ac2024-01-26 10:08:37 -06001220 ENABLE_FEAT_MTE2 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001221 ENABLE_FEAT_PAN \
1222 ENABLE_FEAT_RNG \
1223 ENABLE_FEAT_RNG_TRAP \
1224 ENABLE_FEAT_SEL2 \
1225 ENABLE_FEAT_TCR2 \
Govindraj Rajac2dad572024-01-23 16:03:53 -06001226 ENABLE_FEAT_SB \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001227 ENABLE_FEAT_S2PIE \
1228 ENABLE_FEAT_S1PIE \
1229 ENABLE_FEAT_S2POE \
1230 ENABLE_FEAT_S1POE \
1231 ENABLE_FEAT_GCS \
1232 ENABLE_FEAT_VHE \
Maksims Svecovsdf4ad842023-03-24 13:05:09 +00001233 ENABLE_FEAT_MTE_PERM \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001234 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001235 ENABLE_RME \
1236 ENABLE_SPE_FOR_NS \
1237 ENABLE_SYS_REG_TRACE_FOR_NS \
1238 ENABLE_SME_FOR_NS \
1239 ENABLE_SME2_FOR_NS \
1240 ENABLE_SVE_FOR_NS \
1241 ENABLE_TRF_FOR_NS \
1242 FW_ENC_STATUS \
1243 NR_OF_FW_BANKS \
1244 NR_OF_IMAGES_IN_FW_BANK \
1245 TWED_DELAY \
1246 ENABLE_FEAT_TWED \
1247 SVE_VECTOR_LEN \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001248 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001249)))
Jeenu Viswambharanfca76802017-01-16 16:52:35 +00001250
Justin Chadwellf9b32c12019-07-29 17:13:10 +01001251ifdef KEY_SIZE
1252 $(eval $(call assert_numeric,KEY_SIZE))
1253endif
1254
Justin Chadwell83e04882019-08-20 11:01:52 +01001255ifeq ($(filter $(SANITIZE_UB), on off trap),)
1256 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1257endif
1258
Juan Castilloa3487d12015-08-18 14:23:04 +01001259################################################################################
1260# Add definitions to the cpp preprocessor based on the current build options.
1261# This is done after including the platform specific makefile to allow the
1262# platform to overwrite the default options
1263################################################################################
Jeenu Viswambharand1b60152014-05-12 15:28:47 +01001264
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001265$(eval $(call add_defines,\
1266 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001267 ALLOW_RO_XLAT_TABLES \
1268 ARM_ARCH_MAJOR \
1269 ARM_ARCH_MINOR \
1270 BL2_ENABLE_SP_LOAD \
1271 COLD_BOOT_SINGLE_CPU \
1272 CTX_INCLUDE_AARCH32_REGS \
1273 CTX_INCLUDE_FPREGS \
1274 CTX_INCLUDE_PAUTH_REGS \
Arvind Ram Prakash4851b492023-10-06 14:35:21 -05001275 CTX_INCLUDE_MPAM_REGS \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001276 EL3_EXCEPTION_HANDLING \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001277 CTX_INCLUDE_EL2_REGS \
1278 CTX_INCLUDE_NEVE_REGS \
1279 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1280 DISABLE_MTPMU \
1281 ENABLE_FEAT_AMU \
1282 ENABLE_AMU_AUXILIARY_COUNTERS \
1283 ENABLE_AMU_FCONF \
1284 AMU_RESTRICT_COUNTERS \
1285 ENABLE_ASSERTIONS \
1286 ENABLE_BTI \
Arvind Ram Prakashab28d4b2023-10-11 12:10:56 -05001287 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001288 ENABLE_PAUTH \
1289 ENABLE_PIE \
1290 ENABLE_PMF \
1291 ENABLE_PSCI_STAT \
1292 ENABLE_RME \
1293 ENABLE_RUNTIME_INSTRUMENTATION \
1294 ENABLE_SME_FOR_NS \
1295 ENABLE_SME2_FOR_NS \
1296 ENABLE_SME_FOR_SWD \
1297 ENABLE_SPE_FOR_NS \
1298 ENABLE_SVE_FOR_NS \
1299 ENABLE_SVE_FOR_SWD \
Manish Pandey514a3012023-10-10 13:53:25 +01001300 ENABLE_FEAT_RAS \
Manish Pandeyf90a73c2023-10-10 15:42:19 +01001301 FFH_SUPPORT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001302 ENCRYPT_BL31 \
1303 ENCRYPT_BL32 \
1304 ERROR_DEPRECATED \
1305 FAULT_INJECTION_SUPPORT \
1306 GICV2_G0_FOR_EL3 \
1307 HANDLE_EA_EL3_FIRST_NS \
1308 HW_ASSISTED_COHERENCY \
1309 LOG_LEVEL \
1310 MEASURED_BOOT \
1311 DRTM_SUPPORT \
1312 NS_TIMER_SWITCH \
1313 PL011_GENERIC_UART \
1314 PLAT_${PLAT} \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001315 PROGRAMMABLE_RESET_ADDRESS \
1316 PSCI_EXTENDED_STATE_ID \
1317 PSCI_OS_INIT_MODE \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001318 RESET_TO_BL31 \
1319 SEPARATE_CODE_AND_RODATA \
1320 SEPARATE_BL2_NOLOAD_REGION \
1321 SEPARATE_NOBITS_REGION \
1322 RECLAIM_INIT_CODE \
1323 SPD_${SPD} \
1324 SPIN_ON_BL1_EXIT \
1325 SPM_MM \
1326 SPMC_AT_EL3 \
Nishant Sharma9e719112023-06-27 00:36:01 +01001327 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001328 SPMD_SPM_AT_SEL2 \
Raymond Mao98983392023-07-25 07:53:35 -07001329 TRANSFER_LIST \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001330 TRUSTED_BOARD_BOOT \
1331 CRYPTO_SUPPORT \
1332 TRNG_SUPPORT \
1333 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001334 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001335 USE_COHERENT_MEM \
1336 USE_DEBUGFS \
1337 ARM_IO_IN_DTB \
1338 SDEI_IN_FCONF \
1339 SEC_INT_DESC_IN_FCONF \
1340 USE_ROMLIB \
1341 USE_TBBR_DEFS \
1342 WARMBOOT_ENABLE_DCACHE_EARLY \
1343 RESET_TO_BL2 \
1344 BL2_RUNS_AT_EL3 \
1345 BL2_IN_XIP_MEM \
1346 BL2_INV_DCACHE \
1347 USE_SPINLOCK_CAS \
1348 ERRATA_SPECULATIVE_AT \
1349 RAS_TRAP_NS_ERR_REC_ACCESS \
1350 COT_DESC_IN_DTB \
1351 USE_SP804_TIMER \
1352 ENABLE_FEAT_RNG \
1353 ENABLE_FEAT_RNG_TRAP \
1354 ENABLE_FEAT_SB \
1355 ENABLE_FEAT_DIT \
1356 NR_OF_FW_BANKS \
1357 NR_OF_IMAGES_IN_FW_BANK \
1358 PSA_FWU_SUPPORT \
1359 ENABLE_BRBE_FOR_NS \
1360 ENABLE_TRBE_FOR_NS \
1361 ENABLE_SYS_REG_TRACE_FOR_NS \
1362 ENABLE_TRF_FOR_NS \
1363 ENABLE_FEAT_HCX \
1364 ENABLE_MPMM \
1365 ENABLE_MPMM_FCONF \
1366 ENABLE_FEAT_FGT \
1367 ENABLE_FEAT_ECV \
1368 ENABLE_FEAT_AMUv1p1 \
1369 ENABLE_FEAT_SEL2 \
1370 ENABLE_FEAT_VHE \
1371 ENABLE_FEAT_CSV2_2 \
Sona Mathew3b84c962023-10-25 16:48:19 -05001372 ENABLE_FEAT_CSV2_3 \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001373 ENABLE_FEAT_PAN \
1374 ENABLE_FEAT_TCR2 \
1375 ENABLE_FEAT_S2PIE \
1376 ENABLE_FEAT_S1PIE \
1377 ENABLE_FEAT_S2POE \
1378 ENABLE_FEAT_S1POE \
1379 ENABLE_FEAT_GCS \
Govindraj Raja24d3a4e2023-12-21 13:57:49 -06001380 ENABLE_FEAT_MTE \
Govindraj Rajad7b63ac2024-01-26 10:08:37 -06001381 ENABLE_FEAT_MTE2 \
Maksims Svecovsdf4ad842023-03-24 13:05:09 +00001382 ENABLE_FEAT_MTE_PERM \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001383 FEATURE_DETECTION \
1384 TWED_DELAY \
1385 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001386 CONDITIONAL_CMO \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001387 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidanand23c2fe22023-04-26 15:57:30 +01001388 SVE_VECTOR_LEN \
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -08001389 ENABLE_SPMD_LP \
Manish V Badarkhe78e14f82023-09-06 09:08:28 +01001390 PSA_CRYPTO \
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +02001391 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash8bd27c92023-08-15 16:28:06 -05001392 INIT_UNUSED_NS_EL2 \
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001393 PLATFORM_REPORT_CTX_MEM_USE \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001394)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001395
Juan Pablo Condeb5ec1382023-11-08 16:14:28 -06001396ifeq (${PLATFORM_REPORT_CTX_MEM_USE}, 1)
1397ifeq (${DEBUG}, 0)
1398 $(warning "PLATFORM_REPORT_CTX_MEM_USE can be applied when DEBUG=1 only")
1399 override PLATFORM_REPORT_CTX_MEM_USE := 0
1400endif
1401endif
1402
Justin Chadwell83e04882019-08-20 11:01:52 +01001403ifeq (${SANITIZE_UB},trap)
1404 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001405endif #(SANITIZE_UB)
Justin Chadwell83e04882019-08-20 11:01:52 +01001406
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001407# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1408ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001409 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1410else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001411# Define the PRELOADED_BL33_BASE flag only if it is provided and
1412# EL3_PAYLOAD_BASE is not defined, as it has priority.
1413 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001414 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001415 endif
1416endif #(EL3_PAYLOAD_BASE)
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001417
Soby Mathew9fe88042018-03-26 12:43:37 +01001418# Define the DYN_DISABLE_AUTH flag only if set.
1419ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001420 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew9fe88042018-03-26 12:43:37 +01001421endif
1422
Chris Kaycfba6452023-12-04 09:55:50 +00001423ifeq ($($(ARCH)-ld-id),arm-link)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001424 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekar4d034c52019-01-11 14:47:48 -08001425endif
1426
Manish Pandey3f90ad72020-01-14 11:52:05 +00001427# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001428ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001429ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001430 -include $(BUILD_PLAT)/sp_gen.mk
1431 FIP_DEPS += sp
1432 CRT_DEPS += sp
1433 NEED_SP_PKG := yes
Manish Pandey3f90ad72020-01-14 11:52:05 +00001434else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001435 ifeq (${SPMD_SPM_AT_SEL2},1)
1436 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1437 endif
1438endif #(SP_LAYOUT_FILE)
1439endif #(SPD)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001440
Juan Castilloa3487d12015-08-18 14:23:04 +01001441################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001442# Build targets
1443################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001444
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301445.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 +01001446.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001447
Juan Castilloa3487d12015-08-18 14:23:04 +01001448all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001449
Juan Castilloa3487d12015-08-18 14:23:04 +01001450msg_start:
1451 @echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001452
Soby Mathew18a62042015-10-26 14:29:21 +00001453ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001454# Check if deprecated declarations and cpp warnings should be treated as error or not.
Chris Kaycfba6452023-12-04 09:55:50 +00001455ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
Varun Wadekar4d034c52019-01-11 14:47:48 -08001456 CPPFLAGS += -Wno-error=deprecated-declarations
1457else
Dan Handley6fa89a22018-02-27 16:03:58 +00001458 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001459endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001460endif #(!ERROR_DEPRECATED)
Soby Mathew18a62042015-10-26 14:29:21 +00001461
Roberto Vargase92111a2018-05-22 16:05:42 +01001462$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001463$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001464
Juan Castilloa3487d12015-08-18 14:23:04 +01001465# Expand build macros for the different images
1466ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001467BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001468$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001469endif #(NEED_BL1)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001470
Juan Castilloa3487d12015-08-18 14:23:04 +01001471ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001472
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001473ifeq (${RESET_TO_BL2}, 0)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001474FIP_BL2_ARGS := tb-fw
1475endif
1476
Chris Kayfb3b0512021-09-28 15:44:37 +01001477BL2_SOURCES := $(sort ${BL2_SOURCES})
1478
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001479$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001480 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001481
1482endif #(NEED_BL2)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001483
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001484ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001485$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001486endif #(NEED_SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001487
Juan Castilloa3487d12015-08-18 14:23:04 +01001488ifeq (${NEED_BL31},yes)
1489BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001490# Sort BL31 source files to remove duplicates
1491BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301492ifneq (${DECRYPTION_SUPPORT},none)
1493$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001494 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301495else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001496$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001497 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001498endif #(DECRYPTION_SUPPORT)
1499endif #(NEED_BL31)
Juan Castillo379954c2014-11-04 17:36:40 +00001500
Juan Castillo671b8db2015-11-12 10:59:26 +00001501# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001502# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001503# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001504ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001505# Sort BL32 source files to remove duplicates
1506BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001507BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1508
Sumit Gargeec52442019-11-14 16:33:45 +05301509ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001510$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301511 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1512else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001513$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001514 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001515endif #(DECRYPTION_SUPPORT)
1516endif #(NEED_BL32)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001517
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001518# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1519# needs to be built from RMM_SOURCES.
1520ifeq (${NEED_RMM},yes)
1521# Sort RMM source files to remove duplicates
1522RMM_SOURCES := $(sort ${RMM_SOURCES})
1523BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1524
1525$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001526 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1527endif #(NEED_RMM)
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001528
Juan Castilloa3487d12015-08-18 14:23:04 +01001529# Add the BL33 image if required by the platform
1530ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001531$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001532endif #(NEED_BL33)
Juan Castillo9c25a402015-01-13 12:21:04 +00001533
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001534ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001535$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001536 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001537endif #(NEED_BL2U)
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001538
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001539# Expand build macros for the different images
1540ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001541 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001542endif #(NEED_FDT)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001543
Manish Pandey3f90ad72020-01-14 11:52:05 +00001544# Add Secure Partition packages
1545ifeq (${NEED_SP_PKG},yes)
Olivier Deprezf5033072024-01-26 12:05:36 +01001546$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
1547 @${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
J-Alvesef8e0982022-03-22 16:28:51 +00001548sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001549 @${ECHO_BLANK_LINE}
1550 @echo "Built SP Images successfully"
1551 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001552endif #(NEED_SP_PKG)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001553
Ian Spray36eaaf32014-01-30 17:25:28 +00001554locate-checkpatch:
1555ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001556 $(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 +00001557else
1558ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001559 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001560endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001561endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001562
Achin Gupta4f6ad662013-10-25 09:08:21 +01001563clean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001564 @echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001565 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001566ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001567 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001568else
1569# Clear the MAKEFLAGS as we do not want
1570# to pass the gnumake flags to nmake.
1571 ${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 +01001572endif #(UNIX_MK)
Juan Castilloa3487d12015-08-18 14:23:04 +01001573 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301574 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
Roberto Vargase92111a2018-05-22 16:05:42 +01001575 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001576
James Morrisseyeaaeece2013-11-01 13:56:59 +00001577realclean distclean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001578 @echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001579 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1580 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001581ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001582 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001583else
1584# Clear the MAKEFLAGS as we do not want
1585# to pass the gnumake flags to nmake.
1586 ${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 +01001587endif #(UNIX_MK)
Nicolas Boulenguezdf612a52021-03-31 12:22:45 +02001588 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301589 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
Roberto Vargase92111a2018-05-22 16:05:42 +01001590 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001591
Ian Spray36eaaf32014-01-30 17:25:28 +00001592checkcodebase: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001593 @echo " CHECKING STYLE"
Dan Handley3a355712016-06-02 18:21:02 +01001594 @if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001595 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001596 while read GIT_FILE ; \
1597 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1598 done ; \
1599 else \
1600 find . -type f -not -iwholename "*.git*" \
1601 -not -iwholename "*build*" \
1602 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001603 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001604 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001605 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001606 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1607 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001608
1609checkpatch: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001610 @echo " CHECKING STYLE"
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001611 @if test -n "${CHECKPATCH_OPTS}"; then \
1612 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1613 fi
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001614 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001615 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1616 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001617 printf "\n[*] Checking style of '$$commit'\n\n"; \
1618 git log --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001619 -- ${CHECK_PATHS} | \
1620 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001621 git diff --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001622 -- ${CHECK_PATHS} | \
1623 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001624 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001625
1626certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001627
Pali Rohár54ff2132020-11-24 15:38:08 +01001628${CRTTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001629 ${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 +00001630 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001631 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001632 @${ECHO_BLANK_LINE}
Jon Medhurst407a95c2014-02-12 15:54:48 +00001633
Juan Castillo11abdcd2014-10-21 11:30:42 +01001634ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001635certificates: ${CRT_DEPS} ${CRTTOOL}
1636 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001637 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001638 @echo "Built $@ successfully"
1639 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001640 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001641endif #(GENERATE_COT)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001642
Juan Castilloa3487d12015-08-18 14:23:04 +01001643${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001644 $(eval ${CHECK_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001645 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
1646 ${Q}${FIPTOOL} info $@
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001647 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001648 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001649 @${ECHO_BLANK_LINE}
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001650
Yatharth Kochard1a93432015-10-12 12:33:47 +01001651ifneq (${GENERATE_COT},0)
1652fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1653 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001654 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001655 @echo "Built $@ successfully"
1656 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001657 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001658endif #(GENERATE_COT)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001659
1660${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001661 $(eval ${CHECK_FWU_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001662 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1663 ${Q}${FIPTOOL} info $@
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001664 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001665 @echo "Built $@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001666 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001667
Juan Castilloa3487d12015-08-18 14:23:04 +01001668fiptool: ${FIPTOOL}
1669fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001670fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001671
Pali Rohár54ff2132020-11-24 15:38:08 +01001672${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001673ifdef UNIX_MK
Lionel Debieve730bde82022-11-14 11:05:09 +01001674 ${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 +01001675else
1676# Clear the MAKEFLAGS as we do not want
1677# to pass the gnumake flags to nmake.
1678 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001679endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001680
Pali Rohár54ff2132020-11-24 15:38:08 +01001681romlib.bin: libraries FORCE
John Tsichritzisf6ea99b2019-05-21 15:47:37 +01001682 ${Q}${MAKE} PLAT_DIR=${PLAT_DIR} BUILD_PLAT=${BUILD_PLAT} ENABLE_BTI=${ENABLE_BTI} ARM_ARCH_MINOR=${ARM_ARCH_MINOR} INCLUDES='${INCLUDES}' DEFINES='${DEFINES}' --no-print-directory -C ${ROMLIBPATH} all
Roberto Vargase92111a2018-05-22 16:05:42 +01001683
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001684memmap: all
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001685ifdef UNIX_MK
1686 ${Q}PYTHONPATH=${CURDIR}/tools/memory \
1687 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1688else
1689 ${Q}set PYTHONPATH=${CURDIR}/tools/memory && \
1690 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1691endif
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001692
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001693doc:
1694 @echo " BUILD DOCUMENTATION"
1695 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1696
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301697enctool: ${ENCTOOL}
1698
Pali Rohár54ff2132020-11-24 15:38:08 +01001699${ENCTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001700 ${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 +05301701 @${ECHO_BLANK_LINE}
1702 @echo "Built $@ successfully"
1703 @${ECHO_BLANK_LINE}
1704
Joakim Bech35fab8c2014-01-23 14:51:49 +01001705cscope:
1706 @echo " CSCOPE"
1707 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1708 ${Q}cscope -b -q -k
1709
Ryan Harkin72ee3312014-01-15 16:55:07 +00001710help:
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001711 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001712 @echo ""
1713 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +00001714 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001715 @echo ""
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001716 @echo "platform = ${PLATFORM_LIST}"
1717 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001718 @echo "Please refer to the User Guide for a list of all supported options."
1719 @echo "Note that the build system doesn't track dependencies for build "
1720 @echo "options. Therefore, if any of the build options are changed "
1721 @echo "from a previous build, a clean build must be performed."
1722 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +00001723 @echo "Supported Targets:"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001724 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +00001725 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +00001726 @echo " bl2 Build the BL2 binary"
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001727 @echo " bl2u Build the BL2U binary"
Juan Castillo7d199412015-12-14 09:35:25 +00001728 @echo " bl31 Build the BL31 binary"
Soby Mathewa1941252016-05-05 14:33:33 +01001729 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1730 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castilloa3487d12015-08-18 14:23:04 +01001731 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001732 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochard1a93432015-10-12 12:33:47 +01001733 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +00001734 @echo " checkcodebase Check the coding style of the entire source tree"
1735 @echo " checkpatch Check the coding style on changes in the current"
1736 @echo " branch against BASE_COMMIT (default origin/master)"
1737 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +00001738 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +00001739 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001740 @echo " certtool Build the Certificate generation tool"
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301741 @echo " enctool Build the Firmware encryption tool"
Andreas Färberec82cfb2016-10-10 05:18:49 +02001742 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Manish Pandey3f90ad72020-01-14 11:52:05 +00001743 @echo " sp Build the Secure Partition Packages"
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001744 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathewab4181d2017-12-14 17:44:56 +00001745 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001746 @echo " memmap Print the memory map of the built binaries"
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001747 @echo " doc Build html based documentation using Sphinx tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001748 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001749 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +00001750 @echo ""
1751 @echo "example: build all targets for the FVP platform:"
1752 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001753
1754.PHONY: FORCE
1755FORCE:;