blob: 8d3ffe110f74314e508cbce3f64ab6c6fee19a12 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001#
Maksims Svecovs1e25c5b2023-02-02 16:10:22 +00002# Copyright (c) 2013-2023, Arm Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003#
dp-armfa3cf0b2017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005#
6
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +01007#
Juan Castillo04be3a52014-06-30 11:41:46 +01008# Trusted Firmware Version
9#
Soby Mathewd42eaee2018-10-01 16:16:34 +010010VERSION_MAJOR := 2
Juan Pablo Conde52487492023-05-15 22:17:17 -050011VERSION_MINOR := 9
laurenw-arme954f652022-07-12 10:12:05 -050012VERSION := ${VERSION_MAJOR}.${VERSION_MINOR}
Juan Castillo04be3a52014-06-30 11:41:46 +010013
Juan Castillo396644b2015-10-22 11:34:44 +010014# Default goal is build all images
15.DEFAULT_GOAL := all
16
Douglas Raillard527cd902016-12-28 14:47:50 +000017# Avoid any implicit propagation of command line variable definitions to
18# sub-Makefiles, like CFLAGS that we reserved for the firmware images'
19# usage. Other command line options like "-s" are still propagated as usual.
20MAKEOVERRIDES =
21
Evan Lloydf2697142015-12-02 18:17:37 +000022MAKE_HELPERS_DIRECTORY := make_helpers/
23include ${MAKE_HELPERS_DIRECTORY}build_macros.mk
Evan Lloyda71d2592015-12-02 18:56:06 +000024include ${MAKE_HELPERS_DIRECTORY}build_env.mk
Juan Castilloa3487d12015-08-18 14:23:04 +010025
26################################################################################
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010027# Default values for build configurations, and their dependencies
Juan Castilloa3487d12015-08-18 14:23:04 +010028################################################################################
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +010029
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010030include ${MAKE_HELPERS_DIRECTORY}defaults.mk
dp-arm3cac7862016-09-19 11:18:44 +010031
Antonio Nino Diaz808c2292017-04-18 15:16:05 +010032# Assertions enabled for DEBUG builds by default
Antonio Nino Diaz808c2292017-04-18 15:16:05 +010033ENABLE_ASSERTIONS := ${DEBUG}
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010034ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION}
35PLAT := ${DEFAULT_PLAT}
Achin Gupta4f6ad662013-10-25 09:08:21 +010036
Juan Castilloa3487d12015-08-18 14:23:04 +010037################################################################################
38# Checkpatch script options
39################################################################################
40
Sandrine Bailleux0b5a1582016-06-02 11:19:59 +010041CHECKCODE_ARGS := --no-patch
Dan Handleyd7b59e42016-06-02 17:15:13 +010042# Do not check the coding style on imported library files or documentation files
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030043INC_ARM_DIRS_TO_CHECK := $(sort $(filter-out \
44 include/drivers/arm/cryptocell, \
45 $(wildcard include/drivers/arm/*)))
46INC_ARM_DIRS_TO_CHECK += include/drivers/arm/cryptocell/*.h
47INC_DRV_DIRS_TO_CHECK := $(sort $(filter-out \
48 include/drivers/arm, \
49 $(wildcard include/drivers/*)))
Dan Handleyd7b59e42016-06-02 17:15:13 +010050INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \
Dan Handley3a355712016-06-02 18:21:02 +010051 include/lib/libfdt \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010052 include/lib/libc, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010053 $(wildcard include/lib/*)))
54INC_DIRS_TO_CHECK := $(sort $(filter-out \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030055 include/lib \
56 include/drivers, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010057 $(wildcard include/*)))
58LIB_DIRS_TO_CHECK := $(sort $(filter-out \
dp-arme3cc8382017-05-04 12:15:35 +010059 lib/compiler-rt \
Antonio Nino Diazd84f88e2017-01-16 17:20:45 +000060 lib/libfdt% \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010061 lib/libc, \
Daniel Boulby958f1dd2022-10-05 11:05:22 +010062 lib/zlib \
Dan Handleyd7b59e42016-06-02 17:15:13 +010063 $(wildcard lib/*)))
64ROOT_DIRS_TO_CHECK := $(sort $(filter-out \
65 lib \
66 include \
67 docs \
Paul Beesleyadfab5b2019-03-07 16:42:31 +000068 %.rst, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010069 $(wildcard *)))
70CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \
71 ${INC_DIRS_TO_CHECK} \
72 ${INC_LIB_DIRS_TO_CHECK} \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030073 ${LIB_DIRS_TO_CHECK} \
74 ${INC_DRV_DIRS_TO_CHECK} \
75 ${INC_ARM_DIRS_TO_CHECK}
Ian Spray36eaaf32014-01-30 17:25:28 +000076
Juan Castilloa3487d12015-08-18 14:23:04 +010077################################################################################
78# Process build options
79################################################################################
80
81# Verbose flag
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +010082ifeq (${V},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010083 Q:=@
84 ECHO:=@echo
85 CHECKCODE_ARGS += --no-summary --terse
Achin Gupta4f6ad662013-10-25 09:08:21 +010086else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010087 Q:=
88 ECHO:=$(ECHO_QUIET)
Andre Przywaracf2bb082018-09-27 10:56:05 +010089endif
90
91ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010092 Q:=@
93 ECHO:=$(ECHO_QUIET)
Achin Gupta4f6ad662013-10-25 09:08:21 +010094endif
Andre Przywaracf2bb082018-09-27 10:56:05 +010095
96export Q ECHO
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +000097
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +010098################################################################################
99# Toolchain
100################################################################################
101
102HOSTCC := gcc
103export HOSTCC
104
105CC := ${CROSS_COMPILE}gcc
106CPP := ${CROSS_COMPILE}cpp
107AS := ${CROSS_COMPILE}gcc
108AR := ${CROSS_COMPILE}ar
109LINKER := ${CROSS_COMPILE}ld
110OC := ${CROSS_COMPILE}objcopy
111OD := ${CROSS_COMPILE}objdump
112NM := ${CROSS_COMPILE}nm
113PP := ${CROSS_COMPILE}gcc -E
114DTC := dtc
115
116# Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH).
117ifneq ($(strip $(wildcard ${LD}.bfd) \
118 $(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),)
119LINKER := ${LINKER}.bfd
Juan Castilloa3487d12015-08-18 14:23:04 +0100120endif
121
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100122################################################################################
123# Auxiliary tools (fiptool, cert_create, etc)
124################################################################################
125
126# Variables for use with Certificate Generation Tool
127CRTTOOLPATH ?= tools/cert_create
128CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT}
129
130# Variables for use with Firmware Encryption Tool
131ENCTOOLPATH ?= tools/encrypt_fw
132ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
133
134# Variables for use with Firmware Image Package
135FIPTOOLPATH ?= tools/fiptool
136FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT}
137
138# Variables for use with sptool
139SPTOOLPATH ?= tools/sptool
140SPTOOL ?= ${SPTOOLPATH}/sptool.py
141SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py
142
143# Variables for use with ROMLIB
144ROMLIBPATH ?= lib/romlib
145
146# Variable for use with Python
147PYTHON ?= python3
148
149# Variables for use with documentation build using Sphinx tool
150DOCS_PATH ?= docs
151
152################################################################################
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100153# Process BRANCH_PROTECTION value and set
154# Pointer Authentication and Branch Target Identification flags
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100155################################################################################
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100156ifeq (${BRANCH_PROTECTION},0)
157 # Default value turns off all types of branch protection
158 BP_OPTION := none
159else ifneq (${ARCH},aarch64)
160 $(error BRANCH_PROTECTION requires AArch64)
161else ifeq (${BRANCH_PROTECTION},1)
162 # Enables all types of branch protection features
163 BP_OPTION := standard
164 ENABLE_BTI := 1
165 ENABLE_PAUTH := 1
166else ifeq (${BRANCH_PROTECTION},2)
167 # Return address signing to its standard level
168 BP_OPTION := pac-ret
169 ENABLE_PAUTH := 1
170else ifeq (${BRANCH_PROTECTION},3)
171 # Extend the signing to include leaf functions
172 BP_OPTION := pac-ret+leaf
173 ENABLE_PAUTH := 1
Alexei Fedorove039e482020-06-19 14:33:49 +0100174else ifeq (${BRANCH_PROTECTION},4)
175 # Turn on branch target identification mechanism
176 BP_OPTION := bti
177 ENABLE_BTI := 1
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100178else
179 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100180endif #(BRANCH_PROTECTION)
Juan Castilloa3487d12015-08-18 14:23:04 +0100181
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100182################################################################################
183# RME dependent flags configuration
184################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500185# FEAT_RME
186ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100187 # RME doesn't support PIE
188 ifneq (${ENABLE_PIE},0)
189 $(error ENABLE_RME does not support PIE)
190 endif
Maksims Svecovs1e25c5b2023-02-02 16:10:22 +0000191
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100192 # RME doesn't support BRBE
193 ifneq (${ENABLE_BRBE_FOR_NS},0)
194 $(error ENABLE_RME does not support BRBE.)
195 endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500196
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100197 # RME requires AARCH64
198 ifneq (${ARCH},aarch64)
199 $(error ENABLE_RME requires AArch64)
200 endif
Soby Mathewad042012019-09-25 14:03:41 +0100201
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100202 # RME requires el2 context to be saved for now.
203 CTX_INCLUDE_EL2_REGS := 1
204 CTX_INCLUDE_AARCH32_REGS := 0
205 ARM_ARCH_MAJOR := 8
206 ARM_ARCH_MINOR := 5
207 ENABLE_FEAT_ECV = 1
208 ENABLE_FEAT_FGT = 1
209 CTX_INCLUDE_PAUTH_REGS := 1
Olivier Deprezcb4c5622019-09-19 17:46:46 +0200210
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100211 # RME enables CSV2_2 extension by default.
212 ENABLE_FEAT_CSV2_2 = 1
213endif #(FEAT_RME)
Sumit Gargeec52442019-11-14 16:33:45 +0530214
Juan Castilloa3487d12015-08-18 14:23:04 +0100215################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100216# Compiler Configuration based on ARCH_MAJOR and ARCH_MINOR flags
Juan Castilloa3487d12015-08-18 14:23:04 +0100217################################################################################
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100218ifeq (${ARM_ARCH_MAJOR},7)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100219 target32-directive = -target arm-none-eabi
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500220# Will set march-directive from platform configuration
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100221else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100222 target32-directive = -target armv8a-none-eabi
Alexei Fedorovb567e5d2019-03-11 16:51:47 +0000223
Alexei Fedorov132e6652020-12-07 16:38:53 +0000224# Set the compiler's target architecture profile based on
225# ARM_ARCH_MAJOR ARM_ARCH_MINOR options
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100226 ifeq (${ARM_ARCH_MINOR},0)
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500227 march-directive = -march=armv${ARM_ARCH_MAJOR}-a
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100228 else
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500229 march-directive = -march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100230 endif #(ARM_ARCH_MINOR)
231endif #(ARM_ARCH_MAJOR)
232
233################################################################################
234# Get Architecture Feature Modifiers
235################################################################################
236arch-features = ${ARM_ARCH_FEATURE}
237
238####################################################
239# Enable required options for Memory Stack Tagging.
240####################################################
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100241
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000242# Memory tagging is supported in architecture Armv8.5-A AArch64 and onwards
243ifeq ($(ARCH), aarch64)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100244 # Check if revision is greater than or equal to 8.5
245 ifeq "8.5" "$(word 1, $(sort 8.5 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
246 mem_tag_arch_support = yes
247 endif
248endif #(ARCH=aarch64)
Alexei Fedorov132e6652020-12-07 16:38:53 +0000249
Alexei Fedorov132e6652020-12-07 16:38:53 +0000250# Currently, these options are enabled only for clang and armclang compiler.
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000251ifeq (${SUPPORT_STACK_MEMTAG},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100252 ifdef mem_tag_arch_support
253 # Check for armclang and clang compilers
254 ifneq ( ,$(filter $(notdir $(CC)),armclang clang))
255 # Add "memtag" architecture feature modifier if not specified
256 ifeq ( ,$(findstring memtag,$(arch-features)))
257 arch-features := $(arch-features)+memtag
258 endif # memtag
259 ifeq ($(notdir $(CC)),armclang)
260 TF_CFLAGS += -mmemtag-stack
261 else ifeq ($(notdir $(CC)),clang)
262 TF_CFLAGS += -fsanitize=memtag
263 endif # armclang
264 endif
265 else
266 $(error "Error: stack memory tagging is not supported for \
267 architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
268 endif #(mem_tag_arch_support)
269endif #(SUPPORT_STACK_MEMTAG)
Alexei Fedorov132e6652020-12-07 16:38:53 +0000270
271# Set the compiler's architecture feature modifiers
272ifneq ($(arch-features), none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100273 # Strip "none+" from arch-features
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500274 arch-features := $(subst none+,,$(arch-features))
275 march-directive := $(march-directive)+$(arch-features)
Alexei Fedorov132e6652020-12-07 16:38:53 +0000276# Print features
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100277 $(info Arm Architecture Features specified: $(subst +, ,$(arch-features)))
278endif #(arch-features)
Chris Kay08fec332021-03-09 13:34:35 +0000279
originfba80d82022-01-19 16:30:14 +0000280ifneq ($(findstring clang,$(notdir $(CC))),)
281 ifneq ($(findstring armclang,$(notdir $(CC))),)
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500282 TF_CFLAGS_aarch32 := -target arm-arm-none-eabi $(march-directive)
283 TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi $(march-directive)
originfba80d82022-01-19 16:30:14 +0000284 LD := $(LINKER)
285 else
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500286 TF_CFLAGS_aarch32 = $(target32-directive) $(march-directive)
287 TF_CFLAGS_aarch64 := -target aarch64-elf $(march-directive)
originfba80d82022-01-19 16:30:14 +0000288 LD := $(shell $(CC) --print-prog-name ld.lld)
289
290 AR := $(shell $(CC) --print-prog-name llvm-ar)
291 OD := $(shell $(CC) --print-prog-name llvm-objdump)
292 OC := $(shell $(CC) --print-prog-name llvm-objcopy)
293 endif
294
295 CPP := $(CC) -E $(TF_CFLAGS_$(ARCH))
296 PP := $(CC) -E $(TF_CFLAGS_$(ARCH))
297 AS := $(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
zelalem-aweked5f45272019-11-12 16:20:17 -0600298else ifneq ($(findstring gcc,$(notdir $(CC))),)
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500299 TF_CFLAGS_aarch32 = $(march-directive)
300 TF_CFLAGS_aarch64 = $(march-directive)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100301 ifeq ($(ENABLE_LTO),1)
302 # Enable LTO only for aarch64
303 ifeq (${ARCH},aarch64)
304 LTO_CFLAGS = -flto
305 # Use gcc as a wrapper for the ld, recommended for LTO
306 LINKER := ${CROSS_COMPILE}gcc
307 endif
zelalem-aweked5f45272019-11-12 16:20:17 -0600308 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100309 LD = $(LINKER)
dp-arm320e8442017-05-02 12:00:08 +0100310else
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500311 TF_CFLAGS_aarch32 = $(march-directive)
312 TF_CFLAGS_aarch64 = $(march-directive)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100313 LD = $(LINKER)
314endif #(clang)
dp-arm320e8442017-05-02 12:00:08 +0100315
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100316# Process Debug flag
317$(eval $(call add_define,DEBUG))
318ifneq (${DEBUG}, 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100319 BUILD_TYPE := debug
320 TF_CFLAGS += -g -gdwarf-4
321 ASFLAGS += -g -Wa,-gdwarf-4
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100322
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100323 # Use LOG_LEVEL_INFO by default for debug builds
324 LOG_LEVEL := 40
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100325else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100326 BUILD_TYPE := release
327 # Use LOG_LEVEL_NOTICE by default for release builds
328 LOG_LEVEL := 20
329endif #(Debug)
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100330
Peiyuan Song44f8f472020-04-25 16:53:43 +0800331# Default build string (git branch and commit)
332ifeq (${BUILD_STRING},)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100333 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
Peiyuan Song44f8f472020-04-25 16:53:43 +0800334endif
laurenw-arme954f652022-07-12 10:12:05 -0500335VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
Peiyuan Song44f8f472020-04-25 16:53:43 +0800336
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100337ifeq (${AARCH32_INSTRUCTION_SET},A32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100338 TF_CFLAGS_aarch32 += -marm
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100339else ifeq (${AARCH32_INSTRUCTION_SET},T32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100340 TF_CFLAGS_aarch32 += -mthumb
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100341else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100342 $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
343endif #(AARCH32_INSTRUCTION_SET)
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100344
Sandrine Bailleux1aa72ec2018-07-03 09:14:45 +0200345TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-arm320e8442017-05-02 12:00:08 +0100346TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathewa1941252016-05-05 14:33:33 +0100347
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100348ifneq (${BP_OPTION},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100349 TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
350endif #(BP_OPTION)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100351
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500352ASFLAGS += $(march-directive)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000353
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100354##############################################################################
355# WARNINGS Configuration
356###############################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100357# General warnings
358WARNINGS := -Wall -Wmissing-include-dirs -Wunused \
Yann Gautier94a40b62021-05-20 13:18:14 +0200359 -Wdisabled-optimization -Wvla -Wshadow \
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000360 -Wredundant-decls
361# stricter warnings
362WARNINGS += -Wextra -Wno-trigraphs
363# too verbose for generic build
364WARNINGS += -Wno-missing-field-initializers \
365 -Wno-type-limits -Wno-sign-compare \
366# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
367WARNINGS += -Wno-unused-parameter
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100368
369# Additional warnings
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000370# Level 1 - infrequent warnings we should have none of
371# full -Wextra
372WARNING1 += -Wsign-compare
373WARNING1 += -Wtype-limits
374WARNING1 += -Wmissing-field-initializers
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100375
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000376# Level 2 - problematic warnings that we want
377# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
378# TODO: disable just for them and move into default build
379WARNING2 += -Wold-style-definition
380WARNING2 += -Wmissing-prototypes
381WARNING2 += -Wmissing-format-attribute
382# TF-A aims to comply with this eventually. Effort too large at present
383WARNING2 += -Wundef
Boyan Karatotev9c6ba592022-11-21 14:49:05 +0000384# currently very involved and many platforms set this off
385WARNING2 += -Wunused-const-variable=2
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100386
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000387# Level 3 - very pedantic, frequently ignored
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100388WARNING3 := -Wbad-function-cast
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000389WARNING3 += -Waggregate-return
390WARNING3 += -Wnested-externs
391WARNING3 += -Wcast-align
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100392WARNING3 += -Wcast-qual
393WARNING3 += -Wconversion
394WARNING3 += -Wpacked
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100395WARNING3 += -Wpointer-arith
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100396WARNING3 += -Wswitch-default
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100397
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000398# Setting W is quite verbose and most warnings will be pre-existing issues
399# outside of the contributor's control. Don't fail the build on them so warnings
400# can be seen and hopefully addressed
401ifdef W
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100402 ifneq (${W},0)
403 E ?= 0
404 endif
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000405endif
406
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100407ifeq (${W},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100408 WARNINGS += $(WARNING1)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100409else ifeq (${W},2)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100410 WARNINGS += $(WARNING1) $(WARNING2)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100411else ifeq (${W},3)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100412 WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
413endif #(W)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100414
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100415# Compiler specific warnings
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100416ifeq ($(findstring clang,$(notdir $(CC))),)
Justin Chadwell7a914232019-07-03 14:15:56 +0100417# not using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100418WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \
419 -Wpacked-bitfield-compat -Wshift-overflow=2 \
420 -Wlogical-op
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500421
422# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
423TF_CFLAGS += $(call cc_option, --param=min-pagesize=0)
424
Justin Chadwell7a914232019-07-03 14:15:56 +0100425else
426# using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100427WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
428 -Wlogical-op-parentheses
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100429endif #(Clang Warning)
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100430
Yann Gautier957c3532018-12-10 18:08:53 +0100431ifneq (${E},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100432 ERRORS := -Werror
433endif #(E)
Yann Gautier957c3532018-12-10 18:08:53 +0100434
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100435################################################################################
436# Compiler and Linker Directives
437################################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100438CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
439 $(ERRORS) $(WARNINGS)
Govindraj Rajacd10c6e2023-05-30 16:52:15 -0500440ASFLAGS += $(CPPFLAGS) \
Julius Werner53456fc2019-07-09 13:49:11 -0700441 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900442TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Holland23f5e542019-10-20 16:11:25 -0500443 -ffunction-sections -fdata-sections \
444 -ffreestanding -fno-builtin -fno-common \
445 -Os -std=gnu99
Juan Castilloa3487d12015-08-18 14:23:04 +0100446
Justin Chadwell83e04882019-08-20 11:01:52 +0100447ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100448 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
449endif #(${SANITIZE_UB},on)
450
Justin Chadwell83e04882019-08-20 11:01:52 +0100451ifeq (${SANITIZE_UB},trap)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100452 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
Justin Chadwell83e04882019-08-20 11:01:52 +0100453 -fsanitize-undefined-trap-on-error
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100454endif #(${SANITIZE_UB},trap)
Justin Chadwell83e04882019-08-20 11:01:52 +0100455
david cunado34ab6092017-11-30 21:58:01 +0000456GCC_V_OUTPUT := $(shell $(CC) -v 2>&1)
david cunado34ab6092017-11-30 21:58:01 +0000457
Marco Felsch24ad8402022-11-09 12:59:09 +0100458TF_LDFLAGS += -z noexecstack
459
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100460# LD = armlink
Varun Wadekar4d034c52019-01-11 14:47:48 -0800461ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100462 TF_LDFLAGS += --diag_error=warning --lto_level=O1
463 TF_LDFLAGS += --remove --info=unused,unusedsymbols
464 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100465
466# LD = gcc (used when GCC LTO is enabled)
zelalem-aweked5f45272019-11-12 16:20:17 -0600467else ifneq ($(findstring gcc,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100468 # Pass ld options with Wl or Xlinker switches
469 TF_LDFLAGS += -Wl,--fatal-warnings -O1
470 TF_LDFLAGS += -Wl,--gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000471
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100472 TF_LDFLAGS += -Wl,-z,common-page-size=4096 #Configure page size constants
473 TF_LDFLAGS += -Wl,-z,max-page-size=4096
Chris Kay73b1f402022-12-22 13:26:37 +0000474
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100475 ifeq ($(ENABLE_LTO),1)
476 ifeq (${ARCH},aarch64)
477 TF_LDFLAGS += -flto -fuse-linker-plugin
478 endif
479 endif #(ENABLE_LTO)
480
zelalem-aweked5f45272019-11-12 16:20:17 -0600481# GCC automatically adds fix-cortex-a53-843419 flag when used to link
482# which breaks some builds, so disable if errata fix is not explicitly enabled
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100483 ifneq (${ERRATA_A53_843419},1)
484 TF_LDFLAGS += -mno-fix-cortex-a53-843419
485 endif
486 TF_LDFLAGS += -nostdlib
487 TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100488
489# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekar4d034c52019-01-11 14:47:48 -0800490else
Marco Felsch24ad8402022-11-09 12:59:09 +0100491# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
492# are not loaded by a elf loader.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100493 TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
494 TF_LDFLAGS += -O1
495 TF_LDFLAGS += --gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000496
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100497 TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
498 TF_LDFLAGS += -z max-page-size=4096
Chris Kay73b1f402022-12-22 13:26:37 +0000499
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100500# ld.lld doesn't recognize the errata flags,
Yabin Cuied7dc512023-01-19 20:06:04 +0000501# therefore don't add those in that case.
502# ld.lld reports section type mismatch warnings,
503# therefore don't add --fatal-warnings to it.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100504 ifeq ($(findstring ld.lld,$(notdir $(LD))),)
505 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
506 endif
507
508endif #(LD = armlink)
Juan Castilloa3487d12015-08-18 14:23:04 +0100509
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000510DTC_FLAGS += -I dts -O dtb
Louis Mayencourt6b232d92020-02-28 16:57:30 +0000511DTC_CPPFLAGS += -P -nostdinc -Iinclude -Ifdts -undef \
512 -x assembler-with-cpp $(DEFINES)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000513
Juan Castilloa3487d12015-08-18 14:23:04 +0100514################################################################################
515# Common sources and include directories
516################################################################################
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000517include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
dp-arme3cc8382017-05-04 12:15:35 +0100518include lib/compiler-rt/compiler-rt.mk
Juan Castilloa3487d12015-08-18 14:23:04 +0100519
520BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100521 common/tf_log.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100522 common/${ARCH}/debug.S \
Julius Werner03020da2018-11-27 22:10:56 -0800523 drivers/console/multi_console.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100524 lib/${ARCH}/cache_helpers.S \
525 lib/${ARCH}/misc_helpers.S \
Soby Mathew2f38ce32018-02-08 17:45:12 +0000526 plat/common/plat_bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100527 plat/common/plat_log_common.c \
dp-arm230011c2017-03-07 11:02:47 +0000528 plat/common/${ARCH}/plat_common.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100529 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas0f8f9852018-05-08 10:27:10 +0100530 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000531
Boyan Karatotev02576932023-01-13 16:47:07 +0000532# Pointer Authentication sources
533ifeq (${ENABLE_PAUTH}, 1)
534# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
535# Pauth support. As it's not secure, it must be reimplemented for real platforms
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100536 BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
Boyan Karatotev02576932023-01-13 16:47:07 +0000537endif
538
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100539ifeq ($(notdir $(CC)),armclang)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100540 BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100541endif
542
Justin Chadwell83e04882019-08-20 11:01:52 +0100543ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100544 BL_COMMON_SOURCES += plat/common/ubsan.c
Justin Chadwell83e04882019-08-20 11:01:52 +0100545endif
546
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200547INCLUDES += -Iinclude \
Antonio Nino Diaz8d1ade62018-12-17 17:20:57 +0000548 -Iinclude/arch/${ARCH} \
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000549 -Iinclude/lib/cpus/${ARCH} \
550 -Iinclude/lib/el3_runtime/${ARCH} \
551 ${PLAT_INCLUDES} \
552 ${SPD_INCLUDES}
553
Antonio Nino Diazc3a2cf22018-11-19 11:48:30 +0000554include common/backtrace/backtrace.mk
555
Juan Castilloa3487d12015-08-18 14:23:04 +0100556################################################################################
557# Generic definitions
558################################################################################
Evan Lloydf2697142015-12-02 18:17:37 +0000559include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
560
Grant Likely388248a2020-07-30 08:50:10 +0100561ifeq (${BUILD_BASE},)
562 BUILD_BASE := ./build
563endif
564BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
Achin Gupta4f6ad662013-10-25 09:08:21 +0100565
Evan Lloydf2697142015-12-02 18:17:37 +0000566SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
Ryan Harkin72ee3312014-01-15 16:55:07 +0000567
Juan Castilloa3487d12015-08-18 14:23:04 +0100568# Platforms providing their own TBB makefile may override this value
569INCLUDE_TBBR_MK := 1
570
Juan Castilloa3487d12015-08-18 14:23:04 +0100571################################################################################
572# Include SPD Makefile if one has been specified
573################################################################################
574
575ifneq (${SPD},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100576 ifeq (${ARCH},aarch32)
577 $(error "Error: SPD is incompatible with AArch32.")
578 endif
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000579
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100580 ifdef EL3_PAYLOAD_BASE
581 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
582 $(warning "The SPD and its BL32 companion will be present but \
583 ignored.")
584 endif
Achin Gupta60b7b8a2019-10-11 15:50:43 +0100585
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100586 ifeq (${SPD},spmd)
587 # SPMD is located in std_svc directory
588 SPD_DIR := std_svc
Juan Castilloa3487d12015-08-18 14:23:04 +0100589
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100590 ifeq ($(SPMD_SPM_AT_SEL2),1)
591 CTX_INCLUDE_EL2_REGS := 1
592 ifeq ($(SPMC_AT_EL3),1)
593 $(error SPM cannot be enabled in both S-EL2 and EL3.)
594 endif
595 endif
Olivier Deprezbcaa0682020-04-01 21:28:26 +0200596
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100597 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
598 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
599 endif
Davidson K9a949142021-03-10 12:07:15 +0530600
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100601 ifeq ($(TS_SP_FW_CONFIG),1)
602 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
603 endif
Balint Dobszay9f689762021-03-26 15:19:11 +0100604
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100605 ifneq ($(ARM_BL2_SP_LIST_DTS),)
606 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
607 endif
Balint Dobszay719ba9c2021-03-26 16:23:18 +0100608
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100609 ifneq ($(SP_LAYOUT_FILE),)
610 BL2_ENABLE_SP_LOAD := 1
611 endif
612 else
613 # All other SPDs in spd directory
614 SPD_DIR := spd
615 endif #(SPD)
Juan Castilloa3487d12015-08-18 14:23:04 +0100616
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100617 # We expect to locate an spd.mk under the specified SPD directory
618 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000619
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100620 ifeq (${SPD_MAKE},)
621 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
622 endif
623 $(info Including ${SPD_MAKE})
624 include ${SPD_MAKE}
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000625
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100626 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
627 # Makefile would set NEED_BL32 to "yes". In this case, the build system
628 # supports two mutually exclusive options:
629 # * BL32 is built from source: then BL32_SOURCES must contain the list
630 # of source files to build BL32
631 # * BL32 is a prebuilt binary: then BL32 must point to the image file
632 # that will be included in the FIP
633 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
634 # over the sources.
635endif #(SPD=none)
Juan Castilloa3487d12015-08-18 14:23:04 +0100636
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000637ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100638 ifeq (${SPD},none)
639 ifeq (${ENABLE_RME},0)
640 $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
641 or RME is enabled)
642 endif
643 endif
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000644endif
645
Douglas Raillard306593d2017-02-24 18:14:15 +0000646################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500647# Include rmmd Makefile if RME is enabled
648################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500649ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100650 ifneq (${ARCH},aarch64)
651 $(error ENABLE_RME requires AArch64)
652 endif
653 ifeq ($(SPMC_AT_EL3),1)
654 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
655 endif
656
657 ifneq (${SPD}, none)
658 ifneq (${SPD}, spmd)
659 $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
660 endif
661 endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500662include services/std_svc/rmmd/rmmd.mk
663$(warning "RME is an experimental feature")
664endif
665
666################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100667# Include the platform specific Makefile after the SPD Makefile (the platform
668# makefile may use all previous definitions in this file)
669################################################################################
Jeenu Viswambharane5c39fd2014-05-16 11:38:10 +0100670
Dan Handley81be1002015-03-27 17:44:35 +0000671include ${PLAT_MAKEFILE_FULL}
Jon Medhurst66573cb2014-02-13 15:19:28 +0000672
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600673# This internal flag is common option which is set to 1 for scenarios
674# when the BL2 is running in EL3 level. This occurs in two scenarios -
675# 4 world system running BL2 at EL3 and two world system without BL1 running
676# BL2 in EL3
677
678ifeq (${RESET_TO_BL2},1)
679 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100680 ifeq (${ENABLE_RME},1)
681 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
682 supported at the moment.)
683 endif
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600684else ifeq (${ENABLE_RME},1)
685 BL2_RUNS_AT_EL3 := 1
686else
687 BL2_RUNS_AT_EL3 := 0
688endif
689
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900690$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
691
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100692ifeq (${ARM_ARCH_MAJOR},7)
693include make_helpers/armv7-a-cpus.mk
694endif
695
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900696PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
697ifneq ($(PIE_FOUND),)
698 TF_CFLAGS += -fno-PIE
Samuel Holland9286c022022-04-08 21:56:02 -0500699ifneq ($(findstring gcc,$(notdir $(LD))),)
700 TF_LDFLAGS += -no-pie
701endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100702endif #(PIE_FOUND)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900703
704ifneq ($(findstring gcc,$(notdir $(LD))),)
705 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100706else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900707 PIE_LDFLAGS += -pie --no-dynamic-linker
708endif
709
710ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100711 ifeq ($(RESET_TO_BL2),1)
712 ifneq ($(BL2_IN_XIP_MEM),1)
713 BL2_CPPFLAGS += -fpie
714 BL2_CFLAGS += -fpie
715 BL2_LDFLAGS += $(PIE_LDFLAGS)
716 endif #(BL2_IN_XIP_MEM)
717 endif #(RESET_TO_BL2)
Chris Kay13886c82023-02-02 14:39:03 +0000718 BL31_CPPFLAGS += -fpie
719 BL31_CFLAGS += -fpie
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900720 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay13886c82023-02-02 14:39:03 +0000721
722 BL32_CPPFLAGS += -fpie
Masahiro Yamadade634f82020-01-17 13:45:14 +0900723 BL32_CFLAGS += -fpie
724 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100725endif #(ENABLE_PIE)
Soby Mathew078f1a42018-08-28 11:13:55 +0100726
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000727BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
728BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
729BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
730
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900731BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600732ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100733 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900734else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100735 BL2_CPPFLAGS += -DIMAGE_AT_EL1
736endif #(RESET_TO_BL2)
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000737
738ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100739 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
740 BL31_CPPFLAGS += -DIMAGE_AT_EL3
741 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000742else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100743 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900744endif
745
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000746# Include the CPU specific operations makefile, which provides default
747# values for all CPU errata workarounds and CPU specific optimisations.
748# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100749include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100750
dp-armcdd03cb2017-02-15 11:07:55 +0000751################################################################################
752# Build `AARCH32_SP` as BL32 image for AArch32
753################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100754ifeq (${ARCH},aarch32)
755 NEED_BL32 := yes
dp-armcdd03cb2017-02-15 11:07:55 +0000756
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100757 ifneq (${AARCH32_SP},none)
758 # We expect to locate an sp.mk under the specified AARCH32_SP directory
759 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-armcdd03cb2017-02-15 11:07:55 +0000760
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100761 ifeq (${AARCH32_SP_MAKE},)
762 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
763 endif
764 $(info Including ${AARCH32_SP_MAKE})
765 include ${AARCH32_SP_MAKE}
766 endif
767endif #(ARCH=aarch32)
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800768
769################################################################################
770# Include libc if not overridden
771################################################################################
772ifeq (${OVERRIDE_LIBC},0)
773include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000774endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100775
776################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100777# Check incompatible options and dependencies
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000778################################################################################
779
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100780# USE_DEBUGFS experimental feature recommended only in debug builds
781ifeq (${USE_DEBUGFS},1)
782 ifeq (${DEBUG},1)
783 $(warning DEBUGFS experimental feature is enabled.)
784 else
785 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800786 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100787endif #(USE_DEBUGFS)
788
789# USE_SPINLOCK_CAS requires AArch64 build
790ifeq (${USE_SPINLOCK_CAS},1)
791 ifneq (${ARCH},aarch64)
792 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800793 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100794endif #(USE_SPINLOCK_CAS)
795
796# The cert_create tool cannot generate certificates individually, so we use the
797# target 'certificates' to create them all
798ifneq (${GENERATE_COT},0)
799 FIP_DEPS += certificates
800 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000801endif
802
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100803ifneq (${DECRYPTION_SUPPORT},none)
804 ENC_ARGS += -f ${FW_ENC_STATUS}
805 ENC_ARGS += -k ${ENC_KEY}
806 ENC_ARGS += -n ${ENC_NONCE}
807 FIP_DEPS += enctool
808 FWU_FIP_DEPS += enctool
809endif #(DECRYPTION_SUPPORT)
810
811ifdef EL3_PAYLOAD_BASE
812 ifdef PRELOADED_BL33_BASE
813 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
814 incompatible build options. EL3_PAYLOAD_BASE has priority.")
815 endif
816 ifneq (${GENERATE_COT},0)
817 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
818 build options.")
819 endif
820 ifneq (${TRUSTED_BOARD_BOOT},0)
821 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
822 incompatible \ build options.")
823 endif
824endif #(EL3_PAYLOAD_BASE)
825
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000826ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100827 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000828 $(warning "BL33 image is not needed when option \
829 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100830 endif
831 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100832 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100833 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
834 endif
835endif #(NEED_BL33)
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000836
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000837# When building for systems with hardware-assisted coherency, there's no need to
838# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
839ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100840 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000841endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100842
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600843#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
844ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100845 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000846endif
847
Manish Pandeyd419e222023-02-13 12:39:17 +0000848# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100849ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100850 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
851 and RAS_FFH_SUPPORT instead")
Manish Pandeyd419e222023-02-13 12:39:17 +0000852endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100853
Manish Pandeyd419e222023-02-13 12:39:17 +0000854# RAS firmware first handling requires that EAs are handled in EL3 first
855ifeq ($(RAS_FFH_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100856 ifneq ($(ENABLE_FEAT_RAS),1)
857 $(error For RAS_FFH_SUPPORT, ENABLE_FEAT_RAS must also be 1)
858 endif
859 ifneq ($(HANDLE_EA_EL3_FIRST_NS),1)
860 $(error For RAS_FFH_SUPPORT, HANDLE_EA_EL3_FIRST_NS must also be 1)
861 endif
862endif #(RAS_FFH_SUPPORT)
863
Manish Pandeyd419e222023-02-13 12:39:17 +0000864# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000865ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100866 ifeq ($(ENABLE_FEAT_RAS),0)
867 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
868 endif
869endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000870
Roberto Vargas025946a2018-09-24 17:20:48 +0100871# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100872ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100873 ifeq (${TRUSTED_BOARD_BOOT}, 0)
874 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
875 to be set.")
876 endif
877endif #(DYN_DISABLE_AUTH)
Soby Mathew9fe88042018-03-26 12:43:37 +0100878
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100879ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
880# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100881 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100882else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
883# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100884 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100885else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
886# Support hash calculation only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100887 CRYPTO_SUPPORT := 2
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100888else ifeq (${TRUSTED_BOARD_BOOT},1)
889# Support authentication verification only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100890 CRYPTO_SUPPORT := 1
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000891else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100892 CRYPTO_SUPPORT := 0
893endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000894
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +0100895# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
896ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100897 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +0100898endif
899
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000900# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100901# registers associated to it are also saved and restored.
902# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000903ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100904 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
905 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
906 endif
907endif #(ENABLE_PAUTH)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100908
909ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100910 ifneq (${ARCH},aarch64)
911 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
912 endif
913endif #(CTX_INCLUDE_PAUTH_REGS)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000914
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100915ifeq ($(CTX_INCLUDE_MTE_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100916 ifneq (${ARCH},aarch64)
917 $(error CTX_INCLUDE_MTE_REGS requires AArch64)
918 endif
919endif #(CTX_INCLUDE_MTE_REGS)
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100920
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100921ifeq ($(PSA_FWU_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100922 $(info PSA_FWU_SUPPORT is an experimental feature)
923endif #(PSA_FWU_SUPPORT)
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100924
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000925ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100926 $(info FEATURE_DETECTION is an experimental feature)
927endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000928
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000929ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100930 ifeq (${ENABLE_SME_FOR_NS}, 0)
931 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
932 to be set")
933 $(warning "Forced ENABLE_SME_FOR_NS=1")
934 override ENABLE_SME_FOR_NS := 1
935 endif
936endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000937
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000938ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100939 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
940 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
941 library v2")
942 endif
943endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000944
Sumit Garg392e4df2019-11-15 10:43:00 +0530945ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100946 ifeq (${TRUSTED_BOARD_BOOT}, 0)
947 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
948 to be set)
949 endif
950endif #(DECRYPTION_SUPPORT)
Sumit Garg392e4df2019-11-15 10:43:00 +0530951
johpow0181865962022-01-28 17:06:20 -0600952# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -0500953ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -0600954
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100955 # SME/SVE only supported on AArch64
956 ifneq (${ENABLE_SME_FOR_NS},0)
957 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
958 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000959
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100960 ifeq (${ENABLE_SVE_FOR_NS},1)
961 # Warning instead of error due to CI dependency on this
962 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
963 endif
johpow0181865962022-01-28 17:06:20 -0600964
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100965 # BRBE is not supported in AArch32
966 ifeq (${ENABLE_BRBE_FOR_NS},1)
967 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
968 endif
johpow0181865962022-01-28 17:06:20 -0600969
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100970 # FEAT_RNG_TRAP is not supported in AArch32
971 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
972 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
973 endif
974endif #(ARCH=aarch32)
johpow019baade32021-07-08 14:14:00 -0500975
976# Ensure ENABLE_RME is not used with SME
977ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100978 ifneq (${ENABLE_SME_FOR_NS},0)
979 $(error "ENABLE_SME_FOR_NS cannot be used with ENABLE_RME")
980 endif
johpow019baade32021-07-08 14:14:00 -0500981endif
982
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000983ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100984 ifeq (${ENABLE_SVE_FOR_NS},0)
985 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
986 endif
987endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000988
johpow019baade32021-07-08 14:14:00 -0500989# Secure SME/SVE requires the non-secure component as well
990ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100991 ifeq (${ENABLE_SME_FOR_NS},0)
992 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
993 endif
994 ifeq (${ENABLE_SVE_FOR_SWD},0)
995 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
996 endif
997endif #(ENABLE_SME_FOR_SWD)
998
johpow019baade32021-07-08 14:14:00 -0500999ifeq (${ENABLE_SVE_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001000 ifeq (${ENABLE_SVE_FOR_NS},0)
1001 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
1002 endif
1003endif #(ENABLE_SVE_FOR_SWD)
johpow019baade32021-07-08 14:14:00 -05001004
1005# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
1006# its own context management including FPU registers.
1007ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001008 ifneq (${ENABLE_SME_FOR_NS},0)
1009 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1010 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001011
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001012 ifeq (${ENABLE_SVE_FOR_NS},1)
1013 # Warning instead of error due to CI dependency on this
1014 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1015 $(warning "Forced ENABLE_SVE_FOR_NS=0")
1016 override ENABLE_SVE_FOR_NS := 0
1017 endif
1018endif #(CTX_INCLUDE_FPREGS)
johpow019baade32021-07-08 14:14:00 -05001019
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001020ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001021 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001022endif
1023
Chris Kayd02c2312022-09-29 16:21:24 +01001024ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001025 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1026 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1027 endif
Chris Kayd02c2312022-09-29 16:21:24 +01001028endif
1029
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001030# Determine if FEAT_RNG is supported
1031ENABLE_FEAT_RNG = $(if $(findstring rng,${arch-features}),1,0)
1032
1033# Determine if FEAT_SB is supported
1034ENABLE_FEAT_SB = $(if $(findstring sb,${arch-features}),1,0)
1035
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001036################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001037# Process platform overrideable behaviour
1038################################################################################
1039
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001040ifdef BL1_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001041 NEED_BL1 := yes
1042endif #(BL1_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001043
Jon Medhurst66573cb2014-02-13 15:19:28 +00001044ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001045 NEED_BL2 := yes
1046
1047 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1048 # Certificate generation tools. This flag can be overridden by the platform.
1049 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001050 # If booting an EL3 payload there is no need for a BL33 image
1051 # in the FIP file.
1052 NEED_BL33 := no
1053 else
1054 ifdef PRELOADED_BL33_BASE
1055 # If booting a BL33 preloaded image there is no need of
1056 # another one in the FIP file.
1057 NEED_BL33 := no
1058 else
1059 NEED_BL33 ?= yes
1060 endif
1061 endif
1062endif #(BL2_SOURCES)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001063
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001064ifdef BL2U_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001065 NEED_BL2U := yes
1066endif #(BL2U_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001067
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001068# If SCP_BL2 is given, we always want FIP to include it.
1069ifdef SCP_BL2
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001070 NEED_SCP_BL2 := yes
1071endif #(SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001072
Soby Mathewbf169232017-11-14 14:10:10 +00001073# For AArch32, BL31 is not currently supported.
1074ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001075 ifdef BL31_SOURCES
1076 # When booting an EL3 payload, there is no need to compile the BL31
1077 # image nor put it in the FIP.
1078 ifndef EL3_PAYLOAD_BASE
1079 NEED_BL31 := yes
1080 endif
1081 endif
1082endif #(ARCH=aarch64)
Soby Mathewbf169232017-11-14 14:10:10 +00001083
Juan Castilloa3487d12015-08-18 14:23:04 +01001084# Process TBB related flags
1085ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001086 # Common cert_create options
1087 ifneq (${CREATE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001088 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001089 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001090 ifneq (${SAVE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001091 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001092 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001093 endif
1094 endif
1095 # Include TBBR makefile (unless the platform indicates otherwise)
1096 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castilloa3487d12015-08-18 14:23:04 +01001097 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001098 endif
1099endif #(GENERATE_COT)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001100
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001101ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001102 FIP_ARGS += --align ${FIP_ALIGN}
1103endif #(FIP_ALIGN)
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001104
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001105ifdef FDT_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001106 NEED_FDT := yes
1107endif #(FDT_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001108
Juan Castilloa3487d12015-08-18 14:23:04 +01001109################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +08001110# Include libraries' Makefile that are used in all BL
1111################################################################################
1112
1113include lib/stack_protector/stack_protector.mk
1114
1115################################################################################
Soby Mathew574e01e2017-02-14 10:05:07 +00001116# Include BL specific makefiles
1117################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001118
1119ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001120include bl1/bl1.mk
1121endif
1122
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001123ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001124include bl2/bl2.mk
1125endif
1126
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001127ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001128include bl2u/bl2u.mk
1129endif
1130
Soby Mathewbf169232017-11-14 14:10:10 +00001131ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001132include bl31/bl31.mk
1133endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001134
Soby Mathew574e01e2017-02-14 10:05:07 +00001135################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001136# Build options checks
1137################################################################################
1138
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001139# Boolean_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001140$(eval $(call assert_booleans,\
1141 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001142 ALLOW_RO_XLAT_TABLES \
1143 BL2_ENABLE_SP_LOAD \
1144 COLD_BOOT_SINGLE_CPU \
1145 CREATE_KEYS \
1146 CTX_INCLUDE_AARCH32_REGS \
1147 CTX_INCLUDE_FPREGS \
1148 CTX_INCLUDE_EL2_REGS \
1149 DEBUG \
1150 DISABLE_MTPMU \
1151 DYN_DISABLE_AUTH \
1152 EL3_EXCEPTION_HANDLING \
1153 ENABLE_AMU_AUXILIARY_COUNTERS \
1154 ENABLE_AMU_FCONF \
1155 AMU_RESTRICT_COUNTERS \
1156 ENABLE_ASSERTIONS \
1157 ENABLE_FEAT_SB \
1158 ENABLE_PIE \
1159 ENABLE_PMF \
1160 ENABLE_PSCI_STAT \
1161 ENABLE_RUNTIME_INSTRUMENTATION \
1162 ENABLE_SME_FOR_SWD \
1163 ENABLE_SVE_FOR_SWD \
1164 ERROR_DEPRECATED \
1165 FAULT_INJECTION_SUPPORT \
1166 GENERATE_COT \
1167 GICV2_G0_FOR_EL3 \
1168 HANDLE_EA_EL3_FIRST_NS \
1169 HW_ASSISTED_COHERENCY \
1170 MEASURED_BOOT \
1171 DRTM_SUPPORT \
1172 NS_TIMER_SWITCH \
1173 OVERRIDE_LIBC \
1174 PL011_GENERIC_UART \
1175 PLAT_RSS_NOT_SUPPORTED \
1176 PROGRAMMABLE_RESET_ADDRESS \
1177 PSCI_EXTENDED_STATE_ID \
1178 PSCI_OS_INIT_MODE \
1179 RESET_TO_BL31 \
1180 SAVE_KEYS \
1181 SEPARATE_CODE_AND_RODATA \
1182 SEPARATE_BL2_NOLOAD_REGION \
1183 SEPARATE_NOBITS_REGION \
1184 SPIN_ON_BL1_EXIT \
1185 SPM_MM \
1186 SPMC_AT_EL3 \
1187 SPMD_SPM_AT_SEL2 \
1188 TRUSTED_BOARD_BOOT \
1189 USE_COHERENT_MEM \
1190 USE_DEBUGFS \
1191 ARM_IO_IN_DTB \
1192 SDEI_IN_FCONF \
1193 SEC_INT_DESC_IN_FCONF \
1194 USE_ROMLIB \
1195 USE_TBBR_DEFS \
1196 WARMBOOT_ENABLE_DCACHE_EARLY \
1197 RESET_TO_BL2 \
1198 BL2_IN_XIP_MEM \
1199 BL2_INV_DCACHE \
1200 USE_SPINLOCK_CAS \
1201 ENCRYPT_BL31 \
1202 ENCRYPT_BL32 \
1203 ERRATA_SPECULATIVE_AT \
1204 RAS_TRAP_NS_ERR_REC_ACCESS \
1205 COT_DESC_IN_DTB \
1206 USE_SP804_TIMER \
1207 PSA_FWU_SUPPORT \
1208 ENABLE_MPMM \
1209 ENABLE_MPMM_FCONF \
1210 FEATURE_DETECTION \
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +01001211 TRNG_SUPPORT \
Sona Mathew7fe03522022-11-18 18:05:38 -06001212 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001213 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001214 CONDITIONAL_CMO \
Manish Pandeyd419e222023-02-13 12:39:17 +00001215 RAS_FFH_SUPPORT \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001216)))
Dan Handley81be1002015-03-27 17:44:35 +00001217
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001218# Numeric_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001219$(eval $(call assert_numerics,\
1220 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001221 ARM_ARCH_MAJOR \
1222 ARM_ARCH_MINOR \
1223 BRANCH_PROTECTION \
1224 CTX_INCLUDE_PAUTH_REGS \
1225 CTX_INCLUDE_MTE_REGS \
1226 CTX_INCLUDE_NEVE_REGS \
1227 CRYPTO_SUPPORT \
1228 ENABLE_BRBE_FOR_NS \
1229 ENABLE_TRBE_FOR_NS \
1230 ENABLE_BTI \
1231 ENABLE_PAUTH \
1232 ENABLE_FEAT_AMU \
1233 ENABLE_FEAT_AMUv1p1 \
1234 ENABLE_FEAT_CSV2_2 \
1235 ENABLE_FEAT_RAS \
1236 ENABLE_FEAT_DIT \
1237 ENABLE_FEAT_ECV \
1238 ENABLE_FEAT_FGT \
1239 ENABLE_FEAT_HCX \
1240 ENABLE_FEAT_PAN \
1241 ENABLE_FEAT_RNG \
1242 ENABLE_FEAT_RNG_TRAP \
1243 ENABLE_FEAT_SEL2 \
1244 ENABLE_FEAT_TCR2 \
1245 ENABLE_FEAT_S2PIE \
1246 ENABLE_FEAT_S1PIE \
1247 ENABLE_FEAT_S2POE \
1248 ENABLE_FEAT_S1POE \
1249 ENABLE_FEAT_GCS \
1250 ENABLE_FEAT_VHE \
1251 ENABLE_MPAM_FOR_LOWER_ELS \
1252 ENABLE_RME \
1253 ENABLE_SPE_FOR_NS \
1254 ENABLE_SYS_REG_TRACE_FOR_NS \
1255 ENABLE_SME_FOR_NS \
1256 ENABLE_SME2_FOR_NS \
1257 ENABLE_SVE_FOR_NS \
1258 ENABLE_TRF_FOR_NS \
1259 FW_ENC_STATUS \
1260 NR_OF_FW_BANKS \
1261 NR_OF_IMAGES_IN_FW_BANK \
1262 TWED_DELAY \
1263 ENABLE_FEAT_TWED \
1264 SVE_VECTOR_LEN \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001265 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001266)))
Jeenu Viswambharanfca76802017-01-16 16:52:35 +00001267
Justin Chadwellf9b32c12019-07-29 17:13:10 +01001268ifdef KEY_SIZE
1269 $(eval $(call assert_numeric,KEY_SIZE))
1270endif
1271
Justin Chadwell83e04882019-08-20 11:01:52 +01001272ifeq ($(filter $(SANITIZE_UB), on off trap),)
1273 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1274endif
1275
Juan Castilloa3487d12015-08-18 14:23:04 +01001276################################################################################
1277# Add definitions to the cpp preprocessor based on the current build options.
1278# This is done after including the platform specific makefile to allow the
1279# platform to overwrite the default options
1280################################################################################
Jeenu Viswambharand1b60152014-05-12 15:28:47 +01001281
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001282$(eval $(call add_defines,\
1283 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001284 ALLOW_RO_XLAT_TABLES \
1285 ARM_ARCH_MAJOR \
1286 ARM_ARCH_MINOR \
1287 BL2_ENABLE_SP_LOAD \
1288 COLD_BOOT_SINGLE_CPU \
1289 CTX_INCLUDE_AARCH32_REGS \
1290 CTX_INCLUDE_FPREGS \
1291 CTX_INCLUDE_PAUTH_REGS \
1292 EL3_EXCEPTION_HANDLING \
1293 CTX_INCLUDE_MTE_REGS \
1294 CTX_INCLUDE_EL2_REGS \
1295 CTX_INCLUDE_NEVE_REGS \
1296 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1297 DISABLE_MTPMU \
1298 ENABLE_FEAT_AMU \
1299 ENABLE_AMU_AUXILIARY_COUNTERS \
1300 ENABLE_AMU_FCONF \
1301 AMU_RESTRICT_COUNTERS \
1302 ENABLE_ASSERTIONS \
1303 ENABLE_BTI \
1304 ENABLE_MPAM_FOR_LOWER_ELS \
1305 ENABLE_PAUTH \
1306 ENABLE_PIE \
1307 ENABLE_PMF \
1308 ENABLE_PSCI_STAT \
1309 ENABLE_RME \
1310 ENABLE_RUNTIME_INSTRUMENTATION \
1311 ENABLE_SME_FOR_NS \
1312 ENABLE_SME2_FOR_NS \
1313 ENABLE_SME_FOR_SWD \
1314 ENABLE_SPE_FOR_NS \
1315 ENABLE_SVE_FOR_NS \
1316 ENABLE_SVE_FOR_SWD \
1317 ENCRYPT_BL31 \
1318 ENCRYPT_BL32 \
1319 ERROR_DEPRECATED \
1320 FAULT_INJECTION_SUPPORT \
1321 GICV2_G0_FOR_EL3 \
1322 HANDLE_EA_EL3_FIRST_NS \
1323 HW_ASSISTED_COHERENCY \
1324 LOG_LEVEL \
1325 MEASURED_BOOT \
1326 DRTM_SUPPORT \
1327 NS_TIMER_SWITCH \
1328 PL011_GENERIC_UART \
1329 PLAT_${PLAT} \
1330 PLAT_RSS_NOT_SUPPORTED \
1331 PROGRAMMABLE_RESET_ADDRESS \
1332 PSCI_EXTENDED_STATE_ID \
1333 PSCI_OS_INIT_MODE \
1334 ENABLE_FEAT_RAS \
1335 RAS_FFH_SUPPORT \
1336 RESET_TO_BL31 \
1337 SEPARATE_CODE_AND_RODATA \
1338 SEPARATE_BL2_NOLOAD_REGION \
1339 SEPARATE_NOBITS_REGION \
1340 RECLAIM_INIT_CODE \
1341 SPD_${SPD} \
1342 SPIN_ON_BL1_EXIT \
1343 SPM_MM \
1344 SPMC_AT_EL3 \
1345 SPMD_SPM_AT_SEL2 \
1346 TRUSTED_BOARD_BOOT \
1347 CRYPTO_SUPPORT \
1348 TRNG_SUPPORT \
1349 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001350 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001351 USE_COHERENT_MEM \
1352 USE_DEBUGFS \
1353 ARM_IO_IN_DTB \
1354 SDEI_IN_FCONF \
1355 SEC_INT_DESC_IN_FCONF \
1356 USE_ROMLIB \
1357 USE_TBBR_DEFS \
1358 WARMBOOT_ENABLE_DCACHE_EARLY \
1359 RESET_TO_BL2 \
1360 BL2_RUNS_AT_EL3 \
1361 BL2_IN_XIP_MEM \
1362 BL2_INV_DCACHE \
1363 USE_SPINLOCK_CAS \
1364 ERRATA_SPECULATIVE_AT \
1365 RAS_TRAP_NS_ERR_REC_ACCESS \
1366 COT_DESC_IN_DTB \
1367 USE_SP804_TIMER \
1368 ENABLE_FEAT_RNG \
1369 ENABLE_FEAT_RNG_TRAP \
1370 ENABLE_FEAT_SB \
1371 ENABLE_FEAT_DIT \
1372 NR_OF_FW_BANKS \
1373 NR_OF_IMAGES_IN_FW_BANK \
1374 PSA_FWU_SUPPORT \
1375 ENABLE_BRBE_FOR_NS \
1376 ENABLE_TRBE_FOR_NS \
1377 ENABLE_SYS_REG_TRACE_FOR_NS \
1378 ENABLE_TRF_FOR_NS \
1379 ENABLE_FEAT_HCX \
1380 ENABLE_MPMM \
1381 ENABLE_MPMM_FCONF \
1382 ENABLE_FEAT_FGT \
1383 ENABLE_FEAT_ECV \
1384 ENABLE_FEAT_AMUv1p1 \
1385 ENABLE_FEAT_SEL2 \
1386 ENABLE_FEAT_VHE \
1387 ENABLE_FEAT_CSV2_2 \
1388 ENABLE_FEAT_PAN \
1389 ENABLE_FEAT_TCR2 \
1390 ENABLE_FEAT_S2PIE \
1391 ENABLE_FEAT_S1PIE \
1392 ENABLE_FEAT_S2POE \
1393 ENABLE_FEAT_S1POE \
1394 ENABLE_FEAT_GCS \
1395 FEATURE_DETECTION \
1396 TWED_DELAY \
1397 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001398 CONDITIONAL_CMO \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001399 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidanand23c2fe22023-04-26 15:57:30 +01001400 SVE_VECTOR_LEN \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001401)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001402
Justin Chadwell83e04882019-08-20 11:01:52 +01001403ifeq (${SANITIZE_UB},trap)
1404 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001405endif #(SANITIZE_UB)
Justin Chadwell83e04882019-08-20 11:01:52 +01001406
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001407# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1408ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001409 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1410else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001411# Define the PRELOADED_BL33_BASE flag only if it is provided and
1412# EL3_PAYLOAD_BASE is not defined, as it has priority.
1413 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001414 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001415 endif
1416endif #(EL3_PAYLOAD_BASE)
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001417
Soby Mathew9fe88042018-03-26 12:43:37 +01001418# Define the DYN_DISABLE_AUTH flag only if set.
1419ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001420 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew9fe88042018-03-26 12:43:37 +01001421endif
1422
Varun Wadekar4d034c52019-01-11 14:47:48 -08001423ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001424 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekar4d034c52019-01-11 14:47:48 -08001425endif
1426
Manish Pandey3f90ad72020-01-14 11:52:05 +00001427# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001428ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001429ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001430 -include $(BUILD_PLAT)/sp_gen.mk
1431 FIP_DEPS += sp
1432 CRT_DEPS += sp
1433 NEED_SP_PKG := yes
Manish Pandey3f90ad72020-01-14 11:52:05 +00001434else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001435 ifeq (${SPMD_SPM_AT_SEL2},1)
1436 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1437 endif
1438endif #(SP_LAYOUT_FILE)
1439endif #(SPD)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001440
Juan Castilloa3487d12015-08-18 14:23:04 +01001441################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001442# Build targets
1443################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001444
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301445.PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp fwu_fip certtool dtbs memmap doc enctool
Juan Castilloa3487d12015-08-18 14:23:04 +01001446.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001447
Juan Castilloa3487d12015-08-18 14:23:04 +01001448all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001449
Juan Castilloa3487d12015-08-18 14:23:04 +01001450msg_start:
1451 @echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001452
Soby Mathew18a62042015-10-26 14:29:21 +00001453ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001454# Check if deprecated declarations and cpp warnings should be treated as error or not.
Varun Wadekar4d034c52019-01-11 14:47:48 -08001455ifneq ($(findstring clang,$(notdir $(CC))),)
1456 CPPFLAGS += -Wno-error=deprecated-declarations
1457else
Dan Handley6fa89a22018-02-27 16:03:58 +00001458 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001459endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001460endif #(!ERROR_DEPRECATED)
Soby Mathew18a62042015-10-26 14:29:21 +00001461
Roberto Vargase92111a2018-05-22 16:05:42 +01001462$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001463$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001464
Juan Castilloa3487d12015-08-18 14:23:04 +01001465# Expand build macros for the different images
1466ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001467BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001468$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001469endif #(NEED_BL1)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001470
Juan Castilloa3487d12015-08-18 14:23:04 +01001471ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001472
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001473ifeq (${RESET_TO_BL2}, 0)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001474FIP_BL2_ARGS := tb-fw
1475endif
1476
Chris Kayfb3b0512021-09-28 15:44:37 +01001477BL2_SOURCES := $(sort ${BL2_SOURCES})
1478
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001479$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001480 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001481
1482endif #(NEED_BL2)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001483
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001484ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001485$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001486endif #(NEED_SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001487
Juan Castilloa3487d12015-08-18 14:23:04 +01001488ifeq (${NEED_BL31},yes)
1489BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001490# Sort BL31 source files to remove duplicates
1491BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301492ifneq (${DECRYPTION_SUPPORT},none)
1493$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001494 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301495else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001496$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001497 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001498endif #(DECRYPTION_SUPPORT)
1499endif #(NEED_BL31)
Juan Castillo379954c2014-11-04 17:36:40 +00001500
Juan Castillo671b8db2015-11-12 10:59:26 +00001501# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001502# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001503# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001504ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001505# Sort BL32 source files to remove duplicates
1506BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001507BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1508
Sumit Gargeec52442019-11-14 16:33:45 +05301509ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001510$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301511 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1512else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001513$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001514 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001515endif #(DECRYPTION_SUPPORT)
1516endif #(NEED_BL32)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001517
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001518# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1519# needs to be built from RMM_SOURCES.
1520ifeq (${NEED_RMM},yes)
1521# Sort RMM source files to remove duplicates
1522RMM_SOURCES := $(sort ${RMM_SOURCES})
1523BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1524
1525$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001526 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1527endif #(NEED_RMM)
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001528
Juan Castilloa3487d12015-08-18 14:23:04 +01001529# Add the BL33 image if required by the platform
1530ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001531$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001532endif #(NEED_BL33)
Juan Castillo9c25a402015-01-13 12:21:04 +00001533
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001534ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001535$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001536 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001537endif #(NEED_BL2U)
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001538
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001539# Expand build macros for the different images
1540ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001541 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001542endif #(NEED_FDT)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001543
Manish Pandey3f90ad72020-01-14 11:52:05 +00001544# Add Secure Partition packages
1545ifeq (${NEED_SP_PKG},yes)
1546$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
Ruari Phipps571ed6b2020-07-24 16:20:57 +01001547 ${Q}${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT}
J-Alvesef8e0982022-03-22 16:28:51 +00001548sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001549 @${ECHO_BLANK_LINE}
1550 @echo "Built SP Images successfully"
1551 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001552endif #(NEED_SP_PKG)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001553
Ian Spray36eaaf32014-01-30 17:25:28 +00001554locate-checkpatch:
1555ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001556 $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001557else
1558ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001559 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001560endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001561endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001562
Achin Gupta4f6ad662013-10-25 09:08:21 +01001563clean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001564 @echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001565 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001566ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001567 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001568else
1569# Clear the MAKEFLAGS as we do not want
1570# to pass the gnumake flags to nmake.
1571 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001572endif #(UNIX_MK)
Juan Castilloa3487d12015-08-18 14:23:04 +01001573 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301574 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
Roberto Vargase92111a2018-05-22 16:05:42 +01001575 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001576
James Morrisseyeaaeece2013-11-01 13:56:59 +00001577realclean distclean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001578 @echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001579 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1580 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001581ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001582 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001583else
1584# Clear the MAKEFLAGS as we do not want
1585# to pass the gnumake flags to nmake.
1586 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001587endif #(UNIX_MK)
Nicolas Boulenguezdf612a52021-03-31 12:22:45 +02001588 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301589 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
Roberto Vargase92111a2018-05-22 16:05:42 +01001590 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001591
Ian Spray36eaaf32014-01-30 17:25:28 +00001592checkcodebase: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001593 @echo " CHECKING STYLE"
Dan Handley3a355712016-06-02 18:21:02 +01001594 @if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001595 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001596 while read GIT_FILE ; \
1597 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1598 done ; \
1599 else \
1600 find . -type f -not -iwholename "*.git*" \
1601 -not -iwholename "*build*" \
1602 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001603 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001604 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001605 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001606 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1607 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001608
1609checkpatch: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001610 @echo " CHECKING STYLE"
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001611 @if test -n "${CHECKPATCH_OPTS}"; then \
1612 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1613 fi
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001614 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001615 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1616 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001617 printf "\n[*] Checking style of '$$commit'\n\n"; \
1618 git log --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001619 -- ${CHECK_PATHS} | \
1620 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001621 git diff --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001622 -- ${CHECK_PATHS} | \
1623 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001624 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001625
1626certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001627
Pali Rohár54ff2132020-11-24 15:38:08 +01001628${CRTTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001629 ${Q}${MAKE} PLAT=${PLAT} USE_TBBR_DEFS=${USE_TBBR_DEFS} COT=${COT} OPENSSL_DIR=${OPENSSL_DIR} CRTTOOL=${CRTTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${CRTTOOLPATH} all
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001630 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001631 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001632 @${ECHO_BLANK_LINE}
Jon Medhurst407a95c2014-02-12 15:54:48 +00001633
Juan Castillo11abdcd2014-10-21 11:30:42 +01001634ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001635certificates: ${CRT_DEPS} ${CRTTOOL}
1636 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001637 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001638 @echo "Built $@ successfully"
1639 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001640 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001641endif #(GENERATE_COT)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001642
Juan Castilloa3487d12015-08-18 14:23:04 +01001643${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001644 $(eval ${CHECK_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001645 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
1646 ${Q}${FIPTOOL} info $@
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001647 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001648 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001649 @${ECHO_BLANK_LINE}
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001650
Yatharth Kochard1a93432015-10-12 12:33:47 +01001651ifneq (${GENERATE_COT},0)
1652fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1653 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001654 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001655 @echo "Built $@ successfully"
1656 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001657 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001658endif #(GENERATE_COT)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001659
1660${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001661 $(eval ${CHECK_FWU_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001662 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1663 ${Q}${FIPTOOL} info $@
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001664 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001665 @echo "Built $@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001666 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001667
Juan Castilloa3487d12015-08-18 14:23:04 +01001668fiptool: ${FIPTOOL}
1669fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001670fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001671
Pali Rohár54ff2132020-11-24 15:38:08 +01001672${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001673ifdef UNIX_MK
Lionel Debieve730bde82022-11-14 11:05:09 +01001674 ${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${FIPTOOLPATH} all
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001675else
1676# Clear the MAKEFLAGS as we do not want
1677# to pass the gnumake flags to nmake.
1678 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001679endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001680
Pali Rohár54ff2132020-11-24 15:38:08 +01001681romlib.bin: libraries FORCE
John Tsichritzisf6ea99b2019-05-21 15:47:37 +01001682 ${Q}${MAKE} PLAT_DIR=${PLAT_DIR} BUILD_PLAT=${BUILD_PLAT} ENABLE_BTI=${ENABLE_BTI} ARM_ARCH_MINOR=${ARM_ARCH_MINOR} INCLUDES='${INCLUDES}' DEFINES='${DEFINES}' --no-print-directory -C ${ROMLIBPATH} all
Roberto Vargase92111a2018-05-22 16:05:42 +01001683
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001684memmap: all
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001685ifdef UNIX_MK
1686 ${Q}PYTHONPATH=${CURDIR}/tools/memory \
1687 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1688else
1689 ${Q}set PYTHONPATH=${CURDIR}/tools/memory && \
1690 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1691endif
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001692
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001693doc:
1694 @echo " BUILD DOCUMENTATION"
1695 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1696
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301697enctool: ${ENCTOOL}
1698
Pali Rohár54ff2132020-11-24 15:38:08 +01001699${ENCTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001700 ${Q}${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${ENCTOOLPATH} all
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301701 @${ECHO_BLANK_LINE}
1702 @echo "Built $@ successfully"
1703 @${ECHO_BLANK_LINE}
1704
Joakim Bech35fab8c2014-01-23 14:51:49 +01001705cscope:
1706 @echo " CSCOPE"
1707 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1708 ${Q}cscope -b -q -k
1709
Ryan Harkin72ee3312014-01-15 16:55:07 +00001710help:
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001711 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001712 @echo ""
1713 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +00001714 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001715 @echo ""
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001716 @echo "platform = ${PLATFORM_LIST}"
1717 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001718 @echo "Please refer to the User Guide for a list of all supported options."
1719 @echo "Note that the build system doesn't track dependencies for build "
1720 @echo "options. Therefore, if any of the build options are changed "
1721 @echo "from a previous build, a clean build must be performed."
1722 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +00001723 @echo "Supported Targets:"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001724 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +00001725 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +00001726 @echo " bl2 Build the BL2 binary"
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001727 @echo " bl2u Build the BL2U binary"
Juan Castillo7d199412015-12-14 09:35:25 +00001728 @echo " bl31 Build the BL31 binary"
Soby Mathewa1941252016-05-05 14:33:33 +01001729 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1730 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castilloa3487d12015-08-18 14:23:04 +01001731 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001732 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochard1a93432015-10-12 12:33:47 +01001733 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +00001734 @echo " checkcodebase Check the coding style of the entire source tree"
1735 @echo " checkpatch Check the coding style on changes in the current"
1736 @echo " branch against BASE_COMMIT (default origin/master)"
1737 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +00001738 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +00001739 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001740 @echo " certtool Build the Certificate generation tool"
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301741 @echo " enctool Build the Firmware encryption tool"
Andreas Färberec82cfb2016-10-10 05:18:49 +02001742 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Manish Pandey3f90ad72020-01-14 11:52:05 +00001743 @echo " sp Build the Secure Partition Packages"
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001744 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathewab4181d2017-12-14 17:44:56 +00001745 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001746 @echo " memmap Print the memory map of the built binaries"
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001747 @echo " doc Build html based documentation using Sphinx tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001748 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001749 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +00001750 @echo ""
1751 @echo "example: build all targets for the FVP platform:"
1752 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001753
1754.PHONY: FORCE
1755FORCE:;