blob: 03f93201a8970896708901d3810ee89c31c89692 [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
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100220# Will set march32-directive from platform configuration
221else
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)
227 march32-directive = -march=armv${ARM_ARCH_MAJOR}-a
228 march64-directive = -march=armv${ARM_ARCH_MAJOR}-a
229 else
230 march32-directive = -march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a
231 march64-directive = -march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a
232 endif #(ARM_ARCH_MINOR)
233endif #(ARM_ARCH_MAJOR)
234
235################################################################################
236# Get Architecture Feature Modifiers
237################################################################################
238arch-features = ${ARM_ARCH_FEATURE}
239
240####################################################
241# Enable required options for Memory Stack Tagging.
242####################################################
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100243
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000244# Memory tagging is supported in architecture Armv8.5-A AArch64 and onwards
245ifeq ($(ARCH), aarch64)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100246 # Check if revision is greater than or equal to 8.5
247 ifeq "8.5" "$(word 1, $(sort 8.5 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
248 mem_tag_arch_support = yes
249 endif
250endif #(ARCH=aarch64)
Alexei Fedorov132e6652020-12-07 16:38:53 +0000251
Alexei Fedorov132e6652020-12-07 16:38:53 +0000252# Currently, these options are enabled only for clang and armclang compiler.
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000253ifeq (${SUPPORT_STACK_MEMTAG},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100254 ifdef mem_tag_arch_support
255 # Check for armclang and clang compilers
256 ifneq ( ,$(filter $(notdir $(CC)),armclang clang))
257 # Add "memtag" architecture feature modifier if not specified
258 ifeq ( ,$(findstring memtag,$(arch-features)))
259 arch-features := $(arch-features)+memtag
260 endif # memtag
261 ifeq ($(notdir $(CC)),armclang)
262 TF_CFLAGS += -mmemtag-stack
263 else ifeq ($(notdir $(CC)),clang)
264 TF_CFLAGS += -fsanitize=memtag
265 endif # armclang
266 endif
267 else
268 $(error "Error: stack memory tagging is not supported for \
269 architecture ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
270 endif #(mem_tag_arch_support)
271endif #(SUPPORT_STACK_MEMTAG)
Alexei Fedorov132e6652020-12-07 16:38:53 +0000272
273# Set the compiler's architecture feature modifiers
274ifneq ($(arch-features), none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100275 # Strip "none+" from arch-features
276 arch-features := $(subst none+,,$(arch-features))
277 ifeq ($(ARCH), aarch32)
278 march32-directive := $(march32-directive)+$(arch-features)
279 else
280 march64-directive := $(march64-directive)+$(arch-features)
281 endif
Alexei Fedorov132e6652020-12-07 16:38:53 +0000282# Print features
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100283 $(info Arm Architecture Features specified: $(subst +, ,$(arch-features)))
284endif #(arch-features)
Chris Kay08fec332021-03-09 13:34:35 +0000285
originfba80d82022-01-19 16:30:14 +0000286ifneq ($(findstring clang,$(notdir $(CC))),)
287 ifneq ($(findstring armclang,$(notdir $(CC))),)
288 TF_CFLAGS_aarch32 := -target arm-arm-none-eabi $(march32-directive)
289 TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi $(march64-directive)
290 LD := $(LINKER)
291 else
Arvind Ram Prakasha3394cf2022-10-19 15:44:51 -0500292 TF_CFLAGS_aarch32 = $(target32-directive) $(march32-directive)
originfba80d82022-01-19 16:30:14 +0000293 TF_CFLAGS_aarch64 := -target aarch64-elf $(march64-directive)
294 LD := $(shell $(CC) --print-prog-name ld.lld)
295
296 AR := $(shell $(CC) --print-prog-name llvm-ar)
297 OD := $(shell $(CC) --print-prog-name llvm-objdump)
298 OC := $(shell $(CC) --print-prog-name llvm-objcopy)
299 endif
300
301 CPP := $(CC) -E $(TF_CFLAGS_$(ARCH))
302 PP := $(CC) -E $(TF_CFLAGS_$(ARCH))
303 AS := $(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
zelalem-aweked5f45272019-11-12 16:20:17 -0600304else ifneq ($(findstring gcc,$(notdir $(CC))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100305 TF_CFLAGS_aarch32 = $(march32-directive)
306 TF_CFLAGS_aarch64 = $(march64-directive)
307 ifeq ($(ENABLE_LTO),1)
308 # Enable LTO only for aarch64
309 ifeq (${ARCH},aarch64)
310 LTO_CFLAGS = -flto
311 # Use gcc as a wrapper for the ld, recommended for LTO
312 LINKER := ${CROSS_COMPILE}gcc
313 endif
zelalem-aweked5f45272019-11-12 16:20:17 -0600314 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100315 LD = $(LINKER)
dp-arm320e8442017-05-02 12:00:08 +0100316else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100317 TF_CFLAGS_aarch32 = $(march32-directive)
318 TF_CFLAGS_aarch64 = $(march64-directive)
319 LD = $(LINKER)
320endif #(clang)
dp-arm320e8442017-05-02 12:00:08 +0100321
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100322# Process Debug flag
323$(eval $(call add_define,DEBUG))
324ifneq (${DEBUG}, 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100325 BUILD_TYPE := debug
326 TF_CFLAGS += -g -gdwarf-4
327 ASFLAGS += -g -Wa,-gdwarf-4
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100328
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100329 # Use LOG_LEVEL_INFO by default for debug builds
330 LOG_LEVEL := 40
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100331else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100332 BUILD_TYPE := release
333 # Use LOG_LEVEL_NOTICE by default for release builds
334 LOG_LEVEL := 20
335endif #(Debug)
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100336
Peiyuan Song44f8f472020-04-25 16:53:43 +0800337# Default build string (git branch and commit)
338ifeq (${BUILD_STRING},)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100339 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
Peiyuan Song44f8f472020-04-25 16:53:43 +0800340endif
laurenw-arme954f652022-07-12 10:12:05 -0500341VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
Peiyuan Song44f8f472020-04-25 16:53:43 +0800342
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100343ifeq (${AARCH32_INSTRUCTION_SET},A32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100344 TF_CFLAGS_aarch32 += -marm
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100345else ifeq (${AARCH32_INSTRUCTION_SET},T32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100346 TF_CFLAGS_aarch32 += -mthumb
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100347else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100348 $(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
349endif #(AARCH32_INSTRUCTION_SET)
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100350
Sandrine Bailleux1aa72ec2018-07-03 09:14:45 +0200351TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-arm320e8442017-05-02 12:00:08 +0100352TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathewa1941252016-05-05 14:33:33 +0100353
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100354ifneq (${BP_OPTION},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100355 TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
356endif #(BP_OPTION)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100357
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100358ASFLAGS_aarch32 = $(march32-directive)
Alexei Fedorovb567e5d2019-03-11 16:51:47 +0000359ASFLAGS_aarch64 = $(march64-directive)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000360
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100361##############################################################################
362# WARNINGS Configuration
363###############################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100364# General warnings
365WARNINGS := -Wall -Wmissing-include-dirs -Wunused \
Yann Gautier94a40b62021-05-20 13:18:14 +0200366 -Wdisabled-optimization -Wvla -Wshadow \
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000367 -Wredundant-decls
368# stricter warnings
369WARNINGS += -Wextra -Wno-trigraphs
370# too verbose for generic build
371WARNINGS += -Wno-missing-field-initializers \
372 -Wno-type-limits -Wno-sign-compare \
373# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
374WARNINGS += -Wno-unused-parameter
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100375
376# Additional warnings
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000377# Level 1 - infrequent warnings we should have none of
378# full -Wextra
379WARNING1 += -Wsign-compare
380WARNING1 += -Wtype-limits
381WARNING1 += -Wmissing-field-initializers
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100382
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000383# Level 2 - problematic warnings that we want
384# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
385# TODO: disable just for them and move into default build
386WARNING2 += -Wold-style-definition
387WARNING2 += -Wmissing-prototypes
388WARNING2 += -Wmissing-format-attribute
389# TF-A aims to comply with this eventually. Effort too large at present
390WARNING2 += -Wundef
Boyan Karatotev9c6ba592022-11-21 14:49:05 +0000391# currently very involved and many platforms set this off
392WARNING2 += -Wunused-const-variable=2
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100393
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000394# Level 3 - very pedantic, frequently ignored
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100395WARNING3 := -Wbad-function-cast
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000396WARNING3 += -Waggregate-return
397WARNING3 += -Wnested-externs
398WARNING3 += -Wcast-align
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100399WARNING3 += -Wcast-qual
400WARNING3 += -Wconversion
401WARNING3 += -Wpacked
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100402WARNING3 += -Wpointer-arith
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100403WARNING3 += -Wswitch-default
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100404
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000405# Setting W is quite verbose and most warnings will be pre-existing issues
406# outside of the contributor's control. Don't fail the build on them so warnings
407# can be seen and hopefully addressed
408ifdef W
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100409 ifneq (${W},0)
410 E ?= 0
411 endif
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000412endif
413
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100414ifeq (${W},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100415 WARNINGS += $(WARNING1)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100416else ifeq (${W},2)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100417 WARNINGS += $(WARNING1) $(WARNING2)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100418else ifeq (${W},3)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100419 WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
420endif #(W)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100421
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100422# Compiler specific warnings
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100423ifeq ($(findstring clang,$(notdir $(CC))),)
Justin Chadwell7a914232019-07-03 14:15:56 +0100424# not using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100425WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \
426 -Wpacked-bitfield-compat -Wshift-overflow=2 \
427 -Wlogical-op
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500428
429# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
430TF_CFLAGS += $(call cc_option, --param=min-pagesize=0)
431
Justin Chadwell7a914232019-07-03 14:15:56 +0100432else
433# using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100434WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
435 -Wlogical-op-parentheses
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100436endif #(Clang Warning)
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100437
Yann Gautier957c3532018-12-10 18:08:53 +0100438ifneq (${E},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100439 ERRORS := -Werror
440endif #(E)
Yann Gautier957c3532018-12-10 18:08:53 +0100441
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100442################################################################################
443# Compiler and Linker Directives
444################################################################################
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100445CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
446 $(ERRORS) $(WARNINGS)
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900447ASFLAGS += $(CPPFLAGS) $(ASFLAGS_$(ARCH)) \
Julius Werner53456fc2019-07-09 13:49:11 -0700448 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900449TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Holland23f5e542019-10-20 16:11:25 -0500450 -ffunction-sections -fdata-sections \
451 -ffreestanding -fno-builtin -fno-common \
452 -Os -std=gnu99
Juan Castilloa3487d12015-08-18 14:23:04 +0100453
Justin Chadwell83e04882019-08-20 11:01:52 +0100454ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100455 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
456endif #(${SANITIZE_UB},on)
457
Justin Chadwell83e04882019-08-20 11:01:52 +0100458ifeq (${SANITIZE_UB},trap)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100459 TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
Justin Chadwell83e04882019-08-20 11:01:52 +0100460 -fsanitize-undefined-trap-on-error
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100461endif #(${SANITIZE_UB},trap)
Justin Chadwell83e04882019-08-20 11:01:52 +0100462
david cunado34ab6092017-11-30 21:58:01 +0000463GCC_V_OUTPUT := $(shell $(CC) -v 2>&1)
david cunado34ab6092017-11-30 21:58:01 +0000464
Marco Felsch24ad8402022-11-09 12:59:09 +0100465TF_LDFLAGS += -z noexecstack
466
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100467# LD = armlink
Varun Wadekar4d034c52019-01-11 14:47:48 -0800468ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100469 TF_LDFLAGS += --diag_error=warning --lto_level=O1
470 TF_LDFLAGS += --remove --info=unused,unusedsymbols
471 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100472
473# LD = gcc (used when GCC LTO is enabled)
zelalem-aweked5f45272019-11-12 16:20:17 -0600474else ifneq ($(findstring gcc,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100475 # Pass ld options with Wl or Xlinker switches
476 TF_LDFLAGS += -Wl,--fatal-warnings -O1
477 TF_LDFLAGS += -Wl,--gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000478
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100479 TF_LDFLAGS += -Wl,-z,common-page-size=4096 #Configure page size constants
480 TF_LDFLAGS += -Wl,-z,max-page-size=4096
Chris Kay73b1f402022-12-22 13:26:37 +0000481
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100482 ifeq ($(ENABLE_LTO),1)
483 ifeq (${ARCH},aarch64)
484 TF_LDFLAGS += -flto -fuse-linker-plugin
485 endif
486 endif #(ENABLE_LTO)
487
zelalem-aweked5f45272019-11-12 16:20:17 -0600488# GCC automatically adds fix-cortex-a53-843419 flag when used to link
489# which breaks some builds, so disable if errata fix is not explicitly enabled
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100490 ifneq (${ERRATA_A53_843419},1)
491 TF_LDFLAGS += -mno-fix-cortex-a53-843419
492 endif
493 TF_LDFLAGS += -nostdlib
494 TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100495
496# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekar4d034c52019-01-11 14:47:48 -0800497else
Marco Felsch24ad8402022-11-09 12:59:09 +0100498# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
499# are not loaded by a elf loader.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100500 TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
501 TF_LDFLAGS += -O1
502 TF_LDFLAGS += --gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000503
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100504 TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
505 TF_LDFLAGS += -z max-page-size=4096
Chris Kay73b1f402022-12-22 13:26:37 +0000506
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100507# ld.lld doesn't recognize the errata flags,
Yabin Cuied7dc512023-01-19 20:06:04 +0000508# therefore don't add those in that case.
509# ld.lld reports section type mismatch warnings,
510# therefore don't add --fatal-warnings to it.
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100511 ifeq ($(findstring ld.lld,$(notdir $(LD))),)
512 TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
513 endif
514
515endif #(LD = armlink)
Juan Castilloa3487d12015-08-18 14:23:04 +0100516
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000517DTC_FLAGS += -I dts -O dtb
Louis Mayencourt6b232d92020-02-28 16:57:30 +0000518DTC_CPPFLAGS += -P -nostdinc -Iinclude -Ifdts -undef \
519 -x assembler-with-cpp $(DEFINES)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000520
Juan Castilloa3487d12015-08-18 14:23:04 +0100521################################################################################
522# Common sources and include directories
523################################################################################
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000524include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
dp-arme3cc8382017-05-04 12:15:35 +0100525include lib/compiler-rt/compiler-rt.mk
Juan Castilloa3487d12015-08-18 14:23:04 +0100526
527BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100528 common/tf_log.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100529 common/${ARCH}/debug.S \
Julius Werner03020da2018-11-27 22:10:56 -0800530 drivers/console/multi_console.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100531 lib/${ARCH}/cache_helpers.S \
532 lib/${ARCH}/misc_helpers.S \
Soby Mathew2f38ce32018-02-08 17:45:12 +0000533 plat/common/plat_bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100534 plat/common/plat_log_common.c \
dp-arm230011c2017-03-07 11:02:47 +0000535 plat/common/${ARCH}/plat_common.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100536 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas0f8f9852018-05-08 10:27:10 +0100537 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000538
Boyan Karatotev02576932023-01-13 16:47:07 +0000539# Pointer Authentication sources
540ifeq (${ENABLE_PAUTH}, 1)
541# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
542# Pauth support. As it's not secure, it must be reimplemented for real platforms
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100543 BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
Boyan Karatotev02576932023-01-13 16:47:07 +0000544endif
545
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100546ifeq ($(notdir $(CC)),armclang)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100547 BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100548endif
549
Justin Chadwell83e04882019-08-20 11:01:52 +0100550ifeq (${SANITIZE_UB},on)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100551 BL_COMMON_SOURCES += plat/common/ubsan.c
Justin Chadwell83e04882019-08-20 11:01:52 +0100552endif
553
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200554INCLUDES += -Iinclude \
Antonio Nino Diaz8d1ade62018-12-17 17:20:57 +0000555 -Iinclude/arch/${ARCH} \
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000556 -Iinclude/lib/cpus/${ARCH} \
557 -Iinclude/lib/el3_runtime/${ARCH} \
558 ${PLAT_INCLUDES} \
559 ${SPD_INCLUDES}
560
Antonio Nino Diazc3a2cf22018-11-19 11:48:30 +0000561include common/backtrace/backtrace.mk
562
Juan Castilloa3487d12015-08-18 14:23:04 +0100563################################################################################
564# Generic definitions
565################################################################################
Evan Lloydf2697142015-12-02 18:17:37 +0000566include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
567
Grant Likely388248a2020-07-30 08:50:10 +0100568ifeq (${BUILD_BASE},)
569 BUILD_BASE := ./build
570endif
571BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
Achin Gupta4f6ad662013-10-25 09:08:21 +0100572
Evan Lloydf2697142015-12-02 18:17:37 +0000573SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
Ryan Harkin72ee3312014-01-15 16:55:07 +0000574
Juan Castilloa3487d12015-08-18 14:23:04 +0100575# Platforms providing their own TBB makefile may override this value
576INCLUDE_TBBR_MK := 1
577
Juan Castilloa3487d12015-08-18 14:23:04 +0100578################################################################################
579# Include SPD Makefile if one has been specified
580################################################################################
581
582ifneq (${SPD},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100583 ifeq (${ARCH},aarch32)
584 $(error "Error: SPD is incompatible with AArch32.")
585 endif
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000586
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100587 ifdef EL3_PAYLOAD_BASE
588 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
589 $(warning "The SPD and its BL32 companion will be present but \
590 ignored.")
591 endif
Achin Gupta60b7b8a2019-10-11 15:50:43 +0100592
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100593 ifeq (${SPD},spmd)
594 # SPMD is located in std_svc directory
595 SPD_DIR := std_svc
Juan Castilloa3487d12015-08-18 14:23:04 +0100596
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100597 ifeq ($(SPMD_SPM_AT_SEL2),1)
598 CTX_INCLUDE_EL2_REGS := 1
599 ifeq ($(SPMC_AT_EL3),1)
600 $(error SPM cannot be enabled in both S-EL2 and EL3.)
601 endif
602 endif
Olivier Deprezbcaa0682020-04-01 21:28:26 +0200603
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100604 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
605 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
606 endif
Davidson K9a949142021-03-10 12:07:15 +0530607
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100608 ifeq ($(TS_SP_FW_CONFIG),1)
609 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
610 endif
Balint Dobszay9f689762021-03-26 15:19:11 +0100611
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100612 ifneq ($(ARM_BL2_SP_LIST_DTS),)
613 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
614 endif
Balint Dobszay719ba9c2021-03-26 16:23:18 +0100615
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100616 ifneq ($(SP_LAYOUT_FILE),)
617 BL2_ENABLE_SP_LOAD := 1
618 endif
619 else
620 # All other SPDs in spd directory
621 SPD_DIR := spd
622 endif #(SPD)
Juan Castilloa3487d12015-08-18 14:23:04 +0100623
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100624 # We expect to locate an spd.mk under the specified SPD directory
625 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000626
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100627 ifeq (${SPD_MAKE},)
628 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
629 endif
630 $(info Including ${SPD_MAKE})
631 include ${SPD_MAKE}
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000632
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100633 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
634 # Makefile would set NEED_BL32 to "yes". In this case, the build system
635 # supports two mutually exclusive options:
636 # * BL32 is built from source: then BL32_SOURCES must contain the list
637 # of source files to build BL32
638 # * BL32 is a prebuilt binary: then BL32 must point to the image file
639 # that will be included in the FIP
640 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
641 # over the sources.
642endif #(SPD=none)
Juan Castilloa3487d12015-08-18 14:23:04 +0100643
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000644ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100645 ifeq (${SPD},none)
646 ifeq (${ENABLE_RME},0)
647 $(error CTX_INCLUDE_EL2_REGS is available only when SPD \
648 or RME is enabled)
649 endif
650 endif
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000651endif
652
Douglas Raillard306593d2017-02-24 18:14:15 +0000653################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500654# Include rmmd Makefile if RME is enabled
655################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500656ifneq (${ENABLE_RME},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100657 ifneq (${ARCH},aarch64)
658 $(error ENABLE_RME requires AArch64)
659 endif
660 ifeq ($(SPMC_AT_EL3),1)
661 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
662 endif
663
664 ifneq (${SPD}, none)
665 ifneq (${SPD}, spmd)
666 $(error ENABLE_RME is incompatible with SPD=${SPD}. Use SPD=spmd)
667 endif
668 endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500669include services/std_svc/rmmd/rmmd.mk
670$(warning "RME is an experimental feature")
671endif
672
673################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100674# Include the platform specific Makefile after the SPD Makefile (the platform
675# makefile may use all previous definitions in this file)
676################################################################################
Jeenu Viswambharane5c39fd2014-05-16 11:38:10 +0100677
Dan Handley81be1002015-03-27 17:44:35 +0000678include ${PLAT_MAKEFILE_FULL}
Jon Medhurst66573cb2014-02-13 15:19:28 +0000679
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600680# This internal flag is common option which is set to 1 for scenarios
681# when the BL2 is running in EL3 level. This occurs in two scenarios -
682# 4 world system running BL2 at EL3 and two world system without BL1 running
683# BL2 in EL3
684
685ifeq (${RESET_TO_BL2},1)
686 BL2_RUNS_AT_EL3 := 1
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100687 ifeq (${ENABLE_RME},1)
688 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not \
689 supported at the moment.)
690 endif
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600691else ifeq (${ENABLE_RME},1)
692 BL2_RUNS_AT_EL3 := 1
693else
694 BL2_RUNS_AT_EL3 := 0
695endif
696
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900697$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
698
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100699ifeq (${ARM_ARCH_MAJOR},7)
700include make_helpers/armv7-a-cpus.mk
701endif
702
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900703PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
704ifneq ($(PIE_FOUND),)
705 TF_CFLAGS += -fno-PIE
Samuel Holland9286c022022-04-08 21:56:02 -0500706ifneq ($(findstring gcc,$(notdir $(LD))),)
707 TF_LDFLAGS += -no-pie
708endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100709endif #(PIE_FOUND)
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900710
711ifneq ($(findstring gcc,$(notdir $(LD))),)
712 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100713else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900714 PIE_LDFLAGS += -pie --no-dynamic-linker
715endif
716
717ifeq ($(ENABLE_PIE),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100718 ifeq ($(RESET_TO_BL2),1)
719 ifneq ($(BL2_IN_XIP_MEM),1)
720 BL2_CPPFLAGS += -fpie
721 BL2_CFLAGS += -fpie
722 BL2_LDFLAGS += $(PIE_LDFLAGS)
723 endif #(BL2_IN_XIP_MEM)
724 endif #(RESET_TO_BL2)
Chris Kay13886c82023-02-02 14:39:03 +0000725 BL31_CPPFLAGS += -fpie
726 BL31_CFLAGS += -fpie
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900727 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay13886c82023-02-02 14:39:03 +0000728
729 BL32_CPPFLAGS += -fpie
Masahiro Yamadade634f82020-01-17 13:45:14 +0900730 BL32_CFLAGS += -fpie
731 BL32_LDFLAGS += $(PIE_LDFLAGS)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100732endif #(ENABLE_PIE)
Soby Mathew078f1a42018-08-28 11:13:55 +0100733
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000734BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
735BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
736BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
737
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900738BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600739ifeq ($(RESET_TO_BL2),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100740 BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900741else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100742 BL2_CPPFLAGS += -DIMAGE_AT_EL1
743endif #(RESET_TO_BL2)
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000744
745ifeq (${ARCH},aarch64)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100746 BL2U_CPPFLAGS += -DIMAGE_AT_EL1
747 BL31_CPPFLAGS += -DIMAGE_AT_EL3
748 BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000749else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100750 BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900751endif
752
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000753# Include the CPU specific operations makefile, which provides default
754# values for all CPU errata workarounds and CPU specific optimisations.
755# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100756include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100757
dp-armcdd03cb2017-02-15 11:07:55 +0000758################################################################################
759# Build `AARCH32_SP` as BL32 image for AArch32
760################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100761ifeq (${ARCH},aarch32)
762 NEED_BL32 := yes
dp-armcdd03cb2017-02-15 11:07:55 +0000763
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100764 ifneq (${AARCH32_SP},none)
765 # We expect to locate an sp.mk under the specified AARCH32_SP directory
766 AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
dp-armcdd03cb2017-02-15 11:07:55 +0000767
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100768 ifeq (${AARCH32_SP_MAKE},)
769 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
770 endif
771 $(info Including ${AARCH32_SP_MAKE})
772 include ${AARCH32_SP_MAKE}
773 endif
774endif #(ARCH=aarch32)
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800775
776################################################################################
777# Include libc if not overridden
778################################################################################
779ifeq (${OVERRIDE_LIBC},0)
780include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000781endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100782
783################################################################################
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100784# Check incompatible options and dependencies
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000785################################################################################
786
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100787# USE_DEBUGFS experimental feature recommended only in debug builds
788ifeq (${USE_DEBUGFS},1)
789 ifeq (${DEBUG},1)
790 $(warning DEBUGFS experimental feature is enabled.)
791 else
792 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800793 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100794endif #(USE_DEBUGFS)
795
796# USE_SPINLOCK_CAS requires AArch64 build
797ifeq (${USE_SPINLOCK_CAS},1)
798 ifneq (${ARCH},aarch64)
799 $(error USE_SPINLOCK_CAS requires AArch64)
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800800 endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100801endif #(USE_SPINLOCK_CAS)
802
803# The cert_create tool cannot generate certificates individually, so we use the
804# target 'certificates' to create them all
805ifneq (${GENERATE_COT},0)
806 FIP_DEPS += certificates
807 FWU_FIP_DEPS += fwu_certificates
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000808endif
809
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100810ifneq (${DECRYPTION_SUPPORT},none)
811 ENC_ARGS += -f ${FW_ENC_STATUS}
812 ENC_ARGS += -k ${ENC_KEY}
813 ENC_ARGS += -n ${ENC_NONCE}
814 FIP_DEPS += enctool
815 FWU_FIP_DEPS += enctool
816endif #(DECRYPTION_SUPPORT)
817
818ifdef EL3_PAYLOAD_BASE
819 ifdef PRELOADED_BL33_BASE
820 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
821 incompatible build options. EL3_PAYLOAD_BASE has priority.")
822 endif
823 ifneq (${GENERATE_COT},0)
824 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible \
825 build options.")
826 endif
827 ifneq (${TRUSTED_BOARD_BOOT},0)
828 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are \
829 incompatible \ build options.")
830 endif
831endif #(EL3_PAYLOAD_BASE)
832
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000833ifeq (${NEED_BL33},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100834 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000835 $(warning "BL33 image is not needed when option \
836 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100837 endif
838 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100839 $(warning "BL33 image is not needed when option \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100840 PRELOADED_BL33_BASE is used and won't be added to the FIP file.")
841 endif
842endif #(NEED_BL33)
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000843
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000844# When building for systems with hardware-assisted coherency, there's no need to
845# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
846ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100847 $(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000848endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100849
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600850#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
851ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100852 $(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000853endif
854
Manish Pandeyd419e222023-02-13 12:39:17 +0000855# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100856ifeq ($(RAS_EXTENSION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100857 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS \
858 and RAS_FFH_SUPPORT instead")
Manish Pandeyd419e222023-02-13 12:39:17 +0000859endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100860
Manish Pandeyd419e222023-02-13 12:39:17 +0000861# RAS firmware first handling requires that EAs are handled in EL3 first
862ifeq ($(RAS_FFH_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100863 ifneq ($(ENABLE_FEAT_RAS),1)
864 $(error For RAS_FFH_SUPPORT, ENABLE_FEAT_RAS must also be 1)
865 endif
866 ifneq ($(HANDLE_EA_EL3_FIRST_NS),1)
867 $(error For RAS_FFH_SUPPORT, HANDLE_EA_EL3_FIRST_NS must also be 1)
868 endif
869endif #(RAS_FFH_SUPPORT)
870
Manish Pandeyd419e222023-02-13 12:39:17 +0000871# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000872ifeq ($(FAULT_INJECTION_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100873 ifeq ($(ENABLE_FEAT_RAS),0)
874 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
875 endif
876endif #(FAULT_INJECTION_SUPPORT)
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000877
Roberto Vargas025946a2018-09-24 17:20:48 +0100878# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100879ifeq ($(DYN_DISABLE_AUTH), 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100880 ifeq (${TRUSTED_BOARD_BOOT}, 0)
881 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH \
882 to be set.")
883 endif
884endif #(DYN_DISABLE_AUTH)
Soby Mathew9fe88042018-03-26 12:43:37 +0100885
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100886ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
887# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100888 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100889else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
890# Support authentication verification and hash calculation
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100891 CRYPTO_SUPPORT := 3
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100892else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
893# Support hash calculation only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100894 CRYPTO_SUPPORT := 2
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100895else ifeq (${TRUSTED_BOARD_BOOT},1)
896# Support authentication verification only
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100897 CRYPTO_SUPPORT := 1
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000898else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100899 CRYPTO_SUPPORT := 0
900endif #($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT))
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000901
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +0100902# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
903ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100904 $(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +0100905endif
906
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000907# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100908# registers associated to it are also saved and restored.
909# 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 +0000910ifeq ($(ENABLE_PAUTH),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100911 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
912 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
913 endif
914endif #(ENABLE_PAUTH)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100915
916ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100917 ifneq (${ARCH},aarch64)
918 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
919 endif
920endif #(CTX_INCLUDE_PAUTH_REGS)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000921
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100922ifeq ($(CTX_INCLUDE_MTE_REGS),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100923 ifneq (${ARCH},aarch64)
924 $(error CTX_INCLUDE_MTE_REGS requires AArch64)
925 endif
926endif #(CTX_INCLUDE_MTE_REGS)
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100927
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100928ifeq ($(PSA_FWU_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100929 $(info PSA_FWU_SUPPORT is an experimental feature)
930endif #(PSA_FWU_SUPPORT)
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100931
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000932ifeq ($(FEATURE_DETECTION),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100933 $(info FEATURE_DETECTION is an experimental feature)
934endif #(FEATURE_DETECTION)
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000935
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000936ifneq ($(ENABLE_SME2_FOR_NS), 0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100937 ifeq (${ENABLE_SME_FOR_NS}, 0)
938 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also \
939 to be set")
940 $(warning "Forced ENABLE_SME_FOR_NS=1")
941 override ENABLE_SME_FOR_NS := 1
942 endif
943endif #(ENABLE_SME2_FOR_NS)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000944
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000945ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100946 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
947 $(error "ALLOW_RO_XLAT_TABLES requires translation tables \
948 library v2")
949 endif
950endif #(ARM_XLAT_TABLES_LIB_V1)
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000951
Sumit Garg392e4df2019-11-15 10:43:00 +0530952ifneq (${DECRYPTION_SUPPORT},none)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100953 ifeq (${TRUSTED_BOARD_BOOT}, 0)
954 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT \
955 to be set)
956 endif
957endif #(DECRYPTION_SUPPORT)
Sumit Garg392e4df2019-11-15 10:43:00 +0530958
johpow0181865962022-01-28 17:06:20 -0600959# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -0500960ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -0600961
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100962 # SME/SVE only supported on AArch64
963 ifneq (${ENABLE_SME_FOR_NS},0)
964 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
965 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000966
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100967 ifeq (${ENABLE_SVE_FOR_NS},1)
968 # Warning instead of error due to CI dependency on this
969 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
970 endif
johpow0181865962022-01-28 17:06:20 -0600971
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100972 # BRBE is not supported in AArch32
973 ifeq (${ENABLE_BRBE_FOR_NS},1)
974 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
975 endif
johpow0181865962022-01-28 17:06:20 -0600976
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100977 # FEAT_RNG_TRAP is not supported in AArch32
978 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
979 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
980 endif
981endif #(ARCH=aarch32)
johpow019baade32021-07-08 14:14:00 -0500982
983# Ensure ENABLE_RME is not used with SME
984ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100985 ifneq (${ENABLE_SME_FOR_NS},0)
986 $(error "ENABLE_SME_FOR_NS cannot be used with ENABLE_RME")
987 endif
johpow019baade32021-07-08 14:14:00 -0500988endif
989
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000990ifneq (${ENABLE_SME_FOR_NS},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100991 ifeq (${ENABLE_SVE_FOR_NS},0)
992 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
993 endif
994endif #(ENABLE_SME_FOR_NS)
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000995
johpow019baade32021-07-08 14:14:00 -0500996# Secure SME/SVE requires the non-secure component as well
997ifeq (${ENABLE_SME_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +0100998 ifeq (${ENABLE_SME_FOR_NS},0)
999 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
1000 endif
1001 ifeq (${ENABLE_SVE_FOR_SWD},0)
1002 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
1003 endif
1004endif #(ENABLE_SME_FOR_SWD)
1005
johpow019baade32021-07-08 14:14:00 -05001006ifeq (${ENABLE_SVE_FOR_SWD},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001007 ifeq (${ENABLE_SVE_FOR_NS},0)
1008 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
1009 endif
1010endif #(ENABLE_SVE_FOR_SWD)
johpow019baade32021-07-08 14:14:00 -05001011
1012# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
1013# its own context management including FPU registers.
1014ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001015 ifneq (${ENABLE_SME_FOR_NS},0)
1016 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1017 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001018
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001019 ifeq (${ENABLE_SVE_FOR_NS},1)
1020 # Warning instead of error due to CI dependency on this
1021 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
1022 $(warning "Forced ENABLE_SVE_FOR_NS=0")
1023 override ENABLE_SVE_FOR_NS := 0
1024 endif
1025endif #(CTX_INCLUDE_FPREGS)
johpow019baade32021-07-08 14:14:00 -05001026
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001027ifeq ($(DRTM_SUPPORT),1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001028 $(info DRTM_SUPPORT is an experimental feature)
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001029endif
1030
Chris Kayd02c2312022-09-29 16:21:24 +01001031ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001032 ifneq (${SEPARATE_CODE_AND_RODATA},1)
1033 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
1034 endif
Chris Kayd02c2312022-09-29 16:21:24 +01001035endif
1036
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001037# Determine if FEAT_RNG is supported
1038ENABLE_FEAT_RNG = $(if $(findstring rng,${arch-features}),1,0)
1039
1040# Determine if FEAT_SB is supported
1041ENABLE_FEAT_SB = $(if $(findstring sb,${arch-features}),1,0)
1042
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001043################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001044# Process platform overrideable behaviour
1045################################################################################
1046
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001047ifdef BL1_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001048 NEED_BL1 := yes
1049endif #(BL1_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001050
Jon Medhurst66573cb2014-02-13 15:19:28 +00001051ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001052 NEED_BL2 := yes
1053
1054 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
1055 # Certificate generation tools. This flag can be overridden by the platform.
1056 ifdef EL3_PAYLOAD_BASE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001057 # If booting an EL3 payload there is no need for a BL33 image
1058 # in the FIP file.
1059 NEED_BL33 := no
1060 else
1061 ifdef PRELOADED_BL33_BASE
1062 # If booting a BL33 preloaded image there is no need of
1063 # another one in the FIP file.
1064 NEED_BL33 := no
1065 else
1066 NEED_BL33 ?= yes
1067 endif
1068 endif
1069endif #(BL2_SOURCES)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001070
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001071ifdef BL2U_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001072 NEED_BL2U := yes
1073endif #(BL2U_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001074
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001075# If SCP_BL2 is given, we always want FIP to include it.
1076ifdef SCP_BL2
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001077 NEED_SCP_BL2 := yes
1078endif #(SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001079
Soby Mathewbf169232017-11-14 14:10:10 +00001080# For AArch32, BL31 is not currently supported.
1081ifneq (${ARCH},aarch32)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001082 ifdef BL31_SOURCES
1083 # When booting an EL3 payload, there is no need to compile the BL31
1084 # image nor put it in the FIP.
1085 ifndef EL3_PAYLOAD_BASE
1086 NEED_BL31 := yes
1087 endif
1088 endif
1089endif #(ARCH=aarch64)
Soby Mathewbf169232017-11-14 14:10:10 +00001090
Juan Castilloa3487d12015-08-18 14:23:04 +01001091# Process TBB related flags
1092ifneq (${GENERATE_COT},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001093 # Common cert_create options
1094 ifneq (${CREATE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001095 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001096 $(eval FWU_CRT_ARGS += -n)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001097 ifneq (${SAVE_KEYS},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001098 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001099 $(eval FWU_CRT_ARGS += -k)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001100 endif
1101 endif
1102 # Include TBBR makefile (unless the platform indicates otherwise)
1103 ifeq (${INCLUDE_TBBR_MK},1)
Juan Castilloa3487d12015-08-18 14:23:04 +01001104 include make_helpers/tbbr/tbbr_tools.mk
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001105 endif
1106endif #(GENERATE_COT)
Achin Gupta4f6ad662013-10-25 09:08:21 +01001107
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001108ifneq (${FIP_ALIGN},0)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001109 FIP_ARGS += --align ${FIP_ALIGN}
1110endif #(FIP_ALIGN)
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001111
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001112ifdef FDT_SOURCES
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001113 NEED_FDT := yes
1114endif #(FDT_SOURCES)
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001115
Juan Castilloa3487d12015-08-18 14:23:04 +01001116################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +08001117# Include libraries' Makefile that are used in all BL
1118################################################################################
1119
1120include lib/stack_protector/stack_protector.mk
1121
1122################################################################################
Soby Mathew574e01e2017-02-14 10:05:07 +00001123# Include BL specific makefiles
1124################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001125
1126ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001127include bl1/bl1.mk
1128endif
1129
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001130ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001131include bl2/bl2.mk
1132endif
1133
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001134ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001135include bl2u/bl2u.mk
1136endif
1137
Soby Mathewbf169232017-11-14 14:10:10 +00001138ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001139include bl31/bl31.mk
1140endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001141
Soby Mathew574e01e2017-02-14 10:05:07 +00001142################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001143# Build options checks
1144################################################################################
1145
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001146# Boolean_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001147$(eval $(call assert_booleans,\
1148 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001149 ALLOW_RO_XLAT_TABLES \
1150 BL2_ENABLE_SP_LOAD \
1151 COLD_BOOT_SINGLE_CPU \
1152 CREATE_KEYS \
1153 CTX_INCLUDE_AARCH32_REGS \
1154 CTX_INCLUDE_FPREGS \
1155 CTX_INCLUDE_EL2_REGS \
1156 DEBUG \
1157 DISABLE_MTPMU \
1158 DYN_DISABLE_AUTH \
1159 EL3_EXCEPTION_HANDLING \
1160 ENABLE_AMU_AUXILIARY_COUNTERS \
1161 ENABLE_AMU_FCONF \
1162 AMU_RESTRICT_COUNTERS \
1163 ENABLE_ASSERTIONS \
1164 ENABLE_FEAT_SB \
1165 ENABLE_PIE \
1166 ENABLE_PMF \
1167 ENABLE_PSCI_STAT \
1168 ENABLE_RUNTIME_INSTRUMENTATION \
1169 ENABLE_SME_FOR_SWD \
1170 ENABLE_SVE_FOR_SWD \
1171 ERROR_DEPRECATED \
1172 FAULT_INJECTION_SUPPORT \
1173 GENERATE_COT \
1174 GICV2_G0_FOR_EL3 \
1175 HANDLE_EA_EL3_FIRST_NS \
1176 HW_ASSISTED_COHERENCY \
1177 MEASURED_BOOT \
1178 DRTM_SUPPORT \
1179 NS_TIMER_SWITCH \
1180 OVERRIDE_LIBC \
1181 PL011_GENERIC_UART \
1182 PLAT_RSS_NOT_SUPPORTED \
1183 PROGRAMMABLE_RESET_ADDRESS \
1184 PSCI_EXTENDED_STATE_ID \
1185 PSCI_OS_INIT_MODE \
1186 RESET_TO_BL31 \
1187 SAVE_KEYS \
1188 SEPARATE_CODE_AND_RODATA \
1189 SEPARATE_BL2_NOLOAD_REGION \
1190 SEPARATE_NOBITS_REGION \
1191 SPIN_ON_BL1_EXIT \
1192 SPM_MM \
1193 SPMC_AT_EL3 \
1194 SPMD_SPM_AT_SEL2 \
1195 TRUSTED_BOARD_BOOT \
1196 USE_COHERENT_MEM \
1197 USE_DEBUGFS \
1198 ARM_IO_IN_DTB \
1199 SDEI_IN_FCONF \
1200 SEC_INT_DESC_IN_FCONF \
1201 USE_ROMLIB \
1202 USE_TBBR_DEFS \
1203 WARMBOOT_ENABLE_DCACHE_EARLY \
1204 RESET_TO_BL2 \
1205 BL2_IN_XIP_MEM \
1206 BL2_INV_DCACHE \
1207 USE_SPINLOCK_CAS \
1208 ENCRYPT_BL31 \
1209 ENCRYPT_BL32 \
1210 ERRATA_SPECULATIVE_AT \
1211 RAS_TRAP_NS_ERR_REC_ACCESS \
1212 COT_DESC_IN_DTB \
1213 USE_SP804_TIMER \
1214 PSA_FWU_SUPPORT \
1215 ENABLE_MPMM \
1216 ENABLE_MPMM_FCONF \
1217 FEATURE_DETECTION \
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +01001218 TRNG_SUPPORT \
Sona Mathew7fe03522022-11-18 18:05:38 -06001219 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001220 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001221 CONDITIONAL_CMO \
Manish Pandeyd419e222023-02-13 12:39:17 +00001222 RAS_FFH_SUPPORT \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001223)))
Dan Handley81be1002015-03-27 17:44:35 +00001224
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001225# Numeric_Flags
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001226$(eval $(call assert_numerics,\
1227 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001228 ARM_ARCH_MAJOR \
1229 ARM_ARCH_MINOR \
1230 BRANCH_PROTECTION \
1231 CTX_INCLUDE_PAUTH_REGS \
1232 CTX_INCLUDE_MTE_REGS \
1233 CTX_INCLUDE_NEVE_REGS \
1234 CRYPTO_SUPPORT \
1235 ENABLE_BRBE_FOR_NS \
1236 ENABLE_TRBE_FOR_NS \
1237 ENABLE_BTI \
1238 ENABLE_PAUTH \
1239 ENABLE_FEAT_AMU \
1240 ENABLE_FEAT_AMUv1p1 \
1241 ENABLE_FEAT_CSV2_2 \
1242 ENABLE_FEAT_RAS \
1243 ENABLE_FEAT_DIT \
1244 ENABLE_FEAT_ECV \
1245 ENABLE_FEAT_FGT \
1246 ENABLE_FEAT_HCX \
1247 ENABLE_FEAT_PAN \
1248 ENABLE_FEAT_RNG \
1249 ENABLE_FEAT_RNG_TRAP \
1250 ENABLE_FEAT_SEL2 \
1251 ENABLE_FEAT_TCR2 \
1252 ENABLE_FEAT_S2PIE \
1253 ENABLE_FEAT_S1PIE \
1254 ENABLE_FEAT_S2POE \
1255 ENABLE_FEAT_S1POE \
1256 ENABLE_FEAT_GCS \
1257 ENABLE_FEAT_VHE \
1258 ENABLE_MPAM_FOR_LOWER_ELS \
1259 ENABLE_RME \
1260 ENABLE_SPE_FOR_NS \
1261 ENABLE_SYS_REG_TRACE_FOR_NS \
1262 ENABLE_SME_FOR_NS \
1263 ENABLE_SME2_FOR_NS \
1264 ENABLE_SVE_FOR_NS \
1265 ENABLE_TRF_FOR_NS \
1266 FW_ENC_STATUS \
1267 NR_OF_FW_BANKS \
1268 NR_OF_IMAGES_IN_FW_BANK \
1269 TWED_DELAY \
1270 ENABLE_FEAT_TWED \
1271 SVE_VECTOR_LEN \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001272 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001273)))
Jeenu Viswambharanfca76802017-01-16 16:52:35 +00001274
Justin Chadwellf9b32c12019-07-29 17:13:10 +01001275ifdef KEY_SIZE
1276 $(eval $(call assert_numeric,KEY_SIZE))
1277endif
1278
Justin Chadwell83e04882019-08-20 11:01:52 +01001279ifeq ($(filter $(SANITIZE_UB), on off trap),)
1280 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1281endif
1282
Juan Castilloa3487d12015-08-18 14:23:04 +01001283################################################################################
1284# Add definitions to the cpp preprocessor based on the current build options.
1285# This is done after including the platform specific makefile to allow the
1286# platform to overwrite the default options
1287################################################################################
Jeenu Viswambharand1b60152014-05-12 15:28:47 +01001288
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001289$(eval $(call add_defines,\
1290 $(sort \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001291 ALLOW_RO_XLAT_TABLES \
1292 ARM_ARCH_MAJOR \
1293 ARM_ARCH_MINOR \
1294 BL2_ENABLE_SP_LOAD \
1295 COLD_BOOT_SINGLE_CPU \
1296 CTX_INCLUDE_AARCH32_REGS \
1297 CTX_INCLUDE_FPREGS \
1298 CTX_INCLUDE_PAUTH_REGS \
1299 EL3_EXCEPTION_HANDLING \
1300 CTX_INCLUDE_MTE_REGS \
1301 CTX_INCLUDE_EL2_REGS \
1302 CTX_INCLUDE_NEVE_REGS \
1303 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1304 DISABLE_MTPMU \
1305 ENABLE_FEAT_AMU \
1306 ENABLE_AMU_AUXILIARY_COUNTERS \
1307 ENABLE_AMU_FCONF \
1308 AMU_RESTRICT_COUNTERS \
1309 ENABLE_ASSERTIONS \
1310 ENABLE_BTI \
1311 ENABLE_MPAM_FOR_LOWER_ELS \
1312 ENABLE_PAUTH \
1313 ENABLE_PIE \
1314 ENABLE_PMF \
1315 ENABLE_PSCI_STAT \
1316 ENABLE_RME \
1317 ENABLE_RUNTIME_INSTRUMENTATION \
1318 ENABLE_SME_FOR_NS \
1319 ENABLE_SME2_FOR_NS \
1320 ENABLE_SME_FOR_SWD \
1321 ENABLE_SPE_FOR_NS \
1322 ENABLE_SVE_FOR_NS \
1323 ENABLE_SVE_FOR_SWD \
1324 ENCRYPT_BL31 \
1325 ENCRYPT_BL32 \
1326 ERROR_DEPRECATED \
1327 FAULT_INJECTION_SUPPORT \
1328 GICV2_G0_FOR_EL3 \
1329 HANDLE_EA_EL3_FIRST_NS \
1330 HW_ASSISTED_COHERENCY \
1331 LOG_LEVEL \
1332 MEASURED_BOOT \
1333 DRTM_SUPPORT \
1334 NS_TIMER_SWITCH \
1335 PL011_GENERIC_UART \
1336 PLAT_${PLAT} \
1337 PLAT_RSS_NOT_SUPPORTED \
1338 PROGRAMMABLE_RESET_ADDRESS \
1339 PSCI_EXTENDED_STATE_ID \
1340 PSCI_OS_INIT_MODE \
1341 ENABLE_FEAT_RAS \
1342 RAS_FFH_SUPPORT \
1343 RESET_TO_BL31 \
1344 SEPARATE_CODE_AND_RODATA \
1345 SEPARATE_BL2_NOLOAD_REGION \
1346 SEPARATE_NOBITS_REGION \
1347 RECLAIM_INIT_CODE \
1348 SPD_${SPD} \
1349 SPIN_ON_BL1_EXIT \
1350 SPM_MM \
1351 SPMC_AT_EL3 \
1352 SPMD_SPM_AT_SEL2 \
1353 TRUSTED_BOARD_BOOT \
1354 CRYPTO_SUPPORT \
1355 TRNG_SUPPORT \
1356 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001357 ERRATA_NON_ARM_INTERCONNECT \
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001358 USE_COHERENT_MEM \
1359 USE_DEBUGFS \
1360 ARM_IO_IN_DTB \
1361 SDEI_IN_FCONF \
1362 SEC_INT_DESC_IN_FCONF \
1363 USE_ROMLIB \
1364 USE_TBBR_DEFS \
1365 WARMBOOT_ENABLE_DCACHE_EARLY \
1366 RESET_TO_BL2 \
1367 BL2_RUNS_AT_EL3 \
1368 BL2_IN_XIP_MEM \
1369 BL2_INV_DCACHE \
1370 USE_SPINLOCK_CAS \
1371 ERRATA_SPECULATIVE_AT \
1372 RAS_TRAP_NS_ERR_REC_ACCESS \
1373 COT_DESC_IN_DTB \
1374 USE_SP804_TIMER \
1375 ENABLE_FEAT_RNG \
1376 ENABLE_FEAT_RNG_TRAP \
1377 ENABLE_FEAT_SB \
1378 ENABLE_FEAT_DIT \
1379 NR_OF_FW_BANKS \
1380 NR_OF_IMAGES_IN_FW_BANK \
1381 PSA_FWU_SUPPORT \
1382 ENABLE_BRBE_FOR_NS \
1383 ENABLE_TRBE_FOR_NS \
1384 ENABLE_SYS_REG_TRACE_FOR_NS \
1385 ENABLE_TRF_FOR_NS \
1386 ENABLE_FEAT_HCX \
1387 ENABLE_MPMM \
1388 ENABLE_MPMM_FCONF \
1389 ENABLE_FEAT_FGT \
1390 ENABLE_FEAT_ECV \
1391 ENABLE_FEAT_AMUv1p1 \
1392 ENABLE_FEAT_SEL2 \
1393 ENABLE_FEAT_VHE \
1394 ENABLE_FEAT_CSV2_2 \
1395 ENABLE_FEAT_PAN \
1396 ENABLE_FEAT_TCR2 \
1397 ENABLE_FEAT_S2PIE \
1398 ENABLE_FEAT_S1PIE \
1399 ENABLE_FEAT_S2POE \
1400 ENABLE_FEAT_S1POE \
1401 ENABLE_FEAT_GCS \
1402 FEATURE_DETECTION \
1403 TWED_DELAY \
1404 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001405 CONDITIONAL_CMO \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001406 IMPDEF_SYSREG_TRAP \
Jayanth Dodderi Chidanand23c2fe22023-04-26 15:57:30 +01001407 SVE_VECTOR_LEN \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001408)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001409
Justin Chadwell83e04882019-08-20 11:01:52 +01001410ifeq (${SANITIZE_UB},trap)
1411 $(eval $(call add_define,MONITOR_TRAPS))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001412endif #(SANITIZE_UB)
Justin Chadwell83e04882019-08-20 11:01:52 +01001413
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001414# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1415ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001416 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1417else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001418# Define the PRELOADED_BL33_BASE flag only if it is provided and
1419# EL3_PAYLOAD_BASE is not defined, as it has priority.
1420 ifdef PRELOADED_BL33_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001421 $(eval $(call add_define,PRELOADED_BL33_BASE))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001422 endif
1423endif #(EL3_PAYLOAD_BASE)
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001424
Soby Mathew9fe88042018-03-26 12:43:37 +01001425# Define the DYN_DISABLE_AUTH flag only if set.
1426ifeq (${DYN_DISABLE_AUTH},1)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001427 $(eval $(call add_define,DYN_DISABLE_AUTH))
Soby Mathew9fe88042018-03-26 12:43:37 +01001428endif
1429
Varun Wadekar4d034c52019-01-11 14:47:48 -08001430ifneq ($(findstring armlink,$(notdir $(LD))),)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001431 $(eval $(call add_define,USE_ARM_LINK))
Varun Wadekar4d034c52019-01-11 14:47:48 -08001432endif
1433
Manish Pandey3f90ad72020-01-14 11:52:05 +00001434# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001435ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001436ifdef SP_LAYOUT_FILE
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001437 -include $(BUILD_PLAT)/sp_gen.mk
1438 FIP_DEPS += sp
1439 CRT_DEPS += sp
1440 NEED_SP_PKG := yes
Manish Pandey3f90ad72020-01-14 11:52:05 +00001441else
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001442 ifeq (${SPMD_SPM_AT_SEL2},1)
1443 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1444 endif
1445endif #(SP_LAYOUT_FILE)
1446endif #(SPD)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001447
Juan Castilloa3487d12015-08-18 14:23:04 +01001448################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001449# Build targets
1450################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001451
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301452.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 +01001453.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001454
Juan Castilloa3487d12015-08-18 14:23:04 +01001455all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001456
Juan Castilloa3487d12015-08-18 14:23:04 +01001457msg_start:
1458 @echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001459
Soby Mathew18a62042015-10-26 14:29:21 +00001460ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001461# Check if deprecated declarations and cpp warnings should be treated as error or not.
Varun Wadekar4d034c52019-01-11 14:47:48 -08001462ifneq ($(findstring clang,$(notdir $(CC))),)
1463 CPPFLAGS += -Wno-error=deprecated-declarations
1464else
Dan Handley6fa89a22018-02-27 16:03:58 +00001465 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001466endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001467endif #(!ERROR_DEPRECATED)
Soby Mathew18a62042015-10-26 14:29:21 +00001468
Roberto Vargase92111a2018-05-22 16:05:42 +01001469$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001470$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001471
Juan Castilloa3487d12015-08-18 14:23:04 +01001472# Expand build macros for the different images
1473ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001474BL1_SOURCES := $(sort ${BL1_SOURCES})
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001475$(eval $(call MAKE_BL,bl1))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001476endif #(NEED_BL1)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001477
Juan Castilloa3487d12015-08-18 14:23:04 +01001478ifeq (${NEED_BL2},yes)
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001479
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001480ifeq (${RESET_TO_BL2}, 0)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001481FIP_BL2_ARGS := tb-fw
1482endif
1483
Chris Kayfb3b0512021-09-28 15:44:37 +01001484BL2_SOURCES := $(sort ${BL2_SOURCES})
1485
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001486$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001487 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001488
1489endif #(NEED_BL2)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001490
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001491ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001492$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001493endif #(NEED_SCP_BL2)
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001494
Juan Castilloa3487d12015-08-18 14:23:04 +01001495ifeq (${NEED_BL31},yes)
1496BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001497# Sort BL31 source files to remove duplicates
1498BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301499ifneq (${DECRYPTION_SUPPORT},none)
1500$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001501 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301502else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001503$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001504 $(eval $(call MAKE_BL,bl31,soc-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001505endif #(DECRYPTION_SUPPORT)
1506endif #(NEED_BL31)
Juan Castillo379954c2014-11-04 17:36:40 +00001507
Juan Castillo671b8db2015-11-12 10:59:26 +00001508# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001509# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001510# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001511ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001512# Sort BL32 source files to remove duplicates
1513BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001514BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1515
Sumit Gargeec52442019-11-14 16:33:45 +05301516ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001517$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301518 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1519else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001520$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001521 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001522endif #(DECRYPTION_SUPPORT)
1523endif #(NEED_BL32)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001524
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001525# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1526# needs to be built from RMM_SOURCES.
1527ifeq (${NEED_RMM},yes)
1528# Sort RMM source files to remove duplicates
1529RMM_SOURCES := $(sort ${RMM_SOURCES})
1530BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1531
1532$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001533 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1534endif #(NEED_RMM)
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001535
Juan Castilloa3487d12015-08-18 14:23:04 +01001536# Add the BL33 image if required by the platform
1537ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001538$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001539endif #(NEED_BL33)
Juan Castillo9c25a402015-01-13 12:21:04 +00001540
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001541ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001542$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001543 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001544endif #(NEED_BL2U)
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001545
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001546# Expand build macros for the different images
1547ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001548 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001549endif #(NEED_FDT)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001550
Manish Pandey3f90ad72020-01-14 11:52:05 +00001551# Add Secure Partition packages
1552ifeq (${NEED_SP_PKG},yes)
1553$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
Ruari Phipps571ed6b2020-07-24 16:20:57 +01001554 ${Q}${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT}
J-Alvesef8e0982022-03-22 16:28:51 +00001555sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001556 @${ECHO_BLANK_LINE}
1557 @echo "Built SP Images successfully"
1558 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001559endif #(NEED_SP_PKG)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001560
Ian Spray36eaaf32014-01-30 17:25:28 +00001561locate-checkpatch:
1562ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001563 $(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 +00001564else
1565ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001566 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001567endif
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001568endif #(CHECKPATCH)
Ian Spray36eaaf32014-01-30 17:25:28 +00001569
Achin Gupta4f6ad662013-10-25 09:08:21 +01001570clean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001571 @echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001572 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001573ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001574 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001575else
1576# Clear the MAKEFLAGS as we do not want
1577# to pass the gnumake flags to nmake.
1578 ${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 +01001579endif #(UNIX_MK)
Juan Castilloa3487d12015-08-18 14:23:04 +01001580 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301581 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
Roberto Vargase92111a2018-05-22 16:05:42 +01001582 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001583
James Morrisseyeaaeece2013-11-01 13:56:59 +00001584realclean distclean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001585 @echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001586 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1587 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001588ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001589 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001590else
1591# Clear the MAKEFLAGS as we do not want
1592# to pass the gnumake flags to nmake.
1593 ${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 +01001594endif #(UNIX_MK)
Nicolas Boulenguezdf612a52021-03-31 12:22:45 +02001595 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301596 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
Roberto Vargase92111a2018-05-22 16:05:42 +01001597 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001598
Ian Spray36eaaf32014-01-30 17:25:28 +00001599checkcodebase: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001600 @echo " CHECKING STYLE"
Dan Handley3a355712016-06-02 18:21:02 +01001601 @if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001602 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001603 while read GIT_FILE ; \
1604 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1605 done ; \
1606 else \
1607 find . -type f -not -iwholename "*.git*" \
1608 -not -iwholename "*build*" \
1609 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001610 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001611 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001612 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001613 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1614 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001615
1616checkpatch: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001617 @echo " CHECKING STYLE"
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001618 @if test -n "${CHECKPATCH_OPTS}"; then \
1619 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1620 fi
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001621 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001622 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1623 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001624 printf "\n[*] Checking style of '$$commit'\n\n"; \
1625 git log --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001626 -- ${CHECK_PATHS} | \
1627 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001628 git diff --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001629 -- ${CHECK_PATHS} | \
1630 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001631 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001632
1633certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001634
Pali Rohár54ff2132020-11-24 15:38:08 +01001635${CRTTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001636 ${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 +00001637 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001638 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001639 @${ECHO_BLANK_LINE}
Jon Medhurst407a95c2014-02-12 15:54:48 +00001640
Juan Castillo11abdcd2014-10-21 11:30:42 +01001641ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001642certificates: ${CRT_DEPS} ${CRTTOOL}
1643 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001644 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001645 @echo "Built $@ successfully"
1646 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001647 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001648endif #(GENERATE_COT)
Juan Castillo11abdcd2014-10-21 11:30:42 +01001649
Juan Castilloa3487d12015-08-18 14:23:04 +01001650${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001651 $(eval ${CHECK_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001652 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
1653 ${Q}${FIPTOOL} info $@
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001654 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001655 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001656 @${ECHO_BLANK_LINE}
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001657
Yatharth Kochard1a93432015-10-12 12:33:47 +01001658ifneq (${GENERATE_COT},0)
1659fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1660 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001661 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001662 @echo "Built $@ successfully"
1663 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001664 @${ECHO_BLANK_LINE}
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001665endif #(GENERATE_COT)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001666
1667${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001668 $(eval ${CHECK_FWU_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001669 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1670 ${Q}${FIPTOOL} info $@
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001671 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001672 @echo "Built $@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001673 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001674
Juan Castilloa3487d12015-08-18 14:23:04 +01001675fiptool: ${FIPTOOL}
1676fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001677fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001678
Pali Rohár54ff2132020-11-24 15:38:08 +01001679${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001680ifdef UNIX_MK
Lionel Debieve730bde82022-11-14 11:05:09 +01001681 ${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 +01001682else
1683# Clear the MAKEFLAGS as we do not want
1684# to pass the gnumake flags to nmake.
1685 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
Jayanth Dodderi Chidanand2ee5d402023-04-24 15:57:05 +01001686endif #(UNIX_MK)
Harry Liebelf58ad362014-01-10 18:00:33 +00001687
Pali Rohár54ff2132020-11-24 15:38:08 +01001688romlib.bin: libraries FORCE
John Tsichritzisf6ea99b2019-05-21 15:47:37 +01001689 ${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 +01001690
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001691memmap: all
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001692ifdef UNIX_MK
1693 ${Q}PYTHONPATH=${CURDIR}/tools/memory \
1694 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1695else
1696 ${Q}set PYTHONPATH=${CURDIR}/tools/memory && \
1697 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1698endif
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001699
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001700doc:
1701 @echo " BUILD DOCUMENTATION"
1702 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1703
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301704enctool: ${ENCTOOL}
1705
Pali Rohár54ff2132020-11-24 15:38:08 +01001706${ENCTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001707 ${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 +05301708 @${ECHO_BLANK_LINE}
1709 @echo "Built $@ successfully"
1710 @${ECHO_BLANK_LINE}
1711
Joakim Bech35fab8c2014-01-23 14:51:49 +01001712cscope:
1713 @echo " CSCOPE"
1714 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1715 ${Q}cscope -b -q -k
1716
Ryan Harkin72ee3312014-01-15 16:55:07 +00001717help:
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001718 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001719 @echo ""
1720 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +00001721 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001722 @echo ""
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001723 @echo "platform = ${PLATFORM_LIST}"
1724 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001725 @echo "Please refer to the User Guide for a list of all supported options."
1726 @echo "Note that the build system doesn't track dependencies for build "
1727 @echo "options. Therefore, if any of the build options are changed "
1728 @echo "from a previous build, a clean build must be performed."
1729 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +00001730 @echo "Supported Targets:"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001731 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +00001732 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +00001733 @echo " bl2 Build the BL2 binary"
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001734 @echo " bl2u Build the BL2U binary"
Juan Castillo7d199412015-12-14 09:35:25 +00001735 @echo " bl31 Build the BL31 binary"
Soby Mathewa1941252016-05-05 14:33:33 +01001736 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1737 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castilloa3487d12015-08-18 14:23:04 +01001738 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001739 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochard1a93432015-10-12 12:33:47 +01001740 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +00001741 @echo " checkcodebase Check the coding style of the entire source tree"
1742 @echo " checkpatch Check the coding style on changes in the current"
1743 @echo " branch against BASE_COMMIT (default origin/master)"
1744 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +00001745 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +00001746 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001747 @echo " certtool Build the Certificate generation tool"
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301748 @echo " enctool Build the Firmware encryption tool"
Andreas Färberec82cfb2016-10-10 05:18:49 +02001749 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Manish Pandey3f90ad72020-01-14 11:52:05 +00001750 @echo " sp Build the Secure Partition Packages"
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001751 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathewab4181d2017-12-14 17:44:56 +00001752 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001753 @echo " memmap Print the memory map of the built binaries"
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001754 @echo " doc Build html based documentation using Sphinx tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001755 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001756 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +00001757 @echo ""
1758 @echo "example: build all targets for the FVP platform:"
1759 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001760
1761.PHONY: FORCE
1762FORCE:;