blob: f4d623eca9fefdbaa095751b75bb95aa8eea10f8 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001#
Manish V Badarkhe5181d602022-01-08 22:56:06 +00002# Copyright (c) 2013-2022, 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
laurenw-armd25d15b2022-11-15 10:15:34 -060011VERSION_MINOR := 8
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################################################################################
79# Process build options
80################################################################################
81
82# Verbose flag
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +010083ifeq (${V},0)
Evan Lloydf4ba5ca2015-12-03 09:47:51 +000084 Q:=@
Andre Przywaracf2bb082018-09-27 10:56:05 +010085 ECHO:=@echo
Juan Castilloa3487d12015-08-18 14:23:04 +010086 CHECKCODE_ARGS += --no-summary --terse
Achin Gupta4f6ad662013-10-25 09:08:21 +010087else
Evan Lloydf4ba5ca2015-12-03 09:47:51 +000088 Q:=
Antonio Nino Diazffd122b2018-10-19 15:44:30 +010089 ECHO:=$(ECHO_QUIET)
Andre Przywaracf2bb082018-09-27 10:56:05 +010090endif
91
92ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
93 Q:=@
Antonio Nino Diazffd122b2018-10-19 15:44:30 +010094 ECHO:=$(ECHO_QUIET)
Achin Gupta4f6ad662013-10-25 09:08:21 +010095endif
Andre Przywaracf2bb082018-09-27 10:56:05 +010096
97export Q ECHO
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +000098
Juan Castilloa3487d12015-08-18 14:23:04 +010099# The cert_create tool cannot generate certificates individually, so we use the
100# target 'certificates' to create them all
101ifneq (${GENERATE_COT},0)
102 FIP_DEPS += certificates
Yatharth Kochard1a93432015-10-12 12:33:47 +0100103 FWU_FIP_DEPS += fwu_certificates
Juan Castilloa3487d12015-08-18 14:23:04 +0100104endif
105
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100106# Process BRANCH_PROTECTION value and set
107# Pointer Authentication and Branch Target Identification flags
108ifeq (${BRANCH_PROTECTION},0)
109 # Default value turns off all types of branch protection
110 BP_OPTION := none
111else ifneq (${ARCH},aarch64)
112 $(error BRANCH_PROTECTION requires AArch64)
113else ifeq (${BRANCH_PROTECTION},1)
114 # Enables all types of branch protection features
115 BP_OPTION := standard
116 ENABLE_BTI := 1
117 ENABLE_PAUTH := 1
118else ifeq (${BRANCH_PROTECTION},2)
119 # Return address signing to its standard level
120 BP_OPTION := pac-ret
121 ENABLE_PAUTH := 1
122else ifeq (${BRANCH_PROTECTION},3)
123 # Extend the signing to include leaf functions
124 BP_OPTION := pac-ret+leaf
125 ENABLE_PAUTH := 1
Alexei Fedorove039e482020-06-19 14:33:49 +0100126else ifeq (${BRANCH_PROTECTION},4)
127 # Turn on branch target identification mechanism
128 BP_OPTION := bti
129 ENABLE_BTI := 1
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100130else
131 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
132endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100133
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500134# FEAT_RME
135ifeq (${ENABLE_RME},1)
136# RME doesn't support PIE
137ifneq (${ENABLE_PIE},0)
138 $(error ENABLE_RME does not support PIE)
139endif
johpow0181865962022-01-28 17:06:20 -0600140# RME doesn't support BRBE
141ifneq (${ENABLE_BRBE_FOR_NS},0)
142 $(error ENABLE_RME does not support BRBE.)
143endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500144# RME requires AARCH64
145ifneq (${ARCH},aarch64)
146 $(error ENABLE_RME requires AArch64)
147endif
148# RME requires el2 context to be saved for now.
149CTX_INCLUDE_EL2_REGS := 1
150CTX_INCLUDE_AARCH32_REGS := 0
151ARM_ARCH_MAJOR := 8
Andre Przywara8432bcc2022-10-04 13:56:49 +0100152ARM_ARCH_MINOR := 5
153ENABLE_FEAT_ECV = 1
154ENABLE_FEAT_FGT = 1
155
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500156endif
157
Soby Mathewad042012019-09-25 14:03:41 +0100158# USE_SPINLOCK_CAS requires AArch64 build
159ifeq (${USE_SPINLOCK_CAS},1)
160ifneq (${ARCH},aarch64)
161 $(error USE_SPINLOCK_CAS requires AArch64)
Soby Mathewad042012019-09-25 14:03:41 +0100162endif
163endif
164
Olivier Deprezcb4c5622019-09-19 17:46:46 +0200165# USE_DEBUGFS experimental feature recommended only in debug builds
166ifeq (${USE_DEBUGFS},1)
167ifeq (${DEBUG},1)
168 $(warning DEBUGFS experimental feature is enabled.)
169else
170 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
171endif
172endif
173
Sumit Gargeec52442019-11-14 16:33:45 +0530174ifneq (${DECRYPTION_SUPPORT},none)
175ENC_ARGS += -f ${FW_ENC_STATUS}
176ENC_ARGS += -k ${ENC_KEY}
177ENC_ARGS += -n ${ENC_NONCE}
178FIP_DEPS += enctool
179FWU_FIP_DEPS += enctool
180endif
181
Juan Castilloa3487d12015-08-18 14:23:04 +0100182################################################################################
183# Toolchain
184################################################################################
185
dp-arme95aaa62017-05-02 11:09:11 +0100186HOSTCC := gcc
187export HOSTCC
188
Juan Castilloa3487d12015-08-18 14:23:04 +0100189CC := ${CROSS_COMPILE}gcc
190CPP := ${CROSS_COMPILE}cpp
191AS := ${CROSS_COMPILE}gcc
192AR := ${CROSS_COMPILE}ar
Roberto Vargas1fd0d1b2018-04-13 14:26:47 +0100193LINKER := ${CROSS_COMPILE}ld
Juan Castilloa3487d12015-08-18 14:23:04 +0100194OC := ${CROSS_COMPILE}objcopy
195OD := ${CROSS_COMPILE}objdump
196NM := ${CROSS_COMPILE}nm
197PP := ${CROSS_COMPILE}gcc -E
Soby Mathewab4181d2017-12-14 17:44:56 +0000198DTC := dtc
Juan Castilloa3487d12015-08-18 14:23:04 +0100199
Julius Wernerb1f64a72018-01-10 15:12:47 -0800200# Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH).
201ifneq ($(strip $(wildcard ${LD}.bfd) \
Roberto Vargas1fd0d1b2018-04-13 14:26:47 +0100202 $(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),)
203LINKER := ${LINKER}.bfd
Julius Wernerb1f64a72018-01-10 15:12:47 -0800204endif
205
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100206ifeq (${ARM_ARCH_MAJOR},7)
207target32-directive = -target arm-none-eabi
208# Will set march32-directive from platform configuration
209else
210target32-directive = -target armv8a-none-eabi
Alexei Fedorovb567e5d2019-03-11 16:51:47 +0000211
Alexei Fedorov132e6652020-12-07 16:38:53 +0000212# Set the compiler's target architecture profile based on
213# ARM_ARCH_MAJOR ARM_ARCH_MINOR options
Alexei Fedorovb567e5d2019-03-11 16:51:47 +0000214ifeq (${ARM_ARCH_MINOR},0)
Alexei Fedorov132e6652020-12-07 16:38:53 +0000215march32-directive = -march=armv${ARM_ARCH_MAJOR}-a
216march64-directive = -march=armv${ARM_ARCH_MAJOR}-a
Alexei Fedorovb567e5d2019-03-11 16:51:47 +0000217else
Alexei Fedorov132e6652020-12-07 16:38:53 +0000218march32-directive = -march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a
219march64-directive = -march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a
Alexei Fedorovb567e5d2019-03-11 16:51:47 +0000220endif
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100221endif
222
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000223# Memory tagging is supported in architecture Armv8.5-A AArch64 and onwards
224ifeq ($(ARCH), aarch64)
Sami Mujawar1bc7b0e2020-04-23 09:28:37 +0100225# Check if revision is greater than or equal to 8.5
226ifeq "8.5" "$(word 1, $(sort 8.5 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000227mem_tag_arch_support = yes
228endif
229endif
230
Alexei Fedorov132e6652020-12-07 16:38:53 +0000231# Get architecture feature modifiers
232arch-features = ${ARM_ARCH_FEATURE}
233
234# Enable required options for memory stack tagging.
235# Currently, these options are enabled only for clang and armclang compiler.
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000236ifeq (${SUPPORT_STACK_MEMTAG},yes)
237ifdef mem_tag_arch_support
Alexei Fedorov132e6652020-12-07 16:38:53 +0000238# Check for armclang and clang compilers
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000239ifneq ( ,$(filter $(notdir $(CC)),armclang clang))
Alexei Fedorov132e6652020-12-07 16:38:53 +0000240# Add "memtag" architecture feature modifier if not specified
241ifeq ( ,$(findstring memtag,$(arch-features)))
242arch-features := $(arch-features)+memtag
243endif # memtag
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000244ifeq ($(notdir $(CC)),armclang)
245TF_CFLAGS += -mmemtag-stack
246else ifeq ($(notdir $(CC)),clang)
247TF_CFLAGS += -fsanitize=memtag
Alexei Fedorov132e6652020-12-07 16:38:53 +0000248endif # armclang
249endif # armclang clang
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000250else
251$(error "Error: stack memory tagging is not supported for architecture \
252 ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
Alexei Fedorov132e6652020-12-07 16:38:53 +0000253endif # mem_tag_arch_support
254endif # SUPPORT_STACK_MEMTAG
255
256# Set the compiler's architecture feature modifiers
257ifneq ($(arch-features), none)
258# Strip "none+" from arch-features
259arch-features := $(subst none+,,$(arch-features))
260ifeq ($(ARCH), aarch32)
261march32-directive := $(march32-directive)+$(arch-features)
262else
263march64-directive := $(march64-directive)+$(arch-features)
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000264endif
Alexei Fedorov132e6652020-12-07 16:38:53 +0000265# Print features
266$(info Arm Architecture Features specified: $(subst +, ,$(arch-features)))
267endif # arch-features
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000268
Tomas Pilarde164b02020-10-29 13:01:16 +0000269# Determine if FEAT_RNG is supported
270ENABLE_FEAT_RNG = $(if $(findstring rng,${arch-features}),1,0)
271
Chris Kay08fec332021-03-09 13:34:35 +0000272# Determine if FEAT_SB is supported
273ENABLE_FEAT_SB = $(if $(findstring sb,${arch-features}),1,0)
274
originfba80d82022-01-19 16:30:14 +0000275ifneq ($(findstring clang,$(notdir $(CC))),)
276 ifneq ($(findstring armclang,$(notdir $(CC))),)
277 TF_CFLAGS_aarch32 := -target arm-arm-none-eabi $(march32-directive)
278 TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi $(march64-directive)
279 LD := $(LINKER)
280 else
Arvind Ram Prakasha3394cf2022-10-19 15:44:51 -0500281 TF_CFLAGS_aarch32 = $(target32-directive) $(march32-directive)
originfba80d82022-01-19 16:30:14 +0000282 TF_CFLAGS_aarch64 := -target aarch64-elf $(march64-directive)
283 LD := $(shell $(CC) --print-prog-name ld.lld)
284
285 AR := $(shell $(CC) --print-prog-name llvm-ar)
286 OD := $(shell $(CC) --print-prog-name llvm-objdump)
287 OC := $(shell $(CC) --print-prog-name llvm-objcopy)
288 endif
289
290 CPP := $(CC) -E $(TF_CFLAGS_$(ARCH))
291 PP := $(CC) -E $(TF_CFLAGS_$(ARCH))
292 AS := $(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
zelalem-aweked5f45272019-11-12 16:20:17 -0600293else ifneq ($(findstring gcc,$(notdir $(CC))),)
294TF_CFLAGS_aarch32 = $(march32-directive)
295TF_CFLAGS_aarch64 = $(march64-directive)
296ifeq ($(ENABLE_LTO),1)
297 # Enable LTO only for aarch64
298 ifeq (${ARCH},aarch64)
299 LTO_CFLAGS = -flto
300 # Use gcc as a wrapper for the ld, recommended for LTO
301 LINKER := ${CROSS_COMPILE}gcc
302 endif
303endif
304LD = $(LINKER)
dp-arm320e8442017-05-02 12:00:08 +0100305else
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100306TF_CFLAGS_aarch32 = $(march32-directive)
Alexei Fedorovb567e5d2019-03-11 16:51:47 +0000307TF_CFLAGS_aarch64 = $(march64-directive)
Roberto Vargas1fd0d1b2018-04-13 14:26:47 +0100308LD = $(LINKER)
dp-arm320e8442017-05-02 12:00:08 +0100309endif
310
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100311# Process Debug flag
312$(eval $(call add_define,DEBUG))
313ifneq (${DEBUG}, 0)
314 BUILD_TYPE := debug
Daniel Boulbydf83a832022-05-03 16:46:16 +0100315 TF_CFLAGS += -g -gdwarf-4
316 ASFLAGS += -g -Wa,-gdwarf-4
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100317
318 # Use LOG_LEVEL_INFO by default for debug builds
319 LOG_LEVEL := 40
320else
321 BUILD_TYPE := release
322 # Use LOG_LEVEL_NOTICE by default for release builds
323 LOG_LEVEL := 20
324endif
325
Peiyuan Song44f8f472020-04-25 16:53:43 +0800326# Default build string (git branch and commit)
327ifeq (${BUILD_STRING},)
328 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
329endif
laurenw-arme954f652022-07-12 10:12:05 -0500330VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
Peiyuan Song44f8f472020-04-25 16:53:43 +0800331
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100332ifeq (${AARCH32_INSTRUCTION_SET},A32)
333TF_CFLAGS_aarch32 += -marm
334else ifeq (${AARCH32_INSTRUCTION_SET},T32)
335TF_CFLAGS_aarch32 += -mthumb
336else
337$(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
338endif
339
Sandrine Bailleux1aa72ec2018-07-03 09:14:45 +0200340TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-arm320e8442017-05-02 12:00:08 +0100341TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathewa1941252016-05-05 14:33:33 +0100342
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100343ifneq (${BP_OPTION},none)
344TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
345endif
346
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100347ASFLAGS_aarch32 = $(march32-directive)
Alexei Fedorovb567e5d2019-03-11 16:51:47 +0000348ASFLAGS_aarch64 = $(march64-directive)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000349
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100350# General warnings
351WARNINGS := -Wall -Wmissing-include-dirs -Wunused \
Yann Gautier94a40b62021-05-20 13:18:14 +0200352 -Wdisabled-optimization -Wvla -Wshadow \
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000353 -Wredundant-decls
354# stricter warnings
355WARNINGS += -Wextra -Wno-trigraphs
356# too verbose for generic build
357WARNINGS += -Wno-missing-field-initializers \
358 -Wno-type-limits -Wno-sign-compare \
359# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
360WARNINGS += -Wno-unused-parameter
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100361
362# Additional warnings
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000363# Level 1 - infrequent warnings we should have none of
364# full -Wextra
365WARNING1 += -Wsign-compare
366WARNING1 += -Wtype-limits
367WARNING1 += -Wmissing-field-initializers
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100368
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000369# Level 2 - problematic warnings that we want
370# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
371# TODO: disable just for them and move into default build
372WARNING2 += -Wold-style-definition
373WARNING2 += -Wmissing-prototypes
374WARNING2 += -Wmissing-format-attribute
375# TF-A aims to comply with this eventually. Effort too large at present
376WARNING2 += -Wundef
Boyan Karatotev9c6ba592022-11-21 14:49:05 +0000377# currently very involved and many platforms set this off
378WARNING2 += -Wunused-const-variable=2
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100379
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000380# Level 3 - very pedantic, frequently ignored
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100381WARNING3 := -Wbad-function-cast
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000382WARNING3 += -Waggregate-return
383WARNING3 += -Wnested-externs
384WARNING3 += -Wcast-align
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100385WARNING3 += -Wcast-qual
386WARNING3 += -Wconversion
387WARNING3 += -Wpacked
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100388WARNING3 += -Wpointer-arith
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100389WARNING3 += -Wswitch-default
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100390
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000391# Setting W is quite verbose and most warnings will be pre-existing issues
392# outside of the contributor's control. Don't fail the build on them so warnings
393# can be seen and hopefully addressed
394ifdef W
395ifneq (${W},0)
396E ?= 0
397endif
398endif
399
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100400ifeq (${W},1)
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100401WARNINGS += $(WARNING1)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100402else ifeq (${W},2)
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100403WARNINGS += $(WARNING1) $(WARNING2)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100404else ifeq (${W},3)
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100405WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100406endif
407
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100408# Compiler specific warnings
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100409ifeq ($(findstring clang,$(notdir $(CC))),)
Justin Chadwell7a914232019-07-03 14:15:56 +0100410# not using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100411WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \
412 -Wpacked-bitfield-compat -Wshift-overflow=2 \
413 -Wlogical-op
Justin Chadwell7a914232019-07-03 14:15:56 +0100414else
415# using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100416WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
417 -Wlogical-op-parentheses
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100418endif
419
Yann Gautier957c3532018-12-10 18:08:53 +0100420ifneq (${E},0)
421ERRORS := -Werror
422endif
423
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100424CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
425 $(ERRORS) $(WARNINGS)
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900426ASFLAGS += $(CPPFLAGS) $(ASFLAGS_$(ARCH)) \
Julius Werner53456fc2019-07-09 13:49:11 -0700427 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900428TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Holland23f5e542019-10-20 16:11:25 -0500429 -ffunction-sections -fdata-sections \
430 -ffreestanding -fno-builtin -fno-common \
431 -Os -std=gnu99
Juan Castilloa3487d12015-08-18 14:23:04 +0100432
Mark Brown64869972022-04-20 18:14:32 +0100433$(eval $(call add_define,SVE_VECTOR_LEN))
434
Justin Chadwell83e04882019-08-20 11:01:52 +0100435ifeq (${SANITIZE_UB},on)
436TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
437endif
438ifeq (${SANITIZE_UB},trap)
439TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
440 -fsanitize-undefined-trap-on-error
441endif
442
david cunado34ab6092017-11-30 21:58:01 +0000443GCC_V_OUTPUT := $(shell $(CC) -v 2>&1)
david cunado34ab6092017-11-30 21:58:01 +0000444
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100445# LD = armlink
Varun Wadekar4d034c52019-01-11 14:47:48 -0800446ifneq ($(findstring armlink,$(notdir $(LD))),)
447TF_LDFLAGS += --diag_error=warning --lto_level=O1
448TF_LDFLAGS += --remove --info=unused,unusedsymbols
zelalem-aweked5f45272019-11-12 16:20:17 -0600449TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100450
451# LD = gcc (used when GCC LTO is enabled)
zelalem-aweked5f45272019-11-12 16:20:17 -0600452else ifneq ($(findstring gcc,$(notdir $(LD))),)
453# Pass ld options with Wl or Xlinker switches
454TF_LDFLAGS += -Wl,--fatal-warnings -O1
455TF_LDFLAGS += -Wl,--gc-sections
456ifeq ($(ENABLE_LTO),1)
457 ifeq (${ARCH},aarch64)
458 TF_LDFLAGS += -flto -fuse-linker-plugin
459 endif
460endif
461# GCC automatically adds fix-cortex-a53-843419 flag when used to link
462# which breaks some builds, so disable if errata fix is not explicitly enabled
463ifneq (${ERRATA_A53_843419},1)
464 TF_LDFLAGS += -mno-fix-cortex-a53-843419
465endif
466TF_LDFLAGS += -nostdlib
467TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100468
469# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekar4d034c52019-01-11 14:47:48 -0800470else
Douglas Raillardd0c82732017-06-22 14:44:48 +0100471TF_LDFLAGS += --fatal-warnings -O1
472TF_LDFLAGS += --gc-sections
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100473# ld.lld doesn't recognize the errata flags,
474# therefore don't add those in that case
475ifeq ($(findstring ld.lld,$(notdir $(LD))),)
Douglas Raillardd0c82732017-06-22 14:44:48 +0100476TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
zelalem-aweked5f45272019-11-12 16:20:17 -0600477endif
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100478endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100479
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000480DTC_FLAGS += -I dts -O dtb
Louis Mayencourt6b232d92020-02-28 16:57:30 +0000481DTC_CPPFLAGS += -P -nostdinc -Iinclude -Ifdts -undef \
482 -x assembler-with-cpp $(DEFINES)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000483
Juan Castilloa3487d12015-08-18 14:23:04 +0100484################################################################################
485# Common sources and include directories
486################################################################################
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000487include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
dp-arme3cc8382017-05-04 12:15:35 +0100488include lib/compiler-rt/compiler-rt.mk
Juan Castilloa3487d12015-08-18 14:23:04 +0100489
490BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100491 common/tf_log.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100492 common/${ARCH}/debug.S \
Julius Werner03020da2018-11-27 22:10:56 -0800493 drivers/console/multi_console.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100494 lib/${ARCH}/cache_helpers.S \
495 lib/${ARCH}/misc_helpers.S \
Soby Mathew2f38ce32018-02-08 17:45:12 +0000496 plat/common/plat_bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100497 plat/common/plat_log_common.c \
dp-arm230011c2017-03-07 11:02:47 +0000498 plat/common/${ARCH}/plat_common.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100499 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas0f8f9852018-05-08 10:27:10 +0100500 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000501
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100502ifeq ($(notdir $(CC)),armclang)
503BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
504endif
505
Justin Chadwell83e04882019-08-20 11:01:52 +0100506ifeq (${SANITIZE_UB},on)
507BL_COMMON_SOURCES += plat/common/ubsan.c
508endif
509
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200510INCLUDES += -Iinclude \
Antonio Nino Diaz8d1ade62018-12-17 17:20:57 +0000511 -Iinclude/arch/${ARCH} \
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000512 -Iinclude/lib/cpus/${ARCH} \
513 -Iinclude/lib/el3_runtime/${ARCH} \
514 ${PLAT_INCLUDES} \
515 ${SPD_INCLUDES}
516
Antonio Nino Diazc3a2cf22018-11-19 11:48:30 +0000517include common/backtrace/backtrace.mk
518
Juan Castilloa3487d12015-08-18 14:23:04 +0100519################################################################################
520# Generic definitions
521################################################################################
522
Evan Lloydf2697142015-12-02 18:17:37 +0000523include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
524
Grant Likely388248a2020-07-30 08:50:10 +0100525ifeq (${BUILD_BASE},)
526 BUILD_BASE := ./build
527endif
528BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
Achin Gupta4f6ad662013-10-25 09:08:21 +0100529
Evan Lloydf2697142015-12-02 18:17:37 +0000530SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
Ryan Harkin72ee3312014-01-15 16:55:07 +0000531
Juan Castilloa3487d12015-08-18 14:23:04 +0100532# Platforms providing their own TBB makefile may override this value
533INCLUDE_TBBR_MK := 1
534
Jeenu Viswambharane5c39fd2014-05-16 11:38:10 +0100535
Juan Castilloa3487d12015-08-18 14:23:04 +0100536################################################################################
537# Include SPD Makefile if one has been specified
538################################################################################
539
540ifneq (${SPD},none)
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000541 ifeq (${ARCH},aarch32)
Sandrine Bailleux247e3392018-10-03 14:56:38 +0200542 $(error "Error: SPD is incompatible with AArch32.")
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000543 endif
544
545 ifdef EL3_PAYLOAD_BASE
Sandrine Bailleux03897bb2015-11-26 16:31:34 +0000546 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
547 $(warning "The SPD and its BL32 companion will be present but ignored.")
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000548 endif
Achin Gupta60b7b8a2019-10-11 15:50:43 +0100549
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000550 ifeq (${SPD},spmd)
551 # SPMD is located in std_svc directory
552 SPD_DIR := std_svc
Juan Castilloa3487d12015-08-18 14:23:04 +0100553
Max Shvetsove7fd80e2020-02-25 13:55:00 +0000554 ifeq ($(SPMD_SPM_AT_SEL2),1)
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000555 CTX_INCLUDE_EL2_REGS := 1
Marc Bonniciabaac162021-12-01 18:00:40 +0000556 ifeq ($(SPMC_AT_EL3),1)
557 $(error SPM cannot be enabled in both S-EL2 and EL3.)
558 endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100559 endif
Olivier Deprezbcaa0682020-04-01 21:28:26 +0200560
561 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
562 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
563 endif
Davidson K9a949142021-03-10 12:07:15 +0530564
565 ifeq ($(TS_SP_FW_CONFIG),1)
566 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
567 endif
Balint Dobszay9f689762021-03-26 15:19:11 +0100568
569 ifneq ($(ARM_BL2_SP_LIST_DTS),)
570 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
571 endif
Balint Dobszay719ba9c2021-03-26 16:23:18 +0100572
573 ifneq ($(SP_LAYOUT_FILE),)
574 BL2_ENABLE_SP_LOAD := 1
575 endif
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000576 else
577 # All other SPDs in spd directory
578 SPD_DIR := spd
579 endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100580
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000581 # We expect to locate an spd.mk under the specified SPD directory
582 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
583
584 ifeq (${SPD_MAKE},)
585 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
586 endif
587 $(info Including ${SPD_MAKE})
588 include ${SPD_MAKE}
589
590 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
591 # Makefile would set NEED_BL32 to "yes". In this case, the build system
592 # supports two mutually exclusive options:
593 # * BL32 is built from source: then BL32_SOURCES must contain the list
594 # of source files to build BL32
595 # * BL32 is a prebuilt binary: then BL32 must point to the image file
596 # that will be included in the FIP
597 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
598 # over the sources.
Juan Castilloa3487d12015-08-18 14:23:04 +0100599endif
600
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000601ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
602ifeq (${SPD},none)
603ifeq (${ENABLE_RME},0)
604 $(error CTX_INCLUDE_EL2_REGS is available only when SPD or RME is enabled)
605endif
606endif
607endif
608
Douglas Raillard306593d2017-02-24 18:14:15 +0000609################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500610# Include rmmd Makefile if RME is enabled
611################################################################################
612
613ifneq (${ENABLE_RME},0)
614ifneq (${ARCH},aarch64)
615 $(error ENABLE_RME requires AArch64)
616endif
Marc Bonniciabaac162021-12-01 18:00:40 +0000617ifeq ($(SPMC_AT_EL3),1)
618 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
619endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500620include services/std_svc/rmmd/rmmd.mk
621$(warning "RME is an experimental feature")
622endif
623
624################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100625# Include the platform specific Makefile after the SPD Makefile (the platform
626# makefile may use all previous definitions in this file)
627################################################################################
Jeenu Viswambharane5c39fd2014-05-16 11:38:10 +0100628
Dan Handley81be1002015-03-27 17:44:35 +0000629include ${PLAT_MAKEFILE_FULL}
Jon Medhurst66573cb2014-02-13 15:19:28 +0000630
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900631$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
632
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100633ifeq (${ARM_ARCH_MAJOR},7)
634include make_helpers/armv7-a-cpus.mk
635endif
636
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900637PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
638ifneq ($(PIE_FOUND),)
639 TF_CFLAGS += -fno-PIE
Samuel Holland9286c022022-04-08 21:56:02 -0500640ifneq ($(findstring gcc,$(notdir $(LD))),)
641 TF_LDFLAGS += -no-pie
642endif
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900643endif
644
645ifneq ($(findstring gcc,$(notdir $(LD))),)
646 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100647else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900648 PIE_LDFLAGS += -pie --no-dynamic-linker
649endif
650
651ifeq ($(ENABLE_PIE),1)
Masahiro Yamada65d699d2020-01-17 13:45:02 +0900652ifeq ($(BL2_AT_EL3),1)
653ifneq ($(BL2_IN_XIP_MEM),1)
654 BL2_CFLAGS += -fpie
655 BL2_LDFLAGS += $(PIE_LDFLAGS)
656endif
657endif
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900658 BL31_CFLAGS += -fpie
659 BL31_LDFLAGS += $(PIE_LDFLAGS)
Masahiro Yamadade634f82020-01-17 13:45:14 +0900660 BL32_CFLAGS += -fpie
661 BL32_LDFLAGS += $(PIE_LDFLAGS)
662endif
Soby Mathew078f1a42018-08-28 11:13:55 +0100663
Masahiro Yamada003dd762020-03-26 13:18:48 +0900664ifeq (${ARCH},aarch64)
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900665BL1_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900666ifeq ($(BL2_AT_EL3),1)
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900667BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900668else
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900669BL2_CPPFLAGS += -DIMAGE_AT_EL1
Masahiro Yamada003dd762020-03-26 13:18:48 +0900670endif
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900671BL2U_CPPFLAGS += -DIMAGE_AT_EL1
672BL31_CPPFLAGS += -DIMAGE_AT_EL3
673BL32_CPPFLAGS += -DIMAGE_AT_EL1
Masahiro Yamada003dd762020-03-26 13:18:48 +0900674endif
675
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000676# Include the CPU specific operations makefile, which provides default
677# values for all CPU errata workarounds and CPU specific optimisations.
678# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100679include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100680
dp-armcdd03cb2017-02-15 11:07:55 +0000681ifeq (${ARCH},aarch32)
682NEED_BL32 := yes
683
684################################################################################
685# Build `AARCH32_SP` as BL32 image for AArch32
686################################################################################
687ifneq (${AARCH32_SP},none)
688# We expect to locate an sp.mk under the specified AARCH32_SP directory
689AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
690
691ifeq (${AARCH32_SP_MAKE},)
692 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
693endif
694
695$(info Including ${AARCH32_SP_MAKE})
696include ${AARCH32_SP_MAKE}
697endif
698
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800699endif
700
701################################################################################
702# Include libc if not overridden
703################################################################################
704ifeq (${OVERRIDE_LIBC},0)
705include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000706endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100707
708################################################################################
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000709# Check incompatible options
710################################################################################
711
712ifdef EL3_PAYLOAD_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100713 ifdef PRELOADED_BL33_BASE
714 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
715 incompatible build options. EL3_PAYLOAD_BASE has priority.")
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000716 endif
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800717 ifneq (${GENERATE_COT},0)
718 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible build options.")
719 endif
720 ifneq (${TRUSTED_BOARD_BOOT},0)
721 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are incompatible build options.")
722 endif
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000723endif
724
725ifeq (${NEED_BL33},yes)
726 ifdef EL3_PAYLOAD_BASE
727 $(warning "BL33 image is not needed when option \
728 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
729 endif
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100730 ifdef PRELOADED_BL33_BASE
731 $(warning "BL33 image is not needed when option \
732 PRELOADED_BL33_BASE is used and won't be added to the FIP \
733 file.")
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000734 endif
735endif
736
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000737# When building for systems with hardware-assisted coherency, there's no need to
738# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
739ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
740$(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
741endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100742
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000743#For now, BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is 1.
744ifeq ($(BL2_AT_EL3)-$(BL2_IN_XIP_MEM),0-1)
745$(error "BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is enabled")
746endif
747
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100748# For RAS_EXTENSION, require that EAs are handled in EL3 first
749ifeq ($(RAS_EXTENSION),1)
Manish Pandey0e3379d2022-10-10 11:43:08 +0100750 ifneq ($(HANDLE_EA_EL3_FIRST_NS),1)
751 $(error For RAS_EXTENSION, HANDLE_EA_EL3_FIRST_NS must also be 1)
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100752 endif
753endif
754
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000755# When FAULT_INJECTION_SUPPORT is used, require that RAS_EXTENSION is enabled
756ifeq ($(FAULT_INJECTION_SUPPORT),1)
757 ifneq ($(RAS_EXTENSION),1)
758 $(error For FAULT_INJECTION_SUPPORT, RAS_EXTENSION must also be 1)
759 endif
760endif
761
Roberto Vargas025946a2018-09-24 17:20:48 +0100762# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100763ifeq ($(DYN_DISABLE_AUTH), 1)
764 ifeq (${TRUSTED_BOARD_BOOT}, 0)
765 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH to be set.")
766 endif
Soby Mathew9fe88042018-03-26 12:43:37 +0100767endif
768
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100769ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
770# Support authentication verification and hash calculation
771 CRYPTO_SUPPORT := 3
772else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
773# Support authentication verification and hash calculation
774 CRYPTO_SUPPORT := 3
775else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
776# Support hash calculation only
777 CRYPTO_SUPPORT := 2
778else ifeq (${TRUSTED_BOARD_BOOT},1)
779# Support authentication verification only
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000780 CRYPTO_SUPPORT := 1
781else
782 CRYPTO_SUPPORT := 0
783endif
784
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +0100785# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
786ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Manish Pandey34a305e2021-10-21 21:53:49 +0100787$(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +0100788endif
789
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000790# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100791# registers associated to it are also saved and restored.
792# 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 +0000793ifeq ($(ENABLE_PAUTH),1)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100794 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
795 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
Alexei Fedorov2831d582019-03-13 11:05:07 +0000796 endif
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100797endif
798
799ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
800 ifneq (${ARCH},aarch64)
801 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000802 endif
803endif
804
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100805ifeq ($(CTX_INCLUDE_MTE_REGS),1)
806 ifneq (${ARCH},aarch64)
807 $(error CTX_INCLUDE_MTE_REGS requires AArch64)
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100808 endif
809endif
810
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100811ifeq ($(PSA_FWU_SUPPORT),1)
812 $(info PSA_FWU_SUPPORT is an experimental feature)
813endif
814
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000815ifeq ($(FEATURE_DETECTION),1)
816 $(info FEATURE_DETECTION is an experimental feature)
817endif
818
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000819ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
820 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
821 $(error "ALLOW_RO_XLAT_TABLES requires translation tables library v2")
822 endif
823endif
824
Sumit Garg392e4df2019-11-15 10:43:00 +0530825ifneq (${DECRYPTION_SUPPORT},none)
826 ifeq (${TRUSTED_BOARD_BOOT}, 0)
827 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT to be set)
Sumit Garg392e4df2019-11-15 10:43:00 +0530828 endif
829endif
830
johpow0181865962022-01-28 17:06:20 -0600831# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -0500832ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -0600833
834 # SME/SVE only supported on AArch64
johpow019baade32021-07-08 14:14:00 -0500835 ifeq (${ENABLE_SME_FOR_NS},1)
836 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
837 endif
838 ifeq (${ENABLE_SVE_FOR_NS},1)
839 # Warning instead of error due to CI dependency on this
Yann Gautier7d917672021-11-19 11:35:46 +0100840 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
johpow019baade32021-07-08 14:14:00 -0500841 endif
johpow0181865962022-01-28 17:06:20 -0600842
Juan Pablo Conde42305f22022-07-12 16:40:29 -0400843 # BRBE is not supported in AArch32
johpow0181865962022-01-28 17:06:20 -0600844 ifeq (${ENABLE_BRBE_FOR_NS},1)
845 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
846 endif
847
Juan Pablo Conde42305f22022-07-12 16:40:29 -0400848 # FEAT_RNG_TRAP is not supported in AArch32
849 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
850 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
851 endif
johpow019baade32021-07-08 14:14:00 -0500852endif
853
854# Ensure ENABLE_RME is not used with SME
855ifeq (${ENABLE_RME},1)
856 ifeq (${ENABLE_SME_FOR_NS},1)
857 $(error "ENABLE_SME_FOR_NS cannot be used with ENABLE_RME")
858 endif
859endif
860
861# Secure SME/SVE requires the non-secure component as well
862ifeq (${ENABLE_SME_FOR_SWD},1)
863 ifeq (${ENABLE_SME_FOR_NS},0)
864 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
865 endif
866endif
867ifeq (${ENABLE_SVE_FOR_SWD},1)
868 ifeq (${ENABLE_SVE_FOR_NS},0)
869 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
870 endif
871endif
872
873# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
874# its own context management including FPU registers.
875ifeq (${CTX_INCLUDE_FPREGS},1)
876 ifeq (${ENABLE_SME_FOR_NS},1)
877 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
878 endif
879 ifeq (${ENABLE_SVE_FOR_NS},1)
880 # Warning instead of error due to CI dependency on this
881 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
882 $(warning "Forced ENABLE_SVE_FOR_NS=0")
883 override ENABLE_SVE_FOR_NS := 0
884 endif
885endif
886
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +0000887ifeq ($(DRTM_SUPPORT),1)
888 $(info DRTM_SUPPORT is an experimental feature)
889endif
890
Chris Kayd02c2312022-09-29 16:21:24 +0100891ifeq (${ENABLE_RME},1)
892 ifneq (${SEPARATE_CODE_AND_RODATA},1)
893 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
894 endif
895endif
896
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000897################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100898# Process platform overrideable behaviour
899################################################################################
900
Manish Pandeyb0e7efa2021-10-06 10:59:52 +0100901ifdef BL1_SOURCES
902NEED_BL1 := yes
903endif
904
Jon Medhurst66573cb2014-02-13 15:19:28 +0000905ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +0100906 NEED_BL2 := yes
907
908 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
909 # Certificate generation tools. This flag can be overridden by the platform.
910 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000911 # If booting an EL3 payload there is no need for a BL33 image
912 # in the FIP file.
913 NEED_BL33 := no
914 else
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100915 ifdef PRELOADED_BL33_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000916 # If booting a BL33 preloaded image there is no need of
917 # another one in the FIP file.
918 NEED_BL33 := no
919 else
920 NEED_BL33 ?= yes
921 endif
922 endif
Jon Medhurst66573cb2014-02-13 15:19:28 +0000923endif
Achin Gupta4f6ad662013-10-25 09:08:21 +0100924
Manish Pandeyb0e7efa2021-10-06 10:59:52 +0100925ifdef BL2U_SOURCES
926NEED_BL2U := yes
927endif
928
Masahiro Yamadae76b4f82017-04-05 19:11:41 +0900929# If SCP_BL2 is given, we always want FIP to include it.
930ifdef SCP_BL2
931 NEED_SCP_BL2 := yes
932endif
933
Soby Mathewbf169232017-11-14 14:10:10 +0000934# For AArch32, BL31 is not currently supported.
935ifneq (${ARCH},aarch32)
936 ifdef BL31_SOURCES
937 # When booting an EL3 payload, there is no need to compile the BL31 image nor
938 # put it in the FIP.
939 ifndef EL3_PAYLOAD_BASE
940 NEED_BL31 := yes
941 endif
942 endif
943endif
944
Juan Castilloa3487d12015-08-18 14:23:04 +0100945# Process TBB related flags
946ifneq (${GENERATE_COT},0)
947 # Common cert_create options
948 ifneq (${CREATE_KEYS},0)
949 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +0100950 $(eval FWU_CRT_ARGS += -n)
Juan Castilloa3487d12015-08-18 14:23:04 +0100951 ifneq (${SAVE_KEYS},0)
952 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +0100953 $(eval FWU_CRT_ARGS += -k)
Juan Castilloa3487d12015-08-18 14:23:04 +0100954 endif
955 endif
956 # Include TBBR makefile (unless the platform indicates otherwise)
957 ifeq (${INCLUDE_TBBR_MK},1)
958 include make_helpers/tbbr/tbbr_tools.mk
959 endif
Ryan Harkin25cff832014-01-13 12:37:03 +0000960endif
Achin Gupta4f6ad662013-10-25 09:08:21 +0100961
Masahiro Yamada4d87eb42016-12-25 13:52:22 +0900962ifneq (${FIP_ALIGN},0)
963FIP_ARGS += --align ${FIP_ALIGN}
964endif
965
Manish Pandeyb0e7efa2021-10-06 10:59:52 +0100966ifdef FDT_SOURCES
967NEED_FDT := yes
968endif
969
Juan Castilloa3487d12015-08-18 14:23:04 +0100970################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +0800971# Include libraries' Makefile that are used in all BL
972################################################################################
973
974include lib/stack_protector/stack_protector.mk
975
976################################################################################
dp-arm4972ec52016-05-25 16:20:20 +0100977# Auxiliary tools (fiptool, cert_create, etc)
Juan Castilloa3487d12015-08-18 14:23:04 +0100978################################################################################
Achin Gupta375f5382014-02-18 18:12:48 +0000979
Juan Castilloa3487d12015-08-18 14:23:04 +0100980# Variables for use with Certificate Generation Tool
981CRTTOOLPATH ?= tools/cert_create
Evan Lloyd004c9a52015-12-03 11:35:40 +0000982CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT}
Achin Gupta375f5382014-02-18 18:12:48 +0000983
Sumit Gargb6c4b3c2019-11-11 18:46:36 +0530984# Variables for use with Firmware Encryption Tool
985ENCTOOLPATH ?= tools/encrypt_fw
986ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
987
Juan Castilloa3487d12015-08-18 14:23:04 +0100988# Variables for use with Firmware Image Package
dp-arm4972ec52016-05-25 16:20:20 +0100989FIPTOOLPATH ?= tools/fiptool
990FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT}
James Morrisseyeaaeece2013-11-01 13:56:59 +0000991
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +0000992# Variables for use with sptool
993SPTOOLPATH ?= tools/sptool
J-Alvesef8e0982022-03-22 16:28:51 +0000994SPTOOL ?= ${SPTOOLPATH}/sptool.py
Manish Pandey3f90ad72020-01-14 11:52:05 +0000995SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +0000996
Roberto Vargase92111a2018-05-22 16:05:42 +0100997# Variables for use with ROMLIB
998ROMLIBPATH ?= lib/romlib
999
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001000# Variable for use with Python
1001PYTHON ?= python3
1002
1003# Variables for use with PRINT_MEMORY_MAP
1004PRINT_MEMORY_MAP_PATH ?= tools/memory
1005PRINT_MEMORY_MAP ?= ${PRINT_MEMORY_MAP_PATH}/print_memory_map.py
1006
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001007# Variables for use with documentation build using Sphinx tool
1008DOCS_PATH ?= docs
1009
Abdul Halim, Muhammad Hadi Asyrafif3a5d022020-06-29 12:15:27 +08001010# Defination of SIMICS flag
1011SIMICS_BUILD ?= 0
1012
Soby Mathew574e01e2017-02-14 10:05:07 +00001013################################################################################
1014# Include BL specific makefiles
1015################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001016
1017ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001018include bl1/bl1.mk
1019endif
1020
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001021ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001022include bl2/bl2.mk
1023endif
1024
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001025ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001026include bl2u/bl2u.mk
1027endif
1028
Soby Mathewbf169232017-11-14 14:10:10 +00001029ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001030include bl31/bl31.mk
1031endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001032
Soby Mathew574e01e2017-02-14 10:05:07 +00001033################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001034# Build options checks
1035################################################################################
1036
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001037$(eval $(call assert_booleans,\
1038 $(sort \
1039 ALLOW_RO_XLAT_TABLES \
Balint Dobszay719ba9c2021-03-26 16:23:18 +01001040 BL2_ENABLE_SP_LOAD \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001041 COLD_BOOT_SINGLE_CPU \
1042 CREATE_KEYS \
1043 CTX_INCLUDE_AARCH32_REGS \
1044 CTX_INCLUDE_FPREGS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001045 CTX_INCLUDE_EL2_REGS \
1046 DEBUG \
Javier Almansa Sobrinof3a4c542020-11-23 18:38:15 +00001047 DISABLE_MTPMU \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001048 DYN_DISABLE_AUTH \
1049 EL3_EXCEPTION_HANDLING \
1050 ENABLE_AMU \
Chris Kay925fda42021-05-25 10:42:56 +01001051 ENABLE_AMU_AUXILIARY_COUNTERS \
Chris Kayf11909f2021-08-19 11:21:52 +01001052 ENABLE_AMU_FCONF \
johpow01fa59c6f2020-10-02 13:41:11 -05001053 AMU_RESTRICT_COUNTERS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001054 ENABLE_ASSERTIONS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001055 ENABLE_PIE \
1056 ENABLE_PMF \
1057 ENABLE_PSCI_STAT \
1058 ENABLE_RUNTIME_INSTRUMENTATION \
johpow019baade32021-07-08 14:14:00 -05001059 ENABLE_SME_FOR_NS \
1060 ENABLE_SME_FOR_SWD \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001061 ENABLE_SPE_FOR_LOWER_ELS \
1062 ENABLE_SVE_FOR_NS \
Max Shvetsovc4502772021-03-22 11:59:37 +00001063 ENABLE_SVE_FOR_SWD \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001064 ERROR_DEPRECATED \
1065 FAULT_INJECTION_SUPPORT \
1066 GENERATE_COT \
1067 GICV2_G0_FOR_EL3 \
Manish Pandey0e3379d2022-10-10 11:43:08 +01001068 HANDLE_EA_EL3_FIRST_NS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001069 HW_ASSISTED_COHERENCY \
1070 INVERTED_MEMMAP \
1071 MEASURED_BOOT \
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001072 DRTM_SUPPORT \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001073 NS_TIMER_SWITCH \
1074 OVERRIDE_LIBC \
1075 PL011_GENERIC_UART \
Tamas Banc9ccc272022-01-18 16:20:47 +01001076 PLAT_RSS_NOT_SUPPORTED \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001077 PROGRAMMABLE_RESET_ADDRESS \
1078 PSCI_EXTENDED_STATE_ID \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001079 RESET_TO_BL31 \
Jorge Ramirez-Ortiz7538ef92022-04-15 11:46:47 +02001080 RESET_TO_BL31_WITH_PARAMS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001081 SAVE_KEYS \
1082 SEPARATE_CODE_AND_RODATA \
Jiafei Pan0824b452022-02-24 10:47:33 +08001083 SEPARATE_BL2_NOLOAD_REGION \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001084 SEPARATE_NOBITS_REGION \
1085 SPIN_ON_BL1_EXIT \
1086 SPM_MM \
Marc Bonniciabaac162021-12-01 18:00:40 +00001087 SPMC_AT_EL3 \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001088 SPMD_SPM_AT_SEL2 \
1089 TRUSTED_BOARD_BOOT \
1090 USE_COHERENT_MEM \
1091 USE_DEBUGFS \
1092 ARM_IO_IN_DTB \
1093 SDEI_IN_FCONF \
1094 SEC_INT_DESC_IN_FCONF \
1095 USE_ROMLIB \
1096 USE_TBBR_DEFS \
1097 WARMBOOT_ENABLE_DCACHE_EARLY \
1098 BL2_AT_EL3 \
1099 BL2_IN_XIP_MEM \
1100 BL2_INV_DCACHE \
1101 USE_SPINLOCK_CAS \
1102 ENCRYPT_BL31 \
1103 ENCRYPT_BL32 \
1104 ERRATA_SPECULATIVE_AT \
Manish Pandey7c6fcb42022-09-27 14:30:34 +01001105 RAS_TRAP_NS_ERR_REC_ACCESS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001106 COT_DESC_IN_DTB \
1107 USE_SP804_TIMER \
Manish V Badarkhe99575e42021-06-25 23:28:59 +01001108 PSA_FWU_SUPPORT \
Manish V Badarkhef356f7e2021-06-29 11:44:20 +01001109 ENABLE_SYS_REG_TRACE_FOR_NS \
Chris Kay03be39d2021-05-05 13:38:30 +01001110 ENABLE_MPMM \
1111 ENABLE_MPMM_FCONF \
Abdul Halim, Muhammad Hadi Asyrafif3a5d022020-06-29 12:15:27 +08001112 SIMICS_BUILD \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001113 FEATURE_DETECTION \
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +01001114 TRNG_SUPPORT \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001115 CONDITIONAL_CMO \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001116)))
Dan Handley81be1002015-03-27 17:44:35 +00001117
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001118$(eval $(call assert_numerics,\
1119 $(sort \
1120 ARM_ARCH_MAJOR \
1121 ARM_ARCH_MINOR \
1122 BRANCH_PROTECTION \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001123 CTX_INCLUDE_PAUTH_REGS \
1124 CTX_INCLUDE_MTE_REGS \
1125 CTX_INCLUDE_NEVE_REGS \
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +01001126 CRYPTO_SUPPORT \
Jayanth Dodderi Chidanand69316752022-05-09 12:33:03 +01001127 ENABLE_BRBE_FOR_NS \
Jayanth Dodderi Chidananda793ccc2022-05-19 14:08:28 +01001128 ENABLE_TRBE_FOR_NS \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001129 ENABLE_BTI \
1130 ENABLE_PAUTH \
1131 ENABLE_FEAT_AMUv1 \
1132 ENABLE_FEAT_AMUv1p1 \
1133 ENABLE_FEAT_CSV2_2 \
1134 ENABLE_FEAT_DIT \
1135 ENABLE_FEAT_ECV \
1136 ENABLE_FEAT_FGT \
1137 ENABLE_FEAT_HCX \
1138 ENABLE_FEAT_PAN \
1139 ENABLE_FEAT_RNG \
Juan Pablo Conde42305f22022-07-12 16:40:29 -04001140 ENABLE_FEAT_RNG_TRAP \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001141 ENABLE_FEAT_SB \
1142 ENABLE_FEAT_SEL2 \
1143 ENABLE_FEAT_VHE \
1144 ENABLE_MPAM_FOR_LOWER_ELS \
1145 ENABLE_RME \
1146 ENABLE_TRF_FOR_NS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001147 FW_ENC_STATUS \
Manish V Badarkhe2bb45ff2021-03-16 10:01:27 +00001148 NR_OF_FW_BANKS \
1149 NR_OF_IMAGES_IN_FW_BANK \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001150 RAS_EXTENSION \
Jayanth Dodderi Chidanand4b5489c2022-03-28 15:28:55 +01001151 TWED_DELAY \
1152 ENABLE_FEAT_TWED \
Mark Brown64869972022-04-20 18:14:32 +01001153 SVE_VECTOR_LEN \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001154)))
Jeenu Viswambharanfca76802017-01-16 16:52:35 +00001155
Justin Chadwellf9b32c12019-07-29 17:13:10 +01001156ifdef KEY_SIZE
1157 $(eval $(call assert_numeric,KEY_SIZE))
1158endif
1159
Justin Chadwell83e04882019-08-20 11:01:52 +01001160ifeq ($(filter $(SANITIZE_UB), on off trap),)
1161 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1162endif
1163
Juan Castilloa3487d12015-08-18 14:23:04 +01001164################################################################################
1165# Add definitions to the cpp preprocessor based on the current build options.
1166# This is done after including the platform specific makefile to allow the
1167# platform to overwrite the default options
1168################################################################################
Jeenu Viswambharand1b60152014-05-12 15:28:47 +01001169
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001170$(eval $(call add_defines,\
1171 $(sort \
1172 ALLOW_RO_XLAT_TABLES \
1173 ARM_ARCH_MAJOR \
1174 ARM_ARCH_MINOR \
Balint Dobszay719ba9c2021-03-26 16:23:18 +01001175 BL2_ENABLE_SP_LOAD \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001176 COLD_BOOT_SINGLE_CPU \
1177 CTX_INCLUDE_AARCH32_REGS \
1178 CTX_INCLUDE_FPREGS \
1179 CTX_INCLUDE_PAUTH_REGS \
1180 EL3_EXCEPTION_HANDLING \
1181 CTX_INCLUDE_MTE_REGS \
1182 CTX_INCLUDE_EL2_REGS \
Arunachalam Ganapathydd3ec7e2020-05-28 11:57:09 +01001183 CTX_INCLUDE_NEVE_REGS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001184 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
Javier Almansa Sobrinof3a4c542020-11-23 18:38:15 +00001185 DISABLE_MTPMU \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001186 ENABLE_AMU \
Chris Kay925fda42021-05-25 10:42:56 +01001187 ENABLE_AMU_AUXILIARY_COUNTERS \
Chris Kayf11909f2021-08-19 11:21:52 +01001188 ENABLE_AMU_FCONF \
johpow01fa59c6f2020-10-02 13:41:11 -05001189 AMU_RESTRICT_COUNTERS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001190 ENABLE_ASSERTIONS \
1191 ENABLE_BTI \
1192 ENABLE_MPAM_FOR_LOWER_ELS \
1193 ENABLE_PAUTH \
1194 ENABLE_PIE \
1195 ENABLE_PMF \
1196 ENABLE_PSCI_STAT \
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001197 ENABLE_RME \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001198 ENABLE_RUNTIME_INSTRUMENTATION \
johpow019baade32021-07-08 14:14:00 -05001199 ENABLE_SME_FOR_NS \
1200 ENABLE_SME_FOR_SWD \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001201 ENABLE_SPE_FOR_LOWER_ELS \
1202 ENABLE_SVE_FOR_NS \
Max Shvetsovc4502772021-03-22 11:59:37 +00001203 ENABLE_SVE_FOR_SWD \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001204 ENCRYPT_BL31 \
1205 ENCRYPT_BL32 \
1206 ERROR_DEPRECATED \
1207 FAULT_INJECTION_SUPPORT \
1208 GICV2_G0_FOR_EL3 \
Manish Pandey0e3379d2022-10-10 11:43:08 +01001209 HANDLE_EA_EL3_FIRST_NS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001210 HW_ASSISTED_COHERENCY \
1211 LOG_LEVEL \
1212 MEASURED_BOOT \
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001213 DRTM_SUPPORT \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001214 NS_TIMER_SWITCH \
1215 PL011_GENERIC_UART \
1216 PLAT_${PLAT} \
Tamas Banc9ccc272022-01-18 16:20:47 +01001217 PLAT_RSS_NOT_SUPPORTED \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001218 PROGRAMMABLE_RESET_ADDRESS \
1219 PSCI_EXTENDED_STATE_ID \
1220 RAS_EXTENSION \
1221 RESET_TO_BL31 \
Jorge Ramirez-Ortiz7538ef92022-04-15 11:46:47 +02001222 RESET_TO_BL31_WITH_PARAMS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001223 SEPARATE_CODE_AND_RODATA \
Jiafei Pan0824b452022-02-24 10:47:33 +08001224 SEPARATE_BL2_NOLOAD_REGION \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001225 SEPARATE_NOBITS_REGION \
1226 RECLAIM_INIT_CODE \
1227 SPD_${SPD} \
1228 SPIN_ON_BL1_EXIT \
1229 SPM_MM \
Marc Bonniciabaac162021-12-01 18:00:40 +00001230 SPMC_AT_EL3 \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001231 SPMD_SPM_AT_SEL2 \
1232 TRUSTED_BOARD_BOOT \
Manish V Badarkhe5181d602022-01-08 22:56:06 +00001233 CRYPTO_SUPPORT \
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -05001234 TRNG_SUPPORT \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001235 USE_COHERENT_MEM \
1236 USE_DEBUGFS \
1237 ARM_IO_IN_DTB \
1238 SDEI_IN_FCONF \
1239 SEC_INT_DESC_IN_FCONF \
1240 USE_ROMLIB \
1241 USE_TBBR_DEFS \
1242 WARMBOOT_ENABLE_DCACHE_EARLY \
1243 BL2_AT_EL3 \
1244 BL2_IN_XIP_MEM \
1245 BL2_INV_DCACHE \
1246 USE_SPINLOCK_CAS \
1247 ERRATA_SPECULATIVE_AT \
Manish Pandey7c6fcb42022-09-27 14:30:34 +01001248 RAS_TRAP_NS_ERR_REC_ACCESS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001249 COT_DESC_IN_DTB \
1250 USE_SP804_TIMER \
Tomas Pilarde164b02020-10-29 13:01:16 +00001251 ENABLE_FEAT_RNG \
Juan Pablo Conde42305f22022-07-12 16:40:29 -04001252 ENABLE_FEAT_RNG_TRAP \
Chris Kay08fec332021-03-09 13:34:35 +00001253 ENABLE_FEAT_SB \
Daniel Boulby928747f2021-05-25 18:09:34 +01001254 ENABLE_FEAT_DIT \
Manish V Badarkhe2bb45ff2021-03-16 10:01:27 +00001255 NR_OF_FW_BANKS \
1256 NR_OF_IMAGES_IN_FW_BANK \
Manish V Badarkhe99575e42021-06-25 23:28:59 +01001257 PSA_FWU_SUPPORT \
johpow0181865962022-01-28 17:06:20 -06001258 ENABLE_BRBE_FOR_NS \
Manish V Badarkhe20df29c2021-07-02 09:10:56 +01001259 ENABLE_TRBE_FOR_NS \
Manish V Badarkhef356f7e2021-06-29 11:44:20 +01001260 ENABLE_SYS_REG_TRACE_FOR_NS \
Manish V Badarkhe51a97112021-07-08 09:33:18 +01001261 ENABLE_TRF_FOR_NS \
johpow01f91e59f2021-08-04 19:38:18 -05001262 ENABLE_FEAT_HCX \
Chris Kay03be39d2021-05-05 13:38:30 +01001263 ENABLE_MPMM \
1264 ENABLE_MPMM_FCONF \
Jayanth Dodderi Chidanand13ae0f42021-11-25 14:59:30 +00001265 ENABLE_FEAT_FGT \
1266 ENABLE_FEAT_AMUv1 \
1267 ENABLE_FEAT_ECV \
Abdul Halim, Muhammad Hadi Asyrafif3a5d022020-06-29 12:15:27 +08001268 SIMICS_BUILD \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001269 ENABLE_FEAT_AMUv1p1 \
1270 ENABLE_FEAT_SEL2 \
1271 ENABLE_FEAT_VHE \
1272 ENABLE_FEAT_CSV2_2 \
1273 ENABLE_FEAT_PAN \
1274 FEATURE_DETECTION \
Jayanth Dodderi Chidanand4b5489c2022-03-28 15:28:55 +01001275 TWED_DELAY \
1276 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001277 CONDITIONAL_CMO \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001278)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001279
Justin Chadwell83e04882019-08-20 11:01:52 +01001280ifeq (${SANITIZE_UB},trap)
1281 $(eval $(call add_define,MONITOR_TRAPS))
1282endif
1283
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001284# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1285ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001286 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1287else
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001288 # Define the PRELOADED_BL33_BASE flag only if it is provided and
1289 # EL3_PAYLOAD_BASE is not defined, as it has priority.
1290 ifdef PRELOADED_BL33_BASE
1291 $(eval $(call add_define,PRELOADED_BL33_BASE))
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001292 endif
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001293endif
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001294
Soby Mathew9fe88042018-03-26 12:43:37 +01001295# Define the DYN_DISABLE_AUTH flag only if set.
1296ifeq (${DYN_DISABLE_AUTH},1)
1297$(eval $(call add_define,DYN_DISABLE_AUTH))
1298endif
1299
Varun Wadekar4d034c52019-01-11 14:47:48 -08001300ifneq ($(findstring armlink,$(notdir $(LD))),)
1301$(eval $(call add_define,USE_ARM_LINK))
1302endif
1303
Manish Pandey3f90ad72020-01-14 11:52:05 +00001304# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001305ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001306ifdef SP_LAYOUT_FILE
Manish Pandey3f90ad72020-01-14 11:52:05 +00001307 -include $(BUILD_PLAT)/sp_gen.mk
1308 FIP_DEPS += sp
Manish Pandeyaaaeb312020-05-26 23:59:36 +01001309 CRT_DEPS += sp
Manish Pandey3f90ad72020-01-14 11:52:05 +00001310 NEED_SP_PKG := yes
1311else
Olivier Deprez042db532020-03-19 09:27:11 +01001312 ifeq (${SPMD_SPM_AT_SEL2},1)
1313 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1314 endif
Manish Pandey3f90ad72020-01-14 11:52:05 +00001315endif
1316endif
1317
Juan Castilloa3487d12015-08-18 14:23:04 +01001318################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001319# Build targets
1320################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001321
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301322.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 +01001323.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001324
Juan Castilloa3487d12015-08-18 14:23:04 +01001325all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001326
Juan Castilloa3487d12015-08-18 14:23:04 +01001327msg_start:
1328 @echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001329
Soby Mathew18a62042015-10-26 14:29:21 +00001330ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001331# Check if deprecated declarations and cpp warnings should be treated as error or not.
Varun Wadekar4d034c52019-01-11 14:47:48 -08001332ifneq ($(findstring clang,$(notdir $(CC))),)
1333 CPPFLAGS += -Wno-error=deprecated-declarations
1334else
Dan Handley6fa89a22018-02-27 16:03:58 +00001335 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001336endif
Julius Werner53456fc2019-07-09 13:49:11 -07001337endif # !ERROR_DEPRECATED
Soby Mathew18a62042015-10-26 14:29:21 +00001338
Roberto Vargase92111a2018-05-22 16:05:42 +01001339$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001340$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001341
Juan Castilloa3487d12015-08-18 14:23:04 +01001342# Expand build macros for the different images
1343ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001344BL1_SOURCES := $(sort ${BL1_SOURCES})
1345
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001346$(eval $(call MAKE_BL,bl1))
Juan Castilloa3487d12015-08-18 14:23:04 +01001347endif
Juan Castillo11abdcd2014-10-21 11:30:42 +01001348
Juan Castilloa3487d12015-08-18 14:23:04 +01001349ifeq (${NEED_BL2},yes)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001350ifeq (${BL2_AT_EL3}, 0)
1351FIP_BL2_ARGS := tb-fw
1352endif
1353
Chris Kayfb3b0512021-09-28 15:44:37 +01001354BL2_SOURCES := $(sort ${BL2_SOURCES})
1355
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001356$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001357 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Juan Castilloa3487d12015-08-18 14:23:04 +01001358endif
Juan Castillo11abdcd2014-10-21 11:30:42 +01001359
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001360ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001361$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001362endif
1363
Juan Castilloa3487d12015-08-18 14:23:04 +01001364ifeq (${NEED_BL31},yes)
1365BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001366# Sort BL31 source files to remove duplicates
1367BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301368ifneq (${DECRYPTION_SUPPORT},none)
1369$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001370 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301371else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001372$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001373 $(eval $(call MAKE_BL,bl31,soc-fw)))
Juan Castilloa3487d12015-08-18 14:23:04 +01001374endif
Sumit Gargeec52442019-11-14 16:33:45 +05301375endif
Juan Castillo379954c2014-11-04 17:36:40 +00001376
Juan Castillo671b8db2015-11-12 10:59:26 +00001377# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001378# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001379# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001380ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001381# Sort BL32 source files to remove duplicates
1382BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001383BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1384
Sumit Gargeec52442019-11-14 16:33:45 +05301385ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001386$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301387 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1388else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001389$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001390 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Juan Castillo11abdcd2014-10-21 11:30:42 +01001391endif
Sumit Gargeec52442019-11-14 16:33:45 +05301392endif
Juan Castillo11abdcd2014-10-21 11:30:42 +01001393
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001394# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1395# needs to be built from RMM_SOURCES.
1396ifeq (${NEED_RMM},yes)
1397# Sort RMM source files to remove duplicates
1398RMM_SOURCES := $(sort ${RMM_SOURCES})
1399BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1400
1401$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
1402 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1403endif
1404
Juan Castilloa3487d12015-08-18 14:23:04 +01001405# Add the BL33 image if required by the platform
1406ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001407$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Juan Castillo9c25a402015-01-13 12:21:04 +00001408endif
1409
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001410ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001411$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001412 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001413endif
1414
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001415# Expand build macros for the different images
1416ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001417 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001418endif
1419
Manish Pandey3f90ad72020-01-14 11:52:05 +00001420# Add Secure Partition packages
1421ifeq (${NEED_SP_PKG},yes)
1422$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
Ruari Phipps571ed6b2020-07-24 16:20:57 +01001423 ${Q}${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT}
J-Alvesef8e0982022-03-22 16:28:51 +00001424sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001425 @${ECHO_BLANK_LINE}
1426 @echo "Built SP Images successfully"
1427 @${ECHO_BLANK_LINE}
1428endif
1429
Ian Spray36eaaf32014-01-30 17:25:28 +00001430locate-checkpatch:
1431ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001432 $(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 +00001433else
1434ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001435 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001436endif
1437endif
1438
Achin Gupta4f6ad662013-10-25 09:08:21 +01001439clean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001440 @echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001441 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001442ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001443 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001444else
1445# Clear the MAKEFLAGS as we do not want
1446# to pass the gnumake flags to nmake.
1447 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean
1448endif
Juan Castilloa3487d12015-08-18 14:23:04 +01001449 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301450 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
Roberto Vargase92111a2018-05-22 16:05:42 +01001451 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001452
James Morrisseyeaaeece2013-11-01 13:56:59 +00001453realclean distclean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001454 @echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001455 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1456 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001457ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001458 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001459else
1460# Clear the MAKEFLAGS as we do not want
1461# to pass the gnumake flags to nmake.
1462 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean
1463endif
Nicolas Boulenguezdf612a52021-03-31 12:22:45 +02001464 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301465 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
Roberto Vargase92111a2018-05-22 16:05:42 +01001466 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001467
Ian Spray36eaaf32014-01-30 17:25:28 +00001468checkcodebase: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001469 @echo " CHECKING STYLE"
Dan Handley3a355712016-06-02 18:21:02 +01001470 @if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001471 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001472 while read GIT_FILE ; \
1473 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1474 done ; \
1475 else \
1476 find . -type f -not -iwholename "*.git*" \
1477 -not -iwholename "*build*" \
1478 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001479 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001480 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001481 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001482 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1483 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001484
1485checkpatch: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001486 @echo " CHECKING STYLE"
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001487 @if test -n "${CHECKPATCH_OPTS}"; then \
1488 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1489 fi
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001490 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001491 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1492 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001493 printf "\n[*] Checking style of '$$commit'\n\n"; \
1494 git log --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001495 -- ${CHECK_PATHS} | \
1496 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001497 git diff --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001498 -- ${CHECK_PATHS} | \
1499 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001500 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001501
1502certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001503
Pali Rohár54ff2132020-11-24 15:38:08 +01001504${CRTTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001505 ${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 +00001506 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001507 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001508 @${ECHO_BLANK_LINE}
Jon Medhurst407a95c2014-02-12 15:54:48 +00001509
Juan Castillo11abdcd2014-10-21 11:30:42 +01001510ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001511certificates: ${CRT_DEPS} ${CRTTOOL}
1512 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001513 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001514 @echo "Built $@ successfully"
1515 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001516 @${ECHO_BLANK_LINE}
Juan Castillo11abdcd2014-10-21 11:30:42 +01001517endif
1518
Juan Castilloa3487d12015-08-18 14:23:04 +01001519${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001520 $(eval ${CHECK_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001521 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
1522 ${Q}${FIPTOOL} info $@
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001523 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001524 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001525 @${ECHO_BLANK_LINE}
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001526
Yatharth Kochard1a93432015-10-12 12:33:47 +01001527ifneq (${GENERATE_COT},0)
1528fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1529 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001530 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001531 @echo "Built $@ successfully"
1532 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001533 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001534endif
1535
1536${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001537 $(eval ${CHECK_FWU_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001538 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1539 ${Q}${FIPTOOL} info $@
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001540 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001541 @echo "Built $@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001542 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001543
Juan Castilloa3487d12015-08-18 14:23:04 +01001544fiptool: ${FIPTOOL}
1545fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001546fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001547
Pali Rohár54ff2132020-11-24 15:38:08 +01001548${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001549ifdef UNIX_MK
Lionel Debieve730bde82022-11-14 11:05:09 +01001550 ${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 +01001551else
1552# Clear the MAKEFLAGS as we do not want
1553# to pass the gnumake flags to nmake.
1554 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
1555endif
Harry Liebelf58ad362014-01-10 18:00:33 +00001556
Pali Rohár54ff2132020-11-24 15:38:08 +01001557romlib.bin: libraries FORCE
John Tsichritzisf6ea99b2019-05-21 15:47:37 +01001558 ${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 +01001559
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001560# Call print_memory_map tool
1561memmap: all
Louis Mayencourtc1c2bf72020-02-13 08:21:34 +00001562 ${Q}${PYTHON} ${PRINT_MEMORY_MAP} ${BUILD_PLAT} ${INVERTED_MEMMAP}
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001563
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001564doc:
1565 @echo " BUILD DOCUMENTATION"
1566 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1567
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301568enctool: ${ENCTOOL}
1569
Pali Rohár54ff2132020-11-24 15:38:08 +01001570${ENCTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001571 ${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 +05301572 @${ECHO_BLANK_LINE}
1573 @echo "Built $@ successfully"
1574 @${ECHO_BLANK_LINE}
1575
Joakim Bech35fab8c2014-01-23 14:51:49 +01001576cscope:
1577 @echo " CSCOPE"
1578 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1579 ${Q}cscope -b -q -k
1580
Ryan Harkin72ee3312014-01-15 16:55:07 +00001581help:
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001582 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001583 @echo ""
1584 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +00001585 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001586 @echo ""
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001587 @echo "platform = ${PLATFORM_LIST}"
1588 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001589 @echo "Please refer to the User Guide for a list of all supported options."
1590 @echo "Note that the build system doesn't track dependencies for build "
1591 @echo "options. Therefore, if any of the build options are changed "
1592 @echo "from a previous build, a clean build must be performed."
1593 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +00001594 @echo "Supported Targets:"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001595 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +00001596 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +00001597 @echo " bl2 Build the BL2 binary"
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001598 @echo " bl2u Build the BL2U binary"
Juan Castillo7d199412015-12-14 09:35:25 +00001599 @echo " bl31 Build the BL31 binary"
Soby Mathewa1941252016-05-05 14:33:33 +01001600 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1601 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castilloa3487d12015-08-18 14:23:04 +01001602 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001603 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochard1a93432015-10-12 12:33:47 +01001604 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +00001605 @echo " checkcodebase Check the coding style of the entire source tree"
1606 @echo " checkpatch Check the coding style on changes in the current"
1607 @echo " branch against BASE_COMMIT (default origin/master)"
1608 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +00001609 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +00001610 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001611 @echo " certtool Build the Certificate generation tool"
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301612 @echo " enctool Build the Firmware encryption tool"
Andreas Färberec82cfb2016-10-10 05:18:49 +02001613 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Manish Pandey3f90ad72020-01-14 11:52:05 +00001614 @echo " sp Build the Secure Partition Packages"
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001615 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathewab4181d2017-12-14 17:44:56 +00001616 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001617 @echo " memmap Print the memory map of the built binaries"
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001618 @echo " doc Build html based documentation using Sphinx tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001619 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001620 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +00001621 @echo ""
1622 @echo "example: build all targets for the FVP platform:"
1623 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001624
1625.PHONY: FORCE
1626FORCE:;