blob: 8a0a2e0e1354a60b790671c7f9bc70f370d1a92d [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 \
Boyan Karatotev05504ba2023-02-15 13:21:50 +0000526 lib/extensions/pmuv3/${ARCH}/pmuv3.c \
Soby Mathew2f38ce32018-02-08 17:45:12 +0000527 plat/common/plat_bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100528 plat/common/plat_log_common.c \
dp-arm230011c2017-03-07 11:02:47 +0000529 plat/common/${ARCH}/plat_common.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100530 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas0f8f9852018-05-08 10:27:10 +0100531 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000532
Boyan Karatotev02576932023-01-13 16:47:07 +0000533# Pointer Authentication sources
534ifeq (${ENABLE_PAUTH}, 1)
535# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
536# Pauth support. As it's not secure, it must be reimplemented for real platforms
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100537 BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
Boyan Karatotev02576932023-01-13 16:47:07 +0000538endif
539
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100540ifeq ($(notdir $(CC)),armclang)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100541 BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100542endif
543
Justin Chadwell83e04882019-08-20 11:01:52 +0100544ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100545 BL_COMMON_SOURCES += plat/common/ubsan.c
Justin Chadwell83e04882019-08-20 11:01:52 +0100546endif
547
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200548INCLUDES += -Iinclude \
Antonio Nino Diaz8d1ade62018-12-17 17:20:57 +0000549 -Iinclude/arch/${ARCH} \
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000550 -Iinclude/lib/cpus/${ARCH} \
551 -Iinclude/lib/el3_runtime/${ARCH} \
552 ${PLAT_INCLUDES} \
553 ${SPD_INCLUDES}
554
Antonio Nino Diazc3a2cf22018-11-19 11:48:30 +0000555include common/backtrace/backtrace.mk
556
Juan Castilloa3487d12015-08-18 14:23:04 +0100557################################################################################
558# Generic definitions
559################################################################################
Evan Lloydf2697142015-12-02 18:17:37 +0000560include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
561
Grant Likely388248a2020-07-30 08:50:10 +0100562ifeq (${BUILD_BASE},)
563 BUILD_BASE := ./build
564endif
565BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
Achin Gupta4f6ad662013-10-25 09:08:21 +0100566
Evan Lloydf2697142015-12-02 18:17:37 +0000567SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
Ryan Harkin72ee3312014-01-15 16:55:07 +0000568
Juan Castilloa3487d12015-08-18 14:23:04 +0100569# Platforms providing their own TBB makefile may override this value
570INCLUDE_TBBR_MK := 1
571
Juan Castilloa3487d12015-08-18 14:23:04 +0100572################################################################################
573# Include SPD Makefile if one has been specified
574################################################################################
575
576ifneq (${SPD},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100577 ifeq (${ARCH},aarch32)
578 $(error "Error: SPD is incompatible with AArch32.")
579 endif
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000580
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100581 ifdef EL3_PAYLOAD_BASE
582 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
583 $(warning "The SPD and its BL32 companion will be present but \
584 ignored.")
585 endif
Achin Gupta60b7b8a2019-10-11 15:50:43 +0100586
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100587 ifeq (${SPD},spmd)
588 # SPMD is located in std_svc directory
589 SPD_DIR := std_svc
Juan Castilloa3487d12015-08-18 14:23:04 +0100590
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100591 ifeq ($(SPMD_SPM_AT_SEL2),1)
592 CTX_INCLUDE_EL2_REGS := 1
593 ifeq ($(SPMC_AT_EL3),1)
594 $(error SPM cannot be enabled in both S-EL2 and EL3.)
595 endif
596 endif
Olivier Deprezbcaa0682020-04-01 21:28:26 +0200597
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100598 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
599 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
600 endif
Davidson K9a949142021-03-10 12:07:15 +0530601
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100602 ifeq ($(TS_SP_FW_CONFIG),1)
603 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
604 endif
Balint Dobszay9f689762021-03-26 15:19:11 +0100605
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100606 ifneq ($(ARM_BL2_SP_LIST_DTS),)
607 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
608 endif
Balint Dobszay719ba9c2021-03-26 16:23:18 +0100609
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100610 ifneq ($(SP_LAYOUT_FILE),)
611 BL2_ENABLE_SP_LOAD := 1
612 endif
613 else
614 # All other SPDs in spd directory
615 SPD_DIR := spd
616 endif #(SPD)
Juan Castilloa3487d12015-08-18 14:23:04 +0100617
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100618 # We expect to locate an spd.mk under the specified SPD directory
619 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000620
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100621 ifeq (${SPD_MAKE},)
622 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
623 endif
624 $(info Including ${SPD_MAKE})
625 include ${SPD_MAKE}
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000626
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100627 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
628 # Makefile would set NEED_BL32 to "yes". In this case, the build system
629 # supports two mutually exclusive options:
630 # * BL32 is built from source: then BL32_SOURCES must contain the list
631 # of source files to build BL32
632 # * BL32 is a prebuilt binary: then BL32 must point to the image file
633 # that will be included in the FIP
634 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
635 # over the sources.
636endif #(SPD=none)
Juan Castilloa3487d12015-08-18 14:23:04 +0100637
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000638ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100639 ifeq (${SPD},none)
640 ifeq (${ENABLE_RME},0)
641 $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
642 or RME is enabled)
643 endif
644 endif
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000645endif
646
Douglas Raillard306593d2017-02-24 18:14:15 +0000647################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500648# Include rmmd Makefile if RME is enabled
649################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500650ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100651 ifneq (${ARCH},aarch64)
652 $(error ENABLE_RME requires AArch64)
653 endif
654 ifeq ($(SPMC_AT_EL3),1)
655 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
656 endif
657
658 ifneq (${SPD}, none)
659 ifneq (${SPD}, spmd)
660 $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
661 endif
662 endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500663include services/std_svc/rmmd/rmmd.mk
664$(warning "RME is an experimental feature")
665endif
666
667################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100668# Include the platform specific Makefile after the SPD Makefile (the platform
669# makefile may use all previous definitions in this file)
670################################################################################
Jeenu Viswambharane5c39fd2014-05-16 11:38:10 +0100671
Dan Handley81be1002015-03-27 17:44:35 +0000672include ${PLAT_MAKEFILE_FULL}
Jon Medhurst66573cb2014-02-13 15:19:28 +0000673
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600674# This internal flag is common option which is set to 1 for scenarios
675# when the BL2 is running in EL3 level. This occurs in two scenarios -
676# 4 world system running BL2 at EL3 and two world system without BL1 running
677# BL2 in EL3
678
679ifeq (${RESET_TO_BL2},1)
680 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100681 ifeq (${ENABLE_RME},1)
682 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
683 supported at the moment.)
684 endif
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600685else ifeq (${ENABLE_RME},1)
686 BL2_RUNS_AT_EL3 := 1
687else
688 BL2_RUNS_AT_EL3 := 0
689endif
690
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900691$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
692
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100693ifeq (${ARM_ARCH_MAJOR},7)
694include make_helpers/armv7-a-cpus.mk
695endif
696
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900697PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
698ifneq ($(PIE_FOUND),)
699 TF_CFLAGS += -fno-PIE
Samuel Holland9286c022022-04-08 21:56:02 -0500700ifneq ($(findstring gcc,$(notdir $(LD))),)
701 TF_LDFLAGS += -no-pie
702endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100703endif #(PIE_FOUND)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900704
705ifneq ($(findstring gcc,$(notdir $(LD))),)
706 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100707else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900708 PIE_LDFLAGS += -pie --no-dynamic-linker
709endif
710
711ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100712 ifeq ($(RESET_TO_BL2),1)
713 ifneq ($(BL2_IN_XIP_MEM),1)
714 BL2_CPPFLAGS += -fpie
715 BL2_CFLAGS += -fpie
716 BL2_LDFLAGS += $(PIE_LDFLAGS)
717 endif #(BL2_IN_XIP_MEM)
718 endif #(RESET_TO_BL2)
Chris Kay13886c82023-02-02 14:39:03 +0000719 BL31_CPPFLAGS += -fpie
720 BL31_CFLAGS += -fpie
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900721 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay13886c82023-02-02 14:39:03 +0000722
723 BL32_CPPFLAGS += -fpie
Masahiro Yamadade634f82020-01-17 13:45:14 +0900724 BL32_CFLAGS += -fpie
725 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100726endif #(ENABLE_PIE)
Soby Mathew078f1a42018-08-28 11:13:55 +0100727
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000728BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
729BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
730BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
731
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900732BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600733ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100734 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900735else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100736 BL2_CPPFLAGS += -DIMAGE_AT_EL1
737endif #(RESET_TO_BL2)
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000738
739ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100740 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
741 BL31_CPPFLAGS += -DIMAGE_AT_EL3
742 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000743else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100744 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900745endif
746
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000747# Include the CPU specific operations makefile, which provides default
748# values for all CPU errata workarounds and CPU specific optimisations.
749# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100750include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100751
dp-armcdd03cb2017-02-15 11:07:55 +0000752################################################################################
753# Build `AARCH32_SP` as BL32 image for AArch32
754################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100755ifeq (${ARCH},aarch32)
756 NEED_BL32 := yes
dp-armcdd03cb2017-02-15 11:07:55 +0000757
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100758 ifneq (${AARCH32_SP},none)
759 # We expect to locate an sp.mk under the specified AARCH32_SP directory
760 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-armcdd03cb2017-02-15 11:07:55 +0000761
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100762 ifeq (${AARCH32_SP_MAKE},)
763 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
764 endif
765 $(info Including ${AARCH32_SP_MAKE})
766 include ${AARCH32_SP_MAKE}
767 endif
768endif #(ARCH=aarch32)
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800769
770################################################################################
771# Include libc if not overridden
772################################################################################
773ifeq (${OVERRIDE_LIBC},0)
774include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000775endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100776
777################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100778# Check incompatible options and dependencies
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000779################################################################################
780
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100781# USE_DEBUGFS experimental feature recommended only in debug builds
782ifeq (${USE_DEBUGFS},1)
783 ifeq (${DEBUG},1)
784 $(warning DEBUGFS experimental feature is enabled.)
785 else
786 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800787 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100788endif #(USE_DEBUGFS)
789
790# USE_SPINLOCK_CAS requires AArch64 build
791ifeq (${USE_SPINLOCK_CAS},1)
792 ifneq (${ARCH},aarch64)
793 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800794 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100795endif #(USE_SPINLOCK_CAS)
796
797# The cert_create tool cannot generate certificates individually, so we use the
798# target 'certificates' to create them all
799ifneq (${GENERATE_COT},0)
800 FIP_DEPS += certificates
801 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000802endif
803
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100804ifneq (${DECRYPTION_SUPPORT},none)
805 ENC_ARGS += -f ${FW_ENC_STATUS}
806 ENC_ARGS += -k ${ENC_KEY}
807 ENC_ARGS += -n ${ENC_NONCE}
808 FIP_DEPS += enctool
809 FWU_FIP_DEPS += enctool
810endif #(DECRYPTION_SUPPORT)
811
812ifdef EL3_PAYLOAD_BASE
813 ifdef PRELOADED_BL33_BASE
814 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
815 incompatible build options. EL3_PAYLOAD_BASE has priority.")
816 endif
817 ifneq (${GENERATE_COT},0)
818 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
819 build options.")
820 endif
821 ifneq (${TRUSTED_BOARD_BOOT},0)
822 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
823 incompatible \ build options.")
824 endif
825endif #(EL3_PAYLOAD_BASE)
826
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000827ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100828 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000829 $(warning "BL33 image is not needed when option \
830 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100831 endif
832 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100833 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100834 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
835 endif
836endif #(NEED_BL33)
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000837
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000838# When building for systems with hardware-assisted coherency, there's no need to
839# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
840ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100841 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000842endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100843
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600844#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
845ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100846 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000847endif
848
Manish Pandeyd419e222023-02-13 12:39:17 +0000849# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100850ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100851 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
852 and RAS_FFH_SUPPORT instead")
Manish Pandeyd419e222023-02-13 12:39:17 +0000853endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100854
Manish Pandeyd419e222023-02-13 12:39:17 +0000855# RAS firmware first handling requires that EAs are handled in EL3 first
856ifeq ($(RAS_FFH_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100857 ifneq ($(ENABLE_FEAT_RAS),1)
858 $(error For RAS_FFH_SUPPORT, ENABLE_FEAT_RAS must also be 1)
859 endif
860 ifneq ($(HANDLE_EA_EL3_FIRST_NS),1)
861 $(error For RAS_FFH_SUPPORT, HANDLE_EA_EL3_FIRST_NS must also be 1)
862 endif
863endif #(RAS_FFH_SUPPORT)
864
Manish Pandeyd419e222023-02-13 12:39:17 +0000865# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000866ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100867 ifeq ($(ENABLE_FEAT_RAS),0)
868 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
869 endif
870endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000871
Roberto Vargas025946a2018-09-24 17:20:48 +0100872# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100873ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100874 ifeq (${TRUSTED_BOARD_BOOT}, 0)
875 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
876 to be set.")
877 endif
878endif #(DYN_DISABLE_AUTH)
Soby Mathew9fe88042018-03-26 12:43:37 +0100879
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100880ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
881# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100882 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100883else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
884# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100885 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100886else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
887# Support hash calculation only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100888 CRYPTO_SUPPORT := 2
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100889else ifeq (${TRUSTED_BOARD_BOOT},1)
890# Support authentication verification only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100891 CRYPTO_SUPPORT := 1
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000892else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100893 CRYPTO_SUPPORT := 0
894endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000895
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +0100896# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
897ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100898 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +0100899endif
900
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000901# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100902# registers associated to it are also saved and restored.
903# 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 +0000904ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100905 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
906 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
907 endif
908endif #(ENABLE_PAUTH)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100909
910ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100911 ifneq (${ARCH},aarch64)
912 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
913 endif
914endif #(CTX_INCLUDE_PAUTH_REGS)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000915
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100916ifeq ($(CTX_INCLUDE_MTE_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100917 ifneq (${ARCH},aarch64)
918 $(error CTX_INCLUDE_MTE_REGS requires AArch64)
919 endif
920endif #(CTX_INCLUDE_MTE_REGS)
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100921
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100922ifeq ($(PSA_FWU_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100923 $(info PSA_FWU_SUPPORT is an experimental feature)
924endif #(PSA_FWU_SUPPORT)
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100925
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000926ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100927 $(info FEATURE_DETECTION is an experimental feature)
928endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000929
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000930ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100931 ifeq (${ENABLE_SME_FOR_NS}, 0)
932 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
933 to be set")
934 $(warning "Forced ENABLE_SME_FOR_NS=1")
935 override ENABLE_SME_FOR_NS := 1
936 endif
937endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000938
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000939ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100940 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
941 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
942 library v2")
943 endif
944endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000945
Sumit Garg392e4df2019-11-15 10:43:00 +0530946ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100947 ifeq (${TRUSTED_BOARD_BOOT}, 0)
948 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
949 to be set)
950 endif
951endif #(DECRYPTION_SUPPORT)
Sumit Garg392e4df2019-11-15 10:43:00 +0530952
johpow0181865962022-01-28 17:06:20 -0600953# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -0500954ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -0600955
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100956 # SME/SVE only supported on AArch64
957 ifneq (${ENABLE_SME_FOR_NS},0)
958 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
959 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000960
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100961 ifeq (${ENABLE_SVE_FOR_NS},1)
962 # Warning instead of error due to CI dependency on this
963 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
964 endif
johpow0181865962022-01-28 17:06:20 -0600965
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100966 # BRBE is not supported in AArch32
967 ifeq (${ENABLE_BRBE_FOR_NS},1)
968 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
969 endif
johpow0181865962022-01-28 17:06:20 -0600970
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100971 # FEAT_RNG_TRAP is not supported in AArch32
972 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
973 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
974 endif
975endif #(ARCH=aarch32)
johpow019baade32021-07-08 14:14:00 -0500976
977# Ensure ENABLE_RME is not used with SME
978ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100979 ifneq (${ENABLE_SME_FOR_NS},0)
980 $(error "ENABLE_SME_FOR_NS cannot be used with ENABLE_RME")
981 endif
johpow019baade32021-07-08 14:14:00 -0500982endif
983
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000984ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100985 ifeq (${ENABLE_SVE_FOR_NS},0)
986 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
987 endif
988endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000989
johpow019baade32021-07-08 14:14:00 -0500990# Secure SME/SVE requires the non-secure component as well
991ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100992 ifeq (${ENABLE_SME_FOR_NS},0)
993 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
994 endif
995 ifeq (${ENABLE_SVE_FOR_SWD},0)
996 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
997 endif
998endif #(ENABLE_SME_FOR_SWD)
999
johpow019baade32021-07-08 14:14:00 -05001000ifeq (${ENABLE_SVE_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001001 ifeq (${ENABLE_SVE_FOR_NS},0)
1002 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
1003 endif
1004endif #(ENABLE_SVE_FOR_SWD)
johpow019baade32021-07-08 14:14:00 -05001005
1006# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
1007# its own context management including FPU registers.
1008ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001009 ifneq (${ENABLE_SME_FOR_NS},0)
1010 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1011 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001012
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001013 ifeq (${ENABLE_SVE_FOR_NS},1)
1014 # Warning instead of error due to CI dependency on this
1015 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1016 $(warning "Forced ENABLE_SVE_FOR_NS=0")
1017 override ENABLE_SVE_FOR_NS := 0
1018 endif
1019endif #(CTX_INCLUDE_FPREGS)
johpow019baade32021-07-08 14:14:00 -05001020
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001021ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001022 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001023endif
1024
Chris Kayd02c2312022-09-29 16:21:24 +01001025ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001026 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1027 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1028 endif
Chris Kayd02c2312022-09-29 16:21:24 +01001029endif
1030
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001031# Determine if FEAT_RNG is supported
1032ENABLE_FEAT_RNG = $(if $(findstring rng,${arch-features}),1,0)
1033
1034# Determine if FEAT_SB is supported
1035ENABLE_FEAT_SB = $(if $(findstring sb,${arch-features}),1,0)
1036
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001037################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001038# Process platform overrideable behaviour
1039################################################################################
1040
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001041ifdef BL1_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001042 NEED_BL1 := yes
1043endif #(BL1_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001044
Jon Medhurst66573cb2014-02-13 15:19:28 +00001045ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001046 NEED_BL2 := yes
1047
1048 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1049 # Certificate generation tools. This flag can be overridden by the platform.
1050 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001051 # If booting an EL3 payload there is no need for a BL33 image
1052 # in the FIP file.
1053 NEED_BL33 := no
1054 else
1055 ifdef PRELOADED_BL33_BASE
1056 # If booting a BL33 preloaded image there is no need of
1057 # another one in the FIP file.
1058 NEED_BL33 := no
1059 else
1060 NEED_BL33 ?= yes
1061 endif
1062 endif
1063endif #(BL2_SOURCES)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001064
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001065ifdef BL2U_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001066 NEED_BL2U := yes
1067endif #(BL2U_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001068
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001069# If SCP_BL2 is given, we always want FIP to include it.
1070ifdef SCP_BL2
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001071 NEED_SCP_BL2 := yes
1072endif #(SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001073
Soby Mathewbf169232017-11-14 14:10:10 +00001074# For AArch32, BL31 is not currently supported.
1075ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001076 ifdef BL31_SOURCES
1077 # When booting an EL3 payload, there is no need to compile the BL31
1078 # image nor put it in the FIP.
1079 ifndef EL3_PAYLOAD_BASE
1080 NEED_BL31 := yes
1081 endif
1082 endif
1083endif #(ARCH=aarch64)
Soby Mathewbf169232017-11-14 14:10:10 +00001084
Juan Castilloa3487d12015-08-18 14:23:04 +01001085# Process TBB related flags
1086ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001087 # Common cert_create options
1088 ifneq (${CREATE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001089 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001090 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001091 ifneq (${SAVE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001092 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001093 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001094 endif
1095 endif
1096 # Include TBBR makefile (unless the platform indicates otherwise)
1097 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castilloa3487d12015-08-18 14:23:04 +01001098 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001099 endif
1100endif #(GENERATE_COT)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001101
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001102ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001103 FIP_ARGS += --align ${FIP_ALIGN}
1104endif #(FIP_ALIGN)
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001105
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001106ifdef FDT_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001107 NEED_FDT := yes
1108endif #(FDT_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001109
Juan Castilloa3487d12015-08-18 14:23:04 +01001110################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +08001111# Include libraries' Makefile that are used in all BL
1112################################################################################
1113
1114include lib/stack_protector/stack_protector.mk
1115
1116################################################################################
Soby Mathew574e01e2017-02-14 10:05:07 +00001117# Include BL specific makefiles
1118################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001119
1120ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001121include bl1/bl1.mk
1122endif
1123
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001124ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001125include bl2/bl2.mk
1126endif
1127
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001128ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001129include bl2u/bl2u.mk
1130endif
1131
Soby Mathewbf169232017-11-14 14:10:10 +00001132ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001133include bl31/bl31.mk
1134endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001135
Soby Mathew574e01e2017-02-14 10:05:07 +00001136################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001137# Build options checks
1138################################################################################
1139
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001140# Boolean_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001141$(eval $(call assert_booleans,\
1142 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001143 ALLOW_RO_XLAT_TABLES \
1144 BL2_ENABLE_SP_LOAD \
1145 COLD_BOOT_SINGLE_CPU \
1146 CREATE_KEYS \
1147 CTX_INCLUDE_AARCH32_REGS \
1148 CTX_INCLUDE_FPREGS \
1149 CTX_INCLUDE_EL2_REGS \
1150 DEBUG \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001151 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 \
Boyan Karatotev677ed8a2023-02-16 09:45:29 +00001228 DISABLE_MTPMU \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001229 ENABLE_BRBE_FOR_NS \
1230 ENABLE_TRBE_FOR_NS \
1231 ENABLE_BTI \
1232 ENABLE_PAUTH \
1233 ENABLE_FEAT_AMU \
1234 ENABLE_FEAT_AMUv1p1 \
1235 ENABLE_FEAT_CSV2_2 \
1236 ENABLE_FEAT_RAS \
1237 ENABLE_FEAT_DIT \
1238 ENABLE_FEAT_ECV \
1239 ENABLE_FEAT_FGT \
1240 ENABLE_FEAT_HCX \
1241 ENABLE_FEAT_PAN \
1242 ENABLE_FEAT_RNG \
1243 ENABLE_FEAT_RNG_TRAP \
1244 ENABLE_FEAT_SEL2 \
1245 ENABLE_FEAT_TCR2 \
1246 ENABLE_FEAT_S2PIE \
1247 ENABLE_FEAT_S1PIE \
1248 ENABLE_FEAT_S2POE \
1249 ENABLE_FEAT_S1POE \
1250 ENABLE_FEAT_GCS \
1251 ENABLE_FEAT_VHE \
1252 ENABLE_MPAM_FOR_LOWER_ELS \
1253 ENABLE_RME \
1254 ENABLE_SPE_FOR_NS \
1255 ENABLE_SYS_REG_TRACE_FOR_NS \
1256 ENABLE_SME_FOR_NS \
1257 ENABLE_SME2_FOR_NS \
1258 ENABLE_SVE_FOR_NS \
1259 ENABLE_TRF_FOR_NS \
1260 FW_ENC_STATUS \
1261 NR_OF_FW_BANKS \
1262 NR_OF_IMAGES_IN_FW_BANK \
1263 TWED_DELAY \
1264 ENABLE_FEAT_TWED \
1265 SVE_VECTOR_LEN \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001266 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001267)))
Jeenu Viswambharanfca76802017-01-16 16:52:35 +00001268
Justin Chadwellf9b32c12019-07-29 17:13:10 +01001269ifdef KEY_SIZE
1270 $(eval $(call assert_numeric,KEY_SIZE))
1271endif
1272
Justin Chadwell83e04882019-08-20 11:01:52 +01001273ifeq ($(filter $(SANITIZE_UB), on off trap),)
1274 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1275endif
1276
Juan Castilloa3487d12015-08-18 14:23:04 +01001277################################################################################
1278# Add definitions to the cpp preprocessor based on the current build options.
1279# This is done after including the platform specific makefile to allow the
1280# platform to overwrite the default options
1281################################################################################
Jeenu Viswambharand1b60152014-05-12 15:28:47 +01001282
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001283$(eval $(call add_defines,\
1284 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001285 ALLOW_RO_XLAT_TABLES \
1286 ARM_ARCH_MAJOR \
1287 ARM_ARCH_MINOR \
1288 BL2_ENABLE_SP_LOAD \
1289 COLD_BOOT_SINGLE_CPU \
1290 CTX_INCLUDE_AARCH32_REGS \
1291 CTX_INCLUDE_FPREGS \
1292 CTX_INCLUDE_PAUTH_REGS \
1293 EL3_EXCEPTION_HANDLING \
1294 CTX_INCLUDE_MTE_REGS \
1295 CTX_INCLUDE_EL2_REGS \
1296 CTX_INCLUDE_NEVE_REGS \
1297 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1298 DISABLE_MTPMU \
1299 ENABLE_FEAT_AMU \
1300 ENABLE_AMU_AUXILIARY_COUNTERS \
1301 ENABLE_AMU_FCONF \
1302 AMU_RESTRICT_COUNTERS \
1303 ENABLE_ASSERTIONS \
1304 ENABLE_BTI \
1305 ENABLE_MPAM_FOR_LOWER_ELS \
1306 ENABLE_PAUTH \
1307 ENABLE_PIE \
1308 ENABLE_PMF \
1309 ENABLE_PSCI_STAT \
1310 ENABLE_RME \
1311 ENABLE_RUNTIME_INSTRUMENTATION \
1312 ENABLE_SME_FOR_NS \
1313 ENABLE_SME2_FOR_NS \
1314 ENABLE_SME_FOR_SWD \
1315 ENABLE_SPE_FOR_NS \
1316 ENABLE_SVE_FOR_NS \
1317 ENABLE_SVE_FOR_SWD \
1318 ENCRYPT_BL31 \
1319 ENCRYPT_BL32 \
1320 ERROR_DEPRECATED \
1321 FAULT_INJECTION_SUPPORT \
1322 GICV2_G0_FOR_EL3 \
1323 HANDLE_EA_EL3_FIRST_NS \
1324 HW_ASSISTED_COHERENCY \
1325 LOG_LEVEL \
1326 MEASURED_BOOT \
1327 DRTM_SUPPORT \
1328 NS_TIMER_SWITCH \
1329 PL011_GENERIC_UART \
1330 PLAT_${PLAT} \
1331 PLAT_RSS_NOT_SUPPORTED \
1332 PROGRAMMABLE_RESET_ADDRESS \
1333 PSCI_EXTENDED_STATE_ID \
1334 PSCI_OS_INIT_MODE \
1335 ENABLE_FEAT_RAS \
1336 RAS_FFH_SUPPORT \
1337 RESET_TO_BL31 \
1338 SEPARATE_CODE_AND_RODATA \
1339 SEPARATE_BL2_NOLOAD_REGION \
1340 SEPARATE_NOBITS_REGION \
1341 RECLAIM_INIT_CODE \
1342 SPD_${SPD} \
1343 SPIN_ON_BL1_EXIT \
1344 SPM_MM \
1345 SPMC_AT_EL3 \
1346 SPMD_SPM_AT_SEL2 \
1347 TRUSTED_BOARD_BOOT \
1348 CRYPTO_SUPPORT \
1349 TRNG_SUPPORT \
1350 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001351 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001352 USE_COHERENT_MEM \
1353 USE_DEBUGFS \
1354 ARM_IO_IN_DTB \
1355 SDEI_IN_FCONF \
1356 SEC_INT_DESC_IN_FCONF \
1357 USE_ROMLIB \
1358 USE_TBBR_DEFS \
1359 WARMBOOT_ENABLE_DCACHE_EARLY \
1360 RESET_TO_BL2 \
1361 BL2_RUNS_AT_EL3 \
1362 BL2_IN_XIP_MEM \
1363 BL2_INV_DCACHE \
1364 USE_SPINLOCK_CAS \
1365 ERRATA_SPECULATIVE_AT \
1366 RAS_TRAP_NS_ERR_REC_ACCESS \
1367 COT_DESC_IN_DTB \
1368 USE_SP804_TIMER \
1369 ENABLE_FEAT_RNG \
1370 ENABLE_FEAT_RNG_TRAP \
1371 ENABLE_FEAT_SB \
1372 ENABLE_FEAT_DIT \
1373 NR_OF_FW_BANKS \
1374 NR_OF_IMAGES_IN_FW_BANK \
1375 PSA_FWU_SUPPORT \
1376 ENABLE_BRBE_FOR_NS \
1377 ENABLE_TRBE_FOR_NS \
1378 ENABLE_SYS_REG_TRACE_FOR_NS \
1379 ENABLE_TRF_FOR_NS \
1380 ENABLE_FEAT_HCX \
1381 ENABLE_MPMM \
1382 ENABLE_MPMM_FCONF \
1383 ENABLE_FEAT_FGT \
1384 ENABLE_FEAT_ECV \
1385 ENABLE_FEAT_AMUv1p1 \
1386 ENABLE_FEAT_SEL2 \
1387 ENABLE_FEAT_VHE \
1388 ENABLE_FEAT_CSV2_2 \
1389 ENABLE_FEAT_PAN \
1390 ENABLE_FEAT_TCR2 \
1391 ENABLE_FEAT_S2PIE \
1392 ENABLE_FEAT_S1PIE \
1393 ENABLE_FEAT_S2POE \
1394 ENABLE_FEAT_S1POE \
1395 ENABLE_FEAT_GCS \
1396 FEATURE_DETECTION \
1397 TWED_DELAY \
1398 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001399 CONDITIONAL_CMO \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001400 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidanand23c2fe22023-04-26 15:57:30 +01001401 SVE_VECTOR_LEN \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001402)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001403
Justin Chadwell83e04882019-08-20 11:01:52 +01001404ifeq (${SANITIZE_UB},trap)
1405 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001406endif #(SANITIZE_UB)
Justin Chadwell83e04882019-08-20 11:01:52 +01001407
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001408# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1409ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001410 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1411else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001412# Define the PRELOADED_BL33_BASE flag only if it is provided and
1413# EL3_PAYLOAD_BASE is not defined, as it has priority.
1414 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001415 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001416 endif
1417endif #(EL3_PAYLOAD_BASE)
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001418
Soby Mathew9fe88042018-03-26 12:43:37 +01001419# Define the DYN_DISABLE_AUTH flag only if set.
1420ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001421 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew9fe88042018-03-26 12:43:37 +01001422endif
1423
Varun Wadekar4d034c52019-01-11 14:47:48 -08001424ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001425 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekar4d034c52019-01-11 14:47:48 -08001426endif
1427
Manish Pandey3f90ad72020-01-14 11:52:05 +00001428# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001429ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001430ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001431 -include $(BUILD_PLAT)/sp_gen.mk
1432 FIP_DEPS += sp
1433 CRT_DEPS += sp
1434 NEED_SP_PKG := yes
Manish Pandey3f90ad72020-01-14 11:52:05 +00001435else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001436 ifeq (${SPMD_SPM_AT_SEL2},1)
1437 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1438 endif
1439endif #(SP_LAYOUT_FILE)
1440endif #(SPD)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001441
Juan Castilloa3487d12015-08-18 14:23:04 +01001442################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001443# Build targets
1444################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001445
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301446.PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp fwu_fip certtool dtbs memmap doc enctool
Juan Castilloa3487d12015-08-18 14:23:04 +01001447.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001448
Juan Castilloa3487d12015-08-18 14:23:04 +01001449all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001450
Juan Castilloa3487d12015-08-18 14:23:04 +01001451msg_start:
1452 @echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001453
Soby Mathew18a62042015-10-26 14:29:21 +00001454ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001455# Check if deprecated declarations and cpp warnings should be treated as error or not.
Varun Wadekar4d034c52019-01-11 14:47:48 -08001456ifneq ($(findstring clang,$(notdir $(CC))),)
1457 CPPFLAGS += -Wno-error=deprecated-declarations
1458else
Dan Handley6fa89a22018-02-27 16:03:58 +00001459 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001460endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001461endif #(!ERROR_DEPRECATED)
Soby Mathew18a62042015-10-26 14:29:21 +00001462
Roberto Vargase92111a2018-05-22 16:05:42 +01001463$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001464$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001465
Juan Castilloa3487d12015-08-18 14:23:04 +01001466# Expand build macros for the different images
1467ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001468BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001469$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001470endif #(NEED_BL1)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001471
Juan Castilloa3487d12015-08-18 14:23:04 +01001472ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001473
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001474ifeq (${RESET_TO_BL2}, 0)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001475FIP_BL2_ARGS := tb-fw
1476endif
1477
Chris Kayfb3b0512021-09-28 15:44:37 +01001478BL2_SOURCES := $(sort ${BL2_SOURCES})
1479
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001480$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001481 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001482
1483endif #(NEED_BL2)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001484
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001485ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001486$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001487endif #(NEED_SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001488
Juan Castilloa3487d12015-08-18 14:23:04 +01001489ifeq (${NEED_BL31},yes)
1490BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001491# Sort BL31 source files to remove duplicates
1492BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301493ifneq (${DECRYPTION_SUPPORT},none)
1494$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001495 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301496else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001497$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001498 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001499endif #(DECRYPTION_SUPPORT)
1500endif #(NEED_BL31)
Juan Castillo379954c2014-11-04 17:36:40 +00001501
Juan Castillo671b8db2015-11-12 10:59:26 +00001502# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001503# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001504# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001505ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001506# Sort BL32 source files to remove duplicates
1507BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001508BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1509
Sumit Gargeec52442019-11-14 16:33:45 +05301510ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001511$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301512 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1513else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001514$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001515 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001516endif #(DECRYPTION_SUPPORT)
1517endif #(NEED_BL32)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001518
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001519# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1520# needs to be built from RMM_SOURCES.
1521ifeq (${NEED_RMM},yes)
1522# Sort RMM source files to remove duplicates
1523RMM_SOURCES := $(sort ${RMM_SOURCES})
1524BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1525
1526$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001527 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1528endif #(NEED_RMM)
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001529
Juan Castilloa3487d12015-08-18 14:23:04 +01001530# Add the BL33 image if required by the platform
1531ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001532$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001533endif #(NEED_BL33)
Juan Castillo9c25a402015-01-13 12:21:04 +00001534
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001535ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001536$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001537 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001538endif #(NEED_BL2U)
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001539
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001540# Expand build macros for the different images
1541ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001542 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001543endif #(NEED_FDT)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001544
Manish Pandey3f90ad72020-01-14 11:52:05 +00001545# Add Secure Partition packages
1546ifeq (${NEED_SP_PKG},yes)
1547$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
Ruari Phipps571ed6b2020-07-24 16:20:57 +01001548 ${Q}${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT}
J-Alvesef8e0982022-03-22 16:28:51 +00001549sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001550 @${ECHO_BLANK_LINE}
1551 @echo "Built SP Images successfully"
1552 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001553endif #(NEED_SP_PKG)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001554
Ian Spray36eaaf32014-01-30 17:25:28 +00001555locate-checkpatch:
1556ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001557 $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001558else
1559ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001560 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001561endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001562endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001563
Achin Gupta4f6ad662013-10-25 09:08:21 +01001564clean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001565 @echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001566 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001567ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001568 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001569else
1570# Clear the MAKEFLAGS as we do not want
1571# to pass the gnumake flags to nmake.
1572 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001573endif #(UNIX_MK)
Juan Castilloa3487d12015-08-18 14:23:04 +01001574 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301575 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
Roberto Vargase92111a2018-05-22 16:05:42 +01001576 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001577
James Morrisseyeaaeece2013-11-01 13:56:59 +00001578realclean distclean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001579 @echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001580 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1581 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001582ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001583 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001584else
1585# Clear the MAKEFLAGS as we do not want
1586# to pass the gnumake flags to nmake.
1587 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001588endif #(UNIX_MK)
Nicolas Boulenguezdf612a52021-03-31 12:22:45 +02001589 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301590 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
Roberto Vargase92111a2018-05-22 16:05:42 +01001591 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001592
Ian Spray36eaaf32014-01-30 17:25:28 +00001593checkcodebase: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001594 @echo " CHECKING STYLE"
Dan Handley3a355712016-06-02 18:21:02 +01001595 @if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001596 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001597 while read GIT_FILE ; \
1598 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1599 done ; \
1600 else \
1601 find . -type f -not -iwholename "*.git*" \
1602 -not -iwholename "*build*" \
1603 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001604 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001605 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001606 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001607 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1608 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001609
1610checkpatch: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001611 @echo " CHECKING STYLE"
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001612 @if test -n "${CHECKPATCH_OPTS}"; then \
1613 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1614 fi
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001615 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001616 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1617 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001618 printf "\n[*] Checking style of '$$commit'\n\n"; \
1619 git log --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001620 -- ${CHECK_PATHS} | \
1621 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001622 git diff --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001623 -- ${CHECK_PATHS} | \
1624 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001625 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001626
1627certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001628
Pali Rohár54ff2132020-11-24 15:38:08 +01001629${CRTTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001630 ${Q}${MAKE} PLAT=${PLAT} USE_TBBR_DEFS=${USE_TBBR_DEFS} COT=${COT} OPENSSL_DIR=${OPENSSL_DIR} CRTTOOL=${CRTTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${CRTTOOLPATH} all
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001631 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001632 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001633 @${ECHO_BLANK_LINE}
Jon Medhurst407a95c2014-02-12 15:54:48 +00001634
Juan Castillo11abdcd2014-10-21 11:30:42 +01001635ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001636certificates: ${CRT_DEPS} ${CRTTOOL}
1637 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001638 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001639 @echo "Built $@ successfully"
1640 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001641 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001642endif #(GENERATE_COT)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001643
Juan Castilloa3487d12015-08-18 14:23:04 +01001644${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001645 $(eval ${CHECK_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001646 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
1647 ${Q}${FIPTOOL} info $@
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001648 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001649 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001650 @${ECHO_BLANK_LINE}
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001651
Yatharth Kochard1a93432015-10-12 12:33:47 +01001652ifneq (${GENERATE_COT},0)
1653fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1654 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001655 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001656 @echo "Built $@ successfully"
1657 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001658 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001659endif #(GENERATE_COT)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001660
1661${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001662 $(eval ${CHECK_FWU_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001663 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1664 ${Q}${FIPTOOL} info $@
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001665 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001666 @echo "Built $@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001667 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001668
Juan Castilloa3487d12015-08-18 14:23:04 +01001669fiptool: ${FIPTOOL}
1670fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001671fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001672
Pali Rohár54ff2132020-11-24 15:38:08 +01001673${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001674ifdef UNIX_MK
Lionel Debieve730bde82022-11-14 11:05:09 +01001675 ${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${FIPTOOLPATH} all
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001676else
1677# Clear the MAKEFLAGS as we do not want
1678# to pass the gnumake flags to nmake.
1679 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001680endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001681
Pali Rohár54ff2132020-11-24 15:38:08 +01001682romlib.bin: libraries FORCE
John Tsichritzisf6ea99b2019-05-21 15:47:37 +01001683 ${Q}${MAKE} PLAT_DIR=${PLAT_DIR} BUILD_PLAT=${BUILD_PLAT} ENABLE_BTI=${ENABLE_BTI} ARM_ARCH_MINOR=${ARM_ARCH_MINOR} INCLUDES='${INCLUDES}' DEFINES='${DEFINES}' --no-print-directory -C ${ROMLIBPATH} all
Roberto Vargase92111a2018-05-22 16:05:42 +01001684
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001685memmap: all
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001686ifdef UNIX_MK
1687 ${Q}PYTHONPATH=${CURDIR}/tools/memory \
1688 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1689else
1690 ${Q}set PYTHONPATH=${CURDIR}/tools/memory && \
1691 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1692endif
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001693
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001694doc:
1695 @echo " BUILD DOCUMENTATION"
1696 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1697
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301698enctool: ${ENCTOOL}
1699
Pali Rohár54ff2132020-11-24 15:38:08 +01001700${ENCTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001701 ${Q}${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${ENCTOOLPATH} all
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301702 @${ECHO_BLANK_LINE}
1703 @echo "Built $@ successfully"
1704 @${ECHO_BLANK_LINE}
1705
Joakim Bech35fab8c2014-01-23 14:51:49 +01001706cscope:
1707 @echo " CSCOPE"
1708 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1709 ${Q}cscope -b -q -k
1710
Ryan Harkin72ee3312014-01-15 16:55:07 +00001711help:
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001712 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001713 @echo ""
1714 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +00001715 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001716 @echo ""
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001717 @echo "platform = ${PLATFORM_LIST}"
1718 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001719 @echo "Please refer to the User Guide for a list of all supported options."
1720 @echo "Note that the build system doesn't track dependencies for build "
1721 @echo "options. Therefore, if any of the build options are changed "
1722 @echo "from a previous build, a clean build must be performed."
1723 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +00001724 @echo "Supported Targets:"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001725 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +00001726 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +00001727 @echo " bl2 Build the BL2 binary"
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001728 @echo " bl2u Build the BL2U binary"
Juan Castillo7d199412015-12-14 09:35:25 +00001729 @echo " bl31 Build the BL31 binary"
Soby Mathewa1941252016-05-05 14:33:33 +01001730 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1731 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castilloa3487d12015-08-18 14:23:04 +01001732 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001733 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochard1a93432015-10-12 12:33:47 +01001734 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +00001735 @echo " checkcodebase Check the coding style of the entire source tree"
1736 @echo " checkpatch Check the coding style on changes in the current"
1737 @echo " branch against BASE_COMMIT (default origin/master)"
1738 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +00001739 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +00001740 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001741 @echo " certtool Build the Certificate generation tool"
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301742 @echo " enctool Build the Firmware encryption tool"
Andreas Färberec82cfb2016-10-10 05:18:49 +02001743 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Manish Pandey3f90ad72020-01-14 11:52:05 +00001744 @echo " sp Build the Secure Partition Packages"
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001745 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathewab4181d2017-12-14 17:44:56 +00001746 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001747 @echo " memmap Print the memory map of the built binaries"
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001748 @echo " doc Build html based documentation using Sphinx tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001749 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001750 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +00001751 @echo ""
1752 @echo "example: build all targets for the FVP platform:"
1753 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001754
1755.PHONY: FORCE
1756FORCE:;