blob: d2e7b5829e8d8475e6881181bf0e0fc958ead5f9 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001#
Antonio Nino Diaz8855e522019-01-21 11:53:29 +00002# Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003#
dp-arm82cb2c12017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005#
6
Jeenu Viswambharane35c4042014-05-15 14:40:58 +01007#
Juan Castilloaaa3e722014-06-30 11:41:46 +01008# Trusted Firmware Version
9#
Soby Mathew1a0f1122018-10-01 16:16:34 +010010VERSION_MAJOR := 2
Soby Mathew6f8261b2019-03-26 15:51:59 +000011VERSION_MINOR := 1
Juan Castilloaaa3e722014-06-30 11:41:46 +010012
Juan Castillo88154672015-10-22 11:34:44 +010013# Default goal is build all images
14.DEFAULT_GOAL := all
15
Douglas Raillard72fc70e2016-12-28 14:47:50 +000016# Avoid any implicit propagation of command line variable definitions to
17# sub-Makefiles, like CFLAGS that we reserved for the firmware images'
18# usage. Other command line options like "-s" are still propagated as usual.
19MAKEOVERRIDES =
20
Evan Lloyd231c1472015-12-02 18:17:37 +000021MAKE_HELPERS_DIRECTORY := make_helpers/
22include ${MAKE_HELPERS_DIRECTORY}build_macros.mk
Evan Lloyde7f54db2015-12-02 18:56:06 +000023include ${MAKE_HELPERS_DIRECTORY}build_env.mk
Juan Castillo73c99d42015-08-18 14:23:04 +010024
25################################################################################
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +010026# Default values for build configurations, and their dependencies
Juan Castillo73c99d42015-08-18 14:23:04 +010027################################################################################
Jeenu Viswambharane35c4042014-05-15 14:40:58 +010028
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +010029include ${MAKE_HELPERS_DIRECTORY}defaults.mk
dp-arm872be882016-09-19 11:18:44 +010030
Antonio Nino Diazcc8b5632017-04-18 15:16:05 +010031# Assertions enabled for DEBUG builds by default
Antonio Nino Diazcc8b5632017-04-18 15:16:05 +010032ENABLE_ASSERTIONS := ${DEBUG}
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +010033ENABLE_PMF := ${ENABLE_RUNTIME_INSTRUMENTATION}
34PLAT := ${DEFAULT_PLAT}
Juan Castillo73c99d42015-08-18 14:23:04 +010035
36################################################################################
37# Checkpatch script options
38################################################################################
39
Sandrine Bailleuxf6077392016-06-02 11:19:59 +010040CHECKCODE_ARGS := --no-patch
Dan Handleyf0b489c2016-06-02 17:15:13 +010041# Do not check the coding style on imported library files or documentation files
42INC_LIB_DIRS_TO_CHECK := $(sort $(filter-out \
Dan Handley1a41e8c2016-06-02 18:21:02 +010043 include/lib/libfdt \
Roberto Vargas61f72a32018-05-08 10:27:10 +010044 include/lib/libc, \
Dan Handleyf0b489c2016-06-02 17:15:13 +010045 $(wildcard include/lib/*)))
46INC_DIRS_TO_CHECK := $(sort $(filter-out \
47 include/lib, \
48 $(wildcard include/*)))
49LIB_DIRS_TO_CHECK := $(sort $(filter-out \
dp-armd801fbb2017-05-04 12:15:35 +010050 lib/compiler-rt \
Antonio Nino Diaz55cdcf72017-01-16 17:20:45 +000051 lib/libfdt% \
Roberto Vargas61f72a32018-05-08 10:27:10 +010052 lib/libc, \
Dan Handleyf0b489c2016-06-02 17:15:13 +010053 $(wildcard lib/*)))
54ROOT_DIRS_TO_CHECK := $(sort $(filter-out \
55 lib \
56 include \
57 docs \
Paul Beesley1ef35512019-03-07 16:42:31 +000058 %.rst, \
Dan Handleyf0b489c2016-06-02 17:15:13 +010059 $(wildcard *)))
60CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} \
61 ${INC_DIRS_TO_CHECK} \
62 ${INC_LIB_DIRS_TO_CHECK} \
63 ${LIB_DIRS_TO_CHECK}
Ian Spray36eaaf32014-01-30 17:25:28 +000064
Juan Castillo73c99d42015-08-18 14:23:04 +010065
66################################################################################
67# Process build options
68################################################################################
69
70# Verbose flag
Jeenu Viswambharane35c4042014-05-15 14:40:58 +010071ifeq (${V},0)
Evan Lloydb169f6a2015-12-03 09:47:51 +000072 Q:=@
Andre Przywaraee1ba6d2018-09-27 10:56:05 +010073 ECHO:=@echo
Juan Castillo73c99d42015-08-18 14:23:04 +010074 CHECKCODE_ARGS += --no-summary --terse
Achin Gupta4f6ad662013-10-25 09:08:21 +010075else
Evan Lloydb169f6a2015-12-03 09:47:51 +000076 Q:=
Antonio Nino Diazb5a0f4b2018-10-19 15:44:30 +010077 ECHO:=$(ECHO_QUIET)
Achin Gupta4f6ad662013-10-25 09:08:21 +010078endif
Andre Przywaraee1ba6d2018-09-27 10:56:05 +010079
80ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
81 Q:=@
Antonio Nino Diazb5a0f4b2018-10-19 15:44:30 +010082 ECHO:=$(ECHO_QUIET)
Andre Przywaraee1ba6d2018-09-27 10:56:05 +010083endif
84
85export Q ECHO
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +000086
Juan Castillo73c99d42015-08-18 14:23:04 +010087# Process Debug flag
88$(eval $(call add_define,DEBUG))
James Morrisseyeaaeece2013-11-01 13:56:59 +000089ifneq (${DEBUG}, 0)
Juan Castillo73c99d42015-08-18 14:23:04 +010090 BUILD_TYPE := debug
Sandrine Bailleux403973c2016-04-11 13:01:17 +010091 TF_CFLAGS += -g
Roberto Vargas1684b872018-04-16 11:29:45 +010092
93 ifneq ($(findstring clang,$(notdir $(CC))),)
94 ASFLAGS += -g
95 else
96 ASFLAGS += -g -Wa,--gdwarf-2
97 endif
98
Juan Castillo73c99d42015-08-18 14:23:04 +010099 # Use LOG_LEVEL_INFO by default for debug builds
100 LOG_LEVEL := 40
James Morrisseyeaaeece2013-11-01 13:56:59 +0000101else
Juan Castillo73c99d42015-08-18 14:23:04 +0100102 BUILD_TYPE := release
Juan Castillo73c99d42015-08-18 14:23:04 +0100103 # Use LOG_LEVEL_NOTICE by default for release builds
104 LOG_LEVEL := 20
James Morrisseyeaaeece2013-11-01 13:56:59 +0000105endif
106
Juan Castilloaaa3e722014-06-30 11:41:46 +0100107# Default build string (git branch and commit)
108ifeq (${BUILD_STRING},)
Masahiro Yamadabee71c72017-02-03 11:47:27 +0900109 BUILD_STRING := $(shell git describe --always --dirty --tags 2> /dev/null)
Juan Castilloaaa3e722014-06-30 11:41:46 +0100110endif
Juan Castilloaaa3e722014-06-30 11:41:46 +0100111VERSION_STRING := v${VERSION_MAJOR}.${VERSION_MINOR}(${BUILD_TYPE}):${BUILD_STRING}
112
Juan Castillo73c99d42015-08-18 14:23:04 +0100113# The cert_create tool cannot generate certificates individually, so we use the
114# target 'certificates' to create them all
115ifneq (${GENERATE_COT},0)
116 FIP_DEPS += certificates
Yatharth Kochar01912622015-10-12 12:33:47 +0100117 FWU_FIP_DEPS += fwu_certificates
Juan Castillo73c99d42015-08-18 14:23:04 +0100118endif
119
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100120# Process BRANCH_PROTECTION value and set
121# Pointer Authentication and Branch Target Identification flags
122ifeq (${BRANCH_PROTECTION},0)
123 # Default value turns off all types of branch protection
124 BP_OPTION := none
125else ifneq (${ARCH},aarch64)
126 $(error BRANCH_PROTECTION requires AArch64)
127else ifeq (${BRANCH_PROTECTION},1)
128 # Enables all types of branch protection features
129 BP_OPTION := standard
130 ENABLE_BTI := 1
131 ENABLE_PAUTH := 1
132else ifeq (${BRANCH_PROTECTION},2)
133 # Return address signing to its standard level
134 BP_OPTION := pac-ret
135 ENABLE_PAUTH := 1
136else ifeq (${BRANCH_PROTECTION},3)
137 # Extend the signing to include leaf functions
138 BP_OPTION := pac-ret+leaf
139 ENABLE_PAUTH := 1
140else
141 $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
142endif
Juan Castillo73c99d42015-08-18 14:23:04 +0100143
144################################################################################
145# Toolchain
146################################################################################
147
dp-arm72610c42017-05-02 11:09:11 +0100148HOSTCC := gcc
149export HOSTCC
150
Juan Castillo73c99d42015-08-18 14:23:04 +0100151CC := ${CROSS_COMPILE}gcc
152CPP := ${CROSS_COMPILE}cpp
153AS := ${CROSS_COMPILE}gcc
154AR := ${CROSS_COMPILE}ar
Roberto Vargas2adee762018-04-13 14:26:47 +0100155LINKER := ${CROSS_COMPILE}ld
Juan Castillo73c99d42015-08-18 14:23:04 +0100156OC := ${CROSS_COMPILE}objcopy
157OD := ${CROSS_COMPILE}objdump
158NM := ${CROSS_COMPILE}nm
159PP := ${CROSS_COMPILE}gcc -E
Soby Mathew38c14d82017-12-14 17:44:56 +0000160DTC := dtc
Juan Castillo73c99d42015-08-18 14:23:04 +0100161
Julius Wernerb25a5772018-01-10 15:12:47 -0800162# Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH).
163ifneq ($(strip $(wildcard ${LD}.bfd) \
Roberto Vargas2adee762018-04-13 14:26:47 +0100164 $(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),)
165LINKER := ${LINKER}.bfd
Julius Wernerb25a5772018-01-10 15:12:47 -0800166endif
167
Etienne Carriere26e63c42017-11-08 13:48:40 +0100168ifeq (${ARM_ARCH_MAJOR},7)
169target32-directive = -target arm-none-eabi
170# Will set march32-directive from platform configuration
171else
172target32-directive = -target armv8a-none-eabi
Alexei Fedorovfa6f7742019-03-11 16:51:47 +0000173
174# Set the compiler's target architecture profile based on ARM_ARCH_MINOR option
175ifeq (${ARM_ARCH_MINOR},0)
Sandrine Bailleuxda547d42017-11-24 08:43:40 +0000176march32-directive = -march=armv8-a
Alexei Fedorovfa6f7742019-03-11 16:51:47 +0000177march64-directive = -march=armv8-a
178else
179march32-directive = -march=armv8.${ARM_ARCH_MINOR}-a
180march64-directive = -march=armv8.${ARM_ARCH_MINOR}-a
181endif
Etienne Carriere26e63c42017-11-08 13:48:40 +0100182endif
183
Varun Wadekarfd18a8f2018-12-12 15:22:27 -0800184ifneq ($(findstring armclang,$(notdir $(CC))),)
Etienne Carriere26e63c42017-11-08 13:48:40 +0100185TF_CFLAGS_aarch32 = -target arm-arm-none-eabi $(march32-directive)
Alexei Fedorovfa6f7742019-03-11 16:51:47 +0000186TF_CFLAGS_aarch64 = -target aarch64-arm-none-eabi $(march64-directive)
Roberto Vargas2adee762018-04-13 14:26:47 +0100187LD = $(LINKER)
Roberto Vargas1684b872018-04-16 11:29:45 +0100188AS = $(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
Roberto Vargas70401552018-05-10 13:38:19 +0100189CPP = $(CC) -E $(TF_CFLAGS_$(ARCH))
190PP = $(CC) -E $(TF_CFLAGS_$(ARCH))
dp-arm75596332017-05-03 16:30:32 +0100191else ifneq ($(findstring clang,$(notdir $(CC))),)
Yann Gautiere2bfec02018-12-18 10:46:34 +0100192TF_CFLAGS_aarch32 = $(target32-directive) $(march32-directive)
Alexei Fedorovfa6f7742019-03-11 16:51:47 +0000193TF_CFLAGS_aarch64 = -target aarch64-elf $(march64-directive)
Roberto Vargas2adee762018-04-13 14:26:47 +0100194LD = $(LINKER)
Roberto Vargas1684b872018-04-16 11:29:45 +0100195AS = $(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
Roberto Vargas70401552018-05-10 13:38:19 +0100196CPP = $(CC) -E
197PP = $(CC) -E
dp-armd5461852017-05-02 12:00:08 +0100198else
Etienne Carriere26e63c42017-11-08 13:48:40 +0100199TF_CFLAGS_aarch32 = $(march32-directive)
Alexei Fedorovfa6f7742019-03-11 16:51:47 +0000200TF_CFLAGS_aarch64 = $(march64-directive)
Roberto Vargas2adee762018-04-13 14:26:47 +0100201LD = $(LINKER)
dp-armd5461852017-05-02 12:00:08 +0100202endif
203
Antonio Nino Diaz8fd9d4d2018-08-08 16:28:43 +0100204ifeq (${AARCH32_INSTRUCTION_SET},A32)
205TF_CFLAGS_aarch32 += -marm
206else ifeq (${AARCH32_INSTRUCTION_SET},T32)
207TF_CFLAGS_aarch32 += -mthumb
208else
209$(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
210endif
211
Sandrine Bailleuxa9c4dde2018-07-03 09:14:45 +0200212TF_CFLAGS_aarch32 += -mno-unaligned-access
dp-armd5461852017-05-02 12:00:08 +0100213TF_CFLAGS_aarch64 += -mgeneral-regs-only -mstrict-align
Soby Mathew9d29c222016-05-05 14:33:33 +0100214
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100215ifneq (${BP_OPTION},none)
216TF_CFLAGS_aarch64 += -mbranch-protection=${BP_OPTION}
217endif
218
Etienne Carriere26e63c42017-11-08 13:48:40 +0100219ASFLAGS_aarch32 = $(march32-directive)
Alexei Fedorovfa6f7742019-03-11 16:51:47 +0000220ASFLAGS_aarch64 = $(march64-directive)
Antonio Nino Diazb86048c2019-02-19 11:53:51 +0000221
Yann Gautiere7c645b2018-12-10 18:00:26 +0100222WARNING1 := -Wextra
Yann Gautiere7c645b2018-12-10 18:00:26 +0100223WARNING1 += -Wmissing-declarations
224WARNING1 += -Wmissing-format-attribute
225WARNING1 += -Wmissing-prototypes
226WARNING1 += -Wold-style-definition
Yann Gautiere7c645b2018-12-10 18:00:26 +0100227WARNING1 += -Wunused-const-variable
228
229WARNING2 := -Waggregate-return
230WARNING2 += -Wcast-align
Yann Gautiere7c645b2018-12-10 18:00:26 +0100231WARNING2 += -Wnested-externs
232WARNING2 += -Wshadow
233WARNING2 += -Wlogical-op
234WARNING2 += -Wmissing-field-initializers
235WARNING2 += -Wsign-compare
Yann Gautiere7c645b2018-12-10 18:00:26 +0100236
237WARNING3 := -Wbad-function-cast
238WARNING3 += -Wcast-qual
239WARNING3 += -Wconversion
240WARNING3 += -Wpacked
241WARNING3 += -Wpadded
242WARNING3 += -Wpointer-arith
243WARNING3 += -Wredundant-decls
244WARNING3 += -Wswitch-default
Yann Gautiere7c645b2018-12-10 18:00:26 +0100245
246ifeq (${W},1)
247WARNINGS := $(WARNING1)
248else ifeq (${W},2)
249WARNINGS := $(WARNING1) $(WARNING2)
250else ifeq (${W},3)
251WARNINGS := $(WARNING1) $(WARNING2) $(WARNING3)
252endif
253
Ambroise Vincent00296572019-05-24 12:47:43 +0100254WARNINGS += -Wunused -Wno-unused-parameter \
255 -Wdisabled-optimization \
256 -Wvla
257
258ifeq ($(findstring clang,$(notdir $(CC))),)
259WARNINGS += -Wunused-but-set-variable \
260 -Wmaybe-uninitialized \
261 -Wpacked-bitfield-compat
262endif
263
Yann Gautier6336b072018-12-10 18:08:53 +0100264ifneq (${E},0)
265ERRORS := -Werror
266endif
267
Roberto Vargasea7a57a2018-06-04 15:15:04 +0100268CPPFLAGS = ${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc \
Yann Gautier6336b072018-12-10 18:08:53 +0100269 -Wmissing-include-dirs $(ERRORS) $(WARNINGS)
Masahiro Yamada59de5092016-12-22 12:51:53 +0900270ASFLAGS += $(CPPFLAGS) $(ASFLAGS_$(ARCH)) \
271 -D__ASSEMBLY__ -ffreestanding \
272 -Wa,--fatal-warnings
273TF_CFLAGS += $(CPPFLAGS) $(TF_CFLAGS_$(ARCH)) \
dp-arm344af652017-05-03 16:30:54 +0100274 -ffreestanding -fno-builtin -Wall -std=gnu99 \
275 -Os -ffunction-sections -fdata-sections
Juan Castillo73c99d42015-08-18 14:23:04 +0100276
david cunadof7ec31d2017-11-30 21:58:01 +0000277GCC_V_OUTPUT := $(shell $(CC) -v 2>&1)
david cunadof7ec31d2017-11-30 21:58:01 +0000278
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800279ifneq ($(findstring armlink,$(notdir $(LD))),)
280TF_LDFLAGS += --diag_error=warning --lto_level=O1
281TF_LDFLAGS += --remove --info=unused,unusedsymbols
282else
Douglas Raillardc2b88062017-06-22 14:44:48 +0100283TF_LDFLAGS += --fatal-warnings -O1
284TF_LDFLAGS += --gc-sections
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800285endif
Douglas Raillardc2b88062017-06-22 14:44:48 +0100286TF_LDFLAGS += $(TF_LDFLAGS_$(ARCH))
Juan Castillo73c99d42015-08-18 14:23:04 +0100287
Nishanth Menon03b397a2016-10-14 01:13:57 +0000288DTC_FLAGS += -I dts -O dtb
Manish Pandey7e94a692019-01-21 14:50:10 +0000289DTC_CPPFLAGS += -nostdinc -Iinclude -undef -x assembler-with-cpp
Nishanth Menon03b397a2016-10-14 01:13:57 +0000290
Juan Castillo73c99d42015-08-18 14:23:04 +0100291################################################################################
292# Common sources and include directories
293################################################################################
dp-armd801fbb2017-05-04 12:15:35 +0100294include lib/compiler-rt/compiler-rt.mk
Juan Castillo73c99d42015-08-18 14:23:04 +0100295
296BL_COMMON_SOURCES += common/bl_common.c \
Soby Mathew7f56e9a2017-09-04 11:49:29 +0100297 common/tf_log.c \
Soby Mathew9d29c222016-05-05 14:33:33 +0100298 common/${ARCH}/debug.S \
Julius Werner91b48c92018-11-27 22:10:56 -0800299 drivers/console/multi_console.c \
Soby Mathew9d29c222016-05-05 14:33:33 +0100300 lib/${ARCH}/cache_helpers.S \
301 lib/${ARCH}/misc_helpers.S \
Soby Mathew566034f2018-02-08 17:45:12 +0000302 plat/common/plat_bl_common.c \
Soby Mathew7f56e9a2017-09-04 11:49:29 +0100303 plat/common/plat_log_common.c \
dp-arm75311202017-03-07 11:02:47 +0000304 plat/common/${ARCH}/plat_common.c \
Soby Mathew9d29c222016-05-05 14:33:33 +0100305 plat/common/${ARCH}/platform_helpers.S \
Roberto Vargas61f72a32018-05-08 10:27:10 +0100306 ${COMPILER_RT_SRCS}
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000307
Antonio Nino Diaz8422a842018-08-16 15:42:44 +0100308ifeq ($(notdir $(CC)),armclang)
309BL_COMMON_SOURCES += lib/${ARCH}/armclang_printf.S
310endif
311
Yann Gautier01d237c2018-06-18 16:00:23 +0200312INCLUDES += -Iinclude \
Antonio Nino Diazf5478de2018-12-17 17:20:57 +0000313 -Iinclude/arch/${ARCH} \
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +0000314 -Iinclude/lib/cpus/${ARCH} \
315 -Iinclude/lib/el3_runtime/${ARCH} \
316 ${PLAT_INCLUDES} \
317 ${SPD_INCLUDES}
318
Antonio Nino Diaz9c6d1c52018-11-19 11:48:30 +0000319include common/backtrace/backtrace.mk
320
Juan Castillo73c99d42015-08-18 14:23:04 +0100321################################################################################
322# Generic definitions
323################################################################################
324
Evan Lloyd231c1472015-12-02 18:17:37 +0000325include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
326
Juan Castillo73c99d42015-08-18 14:23:04 +0100327BUILD_BASE := ./build
328BUILD_PLAT := ${BUILD_BASE}/${PLAT}/${BUILD_TYPE}
329
Evan Lloyd231c1472015-12-02 18:17:37 +0000330SPDS := $(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
Juan Castillo73c99d42015-08-18 14:23:04 +0100331
332# Platforms providing their own TBB makefile may override this value
333INCLUDE_TBBR_MK := 1
334
335
336################################################################################
337# Include SPD Makefile if one has been specified
338################################################################################
339
340ifneq (${SPD},none)
Soby Mathew9d29c222016-05-05 14:33:33 +0100341ifeq (${ARCH},aarch32)
Sandrine Bailleux44a87382018-10-03 14:56:38 +0200342 $(error "Error: SPD is incompatible with AArch32.")
Soby Mathew9d29c222016-05-05 14:33:33 +0100343endif
Sandrine Bailleux4c117f62015-11-26 16:31:34 +0000344ifdef EL3_PAYLOAD_BASE
345 $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
346 $(warning "The SPD and its BL32 companion will be present but ignored.")
347endif
Juan Castillo73c99d42015-08-18 14:23:04 +0100348 # We expect to locate an spd.mk under the specified SPD directory
Evan Lloyd231c1472015-12-02 18:17:37 +0000349 SPD_MAKE := $(wildcard services/spd/${SPD}/${SPD}.mk)
Juan Castillo73c99d42015-08-18 14:23:04 +0100350
351 ifeq (${SPD_MAKE},)
352 $(error Error: No services/spd/${SPD}/${SPD}.mk located)
353 endif
354 $(info Including ${SPD_MAKE})
355 include ${SPD_MAKE}
356
Juan Castillo70d1fc52015-11-12 10:59:26 +0000357 # If there's BL32 companion for the chosen SPD, we expect that the SPD's
358 # Makefile would set NEED_BL32 to "yes". In this case, the build system
359 # supports two mutually exclusive options:
360 # * BL32 is built from source: then BL32_SOURCES must contain the list
361 # of source files to build BL32
362 # * BL32 is a prebuilt binary: then BL32 must point to the image file
363 # that will be included in the FIP
364 # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
365 # over the sources.
Jeenu Viswambharane35c4042014-05-15 14:40:58 +0100366endif
367
Douglas Raillard51faada2017-02-24 18:14:15 +0000368################################################################################
Juan Castillo73c99d42015-08-18 14:23:04 +0100369# Include the platform specific Makefile after the SPD Makefile (the platform
370# makefile may use all previous definitions in this file)
371################################################################################
Jeenu Viswambharan2da8d8b2014-05-12 15:28:47 +0100372
Juan Castillo73c99d42015-08-18 14:23:04 +0100373include ${PLAT_MAKEFILE_FULL}
Juan Castillo0f21c542014-06-25 17:26:36 +0100374
Masahiro Yamada8012cc52017-11-04 03:12:28 +0900375$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
376
Etienne Carriere26e63c42017-11-08 13:48:40 +0100377ifeq (${ARM_ARCH_MAJOR},7)
378include make_helpers/armv7-a-cpus.mk
379endif
380
Soby Mathew3bd17c02018-08-28 11:13:55 +0100381ifeq ($(ENABLE_PIE),1)
382 TF_CFLAGS += -fpie
Louis Mayencourt80e19892019-03-05 17:08:46 +0000383 TF_LDFLAGS += -pie --no-dynamic-linker
Soby Mathew3bd17c02018-08-28 11:13:55 +0100384else
385 PIE_FOUND := $(findstring --enable-default-pie,${GCC_V_OUTPUT})
386 ifneq ($(PIE_FOUND),)
387 TF_CFLAGS += -fno-PIE
388 endif
389endif
390
Sandrine Bailleux54035fc2016-01-13 14:57:38 +0000391# Include the CPU specific operations makefile, which provides default
392# values for all CPU errata workarounds and CPU specific optimisations.
393# This can be overridden by the platform.
Juan Castillo73c99d42015-08-18 14:23:04 +0100394include lib/cpus/cpu-ops.mk
Achin Gupta4f6ad662013-10-25 09:08:21 +0100395
dp-arma4409002017-02-15 11:07:55 +0000396ifeq (${ARCH},aarch32)
397NEED_BL32 := yes
398
399################################################################################
400# Build `AARCH32_SP` as BL32 image for AArch32
401################################################################################
402ifneq (${AARCH32_SP},none)
403# We expect to locate an sp.mk under the specified AARCH32_SP directory
404AARCH32_SP_MAKE := $(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
405
406ifeq (${AARCH32_SP_MAKE},)
407 $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
408endif
409
410$(info Including ${AARCH32_SP_MAKE})
411include ${AARCH32_SP_MAKE}
412endif
413
414endif
Achin Gupta4f6ad662013-10-25 09:08:21 +0100415
Juan Castillo73c99d42015-08-18 14:23:04 +0100416################################################################################
Varun Wadekar77f1f7a2019-01-31 09:22:30 -0800417# Include libc if not overridden
418################################################################################
419ifeq (${OVERRIDE_LIBC},0)
420include lib/libc/libc.mk
421endif
422
423################################################################################
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000424# Check incompatible options
425################################################################################
426
427ifdef EL3_PAYLOAD_BASE
Antonio Nino Diaz68450a62016-04-06 17:31:57 +0100428 ifdef PRELOADED_BL33_BASE
429 $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
430 incompatible build options. EL3_PAYLOAD_BASE has priority.")
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000431 endif
Qixiang Xu76580f32017-08-24 11:03:23 +0800432 ifneq (${GENERATE_COT},0)
433 $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible build options.")
434 endif
435 ifneq (${TRUSTED_BOARD_BOOT},0)
436 $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are incompatible build options.")
437 endif
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000438endif
439
440ifeq (${NEED_BL33},yes)
441 ifdef EL3_PAYLOAD_BASE
442 $(warning "BL33 image is not needed when option \
443 BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
444 endif
Antonio Nino Diaz68450a62016-04-06 17:31:57 +0100445 ifdef PRELOADED_BL33_BASE
446 $(warning "BL33 image is not needed when option \
447 PRELOADED_BL33_BASE is used and won't be added to the FIP \
448 file.")
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000449 endif
450endif
451
Jeenu Viswambharand4593e42017-01-06 16:14:42 +0000452# When building for systems with hardware-assisted coherency, there's no need to
453# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
454ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
455$(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
456endif
Yatharth Kochar1a0a3f02016-06-28 16:58:26 +0100457
Jiafei Pan7d173fc2018-03-21 07:20:09 +0000458#For now, BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is 1.
459ifeq ($(BL2_AT_EL3)-$(BL2_IN_XIP_MEM),0-1)
460$(error "BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is enabled")
461endif
462
Jeenu Viswambharan14c60162018-04-04 16:07:11 +0100463# For RAS_EXTENSION, require that EAs are handled in EL3 first
464ifeq ($(RAS_EXTENSION),1)
465 ifneq ($(HANDLE_EA_EL3_FIRST),1)
466 $(error For RAS_EXTENSION, HANDLE_EA_EL3_FIRST must also be 1)
467 endif
468endif
469
Jeenu Viswambharan1a7c1cf2017-12-08 12:13:51 +0000470# When FAULT_INJECTION_SUPPORT is used, require that RAS_EXTENSION is enabled
471ifeq ($(FAULT_INJECTION_SUPPORT),1)
472 ifneq ($(RAS_EXTENSION),1)
473 $(error For FAULT_INJECTION_SUPPORT, RAS_EXTENSION must also be 1)
474 endif
475endif
476
Roberto Vargased51b512018-09-24 17:20:48 +0100477# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
Soby Mathew209a60c2018-03-26 12:43:37 +0100478ifeq ($(DYN_DISABLE_AUTH), 1)
479 ifeq (${TRUSTED_BOARD_BOOT}, 0)
480 $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH to be set.")
481 endif
Soby Mathew209a60c2018-03-26 12:43:37 +0100482endif
483
Antonio Nino Diazb86048c2019-02-19 11:53:51 +0000484# If pointer authentication is used in the firmware, make sure that all the
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100485# registers associated to it are also saved and restored.
486# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
Antonio Nino Diazb86048c2019-02-19 11:53:51 +0000487ifeq ($(ENABLE_PAUTH),1)
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100488 ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
489 $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
490 endif
491endif
492
493ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
494 ifneq (${ARCH},aarch64)
495 $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
Alexei Fedorov06715f82019-03-13 11:05:07 +0000496 else
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100497 $(info CTX_INCLUDE_PAUTH_REGS is an experimental feature)
Alexei Fedorov06715f82019-03-13 11:05:07 +0000498 endif
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100499endif
500
501ifeq ($(ENABLE_PAUTH),1)
502 $(info Pointer Authentication is an experimental feature)
503endif
504
505ifeq ($(ENABLE_BTI),1)
506 $(info Branch Protection is an experimental feature)
Antonio Nino Diazb86048c2019-02-19 11:53:51 +0000507endif
508
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000509################################################################################
Juan Castillo73c99d42015-08-18 14:23:04 +0100510# Process platform overrideable behaviour
511################################################################################
Achin Gupta4f6ad662013-10-25 09:08:21 +0100512
Sandrine Bailleux1645d3e2015-12-17 13:58:58 +0000513# Using the ARM Trusted Firmware BL2 implies that a BL33 image also needs to be
Juan Castillo73c99d42015-08-18 14:23:04 +0100514# supplied for the FIP and Certificate generation tools. This flag can be
515# overridden by the platform.
516ifdef BL2_SOURCES
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000517 ifdef EL3_PAYLOAD_BASE
518 # If booting an EL3 payload there is no need for a BL33 image
519 # in the FIP file.
520 NEED_BL33 := no
521 else
Antonio Nino Diaz68450a62016-04-06 17:31:57 +0100522 ifdef PRELOADED_BL33_BASE
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000523 # If booting a BL33 preloaded image there is no need of
524 # another one in the FIP file.
525 NEED_BL33 := no
526 else
527 NEED_BL33 ?= yes
528 endif
529 endif
Juan Castillo73c99d42015-08-18 14:23:04 +0100530endif
531
Masahiro Yamada4d045d02017-04-05 19:11:41 +0900532# If SCP_BL2 is given, we always want FIP to include it.
533ifdef SCP_BL2
534 NEED_SCP_BL2 := yes
535endif
536
Soby Mathew5744e872017-11-14 14:10:10 +0000537# For AArch32, BL31 is not currently supported.
538ifneq (${ARCH},aarch32)
539 ifdef BL31_SOURCES
540 # When booting an EL3 payload, there is no need to compile the BL31 image nor
541 # put it in the FIP.
542 ifndef EL3_PAYLOAD_BASE
543 NEED_BL31 := yes
544 endif
545 endif
546endif
547
Juan Castillo73c99d42015-08-18 14:23:04 +0100548# Process TBB related flags
549ifneq (${GENERATE_COT},0)
550 # Common cert_create options
551 ifneq (${CREATE_KEYS},0)
552 $(eval CRT_ARGS += -n)
Yatharth Kochar01912622015-10-12 12:33:47 +0100553 $(eval FWU_CRT_ARGS += -n)
Juan Castillo73c99d42015-08-18 14:23:04 +0100554 ifneq (${SAVE_KEYS},0)
555 $(eval CRT_ARGS += -k)
Yatharth Kochar01912622015-10-12 12:33:47 +0100556 $(eval FWU_CRT_ARGS += -k)
Juan Castillo73c99d42015-08-18 14:23:04 +0100557 endif
558 endif
559 # Include TBBR makefile (unless the platform indicates otherwise)
560 ifeq (${INCLUDE_TBBR_MK},1)
561 include make_helpers/tbbr/tbbr_tools.mk
562 endif
563endif
564
Masahiro Yamada1c75d5d2016-12-25 13:52:22 +0900565ifneq (${FIP_ALIGN},0)
566FIP_ARGS += --align ${FIP_ALIGN}
567endif
568
Juan Castillo73c99d42015-08-18 14:23:04 +0100569################################################################################
Michalis Pappas46e5e032018-03-20 13:01:27 +0800570# Include libraries' Makefile that are used in all BL
571################################################################################
572
573include lib/stack_protector/stack_protector.mk
574
575################################################################################
dp-arm819281e2016-05-25 16:20:20 +0100576# Auxiliary tools (fiptool, cert_create, etc)
Juan Castillo73c99d42015-08-18 14:23:04 +0100577################################################################################
Harry Liebelf58ad362014-01-10 18:00:33 +0000578
Juan Castillo6f971622014-10-21 11:30:42 +0100579# Variables for use with Certificate Generation Tool
580CRTTOOLPATH ?= tools/cert_create
Evan Lloyd42a45b52015-12-03 11:35:40 +0000581CRTTOOL ?= ${CRTTOOLPATH}/cert_create${BIN_EXT}
Juan Castillo6f971622014-10-21 11:30:42 +0100582
Juan Castillo73c99d42015-08-18 14:23:04 +0100583# Variables for use with Firmware Image Package
dp-arm819281e2016-05-25 16:20:20 +0100584FIPTOOLPATH ?= tools/fiptool
585FIPTOOL ?= ${FIPTOOLPATH}/fiptool${BIN_EXT}
Juan Castillo6f971622014-10-21 11:30:42 +0100586
Antonio Nino Diaz26010da2018-11-27 14:58:04 +0000587# Variables for use with sptool
588SPTOOLPATH ?= tools/sptool
589SPTOOL ?= ${SPTOOLPATH}/sptool${BIN_EXT}
590
Roberto Vargas5accce52018-05-22 16:05:42 +0100591# Variables for use with ROMLIB
592ROMLIBPATH ?= lib/romlib
593
Soby Mathew8a860522017-02-14 10:05:07 +0000594################################################################################
595# Include BL specific makefiles
596################################################################################
597ifdef BL1_SOURCES
598NEED_BL1 := yes
599include bl1/bl1.mk
600endif
601
602ifdef BL2_SOURCES
603NEED_BL2 := yes
604include bl2/bl2.mk
605endif
606
Soby Mathew8a860522017-02-14 10:05:07 +0000607ifdef BL2U_SOURCES
608NEED_BL2U := yes
609include bl2u/bl2u.mk
610endif
611
Soby Mathew5744e872017-11-14 14:10:10 +0000612ifeq (${NEED_BL31},yes)
Soby Mathew8a860522017-02-14 10:05:07 +0000613ifdef BL31_SOURCES
Soby Mathew8a860522017-02-14 10:05:07 +0000614include bl31/bl31.mk
615endif
616endif
Soby Mathew8a860522017-02-14 10:05:07 +0000617
Nishanth Menon03b397a2016-10-14 01:13:57 +0000618ifdef FDT_SOURCES
619NEED_FDT := yes
620endif
621
Juan Castillo73c99d42015-08-18 14:23:04 +0100622################################################################################
623# Build options checks
624################################################################################
Juan Castillob7124ea2014-11-04 17:36:40 +0000625
Sandrine Bailleuxa9bec672015-10-30 15:05:17 +0000626$(eval $(call assert_boolean,COLD_BOOT_SINGLE_CPU))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +0100627$(eval $(call assert_boolean,CREATE_KEYS))
628$(eval $(call assert_boolean,CTX_INCLUDE_AARCH32_REGS))
629$(eval $(call assert_boolean,CTX_INCLUDE_FPREGS))
Antonio Nino Diaz52839622019-01-31 11:58:00 +0000630$(eval $(call assert_boolean,CTX_INCLUDE_PAUTH_REGS))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +0100631$(eval $(call assert_boolean,DEBUG))
Soby Mathew209a60c2018-03-26 12:43:37 +0100632$(eval $(call assert_boolean,DYN_DISABLE_AUTH))
Jeenu Viswambharanc8b55b82018-02-06 07:50:18 +0000633$(eval $(call assert_boolean,EL3_EXCEPTION_HANDLING))
Dimitris Papastamos0319a972017-10-16 11:40:10 +0100634$(eval $(call assert_boolean,ENABLE_AMU))
Antonio Nino Diazcc8b5632017-04-18 15:16:05 +0100635$(eval $(call assert_boolean,ENABLE_ASSERTIONS))
Jeenu Viswambharan5f835912018-07-31 16:13:33 +0100636$(eval $(call assert_boolean,ENABLE_MPAM_FOR_LOWER_ELS))
Soby Mathew3bd17c02018-08-28 11:13:55 +0100637$(eval $(call assert_boolean,ENABLE_PIE))
Yatharth Kochara31d8982016-03-11 14:20:19 +0000638$(eval $(call assert_boolean,ENABLE_PMF))
Yatharth Kochar170fb932016-05-09 18:26:35 +0100639$(eval $(call assert_boolean,ENABLE_PSCI_STAT))
dp-arm872be882016-09-19 11:18:44 +0100640$(eval $(call assert_boolean,ENABLE_RUNTIME_INSTRUMENTATION))
Jeenu Viswambharanc1232c32017-07-19 13:52:12 +0100641$(eval $(call assert_boolean,ENABLE_SPE_FOR_LOWER_ELS))
Antonio Nino Diazaafd8e12018-03-26 15:57:17 +0100642$(eval $(call assert_boolean,ENABLE_SPM))
David Cunado1a853372017-10-20 11:30:57 +0100643$(eval $(call assert_boolean,ENABLE_SVE_FOR_NS))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +0100644$(eval $(call assert_boolean,ERROR_DEPRECATED))
Jeenu Viswambharan1a7c1cf2017-12-08 12:13:51 +0000645$(eval $(call assert_boolean,FAULT_INJECTION_SUPPORT))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +0100646$(eval $(call assert_boolean,GENERATE_COT))
Jeenu Viswambharan74dce7f2017-09-22 08:32:09 +0100647$(eval $(call assert_boolean,GICV2_G0_FOR_EL3))
Jeenu Viswambharan76454ab2017-11-30 12:54:15 +0000648$(eval $(call assert_boolean,HANDLE_EA_EL3_FIRST))
Jeenu Viswambharan3c251af2017-01-04 13:51:42 +0000649$(eval $(call assert_boolean,HW_ASSISTED_COHERENCY))
Julius Werner9536bae2017-07-31 18:15:11 -0700650$(eval $(call assert_boolean,MULTI_CONSOLE_API))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +0100651$(eval $(call assert_boolean,NS_TIMER_SWITCH))
Varun Wadekar77f1f7a2019-01-31 09:22:30 -0800652$(eval $(call assert_boolean,OVERRIDE_LIBC))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +0100653$(eval $(call assert_boolean,PL011_GENERIC_UART))
654$(eval $(call assert_boolean,PROGRAMMABLE_RESET_ADDRESS))
655$(eval $(call assert_boolean,PSCI_EXTENDED_STATE_ID))
Jeenu Viswambharan14c60162018-04-04 16:07:11 +0100656$(eval $(call assert_boolean,RAS_EXTENSION))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +0100657$(eval $(call assert_boolean,RESET_TO_BL31))
658$(eval $(call assert_boolean,SAVE_KEYS))
659$(eval $(call assert_boolean,SEPARATE_CODE_AND_RODATA))
660$(eval $(call assert_boolean,SPIN_ON_BL1_EXIT))
Antonio Nino Diaz8855e522019-01-21 11:53:29 +0000661$(eval $(call assert_boolean,SPM_MM))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +0100662$(eval $(call assert_boolean,TRUSTED_BOARD_BOOT))
663$(eval $(call assert_boolean,USE_COHERENT_MEM))
Roberto Vargas5accce52018-05-22 16:05:42 +0100664$(eval $(call assert_boolean,USE_ROMLIB))
Masahiro Yamadabb41eb72017-05-22 12:11:24 +0900665$(eval $(call assert_boolean,USE_TBBR_DEFS))
Soby Mathewbcc3c492017-04-10 22:35:42 +0100666$(eval $(call assert_boolean,WARMBOOT_ENABLE_DCACHE_EARLY))
Roberto Vargasb1d27b42017-10-30 14:43:43 +0000667$(eval $(call assert_boolean,BL2_AT_EL3))
Jiafei Pan7d173fc2018-03-21 07:20:09 +0000668$(eval $(call assert_boolean,BL2_IN_XIP_MEM))
Juan Castillo73c99d42015-08-18 14:23:04 +0100669
Jeenu Viswambharanc877b412017-01-16 16:52:35 +0000670$(eval $(call assert_numeric,ARM_ARCH_MAJOR))
671$(eval $(call assert_numeric,ARM_ARCH_MINOR))
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100672$(eval $(call assert_numeric,BRANCH_PROTECTION))
Jeenu Viswambharanc877b412017-01-16 16:52:35 +0000673
Juan Castillo73c99d42015-08-18 14:23:04 +0100674################################################################################
675# Add definitions to the cpp preprocessor based on the current build options.
676# This is done after including the platform specific makefile to allow the
677# platform to overwrite the default options
678################################################################################
679
Jeenu Viswambharanc877b412017-01-16 16:52:35 +0000680$(eval $(call add_define,ARM_ARCH_MAJOR))
681$(eval $(call add_define,ARM_ARCH_MINOR))
Sandrine Bailleuxa9bec672015-10-30 15:05:17 +0000682$(eval $(call add_define,COLD_BOOT_SINGLE_CPU))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +0100683$(eval $(call add_define,CTX_INCLUDE_AARCH32_REGS))
684$(eval $(call add_define,CTX_INCLUDE_FPREGS))
Antonio Nino Diaz52839622019-01-31 11:58:00 +0000685$(eval $(call add_define,CTX_INCLUDE_PAUTH_REGS))
Jeenu Viswambharanc8b55b82018-02-06 07:50:18 +0000686$(eval $(call add_define,EL3_EXCEPTION_HANDLING))
Dimitris Papastamos0319a972017-10-16 11:40:10 +0100687$(eval $(call add_define,ENABLE_AMU))
Antonio Nino Diazcc8b5632017-04-18 15:16:05 +0100688$(eval $(call add_define,ENABLE_ASSERTIONS))
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100689$(eval $(call add_define,ENABLE_BTI))
Jeenu Viswambharan5f835912018-07-31 16:13:33 +0100690$(eval $(call add_define,ENABLE_MPAM_FOR_LOWER_ELS))
Antonio Nino Diazb86048c2019-02-19 11:53:51 +0000691$(eval $(call add_define,ENABLE_PAUTH))
Soby Mathew3bd17c02018-08-28 11:13:55 +0100692$(eval $(call add_define,ENABLE_PIE))
Yatharth Kochara31d8982016-03-11 14:20:19 +0000693$(eval $(call add_define,ENABLE_PMF))
Yatharth Kochar170fb932016-05-09 18:26:35 +0100694$(eval $(call add_define,ENABLE_PSCI_STAT))
dp-arm872be882016-09-19 11:18:44 +0100695$(eval $(call add_define,ENABLE_RUNTIME_INSTRUMENTATION))
Jeenu Viswambharanc1232c32017-07-19 13:52:12 +0100696$(eval $(call add_define,ENABLE_SPE_FOR_LOWER_ELS))
Antonio Nino Diazaafd8e12018-03-26 15:57:17 +0100697$(eval $(call add_define,ENABLE_SPM))
David Cunado1a853372017-10-20 11:30:57 +0100698$(eval $(call add_define,ENABLE_SVE_FOR_NS))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +0100699$(eval $(call add_define,ERROR_DEPRECATED))
Jeenu Viswambharan1a7c1cf2017-12-08 12:13:51 +0000700$(eval $(call add_define,FAULT_INJECTION_SUPPORT))
Jeenu Viswambharan74dce7f2017-09-22 08:32:09 +0100701$(eval $(call add_define,GICV2_G0_FOR_EL3))
Jeenu Viswambharan76454ab2017-11-30 12:54:15 +0000702$(eval $(call add_define,HANDLE_EA_EL3_FIRST))
Jeenu Viswambharan3c251af2017-01-04 13:51:42 +0000703$(eval $(call add_define,HW_ASSISTED_COHERENCY))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +0100704$(eval $(call add_define,LOG_LEVEL))
Julius Werner9536bae2017-07-31 18:15:11 -0700705$(eval $(call add_define,MULTI_CONSOLE_API))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +0100706$(eval $(call add_define,NS_TIMER_SWITCH))
707$(eval $(call add_define,PL011_GENERIC_UART))
708$(eval $(call add_define,PLAT_${PLAT}))
709$(eval $(call add_define,PROGRAMMABLE_RESET_ADDRESS))
710$(eval $(call add_define,PSCI_EXTENDED_STATE_ID))
Jeenu Viswambharan14c60162018-04-04 16:07:11 +0100711$(eval $(call add_define,RAS_EXTENSION))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +0100712$(eval $(call add_define,RESET_TO_BL31))
713$(eval $(call add_define,SEPARATE_CODE_AND_RODATA))
Daniel Boulby1dcc28c2018-09-18 11:45:51 +0100714$(eval $(call add_define,RECLAIM_INIT_CODE))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +0100715$(eval $(call add_define,SPD_${SPD}))
716$(eval $(call add_define,SPIN_ON_BL1_EXIT))
Antonio Nino Diaz8855e522019-01-21 11:53:29 +0000717$(eval $(call add_define,SPM_MM))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +0100718$(eval $(call add_define,TRUSTED_BOARD_BOOT))
719$(eval $(call add_define,USE_COHERENT_MEM))
Roberto Vargas5accce52018-05-22 16:05:42 +0100720$(eval $(call add_define,USE_ROMLIB))
Masahiro Yamadabb41eb72017-05-22 12:11:24 +0900721$(eval $(call add_define,USE_TBBR_DEFS))
Soby Mathewbcc3c492017-04-10 22:35:42 +0100722$(eval $(call add_define,WARMBOOT_ENABLE_DCACHE_EARLY))
Roberto Vargasb1d27b42017-10-30 14:43:43 +0000723$(eval $(call add_define,BL2_AT_EL3))
Jiafei Pan7d173fc2018-03-21 07:20:09 +0000724$(eval $(call add_define,BL2_IN_XIP_MEM))
Jeenu Viswambharan2fae4b12016-10-24 14:31:51 +0100725
Sandrine Bailleux4c117f62015-11-26 16:31:34 +0000726# Define the EL3_PAYLOAD_BASE flag only if it is provided.
727ifdef EL3_PAYLOAD_BASE
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000728 $(eval $(call add_define,EL3_PAYLOAD_BASE))
729else
Antonio Nino Diaz68450a62016-04-06 17:31:57 +0100730 # Define the PRELOADED_BL33_BASE flag only if it is provided and
731 # EL3_PAYLOAD_BASE is not defined, as it has priority.
732 ifdef PRELOADED_BL33_BASE
733 $(eval $(call add_define,PRELOADED_BL33_BASE))
Antonio Nino Diazcf2c8a32016-02-15 14:53:10 +0000734 endif
Sandrine Bailleux4c117f62015-11-26 16:31:34 +0000735endif
Soby Mathew031dbb12016-05-09 17:49:55 +0100736# Define the AARCH32/AARCH64 flag based on the ARCH flag
737ifeq (${ARCH},aarch32)
738 $(eval $(call add_define,AARCH32))
739else
740 $(eval $(call add_define,AARCH64))
741endif
Juan Castillo73c99d42015-08-18 14:23:04 +0100742
Soby Mathew209a60c2018-03-26 12:43:37 +0100743# Define the DYN_DISABLE_AUTH flag only if set.
744ifeq (${DYN_DISABLE_AUTH},1)
745$(eval $(call add_define,DYN_DISABLE_AUTH))
746endif
747
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800748ifneq ($(findstring armlink,$(notdir $(LD))),)
749$(eval $(call add_define,USE_ARM_LINK))
750endif
751
Juan Castillo73c99d42015-08-18 14:23:04 +0100752################################################################################
Juan Castillo73c99d42015-08-18 14:23:04 +0100753# Build targets
754################################################################################
755
Antonio Nino Diaz26010da2018-11-27 14:58:04 +0000756.PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip fwu_fip certtool dtbs
Juan Castillo73c99d42015-08-18 14:23:04 +0100757.SUFFIXES:
758
759all: msg_start
760
761msg_start:
762 @echo "Building ${PLAT}"
763
Dan Handleybc1a03c2018-02-27 16:03:58 +0000764# Check if deprecated declarations and cpp warnings should be treated as error or not.
Soby Mathew7a24cba2015-10-26 14:29:21 +0000765ifeq (${ERROR_DEPRECATED},0)
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800766ifneq ($(findstring clang,$(notdir $(CC))),)
767 CPPFLAGS += -Wno-error=deprecated-declarations
768else
Dan Handleybc1a03c2018-02-27 16:03:58 +0000769 CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
Soby Mathew7a24cba2015-10-26 14:29:21 +0000770endif
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800771endif
Soby Mathew7a24cba2015-10-26 14:29:21 +0000772
Roberto Vargas5accce52018-05-22 16:05:42 +0100773$(eval $(call MAKE_LIB_DIRS))
Roberto Vargas61f72a32018-05-08 10:27:10 +0100774$(eval $(call MAKE_LIB,c))
Roberto Vargas5fee0282018-05-08 10:27:10 +0100775
Juan Castillo73c99d42015-08-18 14:23:04 +0100776# Expand build macros for the different images
777ifeq (${NEED_BL1},yes)
778$(eval $(call MAKE_BL,1))
779endif
780
781ifeq (${NEED_BL2},yes)
Roberto Vargasc9b31ae2018-01-02 11:23:41 +0000782ifeq (${BL2_AT_EL3}, 0)
783FIP_BL2_ARGS := tb-fw
784endif
785
Masahiro Yamada33950dd2018-01-26 11:42:01 +0900786$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
Roberto Vargasc9b31ae2018-01-02 11:23:41 +0000787 $(eval $(call MAKE_BL,2,${FIP_BL2_ARGS})))
Juan Castillo73c99d42015-08-18 14:23:04 +0100788endif
789
Masahiro Yamada4d045d02017-04-05 19:11:41 +0900790ifeq (${NEED_SCP_BL2},yes)
Masahiro Yamada33950dd2018-01-26 11:42:01 +0900791$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
Masahiro Yamada4d045d02017-04-05 19:11:41 +0900792endif
793
Juan Castillo73c99d42015-08-18 14:23:04 +0100794ifeq (${NEED_BL31},yes)
795BL31_SOURCES += ${SPD_SOURCES}
Masahiro Yamada33950dd2018-01-26 11:42:01 +0900796$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
Juan Castillo8f0617e2016-01-05 11:55:36 +0000797 $(eval $(call MAKE_BL,31,soc-fw)))
Juan Castillo73c99d42015-08-18 14:23:04 +0100798endif
799
Juan Castillo70d1fc52015-11-12 10:59:26 +0000800# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
Masahiro Yamadac939d132018-01-26 11:42:01 +0900801# build system will call TOOL_ADD_IMG to print a warning message and abort the
Juan Castillo70d1fc52015-11-12 10:59:26 +0000802# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castillo73c99d42015-08-18 14:23:04 +0100803ifeq (${NEED_BL32},yes)
Masahiro Yamada9cd15232018-01-26 11:42:01 +0900804
805BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
806
807$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,32,tos-fw)),\
Masahiro Yamada33950dd2018-01-26 11:42:01 +0900808 $(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
Juan Castillo73c99d42015-08-18 14:23:04 +0100809endif
810
811# Add the BL33 image if required by the platform
812ifeq (${NEED_BL33},yes)
Masahiro Yamada33950dd2018-01-26 11:42:01 +0900813$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Juan Castillodb6071c2015-01-13 12:21:04 +0000814endif
815
Yatharth Kochar9003fa02015-10-14 15:27:24 +0100816ifeq (${NEED_BL2U},yes)
Masahiro Yamada33950dd2018-01-26 11:42:01 +0900817$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
Masahiro Yamada1dc07142018-01-26 11:42:01 +0900818 $(eval $(call MAKE_BL,2u,ap-fwu-cfg,FWU_)))
Yatharth Kochar9003fa02015-10-14 15:27:24 +0100819endif
820
Nishanth Menon03b397a2016-10-14 01:13:57 +0000821# Expand build macros for the different images
822ifeq (${NEED_FDT},yes)
Soby Mathew38c14d82017-12-14 17:44:56 +0000823 $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
Nishanth Menon03b397a2016-10-14 01:13:57 +0000824endif
825
Ian Spray36eaaf32014-01-30 17:25:28 +0000826locate-checkpatch:
827ifndef CHECKPATCH
Etienne Carriere66079b02017-08-23 15:44:01 +0200828 $(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 +0000829else
830ifeq (,$(wildcard ${CHECKPATCH}))
Etienne Carriere66079b02017-08-23 15:44:01 +0200831 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
Ian Spray36eaaf32014-01-30 17:25:28 +0000832endif
833endif
834
Achin Gupta4f6ad662013-10-25 09:08:21 +0100835clean:
Juan Castillo73c99d42015-08-18 14:23:04 +0100836 @echo " CLEAN"
Evan Lloydf1477d42015-12-02 18:33:55 +0000837 $(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Juan Castillo73c99d42015-08-18 14:23:04 +0100838 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
839 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Roberto Vargas5accce52018-05-22 16:05:42 +0100840 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +0100841
James Morrisseyeaaeece2013-11-01 13:56:59 +0000842realclean distclean:
Juan Castillo73c99d42015-08-18 14:23:04 +0100843 @echo " REALCLEAN"
Evan Lloydf1477d42015-12-02 18:33:55 +0000844 $(call SHELL_REMOVE_DIR,${BUILD_BASE})
845 $(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Juan Castillo73c99d42015-08-18 14:23:04 +0100846 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Antonio Nino Diaz26010da2018-11-27 14:58:04 +0000847 ${Q}${MAKE} --no-print-directory -C ${SPTOOLPATH} clean
Juan Castillo73c99d42015-08-18 14:23:04 +0100848 ${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
Roberto Vargas5accce52018-05-22 16:05:42 +0100849 ${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +0100850
Ian Spray36eaaf32014-01-30 17:25:28 +0000851checkcodebase: locate-checkpatch
Juan Castillo73c99d42015-08-18 14:23:04 +0100852 @echo " CHECKING STYLE"
Dan Handley1a41e8c2016-06-02 18:21:02 +0100853 @if test -d .git ; then \
Paul Beesley1ef35512019-03-07 16:42:31 +0000854 git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' | \
Dan Handley1a41e8c2016-06-02 18:21:02 +0100855 while read GIT_FILE ; \
856 do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; \
857 done ; \
858 else \
859 find . -type f -not -iwholename "*.git*" \
860 -not -iwholename "*build*" \
861 -not -iwholename "*libfdt*" \
Roberto Vargas61f72a32018-05-08 10:27:10 +0100862 -not -iwholename "*libc*" \
Dan Handley1a41e8c2016-06-02 18:21:02 +0100863 -not -iwholename "*docs*" \
Paul Beesley1ef35512019-03-07 16:42:31 +0000864 -not -iwholename "*.rst" \
Dan Handley1a41e8c2016-06-02 18:21:02 +0100865 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
866 fi
Ian Spray36eaaf32014-01-30 17:25:28 +0000867
868checkpatch: locate-checkpatch
Juan Castillo73c99d42015-08-18 14:23:04 +0100869 @echo " CHECKING STYLE"
Yann Gautier02a76d52019-03-08 15:44:00 +0100870 @if test -n "${CHECKPATCH_OPTS}"; then \
871 echo " with ${CHECKPATCH_OPTS} option(s)"; \
872 fi
Antonio Nino Diaz51d28932018-01-29 12:00:31 +0000873 ${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT}); \
874 for commit in `git rev-list $$COMMON_COMMIT..HEAD`; do \
875 printf "\n[*] Checking style of '$$commit'\n\n"; \
876 git log --format=email "$$commit~..$$commit" \
Yann Gautier02a76d52019-03-08 15:44:00 +0100877 -- ${CHECK_PATHS} | \
878 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz51d28932018-01-29 12:00:31 +0000879 git diff --format=email "$$commit~..$$commit" \
Yann Gautier02a76d52019-03-08 15:44:00 +0100880 -- ${CHECK_PATHS} | \
881 ${CHECKPATCH} ${CHECKPATCH_OPTS} - || true; \
Antonio Nino Diaz51d28932018-01-29 12:00:31 +0000882 done
Juan Castillo73c99d42015-08-18 14:23:04 +0100883
884certtool: ${CRTTOOL}
Ian Spray36eaaf32014-01-30 17:25:28 +0000885
Juan Castillo6f971622014-10-21 11:30:42 +0100886.PHONY: ${CRTTOOL}
887${CRTTOOL}:
Masahiro Yamadabb41eb72017-05-22 12:11:24 +0900888 ${Q}${MAKE} PLAT=${PLAT} USE_TBBR_DEFS=${USE_TBBR_DEFS} --no-print-directory -C ${CRTTOOLPATH}
Evan Lloydf1477d42015-12-02 18:33:55 +0000889 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +0100890 @echo "Built $@ successfully"
Evan Lloydf1477d42015-12-02 18:33:55 +0000891 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +0100892
893ifneq (${GENERATE_COT},0)
894certificates: ${CRT_DEPS} ${CRTTOOL}
895 ${Q}${CRTTOOL} ${CRT_ARGS}
Evan Lloydf1477d42015-12-02 18:33:55 +0000896 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +0100897 @echo "Built $@ successfully"
898 @echo "Certificates can be found in ${BUILD_PLAT}"
Evan Lloydf1477d42015-12-02 18:33:55 +0000899 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +0100900endif
901
902${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
dp-arm819281e2016-05-25 16:20:20 +0100903 ${Q}${FIPTOOL} create ${FIP_ARGS} $@
904 ${Q}${FIPTOOL} info $@
Evan Lloydf1477d42015-12-02 18:33:55 +0000905 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +0100906 @echo "Built $@ successfully"
Evan Lloydf1477d42015-12-02 18:33:55 +0000907 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +0100908
Yatharth Kochar01912622015-10-12 12:33:47 +0100909ifneq (${GENERATE_COT},0)
910fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
911 ${Q}${CRTTOOL} ${FWU_CRT_ARGS}
Evan Lloyd052ab522017-04-11 16:52:00 +0100912 @${ECHO_BLANK_LINE}
Yatharth Kochar01912622015-10-12 12:33:47 +0100913 @echo "Built $@ successfully"
914 @echo "FWU certificates can be found in ${BUILD_PLAT}"
Evan Lloyd052ab522017-04-11 16:52:00 +0100915 @${ECHO_BLANK_LINE}
Yatharth Kochar01912622015-10-12 12:33:47 +0100916endif
917
918${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
dp-arm819281e2016-05-25 16:20:20 +0100919 ${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
920 ${Q}${FIPTOOL} info $@
Evan Lloyd052ab522017-04-11 16:52:00 +0100921 @${ECHO_BLANK_LINE}
Yatharth Kochar01912622015-10-12 12:33:47 +0100922 @echo "Built $@ successfully"
Evan Lloyd052ab522017-04-11 16:52:00 +0100923 @${ECHO_BLANK_LINE}
Yatharth Kochar01912622015-10-12 12:33:47 +0100924
Juan Castillo73c99d42015-08-18 14:23:04 +0100925fiptool: ${FIPTOOL}
926fip: ${BUILD_PLAT}/${FIP_NAME}
Yatharth Kochar01912622015-10-12 12:33:47 +0100927fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
Juan Castillo6f971622014-10-21 11:30:42 +0100928
Sandrine Bailleux07deed42014-10-27 17:10:46 +0000929.PHONY: ${FIPTOOL}
Harry Liebelf58ad362014-01-10 18:00:33 +0000930${FIPTOOL}:
dp-arm819281e2016-05-25 16:20:20 +0100931 ${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" --no-print-directory -C ${FIPTOOLPATH}
Harry Liebelf58ad362014-01-10 18:00:33 +0000932
Antonio Nino Diaz26010da2018-11-27 14:58:04 +0000933sptool: ${SPTOOL}
934.PHONY: ${SPTOOL}
935${SPTOOL}:
936 ${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" --no-print-directory -C ${SPTOOLPATH}
937
Roberto Vargas5accce52018-05-22 16:05:42 +0100938.PHONY: libraries
939romlib.bin: libraries
John Tsichritzisbbb24f62019-05-21 15:47:37 +0100940 ${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 Vargas5accce52018-05-22 16:05:42 +0100941
Joakim Bech35fab8c2014-01-23 14:51:49 +0100942cscope:
943 @echo " CSCOPE"
944 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
945 ${Q}cscope -b -q -k
946
Ryan Harkin72ee3312014-01-15 16:55:07 +0000947help:
John Tsichritzis7c231262019-05-21 15:57:31 +0100948 @echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
Ryan Harkin72ee3312014-01-15 16:55:07 +0000949 @echo ""
950 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleux08c7ed02014-03-21 13:16:35 +0000951 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +0000952 @echo ""
John Tsichritzis7c231262019-05-21 15:57:31 +0100953 @echo "platform = ${PLATFORM_LIST}"
954 @echo ""
Sandrine Bailleux1b578592015-02-18 16:18:00 +0000955 @echo "Please refer to the User Guide for a list of all supported options."
956 @echo "Note that the build system doesn't track dependencies for build "
957 @echo "options. Therefore, if any of the build options are changed "
958 @echo "from a previous build, a clean build must be performed."
959 @echo ""
Ryan Harkin72ee3312014-01-15 16:55:07 +0000960 @echo "Supported Targets:"
Sandrine Bailleux1b578592015-02-18 16:18:00 +0000961 @echo " all Build all individual bootloader binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +0000962 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +0000963 @echo " bl2 Build the BL2 binary"
Yatharth Kochar9003fa02015-10-14 15:27:24 +0100964 @echo " bl2u Build the BL2U binary"
Juan Castillod1786372015-12-14 09:35:25 +0000965 @echo " bl31 Build the BL31 binary"
Soby Mathew9d29c222016-05-05 14:33:33 +0100966 @echo " bl32 Build the BL32 binary. If ARCH=aarch32, then "
967 @echo " this builds secure payload specified by AARCH32_SP"
Juan Castillo73c99d42015-08-18 14:23:04 +0100968 @echo " certificates Build the certificates (requires 'GENERATE_COT=1')"
Sandrine Bailleux1b578592015-02-18 16:18:00 +0000969 @echo " fip Build the Firmware Image Package (FIP)"
Yatharth Kochar01912622015-10-12 12:33:47 +0100970 @echo " fwu_fip Build the FWU Firmware Image Package (FIP)"
Ian Spray36eaaf32014-01-30 17:25:28 +0000971 @echo " checkcodebase Check the coding style of the entire source tree"
972 @echo " checkpatch Check the coding style on changes in the current"
973 @echo " branch against BASE_COMMIT (default origin/master)"
974 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +0000975 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +0000976 @echo " distclean Remove all build artifacts for all platforms"
Juan Castillo6f971622014-10-21 11:30:42 +0100977 @echo " certtool Build the Certificate generation tool"
Andreas Färber59dead22016-10-10 05:18:49 +0200978 @echo " fiptool Build the Firmware Image Package (FIP) creation tool"
Antonio Nino Diaz26010da2018-11-27 14:58:04 +0000979 @echo " sptool Build the Secure Partition Package creation tool"
Soby Mathew38c14d82017-12-14 17:44:56 +0000980 @echo " dtbs Build the Device Tree Blobs (if required for the platform)"
Ryan Harkin72ee3312014-01-15 16:55:07 +0000981 @echo ""
Sandrine Bailleux1b578592015-02-18 16:18:00 +0000982 @echo "Note: most build targets require PLAT to be set to a specific platform."
Ryan Harkin72ee3312014-01-15 16:55:07 +0000983 @echo ""
984 @echo "example: build all targets for the FVP platform:"
985 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"