Makefile 35.3 KB
Newer Older
1
#
2
# Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved.
3
#
dp-arm's avatar
dp-arm committed
4
# SPDX-License-Identifier: BSD-3-Clause
5
6
#

7
8
9
#
# Trusted Firmware Version
#
Soby Mathew's avatar
Soby Mathew committed
10
VERSION_MAJOR			:= 2
Deepika Bhavnani's avatar
Deepika Bhavnani committed
11
VERSION_MINOR			:= 2
12

13
14
15
# Default goal is build all images
.DEFAULT_GOAL			:= all

16
17
18
19
20
# Avoid any implicit propagation of command line variable definitions to
# sub-Makefiles, like CFLAGS that we reserved for the firmware images'
# usage. Other command line options like "-s" are still propagated as usual.
MAKEOVERRIDES =

21
22
MAKE_HELPERS_DIRECTORY := make_helpers/
include ${MAKE_HELPERS_DIRECTORY}build_macros.mk
23
include ${MAKE_HELPERS_DIRECTORY}build_env.mk
Juan Castillo's avatar
Juan Castillo committed
24
25

################################################################################
26
# Default values for build configurations, and their dependencies
Juan Castillo's avatar
Juan Castillo committed
27
################################################################################
Jeenu Viswambharan's avatar
Jeenu Viswambharan committed
28

29
30
include ${MAKE_HELPERS_DIRECTORY}defaults.mk

31
32
# Assertions enabled for DEBUG builds by default
ENABLE_ASSERTIONS		:= ${DEBUG}
33
34
ENABLE_PMF			:= ${ENABLE_RUNTIME_INSTRUMENTATION}
PLAT				:= ${DEFAULT_PLAT}
Juan Castillo's avatar
Juan Castillo committed
35
36
37
38

################################################################################
# Checkpatch script options
################################################################################
39

40
CHECKCODE_ARGS		:=	--no-patch
41
42
# Do not check the coding style on imported library files or documentation files
INC_LIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
43
					include/lib/libfdt		\
44
					include/lib/libc,		\
45
46
47
48
49
					$(wildcard include/lib/*)))
INC_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
					include/lib,			\
					$(wildcard include/*)))
LIB_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
50
					lib/compiler-rt			\
51
					lib/libfdt%			\
52
					lib/libc,			\
53
54
55
56
57
					$(wildcard lib/*)))
ROOT_DIRS_TO_CHECK	:=	$(sort $(filter-out			\
					lib				\
					include				\
					docs				\
58
					%.rst,				\
59
60
61
62
63
					$(wildcard *)))
CHECK_PATHS		:=	${ROOT_DIRS_TO_CHECK}			\
				${INC_DIRS_TO_CHECK}			\
				${INC_LIB_DIRS_TO_CHECK}		\
				${LIB_DIRS_TO_CHECK}
64

Juan Castillo's avatar
Juan Castillo committed
65
66
67
68
69
70

################################################################################
# Process build options
################################################################################

# Verbose flag
Jeenu Viswambharan's avatar
Jeenu Viswambharan committed
71
ifeq (${V},0)
72
        Q:=@
73
        ECHO:=@echo
Juan Castillo's avatar
Juan Castillo committed
74
        CHECKCODE_ARGS	+=	--no-summary --terse
75
else
76
        Q:=
77
        ECHO:=$(ECHO_QUIET)
78
endif
79
80
81

ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
        Q:=@
82
        ECHO:=$(ECHO_QUIET)
83
84
85
endif

export Q ECHO
86

Juan Castillo's avatar
Juan Castillo committed
87
88
# Process Debug flag
$(eval $(call add_define,DEBUG))
89
ifneq (${DEBUG}, 0)
Juan Castillo's avatar
Juan Castillo committed
90
        BUILD_TYPE	:=	debug
91
        TF_CFLAGS	+= 	-g
92
93
94
95
96
97
98

        ifneq ($(findstring clang,$(notdir $(CC))),)
             ASFLAGS		+= 	-g
        else
             ASFLAGS		+= 	-g -Wa,--gdwarf-2
        endif

Juan Castillo's avatar
Juan Castillo committed
99
100
        # Use LOG_LEVEL_INFO by default for debug builds
        LOG_LEVEL	:=	40
101
else
Juan Castillo's avatar
Juan Castillo committed
102
103
104
        BUILD_TYPE	:=	release
        # Use LOG_LEVEL_NOTICE by default for release builds
        LOG_LEVEL	:=	20
105
106
endif

107
108
# Default build string (git branch and commit)
ifeq (${BUILD_STRING},)
109
        BUILD_STRING	:=	$(shell git describe --always --dirty --tags 2> /dev/null)
110
111
112
endif
VERSION_STRING		:=	v${VERSION_MAJOR}.${VERSION_MINOR}(${BUILD_TYPE}):${BUILD_STRING}

Juan Castillo's avatar
Juan Castillo committed
113
114
115
116
# The cert_create tool cannot generate certificates individually, so we use the
# target 'certificates' to create them all
ifneq (${GENERATE_COT},0)
        FIP_DEPS += certificates
117
        FWU_FIP_DEPS += fwu_certificates
Juan Castillo's avatar
Juan Castillo committed
118
119
endif

120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# Process BRANCH_PROTECTION value and set
# Pointer Authentication and Branch Target Identification flags
ifeq (${BRANCH_PROTECTION},0)
	# Default value turns off all types of branch protection
	BP_OPTION := none
else ifneq (${ARCH},aarch64)
        $(error BRANCH_PROTECTION requires AArch64)
else ifeq (${BRANCH_PROTECTION},1)
	# Enables all types of branch protection features
	BP_OPTION := standard
	ENABLE_BTI := 1
	ENABLE_PAUTH := 1
else ifeq (${BRANCH_PROTECTION},2)
	# Return address signing to its standard level
	BP_OPTION := pac-ret
	ENABLE_PAUTH := 1
else ifeq (${BRANCH_PROTECTION},3)
	# Extend the signing to include leaf functions
	BP_OPTION := pac-ret+leaf
	ENABLE_PAUTH := 1
else
        $(error Unknown BRANCH_PROTECTION value ${BRANCH_PROTECTION})
endif
Juan Castillo's avatar
Juan Castillo committed
143

144
145
146
147
148
149
150
151
152
# USE_SPINLOCK_CAS requires AArch64 build
ifeq (${USE_SPINLOCK_CAS},1)
ifneq (${ARCH},aarch64)
        $(error USE_SPINLOCK_CAS requires AArch64)
else
        $(info USE_SPINLOCK_CAS is an experimental feature)
endif
endif

Juan Castillo's avatar
Juan Castillo committed
153
154
155
156
################################################################################
# Toolchain
################################################################################

dp-arm's avatar
dp-arm committed
157
158
159
HOSTCC			:=	gcc
export HOSTCC

Juan Castillo's avatar
Juan Castillo committed
160
161
162
163
CC			:=	${CROSS_COMPILE}gcc
CPP			:=	${CROSS_COMPILE}cpp
AS			:=	${CROSS_COMPILE}gcc
AR			:=	${CROSS_COMPILE}ar
Roberto Vargas's avatar
Roberto Vargas committed
164
LINKER			:=	${CROSS_COMPILE}ld
Juan Castillo's avatar
Juan Castillo committed
165
166
167
168
OC			:=	${CROSS_COMPILE}objcopy
OD			:=	${CROSS_COMPILE}objdump
NM			:=	${CROSS_COMPILE}nm
PP			:=	${CROSS_COMPILE}gcc -E
169
DTC			:=	dtc
Juan Castillo's avatar
Juan Castillo committed
170

171
172
# Use ${LD}.bfd instead if it exists (as absolute path or together with $PATH).
ifneq ($(strip $(wildcard ${LD}.bfd) \
Roberto Vargas's avatar
Roberto Vargas committed
173
174
	$(foreach dir,$(subst :, ,${PATH}),$(wildcard ${dir}/${LINKER}.bfd))),)
LINKER			:=	${LINKER}.bfd
175
176
endif

177
178
179
180
181
ifeq (${ARM_ARCH_MAJOR},7)
target32-directive	= 	-target arm-none-eabi
# Will set march32-directive from platform configuration
else
target32-directive	= 	-target armv8a-none-eabi
182
183
184

# Set the compiler's target architecture profile based on ARM_ARCH_MINOR option
ifeq (${ARM_ARCH_MINOR},0)
185
march32-directive	= 	-march=armv8-a
186
187
188
189
190
march64-directive	= 	-march=armv8-a
else
march32-directive	= 	-march=armv8.${ARM_ARCH_MINOR}-a
march64-directive	= 	-march=armv8.${ARM_ARCH_MINOR}-a
endif
191
192
endif

193
ifneq ($(findstring armclang,$(notdir $(CC))),)
194
TF_CFLAGS_aarch32	=	-target arm-arm-none-eabi $(march32-directive)
195
TF_CFLAGS_aarch64	=	-target aarch64-arm-none-eabi $(march64-directive)
Roberto Vargas's avatar
Roberto Vargas committed
196
LD			=	$(LINKER)
197
AS			=	$(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
198
199
CPP			=	$(CC) -E $(TF_CFLAGS_$(ARCH))
PP			=	$(CC) -E $(TF_CFLAGS_$(ARCH))
200
else ifneq ($(findstring clang,$(notdir $(CC))),)
201
TF_CFLAGS_aarch32	=	$(target32-directive) $(march32-directive)
202
TF_CFLAGS_aarch64	=	-target aarch64-elf $(march64-directive)
Roberto Vargas's avatar
Roberto Vargas committed
203
LD			=	$(LINKER)
204
AS			=	$(CC) -c -x assembler-with-cpp $(TF_CFLAGS_$(ARCH))
205
206
CPP			=	$(CC) -E
PP			=	$(CC) -E
207
208
209
210
211
212
213
214
215
216
217
218
else ifneq ($(findstring gcc,$(notdir $(CC))),)
TF_CFLAGS_aarch32	=	$(march32-directive)
TF_CFLAGS_aarch64	=	$(march64-directive)
ifeq ($(ENABLE_LTO),1)
	# Enable LTO only for aarch64
	ifeq (${ARCH},aarch64)
		LTO_CFLAGS	=	-flto
		# Use gcc as a wrapper for the ld, recommended for LTO
		LINKER		:=	${CROSS_COMPILE}gcc
	endif
endif
LD			=	$(LINKER)
dp-arm's avatar
dp-arm committed
219
else
220
TF_CFLAGS_aarch32	=	$(march32-directive)
221
TF_CFLAGS_aarch64	=	$(march64-directive)
Roberto Vargas's avatar
Roberto Vargas committed
222
LD			=	$(LINKER)
dp-arm's avatar
dp-arm committed
223
224
endif

225
226
227
228
229
230
231
232
ifeq (${AARCH32_INSTRUCTION_SET},A32)
TF_CFLAGS_aarch32	+=	-marm
else ifeq (${AARCH32_INSTRUCTION_SET},T32)
TF_CFLAGS_aarch32	+=	-mthumb
else
$(error Error: Unknown AArch32 instruction set ${AARCH32_INSTRUCTION_SET})
endif

233
TF_CFLAGS_aarch32	+=	-mno-unaligned-access
dp-arm's avatar
dp-arm committed
234
TF_CFLAGS_aarch64	+=	-mgeneral-regs-only -mstrict-align
235

236
237
238
239
ifneq (${BP_OPTION},none)
TF_CFLAGS_aarch64	+=	-mbranch-protection=${BP_OPTION}
endif

240
ASFLAGS_aarch32		=	$(march32-directive)
241
ASFLAGS_aarch64		=	$(march64-directive)
242

Justin Chadwell's avatar
Justin Chadwell committed
243
244
# General warnings
WARNINGS		:=	-Wall -Wmissing-include-dirs -Wunused	\
Justin Chadwell's avatar
Justin Chadwell committed
245
				-Wdisabled-optimization	-Wvla -Wshadow	\
Justin Chadwell's avatar
Justin Chadwell committed
246
247
248
249
				-Wno-unused-parameter

# Additional warnings
# Level 1
250
251
252
253
254
WARNING1 := -Wextra
WARNING1 += -Wmissing-format-attribute
WARNING1 += -Wmissing-prototypes
WARNING1 += -Wold-style-definition

Justin Chadwell's avatar
Justin Chadwell committed
255
# Level 2
256
257
258
259
260
261
262
263
264
265
266
267
268
WARNING2 := -Waggregate-return
WARNING2 += -Wcast-align
WARNING2 += -Wnested-externs

WARNING3 := -Wbad-function-cast
WARNING3 += -Wcast-qual
WARNING3 += -Wconversion
WARNING3 += -Wpacked
WARNING3 += -Wpointer-arith
WARNING3 += -Wredundant-decls
WARNING3 += -Wswitch-default

ifeq (${W},1)
Justin Chadwell's avatar
Justin Chadwell committed
269
WARNINGS += $(WARNING1)
270
else ifeq (${W},2)
Justin Chadwell's avatar
Justin Chadwell committed
271
WARNINGS += $(WARNING1) $(WARNING2)
272
else ifeq (${W},3)
Justin Chadwell's avatar
Justin Chadwell committed
273
WARNINGS += $(WARNING1) $(WARNING2) $(WARNING3)
274
275
endif

Justin Chadwell's avatar
Justin Chadwell committed
276
# Compiler specific warnings
277
ifeq ($(findstring clang,$(notdir $(CC))),)
278
# not using clang
Justin Chadwell's avatar
Justin Chadwell committed
279
280
281
WARNINGS	+=		-Wunused-but-set-variable -Wmaybe-uninitialized	\
				-Wpacked-bitfield-compat -Wshift-overflow=2 \
				-Wlogical-op
282
283
else
# using clang
Justin Chadwell's avatar
Justin Chadwell committed
284
285
WARNINGS	+=		-Wshift-overflow -Wshift-sign-overflow \
				-Wlogical-op-parentheses
286
287
endif

288
289
290
291
ifneq (${E},0)
ERRORS := -Werror
endif

Justin Chadwell's avatar
Justin Chadwell committed
292
293
CPPFLAGS		=	${DEFINES} ${INCLUDES} ${MBEDTLS_INC} -nostdinc	\
				$(ERRORS) $(WARNINGS)
294
ASFLAGS			+=	$(CPPFLAGS) $(ASFLAGS_$(ARCH))			\
295
				-ffreestanding -Wa,--fatal-warnings
296
TF_CFLAGS		+=	$(CPPFLAGS) $(TF_CFLAGS_$(ARCH))		\
297
298
299
				-ffunction-sections -fdata-sections		\
				-ffreestanding -fno-builtin -fno-common		\
				-Os -std=gnu99
Juan Castillo's avatar
Juan Castillo committed
300

301
302
303
304
305
306
307
308
ifeq (${SANITIZE_UB},on)
TF_CFLAGS		+=	-fsanitize=undefined -fno-sanitize-recover
endif
ifeq (${SANITIZE_UB},trap)
TF_CFLAGS		+=	-fsanitize=undefined -fno-sanitize-recover	\
				-fsanitize-undefined-trap-on-error
endif

david cunado's avatar
david cunado committed
309
310
GCC_V_OUTPUT		:=	$(shell $(CC) -v 2>&1)

311
312
313
ifneq ($(findstring armlink,$(notdir $(LD))),)
TF_LDFLAGS		+=	--diag_error=warning --lto_level=O1
TF_LDFLAGS		+=	--remove --info=unused,unusedsymbols
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
TF_LDFLAGS		+=	$(TF_LDFLAGS_$(ARCH))
else ifneq ($(findstring gcc,$(notdir $(LD))),)
# Pass ld options with Wl or Xlinker switches
TF_LDFLAGS		+=	-Wl,--fatal-warnings -O1
TF_LDFLAGS		+=	-Wl,--gc-sections
ifeq ($(ENABLE_LTO),1)
	ifeq (${ARCH},aarch64)
		TF_LDFLAGS	+=	-flto -fuse-linker-plugin
	endif
endif
# GCC automatically adds fix-cortex-a53-843419 flag when used to link
# which breaks some builds, so disable if errata fix is not explicitly enabled
ifneq (${ERRATA_A53_843419},1)
	TF_LDFLAGS	+= 	-mno-fix-cortex-a53-843419
endif
TF_LDFLAGS		+= 	-nostdlib
TF_LDFLAGS		+=	$(subst --,-Xlinker --,$(TF_LDFLAGS_$(ARCH)))
331
else
Douglas Raillard's avatar
Douglas Raillard committed
332
333
334
TF_LDFLAGS		+=	--fatal-warnings -O1
TF_LDFLAGS		+=	--gc-sections
TF_LDFLAGS		+=	$(TF_LDFLAGS_$(ARCH))
335
endif
Juan Castillo's avatar
Juan Castillo committed
336

337
DTC_FLAGS		+=	-I dts -O dtb
338
DTC_CPPFLAGS		+=	-nostdinc -Iinclude -undef -x assembler-with-cpp
339

Juan Castillo's avatar
Juan Castillo committed
340
341
342
################################################################################
# Common sources and include directories
################################################################################
343
include lib/compiler-rt/compiler-rt.mk
Juan Castillo's avatar
Juan Castillo committed
344
345

BL_COMMON_SOURCES	+=	common/bl_common.c			\
Soby Mathew's avatar
Soby Mathew committed
346
				common/tf_log.c				\
347
				common/${ARCH}/debug.S			\
348
				drivers/console/multi_console.c		\
349
350
				lib/${ARCH}/cache_helpers.S		\
				lib/${ARCH}/misc_helpers.S		\
351
				plat/common/plat_bl_common.c		\
Soby Mathew's avatar
Soby Mathew committed
352
				plat/common/plat_log_common.c		\
353
				plat/common/${ARCH}/plat_common.c	\
354
				plat/common/${ARCH}/platform_helpers.S	\
355
				${COMPILER_RT_SRCS}
356

357
358
359
360
ifeq ($(notdir $(CC)),armclang)
BL_COMMON_SOURCES	+=	lib/${ARCH}/armclang_printf.S
endif

361
362
363
364
ifeq (${SANITIZE_UB},on)
BL_COMMON_SOURCES	+=	plat/common/ubsan.c
endif

365
INCLUDES		+=	-Iinclude				\
366
				-Iinclude/arch/${ARCH}			\
367
368
369
370
371
				-Iinclude/lib/cpus/${ARCH}		\
				-Iinclude/lib/el3_runtime/${ARCH}	\
				${PLAT_INCLUDES}			\
				${SPD_INCLUDES}

372
373
include common/backtrace/backtrace.mk

Juan Castillo's avatar
Juan Castillo committed
374
375
376
377
################################################################################
# Generic definitions
################################################################################

378
379
include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk

380
381
382
BUILD_BASE		:=	./build
BUILD_PLAT		:=	${BUILD_BASE}/${PLAT}/${BUILD_TYPE}

383
SPDS			:=	$(sort $(filter-out none, $(patsubst services/spd/%,%,$(wildcard services/spd/*))))
384

Juan Castillo's avatar
Juan Castillo committed
385
386
387
388
389
390
391
392
393
# Platforms providing their own TBB makefile may override this value
INCLUDE_TBBR_MK		:=	1


################################################################################
# Include SPD Makefile if one has been specified
################################################################################

ifneq (${SPD},none)
394
ifeq (${ARCH},aarch32)
395
        $(error "Error: SPD is incompatible with AArch32.")
396
endif
397
398
399
400
ifdef EL3_PAYLOAD_BASE
        $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")
        $(warning "The SPD and its BL32 companion will be present but ignored.")
endif
Juan Castillo's avatar
Juan Castillo committed
401
        # We expect to locate an spd.mk under the specified SPD directory
402
        SPD_MAKE	:=	$(wildcard services/spd/${SPD}/${SPD}.mk)
Juan Castillo's avatar
Juan Castillo committed
403
404
405
406
407
408
409

        ifeq (${SPD_MAKE},)
                $(error Error: No services/spd/${SPD}/${SPD}.mk located)
        endif
        $(info Including ${SPD_MAKE})
        include ${SPD_MAKE}

410
411
412
413
414
415
416
417
418
        # If there's BL32 companion for the chosen SPD, we expect that the SPD's
        # Makefile would set NEED_BL32 to "yes". In this case, the build system
        # supports two mutually exclusive options:
        # * BL32 is built from source: then BL32_SOURCES must contain the list
        #   of source files to build BL32
        # * BL32 is a prebuilt binary: then BL32 must point to the image file
        #   that will be included in the FIP
        # If both BL32_SOURCES and BL32 are defined, the binary takes precedence
        # over the sources.
Juan Castillo's avatar
Juan Castillo committed
419
endif
420

Juan Castillo's avatar
Juan Castillo committed
421
422
423
424
################################################################################
# Include the platform specific Makefile after the SPD Makefile (the platform
# makefile may use all previous definitions in this file)
################################################################################
425

426
include ${PLAT_MAKEFILE_FULL}
427

428
429
$(eval $(call MAKE_PREREQ_DIR,${BUILD_PLAT}))

430
431
432
433
ifeq (${ARM_ARCH_MAJOR},7)
include make_helpers/armv7-a-cpus.mk
endif

Soby Mathew's avatar
Soby Mathew committed
434
435
ifeq ($(ENABLE_PIE),1)
    TF_CFLAGS		+=	-fpie
436
437
438
439
440
	ifneq ($(findstring gcc,$(notdir $(LD))),)
		TF_LDFLAGS	+=	-Wl,-pie -Wl,--no-dynamic-linker
	else
		TF_LDFLAGS	+=	-pie --no-dynamic-linker
	endif
Soby Mathew's avatar
Soby Mathew committed
441
442
443
444
445
446
447
else
    PIE_FOUND		:=	$(findstring --enable-default-pie,${GCC_V_OUTPUT})
    ifneq ($(PIE_FOUND),)
        TF_CFLAGS		+=	-fno-PIE
    endif
endif

448
449
450
# Include the CPU specific operations makefile, which provides default
# values for all CPU errata workarounds and CPU specific optimisations.
# This can be overridden by the platform.
451
include lib/cpus/cpu-ops.mk
452

453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
ifeq (${ARCH},aarch32)
NEED_BL32 := yes

################################################################################
# Build `AARCH32_SP` as BL32 image for AArch32
################################################################################
ifneq (${AARCH32_SP},none)
# We expect to locate an sp.mk under the specified AARCH32_SP directory
AARCH32_SP_MAKE	:=	$(wildcard bl32/${AARCH32_SP}/${AARCH32_SP}.mk)

ifeq (${AARCH32_SP_MAKE},)
  $(error Error: No bl32/${AARCH32_SP}/${AARCH32_SP}.mk located)
endif

$(info Including ${AARCH32_SP_MAKE})
include ${AARCH32_SP_MAKE}
endif

endif
Juan Castillo's avatar
Juan Castillo committed
472

473
474
475
476
477
478
479
################################################################################
# Include libc if not overridden
################################################################################
ifeq (${OVERRIDE_LIBC},0)
include lib/libc/libc.mk
endif

480
481
482
483
484
################################################################################
# Check incompatible options
################################################################################

ifdef EL3_PAYLOAD_BASE
485
486
487
        ifdef PRELOADED_BL33_BASE
                $(warning "PRELOADED_BL33_BASE and EL3_PAYLOAD_BASE are \
                incompatible build options. EL3_PAYLOAD_BASE has priority.")
488
        endif
489
490
491
492
493
494
        ifneq (${GENERATE_COT},0)
                $(error "GENERATE_COT and EL3_PAYLOAD_BASE are incompatible build options.")
        endif
        ifneq (${TRUSTED_BOARD_BOOT},0)
                $(error "TRUSTED_BOARD_BOOT and EL3_PAYLOAD_BASE are incompatible build options.")
        endif
495
496
497
498
499
500
501
endif

ifeq (${NEED_BL33},yes)
        ifdef EL3_PAYLOAD_BASE
                $(warning "BL33 image is not needed when option \
                BL33_PAYLOAD_BASE is used and won't be added to the FIP file.")
        endif
502
503
504
505
        ifdef PRELOADED_BL33_BASE
                $(warning "BL33 image is not needed when option \
                PRELOADED_BL33_BASE is used and won't be added to the FIP \
                file.")
506
507
508
        endif
endif

509
510
511
512
513
# When building for systems with hardware-assisted coherency, there's no need to
# use USE_COHERENT_MEM. Require that USE_COHERENT_MEM must be set to 0 too.
ifeq ($(HW_ASSISTED_COHERENCY)-$(USE_COHERENT_MEM),1-1)
$(error USE_COHERENT_MEM cannot be enabled with HW_ASSISTED_COHERENCY)
endif
514

Jiafei Pan's avatar
Jiafei Pan committed
515
516
517
518
519
#For now, BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is 1.
ifeq ($(BL2_AT_EL3)-$(BL2_IN_XIP_MEM),0-1)
$(error "BL2_IN_XIP_MEM is only supported when BL2_AT_EL3 is enabled")
endif

520
521
522
523
524
525
526
# For RAS_EXTENSION, require that EAs are handled in EL3 first
ifeq ($(RAS_EXTENSION),1)
    ifneq ($(HANDLE_EA_EL3_FIRST),1)
        $(error For RAS_EXTENSION, HANDLE_EA_EL3_FIRST must also be 1)
    endif
endif

527
528
529
530
531
532
533
# When FAULT_INJECTION_SUPPORT is used, require that RAS_EXTENSION is enabled
ifeq ($(FAULT_INJECTION_SUPPORT),1)
    ifneq ($(RAS_EXTENSION),1)
        $(error For FAULT_INJECTION_SUPPORT, RAS_EXTENSION must also be 1)
    endif
endif

534
# DYN_DISABLE_AUTH can be set only when TRUSTED_BOARD_BOOT=1
535
536
537
538
539
540
ifeq ($(DYN_DISABLE_AUTH), 1)
    ifeq (${TRUSTED_BOARD_BOOT}, 0)
        $(error "TRUSTED_BOARD_BOOT must be enabled for DYN_DISABLE_AUTH to be set.")
    endif
endif

541
# If pointer authentication is used in the firmware, make sure that all the
542
543
# registers associated to it are also saved and restored.
# Not doing it would leak the value of the keys used by EL3 to EL1 and S-EL1.
544
ifeq ($(ENABLE_PAUTH),1)
545
546
    ifeq ($(CTX_INCLUDE_PAUTH_REGS),0)
        $(error Pointer Authentication requires CTX_INCLUDE_PAUTH_REGS=1)
547
    endif
548
549
550
551
552
553
554
endif

ifeq ($(CTX_INCLUDE_PAUTH_REGS),1)
    ifneq (${ARCH},aarch64)
        $(error CTX_INCLUDE_PAUTH_REGS requires AArch64)
    else
        $(info CTX_INCLUDE_PAUTH_REGS is an experimental feature)
555
556
557
    endif
endif

558
559
560
561
562
563
564
565
ifeq ($(ENABLE_PAUTH),1)
    $(info Pointer Authentication is an experimental feature)
endif

ifeq ($(ENABLE_BTI),1)
    $(info Branch Protection is an experimental feature)
endif

566
567
568
569
570
571
572
573
ifeq ($(CTX_INCLUDE_MTE_REGS),1)
    ifneq (${ARCH},aarch64)
        $(error CTX_INCLUDE_MTE_REGS requires AArch64)
    else
        $(info CTX_INCLUDE_MTE_REGS is an experimental feature)
    endif
endif

574
575
576
577
578
579
580
581
# The SPCI-based SPM implementation and the MM-based SPM implementation cannot
# be enabled at the same time.
ifeq ($(ENABLE_SPM),1)
    ifeq ($(SPM_MM),1)
        $(error Use only one of the ENABLE_SPM and SPM_MM flags)
    endif
endif

Juan Castillo's avatar
Juan Castillo committed
582
583
584
585
################################################################################
# Process platform overrideable behaviour
################################################################################

586
587
# Using BL2 implies that a BL33 image also needs to be supplied for the FIP and
# Certificate generation tools. This flag can be overridden by the platform.
588
ifdef BL2_SOURCES
589
590
591
592
593
        ifdef EL3_PAYLOAD_BASE
                # If booting an EL3 payload there is no need for a BL33 image
                # in the FIP file.
                NEED_BL33		:=	no
        else
594
                ifdef PRELOADED_BL33_BASE
595
596
597
598
599
600
601
                        # If booting a BL33 preloaded image there is no need of
                        # another one in the FIP file.
                        NEED_BL33		:=	no
                else
                        NEED_BL33		?=	yes
                endif
        endif
602
603
endif

604
605
606
607
608
# If SCP_BL2 is given, we always want FIP to include it.
ifdef SCP_BL2
        NEED_SCP_BL2		:=	yes
endif

609
610
611
612
613
614
615
616
617
618
619
# For AArch32, BL31 is not currently supported.
ifneq (${ARCH},aarch32)
    ifdef BL31_SOURCES
        # When booting an EL3 payload, there is no need to compile the BL31 image nor
        # put it in the FIP.
        ifndef EL3_PAYLOAD_BASE
            NEED_BL31 := yes
        endif
    endif
endif

Juan Castillo's avatar
Juan Castillo committed
620
621
622
623
624
# Process TBB related flags
ifneq (${GENERATE_COT},0)
        # Common cert_create options
        ifneq (${CREATE_KEYS},0)
                $(eval CRT_ARGS += -n)
625
                $(eval FWU_CRT_ARGS += -n)
Juan Castillo's avatar
Juan Castillo committed
626
627
                ifneq (${SAVE_KEYS},0)
                        $(eval CRT_ARGS += -k)
628
                        $(eval FWU_CRT_ARGS += -k)
Juan Castillo's avatar
Juan Castillo committed
629
630
631
632
633
634
                endif
        endif
        # Include TBBR makefile (unless the platform indicates otherwise)
        ifeq (${INCLUDE_TBBR_MK},1)
                include make_helpers/tbbr/tbbr_tools.mk
        endif
635
endif
636

637
638
639
640
ifneq (${FIP_ALIGN},0)
FIP_ARGS += --align ${FIP_ALIGN}
endif

641
642
643
644
645
646
################################################################################
# Include libraries' Makefile that are used in all BL
################################################################################

include lib/stack_protector/stack_protector.mk

Juan Castillo's avatar
Juan Castillo committed
647
################################################################################
dp-arm's avatar
dp-arm committed
648
# Auxiliary tools (fiptool, cert_create, etc)
Juan Castillo's avatar
Juan Castillo committed
649
################################################################################
650

Juan Castillo's avatar
Juan Castillo committed
651
652
# Variables for use with Certificate Generation Tool
CRTTOOLPATH		?=	tools/cert_create
653
CRTTOOL			?=	${CRTTOOLPATH}/cert_create${BIN_EXT}
654

Juan Castillo's avatar
Juan Castillo committed
655
# Variables for use with Firmware Image Package
dp-arm's avatar
dp-arm committed
656
657
FIPTOOLPATH		?=	tools/fiptool
FIPTOOL			?=	${FIPTOOLPATH}/fiptool${BIN_EXT}
Jeenu Viswambharan's avatar
Jeenu Viswambharan committed
658

659
660
661
662
# Variables for use with sptool
SPTOOLPATH		?=	tools/sptool
SPTOOL			?=	${SPTOOLPATH}/sptool${BIN_EXT}

663
664
665
# Variables for use with ROMLIB
ROMLIBPATH		?=	lib/romlib

666
667
668
669
670
671
672
# Variable for use with Python
PYTHON			?=	python3

# Variables for use with PRINT_MEMORY_MAP
PRINT_MEMORY_MAP_PATH		?=	tools/memory
PRINT_MEMORY_MAP		?=	${PRINT_MEMORY_MAP_PATH}/print_memory_map.py

673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
################################################################################
# Include BL specific makefiles
################################################################################
ifdef BL1_SOURCES
NEED_BL1 := yes
include bl1/bl1.mk
endif

ifdef BL2_SOURCES
NEED_BL2 := yes
include bl2/bl2.mk
endif

ifdef BL2U_SOURCES
NEED_BL2U := yes
include bl2u/bl2u.mk
endif

691
ifeq (${NEED_BL31},yes)
692
693
694
695
696
ifdef BL31_SOURCES
include bl31/bl31.mk
endif
endif

697
698
699
700
ifdef FDT_SOURCES
NEED_FDT := yes
endif

Juan Castillo's avatar
Juan Castillo committed
701
702
703
################################################################################
# Build options checks
################################################################################
704

705
$(eval $(call assert_boolean,COLD_BOOT_SINGLE_CPU))
706
707
708
$(eval $(call assert_boolean,CREATE_KEYS))
$(eval $(call assert_boolean,CTX_INCLUDE_AARCH32_REGS))
$(eval $(call assert_boolean,CTX_INCLUDE_FPREGS))
709
$(eval $(call assert_boolean,CTX_INCLUDE_PAUTH_REGS))
710
$(eval $(call assert_boolean,CTX_INCLUDE_MTE_REGS))
711
$(eval $(call assert_boolean,DEBUG))
712
$(eval $(call assert_boolean,DYN_DISABLE_AUTH))
713
$(eval $(call assert_boolean,EL3_EXCEPTION_HANDLING))
714
$(eval $(call assert_boolean,ENABLE_AMU))
715
$(eval $(call assert_boolean,ENABLE_ASSERTIONS))
716
$(eval $(call assert_boolean,ENABLE_MPAM_FOR_LOWER_ELS))
Soby Mathew's avatar
Soby Mathew committed
717
$(eval $(call assert_boolean,ENABLE_PIE))
718
$(eval $(call assert_boolean,ENABLE_PMF))
719
$(eval $(call assert_boolean,ENABLE_PSCI_STAT))
dp-arm's avatar
dp-arm committed
720
$(eval $(call assert_boolean,ENABLE_RUNTIME_INSTRUMENTATION))
Jeenu Viswambharan's avatar
Jeenu Viswambharan committed
721
$(eval $(call assert_boolean,ENABLE_SPE_FOR_LOWER_ELS))
722
$(eval $(call assert_boolean,ENABLE_SPM))
David Cunado's avatar
David Cunado committed
723
$(eval $(call assert_boolean,ENABLE_SVE_FOR_NS))
724
$(eval $(call assert_boolean,ERROR_DEPRECATED))
725
$(eval $(call assert_boolean,FAULT_INJECTION_SUPPORT))
726
$(eval $(call assert_boolean,GENERATE_COT))
727
$(eval $(call assert_boolean,GICV2_G0_FOR_EL3))
728
$(eval $(call assert_boolean,HANDLE_EA_EL3_FIRST))
729
$(eval $(call assert_boolean,HW_ASSISTED_COHERENCY))
730
$(eval $(call assert_boolean,NS_TIMER_SWITCH))
731
$(eval $(call assert_boolean,OVERRIDE_LIBC))
732
733
734
$(eval $(call assert_boolean,PL011_GENERIC_UART))
$(eval $(call assert_boolean,PROGRAMMABLE_RESET_ADDRESS))
$(eval $(call assert_boolean,PSCI_EXTENDED_STATE_ID))
735
$(eval $(call assert_boolean,RAS_EXTENSION))
736
737
738
739
$(eval $(call assert_boolean,RESET_TO_BL31))
$(eval $(call assert_boolean,SAVE_KEYS))
$(eval $(call assert_boolean,SEPARATE_CODE_AND_RODATA))
$(eval $(call assert_boolean,SPIN_ON_BL1_EXIT))
740
$(eval $(call assert_boolean,SPM_MM))
741
742
$(eval $(call assert_boolean,TRUSTED_BOARD_BOOT))
$(eval $(call assert_boolean,USE_COHERENT_MEM))
743
$(eval $(call assert_boolean,USE_ROMLIB))
744
$(eval $(call assert_boolean,USE_TBBR_DEFS))
745
$(eval $(call assert_boolean,WARMBOOT_ENABLE_DCACHE_EARLY))
Roberto Vargas's avatar
Roberto Vargas committed
746
$(eval $(call assert_boolean,BL2_AT_EL3))
Jiafei Pan's avatar
Jiafei Pan committed
747
$(eval $(call assert_boolean,BL2_IN_XIP_MEM))
748
$(eval $(call assert_boolean,BL2_INV_DCACHE))
749
$(eval $(call assert_boolean,USE_SPINLOCK_CAS))
750

751
752
$(eval $(call assert_numeric,ARM_ARCH_MAJOR))
$(eval $(call assert_numeric,ARM_ARCH_MINOR))
753
$(eval $(call assert_numeric,BRANCH_PROTECTION))
754

755
756
757
758
ifdef KEY_SIZE
        $(eval $(call assert_numeric,KEY_SIZE))
endif

759
760
761
762
ifeq ($(filter $(SANITIZE_UB), on off trap),)
        $(error "Invalid value for SANITIZE_UB: can be one of on, off, trap")
endif

Juan Castillo's avatar
Juan Castillo committed
763
764
765
766
767
################################################################################
# Add definitions to the cpp preprocessor based on the current build options.
# This is done after including the platform specific makefile to allow the
# platform to overwrite the default options
################################################################################
768

769
770
$(eval $(call add_define,ARM_ARCH_MAJOR))
$(eval $(call add_define,ARM_ARCH_MINOR))
771
$(eval $(call add_define,COLD_BOOT_SINGLE_CPU))
772
773
$(eval $(call add_define,CTX_INCLUDE_AARCH32_REGS))
$(eval $(call add_define,CTX_INCLUDE_FPREGS))
774
$(eval $(call add_define,CTX_INCLUDE_PAUTH_REGS))
775
$(eval $(call add_define,EL3_EXCEPTION_HANDLING))
776
$(eval $(call add_define,CTX_INCLUDE_MTE_REGS))
777
$(eval $(call add_define,ENABLE_AMU))
778
$(eval $(call add_define,ENABLE_ASSERTIONS))
779
$(eval $(call add_define,ENABLE_BTI))
780
$(eval $(call add_define,ENABLE_MPAM_FOR_LOWER_ELS))
781
$(eval $(call add_define,ENABLE_PAUTH))
Soby Mathew's avatar
Soby Mathew committed
782
$(eval $(call add_define,ENABLE_PIE))
783
$(eval $(call add_define,ENABLE_PMF))
784
$(eval $(call add_define,ENABLE_PSCI_STAT))
dp-arm's avatar
dp-arm committed
785
$(eval $(call add_define,ENABLE_RUNTIME_INSTRUMENTATION))
Jeenu Viswambharan's avatar
Jeenu Viswambharan committed
786
$(eval $(call add_define,ENABLE_SPE_FOR_LOWER_ELS))
787
$(eval $(call add_define,ENABLE_SPM))
David Cunado's avatar
David Cunado committed
788
$(eval $(call add_define,ENABLE_SVE_FOR_NS))
789
$(eval $(call add_define,ERROR_DEPRECATED))
790
$(eval $(call add_define,FAULT_INJECTION_SUPPORT))
791
$(eval $(call add_define,GICV2_G0_FOR_EL3))
792
$(eval $(call add_define,HANDLE_EA_EL3_FIRST))
793
$(eval $(call add_define,HW_ASSISTED_COHERENCY))
794
795
796
797
798
799
$(eval $(call add_define,LOG_LEVEL))
$(eval $(call add_define,NS_TIMER_SWITCH))
$(eval $(call add_define,PL011_GENERIC_UART))
$(eval $(call add_define,PLAT_${PLAT}))
$(eval $(call add_define,PROGRAMMABLE_RESET_ADDRESS))
$(eval $(call add_define,PSCI_EXTENDED_STATE_ID))
800
$(eval $(call add_define,RAS_EXTENSION))
801
802
$(eval $(call add_define,RESET_TO_BL31))
$(eval $(call add_define,SEPARATE_CODE_AND_RODATA))
803
$(eval $(call add_define,RECLAIM_INIT_CODE))
804
805
$(eval $(call add_define,SPD_${SPD}))
$(eval $(call add_define,SPIN_ON_BL1_EXIT))
806
$(eval $(call add_define,SPM_MM))
807
808
$(eval $(call add_define,TRUSTED_BOARD_BOOT))
$(eval $(call add_define,USE_COHERENT_MEM))
809
$(eval $(call add_define,USE_ROMLIB))
810
$(eval $(call add_define,USE_TBBR_DEFS))
811
$(eval $(call add_define,WARMBOOT_ENABLE_DCACHE_EARLY))
Roberto Vargas's avatar
Roberto Vargas committed
812
$(eval $(call add_define,BL2_AT_EL3))
Jiafei Pan's avatar
Jiafei Pan committed
813
$(eval $(call add_define,BL2_IN_XIP_MEM))
814
$(eval $(call add_define,BL2_INV_DCACHE))
815
$(eval $(call add_define,USE_SPINLOCK_CAS))
816

817
818
819
820
ifeq (${SANITIZE_UB},trap)
        $(eval $(call add_define,MONITOR_TRAPS))
endif

821
822
# Define the EL3_PAYLOAD_BASE flag only if it is provided.
ifdef EL3_PAYLOAD_BASE
823
824
        $(eval $(call add_define,EL3_PAYLOAD_BASE))
else
825
826
827
828
        # Define the PRELOADED_BL33_BASE flag only if it is provided and
        # EL3_PAYLOAD_BASE is not defined, as it has priority.
        ifdef PRELOADED_BL33_BASE
                $(eval $(call add_define,PRELOADED_BL33_BASE))
829
        endif
830
endif
831

832
833
834
835
836
# Define the DYN_DISABLE_AUTH flag only if set.
ifeq (${DYN_DISABLE_AUTH},1)
$(eval $(call add_define,DYN_DISABLE_AUTH))
endif

837
838
839
840
ifneq ($(findstring armlink,$(notdir $(LD))),)
$(eval $(call add_define,USE_ARM_LINK))
endif

Juan Castillo's avatar
Juan Castillo committed
841
842
843
################################################################################
# Build targets
################################################################################
844

845
.PHONY:	all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool sptool fip fwu_fip certtool dtbs memmap
Juan Castillo's avatar
Juan Castillo committed
846
.SUFFIXES:
847

Juan Castillo's avatar
Juan Castillo committed
848
all: msg_start
849

Juan Castillo's avatar
Juan Castillo committed
850
851
msg_start:
	@echo "Building ${PLAT}"
852

853
ifeq (${ERROR_DEPRECATED},0)
854
# Check if deprecated declarations and cpp warnings should be treated as error or not.
855
856
857
ifneq ($(findstring clang,$(notdir $(CC))),)
    CPPFLAGS		+= 	-Wno-error=deprecated-declarations
else
858
    CPPFLAGS		+= 	-Wno-error=deprecated-declarations -Wno-error=cpp
859
endif
860
861
# __ASSEMBLY__ is deprecated in favor of the compiler-builtin __ASSEMBLER__.
ASFLAGS	+= -D__ASSEMBLY__
862
863
864
865
866
867
# AARCH32/AARCH64 macros are deprecated in favor of the compiler-builtin __aarch64__.
ifeq (${ARCH},aarch32)
        $(eval $(call add_define,AARCH32))
else
        $(eval $(call add_define,AARCH64))
endif
868
endif # !ERROR_DEPRECATED
869

870
$(eval $(call MAKE_LIB_DIRS))
871
$(eval $(call MAKE_LIB,c))
872

Juan Castillo's avatar
Juan Castillo committed
873
874
875
876
# Expand build macros for the different images
ifeq (${NEED_BL1},yes)
$(eval $(call MAKE_BL,1))
endif
877

Juan Castillo's avatar
Juan Castillo committed
878
ifeq (${NEED_BL2},yes)
879
880
881
882
ifeq (${BL2_AT_EL3}, 0)
FIP_BL2_ARGS := tb-fw
endif

883
$(if ${BL2}, $(eval $(call TOOL_ADD_IMG,bl2,--${FIP_BL2_ARGS})),\
884
	$(eval $(call MAKE_BL,2,${FIP_BL2_ARGS})))
Juan Castillo's avatar
Juan Castillo committed
885
endif
886

887
ifeq (${NEED_SCP_BL2},yes)
888
$(eval $(call TOOL_ADD_IMG,scp_bl2,--scp-fw))
889
890
endif

Juan Castillo's avatar
Juan Castillo committed
891
892
ifeq (${NEED_BL31},yes)
BL31_SOURCES += ${SPD_SOURCES}
893
$(if ${BL31}, $(eval $(call TOOL_ADD_IMG,bl31,--soc-fw)),\
894
	$(eval $(call MAKE_BL,31,soc-fw)))
Juan Castillo's avatar
Juan Castillo committed
895
endif
896

897
# If a BL32 image is needed but neither BL32 nor BL32_SOURCES is defined, the
898
# build system will call TOOL_ADD_IMG to print a warning message and abort the
899
# process. Note that the dependency on BL32 applies to the FIP only.
Juan Castillo's avatar
Juan Castillo committed
900
ifeq (${NEED_BL32},yes)
901
902
903
904

BUILD_BL32 := $(if $(BL32),,$(if $(BL32_SOURCES),1))

$(if ${BUILD_BL32}, $(eval $(call MAKE_BL,32,tos-fw)),\
905
	$(eval $(call TOOL_ADD_IMG,bl32,--tos-fw)))
906
907
endif

Juan Castillo's avatar
Juan Castillo committed
908
909
# Add the BL33 image if required by the platform
ifeq (${NEED_BL33},yes)
910
$(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
911
912
endif

913
ifeq (${NEED_BL2U},yes)
914
$(if ${BL2U}, $(eval $(call TOOL_ADD_IMG,bl2u,--ap-fwu-cfg,FWU_)),\
915
	$(eval $(call MAKE_BL,2u,ap-fwu-cfg,FWU_)))
916
917
endif

918
919
# Expand build macros for the different images
ifeq (${NEED_FDT},yes)
920
    $(eval $(call MAKE_DTBS,$(BUILD_PLAT)/fdts,$(FDT_SOURCES)))
921
922
endif

923
924
locate-checkpatch:
ifndef CHECKPATCH
925
	$(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
926
927
else
ifeq (,$(wildcard ${CHECKPATCH}))
928
	$(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl")
929
930
931
endif
endif

932
clean:
Juan Castillo's avatar
Juan Castillo committed
933
	@echo "  CLEAN"
934
	$(call SHELL_REMOVE_DIR,${BUILD_PLAT})
Juan Castillo's avatar
Juan Castillo committed
935
936
	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
937
	${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
938

939
realclean distclean:
Juan Castillo's avatar
Juan Castillo committed
940
	@echo "  REALCLEAN"
941
942
	$(call SHELL_REMOVE_DIR,${BUILD_BASE})
	$(call SHELL_DELETE_ALL, ${CURDIR}/cscope.*)
Juan Castillo's avatar
Juan Castillo committed
943
	${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
944
	${Q}${MAKE} --no-print-directory -C ${SPTOOLPATH} clean
Juan Castillo's avatar
Juan Castillo committed
945
	${Q}${MAKE} PLAT=${PLAT} --no-print-directory -C ${CRTTOOLPATH} clean
946
	${Q}${MAKE} --no-print-directory -C ${ROMLIBPATH} clean
947

948
checkcodebase:		locate-checkpatch
Juan Castillo's avatar
Juan Castillo committed
949
	@echo "  CHECKING STYLE"
950
	@if test -d .git ; then						\
951
		git ls-files | grep -E -v 'libfdt|libc|docs|\.rst' |	\
952
953
954
955
956
957
958
		while read GIT_FILE ;					\
		do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ;	\
		done ;							\
	else								\
		 find . -type f -not -iwholename "*.git*"		\
		 -not -iwholename "*build*"				\
		 -not -iwholename "*libfdt*"				\
959
		 -not -iwholename "*libc*"				\
960
		 -not -iwholename "*docs*"				\
961
		 -not -iwholename "*.rst"				\
962
963
		 -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ;	\
	fi
964
965

checkpatch:		locate-checkpatch
Juan Castillo's avatar
Juan Castillo committed
966
	@echo "  CHECKING STYLE"
967
968
969
	@if test -n "${CHECKPATCH_OPTS}"; then				\
		echo "    with ${CHECKPATCH_OPTS} option(s)";		\
	fi
970
971
972
973
	${Q}COMMON_COMMIT=$$(git merge-base HEAD ${BASE_COMMIT});	\
	for commit in `git rev-list $$COMMON_COMMIT..HEAD`; do		\
		printf "\n[*] Checking style of '$$commit'\n\n";	\
		git log --format=email "$$commit~..$$commit"		\
974
975
			-- ${CHECK_PATHS} |				\
			${CHECKPATCH} ${CHECKPATCH_OPTS} - || true;	\
976
		git diff --format=email "$$commit~..$$commit"		\
977
978
			-- ${CHECK_PATHS} |				\
			${CHECKPATCH}  ${CHECKPATCH_OPTS} - || true;	\
979
	done
Juan Castillo's avatar
Juan Castillo committed
980
981

certtool: ${CRTTOOL}
982

983
984
.PHONY: ${CRTTOOL}
${CRTTOOL}:
985
	${Q}${MAKE} PLAT=${PLAT} USE_TBBR_DEFS=${USE_TBBR_DEFS} --no-print-directory -C ${CRTTOOLPATH}
986
	@${ECHO_BLANK_LINE}
Juan Castillo's avatar
Juan Castillo committed
987
	@echo "Built $@ successfully"
988
	@${ECHO_BLANK_LINE}
989

990
ifneq (${GENERATE_COT},0)
Juan Castillo's avatar
Juan Castillo committed
991
992
certificates: ${CRT_DEPS} ${CRTTOOL}
	${Q}${CRTTOOL} ${CRT_ARGS}
993
	@${ECHO_BLANK_LINE}
Juan Castillo's avatar
Juan Castillo committed
994
995
	@echo "Built $@ successfully"
	@echo "Certificates can be found in ${BUILD_PLAT}"
996
	@${ECHO_BLANK_LINE}
997
998
endif

Juan Castillo's avatar
Juan Castillo committed
999
${BUILD_PLAT}/${FIP_NAME}: ${FIP_DEPS} ${FIPTOOL}
dp-arm's avatar
dp-arm committed
1000
1001
	${Q}${FIPTOOL} create ${FIP_ARGS} $@
	${Q}${FIPTOOL} info $@
1002
	@${ECHO_BLANK_LINE}
Juan Castillo's avatar
Juan Castillo committed
1003
	@echo "Built $@ successfully"
1004
	@${ECHO_BLANK_LINE}
1005

1006
1007
1008
ifneq (${GENERATE_COT},0)
fwu_certificates: ${FWU_CRT_DEPS} ${CRTTOOL}
	${Q}${CRTTOOL} ${FWU_CRT_ARGS}
1009
	@${ECHO_BLANK_LINE}
1010
1011
	@echo "Built $@ successfully"
	@echo "FWU certificates can be found in ${BUILD_PLAT}"
1012
	@${ECHO_BLANK_LINE}
1013
1014
1015
endif

${BUILD_PLAT}/${FWU_FIP_NAME}: ${FWU_FIP_DEPS} ${FIPTOOL}
dp-arm's avatar
dp-arm committed
1016
1017
	${Q}${FIPTOOL} create ${FWU_FIP_ARGS} $@
	${Q}${FIPTOOL} info $@
1018
	@${ECHO_BLANK_LINE}
1019
	@echo "Built $@ successfully"
1020
	@${ECHO_BLANK_LINE}
1021

Juan Castillo's avatar
Juan Castillo committed
1022
1023
fiptool: ${FIPTOOL}
fip: ${BUILD_PLAT}/${FIP_NAME}
1024
fwu_fip: ${BUILD_PLAT}/${FWU_FIP_NAME}
1025

Juan Castillo's avatar
Juan Castillo committed
1026
1027
.PHONY: ${FIPTOOL}
${FIPTOOL}:
dp-arm's avatar
dp-arm committed
1028
	${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" --no-print-directory -C ${FIPTOOLPATH}
1029

1030
1031
1032
1033
1034
sptool: ${SPTOOL}
.PHONY: ${SPTOOL}
${SPTOOL}:
	${Q}${MAKE} CPPFLAGS="-DVERSION='\"${VERSION_STRING}\"'" --no-print-directory -C ${SPTOOLPATH}

1035
1036
.PHONY: libraries
romlib.bin: libraries
1037
	${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
1038

1039
1040
1041
1042
# Call print_memory_map tool
memmap: all
	${Q}${PYTHON} $(PRINT_MEMORY_MAP) $(BUILD_PLAT)

1043
1044
1045
1046
1047
cscope:
	@echo "  CSCOPE"
	${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
	${Q}cscope -b -q -k

1048
help:
John Tsichritzis's avatar
John Tsichritzis committed
1049
	@echo "usage: ${MAKE} [PLAT=<platform>] [OPTIONS] [TARGET]"
1050
1051
	@echo ""
	@echo "PLAT is used to specify which platform you wish to build."
1052
	@echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
1053
	@echo ""
John Tsichritzis's avatar
John Tsichritzis committed
1054
1055
	@echo "platform = ${PLATFORM_LIST}"
	@echo ""
1056
1057
1058
1059
1060
	@echo "Please refer to the User Guide for a list of all supported options."
	@echo "Note that the build system doesn't track dependencies for build "
	@echo "options. Therefore, if any of the build options are changed "
	@echo "from a previous build, a clean build must be performed."
	@echo ""
1061
	@echo "Supported Targets:"
1062
	@echo "  all            Build all individual bootloader binaries"
1063
	@echo "  bl1            Build the BL1 binary"
1064
	@echo "  bl2            Build the BL2 binary"
1065
	@echo "  bl2u           Build the BL2U binary"
1066
	@echo "  bl31           Build the BL31 binary"
1067
1068
	@echo "  bl32           Build the BL32 binary. If ARCH=aarch32, then "
	@echo "                 this builds secure payload specified by AARCH32_SP"
Juan Castillo's avatar
Juan Castillo committed
1069
	@echo "  certificates   Build the certificates (requires 'GENERATE_COT=1')"
1070
	@echo "  fip            Build the Firmware Image Package (FIP)"
1071
	@echo "  fwu_fip        Build the FWU Firmware Image Package (FIP)"
1072
1073
1074
1075
	@echo "  checkcodebase  Check the coding style of the entire source tree"
	@echo "  checkpatch     Check the coding style on changes in the current"
	@echo "                 branch against BASE_COMMIT (default origin/master)"
	@echo "  clean          Clean the build for the selected platform"
1076
	@echo "  cscope         Generate cscope index"
1077
	@echo "  distclean      Remove all build artifacts for all platforms"
1078
	@echo "  certtool       Build the Certificate generation tool"
1079
	@echo "  fiptool        Build the Firmware Image Package (FIP) creation tool"
1080
	@echo "  sptool         Build the Secure Partition Package creation tool"
1081
	@echo "  dtbs           Build the Device Tree Blobs (if required for the platform)"
1082
	@echo "  memmap         Print the memory map of the built binaries"
1083
	@echo ""
1084
	@echo "Note: most build targets require PLAT to be set to a specific platform."
1085
1086
1087
	@echo ""
	@echo "example: build all targets for the FVP platform:"
	@echo "  CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"