blob: 3dbf28e51795dab5c15f8dedd2268ab2acb4978d [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001#
Maksims Svecovs1e25c5b2023-02-02 16:10:22 +00002# Copyright (c) 2013-2023, Arm Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003#
dp-armfa3cf0b2017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005#
6
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +01007#
Juan Castillo04be3a52014-06-30 11:41:46 +01008# Trusted Firmware Version
9#
Soby Mathewd42eaee2018-10-01 16:16:34 +010010VERSION_MAJOR := 2
Juan Pablo Conde52487492023-05-15 22:17:17 -050011VERSION_MINOR := 9
laurenw-arme954f652022-07-12 10:12:05 -050012VERSION := ${VERSION_MAJOR}.${VERSION_MINOR}
Juan Castillo04be3a52014-06-30 11:41:46 +010013
Juan Castillo396644b2015-10-22 11:34:44 +010014# Default goal is build all images
15.DEFAULT_GOAL := all
16
Douglas Raillard527cd902016-12-28 14:47:50 +000017# Avoid any implicit propagation of command line variable definitions to
18# sub-Makefiles, like CFLAGS that we reserved for the firmware images'
19# usage. Other command line options like "-s" are still propagated as usual.
20MAKEOVERRIDES =
21
Evan Lloydf2697142015-12-02 18:17:37 +000022MAKE_HELPERS_DIRECTORY := make_helpers/
23include ${MAKE_HELPERS_DIRECTORY}build_macros.mk
Evan Lloyda71d2592015-12-02 18:56:06 +000024include ${MAKE_HELPERS_DIRECTORY}build_env.mk
Juan Castilloa3487d12015-08-18 14:23:04 +010025
26################################################################################
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010027# Default values for build configurations, and their dependencies
Juan Castilloa3487d12015-08-18 14:23:04 +010028################################################################################
Jeenu Viswambharan19a0ace2014-05-15 14:40:58 +010029
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010030include ${MAKE_HELPERS_DIRECTORY}defaults.mk
dp-arm3cac7862016-09-19 11:18:44 +010031
Antonio Nino Diaz808c2292017-04-18 15:16:05 +010032# Assertions enabled for DEBUG builds by default
Antonio Nino Diaz808c2292017-04-18 15:16:05 +010033ENABLE_ASSERTIONS := ${DEBUG}
Jeenu Viswambharan615ff392016-10-24 14:31:51 +010034ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION}
35PLAT := ${DEFAULT_PLAT}
Achin Gupta4f6ad662013-10-25 09:08:21 +010036
Juan Castilloa3487d12015-08-18 14:23:04 +010037################################################################################
38# Checkpatch script options
39################################################################################
40
Sandrine Bailleux0b5a1582016-06-02 11:19:59 +010041CHECKCODE_ARGS := --no-patch
Dan Handleyd7b59e42016-06-02 17:15:13 +010042# Do not check the coding style on imported library files or documentation files
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030043INC_ARM_DIRS_TO_CHECK := $(sort $(filter-out \
44 include/drivers/arm/cryptocell, \
45 $(wildcard include/drivers/arm/*)))
46INC_ARM_DIRS_TO_CHECK += include/drivers/arm/cryptocell/*.h
47INC_DRV_DIRS_TO_CHECK := $(sort $(filter-out \
48 include/drivers/arm, \
49 $(wildcard include/drivers/*)))
Dan Handleyd7b59e42016-06-02 17:15:13 +010050INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \
Dan Handley3a355712016-06-02 18:21:02 +010051 include/lib/libfdt \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010052 include/lib/libc, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010053 $(wildcard include/lib/*)))
54INC_DIRS_TO_CHECK := $(sort $(filter-out \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030055 include/lib \
56 include/drivers, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010057 $(wildcard include/*)))
58LIB_DIRS_TO_CHECK := $(sort $(filter-out \
dp-arme3cc8382017-05-04 12:15:35 +010059 lib/compiler-rt \
Antonio Nino Diazd84f88e2017-01-16 17:20:45 +000060 lib/libfdt% \
Roberto Vargas0f8f9852018-05-08 10:27:10 +010061 lib/libc, \
Daniel Boulby958f1dd2022-10-05 11:05:22 +010062 lib/zlib \
Dan Handleyd7b59e42016-06-02 17:15:13 +010063 $(wildcard lib/*)))
64ROOT_DIRS_TO_CHECK := $(sort $(filter-out \
65 lib \
66 include \
67 docs \
Paul Beesleyadfab5b2019-03-07 16:42:31 +000068 %.rst, \
Dan Handleyd7b59e42016-06-02 17:15:13 +010069 $(wildcard *)))
70CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \
71 ${INC_DIRS_TO_CHECK} \
72 ${INC_LIB_DIRS_TO_CHECK} \
Gilad Ben-Yossef033327a2019-05-15 09:24:04 +030073 ${LIB_DIRS_TO_CHECK} \
74 ${INC_DRV_DIRS_TO_CHECK} \
75 ${INC_ARM_DIRS_TO_CHECK}
Ian Spray36eaaf32014-01-30 17:25:28 +000076
Juan Castilloa3487d12015-08-18 14:23:04 +010077
78################################################################################
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
Shruti Gupta3440e562023-05-15 14:43:57 +0100155CTX_INCLUDE_PAUTH_REGS := 1
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
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500417
418# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
419TF_CFLAGS += $(call cc_option, --param=min-pagesize=0)
420
Justin Chadwell7a914232019-07-03 14:15:56 +0100421else
422# using clang
Justin Chadwell42d18ca2019-09-18 14:13:42 +0100423WARNINGS += -Wshift-overflow -Wshift-sign-overflow \
424 -Wlogical-op-parentheses
Ambroise Vincent067e4d92019-05-24 12:47:43 +0100425endif
426
Yann Gautier957c3532018-12-10 18:08:53 +0100427ifneq (${E},0)
428ERRORS := -Werror
429endif
430
Justin Chadwelle72a1eb2019-07-31 11:36:41 +0100431CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
432 $(ERRORS) $(WARNINGS)
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900433ASFLAGS += $(CPPFLAGS) $(ASFLAGS_$(ARCH)) \
Julius Werner53456fc2019-07-09 13:49:11 -0700434 -ffreestanding -Wa,--fatal-warnings
Masahiro Yamada0dec9fa2016-12-22 12:51:53 +0900435TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
Samuel Holland23f5e542019-10-20 16:11:25 -0500436 -ffunction-sections -fdata-sections \
437 -ffreestanding -fno-builtin -fno-common \
438 -Os -std=gnu99
Juan Castilloa3487d12015-08-18 14:23:04 +0100439
Mark Brown64869972022-04-20 18:14:32 +0100440$(eval $(call add_define,SVE_VECTOR_LEN))
441
Justin Chadwell83e04882019-08-20 11:01:52 +0100442ifeq (${SANITIZE_UB},on)
443TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover
444endif
445ifeq (${SANITIZE_UB},trap)
446TF_CFLAGS += -fsanitize=undefined -fno-sanitize-recover \
447 -fsanitize-undefined-trap-on-error
448endif
449
david cunado34ab6092017-11-30 21:58:01 +0000450GCC_V_OUTPUT := $(shell $(CC) -v 2>&1)
david cunado34ab6092017-11-30 21:58:01 +0000451
Marco Felsch24ad8402022-11-09 12:59:09 +0100452TF_LDFLAGS += -z noexecstack
453
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100454# LD = armlink
Varun Wadekar4d034c52019-01-11 14:47:48 -0800455ifneq ($(findstring armlink,$(notdir $(LD))),)
456TF_LDFLAGS += --diag_error=warning --lto_level=O1
457TF_LDFLAGS += --remove --info=unused,unusedsymbols
zelalem-aweked5f45272019-11-12 16:20:17 -0600458TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100459
460# LD = gcc (used when GCC LTO is enabled)
zelalem-aweked5f45272019-11-12 16:20:17 -0600461else ifneq ($(findstring gcc,$(notdir $(LD))),)
462# Pass ld options with Wl or Xlinker switches
463TF_LDFLAGS += -Wl,--fatal-warnings -O1
464TF_LDFLAGS += -Wl,--gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000465
466TF_LDFLAGS += -Wl,-z,common-page-size=4096 # Configure page size constants
467TF_LDFLAGS += -Wl,-z,max-page-size=4096
468
zelalem-aweked5f45272019-11-12 16:20:17 -0600469ifeq ($(ENABLE_LTO),1)
470 ifeq (${ARCH},aarch64)
471 TF_LDFLAGS += -flto -fuse-linker-plugin
472 endif
473endif
474# GCC automatically adds fix-cortex-a53-843419 flag when used to link
475# which breaks some builds, so disable if errata fix is not explicitly enabled
476ifneq (${ERRATA_A53_843419},1)
477 TF_LDFLAGS += -mno-fix-cortex-a53-843419
478endif
479TF_LDFLAGS += -nostdlib
480TF_LDFLAGS += $(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100481
482# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
Varun Wadekar4d034c52019-01-11 14:47:48 -0800483else
Marco Felsch24ad8402022-11-09 12:59:09 +0100484# With ld.bfd version 2.39 and newer new warnings are added. Skip those since we
485# are not loaded by a elf loader.
486TF_LDFLAGS += $(call ld_option, --no-warn-rwx-segments)
Yabin Cuied7dc512023-01-19 20:06:04 +0000487TF_LDFLAGS += -O1
Douglas Raillardd0c82732017-06-22 14:44:48 +0100488TF_LDFLAGS += --gc-sections
Chris Kay73b1f402022-12-22 13:26:37 +0000489
490TF_LDFLAGS += -z common-page-size=4096 # Configure page size constants
491TF_LDFLAGS += -z max-page-size=4096
492
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100493# ld.lld doesn't recognize the errata flags,
Yabin Cuied7dc512023-01-19 20:06:04 +0000494# therefore don't add those in that case.
495# ld.lld reports section type mismatch warnings,
496# therefore don't add --fatal-warnings to it.
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100497ifeq ($(findstring ld.lld,$(notdir $(LD))),)
Yabin Cuied7dc512023-01-19 20:06:04 +0000498TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH)) --fatal-warnings
zelalem-aweked5f45272019-11-12 16:20:17 -0600499endif
Ambroise Vincent05c07c52019-07-17 11:08:38 +0100500endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100501
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000502DTC_FLAGS += -I dts -O dtb
Louis Mayencourt6b232d92020-02-28 16:57:30 +0000503DTC_CPPFLAGS += -P -nostdinc -Iinclude -Ifdts -undef \
504 -x assembler-with-cpp $(DEFINES)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000505
Juan Castilloa3487d12015-08-18 14:23:04 +0100506################################################################################
507# Common sources and include directories
508################################################################################
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000509include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
dp-arme3cc8382017-05-04 12:15:35 +0100510include lib/compiler-rt/compiler-rt.mk
Juan Castilloa3487d12015-08-18 14:23:04 +0100511
512BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100513 common/tf_log.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100514 common/${ARCH}/debug.S \
Julius Werner03020da2018-11-27 22:10:56 -0800515 drivers/console/multi_console.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100516 lib/${ARCH}/cache_helpers.S \
517 lib/${ARCH}/misc_helpers.S \
Soby Mathew2f38ce32018-02-08 17:45:12 +0000518 plat/common/plat_bl_common.c \
Soby Mathewaaf15f52017-09-04 11:49:29 +0100519 plat/common/plat_log_common.c \
dp-arm230011c2017-03-07 11:02:47 +0000520 plat/common/${ARCH}/plat_common.c \
Soby Mathewa1941252016-05-05 14:33:33 +0100521 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas0f8f9852018-05-08 10:27:10 +0100522 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000523
Boyan Karatotev02576932023-01-13 16:47:07 +0000524# Pointer Authentication sources
525ifeq (${ENABLE_PAUTH}, 1)
526# arm/common/aarch64/arm_pauth.c contains a sample platform hook to complete the
527# Pauth support. As it's not secure, it must be reimplemented for real platforms
528BL_COMMON_SOURCES += lib/extensions/pauth/pauth_helpers.S
529endif
530
Antonio Nino Diazeea20fc2018-08-16 15:42:44 +0100531ifeq ($(notdir $(CC)),armclang)
532BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
533endif
534
Justin Chadwell83e04882019-08-20 11:01:52 +0100535ifeq (${SANITIZE_UB},on)
536BL_COMMON_SOURCES += plat/common/ubsan.c
537endif
538
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200539INCLUDES += -Iinclude \
Antonio Nino Diaz8d1ade62018-12-17 17:20:57 +0000540 -Iinclude/arch/${ARCH} \
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000541 -Iinclude/lib/cpus/${ARCH} \
542 -Iinclude/lib/el3_runtime/${ARCH} \
543 ${PLAT_INCLUDES} \
544 ${SPD_INCLUDES}
545
Antonio Nino Diazc3a2cf22018-11-19 11:48:30 +0000546include common/backtrace/backtrace.mk
547
Juan Castilloa3487d12015-08-18 14:23:04 +0100548################################################################################
549# Generic definitions
550################################################################################
551
Evan Lloydf2697142015-12-02 18:17:37 +0000552include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
553
Grant Likely388248a2020-07-30 08:50:10 +0100554ifeq (${BUILD_BASE},)
555 BUILD_BASE := ./build
556endif
557BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
Achin Gupta4f6ad662013-10-25 09:08:21 +0100558
Evan Lloydf2697142015-12-02 18:17:37 +0000559SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
Ryan Harkin72ee3312014-01-15 16:55:07 +0000560
Juan Castilloa3487d12015-08-18 14:23:04 +0100561# Platforms providing their own TBB makefile may override this value
562INCLUDE_TBBR_MK := 1
563
Jeenu Viswambharane5c39fd2014-05-16 11:38:10 +0100564
Juan Castilloa3487d12015-08-18 14:23:04 +0100565################################################################################
566# Include SPD Makefile if one has been specified
567################################################################################
568
569ifneq (${SPD},none)
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000570 ifeq (${ARCH},aarch32)
Sandrine Bailleux247e3392018-10-03 14:56:38 +0200571 $(error "Error: SPD is incompatible with AArch32.")
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000572 endif
573
574 ifdef EL3_PAYLOAD_BASE
Sandrine Bailleux03897bb2015-11-26 16:31:34 +0000575 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
576 $(warning "The SPD and its BL32 companion will be present but ignored.")
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000577 endif
Achin Gupta60b7b8a2019-10-11 15:50:43 +0100578
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000579 ifeq (${SPD},spmd)
580 # SPMD is located in std_svc directory
581 SPD_DIR := std_svc
Juan Castilloa3487d12015-08-18 14:23:04 +0100582
Max Shvetsove7fd80e2020-02-25 13:55:00 +0000583 ifeq ($(SPMD_SPM_AT_SEL2),1)
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000584 CTX_INCLUDE_EL2_REGS := 1
Marc Bonniciabaac162021-12-01 18:00:40 +0000585 ifeq ($(SPMC_AT_EL3),1)
586 $(error SPM cannot be enabled in both S-EL2 and EL3.)
587 endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100588 endif
Olivier Deprezbcaa0682020-04-01 21:28:26 +0200589
590 ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
591 DTC_CPPFLAGS += -DOPTEE_SP_FW_CONFIG
592 endif
Davidson K9a949142021-03-10 12:07:15 +0530593
594 ifeq ($(TS_SP_FW_CONFIG),1)
595 DTC_CPPFLAGS += -DTS_SP_FW_CONFIG
596 endif
Balint Dobszay9f689762021-03-26 15:19:11 +0100597
598 ifneq ($(ARM_BL2_SP_LIST_DTS),)
599 DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
600 endif
Balint Dobszay719ba9c2021-03-26 16:23:18 +0100601
602 ifneq ($(SP_LAYOUT_FILE),)
603 BL2_ENABLE_SP_LOAD := 1
604 endif
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000605 else
606 # All other SPDs in spd directory
607 SPD_DIR := spd
608 endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100609
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000610 # We expect to locate an spd.mk under the specified SPD directory
611 SPD_MAKE := $(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
612
613 ifeq (${SPD_MAKE},)
614 $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
615 endif
616 $(info Including ${SPD_MAKE})
617 include ${SPD_MAKE}
618
619 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
620 # Makefile would set NEED_BL32 to "yes". In this case, the build system
621 # supports two mutually exclusive options:
622 # * BL32 is built from source: then BL32_SOURCES must contain the list
623 # of source files to build BL32
624 # * BL32 is a prebuilt binary: then BL32 must point to the image file
625 # that will be included in the FIP
626 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
627 # over the sources.
Juan Castilloa3487d12015-08-18 14:23:04 +0100628endif
629
Govindraj Raja0264d6c2022-11-21 13:10:40 +0000630ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
631ifeq (${SPD},none)
632ifeq (${ENABLE_RME},0)
633 $(error CTX_INCLUDE_EL2_REGS is available only when SPD or RME is enabled)
634endif
635endif
636endif
637
Douglas Raillard306593d2017-02-24 18:14:15 +0000638################################################################################
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500639# Include rmmd Makefile if RME is enabled
640################################################################################
641
642ifneq (${ENABLE_RME},0)
643ifneq (${ARCH},aarch64)
644 $(error ENABLE_RME requires AArch64)
645endif
Marc Bonniciabaac162021-12-01 18:00:40 +0000646ifeq ($(SPMC_AT_EL3),1)
647 $(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
648endif
Zelalem Aweke4d37db82021-07-11 18:33:20 -0500649include services/std_svc/rmmd/rmmd.mk
650$(warning "RME is an experimental feature")
651endif
652
653################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100654# Include the platform specific Makefile after the SPD Makefile (the platform
655# makefile may use all previous definitions in this file)
656################################################################################
Jeenu Viswambharane5c39fd2014-05-16 11:38:10 +0100657
Dan Handley81be1002015-03-27 17:44:35 +0000658include ${PLAT_MAKEFILE_FULL}
Jon Medhurst66573cb2014-02-13 15:19:28 +0000659
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600660# This internal flag is common option which is set to 1 for scenarios
661# when the BL2 is running in EL3 level. This occurs in two scenarios -
662# 4 world system running BL2 at EL3 and two world system without BL1 running
663# BL2 in EL3
664
665ifeq (${RESET_TO_BL2},1)
666 BL2_RUNS_AT_EL3 := 1
667 ifeq (${ENABLE_RME},1)
668 $(error RESET_TO_BL2=1 and ENABLE_RME=1 configuration is not supported at the moment.)
669 endif
670else ifeq (${ENABLE_RME},1)
671 BL2_RUNS_AT_EL3 := 1
672else
673 BL2_RUNS_AT_EL3 := 0
674endif
675
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900676$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
677
Etienne Carriere1374fcb2017-11-08 13:48:40 +0100678ifeq (${ARM_ARCH_MAJOR},7)
679include make_helpers/armv7-a-cpus.mk
680endif
681
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900682PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
683ifneq ($(PIE_FOUND),)
684 TF_CFLAGS += -fno-PIE
Samuel Holland9286c022022-04-08 21:56:02 -0500685ifneq ($(findstring gcc,$(notdir $(LD))),)
686 TF_LDFLAGS += -no-pie
687endif
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900688endif
689
690ifneq ($(findstring gcc,$(notdir $(LD))),)
691 PIE_LDFLAGS += -Wl,-pie -Wl,--no-dynamic-linker
Soby Mathew078f1a42018-08-28 11:13:55 +0100692else
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900693 PIE_LDFLAGS += -pie --no-dynamic-linker
694endif
695
696ifeq ($(ENABLE_PIE),1)
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600697ifeq ($(RESET_TO_BL2),1)
Masahiro Yamada65d699d2020-01-17 13:45:02 +0900698ifneq ($(BL2_IN_XIP_MEM),1)
Chris Kay13886c82023-02-02 14:39:03 +0000699 BL2_CPPFLAGS += -fpie
Masahiro Yamada65d699d2020-01-17 13:45:02 +0900700 BL2_CFLAGS += -fpie
701 BL2_LDFLAGS += $(PIE_LDFLAGS)
702endif
703endif
Chris Kay13886c82023-02-02 14:39:03 +0000704 BL31_CPPFLAGS += -fpie
705 BL31_CFLAGS += -fpie
Masahiro Yamadac3ca8812020-01-17 13:44:37 +0900706 BL31_LDFLAGS += $(PIE_LDFLAGS)
Chris Kay13886c82023-02-02 14:39:03 +0000707
708 BL32_CPPFLAGS += -fpie
Masahiro Yamadade634f82020-01-17 13:45:14 +0900709 BL32_CFLAGS += -fpie
710 BL32_LDFLAGS += $(PIE_LDFLAGS)
711endif
Soby Mathew078f1a42018-08-28 11:13:55 +0100712
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000713BL1_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
714BL31_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
715BL32_CPPFLAGS += -DREPORT_ERRATA=${DEBUG}
716
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900717BL1_CPPFLAGS += -DIMAGE_AT_EL3
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600718ifeq ($(RESET_TO_BL2),1)
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900719BL2_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900720else
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900721BL2_CPPFLAGS += -DIMAGE_AT_EL1
Masahiro Yamada003dd762020-03-26 13:18:48 +0900722endif
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000723
724ifeq (${ARCH},aarch64)
Masahiro Yamadaf1441572020-04-01 14:20:58 +0900725BL2U_CPPFLAGS += -DIMAGE_AT_EL1
726BL31_CPPFLAGS += -DIMAGE_AT_EL3
727BL32_CPPFLAGS += -DIMAGE_AT_EL1
Boyan Karatoteve7d7c272023-01-25 16:55:18 +0000728else
729BL32_CPPFLAGS += -DIMAGE_AT_EL3
Masahiro Yamada003dd762020-03-26 13:18:48 +0900730endif
731
Sandrine Bailleuxd4817592016-01-13 14:57:38 +0000732# Include the CPU specific operations makefile, which provides default
733# values for all CPU errata workarounds and CPU specific optimisations.
734# This can be overridden by the platform.
Soby Mathew937488b2014-09-22 14:13:34 +0100735include lib/cpus/cpu-ops.mk
Soby Mathew802f8652014-08-14 16:19:29 +0100736
dp-armcdd03cb2017-02-15 11:07:55 +0000737ifeq (${ARCH},aarch32)
738NEED_BL32 := yes
739
740################################################################################
741# Build `AARCH32_SP` as BL32 image for AArch32
742################################################################################
743ifneq (${AARCH32_SP},none)
744# We expect to locate an sp.mk under the specified AARCH32_SP directory
745AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
746
747ifeq (${AARCH32_SP_MAKE},)
748 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
749endif
750
751$(info Including ${AARCH32_SP_MAKE})
752include ${AARCH32_SP_MAKE}
753endif
754
Varun Wadekar3f9002c2019-01-31 09:22:30 -0800755endif
756
757################################################################################
758# Include libc if not overridden
759################################################################################
760ifeq (${OVERRIDE_LIBC},0)
761include lib/libc/libc.mk
dp-armcdd03cb2017-02-15 11:07:55 +0000762endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100763
764################################################################################
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000765# Check incompatible options
766################################################################################
767
768ifdef EL3_PAYLOAD_BASE
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100769 ifdef PRELOADED_BL33_BASE
770 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
771 incompatible build options. EL3_PAYLOAD_BASE has priority.")
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000772 endif
Qixiang Xube9bd9d2017-08-24 11:03:23 +0800773 ifneq (${GENERATE_COT},0)
774 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible build options.")
775 endif
776 ifneq (${TRUSTED_BOARD_BOOT},0)
777 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are incompatible build options.")
778 endif
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000779endif
780
781ifeq (${NEED_BL33},yes)
782 ifdef EL3_PAYLOAD_BASE
783 $(warning "BL33 image is not needed when option \
784 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
785 endif
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100786 ifdef PRELOADED_BL33_BASE
787 $(warning "BL33 image is not needed when option \
788 PRELOADED_BL33_BASE is used and won't be added to the FIP \
789 file.")
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000790 endif
791endif
792
Jeenu Viswambharan7ed2cbc2017-01-06 16:14:42 +0000793# When building for systems with hardware-assisted coherency, there's no need to
794# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
795ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
796$(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
797endif
Yatharth Kocharf528faf2016-06-28 16:58:26 +0100798
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -0600799#For now, BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is 1.
800ifeq ($(RESET_TO_BL2)-$(BL2_IN_XIP_MEM),0-1)
801$(error "BL2_IN_XIP_MEM is only supported when RESET_TO_BL2 is enabled")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000802endif
803
Manish Pandeyd419e222023-02-13 12:39:17 +0000804# RAS_EXTENSION is deprecated, provide alternate build options
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100805ifeq ($(RAS_EXTENSION),1)
Manish Pandeyd419e222023-02-13 12:39:17 +0000806 $(error "RAS_EXTENSION is now deprecated, please use ENABLE_FEAT_RAS and RAS_FFH_SUPPORT instead")
807endif
808# RAS firmware first handling requires that EAs are handled in EL3 first
809ifeq ($(RAS_FFH_SUPPORT),1)
810 ifneq ($(ENABLE_FEAT_RAS),1)
811 $(error For RAS_FFH_SUPPORT, ENABLE_FEAT_RAS must also be 1)
812 endif
Manish Pandey0e3379d2022-10-10 11:43:08 +0100813 ifneq ($(HANDLE_EA_EL3_FIRST_NS),1)
Manish Pandeyd419e222023-02-13 12:39:17 +0000814 $(error For RAS_FFH_SUPPORT, HANDLE_EA_EL3_FIRST_NS must also be 1)
Jeenu Viswambharan9a7ce2f2018-04-04 16:07:11 +0100815 endif
816endif
Manish Pandeyd419e222023-02-13 12:39:17 +0000817# When FAULT_INJECTION_SUPPORT is used, require that FEAT_RAS is enabled
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000818ifeq ($(FAULT_INJECTION_SUPPORT),1)
Andre Przywara870627e2023-01-27 12:25:49 +0000819 ifeq ($(ENABLE_FEAT_RAS),0)
820 $(error For FAULT_INJECTION_SUPPORT, ENABLE_FEAT_RAS must not be 0)
Jeenu Viswambharanf00da742017-12-08 12:13:51 +0000821 endif
822endif
823
Roberto Vargas025946a2018-09-24 17:20:48 +0100824# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew9fe88042018-03-26 12:43:37 +0100825ifeq ($(DYN_DISABLE_AUTH), 1)
826 ifeq (${TRUSTED_BOARD_BOOT}, 0)
827 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH to be set.")
828 endif
Soby Mathew9fe88042018-03-26 12:43:37 +0100829endif
830
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +0100831ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
832# Support authentication verification and hash calculation
833 CRYPTO_SUPPORT := 3
834else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
835# Support authentication verification and hash calculation
836 CRYPTO_SUPPORT := 3
837else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
838# Support hash calculation only
839 CRYPTO_SUPPORT := 2
840else ifeq (${TRUSTED_BOARD_BOOT},1)
841# Support authentication verification only
Manish V Badarkhe5181d602022-01-08 22:56:06 +0000842 CRYPTO_SUPPORT := 1
843else
844 CRYPTO_SUPPORT := 0
845endif
846
Balint Dobszayd0dbd5e2019-12-18 15:28:00 +0100847# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
848ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
Manish Pandey34a305e2021-10-21 21:53:49 +0100849$(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
Manish V Badarkhead339892020-06-29 10:32:53 +0100850endif
851
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000852# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100853# registers associated to it are also saved and restored.
854# 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 +0000855ifeq ($(ENABLE_PAUTH),1)
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100856 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
857 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
Alexei Fedorov2831d582019-03-13 11:05:07 +0000858 endif
Alexei Fedorov90f2e882019-05-24 12:17:09 +0100859endif
860
861ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
862 ifneq (${ARCH},aarch64)
863 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
Antonio Nino Diaz25cda672019-02-19 11:53:51 +0000864 endif
865endif
866
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100867ifeq ($(CTX_INCLUDE_MTE_REGS),1)
868 ifneq (${ARCH},aarch64)
869 $(error CTX_INCLUDE_MTE_REGS requires AArch64)
Justin Chadwell1c7c13a2019-07-18 14:25:33 +0100870 endif
871endif
872
Manish V Badarkhe99575e42021-06-25 23:28:59 +0100873ifeq ($(PSA_FWU_SUPPORT),1)
874 $(info PSA_FWU_SUPPORT is an experimental feature)
875endif
876
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +0000877ifeq ($(FEATURE_DETECTION),1)
878 $(info FEATURE_DETECTION is an experimental feature)
879endif
880
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000881ifneq ($(ENABLE_SME2_FOR_NS), 0)
882 ifeq (${ENABLE_SME_FOR_NS}, 0)
883 $(warning "ENABLE_SME2_FOR_NS requires ENABLE_SME_FOR_NS also to be set")
884 $(warning "Forced ENABLE_SME_FOR_NS=1")
885 override ENABLE_SME_FOR_NS := 1
886 endif
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000887endif
888
Petre-Ionut Tudore5a6fef2019-11-07 15:18:03 +0000889ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
890 ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
891 $(error "ALLOW_RO_XLAT_TABLES requires translation tables library v2")
892 endif
893endif
894
Sumit Garg392e4df2019-11-15 10:43:00 +0530895ifneq (${DECRYPTION_SUPPORT},none)
896 ifeq (${TRUSTED_BOARD_BOOT}, 0)
897 $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT to be set)
Sumit Garg392e4df2019-11-15 10:43:00 +0530898 endif
899endif
900
johpow0181865962022-01-28 17:06:20 -0600901# Ensure that no Aarch64-only features are enabled in Aarch32 build
johpow019baade32021-07-08 14:14:00 -0500902ifeq (${ARCH},aarch32)
johpow0181865962022-01-28 17:06:20 -0600903
904 # SME/SVE only supported on AArch64
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000905 ifneq (${ENABLE_SME_FOR_NS},0)
johpow019baade32021-07-08 14:14:00 -0500906 $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
907 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000908
johpow019baade32021-07-08 14:14:00 -0500909 ifeq (${ENABLE_SVE_FOR_NS},1)
910 # Warning instead of error due to CI dependency on this
Yann Gautier7d917672021-11-19 11:35:46 +0100911 $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
johpow019baade32021-07-08 14:14:00 -0500912 endif
johpow0181865962022-01-28 17:06:20 -0600913
Juan Pablo Conde42305f22022-07-12 16:40:29 -0400914 # BRBE is not supported in AArch32
johpow0181865962022-01-28 17:06:20 -0600915 ifeq (${ENABLE_BRBE_FOR_NS},1)
916 $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
917 endif
918
Juan Pablo Conde42305f22022-07-12 16:40:29 -0400919 # FEAT_RNG_TRAP is not supported in AArch32
920 ifeq (${ENABLE_FEAT_RNG_TRAP},1)
921 $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
922 endif
johpow019baade32021-07-08 14:14:00 -0500923endif
924
925# Ensure ENABLE_RME is not used with SME
926ifeq (${ENABLE_RME},1)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000927 ifneq (${ENABLE_SME_FOR_NS},0)
johpow019baade32021-07-08 14:14:00 -0500928 $(error "ENABLE_SME_FOR_NS cannot be used with ENABLE_RME")
929 endif
930endif
931
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000932ifneq (${ENABLE_SME_FOR_NS},0)
933 ifeq (${ENABLE_SVE_FOR_NS},0)
934 $(error "ENABLE_SME_FOR_NS requires ENABLE_SVE_FOR_NS")
935 endif
936endif
937
johpow019baade32021-07-08 14:14:00 -0500938# Secure SME/SVE requires the non-secure component as well
939ifeq (${ENABLE_SME_FOR_SWD},1)
940 ifeq (${ENABLE_SME_FOR_NS},0)
941 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
942 endif
Boyan Karatotev7f5dcc72023-03-08 16:29:26 +0000943 ifeq (${ENABLE_SVE_FOR_SWD},0)
944 $(error "ENABLE_SME_FOR_SWD requires ENABLE_SVE_FOR_SWD")
945 endif
johpow019baade32021-07-08 14:14:00 -0500946endif
947ifeq (${ENABLE_SVE_FOR_SWD},1)
948 ifeq (${ENABLE_SVE_FOR_NS},0)
949 $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
950 endif
951endif
952
953# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
954# its own context management including FPU registers.
955ifeq (${CTX_INCLUDE_FPREGS},1)
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +0000956 ifneq (${ENABLE_SME_FOR_NS},0)
johpow019baade32021-07-08 14:14:00 -0500957 $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
958 endif
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +0000959
johpow019baade32021-07-08 14:14:00 -0500960 ifeq (${ENABLE_SVE_FOR_NS},1)
961 # Warning instead of error due to CI dependency on this
962 $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
963 $(warning "Forced ENABLE_SVE_FOR_NS=0")
964 override ENABLE_SVE_FOR_NS := 0
965 endif
966endif
967
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +0000968ifeq ($(DRTM_SUPPORT),1)
969 $(info DRTM_SUPPORT is an experimental feature)
970endif
971
Chris Kayd02c2312022-09-29 16:21:24 +0100972ifeq (${ENABLE_RME},1)
973 ifneq (${SEPARATE_CODE_AND_RODATA},1)
974 $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
975 endif
976endif
977
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000978################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100979# Process platform overrideable behaviour
980################################################################################
981
Manish Pandeyb0e7efa2021-10-06 10:59:52 +0100982ifdef BL1_SOURCES
983NEED_BL1 := yes
984endif
985
Jon Medhurst66573cb2014-02-13 15:19:28 +0000986ifdef BL2_SOURCES
Manish Pandeyb0e7efa2021-10-06 10:59:52 +0100987 NEED_BL2 := yes
988
989 # Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
990 # Certificate generation tools. This flag can be overridden by the platform.
991 ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000992 # If booting an EL3 payload there is no need for a BL33 image
993 # in the FIP file.
994 NEED_BL33 := no
995 else
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +0100996 ifdef PRELOADED_BL33_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +0000997 # If booting a BL33 preloaded image there is no need of
998 # another one in the FIP file.
999 NEED_BL33 := no
1000 else
1001 NEED_BL33 ?= yes
1002 endif
1003 endif
Jon Medhurst66573cb2014-02-13 15:19:28 +00001004endif
Achin Gupta4f6ad662013-10-25 09:08:21 +01001005
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001006ifdef BL2U_SOURCES
1007NEED_BL2U := yes
1008endif
1009
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001010# If SCP_BL2 is given, we always want FIP to include it.
1011ifdef SCP_BL2
1012 NEED_SCP_BL2 := yes
1013endif
1014
Soby Mathewbf169232017-11-14 14:10:10 +00001015# For AArch32, BL31 is not currently supported.
1016ifneq (${ARCH},aarch32)
1017 ifdef BL31_SOURCES
1018 # When booting an EL3 payload, there is no need to compile the BL31 image nor
1019 # put it in the FIP.
1020 ifndef EL3_PAYLOAD_BASE
1021 NEED_BL31 := yes
1022 endif
1023 endif
1024endif
1025
Juan Castilloa3487d12015-08-18 14:23:04 +01001026# Process TBB related flags
1027ifneq (${GENERATE_COT},0)
1028 # Common cert_create options
1029 ifneq (${CREATE_KEYS},0)
1030 $(eval CRT_ARGS += -n)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001031 $(eval FWU_CRT_ARGS += -n)
Juan Castilloa3487d12015-08-18 14:23:04 +01001032 ifneq (${SAVE_KEYS},0)
1033 $(eval CRT_ARGS += -k)
Yatharth Kochard1a93432015-10-12 12:33:47 +01001034 $(eval FWU_CRT_ARGS += -k)
Juan Castilloa3487d12015-08-18 14:23:04 +01001035 endif
1036 endif
1037 # Include TBBR makefile (unless the platform indicates otherwise)
1038 ifeq (${INCLUDE_TBBR_MK},1)
1039 include make_helpers/tbbr/tbbr_tools.mk
1040 endif
Ryan Harkin25cff832014-01-13 12:37:03 +00001041endif
Achin Gupta4f6ad662013-10-25 09:08:21 +01001042
Masahiro Yamada4d87eb42016-12-25 13:52:22 +09001043ifneq (${FIP_ALIGN},0)
1044FIP_ARGS += --align ${FIP_ALIGN}
1045endif
1046
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001047ifdef FDT_SOURCES
1048NEED_FDT := yes
1049endif
1050
Juan Castilloa3487d12015-08-18 14:23:04 +01001051################################################################################
Michalis Pappas0f223c52018-03-20 13:01:27 +08001052# Include libraries' Makefile that are used in all BL
1053################################################################################
1054
1055include lib/stack_protector/stack_protector.mk
1056
1057################################################################################
dp-arm4972ec52016-05-25 16:20:20 +01001058# Auxiliary tools (fiptool, cert_create, etc)
Juan Castilloa3487d12015-08-18 14:23:04 +01001059################################################################################
Achin Gupta375f5382014-02-18 18:12:48 +00001060
Juan Castilloa3487d12015-08-18 14:23:04 +01001061# Variables for use with Certificate Generation Tool
1062CRTTOOLPATH ?= tools/cert_create
Evan Lloyd004c9a52015-12-03 11:35:40 +00001063CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT}
Achin Gupta375f5382014-02-18 18:12:48 +00001064
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301065# Variables for use with Firmware Encryption Tool
1066ENCTOOLPATH ?= tools/encrypt_fw
1067ENCTOOL ?= ${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
1068
Juan Castilloa3487d12015-08-18 14:23:04 +01001069# Variables for use with Firmware Image Package
dp-arm4972ec52016-05-25 16:20:20 +01001070FIPTOOLPATH ?= tools/fiptool
1071FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT}
James Morrisseyeaaeece2013-11-01 13:56:59 +00001072
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001073# Variables for use with sptool
1074SPTOOLPATH ?= tools/sptool
J-Alvesef8e0982022-03-22 16:28:51 +00001075SPTOOL ?= ${SPTOOLPATH}/sptool.py
Manish Pandey3f90ad72020-01-14 11:52:05 +00001076SP_MK_GEN ?= ${SPTOOLPATH}/sp_mk_generator.py
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001077
Roberto Vargase92111a2018-05-22 16:05:42 +01001078# Variables for use with ROMLIB
1079ROMLIBPATH ?= lib/romlib
1080
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001081# Variable for use with Python
1082PYTHON ?= python3
1083
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001084# Variables for use with documentation build using Sphinx tool
1085DOCS_PATH ?= docs
1086
Abdul Halim, Muhammad Hadi Asyrafif3a5d022020-06-29 12:15:27 +08001087# Defination of SIMICS flag
1088SIMICS_BUILD ?= 0
1089
Soby Mathew574e01e2017-02-14 10:05:07 +00001090################################################################################
1091# Include BL specific makefiles
1092################################################################################
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001093
1094ifeq (${NEED_BL1},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001095include bl1/bl1.mk
1096endif
1097
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001098ifeq (${NEED_BL2},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001099include bl2/bl2.mk
1100endif
1101
Manish Pandeyb0e7efa2021-10-06 10:59:52 +01001102ifeq (${NEED_BL2U},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001103include bl2u/bl2u.mk
1104endif
1105
Soby Mathewbf169232017-11-14 14:10:10 +00001106ifeq (${NEED_BL31},yes)
Soby Mathew574e01e2017-02-14 10:05:07 +00001107include bl31/bl31.mk
1108endif
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001109
Soby Mathew574e01e2017-02-14 10:05:07 +00001110################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001111# Build options checks
1112################################################################################
1113
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001114$(eval $(call assert_booleans,\
1115 $(sort \
1116 ALLOW_RO_XLAT_TABLES \
Balint Dobszay719ba9c2021-03-26 16:23:18 +01001117 BL2_ENABLE_SP_LOAD \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001118 COLD_BOOT_SINGLE_CPU \
1119 CREATE_KEYS \
1120 CTX_INCLUDE_AARCH32_REGS \
1121 CTX_INCLUDE_FPREGS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001122 CTX_INCLUDE_EL2_REGS \
1123 DEBUG \
Javier Almansa Sobrinof3a4c542020-11-23 18:38:15 +00001124 DISABLE_MTPMU \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001125 DYN_DISABLE_AUTH \
1126 EL3_EXCEPTION_HANDLING \
Chris Kay925fda42021-05-25 10:42:56 +01001127 ENABLE_AMU_AUXILIARY_COUNTERS \
Chris Kayf11909f2021-08-19 11:21:52 +01001128 ENABLE_AMU_FCONF \
johpow01fa59c6f2020-10-02 13:41:11 -05001129 AMU_RESTRICT_COUNTERS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001130 ENABLE_ASSERTIONS \
Andre Przywara46880dc2022-11-17 16:42:09 +00001131 ENABLE_FEAT_SB \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001132 ENABLE_PIE \
1133 ENABLE_PMF \
1134 ENABLE_PSCI_STAT \
1135 ENABLE_RUNTIME_INSTRUMENTATION \
johpow019baade32021-07-08 14:14:00 -05001136 ENABLE_SME_FOR_SWD \
Max Shvetsovc4502772021-03-22 11:59:37 +00001137 ENABLE_SVE_FOR_SWD \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001138 ERROR_DEPRECATED \
1139 FAULT_INJECTION_SUPPORT \
1140 GENERATE_COT \
1141 GICV2_G0_FOR_EL3 \
Manish Pandey0e3379d2022-10-10 11:43:08 +01001142 HANDLE_EA_EL3_FIRST_NS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001143 HW_ASSISTED_COHERENCY \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001144 MEASURED_BOOT \
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001145 DRTM_SUPPORT \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001146 NS_TIMER_SWITCH \
1147 OVERRIDE_LIBC \
1148 PL011_GENERIC_UART \
Tamas Banc9ccc272022-01-18 16:20:47 +01001149 PLAT_RSS_NOT_SUPPORTED \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001150 PROGRAMMABLE_RESET_ADDRESS \
1151 PSCI_EXTENDED_STATE_ID \
Wing Li1e9b68a2023-01-26 18:33:36 -08001152 PSCI_OS_INIT_MODE \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001153 RESET_TO_BL31 \
1154 SAVE_KEYS \
1155 SEPARATE_CODE_AND_RODATA \
Jiafei Pan0824b452022-02-24 10:47:33 +08001156 SEPARATE_BL2_NOLOAD_REGION \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001157 SEPARATE_NOBITS_REGION \
1158 SPIN_ON_BL1_EXIT \
1159 SPM_MM \
Marc Bonniciabaac162021-12-01 18:00:40 +00001160 SPMC_AT_EL3 \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001161 SPMD_SPM_AT_SEL2 \
1162 TRUSTED_BOARD_BOOT \
1163 USE_COHERENT_MEM \
1164 USE_DEBUGFS \
1165 ARM_IO_IN_DTB \
1166 SDEI_IN_FCONF \
1167 SEC_INT_DESC_IN_FCONF \
1168 USE_ROMLIB \
1169 USE_TBBR_DEFS \
1170 WARMBOOT_ENABLE_DCACHE_EARLY \
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001171 RESET_TO_BL2 \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001172 BL2_IN_XIP_MEM \
1173 BL2_INV_DCACHE \
1174 USE_SPINLOCK_CAS \
1175 ENCRYPT_BL31 \
1176 ENCRYPT_BL32 \
1177 ERRATA_SPECULATIVE_AT \
Manish Pandey7c6fcb42022-09-27 14:30:34 +01001178 RAS_TRAP_NS_ERR_REC_ACCESS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001179 COT_DESC_IN_DTB \
1180 USE_SP804_TIMER \
Manish V Badarkhe99575e42021-06-25 23:28:59 +01001181 PSA_FWU_SUPPORT \
Chris Kay03be39d2021-05-05 13:38:30 +01001182 ENABLE_MPMM \
1183 ENABLE_MPMM_FCONF \
Abdul Halim, Muhammad Hadi Asyrafif3a5d022020-06-29 12:15:27 +08001184 SIMICS_BUILD \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001185 FEATURE_DETECTION \
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +01001186 TRNG_SUPPORT \
Sona Mathew7fe03522022-11-18 18:05:38 -06001187 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001188 ERRATA_NON_ARM_INTERCONNECT \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001189 CONDITIONAL_CMO \
Manish Pandeyd419e222023-02-13 12:39:17 +00001190 RAS_FFH_SUPPORT \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001191)))
Dan Handley81be1002015-03-27 17:44:35 +00001192
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001193$(eval $(call assert_numerics,\
1194 $(sort \
1195 ARM_ARCH_MAJOR \
1196 ARM_ARCH_MINOR \
1197 BRANCH_PROTECTION \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001198 CTX_INCLUDE_PAUTH_REGS \
1199 CTX_INCLUDE_MTE_REGS \
1200 CTX_INCLUDE_NEVE_REGS \
Manish V Badarkhec9fdaf62022-06-20 15:32:38 +01001201 CRYPTO_SUPPORT \
Jayanth Dodderi Chidanand69316752022-05-09 12:33:03 +01001202 ENABLE_BRBE_FOR_NS \
Jayanth Dodderi Chidananda793ccc2022-05-19 14:08:28 +01001203 ENABLE_TRBE_FOR_NS \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001204 ENABLE_BTI \
1205 ENABLE_PAUTH \
Andre Przywara0b7f1b02023-03-21 13:53:19 +00001206 ENABLE_FEAT_AMU \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001207 ENABLE_FEAT_AMUv1p1 \
1208 ENABLE_FEAT_CSV2_2 \
Manish Pandeyd419e222023-02-13 12:39:17 +00001209 ENABLE_FEAT_RAS \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001210 ENABLE_FEAT_DIT \
1211 ENABLE_FEAT_ECV \
1212 ENABLE_FEAT_FGT \
1213 ENABLE_FEAT_HCX \
1214 ENABLE_FEAT_PAN \
1215 ENABLE_FEAT_RNG \
Juan Pablo Conde42305f22022-07-12 16:40:29 -04001216 ENABLE_FEAT_RNG_TRAP \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001217 ENABLE_FEAT_SEL2 \
Mark Brownc37eee72023-03-14 20:13:03 +00001218 ENABLE_FEAT_TCR2 \
Mark Brown293a6612023-03-14 20:48:43 +00001219 ENABLE_FEAT_S2PIE \
1220 ENABLE_FEAT_S1PIE \
1221 ENABLE_FEAT_S2POE \
1222 ENABLE_FEAT_S1POE \
Mark Brown326f2952023-03-14 21:33:04 +00001223 ENABLE_FEAT_GCS \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001224 ENABLE_FEAT_VHE \
1225 ENABLE_MPAM_FOR_LOWER_ELS \
1226 ENABLE_RME \
Andre Przywaraf3e8cfc2022-11-17 16:42:09 +00001227 ENABLE_SPE_FOR_NS \
Andre Przywara44e33e02022-11-17 16:42:09 +00001228 ENABLE_SYS_REG_TRACE_FOR_NS \
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +00001229 ENABLE_SME_FOR_NS \
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001230 ENABLE_SME2_FOR_NS \
Jayanth Dodderi Chidanandd62c6812023-03-07 10:43:19 +00001231 ENABLE_SVE_FOR_NS \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001232 ENABLE_TRF_FOR_NS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001233 FW_ENC_STATUS \
Manish V Badarkhe2bb45ff2021-03-16 10:01:27 +00001234 NR_OF_FW_BANKS \
1235 NR_OF_IMAGES_IN_FW_BANK \
Jayanth Dodderi Chidanand4b5489c2022-03-28 15:28:55 +01001236 TWED_DELAY \
1237 ENABLE_FEAT_TWED \
Mark Brown64869972022-04-20 18:14:32 +01001238 SVE_VECTOR_LEN \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001239 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001240)))
Jeenu Viswambharanfca76802017-01-16 16:52:35 +00001241
Justin Chadwellf9b32c12019-07-29 17:13:10 +01001242ifdef KEY_SIZE
1243 $(eval $(call assert_numeric,KEY_SIZE))
1244endif
1245
Justin Chadwell83e04882019-08-20 11:01:52 +01001246ifeq ($(filter $(SANITIZE_UB), on off trap),)
1247 $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1248endif
1249
Juan Castilloa3487d12015-08-18 14:23:04 +01001250################################################################################
1251# Add definitions to the cpp preprocessor based on the current build options.
1252# This is done after including the platform specific makefile to allow the
1253# platform to overwrite the default options
1254################################################################################
Jeenu Viswambharand1b60152014-05-12 15:28:47 +01001255
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001256$(eval $(call add_defines,\
1257 $(sort \
1258 ALLOW_RO_XLAT_TABLES \
1259 ARM_ARCH_MAJOR \
1260 ARM_ARCH_MINOR \
Balint Dobszay719ba9c2021-03-26 16:23:18 +01001261 BL2_ENABLE_SP_LOAD \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001262 COLD_BOOT_SINGLE_CPU \
1263 CTX_INCLUDE_AARCH32_REGS \
1264 CTX_INCLUDE_FPREGS \
1265 CTX_INCLUDE_PAUTH_REGS \
1266 EL3_EXCEPTION_HANDLING \
1267 CTX_INCLUDE_MTE_REGS \
1268 CTX_INCLUDE_EL2_REGS \
Arunachalam Ganapathydd3ec7e2020-05-28 11:57:09 +01001269 CTX_INCLUDE_NEVE_REGS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001270 DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
Javier Almansa Sobrinof3a4c542020-11-23 18:38:15 +00001271 DISABLE_MTPMU \
Andre Przywara0b7f1b02023-03-21 13:53:19 +00001272 ENABLE_FEAT_AMU \
Chris Kay925fda42021-05-25 10:42:56 +01001273 ENABLE_AMU_AUXILIARY_COUNTERS \
Chris Kayf11909f2021-08-19 11:21:52 +01001274 ENABLE_AMU_FCONF \
johpow01fa59c6f2020-10-02 13:41:11 -05001275 AMU_RESTRICT_COUNTERS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001276 ENABLE_ASSERTIONS \
1277 ENABLE_BTI \
1278 ENABLE_MPAM_FOR_LOWER_ELS \
1279 ENABLE_PAUTH \
1280 ENABLE_PIE \
1281 ENABLE_PMF \
1282 ENABLE_PSCI_STAT \
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001283 ENABLE_RME \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001284 ENABLE_RUNTIME_INSTRUMENTATION \
johpow019baade32021-07-08 14:14:00 -05001285 ENABLE_SME_FOR_NS \
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +00001286 ENABLE_SME2_FOR_NS \
johpow019baade32021-07-08 14:14:00 -05001287 ENABLE_SME_FOR_SWD \
Andre Przywara30661a92023-02-03 15:30:14 +00001288 ENABLE_SPE_FOR_NS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001289 ENABLE_SVE_FOR_NS \
Max Shvetsovc4502772021-03-22 11:59:37 +00001290 ENABLE_SVE_FOR_SWD \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001291 ENCRYPT_BL31 \
1292 ENCRYPT_BL32 \
1293 ERROR_DEPRECATED \
1294 FAULT_INJECTION_SUPPORT \
1295 GICV2_G0_FOR_EL3 \
Manish Pandey0e3379d2022-10-10 11:43:08 +01001296 HANDLE_EA_EL3_FIRST_NS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001297 HW_ASSISTED_COHERENCY \
1298 LOG_LEVEL \
1299 MEASURED_BOOT \
Manish V Badarkhe191a5fc2022-03-02 12:06:35 +00001300 DRTM_SUPPORT \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001301 NS_TIMER_SWITCH \
1302 PL011_GENERIC_UART \
1303 PLAT_${PLAT} \
Tamas Banc9ccc272022-01-18 16:20:47 +01001304 PLAT_RSS_NOT_SUPPORTED \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001305 PROGRAMMABLE_RESET_ADDRESS \
1306 PSCI_EXTENDED_STATE_ID \
Wing Li1e9b68a2023-01-26 18:33:36 -08001307 PSCI_OS_INIT_MODE \
Manish Pandeyd419e222023-02-13 12:39:17 +00001308 ENABLE_FEAT_RAS \
1309 RAS_FFH_SUPPORT \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001310 RESET_TO_BL31 \
1311 SEPARATE_CODE_AND_RODATA \
Jiafei Pan0824b452022-02-24 10:47:33 +08001312 SEPARATE_BL2_NOLOAD_REGION \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001313 SEPARATE_NOBITS_REGION \
1314 RECLAIM_INIT_CODE \
1315 SPD_${SPD} \
1316 SPIN_ON_BL1_EXIT \
1317 SPM_MM \
Marc Bonniciabaac162021-12-01 18:00:40 +00001318 SPMC_AT_EL3 \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001319 SPMD_SPM_AT_SEL2 \
1320 TRUSTED_BOARD_BOOT \
Manish V Badarkhe5181d602022-01-08 22:56:06 +00001321 CRYPTO_SUPPORT \
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -05001322 TRNG_SUPPORT \
Sona Mathew7fe03522022-11-18 18:05:38 -06001323 ERRATA_ABI_SUPPORT \
Sona Mathew5a4c9fc2023-03-14 14:02:03 -05001324 ERRATA_NON_ARM_INTERCONNECT \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001325 USE_COHERENT_MEM \
1326 USE_DEBUGFS \
1327 ARM_IO_IN_DTB \
1328 SDEI_IN_FCONF \
1329 SEC_INT_DESC_IN_FCONF \
1330 USE_ROMLIB \
1331 USE_TBBR_DEFS \
1332 WARMBOOT_ENABLE_DCACHE_EARLY \
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001333 RESET_TO_BL2 \
1334 BL2_RUNS_AT_EL3 \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001335 BL2_IN_XIP_MEM \
1336 BL2_INV_DCACHE \
1337 USE_SPINLOCK_CAS \
1338 ERRATA_SPECULATIVE_AT \
Manish Pandey7c6fcb42022-09-27 14:30:34 +01001339 RAS_TRAP_NS_ERR_REC_ACCESS \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001340 COT_DESC_IN_DTB \
1341 USE_SP804_TIMER \
Tomas Pilarde164b02020-10-29 13:01:16 +00001342 ENABLE_FEAT_RNG \
Juan Pablo Conde42305f22022-07-12 16:40:29 -04001343 ENABLE_FEAT_RNG_TRAP \
Chris Kay08fec332021-03-09 13:34:35 +00001344 ENABLE_FEAT_SB \
Daniel Boulby928747f2021-05-25 18:09:34 +01001345 ENABLE_FEAT_DIT \
Manish V Badarkhe2bb45ff2021-03-16 10:01:27 +00001346 NR_OF_FW_BANKS \
1347 NR_OF_IMAGES_IN_FW_BANK \
Manish V Badarkhe99575e42021-06-25 23:28:59 +01001348 PSA_FWU_SUPPORT \
johpow0181865962022-01-28 17:06:20 -06001349 ENABLE_BRBE_FOR_NS \
Manish V Badarkhe20df29c2021-07-02 09:10:56 +01001350 ENABLE_TRBE_FOR_NS \
Manish V Badarkhef356f7e2021-06-29 11:44:20 +01001351 ENABLE_SYS_REG_TRACE_FOR_NS \
Manish V Badarkhe51a97112021-07-08 09:33:18 +01001352 ENABLE_TRF_FOR_NS \
johpow01f91e59f2021-08-04 19:38:18 -05001353 ENABLE_FEAT_HCX \
Chris Kay03be39d2021-05-05 13:38:30 +01001354 ENABLE_MPMM \
1355 ENABLE_MPMM_FCONF \
Jayanth Dodderi Chidanand13ae0f42021-11-25 14:59:30 +00001356 ENABLE_FEAT_FGT \
Jayanth Dodderi Chidanand13ae0f42021-11-25 14:59:30 +00001357 ENABLE_FEAT_ECV \
Abdul Halim, Muhammad Hadi Asyrafif3a5d022020-06-29 12:15:27 +08001358 SIMICS_BUILD \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001359 ENABLE_FEAT_AMUv1p1 \
1360 ENABLE_FEAT_SEL2 \
1361 ENABLE_FEAT_VHE \
1362 ENABLE_FEAT_CSV2_2 \
1363 ENABLE_FEAT_PAN \
Mark Brownc37eee72023-03-14 20:13:03 +00001364 ENABLE_FEAT_TCR2 \
Mark Brown293a6612023-03-14 20:48:43 +00001365 ENABLE_FEAT_S2PIE \
1366 ENABLE_FEAT_S1PIE \
1367 ENABLE_FEAT_S2POE \
1368 ENABLE_FEAT_S1POE \
Mark Brown326f2952023-03-14 21:33:04 +00001369 ENABLE_FEAT_GCS \
Jayanth Dodderi Chidanand9461a892022-01-17 18:57:17 +00001370 FEATURE_DETECTION \
Jayanth Dodderi Chidanand4b5489c2022-03-28 15:28:55 +01001371 TWED_DELAY \
1372 ENABLE_FEAT_TWED \
Okash Khawaja037b56e2022-11-04 12:38:01 +00001373 CONDITIONAL_CMO \
Varun Wadekar0a46eb12023-04-13 21:06:18 +01001374 IMPDEF_SYSREG_TRAP \
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -05001375)))
Jeenu Viswambharan615ff392016-10-24 14:31:51 +01001376
Justin Chadwell83e04882019-08-20 11:01:52 +01001377ifeq (${SANITIZE_UB},trap)
1378 $(eval $(call add_define,MONITOR_TRAPS))
1379endif
1380
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001381# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1382ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001383 $(eval $(call add_define,EL3_PAYLOAD_BASE))
1384else
Antonio Nino Diaz2b8277b2016-04-06 17:31:57 +01001385 # Define the PRELOADED_BL33_BASE flag only if it is provided and
1386 # EL3_PAYLOAD_BASE is not defined, as it has priority.
1387 ifdef PRELOADED_BL33_BASE
1388 $(eval $(call add_define,PRELOADED_BL33_BASE))
Antonio Nino Diazfaf573a2016-02-15 14:53:10 +00001389 endif
Sandrine Bailleux03897bb2015-11-26 16:31:34 +00001390endif
Soby Mathew85dbf5a2015-04-07 12:16:56 +01001391
Soby Mathew9fe88042018-03-26 12:43:37 +01001392# Define the DYN_DISABLE_AUTH flag only if set.
1393ifeq (${DYN_DISABLE_AUTH},1)
1394$(eval $(call add_define,DYN_DISABLE_AUTH))
1395endif
1396
Varun Wadekar4d034c52019-01-11 14:47:48 -08001397ifneq ($(findstring armlink,$(notdir $(LD))),)
1398$(eval $(call add_define,USE_ARM_LINK))
1399endif
1400
Manish Pandey3f90ad72020-01-14 11:52:05 +00001401# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
Manish Pandey3f90ad72020-01-14 11:52:05 +00001402ifeq (${SPD},spmd)
Olivier Deprez042db532020-03-19 09:27:11 +01001403ifdef SP_LAYOUT_FILE
Manish Pandey3f90ad72020-01-14 11:52:05 +00001404 -include $(BUILD_PLAT)/sp_gen.mk
1405 FIP_DEPS += sp
Manish Pandeyaaaeb312020-05-26 23:59:36 +01001406 CRT_DEPS += sp
Manish Pandey3f90ad72020-01-14 11:52:05 +00001407 NEED_SP_PKG := yes
1408else
Olivier Deprez042db532020-03-19 09:27:11 +01001409 ifeq (${SPMD_SPM_AT_SEL2},1)
1410 $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1411 endif
Manish Pandey3f90ad72020-01-14 11:52:05 +00001412endif
1413endif
1414
Juan Castilloa3487d12015-08-18 14:23:04 +01001415################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +01001416# Build targets
1417################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +01001418
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301419.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 +01001420.SUFFIXES:
Achin Gupta4f6ad662013-10-25 09:08:21 +01001421
Juan Castilloa3487d12015-08-18 14:23:04 +01001422all: msg_start
Harry Liebelf58ad362014-01-10 18:00:33 +00001423
Juan Castilloa3487d12015-08-18 14:23:04 +01001424msg_start:
1425 @echo "Building ${PLAT}"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001426
Soby Mathew18a62042015-10-26 14:29:21 +00001427ifeq (${ERROR_DEPRECATED},0)
Julius Werner53456fc2019-07-09 13:49:11 -07001428# Check if deprecated declarations and cpp warnings should be treated as error or not.
Varun Wadekar4d034c52019-01-11 14:47:48 -08001429ifneq ($(findstring clang,$(notdir $(CC))),)
1430 CPPFLAGS += -Wno-error=deprecated-declarations
1431else
Dan Handley6fa89a22018-02-27 16:03:58 +00001432 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew18a62042015-10-26 14:29:21 +00001433endif
Julius Werner53456fc2019-07-09 13:49:11 -07001434endif # !ERROR_DEPRECATED
Soby Mathew18a62042015-10-26 14:29:21 +00001435
Roberto Vargase92111a2018-05-22 16:05:42 +01001436$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001437$(eval $(call MAKE_LIB,c))
Roberto Vargas21360f32018-05-08 10:27:10 +01001438
Juan Castilloa3487d12015-08-18 14:23:04 +01001439# Expand build macros for the different images
1440ifeq (${NEED_BL1},yes)
Chris Kay0a542ec2021-09-28 15:44:19 +01001441BL1_SOURCES := $(sort ${BL1_SOURCES})
1442
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001443$(eval $(call MAKE_BL,bl1))
Juan Castilloa3487d12015-08-18 14:23:04 +01001444endif
Juan Castillo11abdcd2014-10-21 11:30:42 +01001445
Juan Castilloa3487d12015-08-18 14:23:04 +01001446ifeq (${NEED_BL2},yes)
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06001447ifeq (${RESET_TO_BL2}, 0)
Roberto Vargas53c052b2018-01-02 11:23:41 +00001448FIP_BL2_ARGS := tb-fw
1449endif
1450
Chris Kayfb3b0512021-09-28 15:44:37 +01001451BL2_SOURCES := $(sort ${BL2_SOURCES})
1452
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001453$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001454 $(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
Juan Castilloa3487d12015-08-18 14:23:04 +01001455endif
Juan Castillo11abdcd2014-10-21 11:30:42 +01001456
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001457ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001458$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Masahiro Yamadae76b4f82017-04-05 19:11:41 +09001459endif
1460
Juan Castilloa3487d12015-08-18 14:23:04 +01001461ifeq (${NEED_BL31},yes)
1462BL31_SOURCES += ${SPD_SOURCES}
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001463# Sort BL31 source files to remove duplicates
1464BL31_SOURCES := $(sort ${BL31_SOURCES})
Sumit Gargeec52442019-11-14 16:33:45 +05301465ifneq (${DECRYPTION_SUPPORT},none)
1466$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001467 $(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
Sumit Gargeec52442019-11-14 16:33:45 +05301468else
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001469$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001470 $(eval $(call MAKE_BL,bl31,soc-fw)))
Juan Castilloa3487d12015-08-18 14:23:04 +01001471endif
Sumit Gargeec52442019-11-14 16:33:45 +05301472endif
Juan Castillo379954c2014-11-04 17:36:40 +00001473
Juan Castillo671b8db2015-11-12 10:59:26 +00001474# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamada4d156802018-01-26 11:42:01 +09001475# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo671b8db2015-11-12 10:59:26 +00001476# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castilloa3487d12015-08-18 14:23:04 +01001477ifeq (${NEED_BL32},yes)
Madhukar Pappireddyae9677b2020-01-27 13:37:51 -06001478# Sort BL32 source files to remove duplicates
1479BL32_SOURCES := $(sort ${BL32_SOURCES})
Masahiro Yamada6ced1b22018-01-26 11:42:01 +09001480BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1481
Sumit Gargeec52442019-11-14 16:33:45 +05301482ifneq (${DECRYPTION_SUPPORT},none)
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001483$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
Sumit Gargeec52442019-11-14 16:33:45 +05301484 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1485else
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001486$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001487 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Juan Castillo11abdcd2014-10-21 11:30:42 +01001488endif
Sumit Gargeec52442019-11-14 16:33:45 +05301489endif
Juan Castillo11abdcd2014-10-21 11:30:42 +01001490
Zelalem Aweke4d37db82021-07-11 18:33:20 -05001491# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1492# needs to be built from RMM_SOURCES.
1493ifeq (${NEED_RMM},yes)
1494# Sort RMM source files to remove duplicates
1495RMM_SOURCES := $(sort ${RMM_SOURCES})
1496BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1497
1498$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
1499 $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1500endif
1501
Juan Castilloa3487d12015-08-18 14:23:04 +01001502# Add the BL33 image if required by the platform
1503ifeq (${NEED_BL33},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001504$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Juan Castillo9c25a402015-01-13 12:21:04 +00001505endif
1506
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001507ifeq (${NEED_BL2U},yes)
Masahiro Yamada9c5ca522018-01-26 11:42:01 +09001508$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Zelalem Awekeb44dec12021-07-11 17:25:48 -05001509 $(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001510endif
1511
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001512# Expand build macros for the different images
1513ifeq (${NEED_FDT},yes)
Soby Mathewab4181d2017-12-14 17:44:56 +00001514 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +00001515endif
1516
Manish Pandey3f90ad72020-01-14 11:52:05 +00001517# Add Secure Partition packages
1518ifeq (${NEED_SP_PKG},yes)
1519$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
Ruari Phipps571ed6b2020-07-24 16:20:57 +01001520 ${Q}${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT}
J-Alvesef8e0982022-03-22 16:28:51 +00001521sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
Manish Pandey3f90ad72020-01-14 11:52:05 +00001522 @${ECHO_BLANK_LINE}
1523 @echo "Built SP Images successfully"
1524 @${ECHO_BLANK_LINE}
1525endif
1526
Ian Spray36eaaf32014-01-30 17:25:28 +00001527locate-checkpatch:
1528ifndef CHECKPATCH
Etienne Carrieref5657572017-08-23 15:44:01 +02001529 $(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 +00001530else
1531ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carrieref5657572017-08-23 15:44:01 +02001532 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +00001533endif
1534endif
1535
Achin Gupta4f6ad662013-10-25 09:08:21 +01001536clean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001537 @echo " CLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001538 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001539ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001540 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001541else
1542# Clear the MAKEFLAGS as we do not want
1543# to pass the gnumake flags to nmake.
1544 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean
1545endif
Juan Castilloa3487d12015-08-18 14:23:04 +01001546 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301547 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
Roberto Vargase92111a2018-05-22 16:05:42 +01001548 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001549
James Morrisseyeaaeece2013-11-01 13:56:59 +00001550realclean distclean:
Juan Castilloa3487d12015-08-18 14:23:04 +01001551 @echo " REALCLEAN"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001552 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
1553 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001554ifdef UNIX_MK
Juan Castilloa3487d12015-08-18 14:23:04 +01001555 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001556else
1557# Clear the MAKEFLAGS as we do not want
1558# to pass the gnumake flags to nmake.
1559 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean
1560endif
Nicolas Boulenguezdf612a52021-03-31 12:22:45 +02001561 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301562 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
Roberto Vargase92111a2018-05-22 16:05:42 +01001563 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +01001564
Ian Spray36eaaf32014-01-30 17:25:28 +00001565checkcodebase: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001566 @echo " CHECKING STYLE"
Dan Handley3a355712016-06-02 18:21:02 +01001567 @if test -d .git ; then \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001568 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley3a355712016-06-02 18:21:02 +01001569 while read GIT_FILE ; \
1570 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
1571 done ; \
1572 else \
1573 find . -type f -not -iwholename "*.git*" \
1574 -not -iwholename "*build*" \
1575 -not -iwholename "*libfdt*" \
Roberto Vargas0f8f9852018-05-08 10:27:10 +01001576 -not -iwholename "*libc*" \
Dan Handley3a355712016-06-02 18:21:02 +01001577 -not -iwholename "*docs*" \
Paul Beesleyadfab5b2019-03-07 16:42:31 +00001578 -not -iwholename "*.rst" \
Dan Handley3a355712016-06-02 18:21:02 +01001579 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
1580 fi
Ian Spray36eaaf32014-01-30 17:25:28 +00001581
1582checkpatch: locate-checkpatch
Juan Castilloa3487d12015-08-18 14:23:04 +01001583 @echo " CHECKING STYLE"
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001584 @if test -n "${CHECKPATCH_OPTS}"; then \
1585 echo " with ${CHECKPATCH_OPTS} option(s)"; \
1586 fi
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001587 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
Yann Gautiera10a6852021-11-02 18:03:31 +01001588 for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`; \
1589 do \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001590 printf "\n[*] Checking style of '$$commit'\n\n"; \
1591 git log --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001592 -- ${CHECK_PATHS} | \
1593 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001594 git diff --format=email "$$commit~..$$commit" \
Yann Gautier0c26a2a2019-03-08 15:44:00 +01001595 -- ${CHECK_PATHS} | \
1596 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz2cd4b582018-01-29 12:00:31 +00001597 done
Juan Castilloa3487d12015-08-18 14:23:04 +01001598
1599certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +00001600
Pali Rohár54ff2132020-11-24 15:38:08 +01001601${CRTTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001602 ${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 +00001603 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001604 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001605 @${ECHO_BLANK_LINE}
Jon Medhurst407a95c2014-02-12 15:54:48 +00001606
Juan Castillo11abdcd2014-10-21 11:30:42 +01001607ifneq (${GENERATE_COT},0)
Juan Castilloa3487d12015-08-18 14:23:04 +01001608certificates: ${CRT_DEPS} ${CRTTOOL}
1609 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001610 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001611 @echo "Built $@ successfully"
1612 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001613 @${ECHO_BLANK_LINE}
Juan Castillo11abdcd2014-10-21 11:30:42 +01001614endif
1615
Juan Castilloa3487d12015-08-18 14:23:04 +01001616${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001617 $(eval ${CHECK_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001618 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
1619 ${Q}${FIPTOOL} info $@
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001620 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +01001621 @echo "Built $@ successfully"
Evan Lloyd26c6cb42015-12-02 18:33:55 +00001622 @${ECHO_BLANK_LINE}
Soby Mathewdbee7fc2014-09-08 17:51:01 +01001623
Yatharth Kochard1a93432015-10-12 12:33:47 +01001624ifneq (${GENERATE_COT},0)
1625fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1626 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001627 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001628 @echo "Built $@ successfully"
1629 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001630 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001631endif
1632
1633${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
Pali Rohára5416ab2020-11-24 16:53:04 +01001634 $(eval ${CHECK_FWU_FIP_CMD})
dp-arm4972ec52016-05-25 16:20:20 +01001635 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1636 ${Q}${FIPTOOL} info $@
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001637 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001638 @echo "Built $@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +01001639 @${ECHO_BLANK_LINE}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001640
Juan Castilloa3487d12015-08-18 14:23:04 +01001641fiptool: ${FIPTOOL}
1642fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochard1a93432015-10-12 12:33:47 +01001643fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Harry Liebelf58ad362014-01-10 18:00:33 +00001644
Pali Rohár54ff2132020-11-24 15:38:08 +01001645${FIPTOOL}: FORCE
Sami Mujaware7cdc3f2020-04-30 12:41:57 +01001646ifdef UNIX_MK
Lionel Debieve730bde82022-11-14 11:05:09 +01001647 ${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 +01001648else
1649# Clear the MAKEFLAGS as we do not want
1650# to pass the gnumake flags to nmake.
1651 ${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
1652endif
Harry Liebelf58ad362014-01-10 18:00:33 +00001653
Pali Rohár54ff2132020-11-24 15:38:08 +01001654romlib.bin: libraries FORCE
John Tsichritzisf6ea99b2019-05-21 15:47:37 +01001655 ${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 +01001656
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001657memmap: all
Harrison Mutaie9bc4882023-02-23 10:33:58 +00001658ifdef UNIX_MK
1659 ${Q}PYTHONPATH=${CURDIR}/tools/memory \
1660 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1661else
1662 ${Q}set PYTHONPATH=${CURDIR}/tools/memory && \
1663 ${PYTHON} -m memory.memmap -sr ${BUILD_PLAT}
1664endif
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001665
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001666doc:
1667 @echo " BUILD DOCUMENTATION"
1668 ${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1669
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301670enctool: ${ENCTOOL}
1671
Pali Rohár54ff2132020-11-24 15:38:08 +01001672${ENCTOOL}: FORCE
Lionel Debieve730bde82022-11-14 11:05:09 +01001673 ${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 +05301674 @${ECHO_BLANK_LINE}
1675 @echo "Built $@ successfully"
1676 @${ECHO_BLANK_LINE}
1677
Joakim Bech35fab8c2014-01-23 14:51:49 +01001678cscope:
1679 @echo " CSCOPE"
1680 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1681 ${Q}cscope -b -q -k
1682
Ryan Harkin72ee3312014-01-15 16:55:07 +00001683help:
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001684 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001685 @echo ""
1686 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +00001687 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001688 @echo ""
John Tsichritzis0c4dded2019-05-21 15:57:31 +01001689 @echo "platform = ${PLATFORM_LIST}"
1690 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001691 @echo "Please refer to the User Guide for a list of all supported options."
1692 @echo "Note that the build system doesn't track dependencies for build "
1693 @echo "options. Therefore, if any of the build options are changed "
1694 @echo "from a previous build, a clean build must be performed."
1695 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +00001696 @echo "Supported Targets:"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001697 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +00001698 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +00001699 @echo " bl2 Build the BL2 binary"
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001700 @echo " bl2u Build the BL2U binary"
Juan Castillo7d199412015-12-14 09:35:25 +00001701 @echo " bl31 Build the BL31 binary"
Soby Mathewa1941252016-05-05 14:33:33 +01001702 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
1703 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castilloa3487d12015-08-18 14:23:04 +01001704 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001705 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochard1a93432015-10-12 12:33:47 +01001706 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +00001707 @echo " checkcodebase Check the coding style of the entire source tree"
1708 @echo " checkpatch Check the coding style on changes in the current"
1709 @echo " branch against BASE_COMMIT (default origin/master)"
1710 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +00001711 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +00001712 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo11abdcd2014-10-21 11:30:42 +01001713 @echo " certtool Build the Certificate generation tool"
Sumit Gargb6c4b3c2019-11-11 18:46:36 +05301714 @echo " enctool Build the Firmware encryption tool"
Andreas Färberec82cfb2016-10-10 05:18:49 +02001715 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Manish Pandey3f90ad72020-01-14 11:52:05 +00001716 @echo " sp Build the Secure Partition Packages"
Antonio Nino Diaza830a4d2018-11-27 14:58:04 +00001717 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathewab4181d2017-12-14 17:44:56 +00001718 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Louis Mayencourtcc3e8b82019-10-16 14:30:51 +01001719 @echo " memmap Print the memory map of the built binaries"
Madhukar Pappireddy46adb1b2020-01-28 12:41:20 -06001720 @echo " doc Build html based documentation using Sphinx tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +00001721 @echo ""
Sandrine Bailleuxcf8afbd2015-02-18 16:18:00 +00001722 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +00001723 @echo ""
1724 @echo "example: build all targets for the FVP platform:"
1725 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
Pali Rohár54ff2132020-11-24 15:38:08 +01001726
1727.PHONY: FORCE
1728FORCE:;