xref: /rk3399_ARM-atf/Makefile (revision ebac6922d1f6fc16c5d3953dfb512553001dcdd3)
1#
2# Copyright (c) 2013-2022, Arm Limited and Contributors. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7#
8# Trusted Firmware Version
9#
10VERSION_MAJOR			:= 2
11VERSION_MINOR			:= 8
12VERSION				:= ${VERSION_MAJOR}.${VERSION_MINOR}
13
14# Default goal is build all images
15.DEFAULT_GOAL			:= all
16
17# 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
22MAKE_HELPERS_DIRECTORY := make_helpers/
23include ${MAKE_HELPERS_DIRECTORY}build_macros.mk
24include ${MAKE_HELPERS_DIRECTORY}build_env.mk
25
26################################################################################
27# Default values for build configurations, and their dependencies
28################################################################################
29
30include ${MAKE_HELPERS_DIRECTORY}defaults.mk
31
32# Assertions enabled for DEBUG builds by default
33ENABLE_ASSERTIONS		:= ${DEBUG}
34ENABLE_PMF			:= ${ENABLE_RUNTIME_INSTRUMENTATION}
35PLAT				:= ${DEFAULT_PLAT}
36
37################################################################################
38# Checkpatch script options
39################################################################################
40
41CHECKCODE_ARGS		:=	--no-patch
42# Do not check the coding style on imported library files or documentation files
43INC_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/*)))
50INC_LIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
51					include/lib/libfdt		\
52					include/lib/libc,		\
53					$(wildcard include/lib/*)))
54INC_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
55					include/lib			\
56					include/drivers,		\
57					$(wildcard include/*)))
58LIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
59					lib/compiler-rt			\
60					lib/libfdt%			\
61					lib/libc,			\
62					lib/zlib			\
63					$(wildcard lib/*)))
64ROOT_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
65					lib				\
66					include				\
67					docs				\
68					%.rst,				\
69					$(wildcard *)))
70CHECK_PATHS		:=	${ROOT_DIRS_TO_CHECK}			\
71				${INC_DIRS_TO_CHECK}			\
72				${INC_LIB_DIRS_TO_CHECK}		\
73				${LIB_DIRS_TO_CHECK}			\
74				${INC_DRV_DIRS_TO_CHECK}		\
75				${INC_ARM_DIRS_TO_CHECK}
76
77
78################################################################################
79# Process build options
80################################################################################
81
82# Verbose flag
83ifeq (${V},0)
84        Q:=@
85        ECHO:=@echo
86        CHECKCODE_ARGS	+=	--no-summary --terse
87else
88        Q:=
89        ECHO:=$(ECHO_QUIET)
90endif
91
92ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
93        Q:=@
94        ECHO:=$(ECHO_QUIET)
95endif
96
97export Q ECHO
98
99# 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
103        FWU_FIP_DEPS += fwu_certificates
104endif
105
106# 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
126else ifeq (${BRANCH_PROTECTION},4)
127	# Turn on branch target identification mechanism
128	BP_OPTION := bti
129	ENABLE_BTI := 1
130else
131        $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
132endif
133
134# 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
140# RME doesn't support BRBE
141ifneq (${ENABLE_BRBE_FOR_NS},0)
142        $(error ENABLE_RME does not support BRBE.)
143endif
144# 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
152ARM_ARCH_MINOR := 5
153ENABLE_FEAT_ECV = 1
154ENABLE_FEAT_FGT = 1
155
156endif
157
158# USE_SPINLOCK_CAS requires AArch64 build
159ifeq (${USE_SPINLOCK_CAS},1)
160ifneq (${ARCH},aarch64)
161        $(error USE_SPINLOCK_CAS requires AArch64)
162endif
163endif
164
165# USE_DEBUGFS experimental feature recommended only in debug builds
166ifeq (${USE_DEBUGFS},1)
167ifeq (${DEBUG},1)
168        $(warning DEBUGFS experimental feature is enabled.)
169else
170        $(warning DEBUGFS experimental, recommended in DEBUG builds ONLY)
171endif
172endif
173
174ifneq (${DECRYPTION_SUPPORT},none)
175ENC_ARGS += -f ${FW_ENC_STATUS}
176ENC_ARGS += -k ${ENC_KEY}
177ENC_ARGS += -n ${ENC_NONCE}
178FIP_DEPS += enctool
179FWU_FIP_DEPS += enctool
180endif
181
182################################################################################
183# Toolchain
184################################################################################
185
186HOSTCC			:=	gcc
187export HOSTCC
188
189CC			:=	${CROSS_COMPILE}gcc
190CPP			:=	${CROSS_COMPILE}cpp
191AS			:=	${CROSS_COMPILE}gcc
192AR			:=	${CROSS_COMPILE}ar
193LINKER			:=	${CROSS_COMPILE}ld
194OC			:=	${CROSS_COMPILE}objcopy
195OD			:=	${CROSS_COMPILE}objdump
196NM			:=	${CROSS_COMPILE}nm
197PP			:=	${CROSS_COMPILE}gcc -E
198DTC			:=	dtc
199
200# Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH).
201ifneq ($(strip $(wildcard ${LD}.bfd) \
202	$(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),)
203LINKER			:=	${LINKER}.bfd
204endif
205
206ifeq (${ARM_ARCH_MAJOR},7)
207target32-directive	= 	-target arm-none-eabi
208# Will set march32-directive from platform configuration
209else
210target32-directive	= 	-target armv8a-none-eabi
211
212# Set the compiler's target architecture profile based on
213# ARM_ARCH_MAJOR ARM_ARCH_MINOR options
214ifeq (${ARM_ARCH_MINOR},0)
215march32-directive	= 	-march=armv${ARM_ARCH_MAJOR}-a
216march64-directive	= 	-march=armv${ARM_ARCH_MAJOR}-a
217else
218march32-directive	= 	-march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a
219march64-directive	= 	-march=armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a
220endif
221endif
222
223# Memory tagging is supported in architecture Armv8.5-A AArch64 and onwards
224ifeq ($(ARCH), aarch64)
225# Check if revision is greater than or equal to 8.5
226ifeq "8.5" "$(word 1, $(sort 8.5 $(ARM_ARCH_MAJOR).$(ARM_ARCH_MINOR)))"
227mem_tag_arch_support	= 	yes
228endif
229endif
230
231# Get architecture feature modifiers
232arch-features		=	${ARM_ARCH_FEATURE}
233
234# Enable required options for memory stack tagging.
235# Currently, these options are enabled only for clang and armclang compiler.
236ifeq (${SUPPORT_STACK_MEMTAG},yes)
237ifdef mem_tag_arch_support
238# Check for armclang and clang compilers
239ifneq ( ,$(filter $(notdir $(CC)),armclang clang))
240# Add "memtag" architecture feature modifier if not specified
241ifeq ( ,$(findstring memtag,$(arch-features)))
242arch-features       	:=       $(arch-features)+memtag
243endif	# memtag
244ifeq ($(notdir $(CC)),armclang)
245TF_CFLAGS		+=	-mmemtag-stack
246else ifeq ($(notdir $(CC)),clang)
247TF_CFLAGS		+=	-fsanitize=memtag
248endif	# armclang
249endif	# armclang clang
250else
251$(error "Error: stack memory tagging is not supported for architecture \
252	${ARCH},armv${ARM_ARCH_MAJOR}.${ARM_ARCH_MINOR}-a")
253endif	# mem_tag_arch_support
254endif	# SUPPORT_STACK_MEMTAG
255
256# Set the compiler's architecture feature modifiers
257ifneq ($(arch-features), none)
258# Strip "none+" from arch-features
259arch-features		:=	$(subst none+,,$(arch-features))
260ifeq ($(ARCH), aarch32)
261march32-directive	:=	$(march32-directive)+$(arch-features)
262else
263march64-directive	:=	$(march64-directive)+$(arch-features)
264endif
265# Print features
266$(info Arm Architecture Features specified: $(subst +, ,$(arch-features)))
267endif	# arch-features
268
269# Determine if FEAT_RNG is supported
270ENABLE_FEAT_RNG		=	$(if $(findstring rng,${arch-features}),1,0)
271
272# Determine if FEAT_SB is supported
273ENABLE_FEAT_SB		=	$(if $(findstring sb,${arch-features}),1,0)
274
275ifneq ($(findstring clang,$(notdir $(CC))),)
276	ifneq ($(findstring armclang,$(notdir $(CC))),)
277		TF_CFLAGS_aarch32	:=	-target arm-arm-none-eabi $(march32-directive)
278		TF_CFLAGS_aarch64	:=	-target aarch64-arm-none-eabi $(march64-directive)
279		LD			:=	$(LINKER)
280	else
281		TF_CFLAGS_aarch32	=	$(target32-directive) $(march32-directive)
282		TF_CFLAGS_aarch64	:=	-target aarch64-elf $(march64-directive)
283		LD			:=	$(shell $(CC) --print-prog-name ld.lld)
284
285		AR			:=	$(shell $(CC) --print-prog-name llvm-ar)
286		OD			:=	$(shell $(CC) --print-prog-name llvm-objdump)
287		OC			:=	$(shell $(CC) --print-prog-name llvm-objcopy)
288	endif
289
290	CPP		:=	$(CC) -E $(TF_CFLAGS_$(ARCH))
291	PP		:=	$(CC) -E $(TF_CFLAGS_$(ARCH))
292	AS		:=	$(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
293else ifneq ($(findstring gcc,$(notdir $(CC))),)
294TF_CFLAGS_aarch32	=	$(march32-directive)
295TF_CFLAGS_aarch64	=	$(march64-directive)
296ifeq ($(ENABLE_LTO),1)
297	# Enable LTO only for aarch64
298	ifeq (${ARCH},aarch64)
299		LTO_CFLAGS	=	-flto
300		# Use gcc as a wrapper for the ld, recommended for LTO
301		LINKER		:=	${CROSS_COMPILE}gcc
302	endif
303endif
304LD			=	$(LINKER)
305else
306TF_CFLAGS_aarch32	=	$(march32-directive)
307TF_CFLAGS_aarch64	=	$(march64-directive)
308LD			=	$(LINKER)
309endif
310
311# Process Debug flag
312$(eval $(call add_define,DEBUG))
313ifneq (${DEBUG}, 0)
314        BUILD_TYPE	:=	debug
315        TF_CFLAGS	+=	-g -gdwarf-4
316        ASFLAGS		+=	-g -Wa,-gdwarf-4
317
318        # Use LOG_LEVEL_INFO by default for debug builds
319        LOG_LEVEL	:=	40
320else
321        BUILD_TYPE	:=	release
322        # Use LOG_LEVEL_NOTICE by default for release builds
323        LOG_LEVEL	:=	20
324endif
325
326# Default build string (git branch and commit)
327ifeq (${BUILD_STRING},)
328        BUILD_STRING  :=  $(shell git describe --always --dirty --tags 2> /dev/null)
329endif
330VERSION_STRING    :=  v${VERSION}(${BUILD_TYPE}):${BUILD_STRING}
331
332ifeq (${AARCH32_INSTRUCTION_SET},A32)
333TF_CFLAGS_aarch32	+=	-marm
334else ifeq (${AARCH32_INSTRUCTION_SET},T32)
335TF_CFLAGS_aarch32	+=	-mthumb
336else
337$(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
338endif
339
340TF_CFLAGS_aarch32	+=	-mno-unaligned-access
341TF_CFLAGS_aarch64	+=	-mgeneral-regs-only -mstrict-align
342
343ifneq (${BP_OPTION},none)
344TF_CFLAGS_aarch64	+=	-mbranch-protection=${BP_OPTION}
345endif
346
347ASFLAGS_aarch32		=	$(march32-directive)
348ASFLAGS_aarch64		=	$(march64-directive)
349
350# General warnings
351WARNINGS		:=	-Wall -Wmissing-include-dirs -Wunused	\
352				-Wdisabled-optimization -Wvla -Wshadow	\
353				-Wredundant-decls
354# stricter warnings
355WARNINGS		+=	-Wextra -Wno-trigraphs
356# too verbose for generic build
357WARNINGS		+=	-Wno-missing-field-initializers \
358				-Wno-type-limits -Wno-sign-compare \
359# on clang this flag gets reset if -Wextra is set after it. No difference on gcc
360WARNINGS		+=	-Wno-unused-parameter
361
362# Additional warnings
363# Level 1 - infrequent warnings we should have none of
364# full -Wextra
365WARNING1 += -Wsign-compare
366WARNING1 += -Wtype-limits
367WARNING1 += -Wmissing-field-initializers
368
369# Level 2 - problematic warnings that we want
370# zlib, compiler-rt, coreboot, and mbdedtls blow up with these
371# TODO: disable just for them and move into default build
372WARNING2 += -Wold-style-definition
373WARNING2 += -Wmissing-prototypes
374WARNING2 += -Wmissing-format-attribute
375# TF-A aims to comply with this eventually. Effort too large at present
376WARNING2 += -Wundef
377# currently very involved and many platforms set this off
378WARNING2 += -Wunused-const-variable=2
379
380# Level 3 - very pedantic, frequently ignored
381WARNING3 := -Wbad-function-cast
382WARNING3 += -Waggregate-return
383WARNING3 += -Wnested-externs
384WARNING3 += -Wcast-align
385WARNING3 += -Wcast-qual
386WARNING3 += -Wconversion
387WARNING3 += -Wpacked
388WARNING3 += -Wpointer-arith
389WARNING3 += -Wswitch-default
390
391# Setting W is quite verbose and most warnings will be pre-existing issues
392# outside of the contributor's control. Don't fail the build on them so warnings
393# can be seen and hopefully addressed
394ifdef W
395ifneq (${W},0)
396E	 ?= 0
397endif
398endif
399
400ifeq (${W},1)
401WARNINGS += $(WARNING1)
402else ifeq (${W},2)
403WARNINGS += $(WARNING1) $(WARNING2)
404else ifeq (${W},3)
405WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
406endif
407
408# Compiler specific warnings
409ifeq ($(findstring clang,$(notdir $(CC))),)
410# not using clang
411WARNINGS	+=		-Wunused-but-set-variable -Wmaybe-uninitialized	\
412				-Wpacked-bitfield-compat -Wshift-overflow=2 \
413				-Wlogical-op
414else
415# using clang
416WARNINGS	+=		-Wshift-overflow -Wshift-sign-overflow \
417				-Wlogical-op-parentheses
418endif
419
420ifneq (${E},0)
421ERRORS := -Werror
422endif
423
424CPPFLAGS		=	${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc	\
425				$(ERRORS) $(WARNINGS)
426ASFLAGS			+=	$(CPPFLAGS) $(ASFLAGS_$(ARCH))			\
427				-ffreestanding -Wa,--fatal-warnings
428TF_CFLAGS		+=	$(CPPFLAGS) $(TF_CFLAGS_$(ARCH))		\
429				-ffunction-sections -fdata-sections		\
430				-ffreestanding -fno-builtin -fno-common		\
431				-Os -std=gnu99
432
433$(eval $(call add_define,SVE_VECTOR_LEN))
434
435ifeq (${SANITIZE_UB},on)
436TF_CFLAGS		+=	-fsanitize=undefined -fno-sanitize-recover
437endif
438ifeq (${SANITIZE_UB},trap)
439TF_CFLAGS		+=	-fsanitize=undefined -fno-sanitize-recover	\
440				-fsanitize-undefined-trap-on-error
441endif
442
443GCC_V_OUTPUT		:=	$(shell $(CC) -v 2>&1)
444
445# LD = armlink
446ifneq ($(findstring armlink,$(notdir $(LD))),)
447TF_LDFLAGS		+=	--diag_error=warning --lto_level=O1
448TF_LDFLAGS		+=	--remove --info=unused,unusedsymbols
449TF_LDFLAGS		+=	$(TF_LDFLAGS_$(ARCH))
450
451# LD = gcc (used when GCC LTO is enabled)
452else ifneq ($(findstring gcc,$(notdir $(LD))),)
453# Pass ld options with Wl or Xlinker switches
454TF_LDFLAGS		+=	-Wl,--fatal-warnings -O1
455TF_LDFLAGS		+=	-Wl,--gc-sections
456ifeq ($(ENABLE_LTO),1)
457	ifeq (${ARCH},aarch64)
458		TF_LDFLAGS	+=	-flto -fuse-linker-plugin
459	endif
460endif
461# GCC automatically adds fix-cortex-a53-843419 flag when used to link
462# which breaks some builds, so disable if errata fix is not explicitly enabled
463ifneq (${ERRATA_A53_843419},1)
464	TF_LDFLAGS	+= 	-mno-fix-cortex-a53-843419
465endif
466TF_LDFLAGS		+= 	-nostdlib
467TF_LDFLAGS		+=	$(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
468
469# LD = gcc-ld (ld) or llvm-ld (ld.lld) or other
470else
471TF_LDFLAGS		+=	-O1
472TF_LDFLAGS		+=	--gc-sections
473# ld.lld doesn't recognize the errata flags,
474# therefore don't add those in that case.
475# ld.lld reports section type mismatch warnings,
476# therefore don't add --fatal-warnings to it.
477ifeq ($(findstring ld.lld,$(notdir $(LD))),)
478TF_LDFLAGS		+=	$(TF_LDFLAGS_$(ARCH)) --fatal-warnings
479endif
480endif
481
482DTC_FLAGS		+=	-I dts -O dtb
483DTC_CPPFLAGS		+=	-P -nostdinc -Iinclude -Ifdts -undef \
484				-x assembler-with-cpp $(DEFINES)
485
486################################################################################
487# Common sources and include directories
488################################################################################
489include ${MAKE_HELPERS_DIRECTORY}arch_features.mk
490include lib/compiler-rt/compiler-rt.mk
491
492BL_COMMON_SOURCES	+=	common/bl_common.c			\
493				common/tf_log.c				\
494				common/${ARCH}/debug.S			\
495				drivers/console/multi_console.c		\
496				lib/${ARCH}/cache_helpers.S		\
497				lib/${ARCH}/misc_helpers.S		\
498				plat/common/plat_bl_common.c		\
499				plat/common/plat_log_common.c		\
500				plat/common/${ARCH}/plat_common.c	\
501				plat/common/${ARCH}/platform_helpers.S	\
502				${COMPILER_RT_SRCS}
503
504ifeq ($(notdir $(CC)),armclang)
505BL_COMMON_SOURCES	+=	lib/${ARCH}/armclang_printf.S
506endif
507
508ifeq (${SANITIZE_UB},on)
509BL_COMMON_SOURCES	+=	plat/common/ubsan.c
510endif
511
512INCLUDES		+=	-Iinclude				\
513				-Iinclude/arch/${ARCH}			\
514				-Iinclude/lib/cpus/${ARCH}		\
515				-Iinclude/lib/el3_runtime/${ARCH}	\
516				${PLAT_INCLUDES}			\
517				${SPD_INCLUDES}
518
519include common/backtrace/backtrace.mk
520
521################################################################################
522# Generic definitions
523################################################################################
524
525include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
526
527ifeq (${BUILD_BASE},)
528     BUILD_BASE		:=	./build
529endif
530BUILD_PLAT		:=	$(abspath ${BUILD_BASE})/${PLAT}/${BUILD_TYPE}
531
532SPDS			:=	$(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
533
534# Platforms providing their own TBB makefile may override this value
535INCLUDE_TBBR_MK		:=	1
536
537
538################################################################################
539# Include SPD Makefile if one has been specified
540################################################################################
541
542ifneq (${SPD},none)
543    ifeq (${ARCH},aarch32)
544        $(error "Error: SPD is incompatible with AArch32.")
545    endif
546
547    ifdef EL3_PAYLOAD_BASE
548        $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
549        $(warning "The SPD and its BL32 companion will be present but ignored.")
550    endif
551
552    ifeq (${SPD},spmd)
553        # SPMD is located in std_svc directory
554        SPD_DIR := std_svc
555
556        ifeq ($(SPMD_SPM_AT_SEL2),1)
557            CTX_INCLUDE_EL2_REGS := 1
558	    ifeq ($(SPMC_AT_EL3),1)
559                $(error SPM cannot be enabled in both S-EL2 and EL3.)
560            endif
561        endif
562
563        ifeq ($(findstring optee_sp,$(ARM_SPMC_MANIFEST_DTS)),optee_sp)
564            DTC_CPPFLAGS	+=	-DOPTEE_SP_FW_CONFIG
565        endif
566
567        ifeq ($(TS_SP_FW_CONFIG),1)
568            DTC_CPPFLAGS	+=	-DTS_SP_FW_CONFIG
569        endif
570
571        ifneq ($(ARM_BL2_SP_LIST_DTS),)
572            DTC_CPPFLAGS += -DARM_BL2_SP_LIST_DTS=$(ARM_BL2_SP_LIST_DTS)
573        endif
574
575        ifneq ($(SP_LAYOUT_FILE),)
576            BL2_ENABLE_SP_LOAD := 1
577        endif
578    else
579        # All other SPDs in spd directory
580        SPD_DIR := spd
581    endif
582
583    # We expect to locate an spd.mk under the specified SPD directory
584    SPD_MAKE	:=	$(wildcard services/${SPD_DIR}/${SPD}/${SPD}.mk)
585
586    ifeq (${SPD_MAKE},)
587        $(error Error: No services/${SPD_DIR}/${SPD}/${SPD}.mk located)
588    endif
589    $(info Including ${SPD_MAKE})
590    include ${SPD_MAKE}
591
592    # If there's BL32 companion for the chosen SPD, we expect that the SPD's
593    # Makefile would set NEED_BL32 to "yes". In this case, the build system
594    # supports two mutually exclusive options:
595    # * BL32 is built from source: then BL32_SOURCES must contain the list
596    #   of source files to build BL32
597    # * BL32 is a prebuilt binary: then BL32 must point to the image file
598    #   that will be included in the FIP
599    # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
600    # over the sources.
601endif
602
603ifeq (${CTX_INCLUDE_EL2_REGS}, 1)
604ifeq (${SPD},none)
605ifeq (${ENABLE_RME},0)
606    $(error CTX_INCLUDE_EL2_REGS is available only when SPD or RME is enabled)
607endif
608endif
609endif
610
611################################################################################
612# Include rmmd Makefile if RME is enabled
613################################################################################
614
615ifneq (${ENABLE_RME},0)
616ifneq (${ARCH},aarch64)
617	$(error ENABLE_RME requires AArch64)
618endif
619ifeq ($(SPMC_AT_EL3),1)
620	$(error SPMC_AT_EL3 and ENABLE_RME cannot both be enabled.)
621endif
622include services/std_svc/rmmd/rmmd.mk
623$(warning "RME is an experimental feature")
624endif
625
626################################################################################
627# Include the platform specific Makefile after the SPD Makefile (the platform
628# makefile may use all previous definitions in this file)
629################################################################################
630
631include ${PLAT_MAKEFILE_FULL}
632
633$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))
634
635ifeq (${ARM_ARCH_MAJOR},7)
636include make_helpers/armv7-a-cpus.mk
637endif
638
639PIE_FOUND		:=	$(findstring --enable-default-pie,${GCC_V_OUTPUT})
640ifneq ($(PIE_FOUND),)
641	TF_CFLAGS	+=	-fno-PIE
642ifneq ($(findstring gcc,$(notdir $(LD))),)
643	TF_LDFLAGS	+=	-no-pie
644endif
645endif
646
647ifneq ($(findstring gcc,$(notdir $(LD))),)
648	PIE_LDFLAGS	+=	-Wl,-pie -Wl,--no-dynamic-linker
649else
650	PIE_LDFLAGS	+=	-pie --no-dynamic-linker
651endif
652
653ifeq ($(ENABLE_PIE),1)
654ifeq ($(BL2_AT_EL3),1)
655ifneq ($(BL2_IN_XIP_MEM),1)
656	BL2_CFLAGS	+=	-fpie
657	BL2_LDFLAGS	+=	$(PIE_LDFLAGS)
658endif
659endif
660	BL31_CFLAGS	+=	-fpie
661	BL31_LDFLAGS	+=	$(PIE_LDFLAGS)
662	BL32_CFLAGS	+=	-fpie
663	BL32_LDFLAGS	+=	$(PIE_LDFLAGS)
664endif
665
666ifeq (${ARCH},aarch64)
667BL1_CPPFLAGS += -DIMAGE_AT_EL3
668ifeq ($(BL2_AT_EL3),1)
669BL2_CPPFLAGS += -DIMAGE_AT_EL3
670else
671BL2_CPPFLAGS += -DIMAGE_AT_EL1
672endif
673BL2U_CPPFLAGS += -DIMAGE_AT_EL1
674BL31_CPPFLAGS += -DIMAGE_AT_EL3
675BL32_CPPFLAGS += -DIMAGE_AT_EL1
676endif
677
678# Include the CPU specific operations makefile, which provides default
679# values for all CPU errata workarounds and CPU specific optimisations.
680# This can be overridden by the platform.
681include lib/cpus/cpu-ops.mk
682
683ifeq (${ARCH},aarch32)
684NEED_BL32 := yes
685
686################################################################################
687# Build `AARCH32_SP` as BL32 image for AArch32
688################################################################################
689ifneq (${AARCH32_SP},none)
690# We expect to locate an sp.mk under the specified AARCH32_SP directory
691AARCH32_SP_MAKE	:=	$(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)
692
693ifeq (${AARCH32_SP_MAKE},)
694  $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
695endif
696
697$(info Including ${AARCH32_SP_MAKE})
698include ${AARCH32_SP_MAKE}
699endif
700
701endif
702
703################################################################################
704# Include libc if not overridden
705################################################################################
706ifeq (${OVERRIDE_LIBC},0)
707include lib/libc/libc.mk
708endif
709
710################################################################################
711# Check incompatible options
712################################################################################
713
714ifdef EL3_PAYLOAD_BASE
715        ifdef PRELOADED_BL33_BASE
716                $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
717                incompatible build options. EL3_PAYLOAD_BASE has priority.")
718        endif
719        ifneq (${GENERATE_COT},0)
720                $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible build options.")
721        endif
722        ifneq (${TRUSTED_BOARD_BOOT},0)
723                $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are incompatible build options.")
724        endif
725endif
726
727ifeq (${NEED_BL33},yes)
728        ifdef EL3_PAYLOAD_BASE
729                $(warning "BL33 image is not needed when option \
730                BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
731        endif
732        ifdef PRELOADED_BL33_BASE
733                $(warning "BL33 image is not needed when option \
734                PRELOADED_BL33_BASE is used and won't be added to the FIP \
735                file.")
736        endif
737endif
738
739# When building for systems with hardware-assisted coherency, there's no need to
740# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
741ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
742$(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
743endif
744
745#For now, BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is 1.
746ifeq ($(BL2_AT_EL3)-$(BL2_IN_XIP_MEM),0-1)
747$(error "BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is enabled")
748endif
749
750# For RAS_EXTENSION, require that EAs are handled in EL3 first
751ifeq ($(RAS_EXTENSION),1)
752    ifneq ($(HANDLE_EA_EL3_FIRST_NS),1)
753        $(error For RAS_EXTENSION, HANDLE_EA_EL3_FIRST_NS must also be 1)
754    endif
755endif
756
757# When FAULT_INJECTION_SUPPORT is used, require that RAS_EXTENSION is enabled
758ifeq ($(FAULT_INJECTION_SUPPORT),1)
759    ifneq ($(RAS_EXTENSION),1)
760        $(error For FAULT_INJECTION_SUPPORT, RAS_EXTENSION must also be 1)
761    endif
762endif
763
764# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
765ifeq ($(DYN_DISABLE_AUTH), 1)
766    ifeq (${TRUSTED_BOARD_BOOT}, 0)
767        $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH to be set.")
768    endif
769endif
770
771ifeq ($(MEASURED_BOOT)-$(TRUSTED_BOARD_BOOT),1-1)
772# Support authentication verification and hash calculation
773    CRYPTO_SUPPORT := 3
774else ifeq ($(DRTM_SUPPORT)-$(TRUSTED_BOARD_BOOT),1-1)
775# Support authentication verification and hash calculation
776    CRYPTO_SUPPORT := 3
777else ifneq ($(filter 1,${MEASURED_BOOT} ${DRTM_SUPPORT}),)
778# Support hash calculation only
779    CRYPTO_SUPPORT := 2
780else ifeq (${TRUSTED_BOARD_BOOT},1)
781# Support authentication verification only
782    CRYPTO_SUPPORT := 1
783else
784    CRYPTO_SUPPORT := 0
785endif
786
787# SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled.
788ifeq ($(SDEI_SUPPORT)-$(SDEI_IN_FCONF),0-1)
789$(error "SDEI_IN_FCONF is only supported when SDEI_SUPPORT is enabled")
790endif
791
792# If pointer authentication is used in the firmware, make sure that all the
793# registers associated to it are also saved and restored.
794# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
795ifeq ($(ENABLE_PAUTH),1)
796    ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
797        $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
798    endif
799endif
800
801ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
802    ifneq (${ARCH},aarch64)
803        $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
804    endif
805endif
806
807ifeq ($(CTX_INCLUDE_MTE_REGS),1)
808    ifneq (${ARCH},aarch64)
809        $(error CTX_INCLUDE_MTE_REGS requires AArch64)
810    endif
811endif
812
813ifeq ($(PSA_FWU_SUPPORT),1)
814    $(info PSA_FWU_SUPPORT is an experimental feature)
815endif
816
817ifeq ($(FEATURE_DETECTION),1)
818    $(info FEATURE_DETECTION is an experimental feature)
819endif
820
821ifeq (${ARM_XLAT_TABLES_LIB_V1}, 1)
822    ifeq (${ALLOW_RO_XLAT_TABLES}, 1)
823        $(error "ALLOW_RO_XLAT_TABLES requires translation tables library v2")
824    endif
825endif
826
827ifneq (${DECRYPTION_SUPPORT},none)
828    ifeq (${TRUSTED_BOARD_BOOT}, 0)
829        $(error TRUSTED_BOARD_BOOT must be enabled for DECRYPTION_SUPPORT to be set)
830    endif
831endif
832
833# Ensure that no Aarch64-only features are enabled in Aarch32 build
834ifeq (${ARCH},aarch32)
835
836    # SME/SVE only supported on AArch64
837    ifeq (${ENABLE_SME_FOR_NS},1)
838        $(error "ENABLE_SME_FOR_NS cannot be used with ARCH=aarch32")
839    endif
840    ifeq (${ENABLE_SVE_FOR_NS},1)
841        # Warning instead of error due to CI dependency on this
842        $(error "ENABLE_SVE_FOR_NS cannot be used with ARCH=aarch32")
843    endif
844
845    # BRBE is not supported in AArch32
846    ifeq (${ENABLE_BRBE_FOR_NS},1)
847        $(error "ENABLE_BRBE_FOR_NS cannot be used with ARCH=aarch32")
848    endif
849
850    # FEAT_RNG_TRAP is not supported in AArch32
851    ifeq (${ENABLE_FEAT_RNG_TRAP},1)
852        $(error "ENABLE_FEAT_RNG_TRAP cannot be used with ARCH=aarch32")
853    endif
854endif
855
856# Ensure ENABLE_RME is not used with SME
857ifeq (${ENABLE_RME},1)
858    ifeq (${ENABLE_SME_FOR_NS},1)
859        $(error "ENABLE_SME_FOR_NS cannot be used with ENABLE_RME")
860    endif
861endif
862
863# Secure SME/SVE requires the non-secure component as well
864ifeq (${ENABLE_SME_FOR_SWD},1)
865    ifeq (${ENABLE_SME_FOR_NS},0)
866        $(error "ENABLE_SME_FOR_SWD requires ENABLE_SME_FOR_NS")
867    endif
868endif
869ifeq (${ENABLE_SVE_FOR_SWD},1)
870    ifeq (${ENABLE_SVE_FOR_NS},0)
871        $(error "ENABLE_SVE_FOR_SWD requires ENABLE_SVE_FOR_NS")
872    endif
873endif
874
875# SVE and SME cannot be used with CTX_INCLUDE_FPREGS since secure manager does
876# its own context management including FPU registers.
877ifeq (${CTX_INCLUDE_FPREGS},1)
878    ifeq (${ENABLE_SME_FOR_NS},1)
879        $(error "ENABLE_SME_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
880    endif
881    ifeq (${ENABLE_SVE_FOR_NS},1)
882        # Warning instead of error due to CI dependency on this
883        $(warning "ENABLE_SVE_FOR_NS cannot be used with CTX_INCLUDE_FPREGS")
884        $(warning "Forced ENABLE_SVE_FOR_NS=0")
885        override ENABLE_SVE_FOR_NS	:= 0
886    endif
887endif
888
889ifeq ($(DRTM_SUPPORT),1)
890    $(info DRTM_SUPPORT is an experimental feature)
891endif
892
893ifeq (${ENABLE_RME},1)
894    ifneq (${SEPARATE_CODE_AND_RODATA},1)
895        $(error `ENABLE_RME=1` requires `SEPARATE_CODE_AND_RODATA=1`)
896    endif
897endif
898
899################################################################################
900# Process platform overrideable behaviour
901################################################################################
902
903ifdef BL1_SOURCES
904NEED_BL1 := yes
905endif
906
907ifdef BL2_SOURCES
908	NEED_BL2 := yes
909
910	# Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
911	# Certificate generation tools. This flag can be overridden by the platform.
912	ifdef EL3_PAYLOAD_BASE
913                # If booting an EL3 payload there is no need for a BL33 image
914                # in the FIP file.
915                NEED_BL33		:=	no
916        else
917                ifdef PRELOADED_BL33_BASE
918                        # If booting a BL33 preloaded image there is no need of
919                        # another one in the FIP file.
920                        NEED_BL33		:=	no
921                else
922                        NEED_BL33		?=	yes
923                endif
924        endif
925endif
926
927ifdef BL2U_SOURCES
928NEED_BL2U := yes
929endif
930
931# If SCP_BL2 is given, we always want FIP to include it.
932ifdef SCP_BL2
933        NEED_SCP_BL2		:=	yes
934endif
935
936# For AArch32, BL31 is not currently supported.
937ifneq (${ARCH},aarch32)
938    ifdef BL31_SOURCES
939        # When booting an EL3 payload, there is no need to compile the BL31 image nor
940        # put it in the FIP.
941        ifndef EL3_PAYLOAD_BASE
942            NEED_BL31 := yes
943        endif
944    endif
945endif
946
947# Process TBB related flags
948ifneq (${GENERATE_COT},0)
949        # Common cert_create options
950        ifneq (${CREATE_KEYS},0)
951                $(eval CRT_ARGS += -n)
952                $(eval FWU_CRT_ARGS += -n)
953                ifneq (${SAVE_KEYS},0)
954                        $(eval CRT_ARGS += -k)
955                        $(eval FWU_CRT_ARGS += -k)
956                endif
957        endif
958        # Include TBBR makefile (unless the platform indicates otherwise)
959        ifeq (${INCLUDE_TBBR_MK},1)
960                include make_helpers/tbbr/tbbr_tools.mk
961        endif
962endif
963
964ifneq (${FIP_ALIGN},0)
965FIP_ARGS += --align ${FIP_ALIGN}
966endif
967
968ifdef FDT_SOURCES
969NEED_FDT := yes
970endif
971
972################################################################################
973# Include libraries' Makefile that are used in all BL
974################################################################################
975
976include lib/stack_protector/stack_protector.mk
977
978################################################################################
979# Auxiliary tools (fiptool, cert_create, etc)
980################################################################################
981
982# Variables for use with Certificate Generation Tool
983CRTTOOLPATH		?=	tools/cert_create
984CRTTOOL			?=	${CRTTOOLPATH}/cert_create${BIN_EXT}
985
986# Variables for use with Firmware Encryption Tool
987ENCTOOLPATH		?=	tools/encrypt_fw
988ENCTOOL			?=	${ENCTOOLPATH}/encrypt_fw${BIN_EXT}
989
990# Variables for use with Firmware Image Package
991FIPTOOLPATH		?=	tools/fiptool
992FIPTOOL			?=	${FIPTOOLPATH}/fiptool${BIN_EXT}
993
994# Variables for use with sptool
995SPTOOLPATH		?=	tools/sptool
996SPTOOL			?=	${SPTOOLPATH}/sptool.py
997SP_MK_GEN		?=	${SPTOOLPATH}/sp_mk_generator.py
998
999# Variables for use with ROMLIB
1000ROMLIBPATH		?=	lib/romlib
1001
1002# Variable for use with Python
1003PYTHON			?=	python3
1004
1005# Variables for use with PRINT_MEMORY_MAP
1006PRINT_MEMORY_MAP_PATH		?=	tools/memory
1007PRINT_MEMORY_MAP		?=	${PRINT_MEMORY_MAP_PATH}/print_memory_map.py
1008
1009# Variables for use with documentation build using Sphinx tool
1010DOCS_PATH		?=	docs
1011
1012# Defination of SIMICS flag
1013SIMICS_BUILD	?=	0
1014
1015################################################################################
1016# Include BL specific makefiles
1017################################################################################
1018
1019ifeq (${NEED_BL1},yes)
1020include bl1/bl1.mk
1021endif
1022
1023ifeq (${NEED_BL2},yes)
1024include bl2/bl2.mk
1025endif
1026
1027ifeq (${NEED_BL2U},yes)
1028include bl2u/bl2u.mk
1029endif
1030
1031ifeq (${NEED_BL31},yes)
1032include bl31/bl31.mk
1033endif
1034
1035################################################################################
1036# Build options checks
1037################################################################################
1038
1039$(eval $(call assert_booleans,\
1040    $(sort \
1041        ALLOW_RO_XLAT_TABLES \
1042        BL2_ENABLE_SP_LOAD \
1043        COLD_BOOT_SINGLE_CPU \
1044        CREATE_KEYS \
1045        CTX_INCLUDE_AARCH32_REGS \
1046        CTX_INCLUDE_FPREGS \
1047        CTX_INCLUDE_EL2_REGS \
1048        DEBUG \
1049        DISABLE_MTPMU \
1050        DYN_DISABLE_AUTH \
1051        EL3_EXCEPTION_HANDLING \
1052        ENABLE_AMU \
1053        ENABLE_AMU_AUXILIARY_COUNTERS \
1054        ENABLE_AMU_FCONF \
1055        AMU_RESTRICT_COUNTERS \
1056        ENABLE_ASSERTIONS \
1057        ENABLE_PIE \
1058        ENABLE_PMF \
1059        ENABLE_PSCI_STAT \
1060        ENABLE_RUNTIME_INSTRUMENTATION \
1061        ENABLE_SME_FOR_NS \
1062        ENABLE_SME_FOR_SWD \
1063        ENABLE_SPE_FOR_LOWER_ELS \
1064        ENABLE_SVE_FOR_NS \
1065        ENABLE_SVE_FOR_SWD \
1066        ERROR_DEPRECATED \
1067        FAULT_INJECTION_SUPPORT \
1068        GENERATE_COT \
1069        GICV2_G0_FOR_EL3 \
1070        HANDLE_EA_EL3_FIRST_NS \
1071        HW_ASSISTED_COHERENCY \
1072        INVERTED_MEMMAP \
1073        MEASURED_BOOT \
1074        DRTM_SUPPORT \
1075        NS_TIMER_SWITCH \
1076        OVERRIDE_LIBC \
1077        PL011_GENERIC_UART \
1078        PLAT_RSS_NOT_SUPPORTED \
1079        PROGRAMMABLE_RESET_ADDRESS \
1080        PSCI_EXTENDED_STATE_ID \
1081        RESET_TO_BL31 \
1082        RESET_TO_BL31_WITH_PARAMS \
1083        SAVE_KEYS \
1084        SEPARATE_CODE_AND_RODATA \
1085        SEPARATE_BL2_NOLOAD_REGION \
1086        SEPARATE_NOBITS_REGION \
1087        SPIN_ON_BL1_EXIT \
1088        SPM_MM \
1089        SPMC_AT_EL3 \
1090        SPMD_SPM_AT_SEL2 \
1091        TRUSTED_BOARD_BOOT \
1092        USE_COHERENT_MEM \
1093        USE_DEBUGFS \
1094        ARM_IO_IN_DTB \
1095        SDEI_IN_FCONF \
1096        SEC_INT_DESC_IN_FCONF \
1097        USE_ROMLIB \
1098        USE_TBBR_DEFS \
1099        WARMBOOT_ENABLE_DCACHE_EARLY \
1100        BL2_AT_EL3 \
1101        BL2_IN_XIP_MEM \
1102        BL2_INV_DCACHE \
1103        USE_SPINLOCK_CAS \
1104        ENCRYPT_BL31 \
1105        ENCRYPT_BL32 \
1106        ERRATA_SPECULATIVE_AT \
1107        RAS_TRAP_NS_ERR_REC_ACCESS \
1108        COT_DESC_IN_DTB \
1109        USE_SP804_TIMER \
1110        PSA_FWU_SUPPORT \
1111        ENABLE_SYS_REG_TRACE_FOR_NS \
1112        ENABLE_MPMM \
1113        ENABLE_MPMM_FCONF \
1114        SIMICS_BUILD \
1115        FEATURE_DETECTION \
1116	TRNG_SUPPORT \
1117	CONDITIONAL_CMO \
1118)))
1119
1120$(eval $(call assert_numerics,\
1121    $(sort \
1122        ARM_ARCH_MAJOR \
1123        ARM_ARCH_MINOR \
1124        BRANCH_PROTECTION \
1125        CTX_INCLUDE_PAUTH_REGS \
1126        CTX_INCLUDE_MTE_REGS \
1127        CTX_INCLUDE_NEVE_REGS \
1128        CRYPTO_SUPPORT \
1129        ENABLE_BRBE_FOR_NS \
1130        ENABLE_TRBE_FOR_NS \
1131        ENABLE_BTI \
1132        ENABLE_PAUTH \
1133        ENABLE_FEAT_AMUv1 \
1134        ENABLE_FEAT_AMUv1p1 \
1135        ENABLE_FEAT_CSV2_2 \
1136        ENABLE_FEAT_DIT \
1137        ENABLE_FEAT_ECV \
1138        ENABLE_FEAT_FGT \
1139        ENABLE_FEAT_HCX \
1140        ENABLE_FEAT_PAN \
1141        ENABLE_FEAT_RNG \
1142        ENABLE_FEAT_RNG_TRAP \
1143        ENABLE_FEAT_SB \
1144        ENABLE_FEAT_SEL2 \
1145        ENABLE_FEAT_VHE \
1146        ENABLE_MPAM_FOR_LOWER_ELS \
1147        ENABLE_RME \
1148        ENABLE_TRF_FOR_NS \
1149        FW_ENC_STATUS \
1150        NR_OF_FW_BANKS \
1151        NR_OF_IMAGES_IN_FW_BANK \
1152        RAS_EXTENSION \
1153        TWED_DELAY \
1154        ENABLE_FEAT_TWED \
1155        SVE_VECTOR_LEN \
1156)))
1157
1158ifdef KEY_SIZE
1159        $(eval $(call assert_numeric,KEY_SIZE))
1160endif
1161
1162ifeq ($(filter $(SANITIZE_UB), on off trap),)
1163        $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
1164endif
1165
1166################################################################################
1167# Add definitions to the cpp preprocessor based on the current build options.
1168# This is done after including the platform specific makefile to allow the
1169# platform to overwrite the default options
1170################################################################################
1171
1172$(eval $(call add_defines,\
1173    $(sort \
1174        ALLOW_RO_XLAT_TABLES \
1175        ARM_ARCH_MAJOR \
1176        ARM_ARCH_MINOR \
1177        BL2_ENABLE_SP_LOAD \
1178        COLD_BOOT_SINGLE_CPU \
1179        CTX_INCLUDE_AARCH32_REGS \
1180        CTX_INCLUDE_FPREGS \
1181        CTX_INCLUDE_PAUTH_REGS \
1182        EL3_EXCEPTION_HANDLING \
1183        CTX_INCLUDE_MTE_REGS \
1184        CTX_INCLUDE_EL2_REGS \
1185        CTX_INCLUDE_NEVE_REGS \
1186        DECRYPTION_SUPPORT_${DECRYPTION_SUPPORT} \
1187        DISABLE_MTPMU \
1188        ENABLE_AMU \
1189        ENABLE_AMU_AUXILIARY_COUNTERS \
1190        ENABLE_AMU_FCONF \
1191        AMU_RESTRICT_COUNTERS \
1192        ENABLE_ASSERTIONS \
1193        ENABLE_BTI \
1194        ENABLE_MPAM_FOR_LOWER_ELS \
1195        ENABLE_PAUTH \
1196        ENABLE_PIE \
1197        ENABLE_PMF \
1198        ENABLE_PSCI_STAT \
1199        ENABLE_RME \
1200        ENABLE_RUNTIME_INSTRUMENTATION \
1201        ENABLE_SME_FOR_NS \
1202        ENABLE_SME_FOR_SWD \
1203        ENABLE_SPE_FOR_LOWER_ELS \
1204        ENABLE_SVE_FOR_NS \
1205        ENABLE_SVE_FOR_SWD \
1206        ENCRYPT_BL31 \
1207        ENCRYPT_BL32 \
1208        ERROR_DEPRECATED \
1209        FAULT_INJECTION_SUPPORT \
1210        GICV2_G0_FOR_EL3 \
1211        HANDLE_EA_EL3_FIRST_NS \
1212        HW_ASSISTED_COHERENCY \
1213        LOG_LEVEL \
1214        MEASURED_BOOT \
1215        DRTM_SUPPORT \
1216        NS_TIMER_SWITCH \
1217        PL011_GENERIC_UART \
1218        PLAT_${PLAT} \
1219        PLAT_RSS_NOT_SUPPORTED \
1220        PROGRAMMABLE_RESET_ADDRESS \
1221        PSCI_EXTENDED_STATE_ID \
1222        RAS_EXTENSION \
1223        RESET_TO_BL31 \
1224        RESET_TO_BL31_WITH_PARAMS \
1225        SEPARATE_CODE_AND_RODATA \
1226        SEPARATE_BL2_NOLOAD_REGION \
1227        SEPARATE_NOBITS_REGION \
1228        RECLAIM_INIT_CODE \
1229        SPD_${SPD} \
1230        SPIN_ON_BL1_EXIT \
1231        SPM_MM \
1232        SPMC_AT_EL3 \
1233        SPMD_SPM_AT_SEL2 \
1234        TRUSTED_BOARD_BOOT \
1235        CRYPTO_SUPPORT \
1236        TRNG_SUPPORT \
1237        USE_COHERENT_MEM \
1238        USE_DEBUGFS \
1239        ARM_IO_IN_DTB \
1240        SDEI_IN_FCONF \
1241        SEC_INT_DESC_IN_FCONF \
1242        USE_ROMLIB \
1243        USE_TBBR_DEFS \
1244        WARMBOOT_ENABLE_DCACHE_EARLY \
1245        BL2_AT_EL3 \
1246        BL2_IN_XIP_MEM \
1247        BL2_INV_DCACHE \
1248        USE_SPINLOCK_CAS \
1249        ERRATA_SPECULATIVE_AT \
1250        RAS_TRAP_NS_ERR_REC_ACCESS \
1251        COT_DESC_IN_DTB \
1252        USE_SP804_TIMER \
1253        ENABLE_FEAT_RNG \
1254        ENABLE_FEAT_RNG_TRAP \
1255        ENABLE_FEAT_SB \
1256        ENABLE_FEAT_DIT \
1257        NR_OF_FW_BANKS \
1258        NR_OF_IMAGES_IN_FW_BANK \
1259        PSA_FWU_SUPPORT \
1260        ENABLE_BRBE_FOR_NS \
1261        ENABLE_TRBE_FOR_NS \
1262        ENABLE_SYS_REG_TRACE_FOR_NS \
1263        ENABLE_TRF_FOR_NS \
1264        ENABLE_FEAT_HCX \
1265        ENABLE_MPMM \
1266        ENABLE_MPMM_FCONF \
1267        ENABLE_FEAT_FGT \
1268        ENABLE_FEAT_AMUv1 \
1269        ENABLE_FEAT_ECV \
1270        SIMICS_BUILD \
1271        ENABLE_FEAT_AMUv1p1 \
1272        ENABLE_FEAT_SEL2 \
1273        ENABLE_FEAT_VHE \
1274        ENABLE_FEAT_CSV2_2 \
1275        ENABLE_FEAT_PAN \
1276        FEATURE_DETECTION \
1277        TWED_DELAY \
1278        ENABLE_FEAT_TWED \
1279	CONDITIONAL_CMO \
1280)))
1281
1282ifeq (${SANITIZE_UB},trap)
1283        $(eval $(call add_define,MONITOR_TRAPS))
1284endif
1285
1286# Define the EL3_PAYLOAD_BASE flag only if it is provided.
1287ifdef EL3_PAYLOAD_BASE
1288        $(eval $(call add_define,EL3_PAYLOAD_BASE))
1289else
1290        # Define the PRELOADED_BL33_BASE flag only if it is provided and
1291        # EL3_PAYLOAD_BASE is not defined, as it has priority.
1292        ifdef PRELOADED_BL33_BASE
1293                $(eval $(call add_define,PRELOADED_BL33_BASE))
1294        endif
1295endif
1296
1297# Define the DYN_DISABLE_AUTH flag only if set.
1298ifeq (${DYN_DISABLE_AUTH},1)
1299$(eval $(call add_define,DYN_DISABLE_AUTH))
1300endif
1301
1302ifneq ($(findstring armlink,$(notdir $(LD))),)
1303$(eval $(call add_define,USE_ARM_LINK))
1304endif
1305
1306# Generate and include sp_gen.mk if SPD is spmd and SP_LAYOUT_FILE is defined
1307ifeq (${SPD},spmd)
1308ifdef SP_LAYOUT_FILE
1309        -include $(BUILD_PLAT)/sp_gen.mk
1310        FIP_DEPS += sp
1311        CRT_DEPS += sp
1312        NEED_SP_PKG := yes
1313else
1314        ifeq (${SPMD_SPM_AT_SEL2},1)
1315            $(error "SPMD with SPM at S-EL2 require SP_LAYOUT_FILE")
1316        endif
1317endif
1318endif
1319
1320################################################################################
1321# Build targets
1322################################################################################
1323
1324.PHONY:	all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip sp fwu_fip certtool dtbs memmap doc enctool
1325.SUFFIXES:
1326
1327all: msg_start
1328
1329msg_start:
1330	@echo "Building ${PLAT}"
1331
1332ifeq (${ERROR_DEPRECATED},0)
1333# Check if deprecated declarations and cpp warnings should be treated as error or not.
1334ifneq ($(findstring clang,$(notdir $(CC))),)
1335    CPPFLAGS		+= 	-Wno-error=deprecated-declarations
1336else
1337    CPPFLAGS		+= 	-Wno-error=deprecated-declarations -Wno-error=cpp
1338endif
1339endif # !ERROR_DEPRECATED
1340
1341$(eval $(call MAKE_LIB_DIRS))
1342$(eval $(call MAKE_LIB,c))
1343
1344# Expand build macros for the different images
1345ifeq (${NEED_BL1},yes)
1346BL1_SOURCES := $(sort ${BL1_SOURCES})
1347
1348$(eval $(call MAKE_BL,bl1))
1349endif
1350
1351ifeq (${NEED_BL2},yes)
1352ifeq (${BL2_AT_EL3}, 0)
1353FIP_BL2_ARGS := tb-fw
1354endif
1355
1356BL2_SOURCES := $(sort ${BL2_SOURCES})
1357
1358$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
1359	$(eval $(call MAKE_BL,bl2,${FIP_BL2_ARGS})))
1360endif
1361
1362ifeq (${NEED_SCP_BL2},yes)
1363$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
1364endif
1365
1366ifeq (${NEED_BL31},yes)
1367BL31_SOURCES += ${SPD_SOURCES}
1368# Sort BL31 source files to remove duplicates
1369BL31_SOURCES := $(sort ${BL31_SOURCES})
1370ifneq (${DECRYPTION_SUPPORT},none)
1371$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw,,$(ENCRYPT_BL31))),\
1372	$(eval $(call MAKE_BL,bl31,soc-fw,,$(ENCRYPT_BL31))))
1373else
1374$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
1375	$(eval $(call MAKE_BL,bl31,soc-fw)))
1376endif
1377endif
1378
1379# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
1380# build system will call TOOL_ADD_IMG to print a warning message and abort the
1381# process. Note that the dependency on BL32 applies to the FIP only.
1382ifeq (${NEED_BL32},yes)
1383# Sort BL32 source files to remove duplicates
1384BL32_SOURCES := $(sort ${BL32_SOURCES})
1385BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))
1386
1387ifneq (${DECRYPTION_SUPPORT},none)
1388$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw,,$(ENCRYPT_BL32))),\
1389	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw,,$(ENCRYPT_BL32))))
1390else
1391$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,bl32,tos-fw)),\
1392	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
1393endif
1394endif
1395
1396# If RMM image is needed but RMM is not defined, Test Realm Payload (TRP)
1397# needs to be built from RMM_SOURCES.
1398ifeq (${NEED_RMM},yes)
1399# Sort RMM source files to remove duplicates
1400RMM_SOURCES := $(sort ${RMM_SOURCES})
1401BUILD_RMM := $(if $(RMM),,$(if $(RMM_SOURCES),1))
1402
1403$(if ${BUILD_RMM}, $(eval $(call MAKE_BL,rmm,rmm-fw)),\
1404         $(eval $(call TOOL_ADD_IMG,rmm,--rmm-fw)))
1405endif
1406
1407# Add the BL33 image if required by the platform
1408ifeq (${NEED_BL33},yes)
1409$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
1410endif
1411
1412ifeq (${NEED_BL2U},yes)
1413$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
1414	$(eval $(call MAKE_BL,bl2u,ap-fwu-cfg,FWU_)))
1415endif
1416
1417# Expand build macros for the different images
1418ifeq (${NEED_FDT},yes)
1419    $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
1420endif
1421
1422# Add Secure Partition packages
1423ifeq (${NEED_SP_PKG},yes)
1424$(BUILD_PLAT)/sp_gen.mk: ${SP_MK_GEN} ${SP_LAYOUT_FILE} | ${BUILD_PLAT}
1425	${Q}${PYTHON} "$<" "$@" $(filter-out $<,$^) $(BUILD_PLAT) ${COT}
1426sp: $(DTBS) $(BUILD_PLAT)/sp_gen.mk $(SP_PKGS)
1427	@${ECHO_BLANK_LINE}
1428	@echo "Built SP Images successfully"
1429	@${ECHO_BLANK_LINE}
1430endif
1431
1432locate-checkpatch:
1433ifndef CHECKPATCH
1434	$(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
1435else
1436ifeq (,$(wildcard ${CHECKPATCH}))
1437	$(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
1438endif
1439endif
1440
1441clean:
1442	@echo "  CLEAN"
1443	$(call SHELL_REMOVE_DIR,${BUILD_PLAT})
1444ifdef UNIX_MK
1445	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
1446else
1447# Clear the MAKEFLAGS as we do not want
1448# to pass the gnumake flags to nmake.
1449	${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) clean
1450endif
1451	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
1452	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} clean
1453	${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
1454
1455realclean distclean:
1456	@echo "  REALCLEAN"
1457	$(call SHELL_REMOVE_DIR,${BUILD_BASE})
1458	$(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
1459ifdef UNIX_MK
1460	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
1461else
1462# Clear the MAKEFLAGS as we do not want
1463# to pass the gnumake flags to nmake.
1464	${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL)) realclean
1465endif
1466	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} realclean
1467	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${ENCTOOLPATH} realclean
1468	${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
1469
1470checkcodebase:		locate-checkpatch
1471	@echo "  CHECKING STYLE"
1472	@if test -d .git ; then						\
1473		git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' |	\
1474		while read GIT_FILE ;					\
1475		do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ;	\
1476		done ;							\
1477	else								\
1478		 find . -type f -not -iwholename "*.git*"		\
1479		 -not -iwholename "*build*"				\
1480		 -not -iwholename "*libfdt*"				\
1481		 -not -iwholename "*libc*"				\
1482		 -not -iwholename "*docs*"				\
1483		 -not -iwholename "*.rst"				\
1484		 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ;	\
1485	fi
1486
1487checkpatch:		locate-checkpatch
1488	@echo "  CHECKING STYLE"
1489	@if test -n "${CHECKPATCH_OPTS}"; then				\
1490		echo "    with ${CHECKPATCH_OPTS} option(s)";		\
1491	fi
1492	${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT});	\
1493	for commit in `git rev-list --no-merges $$COMMON_COMMIT..HEAD`;	\
1494	do								\
1495		printf "\n[*] Checking style of '$$commit'\n\n";	\
1496		git log --format=email "$$commit~..$$commit"		\
1497			-- ${CHECK_PATHS} |				\
1498			${CHECKPATCH} ${CHECKPATCH_OPTS} - || true;	\
1499		git diff --format=email "$$commit~..$$commit"		\
1500			-- ${CHECK_PATHS} |				\
1501			${CHECKPATCH}  ${CHECKPATCH_OPTS} - || true;	\
1502	done
1503
1504certtool: ${CRTTOOL}
1505
1506${CRTTOOL}: FORCE
1507	${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
1508	@${ECHO_BLANK_LINE}
1509	@echo "Built $@ successfully"
1510	@${ECHO_BLANK_LINE}
1511
1512ifneq (${GENERATE_COT},0)
1513certificates: ${CRT_DEPS} ${CRTTOOL}
1514	${Q}${CRTTOOL} ${CRT_ARGS}
1515	@${ECHO_BLANK_LINE}
1516	@echo "Built $@ successfully"
1517	@echo "Certificates can be found in ${BUILD_PLAT}"
1518	@${ECHO_BLANK_LINE}
1519endif
1520
1521${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
1522	$(eval ${CHECK_FIP_CMD})
1523	${Q}${FIPTOOL} create ${FIP_ARGS} $@
1524	${Q}${FIPTOOL} info $@
1525	@${ECHO_BLANK_LINE}
1526	@echo "Built $@ successfully"
1527	@${ECHO_BLANK_LINE}
1528
1529ifneq (${GENERATE_COT},0)
1530fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
1531	${Q}${CRTTOOL} ${FWU_CRT_ARGS}
1532	@${ECHO_BLANK_LINE}
1533	@echo "Built $@ successfully"
1534	@echo "FWU certificates can be found in ${BUILD_PLAT}"
1535	@${ECHO_BLANK_LINE}
1536endif
1537
1538${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
1539	$(eval ${CHECK_FWU_FIP_CMD})
1540	${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
1541	${Q}${FIPTOOL} info $@
1542	@${ECHO_BLANK_LINE}
1543	@echo "Built $@ successfully"
1544	@${ECHO_BLANK_LINE}
1545
1546fiptool: ${FIPTOOL}
1547fip: ${BUILD_PLAT}/${FIP_NAME}
1548fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
1549
1550${FIPTOOL}: FORCE
1551ifdef UNIX_MK
1552	${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" FIPTOOL=${FIPTOOL} OPENSSL_DIR=${OPENSSL_DIR} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${FIPTOOLPATH} all
1553else
1554# Clear the MAKEFLAGS as we do not want
1555# to pass the gnumake flags to nmake.
1556	${Q}set MAKEFLAGS= && ${MSVC_NMAKE} /nologo /f ${FIPTOOLPATH}/Makefile.msvc FIPTOOLPATH=$(subst /,\,$(FIPTOOLPATH)) FIPTOOL=$(subst /,\,$(FIPTOOL))
1557endif
1558
1559romlib.bin: libraries FORCE
1560	${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
1561
1562# Call print_memory_map tool
1563memmap: all
1564	${Q}${PYTHON} ${PRINT_MEMORY_MAP} ${BUILD_PLAT} ${INVERTED_MEMMAP}
1565
1566doc:
1567	@echo "  BUILD DOCUMENTATION"
1568	${Q}${MAKE} --no-print-directory -C ${DOCS_PATH} html
1569
1570enctool: ${ENCTOOL}
1571
1572${ENCTOOL}: FORCE
1573	${Q}${MAKE} PLAT=${PLAT} BUILD_INFO=0 OPENSSL_DIR=${OPENSSL_DIR} ENCTOOL=${ENCTOOL} DEBUG=${DEBUG} V=${V} --no-print-directory -C ${ENCTOOLPATH} all
1574	@${ECHO_BLANK_LINE}
1575	@echo "Built $@ successfully"
1576	@${ECHO_BLANK_LINE}
1577
1578cscope:
1579	@echo "  CSCOPE"
1580	${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
1581	${Q}cscope -b -q -k
1582
1583help:
1584	@echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
1585	@echo ""
1586	@echo "PLAT is used to specify which platform you wish to build."
1587	@echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
1588	@echo ""
1589	@echo "platform = ${PLATFORM_LIST}"
1590	@echo ""
1591	@echo "Please refer to the User Guide for a list of all supported options."
1592	@echo "Note that the build system doesn't track dependencies for build "
1593	@echo "options. Therefore, if any of the build options are changed "
1594	@echo "from a previous build, a clean build must be performed."
1595	@echo ""
1596	@echo "Supported Targets:"
1597	@echo "  all            Build all individual bootloader binaries"
1598	@echo "  bl1            Build the BL1 binary"
1599	@echo "  bl2            Build the BL2 binary"
1600	@echo "  bl2u           Build the BL2U binary"
1601	@echo "  bl31           Build the BL31 binary"
1602	@echo "  bl32           Build the BL32 binary. If ARCH=aarch32, then "
1603	@echo "                 this builds secure payload specified by AARCH32_SP"
1604	@echo "  certificates   Build the certificates (requires 'GENERATE_COT=1')"
1605	@echo "  fip            Build the Firmware Image Package (FIP)"
1606	@echo "  fwu_fip        Build the FWU Firmware Image Package (FIP)"
1607	@echo "  checkcodebase  Check the coding style of the entire source tree"
1608	@echo "  checkpatch     Check the coding style on changes in the current"
1609	@echo "                 branch against BASE_COMMIT (default origin/master)"
1610	@echo "  clean          Clean the build for the selected platform"
1611	@echo "  cscope         Generate cscope index"
1612	@echo "  distclean      Remove all build artifacts for all platforms"
1613	@echo "  certtool       Build the Certificate generation tool"
1614	@echo "  enctool        Build the Firmware encryption tool"
1615	@echo "  fiptool        Build the Firmware Image Package (FIP) creation tool"
1616	@echo "  sp             Build the Secure Partition Packages"
1617	@echo "  sptool         Build the Secure Partition Package creation tool"
1618	@echo "  dtbs           Build the Device Tree Blobs (if required for the platform)"
1619	@echo "  memmap         Print the memory map of the built binaries"
1620	@echo "  doc            Build html based documentation using Sphinx tool"
1621	@echo ""
1622	@echo "Note: most build targets require PLAT to be set to a specific platform."
1623	@echo ""
1624	@echo "example: build all targets for the FVP platform:"
1625	@echo "  CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"
1626
1627.PHONY: FORCE
1628FORCE:;
1629