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