blob: 4fc8a7045b604fbb81edec564981c28ec3173ce5 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001#
Govindraj Raja0a33adc2023-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-arm82cb2c12017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005#
6
Jeenu Viswambharane35c4042014-05-15 14:40:58 +01007#
Juan Castilloaaa3e722014-06-30 11:41:46 +01008# Trusted Firmware Version
9#
Soby Mathew1a0f1122018-10-01 16:16:34 +010010VERSION_MAJOR := 2
Manish V Badarkhe98735802023-11-21 14:35:13 +000011VERSION_MINOR := 10
Yann Gautierc25d1cc2024-02-08 18:40:27 +010012# VERSION_PATCH is only used for LTS releases
13VERSION_PATCH := 0
Yann Gautier055ebec2023-10-03 11:09:07 +020014VERSION := ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}
Juan Castilloaaa3e722014-06-30 11:41:46 +010015
Juan Castillo88154672015-10-22 11:34:44 +010016# Default goal is build all images
17.DEFAULT_GOAL := all
18
Douglas Raillard72fc70e2016-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 Lloyd231c1472015-12-02 18:17:37 +000024MAKE_HELPERS_DIRECTORY := make_helpers/
25include ${MAKE_HELPERS_DIRECTORY}build_macros.mk
Evan Lloyde7f54db2015-12-02 18:56:06 +000026include ${MAKE_HELPERS_DIRECTORY}build_env.mk
Juan Castillo73c99d42015-08-18 14:23:04 +010027
28################################################################################
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +010029# Default values for build configurations, and their dependencies
Juan Castillo73c99d42015-08-18 14:23:04 +010030################################################################################
Jeenu Viswambharane35c4042014-05-15 14:40:58 +010031
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +010032include ${MAKE_HELPERS_DIRECTORY}defaults.mk
dp-arm872be882016-09-19 11:18:44 +010033
Chris Kaycc277de2023-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 Diazcc8b5632017-04-18 15:16:05 +010040# Assertions enabled for DEBUG builds by default
Antonio Nino Diazcc8b5632017-04-18 15:16:05 +010041ENABLE_ASSERTIONS := ${DEBUG}
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +010042ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION}
43PLAT := ${DEFAULT_PLAT}
Juan Castillo73c99d42015-08-18 14:23:04 +010044
45################################################################################
46# Checkpatch script options
47################################################################################
48
Sandrine Bailleuxf6077392016-06-02 11:19:59 +010049CHECKCODE_ARGS := --no-patch
Dan Handleyf0b489c2016-06-02 17:15:13 +010050# Do not check the coding style on imported library files or documentation files
Gilad Ben-Yossef45018432019-05-15 09:24:04 +030051INC_DRV_DIRS_TO_CHECK := $(sort $(filter-out \
52 include/drivers/arm, \
53 $(wildcard include/drivers/*)))
Dan Handleyf0b489c2016-06-02 17:15:13 +010054INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \
Dan Handley1a41e8c2016-06-02 18:21:02 +010055 include/lib/libfdt \
Roberto Vargas61f72a32018-05-08 10:27:10 +010056 include/lib/libc, \
Dan Handleyf0b489c2016-06-02 17:15:13 +010057 $(wildcard include/lib/*)))
58INC_DIRS_TO_CHECK := $(sort $(filter-out \
Gilad Ben-Yossef45018432019-05-15 09:24:04 +030059 include/lib \
60 include/drivers, \
Dan Handleyf0b489c2016-06-02 17:15:13 +010061 $(wildcard include/*)))
62LIB_DIRS_TO_CHECK := $(sort $(filter-out \
dp-armd801fbb2017-05-04 12:15:35 +010063 lib/compiler-rt \
Antonio Nino Diaz55cdcf72017-01-16 17:20:45 +000064 lib/libfdt% \
Roberto Vargas61f72a32018-05-08 10:27:10 +010065 lib/libc, \
Daniel Boulbya1942552022-10-05 11:05:22 +010066 lib/zlib \
Dan Handleyf0b489c2016-06-02 17:15:13 +010067 $(wildcard lib/*)))
68ROOT_DIRS_TO_CHECK := $(sort $(filter-out \
69 lib \
70 include \
71 docs \
Paul Beesley1ef35512019-03-07 16:42:31 +000072 %.rst, \
Dan Handleyf0b489c2016-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-Yossef45018432019-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 Castillo73c99d42015-08-18 14:23:04 +010081################################################################################
82# Process build options
83################################################################################
84
85# Verbose flag
Jeenu Viswambharane35c4042014-05-15 14:40:58 +010086ifeq (${V},0)
Jayanth Dodderi Chidanandc5e1da82023-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 Chidanandc5e1da82023-04-24 15:57:05 +010091 Q:=
92 ECHO:=$(ECHO_QUIET)
Achin Gupta4f6ad662013-10-25 09:08:21 +010093endif
Andre Przywaraee1ba6d2018-09-27 10:56:05 +010094
95ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +010096 Q:=@
97 ECHO:=$(ECHO_QUIET)
Andre Przywaraee1ba6d2018-09-27 10:56:05 +010098endif
99
100export Q ECHO
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +0000101
Juan Castillo73c99d42015-08-18 14:23:04 +0100102################################################################################
Jayanth Dodderi Chidanandc5e1da82023-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 Meakin20629b32023-02-14 11:56:02 +0000122SP_DTS_LIST_FRAGMENT ?= ${BUILD_PLAT}/sp_list_fragment.dts
Jayanth Dodderi Chidanandc5e1da82023-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 Chidanandc5e1da82023-04-24 15:57:05 +0100134# Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags
135################################################################################
Etienne Carriere26e63c42017-11-08 13:48:40 +0100136ifeq (${ARM_ARCH_MAJOR},7)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100137 target32-directive = -target arm-none-eabi
Govindraj Rajad4089fb2023-05-30 16:52:15 -0500138# Will set march-directive from platform configuration
Etienne Carriere26e63c42017-11-08 13:48:40 +0100139else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100140 target32-directive = -target armv8a-none-eabi
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100141endif #(ARM_ARCH_MAJOR)
142
143################################################################################
144# Get Architecture Feature Modifiers
145################################################################################
146arch-features = ${ARM_ARCH_FEATURE}
147
Chris Kay8620bd02023-12-04 09:55:50 +0000148ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
149 ifeq ($($(ARCH)-cc-id),arm-clang)
Govindraj Raja7794d6c2023-06-01 16:29:16 -0500150 TF_CFLAGS_aarch32 := -target arm-arm-none-eabi
151 TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi
originc8a992f2022-01-19 16:30:14 +0000152 else
Govindraj Raja7794d6c2023-06-01 16:29:16 -0500153 TF_CFLAGS_aarch32 = $(target32-directive)
154 TF_CFLAGS_aarch64 := -target aarch64-elf
originc8a992f2022-01-19 16:30:14 +0000155 endif
156
Chris Kay8620bd02023-12-04 09:55:50 +0000157else ifeq ($($(ARCH)-cc-id),gnu-gcc)
Jayanth Dodderi Chidanandc5e1da82023-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 Chidanandc5e1da82023-04-24 15:57:05 +0100162 endif
zelalem-awekeedbce9a2019-11-12 16:20:17 -0600163 endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100164endif #(clang)
dp-armd5461852017-05-02 12:00:08 +0100165
Ahmad Fatoum32b209b2020-02-25 11:25:08 +0100166# Process Debug flag
167$(eval $(call add_define,DEBUG))
168ifneq (${DEBUG}, 0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100169 BUILD_TYPE := debug
170 TF_CFLAGS += -g -gdwarf-4
171 ASFLAGS += -g -Wa,-gdwarf-4
Ahmad Fatoum32b209b2020-02-25 11:25:08 +0100172
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100173 # Use LOG_LEVEL_INFO by default for debug builds
174 LOG_LEVEL := 40
Ahmad Fatoum32b209b2020-02-25 11:25:08 +0100175else
Jayanth Dodderi Chidanandc5e1da82023-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 Fatoum32b209b2020-02-25 11:25:08 +0100180
Peiyuan Songf1de4c82020-04-25 16:53:43 +0800181# Default build string (git branch and commit)
182ifeq (${BUILD_STRING},)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100183 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
Peiyuan Songf1de4c82020-04-25 16:53:43 +0800184endif
laurenw-armdddf4282022-07-12 10:12:05 -0500185VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
Peiyuan Songf1de4c82020-04-25 16:53:43 +0800186
Antonio Nino Diaz8fd9d4d2018-08-08 16:28:43 +0100187ifeq (${AARCH32_INSTRUCTION_SET},A32)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100188 TF_CFLAGS_aarch32 += -marm
Antonio Nino Diaz8fd9d4d2018-08-08 16:28:43 +0100189else ifeq (${AARCH32_INSTRUCTION_SET},T32)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100190 TF_CFLAGS_aarch32 += -mthumb
Antonio Nino Diaz8fd9d4d2018-08-08 16:28:43 +0100191else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100192 $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
193endif #(AARCH32_INSTRUCTION_SET)
Antonio Nino Diaz8fd9d4d2018-08-08 16:28:43 +0100194
Sandrine Bailleuxa9c4dde2018-07-03 09:14:45 +0200195TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-armd5461852017-05-02 12:00:08 +0100196TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathew9d29c222016-05-05 14:33:33 +0100197
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100198##############################################################################
199# WARNINGS Configuration
200###############################################################################
Justin Chadwell9ab81b52019-07-31 11:36:41 +0100201# General warnings
202WARNINGS := -Wall -Wmissing-include-dirs -Wunused \
Yann Gautier34b508b2021-05-20 13:18:14 +0200203 -Wdisabled-optimization -Wvla -Wshadow \
Boyan Karatotevd75a9ec2022-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 Chadwell9ab81b52019-07-31 11:36:41 +0100212
213# Additional warnings
Boyan Karatotevd75a9ec2022-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 Gautiere7c645b2018-12-10 18:00:26 +0100219
Boyan Karatotevd75a9ec2022-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 Karatotevd141e632022-11-21 14:49:05 +0000228# currently very involved and many platforms set this off
229WARNING2 += -Wunused-const-variable=2
Yann Gautiere7c645b2018-12-10 18:00:26 +0100230
Boyan Karatotevd75a9ec2022-11-21 14:16:43 +0000231# Level 3 - very pedantic, frequently ignored
Yann Gautiere7c645b2018-12-10 18:00:26 +0100232WARNING3 := -Wbad-function-cast
Boyan Karatotevd75a9ec2022-11-21 14:16:43 +0000233WARNING3 += -Waggregate-return
234WARNING3 += -Wnested-externs
235WARNING3 += -Wcast-align
Yann Gautiere7c645b2018-12-10 18:00:26 +0100236WARNING3 += -Wcast-qual
237WARNING3 += -Wconversion
238WARNING3 += -Wpacked
Yann Gautiere7c645b2018-12-10 18:00:26 +0100239WARNING3 += -Wpointer-arith
Yann Gautiere7c645b2018-12-10 18:00:26 +0100240WARNING3 += -Wswitch-default
Yann Gautiere7c645b2018-12-10 18:00:26 +0100241
Boyan Karatotevd75a9ec2022-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 Chidanandc5e1da82023-04-24 15:57:05 +0100246 ifneq (${W},0)
247 E ?= 0
248 endif
Boyan Karatotevd75a9ec2022-11-21 14:16:43 +0000249endif
250
Yann Gautiere7c645b2018-12-10 18:00:26 +0100251ifeq (${W},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100252 WARNINGS += $(WARNING1)
Yann Gautiere7c645b2018-12-10 18:00:26 +0100253else ifeq (${W},2)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100254 WARNINGS += $(WARNING1) $(WARNING2)
Yann Gautiere7c645b2018-12-10 18:00:26 +0100255else ifeq (${W},3)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100256 WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
257endif #(W)
Yann Gautiere7c645b2018-12-10 18:00:26 +0100258
Justin Chadwell9ab81b52019-07-31 11:36:41 +0100259# Compiler specific warnings
Chris Kay8620bd02023-12-04 09:55:50 +0000260ifeq ($(filter %-clang,$($(ARCH)-cc-id)),)
Justin Chadwell93c690e2019-07-03 14:15:56 +0100261# not using clang
Justin Chadwelld7b4cd42019-09-18 14:13:42 +0100262WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \
263 -Wpacked-bitfield-compat -Wshift-overflow=2 \
264 -Wlogical-op
Govindraj Rajadea23e22023-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 Ravi538516f2023-09-28 13:17:24 -0500269ifeq ($(HARDEN_SLS), 1)
270 TF_CFLAGS_aarch64 += $(call cc_option, -mharden-sls=all)
271endif
272
Justin Chadwell93c690e2019-07-03 14:15:56 +0100273else
274# using clang
Justin Chadwelld7b4cd42019-09-18 14:13:42 +0100275WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
276 -Wlogical-op-parentheses
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100277endif #(Clang Warning)
Ambroise Vincent00296572019-05-24 12:47:43 +0100278
Yann Gautier6336b072018-12-10 18:08:53 +0100279ifneq (${E},0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100280 ERRORS := -Werror
281endif #(E)
Yann Gautier6336b072018-12-10 18:08:53 +0100282
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100283################################################################################
284# Compiler and Linker Directives
285################################################################################
Justin Chadwell9ab81b52019-07-31 11:36:41 +0100286CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
287 $(ERRORS) $(WARNINGS)
Govindraj Rajad4089fb2023-05-30 16:52:15 -0500288ASFLAGS += $(CPPFLAGS) \
Julius Wernerd5dfdeb2019-07-09 13:49:11 -0700289 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada59de5092016-12-22 12:51:53 +0900290TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Hollandebd6efa2019-10-20 16:11:25 -0500291 -ffunction-sections -fdata-sections \
292 -ffreestanding -fno-builtin -fno-common \
293 -Os -std=gnu99
Juan Castillo73c99d42015-08-18 14:23:04 +0100294
Justin Chadwell1f461972019-08-20 11:01:52 +0100295ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100296 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
297endif #(${SANITIZE_UB},on)
298
Justin Chadwell1f461972019-08-20 11:01:52 +0100299ifeq (${SANITIZE_UB},trap)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100300 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
Justin Chadwell1f461972019-08-20 11:01:52 +0100301 -fsanitize-undefined-trap-on-error
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100302endif #(${SANITIZE_UB},trap)
Justin Chadwell1f461972019-08-20 11:01:52 +0100303
Chris Kayffb77422023-12-04 12:03:51 +0000304GCC_V_OUTPUT := $(shell $($(ARCH)-cc) -v 2>&1)
david cunadof7ec31d2017-11-30 21:58:01 +0000305
Marco Felsch1f49db52022-11-09 12:59:09 +0100306TF_LDFLAGS += -z noexecstack
307
Ambroise Vincent641f16e2019-07-17 11:08:38 +0100308# LD = armlink
Chris Kay8620bd02023-12-04 09:55:50 +0000309ifeq ($($(ARCH)-ld-id),arm-link)
Jayanth Dodderi Chidanandc5e1da82023-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 Vincent641f16e2019-07-17 11:08:38 +0100313
314# LD = gcc (used when GCC LTO is enabled)
Chris Kay8620bd02023-12-04 09:55:50 +0000315else ifeq ($($(ARCH)-ld-id),gnu-gcc)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100316 # Pass ld options with Wl or Xlinker switches
Chris Kay86e489c2024-01-16 11:53:35 +0000317 TF_LDFLAGS += $(call ld_option,-Xlinker --no-warn-rwx-segments)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100318 TF_LDFLAGS += -Wl,--fatal-warnings -O1
319 TF_LDFLAGS += -Wl,--gc-sections
Chris Kayac98b822022-12-22 13:26:37 +0000320
Jayanth Dodderi Chidanandc5e1da82023-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 Skvortsov304ad942023-09-05 23:06:29 +0300323 TF_LDFLAGS += -Wl,--build-id=none
Chris Kayac98b822022-12-22 13:26:37 +0000324
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100325 ifeq ($(ENABLE_LTO),1)
326 ifeq (${ARCH},aarch64)
327 TF_LDFLAGS += -flto -fuse-linker-plugin
Andrey Skvortsov31f80ef2023-12-08 18:04:51 +0300328 TF_LDFLAGS += -flto-partition=one
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100329 endif
330 endif #(ENABLE_LTO)
331
zelalem-awekeedbce9a2019-11-12 16:20:17 -0600332# GCC automatically adds fix-cortex-a53-843419 flag when used to link
333# which breaks some builds, so disable if errata fix is not explicitly enabled
Yann Gautiercfe67672023-03-15 16:18:16 +0100334 ifeq (${ARCH},aarch64)
335 ifneq (${ERRATA_A53_843419},1)
336 TF_LDFLAGS += -mno-fix-cortex-a53-843419
337 endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100338 endif
339 TF_LDFLAGS += -nostdlib
340 TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent641f16e2019-07-17 11:08:38 +0100341
342# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800343else
Marco Felsch1f49db52022-11-09 12:59:09 +0100344# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
345# are not loaded by a elf loader.
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100346 TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
347 TF_LDFLAGS += -O1
348 TF_LDFLAGS += --gc-sections
Chris Kayac98b822022-12-22 13:26:37 +0000349
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100350 TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
351 TF_LDFLAGS += -z max-page-size=4096
Andrey Skvortsov304ad942023-09-05 23:06:29 +0300352 TF_LDFLAGS += --build-id=none
Chris Kayac98b822022-12-22 13:26:37 +0000353
Ambroise Vincent641f16e2019-07-17 11:08:38 +0100354# ld.lld doesn't recognize the errata flags,
Yabin Cuiebac6922023-01-19 20:06:04 +0000355# therefore don't add those in that case.
356# ld.lld reports section type mismatch warnings,
357# therefore don't add --fatal-warnings to it.
Chris Kay8620bd02023-12-04 09:55:50 +0000358 ifneq ($($(ARCH)-ld-id),llvm-lld)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100359 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
360 endif
361
362endif #(LD = armlink)
Juan Castillo73c99d42015-08-18 14:23:04 +0100363
364################################################################################
Govindraj Rajaf5211422023-08-17 10:41:48 -0500365# Setup ARCH_MAJOR/MINOR before parsing arch_features.
366################################################################################
367ifeq (${ENABLE_RME},1)
368 ARM_ARCH_MAJOR := 8
369 ARM_ARCH_MINOR := 6
370endif
371
372################################################################################
Juan Castillo73c99d42015-08-18 14:23:04 +0100373# Common sources and include directories
374################################################################################
dp-armd801fbb2017-05-04 12:15:35 +0100375include lib/compiler-rt/compiler-rt.mk
Juan Castillo73c99d42015-08-18 14:23:04 +0100376
377BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathew7f56e9a2017-09-04 11:49:29 +0100378 common/tf_log.c \
Soby Mathew9d29c222016-05-05 14:33:33 +0100379 common/${ARCH}/debug.S \
Julius Werner91b48c92018-11-27 22:10:56 -0800380 drivers/console/multi_console.c \
Soby Mathew9d29c222016-05-05 14:33:33 +0100381 lib/${ARCH}/cache_helpers.S \
382 lib/${ARCH}/misc_helpers.S \
Boyan Karatotevc73686a2023-02-15 13:21:50 +0000383 lib/extensions/pmuv3/${ARCH}/pmuv3.c \
Soby Mathew566034f2018-02-08 17:45:12 +0000384 plat/common/plat_bl_common.c \
Soby Mathew7f56e9a2017-09-04 11:49:29 +0100385 plat/common/plat_log_common.c \
dp-arm75311202017-03-07 11:02:47 +0000386 plat/common/${ARCH}/plat_common.c \
Soby Mathew9d29c222016-05-05 14:33:33 +0100387 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas61f72a32018-05-08 10:27:10 +0100388 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000389
Chris Kay8620bd02023-12-04 09:55:50 +0000390ifeq ($($(ARCH)-cc-id),arm-clang)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100391 BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
Antonio Nino Diaz8422a842018-08-16 15:42:44 +0100392endif
393
Justin Chadwell1f461972019-08-20 11:01:52 +0100394ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100395 BL_COMMON_SOURCES += plat/common/ubsan.c
Justin Chadwell1f461972019-08-20 11:01:52 +0100396endif
397
Yann Gautier01d237c2018-06-18 16:00:23 +0200398INCLUDES += -Iinclude \
Antonio Nino Diazf5478de2018-12-17 17:20:57 +0000399 -Iinclude/arch/${ARCH} \
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +0000400 -Iinclude/lib/cpus/${ARCH} \
401 -Iinclude/lib/el3_runtime/${ARCH} \
402 ${PLAT_INCLUDES} \
403 ${SPD_INCLUDES}
404
Nishant Sharmae03dcc82022-08-15 16:37:07 +0100405DTC_FLAGS += -I dts -O dtb
406DTC_CPPFLAGS += -P -nostdinc $(INCLUDES) -Ifdts -undef \
407 -x assembler-with-cpp $(DEFINES)
408
Antonio Nino Diaz9c6d1c52018-11-19 11:48:30 +0000409include common/backtrace/backtrace.mk
410
Juan Castillo73c99d42015-08-18 14:23:04 +0100411################################################################################
Govindraj Raja35472702023-09-20 14:32:24 -0500412# Generic definitions
413################################################################################
414include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
415
416ifeq (${BUILD_BASE},)
417 BUILD_BASE := ./build
418endif
419BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
420
421SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
422
423# Platforms providing their own TBB makefile may override this value
424INCLUDE_TBBR_MK := 1
425
426################################################################################
427# Include SPD Makefile if one has been specified
428################################################################################
429
430ifneq (${SPD},none)
431 ifeq (${ARCH},aarch32)
432 $(error "Error: SPD is incompatible with AArch32.")
433 endif
434
435 ifdef EL3_PAYLOAD_BASE
436 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
437 $(warning "The SPD and its BL32 companion will be present but \
438 ignored.")
439 endif
440
441 ifeq (${SPD},spmd)
442 # SPMD is located in std_svc directory
443 SPD_DIR := std_svc
444
445 ifeq ($(SPMD_SPM_AT_SEL2),1)
446 CTX_INCLUDE_EL2_REGS := 1
447 ifeq ($(SPMC_AT_EL3),1)
448 $(error SPM cannot be enabled in both S-EL2 and EL3.)
449 endif
450 endif
451
452 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
453 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
454 endif
455
456 ifeq ($(TS_SP_FW_CONFIG),1)
457 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
458 endif
459
460 ifneq ($(ARM_BL2_SP_LIST_DTS),)
461 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
462 endif
463
464 ifneq ($(SP_LAYOUT_FILE),)
465 BL2_ENABLE_SP_LOAD := 1
466 endif
Govindraj Rajac189adb2023-10-31 14:48:11 -0500467
468 ifeq ($(SPMC_AT_EL3_SEL0_SP),1)
469 ifneq ($(SPMC_AT_EL3),1)
470 $(error SEL0 SP cannot be enabled without SPMC at EL3)
471 endif
472 endif
Govindraj Raja35472702023-09-20 14:32:24 -0500473 else
474 # All other SPDs in spd directory
475 SPD_DIR := spd
476 endif #(SPD)
477
478 # We expect to locate an spd.mk under the specified SPD directory
479 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
480
481 ifeq (${SPD_MAKE},)
482 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
483 endif
484 $(info Including ${SPD_MAKE})
485 include ${SPD_MAKE}
486
487 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
488 # Makefile would set NEED_BL32 to "yes". In this case, the build system
489 # supports two mutually exclusive options:
490 # * BL32 is built from source: then BL32_SOURCES must contain the list
491 # of source files to build BL32
492 # * BL32 is a prebuilt binary: then BL32 must point to the image file
493 # that will be included in the FIP
494 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
495 # over the sources.
496endif #(SPD=none)
497
498ifeq (${ENABLE_SPMD_LP}, 1)
499ifneq (${SPD},spmd)
500 $(error Error: ENABLE_SPMD_LP requires SPD=spmd.)
501endif
502ifeq ($(SPMC_AT_EL3),1)
503 $(error SPMC at EL3 not supported when enabling SPMD Logical partitions.)
504endif
505endif
506
507################################################################################
Govindraj Rajaf5211422023-08-17 10:41:48 -0500508# Process BRANCH_PROTECTION value and set
509# Pointer Authentication and Branch Target Identification flags
510################################################################################
511ifeq (${BRANCH_PROTECTION},0)
512 # Default value turns off all types of branch protection
513 BP_OPTION := none
514else ifneq (${ARCH},aarch64)
515 $(error BRANCH_PROTECTION requires AArch64)
516else ifeq (${BRANCH_PROTECTION},1)
517 # Enables all types of branch protection features
518 BP_OPTION := standard
519 ENABLE_BTI := 1
520 ENABLE_PAUTH := 1
521else ifeq (${BRANCH_PROTECTION},2)
522 # Return address signing to its standard level
523 BP_OPTION := pac-ret
524 ENABLE_PAUTH := 1
525else ifeq (${BRANCH_PROTECTION},3)
526 # Extend the signing to include leaf functions
527 BP_OPTION := pac-ret+leaf
528 ENABLE_PAUTH := 1
529else ifeq (${BRANCH_PROTECTION},4)
530 # Turn on branch target identification mechanism
531 BP_OPTION := bti
532 ENABLE_BTI := 1
533else
534 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
535endif #(BRANCH_PROTECTION)
536
537ifeq ($(ENABLE_PAUTH),1)
538 CTX_INCLUDE_PAUTH_REGS := 1
539endif
540ifneq (${BP_OPTION},none)
541 TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
542endif #(BP_OPTION)
543
544# Pointer Authentication sources
545ifeq (${ENABLE_PAUTH}, 1)
546# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
547# Pauth support. As it's not secure, it must be reimplemented for real platforms
548 BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
549endif
550
Govindraj Raja35472702023-09-20 14:32:24 -0500551################################################################################
552# Include the platform specific Makefile after the SPD Makefile (the platform
553# makefile may use all previous definitions in this file)
554################################################################################
555include ${PLAT_MAKEFILE_FULL}
556
557################################################################################
558# Setup arch_features based on ARM_ARCH_MAJOR, ARM_ARCH_MINOR provided from
559# platform.
560################################################################################
561include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
562
Govindraj Rajaf5211422023-08-17 10:41:48 -0500563####################################################
564# Enable required options for Memory Stack Tagging.
565####################################################
566
567# Currently, these options are enabled only for clang and armclang compiler.
568ifeq (${SUPPORT_STACK_MEMTAG},yes)
569 ifdef mem_tag_arch_support
570 # Check for armclang and clang compilers
Chris Kay8620bd02023-12-04 09:55:50 +0000571 ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
Govindraj Rajaf5211422023-08-17 10:41:48 -0500572 # Add "memtag" architecture feature modifier if not specified
573 ifeq ( ,$(findstring memtag,$(arch-features)))
574 arch-features := $(arch-features)+memtag
575 endif # memtag
Chris Kay8620bd02023-12-04 09:55:50 +0000576 ifeq ($($(ARCH)-cc-id),arm-clang)
Govindraj Rajaf5211422023-08-17 10:41:48 -0500577 TF_CFLAGS += -mmemtag-stack
Chris Kay8620bd02023-12-04 09:55:50 +0000578 else ifeq ($($(ARCH)-cc-id),llvm-clang)
Govindraj Rajaf5211422023-08-17 10:41:48 -0500579 TF_CFLAGS += -fsanitize=memtag
580 endif # armclang
581 endif
582 else
583 $(error "Error: stack memory tagging is not supported for \
584 architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
585 endif #(mem_tag_arch_support)
586endif #(SUPPORT_STACK_MEMTAG)
587
588################################################################################
589# RME dependent flags configuration, Enable optional features for RME.
590################################################################################
591# FEAT_RME
592ifeq (${ENABLE_RME},1)
Govindraj Rajad6380292023-10-12 16:57:46 -0500593 # RME doesn't support BRBE
594 ENABLE_BRBE_FOR_NS := 0
595
Govindraj Rajaf5211422023-08-17 10:41:48 -0500596 # RME doesn't support PIE
597 ifneq (${ENABLE_PIE},0)
598 $(error ENABLE_RME does not support PIE)
599 endif
600
601 # RME doesn't support BRBE
602 ifneq (${ENABLE_BRBE_FOR_NS},0)
603 $(error ENABLE_RME does not support BRBE.)
604 endif
605
606 # RME requires AARCH64
607 ifneq (${ARCH},aarch64)
608 $(error ENABLE_RME requires AArch64)
609 endif
610
611 # RME requires el2 context to be saved for now.
612 CTX_INCLUDE_EL2_REGS := 1
613 CTX_INCLUDE_AARCH32_REGS := 0
614 CTX_INCLUDE_PAUTH_REGS := 1
615
616 # RME enables CSV2_2 extension by default.
617 ENABLE_FEAT_CSV2_2 = 1
618endif #(FEAT_RME)
619
620################################################################################
Zelalem Aweke5b18de02021-07-11 18:33:20 -0500621# Include rmmd Makefile if RME is enabled
622################################################################################
Zelalem Aweke5b18de02021-07-11 18:33:20 -0500623ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100624 ifneq (${ARCH},aarch64)
625 $(error ENABLE_RME requires AArch64)
626 endif
627 ifeq ($(SPMC_AT_EL3),1)
628 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
629 endif
630
631 ifneq (${SPD}, none)
632 ifneq (${SPD}, spmd)
633 $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
634 endif
635 endif
Zelalem Aweke5b18de02021-07-11 18:33:20 -0500636include services/std_svc/rmmd/rmmd.mk
637$(warning "RME is an experimental feature")
638endif
639
Govindraj Raja35472702023-09-20 14:32:24 -0500640ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
641 ifeq (${SPD},none)
642 ifeq (${ENABLE_RME},0)
643 $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
644 or RME is enabled)
645 endif
646 endif
647endif
Juan Castillo0f21c542014-06-25 17:26:36 +0100648
Govindraj Raja7794d6c2023-06-01 16:29:16 -0500649################################################################################
650# Platform specific Makefile might provide us ARCH_MAJOR/MINOR use that to come
651# up with appropriate march values for compiler.
652################################################################################
653include ${MAKE_HELPERS_DIRECTORY}march.mk
654
655TF_CFLAGS += $(march-directive)
Govindraj Raja7275ac22024-01-23 16:00:19 -0600656ASFLAGS += $(march-directive)
Govindraj Raja7794d6c2023-06-01 16:29:16 -0500657
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -0600658# This internal flag is common option which is set to 1 for scenarios
659# when the BL2 is running in EL3 level. This occurs in two scenarios -
660# 4 world system running BL2 at EL3 and two world system without BL1 running
661# BL2 in EL3
662
663ifeq (${RESET_TO_BL2},1)
664 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100665 ifeq (${ENABLE_RME},1)
666 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
667 supported at the moment.)
668 endif
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -0600669else ifeq (${ENABLE_RME},1)
670 BL2_RUNS_AT_EL3 := 1
671else
672 BL2_RUNS_AT_EL3 := 0
673endif
674
Manish Pandeyf87e54f2023-10-10 15:42:19 +0100675# This internal flag is set to 1 when Firmware First handling of External aborts
676# is required by lowe ELs. Currently only NS requires this support.
677ifeq ($(HANDLE_EA_EL3_FIRST_NS),1)
678 FFH_SUPPORT := 1
679else
680 FFH_SUPPORT := 0
681endif
682
Masahiro Yamada8012cc52017-11-04 03:12:28 +0900683$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
684
Etienne Carriere26e63c42017-11-08 13:48:40 +0100685ifeq (${ARM_ARCH_MAJOR},7)
686include make_helpers/armv7-a-cpus.mk
687endif
688
Masahiro Yamada320920c2020-01-17 13:44:37 +0900689PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
690ifneq ($(PIE_FOUND),)
691 TF_CFLAGS += -fno-PIE
Chris Kay8620bd02023-12-04 09:55:50 +0000692ifeq ($($(ARCH)-ld-id),gnu-gcc)
Samuel Holland7b592412022-04-08 21:56:02 -0500693 TF_LDFLAGS += -no-pie
694endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100695endif #(PIE_FOUND)
Masahiro Yamada320920c2020-01-17 13:44:37 +0900696
Chris Kay8620bd02023-12-04 09:55:50 +0000697ifeq ($($(ARCH)-ld-id),gnu-gcc)
Masahiro Yamada320920c2020-01-17 13:44:37 +0900698 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew3bd17c02018-08-28 11:13:55 +0100699else
Masahiro Yamada320920c2020-01-17 13:44:37 +0900700 PIE_LDFLAGS += -pie --no-dynamic-linker
701endif
702
703ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100704 ifeq ($(RESET_TO_BL2),1)
705 ifneq ($(BL2_IN_XIP_MEM),1)
706 BL2_CPPFLAGS += -fpie
707 BL2_CFLAGS += -fpie
708 BL2_LDFLAGS += $(PIE_LDFLAGS)
709 endif #(BL2_IN_XIP_MEM)
710 endif #(RESET_TO_BL2)
Chris Kay966660e2023-02-02 14:39:03 +0000711 BL31_CPPFLAGS += -fpie
712 BL31_CFLAGS += -fpie
Masahiro Yamada320920c2020-01-17 13:44:37 +0900713 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay966660e2023-02-02 14:39:03 +0000714
715 BL32_CPPFLAGS += -fpie
Masahiro Yamadad9743012020-01-17 13:45:14 +0900716 BL32_CFLAGS += -fpie
717 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100718endif #(ENABLE_PIE)
Soby Mathew3bd17c02018-08-28 11:13:55 +0100719
Boyan Karatotev007433d2023-01-25 16:55:18 +0000720BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
721BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
722BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
723
Masahiro Yamada9cefb4b2020-04-01 14:20:58 +0900724BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -0600725ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100726 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamadad5e97a12020-03-26 13:18:48 +0900727else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100728 BL2_CPPFLAGS += -DIMAGE_AT_EL1
729endif #(RESET_TO_BL2)
Boyan Karatotev007433d2023-01-25 16:55:18 +0000730
731ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100732 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
733 BL31_CPPFLAGS += -DIMAGE_AT_EL3
734 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatotev007433d2023-01-25 16:55:18 +0000735else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100736 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamadad5e97a12020-03-26 13:18:48 +0900737endif
738
Sandrine Bailleux54035fc2016-01-13 14:57:38 +0000739# Include the CPU specific operations makefile, which provides default
740# values for all CPU errata workarounds and CPU specific optimisations.
741# This can be overridden by the platform.
Juan Castillo73c99d42015-08-18 14:23:04 +0100742include lib/cpus/cpu-ops.mk
Achin Gupta4f6ad662013-10-25 09:08:21 +0100743
dp-arma4409002017-02-15 11:07:55 +0000744################################################################################
745# Build `AARCH32_SP` as BL32 image for AArch32
746################################################################################
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100747ifeq (${ARCH},aarch32)
748 NEED_BL32 := yes
dp-arma4409002017-02-15 11:07:55 +0000749
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100750 ifneq (${AARCH32_SP},none)
751 # We expect to locate an sp.mk under the specified AARCH32_SP directory
752 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-arma4409002017-02-15 11:07:55 +0000753
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100754 ifeq (${AARCH32_SP_MAKE},)
755 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
756 endif
Juan Pablo Conde043f38f2023-08-09 13:19:21 -0500757 $(info Including ${AARCH32_SP_MAKE})
758 include ${AARCH32_SP_MAKE}
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100759 endif
760endif #(ARCH=aarch32)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100761
Juan Castillo73c99d42015-08-18 14:23:04 +0100762################################################################################
Varun Wadekar77f1f7a2019-01-31 09:22:30 -0800763# Include libc if not overridden
764################################################################################
765ifeq (${OVERRIDE_LIBC},0)
766include lib/libc/libc.mk
767endif
768
769################################################################################
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100770# Check incompatible options and dependencies
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000771################################################################################
772
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100773# USE_DEBUGFS experimental feature recommended only in debug builds
774ifeq (${USE_DEBUGFS},1)
775 ifeq (${DEBUG},1)
776 $(warning DEBUGFS experimental feature is enabled.)
777 else
778 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000779 endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100780endif #(USE_DEBUGFS)
781
782# USE_SPINLOCK_CAS requires AArch64 build
783ifeq (${USE_SPINLOCK_CAS},1)
784 ifneq (${ARCH},aarch64)
785 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xu76580f32017-08-24 11:03:23 +0800786 endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100787endif #(USE_SPINLOCK_CAS)
788
789# The cert_create tool cannot generate certificates individually, so we use the
790# target 'certificates' to create them all
791ifneq (${GENERATE_COT},0)
792 FIP_DEPS += certificates
793 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000794endif
795
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100796ifneq (${DECRYPTION_SUPPORT},none)
797 ENC_ARGS += -f ${FW_ENC_STATUS}
798 ENC_ARGS += -k ${ENC_KEY}
799 ENC_ARGS += -n ${ENC_NONCE}
800 FIP_DEPS += enctool
801 FWU_FIP_DEPS += enctool
802endif #(DECRYPTION_SUPPORT)
803
804ifdef EL3_PAYLOAD_BASE
805 ifdef PRELOADED_BL33_BASE
806 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
807 incompatible build options. EL3_PAYLOAD_BASE has priority.")
808 endif
809 ifneq (${GENERATE_COT},0)
810 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
811 build options.")
812 endif
813 ifneq (${TRUSTED_BOARD_BOOT},0)
814 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
815 incompatible \ build options.")
816 endif
817endif #(EL3_PAYLOAD_BASE)
818
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000819ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100820 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000821 $(warning "BL33 image is not needed when option \
822 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100823 endif
824 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz68450a62016-04-06 17:31:57 +0100825 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100826 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
827 endif
828endif #(NEED_BL33)
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000829
Jeenu Viswambharand4593e42017-01-06 16:14:42 +0000830# When building for systems with hardware-assisted coherency, there's no need to
831# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
832ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100833 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharand4593e42017-01-06 16:14:42 +0000834endif
Yatharth Kochar1a0a3f02016-06-28 16:58:26 +0100835
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -0600836#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
837ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100838 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan7d173fc2018-03-21 07:20:09 +0000839endif
840
Manish Pandey9202d512023-02-13 12:39:17 +0000841# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan14c60162018-04-04 16:07:11 +0100842ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100843 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
Manish Pandeyf87e54f2023-10-10 15:42:19 +0100844 and HANDLE_EA_EL3_FIRST_NS instead")
Manish Pandey9202d512023-02-13 12:39:17 +0000845endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100846
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100847
Manish Pandey9202d512023-02-13 12:39:17 +0000848# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharan1a7c1cf2017-12-08 12:13:51 +0000849ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100850 ifeq ($(ENABLE_FEAT_RAS),0)
851 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
852 endif
853endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharan1a7c1cf2017-12-08 12:13:51 +0000854
Roberto Vargased51b512018-09-24 17:20:48 +0100855# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew209a60c2018-03-26 12:43:37 +0100856ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100857 ifeq (${TRUSTED_BOARD_BOOT}, 0)
858 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
859 to be set.")
860 endif
861endif #(DYN_DISABLE_AUTH)
Soby Mathew209a60c2018-03-26 12:43:37 +0100862
Manish V Badarkhe2bf4f272022-06-20 15:32:38 +0100863ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
864# Support authentication verification and hash calculation
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100865 CRYPTO_SUPPORT := 3
Manish V Badarkhe2bf4f272022-06-20 15:32:38 +0100866else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
867# Support authentication verification and hash calculation
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100868 CRYPTO_SUPPORT := 3
Manish V Badarkhe2bf4f272022-06-20 15:32:38 +0100869else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
870# Support hash calculation only
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100871 CRYPTO_SUPPORT := 2
Manish V Badarkhe2bf4f272022-06-20 15:32:38 +0100872else ifeq (${TRUSTED_BOARD_BOOT},1)
873# Support authentication verification only
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100874 CRYPTO_SUPPORT := 1
Manish V Badarkhec9c56f62022-01-08 22:56:06 +0000875else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100876 CRYPTO_SUPPORT := 0
877endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhec9c56f62022-01-08 22:56:06 +0000878
Balint Dobszaycbf9e842019-12-18 15:28:00 +0100879# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
880ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100881 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhe84ef9cd2020-06-29 10:32:53 +0100882endif
883
Antonio Nino Diazb86048c2019-02-19 11:53:51 +0000884# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100885# registers associated to it are also saved and restored.
886# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
Antonio Nino Diazb86048c2019-02-19 11:53:51 +0000887ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100888 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
889 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
890 endif
891endif #(ENABLE_PAUTH)
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100892
893ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100894 ifneq (${ARCH},aarch64)
895 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
896 endif
897endif #(CTX_INCLUDE_PAUTH_REGS)
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100898
Manish V Badarkhe396b3392021-06-25 23:28:59 +0100899ifeq ($(PSA_FWU_SUPPORT),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100900 $(info PSA_FWU_SUPPORT is an experimental feature)
901endif #(PSA_FWU_SUPPORT)
Manish V Badarkhe396b3392021-06-25 23:28:59 +0100902
Jayanth Dodderi Chidanand6a0da732022-01-17 18:57:17 +0000903ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100904 $(info FEATURE_DETECTION is an experimental feature)
905endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand6a0da732022-01-17 18:57:17 +0000906
Jayanth Dodderi Chidanand03d3c0d2022-11-08 10:31:07 +0000907ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100908 ifeq (${ENABLE_SME_FOR_NS}, 0)
909 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
910 to be set")
911 $(warning "Forced ENABLE_SME_FOR_NS=1")
912 override ENABLE_SME_FOR_NS := 1
913 endif
914endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand45007ac2023-03-06 23:56:14 +0000915
Petre-Ionut Tudor60e8f3c2019-11-07 15:18:03 +0000916ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100917 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
918 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
919 library v2")
920 endif
921endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudor60e8f3c2019-11-07 15:18:03 +0000922
Sumit Garg7cda17b2019-11-15 10:43:00 +0530923ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100924 ifeq (${TRUSTED_BOARD_BOOT}, 0)
925 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
926 to be set)
927 endif
928endif #(DECRYPTION_SUPPORT)
Sumit Garg7cda17b2019-11-15 10:43:00 +0530929
johpow01744ad972022-01-28 17:06:20 -0600930# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow01dc78e622021-07-08 14:14:00 -0500931ifeq (${ARCH},aarch32)
johpow01744ad972022-01-28 17:06:20 -0600932
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100933 # SME/SVE only supported on AArch64
934 ifneq (${ENABLE_SME_FOR_NS},0)
935 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
936 endif
Jayanth Dodderi Chidanand03d3c0d2022-11-08 10:31:07 +0000937
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100938 ifeq (${ENABLE_SVE_FOR_NS},1)
939 # Warning instead of error due to CI dependency on this
940 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
941 endif
johpow01744ad972022-01-28 17:06:20 -0600942
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100943 # BRBE is not supported in AArch32
944 ifeq (${ENABLE_BRBE_FOR_NS},1)
945 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
946 endif
johpow01744ad972022-01-28 17:06:20 -0600947
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100948 # FEAT_RNG_TRAP is not supported in AArch32
949 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
950 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
951 endif
952endif #(ARCH=aarch32)
johpow01dc78e622021-07-08 14:14:00 -0500953
Boyan Karatotev0d122942023-03-08 16:29:26 +0000954ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100955 ifeq (${ENABLE_SVE_FOR_NS},0)
956 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
957 endif
958endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev0d122942023-03-08 16:29:26 +0000959
johpow01dc78e622021-07-08 14:14:00 -0500960# Secure SME/SVE requires the non-secure component as well
961ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100962 ifeq (${ENABLE_SME_FOR_NS},0)
963 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
964 endif
965 ifeq (${ENABLE_SVE_FOR_SWD},0)
966 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
967 endif
968endif #(ENABLE_SME_FOR_SWD)
969
johpow01dc78e622021-07-08 14:14:00 -0500970ifeq (${ENABLE_SVE_FOR_SWD},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100971 ifeq (${ENABLE_SVE_FOR_NS},0)
972 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
973 endif
974endif #(ENABLE_SVE_FOR_SWD)
johpow01dc78e622021-07-08 14:14:00 -0500975
976# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
977# its own context management including FPU registers.
978ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100979 ifneq (${ENABLE_SME_FOR_NS},0)
980 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
981 endif
Jayanth Dodderi Chidanand03d3c0d2022-11-08 10:31:07 +0000982
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100983 ifeq (${ENABLE_SVE_FOR_NS},1)
984 # Warning instead of error due to CI dependency on this
985 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
986 $(warning "Forced ENABLE_SVE_FOR_NS=0")
987 override ENABLE_SVE_FOR_NS := 0
988 endif
989endif #(CTX_INCLUDE_FPREGS)
johpow01dc78e622021-07-08 14:14:00 -0500990
Manish V Badarkhe00e28872022-03-02 12:06:35 +0000991ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +0100992 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe00e28872022-03-02 12:06:35 +0000993endif
994
Raymond Mao3ba2c152023-07-25 07:53:35 -0700995ifeq (${TRANSFER_LIST},1)
996 $(info TRANSFER_LIST is an experimental feature)
997endif
998
Chris Kay274a69e2022-09-29 16:21:24 +0100999ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001000 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1001 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1002 endif
Chris Kay274a69e2022-09-29 16:21:24 +01001003endif
1004
Manish V Badarkhe5782b892023-09-06 09:08:28 +01001005ifeq ($(PSA_CRYPTO),1)
1006 $(info PSA_CRYPTO is an experimental feature)
1007endif
1008
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +00001009################################################################################
Juan Castillo73c99d42015-08-18 14:23:04 +01001010# Process platform overrideable behaviour
1011################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001012
Manish Pandey5f24ce92021-10-06 10:59:52 +01001013ifdef BL1_SOURCES
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001014 NEED_BL1 := yes
1015endif #(BL1_SOURCES)
Manish Pandey5f24ce92021-10-06 10:59:52 +01001016
Juan Castillo73c99d42015-08-18 14:23:04 +01001017ifdef BL2_SOURCES
Manish Pandey5f24ce92021-10-06 10:59:52 +01001018 NEED_BL2 := yes
1019
1020 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1021 # Certificate generation tools. This flag can be overridden by the platform.
1022 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001023 # If booting an EL3 payload there is no need for a BL33 image
1024 # in the FIP file.
1025 NEED_BL33 := no
1026 else
1027 ifdef PRELOADED_BL33_BASE
1028 # If booting a BL33 preloaded image there is no need of
1029 # another one in the FIP file.
1030 NEED_BL33 := no
1031 else
1032 NEED_BL33 ?= yes
1033 endif
1034 endif
1035endif #(BL2_SOURCES)
Juan Castillo73c99d42015-08-18 14:23:04 +01001036
Manish Pandey5f24ce92021-10-06 10:59:52 +01001037ifdef BL2U_SOURCES
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001038 NEED_BL2U := yes
1039endif #(BL2U_SOURCES)
Manish Pandey5f24ce92021-10-06 10:59:52 +01001040
Masahiro Yamada4d045d02017-04-05 19:11:41 +09001041# If SCP_BL2 is given, we always want FIP to include it.
1042ifdef SCP_BL2
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001043 NEED_SCP_BL2 := yes
1044endif #(SCP_BL2)
Masahiro Yamada4d045d02017-04-05 19:11:41 +09001045
Soby Mathew5744e872017-11-14 14:10:10 +00001046# For AArch32, BL31 is not currently supported.
1047ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001048 ifdef BL31_SOURCES
1049 # When booting an EL3 payload, there is no need to compile the BL31
1050 # image nor put it in the FIP.
1051 ifndef EL3_PAYLOAD_BASE
1052 NEED_BL31 := yes
1053 endif
1054 endif
1055endif #(ARCH=aarch64)
Soby Mathew5744e872017-11-14 14:10:10 +00001056
Juan Castillo73c99d42015-08-18 14:23:04 +01001057# Process TBB related flags
1058ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001059 # Common cert_create options
1060 ifneq (${CREATE_KEYS},0)
Juan Castillo73c99d42015-08-18 14:23:04 +01001061 $(eval CRT_ARGS += -n)
Yatharth Kochar01912622015-10-12 12:33:47 +01001062 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001063 ifneq (${SAVE_KEYS},0)
Juan Castillo73c99d42015-08-18 14:23:04 +01001064 $(eval CRT_ARGS += -k)
Yatharth Kochar01912622015-10-12 12:33:47 +01001065 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001066 endif
1067 endif
1068 # Include TBBR makefile (unless the platform indicates otherwise)
1069 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castillo73c99d42015-08-18 14:23:04 +01001070 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001071 endif
1072endif #(GENERATE_COT)
Juan Castillo73c99d42015-08-18 14:23:04 +01001073
Masahiro Yamada1c75d5d2016-12-25 13:52:22 +09001074ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001075 FIP_ARGS += --align ${FIP_ALIGN}
1076endif #(FIP_ALIGN)
Masahiro Yamada1c75d5d2016-12-25 13:52:22 +09001077
Manish Pandey5f24ce92021-10-06 10:59:52 +01001078ifdef FDT_SOURCES
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001079 NEED_FDT := yes
1080endif #(FDT_SOURCES)
Manish Pandey5f24ce92021-10-06 10:59:52 +01001081
Juan Castillo73c99d42015-08-18 14:23:04 +01001082################################################################################
Michalis Pappas46e5e032018-03-20 13:01:27 +08001083# Include libraries' Makefile that are used in all BL
1084################################################################################
1085
1086include lib/stack_protector/stack_protector.mk
1087
1088################################################################################
Soby Mathew8a860522017-02-14 10:05:07 +00001089# Include BL specific makefiles
1090################################################################################
Manish Pandey5f24ce92021-10-06 10:59:52 +01001091
1092ifeq (${NEED_BL1},yes)
Soby Mathew8a860522017-02-14 10:05:07 +00001093include bl1/bl1.mk
1094endif
1095
Manish Pandey5f24ce92021-10-06 10:59:52 +01001096ifeq (${NEED_BL2},yes)
Soby Mathew8a860522017-02-14 10:05:07 +00001097include bl2/bl2.mk
1098endif
1099
Manish Pandey5f24ce92021-10-06 10:59:52 +01001100ifeq (${NEED_BL2U},yes)
Soby Mathew8a860522017-02-14 10:05:07 +00001101include bl2u/bl2u.mk
1102endif
1103
Soby Mathew5744e872017-11-14 14:10:10 +00001104ifeq (${NEED_BL31},yes)
Soby Mathew8a860522017-02-14 10:05:07 +00001105include bl31/bl31.mk
1106endif
Nishanth Menon03b397a2016-10-14 01:13:57 +00001107
Juan Castillo73c99d42015-08-18 14:23:04 +01001108################################################################################
1109# Build options checks
1110################################################################################
Juan Castillob7124ea2014-11-04 17:36:40 +00001111
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001112# Boolean_Flags
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001113$(eval $(call assert_booleans,\
1114 $(sort \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001115 ALLOW_RO_XLAT_TABLES \
1116 BL2_ENABLE_SP_LOAD \
1117 COLD_BOOT_SINGLE_CPU \
1118 CREATE_KEYS \
1119 CTX_INCLUDE_AARCH32_REGS \
1120 CTX_INCLUDE_FPREGS \
1121 CTX_INCLUDE_EL2_REGS \
Arvind Ram Prakash9acff282023-10-06 14:35:21 -05001122 CTX_INCLUDE_MPAM_REGS \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001123 DEBUG \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001124 DYN_DISABLE_AUTH \
1125 EL3_EXCEPTION_HANDLING \
1126 ENABLE_AMU_AUXILIARY_COUNTERS \
1127 ENABLE_AMU_FCONF \
1128 AMU_RESTRICT_COUNTERS \
1129 ENABLE_ASSERTIONS \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001130 ENABLE_PIE \
1131 ENABLE_PMF \
1132 ENABLE_PSCI_STAT \
1133 ENABLE_RUNTIME_INSTRUMENTATION \
1134 ENABLE_SME_FOR_SWD \
1135 ENABLE_SVE_FOR_SWD \
Manish Pandey970a4a82023-10-10 13:53:25 +01001136 ENABLE_FEAT_RAS \
Manish Pandeyf87e54f2023-10-10 15:42:19 +01001137 FFH_SUPPORT \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001138 ERROR_DEPRECATED \
1139 FAULT_INJECTION_SUPPORT \
1140 GENERATE_COT \
1141 GICV2_G0_FOR_EL3 \
1142 HANDLE_EA_EL3_FIRST_NS \
Bipin Ravi538516f2023-09-28 13:17:24 -05001143 HARDEN_SLS \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001144 HW_ASSISTED_COHERENCY \
1145 MEASURED_BOOT \
1146 DRTM_SUPPORT \
1147 NS_TIMER_SWITCH \
1148 OVERRIDE_LIBC \
1149 PL011_GENERIC_UART \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001150 PROGRAMMABLE_RESET_ADDRESS \
1151 PSCI_EXTENDED_STATE_ID \
1152 PSCI_OS_INIT_MODE \
1153 RESET_TO_BL31 \
1154 SAVE_KEYS \
1155 SEPARATE_CODE_AND_RODATA \
1156 SEPARATE_BL2_NOLOAD_REGION \
1157 SEPARATE_NOBITS_REGION \
1158 SPIN_ON_BL1_EXIT \
1159 SPM_MM \
1160 SPMC_AT_EL3 \
Nishant Sharma801cd3c2023-06-27 00:36:01 +01001161 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001162 SPMD_SPM_AT_SEL2 \
Raghu Krishnamurthy890b5082023-02-25 13:26:10 -08001163 ENABLE_SPMD_LP \
Raymond Mao3ba2c152023-07-25 07:53:35 -07001164 TRANSFER_LIST \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001165 TRUSTED_BOARD_BOOT \
1166 USE_COHERENT_MEM \
1167 USE_DEBUGFS \
1168 ARM_IO_IN_DTB \
1169 SDEI_IN_FCONF \
1170 SEC_INT_DESC_IN_FCONF \
1171 USE_ROMLIB \
1172 USE_TBBR_DEFS \
1173 WARMBOOT_ENABLE_DCACHE_EARLY \
1174 RESET_TO_BL2 \
1175 BL2_IN_XIP_MEM \
1176 BL2_INV_DCACHE \
1177 USE_SPINLOCK_CAS \
1178 ENCRYPT_BL31 \
1179 ENCRYPT_BL32 \
1180 ERRATA_SPECULATIVE_AT \
1181 RAS_TRAP_NS_ERR_REC_ACCESS \
1182 COT_DESC_IN_DTB \
1183 USE_SP804_TIMER \
1184 PSA_FWU_SUPPORT \
1185 ENABLE_MPMM \
1186 ENABLE_MPMM_FCONF \
1187 FEATURE_DETECTION \
Jayanth Dodderi Chidanand0b22e592022-10-11 17:16:07 +01001188 TRNG_SUPPORT \
Sona Mathewffea3842022-11-18 18:05:38 -06001189 ERRATA_ABI_SUPPORT \
Sona Mathewef63f5b2023-03-14 14:02:03 -05001190 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja04c73032022-11-04 12:38:01 +00001191 CONDITIONAL_CMO \
Manish V Badarkhe5782b892023-09-06 09:08:28 +01001192 PSA_CRYPTO \
Sandrine Bailleux85bebe12023-10-11 08:38:00 +02001193 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash183329a2023-08-15 16:28:06 -05001194 INIT_UNUSED_NS_EL2 \
Juan Pablo Condebfef8b92023-11-08 16:14:28 -06001195 PLATFORM_REPORT_CTX_MEM_USE \
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001196)))
Juan Castillo73c99d42015-08-18 14:23:04 +01001197
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001198# Numeric_Flags
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001199$(eval $(call assert_numerics,\
1200 $(sort \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001201 ARM_ARCH_MAJOR \
1202 ARM_ARCH_MINOR \
1203 BRANCH_PROTECTION \
1204 CTX_INCLUDE_PAUTH_REGS \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001205 CTX_INCLUDE_NEVE_REGS \
1206 CRYPTO_SUPPORT \
Boyan Karatotev83a4dae2023-02-16 09:45:29 +00001207 DISABLE_MTPMU \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001208 ENABLE_BRBE_FOR_NS \
1209 ENABLE_TRBE_FOR_NS \
1210 ENABLE_BTI \
1211 ENABLE_PAUTH \
1212 ENABLE_FEAT_AMU \
1213 ENABLE_FEAT_AMUv1p1 \
1214 ENABLE_FEAT_CSV2_2 \
Sona Mathew30019d82023-10-25 16:48:19 -05001215 ENABLE_FEAT_CSV2_3 \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001216 ENABLE_FEAT_DIT \
1217 ENABLE_FEAT_ECV \
1218 ENABLE_FEAT_FGT \
1219 ENABLE_FEAT_HCX \
Govindraj Raja0a33adc2023-12-21 13:57:49 -06001220 ENABLE_FEAT_MTE \
Govindraj Raja8e397882024-01-26 10:08:37 -06001221 ENABLE_FEAT_MTE2 \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001222 ENABLE_FEAT_PAN \
1223 ENABLE_FEAT_RNG \
1224 ENABLE_FEAT_RNG_TRAP \
1225 ENABLE_FEAT_SEL2 \
1226 ENABLE_FEAT_TCR2 \
Govindraj Raja0e4daed2024-01-23 16:03:53 -06001227 ENABLE_FEAT_SB \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001228 ENABLE_FEAT_S2PIE \
1229 ENABLE_FEAT_S1PIE \
1230 ENABLE_FEAT_S2POE \
1231 ENABLE_FEAT_S1POE \
1232 ENABLE_FEAT_GCS \
1233 ENABLE_FEAT_VHE \
Maksims Svecovs4d0b6632023-03-24 13:05:09 +00001234 ENABLE_FEAT_MTE_PERM \
Arvind Ram Prakashedebefb2023-10-11 12:10:56 -05001235 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001236 ENABLE_RME \
1237 ENABLE_SPE_FOR_NS \
1238 ENABLE_SYS_REG_TRACE_FOR_NS \
1239 ENABLE_SME_FOR_NS \
1240 ENABLE_SME2_FOR_NS \
1241 ENABLE_SVE_FOR_NS \
1242 ENABLE_TRF_FOR_NS \
1243 FW_ENC_STATUS \
1244 NR_OF_FW_BANKS \
1245 NR_OF_IMAGES_IN_FW_BANK \
1246 TWED_DELAY \
1247 ENABLE_FEAT_TWED \
1248 SVE_VECTOR_LEN \
Varun Wadekar0ed3be62023-04-13 21:06:18 +01001249 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001250)))
Jeenu Viswambharanc877b412017-01-16 16:52:35 +00001251
Justin Chadwellaacff742019-07-29 17:13:10 +01001252ifdef KEY_SIZE
1253 $(eval $(call assert_numeric,KEY_SIZE))
1254endif
1255
Justin Chadwell1f461972019-08-20 11:01:52 +01001256ifeq ($(filter $(SANITIZE_UB), on off trap),)
1257 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1258endif
1259
Juan Castillo73c99d42015-08-18 14:23:04 +01001260################################################################################
1261# Add definitions to the cpp preprocessor based on the current build options.
1262# This is done after including the platform specific makefile to allow the
1263# platform to overwrite the default options
1264################################################################################
1265
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001266$(eval $(call add_defines,\
1267 $(sort \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001268 ALLOW_RO_XLAT_TABLES \
1269 ARM_ARCH_MAJOR \
1270 ARM_ARCH_MINOR \
1271 BL2_ENABLE_SP_LOAD \
1272 COLD_BOOT_SINGLE_CPU \
1273 CTX_INCLUDE_AARCH32_REGS \
1274 CTX_INCLUDE_FPREGS \
1275 CTX_INCLUDE_PAUTH_REGS \
Arvind Ram Prakash9acff282023-10-06 14:35:21 -05001276 CTX_INCLUDE_MPAM_REGS \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001277 EL3_EXCEPTION_HANDLING \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001278 CTX_INCLUDE_EL2_REGS \
1279 CTX_INCLUDE_NEVE_REGS \
1280 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1281 DISABLE_MTPMU \
1282 ENABLE_FEAT_AMU \
1283 ENABLE_AMU_AUXILIARY_COUNTERS \
1284 ENABLE_AMU_FCONF \
1285 AMU_RESTRICT_COUNTERS \
1286 ENABLE_ASSERTIONS \
1287 ENABLE_BTI \
Arvind Ram Prakashedebefb2023-10-11 12:10:56 -05001288 ENABLE_FEAT_MPAM \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001289 ENABLE_PAUTH \
1290 ENABLE_PIE \
1291 ENABLE_PMF \
1292 ENABLE_PSCI_STAT \
1293 ENABLE_RME \
1294 ENABLE_RUNTIME_INSTRUMENTATION \
1295 ENABLE_SME_FOR_NS \
1296 ENABLE_SME2_FOR_NS \
1297 ENABLE_SME_FOR_SWD \
1298 ENABLE_SPE_FOR_NS \
1299 ENABLE_SVE_FOR_NS \
1300 ENABLE_SVE_FOR_SWD \
Manish Pandey970a4a82023-10-10 13:53:25 +01001301 ENABLE_FEAT_RAS \
Manish Pandeyf87e54f2023-10-10 15:42:19 +01001302 FFH_SUPPORT \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001303 ENCRYPT_BL31 \
1304 ENCRYPT_BL32 \
1305 ERROR_DEPRECATED \
1306 FAULT_INJECTION_SUPPORT \
1307 GICV2_G0_FOR_EL3 \
1308 HANDLE_EA_EL3_FIRST_NS \
1309 HW_ASSISTED_COHERENCY \
1310 LOG_LEVEL \
1311 MEASURED_BOOT \
1312 DRTM_SUPPORT \
1313 NS_TIMER_SWITCH \
1314 PL011_GENERIC_UART \
1315 PLAT_${PLAT} \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001316 PROGRAMMABLE_RESET_ADDRESS \
1317 PSCI_EXTENDED_STATE_ID \
1318 PSCI_OS_INIT_MODE \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001319 RESET_TO_BL31 \
1320 SEPARATE_CODE_AND_RODATA \
1321 SEPARATE_BL2_NOLOAD_REGION \
1322 SEPARATE_NOBITS_REGION \
1323 RECLAIM_INIT_CODE \
1324 SPD_${SPD} \
1325 SPIN_ON_BL1_EXIT \
1326 SPM_MM \
1327 SPMC_AT_EL3 \
Nishant Sharma801cd3c2023-06-27 00:36:01 +01001328 SPMC_AT_EL3_SEL0_SP \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001329 SPMD_SPM_AT_SEL2 \
Raymond Mao3ba2c152023-07-25 07:53:35 -07001330 TRANSFER_LIST \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001331 TRUSTED_BOARD_BOOT \
1332 CRYPTO_SUPPORT \
1333 TRNG_SUPPORT \
1334 ERRATA_ABI_SUPPORT \
Sona Mathewef63f5b2023-03-14 14:02:03 -05001335 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001336 USE_COHERENT_MEM \
1337 USE_DEBUGFS \
1338 ARM_IO_IN_DTB \
1339 SDEI_IN_FCONF \
1340 SEC_INT_DESC_IN_FCONF \
1341 USE_ROMLIB \
1342 USE_TBBR_DEFS \
1343 WARMBOOT_ENABLE_DCACHE_EARLY \
1344 RESET_TO_BL2 \
1345 BL2_RUNS_AT_EL3 \
1346 BL2_IN_XIP_MEM \
1347 BL2_INV_DCACHE \
1348 USE_SPINLOCK_CAS \
1349 ERRATA_SPECULATIVE_AT \
1350 RAS_TRAP_NS_ERR_REC_ACCESS \
1351 COT_DESC_IN_DTB \
1352 USE_SP804_TIMER \
1353 ENABLE_FEAT_RNG \
1354 ENABLE_FEAT_RNG_TRAP \
1355 ENABLE_FEAT_SB \
1356 ENABLE_FEAT_DIT \
1357 NR_OF_FW_BANKS \
1358 NR_OF_IMAGES_IN_FW_BANK \
1359 PSA_FWU_SUPPORT \
1360 ENABLE_BRBE_FOR_NS \
1361 ENABLE_TRBE_FOR_NS \
1362 ENABLE_SYS_REG_TRACE_FOR_NS \
1363 ENABLE_TRF_FOR_NS \
1364 ENABLE_FEAT_HCX \
1365 ENABLE_MPMM \
1366 ENABLE_MPMM_FCONF \
1367 ENABLE_FEAT_FGT \
1368 ENABLE_FEAT_ECV \
1369 ENABLE_FEAT_AMUv1p1 \
1370 ENABLE_FEAT_SEL2 \
1371 ENABLE_FEAT_VHE \
1372 ENABLE_FEAT_CSV2_2 \
Sona Mathew30019d82023-10-25 16:48:19 -05001373 ENABLE_FEAT_CSV2_3 \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001374 ENABLE_FEAT_PAN \
1375 ENABLE_FEAT_TCR2 \
1376 ENABLE_FEAT_S2PIE \
1377 ENABLE_FEAT_S1PIE \
1378 ENABLE_FEAT_S2POE \
1379 ENABLE_FEAT_S1POE \
1380 ENABLE_FEAT_GCS \
Govindraj Raja0a33adc2023-12-21 13:57:49 -06001381 ENABLE_FEAT_MTE \
Govindraj Raja8e397882024-01-26 10:08:37 -06001382 ENABLE_FEAT_MTE2 \
Maksims Svecovs4d0b6632023-03-24 13:05:09 +00001383 ENABLE_FEAT_MTE_PERM \
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001384 FEATURE_DETECTION \
1385 TWED_DELAY \
1386 ENABLE_FEAT_TWED \
Okash Khawaja04c73032022-11-04 12:38:01 +00001387 CONDITIONAL_CMO \
Varun Wadekar0ed3be62023-04-13 21:06:18 +01001388 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidananda8cf6fa2023-04-26 15:57:30 +01001389 SVE_VECTOR_LEN \
Raghu Krishnamurthy890b5082023-02-25 13:26:10 -08001390 ENABLE_SPMD_LP \
Manish V Badarkhe5782b892023-09-06 09:08:28 +01001391 PSA_CRYPTO \
Sandrine Bailleux85bebe12023-10-11 08:38:00 +02001392 ENABLE_CONSOLE_GETC \
Arvind Ram Prakash183329a2023-08-15 16:28:06 -05001393 INIT_UNUSED_NS_EL2 \
Juan Pablo Condebfef8b92023-11-08 16:14:28 -06001394 PLATFORM_REPORT_CTX_MEM_USE \
Leonardo Sandoval327131c2020-09-10 12:18:27 -05001395)))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +01001396
Juan Pablo Condebfef8b92023-11-08 16:14:28 -06001397ifeq (${PLATFORM_REPORT_CTX_MEM_USE}, 1)
1398ifeq (${DEBUG}, 0)
1399 $(warning "PLATFORM_REPORT_CTX_MEM_USE can be applied when DEBUG=1 only")
1400 override PLATFORM_REPORT_CTX_MEM_USE := 0
1401endif
1402endif
1403
Justin Chadwell1f461972019-08-20 11:01:52 +01001404ifeq (${SANITIZE_UB},trap)
1405 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001406endif #(SANITIZE_UB)
Justin Chadwell1f461972019-08-20 11:01:52 +01001407
Sandrine Bailleux4c117f62015-11-26 16:31:34 +00001408# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1409ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +00001410 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1411else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001412# Define the PRELOADED_BL33_BASE flag only if it is provided and
1413# EL3_PAYLOAD_BASE is not defined, as it has priority.
1414 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz68450a62016-04-06 17:31:57 +01001415 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001416 endif
1417endif #(EL3_PAYLOAD_BASE)
Juan Castillo73c99d42015-08-18 14:23:04 +01001418
Soby Mathew209a60c2018-03-26 12:43:37 +01001419# Define the DYN_DISABLE_AUTH flag only if set.
1420ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001421 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew209a60c2018-03-26 12:43:37 +01001422endif
1423
Chris Kay8620bd02023-12-04 09:55:50 +00001424ifeq ($($(ARCH)-ld-id),arm-link)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001425 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekarc2ad38c2019-01-11 14:47:48 -08001426endif
1427
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001428# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001429ifeq (${SPD},spmd)
Olivier Deprezc33ff192020-03-19 09:27:11 +01001430ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001431 -include $(BUILD_PLAT)/sp_gen.mk
1432 FIP_DEPS += sp
1433 CRT_DEPS += sp
1434 NEED_SP_PKG := yes
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001435else
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001436 ifeq (${SPMD_SPM_AT_SEL2},1)
1437 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1438 endif
1439endif #(SP_LAYOUT_FILE)
1440endif #(SPD)
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001441
Juan Castillo73c99d42015-08-18 14:23:04 +01001442################################################################################
Juan Castillo73c99d42015-08-18 14:23:04 +01001443# Build targets
1444################################################################################
1445
Sumit Garg90aa9012019-11-11 18:46:36 +05301446.PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp fwu_fip certtool dtbs memmap doc enctool
Juan Castillo73c99d42015-08-18 14:23:04 +01001447.SUFFIXES:
1448
1449all: msg_start
1450
1451msg_start:
1452 @echo "Building ${PLAT}"
1453
Soby Mathew7a24cba2015-10-26 14:29:21 +00001454ifeq (${ERROR_DEPRECATED},0)
Julius Wernerd5dfdeb2019-07-09 13:49:11 -07001455# Check if deprecated declarations and cpp warnings should be treated as error or not.
Chris Kay8620bd02023-12-04 09:55:50 +00001456ifneq ($(filter %-clang,$($(ARCH)-cc-id)),)
Varun Wadekarc2ad38c2019-01-11 14:47:48 -08001457 CPPFLAGS += -Wno-error=deprecated-declarations
1458else
Dan Handleybc1a03c2018-02-27 16:03:58 +00001459 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew7a24cba2015-10-26 14:29:21 +00001460endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001461endif #(!ERROR_DEPRECATED)
Soby Mathew7a24cba2015-10-26 14:29:21 +00001462
Roberto Vargas5accce52018-05-22 16:05:42 +01001463$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas61f72a32018-05-08 10:27:10 +01001464$(eval $(call MAKE_LIB,c))
Roberto Vargas5fee0282018-05-08 10:27:10 +01001465
Juan Castillo73c99d42015-08-18 14:23:04 +01001466# Expand build macros for the different images
1467ifeq (${NEED_BL1},yes)
Chris Kayb34635a2021-09-28 15:44:19 +01001468BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Aweke434d0492021-07-11 17:25:48 -05001469$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001470endif #(NEED_BL1)
Juan Castillo73c99d42015-08-18 14:23:04 +01001471
1472ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001473
Arvind Ram Prakash42d4d3b2022-11-22 14:41:00 -06001474ifeq (${RESET_TO_BL2}, 0)
Roberto Vargasc9b31ae2018-01-02 11:23:41 +00001475FIP_BL2_ARGS := tb-fw
1476endif
1477
Chris Kayeb1acfb2021-09-28 15:44:37 +01001478BL2_SOURCES := $(sort ${BL2_SOURCES})
1479
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001480$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Aweke434d0492021-07-11 17:25:48 -05001481 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001482
1483endif #(NEED_BL2)
Juan Castillo73c99d42015-08-18 14:23:04 +01001484
Masahiro Yamada4d045d02017-04-05 19:11:41 +09001485ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001486$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001487endif #(NEED_SCP_BL2)
Masahiro Yamada4d045d02017-04-05 19:11:41 +09001488
Juan Castillo73c99d42015-08-18 14:23:04 +01001489ifeq (${NEED_BL31},yes)
1490BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddy26d1e0c2020-01-27 13:37:51 -06001491# Sort BL31 source files to remove duplicates
1492BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargc6ba9b42019-11-14 16:33:45 +05301493ifneq (${DECRYPTION_SUPPORT},none)
1494$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Aweke434d0492021-07-11 17:25:48 -05001495 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargc6ba9b42019-11-14 16:33:45 +05301496else
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001497$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Aweke434d0492021-07-11 17:25:48 -05001498 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001499endif #(DECRYPTION_SUPPORT)
1500endif #(NEED_BL31)
Juan Castillo73c99d42015-08-18 14:23:04 +01001501
Juan Castillo70d1fc52015-11-12 10:59:26 +00001502# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamadac939d132018-01-26 11:42:01 +09001503# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo70d1fc52015-11-12 10:59:26 +00001504# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castillo73c99d42015-08-18 14:23:04 +01001505ifeq (${NEED_BL32},yes)
Madhukar Pappireddy26d1e0c2020-01-27 13:37:51 -06001506# Sort BL32 source files to remove duplicates
1507BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada9cd15232018-01-26 11:42:01 +09001508BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1509
Sumit Gargc6ba9b42019-11-14 16:33:45 +05301510ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Aweke434d0492021-07-11 17:25:48 -05001511$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargc6ba9b42019-11-14 16:33:45 +05301512 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1513else
Zelalem Aweke434d0492021-07-11 17:25:48 -05001514$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001515 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001516endif #(DECRYPTION_SUPPORT)
1517endif #(NEED_BL32)
Juan Castillo73c99d42015-08-18 14:23:04 +01001518
Zelalem Aweke5b18de02021-07-11 18:33:20 -05001519# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1520# needs to be built from RMM_SOURCES.
1521ifeq (${NEED_RMM},yes)
1522# Sort RMM source files to remove duplicates
1523RMM_SOURCES := $(sort ${RMM_SOURCES})
1524BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1525
1526$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001527 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1528endif #(NEED_RMM)
Zelalem Aweke5b18de02021-07-11 18:33:20 -05001529
Juan Castillo73c99d42015-08-18 14:23:04 +01001530# Add the BL33 image if required by the platform
1531ifeq (${NEED_BL33},yes)
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001532$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001533endif #(NEED_BL33)
Juan Castillodb6071c2015-01-13 12:21:04 +00001534
Yatharth Kochar9003fa02015-10-14 15:27:24 +01001535ifeq (${NEED_BL2U},yes)
Masahiro Yamada33950dd2018-01-26 11:42:01 +09001536$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Aweke434d0492021-07-11 17:25:48 -05001537 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001538endif #(NEED_BL2U)
Yatharth Kochar9003fa02015-10-14 15:27:24 +01001539
Nishanth Menon03b397a2016-10-14 01:13:57 +00001540# Expand build macros for the different images
1541ifeq (${NEED_FDT},yes)
Soby Mathew38c14d82017-12-14 17:44:56 +00001542 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001543endif #(NEED_FDT)
Nishanth Menon03b397a2016-10-14 01:13:57 +00001544
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001545# Add Secure Partition packages
1546ifeq (${NEED_SP_PKG},yes)
Olivier Deprezfbd32ac2024-01-26 12:05:36 +01001547$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
1548 @${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT} ${SP_DTS_LIST_FRAGMENT}
J-Alves822c7272022-03-22 16:28:51 +00001549sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001550 @${ECHO_BLANK_LINE}
1551 @echo "Built SP Images successfully"
1552 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001553endif #(NEED_SP_PKG)
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001554
Ian Spray36eaaf32014-01-30 17:25:28 +00001555locate-checkpatch:
1556ifndef CHECKPATCH
Etienne Carriere66079b02017-08-23 15:44:01 +02001557 $(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 +00001558else
1559ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carriere66079b02017-08-23 15:44:01 +02001560 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001561endif
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001562endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001563
Achin Gupta4f6ad662013-10-25 09:08:21 +01001564clean:
Juan Castillo73c99d42015-08-18 14:23:04 +01001565 @echo " CLEAN"
Evan Lloydf1477d42015-12-02 18:33:55 +00001566 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001567ifdef UNIX_MK
Juan Castillo73c99d42015-08-18 14:23:04 +01001568 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001569else
1570# Clear the MAKEFLAGS as we do not want
1571# to pass the gnumake flags to nmake.
1572 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001573endif #(UNIX_MK)
Juan Castillo73c99d42015-08-18 14:23:04 +01001574 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Sumit Garg90aa9012019-11-11 18:46:36 +05301575 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
Roberto Vargas5accce52018-05-22 16:05:42 +01001576 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001577
James Morrisseyeaaeece2013-11-01 13:56:59 +00001578realclean distclean:
Juan Castillo73c99d42015-08-18 14:23:04 +01001579 @echo " REALCLEAN"
Evan Lloydf1477d42015-12-02 18:33:55 +00001580 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1581 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001582ifdef UNIX_MK
Juan Castillo73c99d42015-08-18 14:23:04 +01001583 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001584else
1585# Clear the MAKEFLAGS as we do not want
1586# to pass the gnumake flags to nmake.
1587 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001588endif #(UNIX_MK)
Nicolas Boulengueze15591a2021-03-31 12:22:45 +02001589 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
Sumit Garg90aa9012019-11-11 18:46:36 +05301590 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
Roberto Vargas5accce52018-05-22 16:05:42 +01001591 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001592
Ian Spray36eaaf32014-01-30 17:25:28 +00001593checkcodebase: locate-checkpatch
Juan Castillo73c99d42015-08-18 14:23:04 +01001594 @echo " CHECKING STYLE"
Dan Handley1a41e8c2016-06-02 18:21:02 +01001595 @if test -d .git ; then \
Paul Beesley1ef35512019-03-07 16:42:31 +00001596 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley1a41e8c2016-06-02 18:21:02 +01001597 while read GIT_FILE ; \
1598 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1599 done ; \
1600 else \
1601 find . -type f -not -iwholename "*.git*" \
1602 -not -iwholename "*build*" \
1603 -not -iwholename "*libfdt*" \
Roberto Vargas61f72a32018-05-08 10:27:10 +01001604 -not -iwholename "*libc*" \
Dan Handley1a41e8c2016-06-02 18:21:02 +01001605 -not -iwholename "*docs*" \
Paul Beesley1ef35512019-03-07 16:42:31 +00001606 -not -iwholename "*.rst" \
Dan Handley1a41e8c2016-06-02 18:21:02 +01001607 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1608 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001609
1610checkpatch: locate-checkpatch
Juan Castillo73c99d42015-08-18 14:23:04 +01001611 @echo " CHECKING STYLE"
Yann Gautier02a76d52019-03-08 15:44:00 +01001612 @if test -n "${CHECKPATCH_OPTS}"; then \
1613 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1614 fi
Antonio Nino Diaz51d28932018-01-29 12:00:31 +00001615 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautier77a0a7f2021-11-02 18:03:31 +01001616 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1617 do \
Antonio Nino Diaz51d28932018-01-29 12:00:31 +00001618 printf "\n[*] Checking style of '$$commit'\n\n"; \
1619 git log --format=email "$$commit~..$$commit" \
Yann Gautier02a76d52019-03-08 15:44:00 +01001620 -- ${CHECK_PATHS} | \
1621 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz51d28932018-01-29 12:00:31 +00001622 git diff --format=email "$$commit~..$$commit" \
Yann Gautier02a76d52019-03-08 15:44:00 +01001623 -- ${CHECK_PATHS} | \
1624 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz51d28932018-01-29 12:00:31 +00001625 done
Juan Castillo73c99d42015-08-18 14:23:04 +01001626
1627certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001628
Pali Rohára9812202020-11-24 15:38:08 +01001629${CRTTOOL}: FORCE
Lionel Debieve598b1662022-11-14 11:05:09 +01001630 ${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 Lloydf1477d42015-12-02 18:33:55 +00001631 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +01001632 @echo "Built $@ successfully"
Evan Lloydf1477d42015-12-02 18:33:55 +00001633 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +01001634
1635ifneq (${GENERATE_COT},0)
1636certificates: ${CRT_DEPS} ${CRTTOOL}
1637 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloydf1477d42015-12-02 18:33:55 +00001638 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +01001639 @echo "Built $@ successfully"
1640 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloydf1477d42015-12-02 18:33:55 +00001641 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001642endif #(GENERATE_COT)
Juan Castillo73c99d42015-08-18 14:23:04 +01001643
1644${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohár4727fd12020-11-24 16:53:04 +01001645 $(eval ${CHECK_FIP_CMD})
dp-arm819281e2016-05-25 16:20:20 +01001646 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
1647 ${Q}${FIPTOOL} info $@
Evan Lloydf1477d42015-12-02 18:33:55 +00001648 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +01001649 @echo "Built $@ successfully"
Evan Lloydf1477d42015-12-02 18:33:55 +00001650 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +01001651
Yatharth Kochar01912622015-10-12 12:33:47 +01001652ifneq (${GENERATE_COT},0)
1653fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1654 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd052ab522017-04-11 16:52:00 +01001655 @${ECHO_BLANK_LINE}
Yatharth Kochar01912622015-10-12 12:33:47 +01001656 @echo "Built $@ successfully"
1657 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd052ab522017-04-11 16:52:00 +01001658 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001659endif #(GENERATE_COT)
Yatharth Kochar01912622015-10-12 12:33:47 +01001660
1661${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohár4727fd12020-11-24 16:53:04 +01001662 $(eval ${CHECK_FWU_FIP_CMD})
dp-arm819281e2016-05-25 16:20:20 +01001663 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1664 ${Q}${FIPTOOL} info $@
Evan Lloyd052ab522017-04-11 16:52:00 +01001665 @${ECHO_BLANK_LINE}
Yatharth Kochar01912622015-10-12 12:33:47 +01001666 @echo "Built $@ successfully"
Evan Lloyd052ab522017-04-11 16:52:00 +01001667 @${ECHO_BLANK_LINE}
Yatharth Kochar01912622015-10-12 12:33:47 +01001668
Juan Castillo73c99d42015-08-18 14:23:04 +01001669fiptool: ${FIPTOOL}
1670fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochar01912622015-10-12 12:33:47 +01001671fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Juan Castillo6f971622014-10-21 11:30:42 +01001672
Pali Rohára9812202020-11-24 15:38:08 +01001673${FIPTOOL}: FORCE
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001674ifdef UNIX_MK
Lionel Debieve598b1662022-11-14 11:05:09 +01001675 ${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${FIPTOOLPATH} all
Sami Mujawar88a1cf12020-04-30 12:41:57 +01001676else
1677# Clear the MAKEFLAGS as we do not want
1678# to pass the gnumake flags to nmake.
1679 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanandc5e1da82023-04-24 15:57:05 +01001680endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001681
Pali Rohára9812202020-11-24 15:38:08 +01001682romlib.bin: libraries FORCE
John Tsichritzisbbb24f62019-05-21 15:47:37 +01001683 ${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 Vargas5accce52018-05-22 16:05:42 +01001684
Louis Mayencourtcfe83912019-10-16 14:30:51 +01001685memmap: all
Harrison Mutaiaf5b49e2023-02-23 10:33:58 +00001686ifdef UNIX_MK
1687 ${Q}PYTHONPATH=${CURDIR}/tools/memory \
1688 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1689else
1690 ${Q}set PYTHONPATH=${CURDIR}/tools/memory && \
1691 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1692endif
Louis Mayencourtcfe83912019-10-16 14:30:51 +01001693
Madhukar Pappireddy6de32372020-01-28 12:41:20 -06001694doc:
1695 @echo " BUILD DOCUMENTATION"
1696 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1697
Sumit Garg90aa9012019-11-11 18:46:36 +05301698enctool: ${ENCTOOL}
1699
Pali Rohára9812202020-11-24 15:38:08 +01001700${ENCTOOL}: FORCE
Lionel Debieve598b1662022-11-14 11:05:09 +01001701 ${Q}${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${ENCTOOLPATH} all
Sumit Garg90aa9012019-11-11 18:46:36 +05301702 @${ECHO_BLANK_LINE}
1703 @echo "Built $@ successfully"
1704 @${ECHO_BLANK_LINE}
1705
Joakim Bech35fab8c2014-01-23 14:51:49 +01001706cscope:
1707 @echo " CSCOPE"
1708 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1709 ${Q}cscope -b -q -k
1710
Ryan Harkin72ee3312014-01-15 16:55:07 +00001711help:
John Tsichritzis7c231262019-05-21 15:57:31 +01001712 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001713 @echo ""
1714 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleux08c7ed02014-03-21 13:16:35 +00001715 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001716 @echo ""
John Tsichritzis7c231262019-05-21 15:57:31 +01001717 @echo "platform = ${PLATFORM_LIST}"
1718 @echo ""
Sandrine Bailleux1b578592015-02-18 16:18:00 +00001719 @echo "Please refer to the User Guide for a list of all supported options."
1720 @echo "Note that the build system doesn't track dependencies for build "
1721 @echo "options. Therefore, if any of the build options are changed "
1722 @echo "from a previous build, a clean build must be performed."
1723 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +00001724 @echo "Supported Targets:"
Sandrine Bailleux1b578592015-02-18 16:18:00 +00001725 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +00001726 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +00001727 @echo " bl2 Build the BL2 binary"
Yatharth Kochar9003fa02015-10-14 15:27:24 +01001728 @echo " bl2u Build the BL2U binary"
Juan Castillod1786372015-12-14 09:35:25 +00001729 @echo " bl31 Build the BL31 binary"
Soby Mathew9d29c222016-05-05 14:33:33 +01001730 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1731 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castillo73c99d42015-08-18 14:23:04 +01001732 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleux1b578592015-02-18 16:18:00 +00001733 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochar01912622015-10-12 12:33:47 +01001734 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +00001735 @echo " checkcodebase Check the coding style of the entire source tree"
1736 @echo " checkpatch Check the coding style on changes in the current"
1737 @echo " branch against BASE_COMMIT (default origin/master)"
1738 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +00001739 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +00001740 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo6f971622014-10-21 11:30:42 +01001741 @echo " certtool Build the Certificate generation tool"
Sumit Garg90aa9012019-11-11 18:46:36 +05301742 @echo " enctool Build the Firmware encryption tool"
Andreas Färber59dead22016-10-10 05:18:49 +02001743 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Manish Pandeyce2b1ec2020-01-14 11:52:05 +00001744 @echo " sp Build the Secure Partition Packages"
Antonio Nino Diaz26010da2018-11-27 14:58:04 +00001745 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathew38c14d82017-12-14 17:44:56 +00001746 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Louis Mayencourtcfe83912019-10-16 14:30:51 +01001747 @echo " memmap Print the memory map of the built binaries"
Madhukar Pappireddy6de32372020-01-28 12:41:20 -06001748 @echo " doc Build html based documentation using Sphinx tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001749 @echo ""
Sandrine Bailleux1b578592015-02-18 16:18:00 +00001750 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +00001751 @echo ""
1752 @echo "example: build all targets for the FVP platform:"
1753 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohára9812202020-11-24 15:38:08 +01001754
1755.PHONY: FORCE
1756FORCE:;