blob: 2c9cdd9c1176ad308ed2b586d1d23334f0a9c351 [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
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
Maksims Svecovs1e25c5b2023-02-02 16:10:22 +0000156# RME enables CSV2_2 extension by default.
157ENABLE_FEAT_CSV2_2 = 1
158
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500159endif
160
Soby Mathewad042012019-09-25 14:03:41 +0100161# USE_SPINLOCK_CAS requires AArch64 build
162ifeq (${USE_SPINLOCK_CAS},1)
163ifneq (${ARCH},aarch64)
164 $(error USE_SPINLOCK_CAS requires AArch64)
Soby Mathewad042012019-09-25 14:03:41 +0100165endif
166endif
167
Olivier Deprezcb4c5622019-09-19 17:46:46 +0200168# USE_DEBUGFS experimental feature recommended only in debug builds
169ifeq (${USE_DEBUGFS},1)
170ifeq (${DEBUG},1)
171 $(warning DEBUGFS experimental feature is enabled.)
172else
173 $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
174endif
175endif
176
Sumit Gargeec52442019-11-14 16:33:45 +0530177ifneq (${DECRYPTION_SUPPORT},none)
178ENC_ARGS += -f ${FW_ENC_STATUS}
179ENC_ARGS += -k ${ENC_KEY}
180ENC_ARGS += -n ${ENC_NONCE}
181FIP_DEPS += enctool
182FWU_FIP_DEPS += enctool
183endif
184
Juan Castilloa3487d12015-08-18 14:23:04 +0100185################################################################################
186# Toolchain
187################################################################################
188
dp-arme95aaa62017-05-02 11:09:11 +0100189HOSTCC := gcc
190export HOSTCC
191
Juan Castilloa3487d12015-08-18 14:23:04 +0100192CC := ${CROSS_COMPILE}gcc
193CPP := ${CROSS_COMPILE}cpp
194AS := ${CROSS_COMPILE}gcc
195AR := ${CROSS_COMPILE}ar
Roberto Vargas1fd0d1b2018-04-13 14:26:47 +0100196LINKER := ${CROSS_COMPILE}ld
Juan Castilloa3487d12015-08-18 14:23:04 +0100197OC := ${CROSS_COMPILE}objcopy
198OD := ${CROSS_COMPILE}objdump
199NM := ${CROSS_COMPILE}nm
200PP := ${CROSS_COMPILE}gcc -E
Soby Mathewab4181d2017-12-14 17:44:56 +0000201DTC := dtc
Juan Castilloa3487d12015-08-18 14:23:04 +0100202
Julius Wernerb1f64a72018-01-10 15:12:47 -0800203# Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH).
204ifneq ($(strip $(wildcard ${LD}.bfd) \
Roberto Vargas1fd0d1b2018-04-13 14:26:47 +0100205 $(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),)
206LINKER := ${LINKER}.bfd
Julius Wernerb1f64a72018-01-10 15:12:47 -0800207endif
208
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100209ifeq (${ARM_ARCH_MAJOR},7)
210target32-directive = -target arm-none-eabi
211# Will set march32-directive from platform configuration
212else
213target32-directive = -target armv8a-none-eabi
Alexei Fedorovb567e5d2019-03-11 16:51:47 +0000214
Alexei Fedorov132e6652020-12-07 16:38:53 +0000215# Set the compiler's target architecture profile based on
216# ARM_ARCH_MAJOR ARM_ARCH_MINOR options
Alexei Fedorovb567e5d2019-03-11 16:51:47 +0000217ifeq (${ARM_ARCH_MINOR},0)
Alexei Fedorov132e6652020-12-07 16:38:53 +0000218march32-directive = -march=armv${ARM_ARCH_MAJOR}-a
219march64-directive = -march=armv${ARM_ARCH_MAJOR}-a
Alexei Fedorovb567e5d2019-03-11 16:51:47 +0000220else
Alexei Fedorov132e6652020-12-07 16:38:53 +0000221march32-directive = -march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a
222march64-directive = -march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a
Alexei Fedorovb567e5d2019-03-11 16:51:47 +0000223endif
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100224endif
225
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000226# Memory tagging is supported in architecture Armv8.5-A AArch64 and onwards
227ifeq ($(ARCH), aarch64)
Sami Mujawar1bc7b0e2020-04-23 09:28:37 +0100228# Check if revision is greater than or equal to 8.5
229ifeq "8.5" "$(word 1, $(sort 8.5 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000230mem_tag_arch_support = yes
231endif
232endif
233
Alexei Fedorov132e6652020-12-07 16:38:53 +0000234# Get architecture feature modifiers
235arch-features = ${ARM_ARCH_FEATURE}
236
237# Enable required options for memory stack tagging.
238# Currently, these options are enabled only for clang and armclang compiler.
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000239ifeq (${SUPPORT_STACK_MEMTAG},yes)
240ifdef mem_tag_arch_support
Alexei Fedorov132e6652020-12-07 16:38:53 +0000241# Check for armclang and clang compilers
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000242ifneq ( ,$(filter $(notdir $(CC)),armclang clang))
Alexei Fedorov132e6652020-12-07 16:38:53 +0000243# Add "memtag" architecture feature modifier if not specified
244ifeq ( ,$(findstring memtag,$(arch-features)))
245arch-features := $(arch-features)+memtag
246endif # memtag
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000247ifeq ($(notdir $(CC)),armclang)
248TF_CFLAGS += -mmemtag-stack
249else ifeq ($(notdir $(CC)),clang)
250TF_CFLAGS += -fsanitize=memtag
Alexei Fedorov132e6652020-12-07 16:38:53 +0000251endif # armclang
252endif # armclang clang
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000253else
254$(error "Error: stack memory tagging is not supported for architecture \
255 ${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
Alexei Fedorov132e6652020-12-07 16:38:53 +0000256endif # mem_tag_arch_support
257endif # SUPPORT_STACK_MEMTAG
258
259# Set the compiler's architecture feature modifiers
260ifneq ($(arch-features), none)
261# Strip "none+" from arch-features
262arch-features := $(subst none+,,$(arch-features))
263ifeq ($(ARCH), aarch32)
264march32-directive := $(march32-directive)+$(arch-features)
265else
266march64-directive := $(march64-directive)+$(arch-features)
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000267endif
Alexei Fedorov132e6652020-12-07 16:38:53 +0000268# Print features
269$(info Arm Architecture Features specified: $(subst +, ,$(arch-features)))
270endif # arch-features
Manish V Badarkhe75c972a2020-03-22 05:06:38 +0000271
Tomas Pilarde164b02020-10-29 13:01:16 +0000272# Determine if FEAT_RNG is supported
273ENABLE_FEAT_RNG = $(if $(findstring rng,${arch-features}),1,0)
274
Chris Kay08fec332021-03-09 13:34:35 +0000275# Determine if FEAT_SB is supported
276ENABLE_FEAT_SB = $(if $(findstring sb,${arch-features}),1,0)
277
originfba80d82022-01-19 16:30:14 +0000278ifneq ($(findstring clang,$(notdir $(CC))),)
279 ifneq ($(findstring armclang,$(notdir $(CC))),)
280 TF_CFLAGS_aarch32 := -target arm-arm-none-eabi $(march32-directive)
281 TF_CFLAGS_aarch64 := -target aarch64-arm-none-eabi $(march64-directive)
282 LD := $(LINKER)
283 else
Arvind Ram Prakasha3394cf2022-10-19 15:44:51 -0500284 TF_CFLAGS_aarch32 = $(target32-directive) $(march32-directive)
originfba80d82022-01-19 16:30:14 +0000285 TF_CFLAGS_aarch64 := -target aarch64-elf $(march64-directive)
286 LD := $(shell $(CC) --print-prog-name ld.lld)
287
288 AR := $(shell $(CC) --print-prog-name llvm-ar)
289 OD := $(shell $(CC) --print-prog-name llvm-objdump)
290 OC := $(shell $(CC) --print-prog-name llvm-objcopy)
291 endif
292
293 CPP := $(CC) -E $(TF_CFLAGS_$(ARCH))
294 PP := $(CC) -E $(TF_CFLAGS_$(ARCH))
295 AS := $(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
zelalem-aweked5f45272019-11-12 16:20:17 -0600296else ifneq ($(findstring gcc,$(notdir $(CC))),)
297TF_CFLAGS_aarch32 = $(march32-directive)
298TF_CFLAGS_aarch64 = $(march64-directive)
299ifeq ($(ENABLE_LTO),1)
300 # Enable LTO only for aarch64
301 ifeq (${ARCH},aarch64)
302 LTO_CFLAGS = -flto
303 # Use gcc as a wrapper for the ld, recommended for LTO
304 LINKER := ${CROSS_COMPILE}gcc
305 endif
306endif
307LD = $(LINKER)
dp-arm320e8442017-05-02 12:00:08 +0100308else
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100309TF_CFLAGS_aarch32 = $(march32-directive)
Alexei Fedorovb567e5d2019-03-11 16:51:47 +0000310TF_CFLAGS_aarch64 = $(march64-directive)
Roberto Vargas1fd0d1b2018-04-13 14:26:47 +0100311LD = $(LINKER)
dp-arm320e8442017-05-02 12:00:08 +0100312endif
313
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100314# Process Debug flag
315$(eval $(call add_define,DEBUG))
316ifneq (${DEBUG}, 0)
317 BUILD_TYPE := debug
Daniel Boulbydf83a832022-05-03 16:46:16 +0100318 TF_CFLAGS += -g -gdwarf-4
319 ASFLAGS += -g -Wa,-gdwarf-4
Ahmad Fatoum2633cbb2020-02-25 11:25:08 +0100320
321 # Use LOG_LEVEL_INFO by default for debug builds
322 LOG_LEVEL := 40
323else
324 BUILD_TYPE := release
325 # Use LOG_LEVEL_NOTICE by default for release builds
326 LOG_LEVEL := 20
327endif
328
Peiyuan Song44f8f472020-04-25 16:53:43 +0800329# Default build string (git branch and commit)
330ifeq (${BUILD_STRING},)
331 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
332endif
laurenw-arme954f652022-07-12 10:12:05 -0500333VERSION_STRING := v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
Peiyuan Song44f8f472020-04-25 16:53:43 +0800334
Antonio Nino Diaz80914a82018-08-08 16:28:43 +0100335ifeq (${AARCH32_INSTRUCTION_SET},A32)
336TF_CFLAGS_aarch32 += -marm
337else ifeq (${AARCH32_INSTRUCTION_SET},T32)
338TF_CFLAGS_aarch32 += -mthumb
339else
340$(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
341endif
342
Sandrine Bailleux1aa72ec2018-07-03 09:14:45 +0200343TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-arm320e8442017-05-02 12:00:08 +0100344TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathewa1941252016-05-05 14:33:33 +0100345
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100346ifneq (${BP_OPTION},none)
347TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
348endif
349
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100350ASFLAGS_aarch32 = $(march32-directive)
Alexei Fedorovb567e5d2019-03-11 16:51:47 +0000351ASFLAGS_aarch64 = $(march64-directive)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000352
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100353# General warnings
354WARNINGS := -Wall -Wmissing-include-dirs -Wunused \
Yann Gautier94a40b62021-05-20 13:18:14 +0200355 -Wdisabled-optimization -Wvla -Wshadow \
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000356 -Wredundant-decls
357# stricter warnings
358WARNINGS += -Wextra -Wno-trigraphs
359# too verbose for generic build
360WARNINGS += -Wno-missing-field-initializers \
361 -Wno-type-limits -Wno-sign-compare \
362# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
363WARNINGS += -Wno-unused-parameter
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100364
365# Additional warnings
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000366# Level 1 - infrequent warnings we should have none of
367# full -Wextra
368WARNING1 += -Wsign-compare
369WARNING1 += -Wtype-limits
370WARNING1 += -Wmissing-field-initializers
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100371
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000372# Level 2 - problematic warnings that we want
373# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
374# TODO: disable just for them and move into default build
375WARNING2 += -Wold-style-definition
376WARNING2 += -Wmissing-prototypes
377WARNING2 += -Wmissing-format-attribute
378# TF-A aims to comply with this eventually. Effort too large at present
379WARNING2 += -Wundef
Boyan Karatotev9c6ba592022-11-21 14:49:05 +0000380# currently very involved and many platforms set this off
381WARNING2 += -Wunused-const-variable=2
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100382
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000383# Level 3 - very pedantic, frequently ignored
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100384WARNING3 := -Wbad-function-cast
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000385WARNING3 += -Waggregate-return
386WARNING3 += -Wnested-externs
387WARNING3 += -Wcast-align
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100388WARNING3 += -Wcast-qual
389WARNING3 += -Wconversion
390WARNING3 += -Wpacked
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100391WARNING3 += -Wpointer-arith
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100392WARNING3 += -Wswitch-default
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100393
Boyan Karatotevde4240f2022-11-21 14:16:43 +0000394# Setting W is quite verbose and most warnings will be pre-existing issues
395# outside of the contributor's control. Don't fail the build on them so warnings
396# can be seen and hopefully addressed
397ifdef W
398ifneq (${W},0)
399E ?= 0
400endif
401endif
402
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100403ifeq (${W},1)
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100404WARNINGS += $(WARNING1)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100405else ifeq (${W},2)
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100406WARNINGS += $(WARNING1) $(WARNING2)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100407else ifeq (${W},3)
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100408WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
Yann Gautier82b2f8c2018-12-10 18:00:26 +0100409endif
410
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100411# Compiler specific warnings
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100412ifeq ($(findstring clang,$(notdir $(CC))),)
Justin Chadwell7a914232019-07-03 14:15:56 +0100413# not using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100414WARNINGS += -Wunused-but-set-variable -Wmaybe-uninitialized \
415 -Wpacked-bitfield-compat -Wshift-overflow=2 \
416 -Wlogical-op
Justin Chadwell7a914232019-07-03 14:15:56 +0100417else
418# using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100419WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
420 -Wlogical-op-parentheses
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100421endif
422
Yann Gautier957c3532018-12-10 18:08:53 +0100423ifneq (${E},0)
424ERRORS := -Werror
425endif
426
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100427CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
428 $(ERRORS) $(WARNINGS)
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900429ASFLAGS += $(CPPFLAGS) $(ASFLAGS_$(ARCH)) \
Julius Werner53456fc2019-07-09 13:49:11 -0700430 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900431TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Holland23f5e542019-10-20 16:11:25 -0500432 -ffunction-sections -fdata-sections \
433 -ffreestanding -fno-builtin -fno-common \
434 -Os -std=gnu99
Juan Castilloa3487d12015-08-18 14:23:04 +0100435
Mark Brown64869972022-04-20 18:14:32 +0100436$(eval $(call add_define,SVE_VECTOR_LEN))
437
Justin Chadwell83e04882019-08-20 11:01:52 +0100438ifeq (${SANITIZE_UB},on)
439TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
440endif
441ifeq (${SANITIZE_UB},trap)
442TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
443 -fsanitize-undefined-trap-on-error
444endif
445
david cunado34ab6092017-11-30 21:58:01 +0000446GCC_V_OUTPUT := $(shell $(CC) -v 2>&1)
david cunado34ab6092017-11-30 21:58:01 +0000447
Marco Felsch24ad8402022-11-09 12:59:09 +0100448TF_LDFLAGS += -z noexecstack
449
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100450# LD = armlink
Varun Wadekar4d034c52019-01-11 14:47:48 -0800451ifneq ($(findstring armlink,$(notdir $(LD))),)
452TF_LDFLAGS += --diag_error=warning --lto_level=O1
453TF_LDFLAGS += --remove --info=unused,unusedsymbols
zelalem-aweked5f45272019-11-12 16:20:17 -0600454TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100455
456# LD = gcc (used when GCC LTO is enabled)
zelalem-aweked5f45272019-11-12 16:20:17 -0600457else ifneq ($(findstring gcc,$(notdir $(LD))),)
458# Pass ld options with Wl or Xlinker switches
459TF_LDFLAGS += -Wl,--fatal-warnings -O1
460TF_LDFLAGS += -Wl,--gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000461
462TF_LDFLAGS += -Wl,-z,common-page-size=4096 # Configure page size constants
463TF_LDFLAGS += -Wl,-z,max-page-size=4096
464
zelalem-aweked5f45272019-11-12 16:20:17 -0600465ifeq ($(ENABLE_LTO),1)
466 ifeq (${ARCH},aarch64)
467 TF_LDFLAGS += -flto -fuse-linker-plugin
468 endif
469endif
470# GCC automatically adds fix-cortex-a53-843419 flag when used to link
471# which breaks some builds, so disable if errata fix is not explicitly enabled
472ifneq (${ERRATA_A53_843419},1)
473 TF_LDFLAGS += -mno-fix-cortex-a53-843419
474endif
475TF_LDFLAGS += -nostdlib
476TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100477
478# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekar4d034c52019-01-11 14:47:48 -0800479else
Marco Felsch24ad8402022-11-09 12:59:09 +0100480# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
481# are not loaded by a elf loader.
482TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
Yabin Cuied7dc512023-01-19 20:06:04 +0000483TF_LDFLAGS += -O1
Douglas Raillardd0c82732017-06-22 14:44:48 +0100484TF_LDFLAGS += --gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000485
486TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
487TF_LDFLAGS += -z max-page-size=4096
488
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100489# ld.lld doesn't recognize the errata flags,
Yabin Cuied7dc512023-01-19 20:06:04 +0000490# therefore don't add those in that case.
491# ld.lld reports section type mismatch warnings,
492# therefore don't add --fatal-warnings to it.
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100493ifeq ($(findstring ld.lld,$(notdir $(LD))),)
Yabin Cuied7dc512023-01-19 20:06:04 +0000494TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
zelalem-aweked5f45272019-11-12 16:20:17 -0600495endif
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100496endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100497
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000498DTC_FLAGS += -I dts -O dtb
Louis Mayencourt6b232d92020-02-28 16:57:30 +0000499DTC_CPPFLAGS += -P -nostdinc -Iinclude -Ifdts -undef \
500 -x assembler-with-cpp $(DEFINES)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000501
Juan Castilloa3487d12015-08-18 14:23:04 +0100502################################################################################
503# Common sources and include directories
504################################################################################
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000505include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
dp-arme3cc8382017-05-04 12:15:35 +0100506include lib/compiler-rt/compiler-rt.mk
Juan Castilloa3487d12015-08-18 14:23:04 +0100507
508BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100509 common/tf_log.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100510 common/${ARCH}/debug.S \
Julius Werner03020da2018-11-27 22:10:56 -0800511 drivers/console/multi_console.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100512 lib/${ARCH}/cache_helpers.S \
513 lib/${ARCH}/misc_helpers.S \
Soby Mathew2f38ce32018-02-08 17:45:12 +0000514 plat/common/plat_bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100515 plat/common/plat_log_common.c \
dp-arm230011c2017-03-07 11:02:47 +0000516 plat/common/${ARCH}/plat_common.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100517 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas0f8f9852018-05-08 10:27:10 +0100518 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000519
Boyan Karatotev02576932023-01-13 16:47:07 +0000520# Pointer Authentication sources
521ifeq (${ENABLE_PAUTH}, 1)
522# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
523# Pauth support. As it's not secure, it must be reimplemented for real platforms
524BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
525endif
526
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100527ifeq ($(notdir $(CC)),armclang)
528BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
529endif
530
Justin Chadwell83e04882019-08-20 11:01:52 +0100531ifeq (${SANITIZE_UB},on)
532BL_COMMON_SOURCES += plat/common/ubsan.c
533endif
534
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200535INCLUDES += -Iinclude \
Antonio Nino Diaz8d1ade62018-12-17 17:20:57 +0000536 -Iinclude/arch/${ARCH} \
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000537 -Iinclude/lib/cpus/${ARCH} \
538 -Iinclude/lib/el3_runtime/${ARCH} \
539 ${PLAT_INCLUDES} \
540 ${SPD_INCLUDES}
541
Antonio Nino Diazc3a2cf22018-11-19 11:48:30 +0000542include common/backtrace/backtrace.mk
543
Juan Castilloa3487d12015-08-18 14:23:04 +0100544################################################################################
545# Generic definitions
546################################################################################
547
Evan Lloydf2697142015-12-02 18:17:37 +0000548include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
549
Grant Likely388248a2020-07-30 08:50:10 +0100550ifeq (${BUILD_BASE},)
551 BUILD_BASE := ./build
552endif
553BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
Achin Gupta4f6ad662013-10-25 09:08:21 +0100554
Evan Lloydf2697142015-12-02 18:17:37 +0000555SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
Ryan Harkin72ee3312014-01-15 16:55:07 +0000556
Juan Castilloa3487d12015-08-18 14:23:04 +0100557# Platforms providing their own TBB makefile may override this value
558INCLUDE_TBBR_MK := 1
559
Jeenu Viswambharane5c39fd2014-05-16 11:38:10 +0100560
Juan Castilloa3487d12015-08-18 14:23:04 +0100561################################################################################
562# Include SPD Makefile if one has been specified
563################################################################################
564
565ifneq (${SPD},none)
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000566 ifeq (${ARCH},aarch32)
Sandrine Bailleux247e3392018-10-03 14:56:38 +0200567 $(error "Error: SPD is incompatible with AArch32.")
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000568 endif
569
570 ifdef EL3_PAYLOAD_BASE
Sandrine Bailleux03897bb2015-11-26 16:31:34 +0000571 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
572 $(warning "The SPD and its BL32 companion will be present but ignored.")
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000573 endif
Achin Gupta60b7b8a2019-10-11 15:50:43 +0100574
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000575 ifeq (${SPD},spmd)
576 # SPMD is located in std_svc directory
577 SPD_DIR := std_svc
Juan Castilloa3487d12015-08-18 14:23:04 +0100578
Max Shvetsove7fd80e2020-02-25 13:55:00 +0000579 ifeq ($(SPMD_SPM_AT_SEL2),1)
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000580 CTX_INCLUDE_EL2_REGS := 1
Marc Bonniciabaac162021-12-01 18:00:40 +0000581 ifeq ($(SPMC_AT_EL3),1)
582 $(error SPM cannot be enabled in both S-EL2 and EL3.)
583 endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100584 endif
Olivier Deprezbcaa0682020-04-01 21:28:26 +0200585
586 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
587 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
588 endif
Davidson K9a949142021-03-10 12:07:15 +0530589
590 ifeq ($(TS_SP_FW_CONFIG),1)
591 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
592 endif
Balint Dobszay9f689762021-03-26 15:19:11 +0100593
594 ifneq ($(ARM_BL2_SP_LIST_DTS),)
595 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
596 endif
Balint Dobszay719ba9c2021-03-26 16:23:18 +0100597
598 ifneq ($(SP_LAYOUT_FILE),)
599 BL2_ENABLE_SP_LOAD := 1
600 endif
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000601 else
602 # All other SPDs in spd directory
603 SPD_DIR := spd
604 endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100605
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000606 # We expect to locate an spd.mk under the specified SPD directory
607 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
608
609 ifeq (${SPD_MAKE},)
610 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
611 endif
612 $(info Including ${SPD_MAKE})
613 include ${SPD_MAKE}
614
615 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
616 # Makefile would set NEED_BL32 to "yes". In this case, the build system
617 # supports two mutually exclusive options:
618 # * BL32 is built from source: then BL32_SOURCES must contain the list
619 # of source files to build BL32
620 # * BL32 is a prebuilt binary: then BL32 must point to the image file
621 # that will be included in the FIP
622 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
623 # over the sources.
Juan Castilloa3487d12015-08-18 14:23:04 +0100624endif
625
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000626ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
627ifeq (${SPD},none)
628ifeq (${ENABLE_RME},0)
629 $(error CTX_INCLUDE_EL2_REGS is available only when SPD or RME is enabled)
630endif
631endif
632endif
633
Douglas Raillard306593d2017-02-24 18:14:15 +0000634################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500635# Include rmmd Makefile if RME is enabled
636################################################################################
637
638ifneq (${ENABLE_RME},0)
639ifneq (${ARCH},aarch64)
640 $(error ENABLE_RME requires AArch64)
641endif
Marc Bonniciabaac162021-12-01 18:00:40 +0000642ifeq ($(SPMC_AT_EL3),1)
643 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
644endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500645include services/std_svc/rmmd/rmmd.mk
646$(warning "RME is an experimental feature")
647endif
648
649################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100650# Include the platform specific Makefile after the SPD Makefile (the platform
651# makefile may use all previous definitions in this file)
652################################################################################
Jeenu Viswambharane5c39fd2014-05-16 11:38:10 +0100653
Dan Handley81be1002015-03-27 17:44:35 +0000654include ${PLAT_MAKEFILE_FULL}
Jon Medhurst66573cb2014-02-13 15:19:28 +0000655
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600656# This internal flag is common option which is set to 1 for scenarios
657# when the BL2 is running in EL3 level. This occurs in two scenarios -
658# 4 world system running BL2 at EL3 and two world system without BL1 running
659# BL2 in EL3
660
661ifeq (${RESET_TO_BL2},1)
662 BL2_RUNS_AT_EL3 := 1
663 ifeq (${ENABLE_RME},1)
664 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not supported at the moment.)
665 endif
666else ifeq (${ENABLE_RME},1)
667 BL2_RUNS_AT_EL3 := 1
668else
669 BL2_RUNS_AT_EL3 := 0
670endif
671
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900672$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
673
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100674ifeq (${ARM_ARCH_MAJOR},7)
675include make_helpers/armv7-a-cpus.mk
676endif
677
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900678PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
679ifneq ($(PIE_FOUND),)
680 TF_CFLAGS += -fno-PIE
Samuel Holland9286c022022-04-08 21:56:02 -0500681ifneq ($(findstring gcc,$(notdir $(LD))),)
682 TF_LDFLAGS += -no-pie
683endif
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900684endif
685
686ifneq ($(findstring gcc,$(notdir $(LD))),)
687 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100688else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900689 PIE_LDFLAGS += -pie --no-dynamic-linker
690endif
691
692ifeq ($(ENABLE_PIE),1)
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600693ifeq ($(RESET_TO_BL2),1)
Masahiro Yamada65d699d2020-01-17 13:45:02 +0900694ifneq ($(BL2_IN_XIP_MEM),1)
Chris Kay13886c82023-02-02 14:39:03 +0000695 BL2_CPPFLAGS += -fpie
Masahiro Yamada65d699d2020-01-17 13:45:02 +0900696 BL2_CFLAGS += -fpie
697 BL2_LDFLAGS += $(PIE_LDFLAGS)
698endif
699endif
Chris Kay13886c82023-02-02 14:39:03 +0000700 BL31_CPPFLAGS += -fpie
701 BL31_CFLAGS += -fpie
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900702 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay13886c82023-02-02 14:39:03 +0000703
704 BL32_CPPFLAGS += -fpie
Masahiro Yamadade634f82020-01-17 13:45:14 +0900705 BL32_CFLAGS += -fpie
706 BL32_LDFLAGS += $(PIE_LDFLAGS)
707endif
Soby Mathew078f1a42018-08-28 11:13:55 +0100708
Masahiro Yamada003dd762020-03-26 13:18:48 +0900709ifeq (${ARCH},aarch64)
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900710BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600711ifeq ($(RESET_TO_BL2),1)
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900712BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900713else
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900714BL2_CPPFLAGS += -DIMAGE_AT_EL1
Masahiro Yamada003dd762020-03-26 13:18:48 +0900715endif
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900716BL2U_CPPFLAGS += -DIMAGE_AT_EL1
717BL31_CPPFLAGS += -DIMAGE_AT_EL3
718BL32_CPPFLAGS += -DIMAGE_AT_EL1
Masahiro Yamada003dd762020-03-26 13:18:48 +0900719endif
720
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000721# Include the CPU specific operations makefile, which provides default
722# values for all CPU errata workarounds and CPU specific optimisations.
723# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100724include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100725
dp-armcdd03cb2017-02-15 11:07:55 +0000726ifeq (${ARCH},aarch32)
727NEED_BL32 := yes
728
729################################################################################
730# Build `AARCH32_SP` as BL32 image for AArch32
731################################################################################
732ifneq (${AARCH32_SP},none)
733# We expect to locate an sp.mk under the specified AARCH32_SP directory
734AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
735
736ifeq (${AARCH32_SP_MAKE},)
737 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
738endif
739
740$(info Including ${AARCH32_SP_MAKE})
741include ${AARCH32_SP_MAKE}
742endif
743
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800744endif
745
746################################################################################
747# Include libc if not overridden
748################################################################################
749ifeq (${OVERRIDE_LIBC},0)
750include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000751endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100752
753################################################################################
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000754# Check incompatible options
755################################################################################
756
757ifdef EL3_PAYLOAD_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100758 ifdef PRELOADED_BL33_BASE
759 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
760 incompatible build options. EL3_PAYLOAD_BASE has priority.")
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000761 endif
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800762 ifneq (${GENERATE_COT},0)
763 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible build options.")
764 endif
765 ifneq (${TRUSTED_BOARD_BOOT},0)
766 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are incompatible build options.")
767 endif
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000768endif
769
770ifeq (${NEED_BL33},yes)
771 ifdef EL3_PAYLOAD_BASE
772 $(warning "BL33 image is not needed when option \
773 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
774 endif
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100775 ifdef PRELOADED_BL33_BASE
776 $(warning "BL33 image is not needed when option \
777 PRELOADED_BL33_BASE is used and won't be added to the FIP \
778 file.")
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000779 endif
780endif
781
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000782# When building for systems with hardware-assisted coherency, there's no need to
783# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
784ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
785$(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
786endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100787
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600788#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
789ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
790$(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000791endif
792
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100793# For RAS_EXTENSION, require that EAs are handled in EL3 first
794ifeq ($(RAS_EXTENSION),1)
Manish Pandey0e3379d2022-10-10 11:43:08 +0100795 ifneq ($(HANDLE_EA_EL3_FIRST_NS),1)
796 $(error For RAS_EXTENSION, HANDLE_EA_EL3_FIRST_NS must also be 1)
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100797 endif
798endif
799
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000800# When FAULT_INJECTION_SUPPORT is used, require that RAS_EXTENSION is enabled
801ifeq ($(FAULT_INJECTION_SUPPORT),1)
802 ifneq ($(RAS_EXTENSION),1)
803 $(error For FAULT_INJECTION_SUPPORT, RAS_EXTENSION must also be 1)
804 endif
805endif
806
Roberto Vargas025946a2018-09-24 17:20:48 +0100807# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100808ifeq ($(DYN_DISABLE_AUTH), 1)
809 ifeq (${TRUSTED_BOARD_BOOT}, 0)
810 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH to be set.")
811 endif
Soby Mathew9fe88042018-03-26 12:43:37 +0100812endif
813
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100814ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
815# Support authentication verification and hash calculation
816 CRYPTO_SUPPORT := 3
817else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
818# Support authentication verification and hash calculation
819 CRYPTO_SUPPORT := 3
820else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
821# Support hash calculation only
822 CRYPTO_SUPPORT := 2
823else ifeq (${TRUSTED_BOARD_BOOT},1)
824# Support authentication verification only
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000825 CRYPTO_SUPPORT := 1
826else
827 CRYPTO_SUPPORT := 0
828endif
829
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +0100830# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
831ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Manish Pandey34a305e2021-10-21 21:53:49 +0100832$(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +0100833endif
834
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000835# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100836# registers associated to it are also saved and restored.
837# 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 +0000838ifeq ($(ENABLE_PAUTH),1)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100839 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
840 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
Alexei Fedorov2831d582019-03-13 11:05:07 +0000841 endif
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100842endif
843
844ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
845 ifneq (${ARCH},aarch64)
846 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000847 endif
848endif
849
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100850ifeq ($(CTX_INCLUDE_MTE_REGS),1)
851 ifneq (${ARCH},aarch64)
852 $(error CTX_INCLUDE_MTE_REGS requires AArch64)
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100853 endif
854endif
855
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100856ifeq ($(PSA_FWU_SUPPORT),1)
857 $(info PSA_FWU_SUPPORT is an experimental feature)
858endif
859
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000860ifeq ($(FEATURE_DETECTION),1)
861 $(info FEATURE_DETECTION is an experimental feature)
862endif
863
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000864ifneq ($(ENABLE_SME2_FOR_NS), 0)
865 ifeq (${ENABLE_SME_FOR_NS}, 0)
866 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also to be set")
867 $(warning "Forced ENABLE_SME_FOR_NS=1")
868 override ENABLE_SME_FOR_NS := 1
869 endif
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000870endif
871
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000872ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
873 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
874 $(error "ALLOW_RO_XLAT_TABLES requires translation tables library v2")
875 endif
876endif
877
Sumit Garg392e4df2019-11-15 10:43:00 +0530878ifneq (${DECRYPTION_SUPPORT},none)
879 ifeq (${TRUSTED_BOARD_BOOT}, 0)
880 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT to be set)
Sumit Garg392e4df2019-11-15 10:43:00 +0530881 endif
882endif
883
johpow0181865962022-01-28 17:06:20 -0600884# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -0500885ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -0600886
887 # SME/SVE only supported on AArch64
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000888 ifneq (${ENABLE_SME_FOR_NS},0)
johpow019baade32021-07-08 14:14:00 -0500889 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
890 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000891
johpow019baade32021-07-08 14:14:00 -0500892 ifeq (${ENABLE_SVE_FOR_NS},1)
893 # Warning instead of error due to CI dependency on this
Yann Gautier7d917672021-11-19 11:35:46 +0100894 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
johpow019baade32021-07-08 14:14:00 -0500895 endif
johpow0181865962022-01-28 17:06:20 -0600896
Juan Pablo Conde42305f22022-07-12 16:40:29 -0400897 # BRBE is not supported in AArch32
johpow0181865962022-01-28 17:06:20 -0600898 ifeq (${ENABLE_BRBE_FOR_NS},1)
899 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
900 endif
901
Juan Pablo Conde42305f22022-07-12 16:40:29 -0400902 # FEAT_RNG_TRAP is not supported in AArch32
903 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
904 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
905 endif
johpow019baade32021-07-08 14:14:00 -0500906endif
907
908# Ensure ENABLE_RME is not used with SME
909ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000910 ifneq (${ENABLE_SME_FOR_NS},0)
johpow019baade32021-07-08 14:14:00 -0500911 $(error "ENABLE_SME_FOR_NS cannot be used with ENABLE_RME")
912 endif
913endif
914
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000915ifneq (${ENABLE_SME_FOR_NS},0)
916 ifeq (${ENABLE_SVE_FOR_NS},0)
917 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
918 endif
919endif
920
johpow019baade32021-07-08 14:14:00 -0500921# Secure SME/SVE requires the non-secure component as well
922ifeq (${ENABLE_SME_FOR_SWD},1)
923 ifeq (${ENABLE_SME_FOR_NS},0)
924 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
925 endif
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000926 ifeq (${ENABLE_SVE_FOR_SWD},0)
927 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
928 endif
johpow019baade32021-07-08 14:14:00 -0500929endif
930ifeq (${ENABLE_SVE_FOR_SWD},1)
931 ifeq (${ENABLE_SVE_FOR_NS},0)
932 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
933 endif
934endif
935
936# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
937# its own context management including FPU registers.
938ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000939 ifneq (${ENABLE_SME_FOR_NS},0)
johpow019baade32021-07-08 14:14:00 -0500940 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
941 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000942
johpow019baade32021-07-08 14:14:00 -0500943 ifeq (${ENABLE_SVE_FOR_NS},1)
944 # Warning instead of error due to CI dependency on this
945 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
946 $(warning "Forced ENABLE_SVE_FOR_NS=0")
947 override ENABLE_SVE_FOR_NS := 0
948 endif
949endif
950
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +0000951ifeq ($(DRTM_SUPPORT),1)
952 $(info DRTM_SUPPORT is an experimental feature)
953endif
954
Chris Kayd02c2312022-09-29 16:21:24 +0100955ifeq (${ENABLE_RME},1)
956 ifneq (${SEPARATE_CODE_AND_RODATA},1)
957 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
958 endif
959endif
960
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000961################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100962# Process platform overrideable behaviour
963################################################################################
964
Manish Pandeyb0e7efa2021-10-06 10:59:52 +0100965ifdef BL1_SOURCES
966NEED_BL1 := yes
967endif
968
Jon Medhurst66573cb2014-02-13 15:19:28 +0000969ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +0100970 NEED_BL2 := yes
971
972 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
973 # Certificate generation tools. This flag can be overridden by the platform.
974 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000975 # If booting an EL3 payload there is no need for a BL33 image
976 # in the FIP file.
977 NEED_BL33 := no
978 else
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100979 ifdef PRELOADED_BL33_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000980 # If booting a BL33 preloaded image there is no need of
981 # another one in the FIP file.
982 NEED_BL33 := no
983 else
984 NEED_BL33 ?= yes
985 endif
986 endif
Jon Medhurst66573cb2014-02-13 15:19:28 +0000987endif
Achin Gupta4f6ad662013-10-25 09:08:21 +0100988
Manish Pandeyb0e7efa2021-10-06 10:59:52 +0100989ifdef BL2U_SOURCES
990NEED_BL2U := yes
991endif
992
Masahiro Yamadae76b4f82017-04-05 19:11:41 +0900993# If SCP_BL2 is given, we always want FIP to include it.
994ifdef SCP_BL2
995 NEED_SCP_BL2 := yes
996endif
997
Soby Mathewbf169232017-11-14 14:10:10 +0000998# For AArch32, BL31 is not currently supported.
999ifneq (${ARCH},aarch32)
1000 ifdef BL31_SOURCES
1001 # When booting an EL3 payload, there is no need to compile the BL31 image nor
1002 # put it in the FIP.
1003 ifndef EL3_PAYLOAD_BASE
1004 NEED_BL31 := yes
1005 endif
1006 endif
1007endif
1008
Juan Castilloa3487d12015-08-18 14:23:04 +01001009# Process TBB related flags
1010ifneq (${GENERATE_COT},0)
1011 # Common cert_create options
1012 ifneq (${CREATE_KEYS},0)
1013 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001014 $(eval FWU_CRT_ARGS += -n)
Juan Castilloa3487d12015-08-18 14:23:04 +01001015 ifneq (${SAVE_KEYS},0)
1016 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001017 $(eval FWU_CRT_ARGS += -k)
Juan Castilloa3487d12015-08-18 14:23:04 +01001018 endif
1019 endif
1020 # Include TBBR makefile (unless the platform indicates otherwise)
1021 ifeq (${INCLUDE_TBBR_MK},1)
1022 include make_helpers/tbbr/tbbr_tools.mk
1023 endif
Ryan Harkin25cff832014-01-13 12:37:03 +00001024endif
Achin Gupta4f6ad662013-10-25 09:08:21 +01001025
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001026ifneq (${FIP_ALIGN},0)
1027FIP_ARGS += --align ${FIP_ALIGN}
1028endif
1029
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001030ifdef FDT_SOURCES
1031NEED_FDT := yes
1032endif
1033
Juan Castilloa3487d12015-08-18 14:23:04 +01001034################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +08001035# Include libraries' Makefile that are used in all BL
1036################################################################################
1037
1038include lib/stack_protector/stack_protector.mk
1039
1040################################################################################
dp-arm4972ec52016-05-25 16:20:20 +01001041# Auxiliary tools (fiptool, cert_create, etc)
Juan Castilloa3487d12015-08-18 14:23:04 +01001042################################################################################
Achin Gupta375f5382014-02-18 18:12:48 +00001043
Juan Castilloa3487d12015-08-18 14:23:04 +01001044# Variables for use with Certificate Generation Tool
1045CRTTOOLPATH ?= tools/cert_create
Evan Lloyd004c9a52015-12-03 11:35:40 +00001046CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT}
Achin Gupta375f5382014-02-18 18:12:48 +00001047
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301048# Variables for use with Firmware Encryption Tool
1049ENCTOOLPATH ?= tools/encrypt_fw
1050ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
1051
Juan Castilloa3487d12015-08-18 14:23:04 +01001052# Variables for use with Firmware Image Package
dp-arm4972ec52016-05-25 16:20:20 +01001053FIPTOOLPATH ?= tools/fiptool
1054FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT}
James Morrisseyeaaeece2013-11-01 13:56:59 +00001055
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001056# Variables for use with sptool
1057SPTOOLPATH ?= tools/sptool
J-Alvesef8e0982022-03-22 16:28:51 +00001058SPTOOL ?= ${SPTOOLPATH}/sptool.py
Manish Pandey3f90ad72020-01-14 11:52:05 +00001059SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001060
Roberto Vargase92111a2018-05-22 16:05:42 +01001061# Variables for use with ROMLIB
1062ROMLIBPATH ?= lib/romlib
1063
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001064# Variable for use with Python
1065PYTHON ?= python3
1066
1067# Variables for use with PRINT_MEMORY_MAP
1068PRINT_MEMORY_MAP_PATH ?= tools/memory
1069PRINT_MEMORY_MAP ?= ${PRINT_MEMORY_MAP_PATH}/print_memory_map.py
1070
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001071# Variables for use with documentation build using Sphinx tool
1072DOCS_PATH ?= docs
1073
Abdul Halim, Muhammad Hadi Asyrafif3a5d022020-06-29 12:15:27 +08001074# Defination of SIMICS flag
1075SIMICS_BUILD ?= 0
1076
Soby Mathew574e01e2017-02-14 10:05:07 +00001077################################################################################
1078# Include BL specific makefiles
1079################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001080
1081ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001082include bl1/bl1.mk
1083endif
1084
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001085ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001086include bl2/bl2.mk
1087endif
1088
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001089ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001090include bl2u/bl2u.mk
1091endif
1092
Soby Mathewbf169232017-11-14 14:10:10 +00001093ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001094include bl31/bl31.mk
1095endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001096
Soby Mathew574e01e2017-02-14 10:05:07 +00001097################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001098# Build options checks
1099################################################################################
1100
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001101$(eval $(call assert_booleans,\
1102 $(sort \
1103 ALLOW_RO_XLAT_TABLES \
Balint Dobszay719ba9c2021-03-26 16:23:18 +01001104 BL2_ENABLE_SP_LOAD \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001105 COLD_BOOT_SINGLE_CPU \
1106 CREATE_KEYS \
1107 CTX_INCLUDE_AARCH32_REGS \
1108 CTX_INCLUDE_FPREGS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001109 CTX_INCLUDE_EL2_REGS \
1110 DEBUG \
Javier Almansa Sobrinof3a4c542020-11-23 18:38:15 +00001111 DISABLE_MTPMU \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001112 DYN_DISABLE_AUTH \
1113 EL3_EXCEPTION_HANDLING \
Chris Kay925fda42021-05-25 10:42:56 +01001114 ENABLE_AMU_AUXILIARY_COUNTERS \
Chris Kayf11909f2021-08-19 11:21:52 +01001115 ENABLE_AMU_FCONF \
johpow01fa59c6f2020-10-02 13:41:11 -05001116 AMU_RESTRICT_COUNTERS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001117 ENABLE_ASSERTIONS \
Andre Przywara46880dc2022-11-17 16:42:09 +00001118 ENABLE_FEAT_SB \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001119 ENABLE_PIE \
1120 ENABLE_PMF \
1121 ENABLE_PSCI_STAT \
1122 ENABLE_RUNTIME_INSTRUMENTATION \
johpow019baade32021-07-08 14:14:00 -05001123 ENABLE_SME_FOR_SWD \
Max Shvetsovc4502772021-03-22 11:59:37 +00001124 ENABLE_SVE_FOR_SWD \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001125 ERROR_DEPRECATED \
1126 FAULT_INJECTION_SUPPORT \
1127 GENERATE_COT \
1128 GICV2_G0_FOR_EL3 \
Manish Pandey0e3379d2022-10-10 11:43:08 +01001129 HANDLE_EA_EL3_FIRST_NS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001130 HW_ASSISTED_COHERENCY \
1131 INVERTED_MEMMAP \
1132 MEASURED_BOOT \
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001133 DRTM_SUPPORT \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001134 NS_TIMER_SWITCH \
1135 OVERRIDE_LIBC \
1136 PL011_GENERIC_UART \
Tamas Banc9ccc272022-01-18 16:20:47 +01001137 PLAT_RSS_NOT_SUPPORTED \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001138 PROGRAMMABLE_RESET_ADDRESS \
1139 PSCI_EXTENDED_STATE_ID \
Wing Li1e9b68a2023-01-26 18:33:36 -08001140 PSCI_OS_INIT_MODE \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001141 RESET_TO_BL31 \
1142 SAVE_KEYS \
1143 SEPARATE_CODE_AND_RODATA \
Jiafei Pan0824b452022-02-24 10:47:33 +08001144 SEPARATE_BL2_NOLOAD_REGION \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001145 SEPARATE_NOBITS_REGION \
1146 SPIN_ON_BL1_EXIT \
1147 SPM_MM \
Marc Bonniciabaac162021-12-01 18:00:40 +00001148 SPMC_AT_EL3 \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001149 SPMD_SPM_AT_SEL2 \
1150 TRUSTED_BOARD_BOOT \
1151 USE_COHERENT_MEM \
1152 USE_DEBUGFS \
1153 ARM_IO_IN_DTB \
1154 SDEI_IN_FCONF \
1155 SEC_INT_DESC_IN_FCONF \
1156 USE_ROMLIB \
1157 USE_TBBR_DEFS \
1158 WARMBOOT_ENABLE_DCACHE_EARLY \
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001159 RESET_TO_BL2 \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001160 BL2_IN_XIP_MEM \
1161 BL2_INV_DCACHE \
1162 USE_SPINLOCK_CAS \
1163 ENCRYPT_BL31 \
1164 ENCRYPT_BL32 \
1165 ERRATA_SPECULATIVE_AT \
Manish Pandey7c6fcb42022-09-27 14:30:34 +01001166 RAS_TRAP_NS_ERR_REC_ACCESS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001167 COT_DESC_IN_DTB \
1168 USE_SP804_TIMER \
Manish V Badarkhe99575e42021-06-25 23:28:59 +01001169 PSA_FWU_SUPPORT \
Chris Kay03be39d2021-05-05 13:38:30 +01001170 ENABLE_MPMM \
1171 ENABLE_MPMM_FCONF \
Abdul Halim, Muhammad Hadi Asyrafif3a5d022020-06-29 12:15:27 +08001172 SIMICS_BUILD \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001173 FEATURE_DETECTION \
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +01001174 TRNG_SUPPORT \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001175 CONDITIONAL_CMO \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001176)))
Dan Handley81be1002015-03-27 17:44:35 +00001177
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001178$(eval $(call assert_numerics,\
1179 $(sort \
1180 ARM_ARCH_MAJOR \
1181 ARM_ARCH_MINOR \
1182 BRANCH_PROTECTION \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001183 CTX_INCLUDE_PAUTH_REGS \
1184 CTX_INCLUDE_MTE_REGS \
1185 CTX_INCLUDE_NEVE_REGS \
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +01001186 CRYPTO_SUPPORT \
Jayanth Dodderi Chidanand69316752022-05-09 12:33:03 +01001187 ENABLE_BRBE_FOR_NS \
Jayanth Dodderi Chidananda793ccc2022-05-19 14:08:28 +01001188 ENABLE_TRBE_FOR_NS \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001189 ENABLE_BTI \
1190 ENABLE_PAUTH \
Andre Przywara0b7f1b02023-03-21 13:53:19 +00001191 ENABLE_FEAT_AMU \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001192 ENABLE_FEAT_AMUv1p1 \
1193 ENABLE_FEAT_CSV2_2 \
1194 ENABLE_FEAT_DIT \
1195 ENABLE_FEAT_ECV \
1196 ENABLE_FEAT_FGT \
1197 ENABLE_FEAT_HCX \
1198 ENABLE_FEAT_PAN \
1199 ENABLE_FEAT_RNG \
Juan Pablo Conde42305f22022-07-12 16:40:29 -04001200 ENABLE_FEAT_RNG_TRAP \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001201 ENABLE_FEAT_SEL2 \
Mark Brownc37eee72023-03-14 20:13:03 +00001202 ENABLE_FEAT_TCR2 \
Mark Brown293a6612023-03-14 20:48:43 +00001203 ENABLE_FEAT_S2PIE \
1204 ENABLE_FEAT_S1PIE \
1205 ENABLE_FEAT_S2POE \
1206 ENABLE_FEAT_S1POE \
Mark Brown326f2952023-03-14 21:33:04 +00001207 ENABLE_FEAT_GCS \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001208 ENABLE_FEAT_VHE \
1209 ENABLE_MPAM_FOR_LOWER_ELS \
1210 ENABLE_RME \
Andre Przywaraf3e8cfc2022-11-17 16:42:09 +00001211 ENABLE_SPE_FOR_NS \
Andre Przywara44e33e02022-11-17 16:42:09 +00001212 ENABLE_SYS_REG_TRACE_FOR_NS \
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +00001213 ENABLE_SME_FOR_NS \
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001214 ENABLE_SME2_FOR_NS \
Jayanth Dodderi Chidanandd62c6812023-03-07 10:43:19 +00001215 ENABLE_SVE_FOR_NS \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001216 ENABLE_TRF_FOR_NS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001217 FW_ENC_STATUS \
Manish V Badarkhe2bb45ff2021-03-16 10:01:27 +00001218 NR_OF_FW_BANKS \
1219 NR_OF_IMAGES_IN_FW_BANK \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001220 RAS_EXTENSION \
Jayanth Dodderi Chidanand4b5489c2022-03-28 15:28:55 +01001221 TWED_DELAY \
1222 ENABLE_FEAT_TWED \
Mark Brown64869972022-04-20 18:14:32 +01001223 SVE_VECTOR_LEN \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001224 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001225)))
Jeenu Viswambharanfca76802017-01-16 16:52:35 +00001226
Justin Chadwellf9b32c12019-07-29 17:13:10 +01001227ifdef KEY_SIZE
1228 $(eval $(call assert_numeric,KEY_SIZE))
1229endif
1230
Justin Chadwell83e04882019-08-20 11:01:52 +01001231ifeq ($(filter $(SANITIZE_UB), on off trap),)
1232 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1233endif
1234
Juan Castilloa3487d12015-08-18 14:23:04 +01001235################################################################################
1236# Add definitions to the cpp preprocessor based on the current build options.
1237# This is done after including the platform specific makefile to allow the
1238# platform to overwrite the default options
1239################################################################################
Jeenu Viswambharand1b60152014-05-12 15:28:47 +01001240
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001241$(eval $(call add_defines,\
1242 $(sort \
1243 ALLOW_RO_XLAT_TABLES \
1244 ARM_ARCH_MAJOR \
1245 ARM_ARCH_MINOR \
Balint Dobszay719ba9c2021-03-26 16:23:18 +01001246 BL2_ENABLE_SP_LOAD \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001247 COLD_BOOT_SINGLE_CPU \
1248 CTX_INCLUDE_AARCH32_REGS \
1249 CTX_INCLUDE_FPREGS \
1250 CTX_INCLUDE_PAUTH_REGS \
1251 EL3_EXCEPTION_HANDLING \
1252 CTX_INCLUDE_MTE_REGS \
1253 CTX_INCLUDE_EL2_REGS \
Arunachalam Ganapathydd3ec7e2020-05-28 11:57:09 +01001254 CTX_INCLUDE_NEVE_REGS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001255 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
Javier Almansa Sobrinof3a4c542020-11-23 18:38:15 +00001256 DISABLE_MTPMU \
Andre Przywara0b7f1b02023-03-21 13:53:19 +00001257 ENABLE_FEAT_AMU \
Chris Kay925fda42021-05-25 10:42:56 +01001258 ENABLE_AMU_AUXILIARY_COUNTERS \
Chris Kayf11909f2021-08-19 11:21:52 +01001259 ENABLE_AMU_FCONF \
johpow01fa59c6f2020-10-02 13:41:11 -05001260 AMU_RESTRICT_COUNTERS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001261 ENABLE_ASSERTIONS \
1262 ENABLE_BTI \
1263 ENABLE_MPAM_FOR_LOWER_ELS \
1264 ENABLE_PAUTH \
1265 ENABLE_PIE \
1266 ENABLE_PMF \
1267 ENABLE_PSCI_STAT \
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001268 ENABLE_RME \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001269 ENABLE_RUNTIME_INSTRUMENTATION \
johpow019baade32021-07-08 14:14:00 -05001270 ENABLE_SME_FOR_NS \
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001271 ENABLE_SME2_FOR_NS \
johpow019baade32021-07-08 14:14:00 -05001272 ENABLE_SME_FOR_SWD \
Andre Przywara30661a92023-02-03 15:30:14 +00001273 ENABLE_SPE_FOR_NS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001274 ENABLE_SVE_FOR_NS \
Max Shvetsovc4502772021-03-22 11:59:37 +00001275 ENABLE_SVE_FOR_SWD \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001276 ENCRYPT_BL31 \
1277 ENCRYPT_BL32 \
1278 ERROR_DEPRECATED \
1279 FAULT_INJECTION_SUPPORT \
1280 GICV2_G0_FOR_EL3 \
Manish Pandey0e3379d2022-10-10 11:43:08 +01001281 HANDLE_EA_EL3_FIRST_NS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001282 HW_ASSISTED_COHERENCY \
1283 LOG_LEVEL \
1284 MEASURED_BOOT \
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001285 DRTM_SUPPORT \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001286 NS_TIMER_SWITCH \
1287 PL011_GENERIC_UART \
1288 PLAT_${PLAT} \
Tamas Banc9ccc272022-01-18 16:20:47 +01001289 PLAT_RSS_NOT_SUPPORTED \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001290 PROGRAMMABLE_RESET_ADDRESS \
1291 PSCI_EXTENDED_STATE_ID \
Wing Li1e9b68a2023-01-26 18:33:36 -08001292 PSCI_OS_INIT_MODE \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001293 RAS_EXTENSION \
1294 RESET_TO_BL31 \
1295 SEPARATE_CODE_AND_RODATA \
Jiafei Pan0824b452022-02-24 10:47:33 +08001296 SEPARATE_BL2_NOLOAD_REGION \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001297 SEPARATE_NOBITS_REGION \
1298 RECLAIM_INIT_CODE \
1299 SPD_${SPD} \
1300 SPIN_ON_BL1_EXIT \
1301 SPM_MM \
Marc Bonniciabaac162021-12-01 18:00:40 +00001302 SPMC_AT_EL3 \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001303 SPMD_SPM_AT_SEL2 \
1304 TRUSTED_BOARD_BOOT \
Manish V Badarkhe5181d602022-01-08 22:56:06 +00001305 CRYPTO_SUPPORT \
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -05001306 TRNG_SUPPORT \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001307 USE_COHERENT_MEM \
1308 USE_DEBUGFS \
1309 ARM_IO_IN_DTB \
1310 SDEI_IN_FCONF \
1311 SEC_INT_DESC_IN_FCONF \
1312 USE_ROMLIB \
1313 USE_TBBR_DEFS \
1314 WARMBOOT_ENABLE_DCACHE_EARLY \
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001315 RESET_TO_BL2 \
1316 BL2_RUNS_AT_EL3 \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001317 BL2_IN_XIP_MEM \
1318 BL2_INV_DCACHE \
1319 USE_SPINLOCK_CAS \
1320 ERRATA_SPECULATIVE_AT \
Manish Pandey7c6fcb42022-09-27 14:30:34 +01001321 RAS_TRAP_NS_ERR_REC_ACCESS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001322 COT_DESC_IN_DTB \
1323 USE_SP804_TIMER \
Tomas Pilarde164b02020-10-29 13:01:16 +00001324 ENABLE_FEAT_RNG \
Juan Pablo Conde42305f22022-07-12 16:40:29 -04001325 ENABLE_FEAT_RNG_TRAP \
Chris Kay08fec332021-03-09 13:34:35 +00001326 ENABLE_FEAT_SB \
Daniel Boulby928747f2021-05-25 18:09:34 +01001327 ENABLE_FEAT_DIT \
Manish V Badarkhe2bb45ff2021-03-16 10:01:27 +00001328 NR_OF_FW_BANKS \
1329 NR_OF_IMAGES_IN_FW_BANK \
Manish V Badarkhe99575e42021-06-25 23:28:59 +01001330 PSA_FWU_SUPPORT \
johpow0181865962022-01-28 17:06:20 -06001331 ENABLE_BRBE_FOR_NS \
Manish V Badarkhe20df29c2021-07-02 09:10:56 +01001332 ENABLE_TRBE_FOR_NS \
Manish V Badarkhef356f7e2021-06-29 11:44:20 +01001333 ENABLE_SYS_REG_TRACE_FOR_NS \
Manish V Badarkhe51a97112021-07-08 09:33:18 +01001334 ENABLE_TRF_FOR_NS \
johpow01f91e59f2021-08-04 19:38:18 -05001335 ENABLE_FEAT_HCX \
Chris Kay03be39d2021-05-05 13:38:30 +01001336 ENABLE_MPMM \
1337 ENABLE_MPMM_FCONF \
Jayanth Dodderi Chidanand13ae0f42021-11-25 14:59:30 +00001338 ENABLE_FEAT_FGT \
Jayanth Dodderi Chidanand13ae0f42021-11-25 14:59:30 +00001339 ENABLE_FEAT_ECV \
Abdul Halim, Muhammad Hadi Asyrafif3a5d022020-06-29 12:15:27 +08001340 SIMICS_BUILD \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001341 ENABLE_FEAT_AMUv1p1 \
1342 ENABLE_FEAT_SEL2 \
1343 ENABLE_FEAT_VHE \
1344 ENABLE_FEAT_CSV2_2 \
1345 ENABLE_FEAT_PAN \
Mark Brownc37eee72023-03-14 20:13:03 +00001346 ENABLE_FEAT_TCR2 \
Mark Brown293a6612023-03-14 20:48:43 +00001347 ENABLE_FEAT_S2PIE \
1348 ENABLE_FEAT_S1PIE \
1349 ENABLE_FEAT_S2POE \
1350 ENABLE_FEAT_S1POE \
Mark Brown326f2952023-03-14 21:33:04 +00001351 ENABLE_FEAT_GCS \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001352 FEATURE_DETECTION \
Jayanth Dodderi Chidanand4b5489c2022-03-28 15:28:55 +01001353 TWED_DELAY \
1354 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001355 CONDITIONAL_CMO \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001356 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001357)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001358
Justin Chadwell83e04882019-08-20 11:01:52 +01001359ifeq (${SANITIZE_UB},trap)
1360 $(eval $(call add_define,MONITOR_TRAPS))
1361endif
1362
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001363# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1364ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001365 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1366else
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001367 # Define the PRELOADED_BL33_BASE flag only if it is provided and
1368 # EL3_PAYLOAD_BASE is not defined, as it has priority.
1369 ifdef PRELOADED_BL33_BASE
1370 $(eval $(call add_define,PRELOADED_BL33_BASE))
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001371 endif
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001372endif
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001373
Soby Mathew9fe88042018-03-26 12:43:37 +01001374# Define the DYN_DISABLE_AUTH flag only if set.
1375ifeq (${DYN_DISABLE_AUTH},1)
1376$(eval $(call add_define,DYN_DISABLE_AUTH))
1377endif
1378
Varun Wadekar4d034c52019-01-11 14:47:48 -08001379ifneq ($(findstring armlink,$(notdir $(LD))),)
1380$(eval $(call add_define,USE_ARM_LINK))
1381endif
1382
Manish Pandey3f90ad72020-01-14 11:52:05 +00001383# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001384ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001385ifdef SP_LAYOUT_FILE
Manish Pandey3f90ad72020-01-14 11:52:05 +00001386 -include $(BUILD_PLAT)/sp_gen.mk
1387 FIP_DEPS += sp
Manish Pandeyaaaeb312020-05-26 23:59:36 +01001388 CRT_DEPS += sp
Manish Pandey3f90ad72020-01-14 11:52:05 +00001389 NEED_SP_PKG := yes
1390else
Olivier Deprez042db532020-03-19 09:27:11 +01001391 ifeq (${SPMD_SPM_AT_SEL2},1)
1392 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1393 endif
Manish Pandey3f90ad72020-01-14 11:52:05 +00001394endif
1395endif
1396
Juan Castilloa3487d12015-08-18 14:23:04 +01001397################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001398# Build targets
1399################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001400
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301401.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 +01001402.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001403
Juan Castilloa3487d12015-08-18 14:23:04 +01001404all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001405
Juan Castilloa3487d12015-08-18 14:23:04 +01001406msg_start:
1407 @echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001408
Soby Mathew18a62042015-10-26 14:29:21 +00001409ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001410# Check if deprecated declarations and cpp warnings should be treated as error or not.
Varun Wadekar4d034c52019-01-11 14:47:48 -08001411ifneq ($(findstring clang,$(notdir $(CC))),)
1412 CPPFLAGS += -Wno-error=deprecated-declarations
1413else
Dan Handley6fa89a22018-02-27 16:03:58 +00001414 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001415endif
Julius Werner53456fc2019-07-09 13:49:11 -07001416endif # !ERROR_DEPRECATED
Soby Mathew18a62042015-10-26 14:29:21 +00001417
Roberto Vargase92111a2018-05-22 16:05:42 +01001418$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001419$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001420
Juan Castilloa3487d12015-08-18 14:23:04 +01001421# Expand build macros for the different images
1422ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001423BL1_SOURCES := $(sort ${BL1_SOURCES})
1424
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001425$(eval $(call MAKE_BL,bl1))
Juan Castilloa3487d12015-08-18 14:23:04 +01001426endif
Juan Castillo11abdcd2014-10-21 11:30:42 +01001427
Juan Castilloa3487d12015-08-18 14:23:04 +01001428ifeq (${NEED_BL2},yes)
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001429ifeq (${RESET_TO_BL2}, 0)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001430FIP_BL2_ARGS := tb-fw
1431endif
1432
Chris Kayfb3b0512021-09-28 15:44:37 +01001433BL2_SOURCES := $(sort ${BL2_SOURCES})
1434
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001435$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001436 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Juan Castilloa3487d12015-08-18 14:23:04 +01001437endif
Juan Castillo11abdcd2014-10-21 11:30:42 +01001438
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001439ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001440$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001441endif
1442
Juan Castilloa3487d12015-08-18 14:23:04 +01001443ifeq (${NEED_BL31},yes)
1444BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001445# Sort BL31 source files to remove duplicates
1446BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301447ifneq (${DECRYPTION_SUPPORT},none)
1448$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001449 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301450else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001451$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001452 $(eval $(call MAKE_BL,bl31,soc-fw)))
Juan Castilloa3487d12015-08-18 14:23:04 +01001453endif
Sumit Gargeec52442019-11-14 16:33:45 +05301454endif
Juan Castillo379954c2014-11-04 17:36:40 +00001455
Juan Castillo671b8db2015-11-12 10:59:26 +00001456# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001457# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001458# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001459ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001460# Sort BL32 source files to remove duplicates
1461BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001462BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1463
Sumit Gargeec52442019-11-14 16:33:45 +05301464ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001465$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301466 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1467else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001468$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001469 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Juan Castillo11abdcd2014-10-21 11:30:42 +01001470endif
Sumit Gargeec52442019-11-14 16:33:45 +05301471endif
Juan Castillo11abdcd2014-10-21 11:30:42 +01001472
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001473# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1474# needs to be built from RMM_SOURCES.
1475ifeq (${NEED_RMM},yes)
1476# Sort RMM source files to remove duplicates
1477RMM_SOURCES := $(sort ${RMM_SOURCES})
1478BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1479
1480$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
1481 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1482endif
1483
Juan Castilloa3487d12015-08-18 14:23:04 +01001484# Add the BL33 image if required by the platform
1485ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001486$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Juan Castillo9c25a402015-01-13 12:21:04 +00001487endif
1488
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001489ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001490$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001491 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001492endif
1493
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001494# Expand build macros for the different images
1495ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001496 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001497endif
1498
Manish Pandey3f90ad72020-01-14 11:52:05 +00001499# Add Secure Partition packages
1500ifeq (${NEED_SP_PKG},yes)
1501$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
Ruari Phipps571ed6b2020-07-24 16:20:57 +01001502 ${Q}${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT}
J-Alvesef8e0982022-03-22 16:28:51 +00001503sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001504 @${ECHO_BLANK_LINE}
1505 @echo "Built SP Images successfully"
1506 @${ECHO_BLANK_LINE}
1507endif
1508
Ian Spray36eaaf32014-01-30 17:25:28 +00001509locate-checkpatch:
1510ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001511 $(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 +00001512else
1513ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001514 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001515endif
1516endif
1517
Achin Gupta4f6ad662013-10-25 09:08:21 +01001518clean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001519 @echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001520 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001521ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001522 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001523else
1524# Clear the MAKEFLAGS as we do not want
1525# to pass the gnumake flags to nmake.
1526 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean
1527endif
Juan Castilloa3487d12015-08-18 14:23:04 +01001528 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301529 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
Roberto Vargase92111a2018-05-22 16:05:42 +01001530 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001531
James Morrisseyeaaeece2013-11-01 13:56:59 +00001532realclean distclean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001533 @echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001534 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1535 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001536ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001537 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001538else
1539# Clear the MAKEFLAGS as we do not want
1540# to pass the gnumake flags to nmake.
1541 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean
1542endif
Nicolas Boulenguezdf612a52021-03-31 12:22:45 +02001543 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301544 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
Roberto Vargase92111a2018-05-22 16:05:42 +01001545 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001546
Ian Spray36eaaf32014-01-30 17:25:28 +00001547checkcodebase: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001548 @echo " CHECKING STYLE"
Dan Handley3a355712016-06-02 18:21:02 +01001549 @if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001550 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001551 while read GIT_FILE ; \
1552 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1553 done ; \
1554 else \
1555 find . -type f -not -iwholename "*.git*" \
1556 -not -iwholename "*build*" \
1557 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001558 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001559 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001560 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001561 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1562 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001563
1564checkpatch: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001565 @echo " CHECKING STYLE"
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001566 @if test -n "${CHECKPATCH_OPTS}"; then \
1567 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1568 fi
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001569 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001570 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1571 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001572 printf "\n[*] Checking style of '$$commit'\n\n"; \
1573 git log --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001574 -- ${CHECK_PATHS} | \
1575 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001576 git diff --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001577 -- ${CHECK_PATHS} | \
1578 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001579 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001580
1581certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001582
Pali Rohár54ff2132020-11-24 15:38:08 +01001583${CRTTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001584 ${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 +00001585 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001586 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001587 @${ECHO_BLANK_LINE}
Jon Medhurst407a95c2014-02-12 15:54:48 +00001588
Juan Castillo11abdcd2014-10-21 11:30:42 +01001589ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001590certificates: ${CRT_DEPS} ${CRTTOOL}
1591 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001592 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001593 @echo "Built $@ successfully"
1594 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001595 @${ECHO_BLANK_LINE}
Juan Castillo11abdcd2014-10-21 11:30:42 +01001596endif
1597
Juan Castilloa3487d12015-08-18 14:23:04 +01001598${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001599 $(eval ${CHECK_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001600 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
1601 ${Q}${FIPTOOL} info $@
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001602 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001603 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001604 @${ECHO_BLANK_LINE}
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001605
Yatharth Kochard1a93432015-10-12 12:33:47 +01001606ifneq (${GENERATE_COT},0)
1607fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1608 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001609 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001610 @echo "Built $@ successfully"
1611 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001612 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001613endif
1614
1615${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001616 $(eval ${CHECK_FWU_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001617 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1618 ${Q}${FIPTOOL} info $@
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001619 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001620 @echo "Built $@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001621 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001622
Juan Castilloa3487d12015-08-18 14:23:04 +01001623fiptool: ${FIPTOOL}
1624fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001625fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001626
Pali Rohár54ff2132020-11-24 15:38:08 +01001627${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001628ifdef UNIX_MK
Lionel Debieve730bde82022-11-14 11:05:09 +01001629 ${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 +01001630else
1631# Clear the MAKEFLAGS as we do not want
1632# to pass the gnumake flags to nmake.
1633 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
1634endif
Harry Liebelf58ad362014-01-10 18:00:33 +00001635
Pali Rohár54ff2132020-11-24 15:38:08 +01001636romlib.bin: libraries FORCE
John Tsichritzisf6ea99b2019-05-21 15:47:37 +01001637 ${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 +01001638
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001639# Call print_memory_map tool
1640memmap: all
Louis Mayencourtc1c2bf72020-02-13 08:21:34 +00001641 ${Q}${PYTHON} ${PRINT_MEMORY_MAP} ${BUILD_PLAT} ${INVERTED_MEMMAP}
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001642
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001643doc:
1644 @echo " BUILD DOCUMENTATION"
1645 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1646
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301647enctool: ${ENCTOOL}
1648
Pali Rohár54ff2132020-11-24 15:38:08 +01001649${ENCTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001650 ${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 +05301651 @${ECHO_BLANK_LINE}
1652 @echo "Built $@ successfully"
1653 @${ECHO_BLANK_LINE}
1654
Joakim Bech35fab8c2014-01-23 14:51:49 +01001655cscope:
1656 @echo " CSCOPE"
1657 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1658 ${Q}cscope -b -q -k
1659
Ryan Harkin72ee3312014-01-15 16:55:07 +00001660help:
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001661 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001662 @echo ""
1663 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +00001664 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001665 @echo ""
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001666 @echo "platform = ${PLATFORM_LIST}"
1667 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001668 @echo "Please refer to the User Guide for a list of all supported options."
1669 @echo "Note that the build system doesn't track dependencies for build "
1670 @echo "options. Therefore, if any of the build options are changed "
1671 @echo "from a previous build, a clean build must be performed."
1672 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +00001673 @echo "Supported Targets:"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001674 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +00001675 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +00001676 @echo " bl2 Build the BL2 binary"
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001677 @echo " bl2u Build the BL2U binary"
Juan Castillo7d199412015-12-14 09:35:25 +00001678 @echo " bl31 Build the BL31 binary"
Soby Mathewa1941252016-05-05 14:33:33 +01001679 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1680 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castilloa3487d12015-08-18 14:23:04 +01001681 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001682 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochard1a93432015-10-12 12:33:47 +01001683 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +00001684 @echo " checkcodebase Check the coding style of the entire source tree"
1685 @echo " checkpatch Check the coding style on changes in the current"
1686 @echo " branch against BASE_COMMIT (default origin/master)"
1687 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +00001688 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +00001689 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001690 @echo " certtool Build the Certificate generation tool"
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301691 @echo " enctool Build the Firmware encryption tool"
Andreas Färberec82cfb2016-10-10 05:18:49 +02001692 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Manish Pandey3f90ad72020-01-14 11:52:05 +00001693 @echo " sp Build the Secure Partition Packages"
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001694 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathewab4181d2017-12-14 17:44:56 +00001695 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001696 @echo " memmap Print the memory map of the built binaries"
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001697 @echo " doc Build html based documentation using Sphinx tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001698 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001699 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +00001700 @echo ""
1701 @echo "example: build all targets for the FVP platform:"
1702 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001703
1704.PHONY: FORCE
1705FORCE:;