1#
2# Copyright (c) 2015-2022, Arm Limited and Contributors. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7# Report an error if the eval make function is not available.
8$(eval eval_available := T)
9ifneq (${eval_available},T)
10    $(error This makefile only works with a Make program that supports $$(eval))
11endif
12
13# Some utility macros for manipulating awkward (whitespace) characters.
14blank			:=
15space			:=${blank} ${blank}
16
17# A user defined function to recursively search for a filename below a directory
18#    $1 is the directory root of the recursive search (blank for current directory).
19#    $2 is the file name to search for.
20define rwildcard
21$(strip $(foreach d,$(wildcard ${1}*),$(call rwildcard,${d}/,${2}) $(filter $(subst *,%,%${2}),${d})))
22endef
23
24# This table is used in converting lower case to upper case.
25uppercase_table:=a,A b,B c,C d,D e,E f,F g,G h,H i,I j,J k,K l,L m,M n,N o,O p,P q,Q r,R s,S t,T u,U v,V w,W x,X y,Y z,Z
26
27# Internal macro used for converting lower case to upper case.
28#   $(1) = upper case table
29#   $(2) = String to convert
30define uppercase_internal
31$(if $(1),$$(subst $(firstword $(1)),$(call uppercase_internal,$(wordlist 2,$(words $(1)),$(1)),$(2))),$(2))
32endef
33
34# A macro for converting a string to upper case
35#   $(1) = String to convert
36define uppercase
37$(eval uppercase_result:=$(call uppercase_internal,$(uppercase_table),$(1)))$(uppercase_result)
38endef
39
40# Convenience function for adding build definitions
41# $(eval $(call add_define,FOO)) will have:
42# -DFOO if $(FOO) is empty; -DFOO=$(FOO) otherwise
43define add_define
44    DEFINES			+=	-D$(1)$(if $(value $(1)),=$(value $(1)),)
45endef
46
47
48# Convenience function for addding multiple build definitions
49# $(eval $(call add_defines,FOO BOO))
50define add_defines
51    $(foreach def,$1,$(eval $(call add_define,$(def))))
52endef
53
54# Convenience function for adding build definitions
55# $(eval $(call add_define_val,FOO,BAR)) will have:
56# -DFOO=BAR
57define add_define_val
58    DEFINES			+=	-D$(1)=$(2)
59endef
60
61# Convenience function for verifying option has a boolean value
62# $(eval $(call assert_boolean,FOO)) will assert FOO is 0 or 1
63define assert_boolean
64    $(if $(filter-out 0 1,$($1)),$(error $1 must be boolean))
65endef
66
67# Convenience function for verifying options have boolean values
68# $(eval $(call assert_booleans,FOO BOO)) will assert FOO and BOO for 0 or 1 values
69define assert_booleans
70    $(foreach bool,$1,$(eval $(call assert_boolean,$(bool))))
71endef
72
730-9 := 0 1 2 3 4 5 6 7 8 9
74
75# Function to verify that a given option $(1) contains a numeric value
76define assert_numeric
77$(if $($(1)),,$(error $(1) must not be empty))
78$(eval __numeric := $($(1)))
79$(foreach d,$(0-9),$(eval __numeric := $(subst $(d),,$(__numeric))))
80$(if $(__numeric),$(error $(1) must be numeric))
81endef
82
83# Convenience function for verifying options have numeric values
84# $(eval $(call assert_numerics,FOO BOO)) will assert FOO and BOO contain numeric values
85define assert_numerics
86    $(foreach num,$1,$(eval $(call assert_numeric,$(num))))
87endef
88
89# CREATE_SEQ is a recursive function to create sequence of numbers from 1 to
90# $(2) and assign the sequence to $(1)
91define CREATE_SEQ
92$(if $(word $(2), $($(1))),\
93  $(eval $(1) += $(words $($(1))))\
94  $(eval $(1) := $(filter-out 0,$($(1)))),\
95  $(eval $(1) += $(words $($(1))))\
96  $(call CREATE_SEQ,$(1),$(2))\
97)
98endef
99
100# IMG_LINKERFILE defines the linker script corresponding to a BL stage
101#   $(1) = BL stage
102define IMG_LINKERFILE
103    ${BUILD_DIR}/$(1).ld
104endef
105
106# IMG_MAPFILE defines the output file describing the memory map corresponding
107# to a BL stage
108#   $(1) = BL stage
109define IMG_MAPFILE
110    ${BUILD_DIR}/$(1).map
111endef
112
113# IMG_ELF defines the elf file corresponding to a BL stage
114#   $(1) = BL stage
115define IMG_ELF
116    ${BUILD_DIR}/$(1).elf
117endef
118
119# IMG_DUMP defines the symbols dump file corresponding to a BL stage
120#   $(1) = BL stage
121define IMG_DUMP
122    ${BUILD_DIR}/$(1).dump
123endef
124
125# IMG_BIN defines the default image file corresponding to a BL stage
126#   $(1) = BL stage
127define IMG_BIN
128    ${BUILD_PLAT}/$(1).bin
129endef
130
131# IMG_ENC_BIN defines the default encrypted image file corresponding to a
132# BL stage
133#   $(1) = BL stage
134define IMG_ENC_BIN
135    ${BUILD_PLAT}/$(1)_enc.bin
136endef
137
138# ENCRYPT_FW invokes enctool to encrypt firmware binary
139#   $(1) = input firmware binary
140#   $(2) = output encrypted firmware binary
141define ENCRYPT_FW
142$(2): $(1) enctool
143	$$(ECHO) "  ENC     $$<"
144	$$(Q)$$(ENCTOOL) $$(ENC_ARGS) -i $$< -o $$@
145endef
146
147# TOOL_ADD_PAYLOAD appends the command line arguments required by fiptool to
148# package a new payload and/or by cert_create to generate certificate.
149# Optionally, it adds the dependency on this payload
150#   $(1) = payload filename (i.e. bl31.bin)
151#   $(2) = command line option for the specified payload (i.e. --soc-fw)
152#   $(3) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin)
153#   $(4) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
154#   $(5) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin)
155define TOOL_ADD_PAYLOAD
156ifneq ($(5),)
157    $(4)FIP_ARGS += $(2) $(5)
158    $(if $(3),$(4)CRT_DEPS += $(1))
159else
160    $(4)FIP_ARGS += $(2) $(1)
161    $(if $(3),$(4)CRT_DEPS += $(3))
162endif
163    $(if $(3),$(4)FIP_DEPS += $(3))
164    $(4)CRT_ARGS += $(2) $(1)
165endef
166
167# TOOL_ADD_IMG_PAYLOAD works like TOOL_ADD_PAYLOAD, but applies image filters
168# before passing them to host tools if BL*_PRE_TOOL_FILTER is defined.
169#   $(1) = image_type (scp_bl2, bl33, etc.)
170#   $(2) = payload filepath (ex. build/fvp/release/bl31.bin)
171#   $(3) = command line option for the specified payload (ex. --soc-fw)
172#   $(4) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin)
173#   $(5) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
174#   $(6) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin)
175
176define TOOL_ADD_IMG_PAYLOAD
177
178$(eval PRE_TOOL_FILTER := $($(call uppercase,$(1))_PRE_TOOL_FILTER))
179
180ifneq ($(PRE_TOOL_FILTER),)
181
182$(eval PROCESSED_PATH := $(BUILD_PLAT)/$(1).bin$($(PRE_TOOL_FILTER)_SUFFIX))
183
184$(call $(PRE_TOOL_FILTER)_RULE,$(PROCESSED_PATH),$(2))
185
186$(PROCESSED_PATH): $(4)
187
188$(call TOOL_ADD_PAYLOAD,$(PROCESSED_PATH),$(3),$(PROCESSED_PATH),$(5),$(6))
189
190else
191$(call TOOL_ADD_PAYLOAD,$(2),$(3),$(4),$(5),$(6))
192endif
193endef
194
195# CERT_ADD_CMD_OPT adds a new command line option to the cert_create invocation
196#   $(1) = parameter filename
197#   $(2) = cert_create command line option for the specified parameter
198#   $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
199define CERT_ADD_CMD_OPT
200    $(3)CRT_ARGS += $(2) $(1)
201endef
202
203# TOOL_ADD_IMG allows the platform to specify an external image to be packed
204# in the FIP and/or for which certificate is generated. It also adds a
205# dependency on the image file, aborting the build if the file does not exist.
206#   $(1) = image_type (scp_bl2, bl33, etc.)
207#   $(2) = command line option for fiptool (--scp-fw, --nt-fw, etc)
208#   $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
209#   $(4) = Image encryption flag (optional) (0, 1)
210# Example:
211#   $(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
212define TOOL_ADD_IMG
213    # Build option to specify the image filename (SCP_BL2, BL33, etc)
214    # This is the uppercase form of the first parameter
215    $(eval _V := $(call uppercase,$(1)))
216
217    # $(check_$(1)_cmd) variable is executed in the check_$(1) target and also
218    # is put into the ${CHECK_$(3)FIP_CMD} variable which is executed by the
219    # target ${BUILD_PLAT}/${$(3)FIP_NAME}.
220    $(eval check_$(1)_cmd := \
221        $(if $(value $(_V)),,$$$$(error "Platform '${PLAT}' requires $(_V). Please set $(_V) to point to the right file")) \
222        $(if $(wildcard $(value $(_V))),,$$$$(error '$(_V)=$(value $(_V))' was specified, but '$(value $(_V))' does not exist)) \
223    )
224
225    $(3)CRT_DEPS += check_$(1)
226    CHECK_$(3)FIP_CMD += $$(check_$(1)_cmd)
227ifeq ($(4),1)
228    $(eval ENC_BIN := ${BUILD_PLAT}/$(1)_enc.bin)
229    $(call ENCRYPT_FW,$(value $(_V)),$(ENC_BIN))
230    $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(ENC_BIN),$(3), \
231		$(ENC_BIN))
232else
233    $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(if $(wildcard $(value $(_V))),$(value $(_V)),FORCE),$(3))
234endif
235
236.PHONY: check_$(1)
237check_$(1):
238	$(check_$(1)_cmd)
239endef
240
241# SELECT_OPENSSL_API_VERSION selects the OpenSSL API version to be used to
242# build the host tools by checking the version of OpenSSL located under
243# the path defined by the OPENSSL_DIR variable. It receives no parameters.
244define SELECT_OPENSSL_API_VERSION
245    # Set default value for USING_OPENSSL3 macro to 0
246    $(eval USING_OPENSSL3 = 0)
247    # Obtain the OpenSSL version for the build located under OPENSSL_DIR
248    $(eval OPENSSL_INFO := $(shell LD_LIBRARY_PATH=${OPENSSL_DIR}:${OPENSSL_DIR}/lib ${OPENSSL_BIN_PATH}/openssl version))
249    $(eval OPENSSL_CURRENT_VER = $(word 2, ${OPENSSL_INFO}))
250    $(eval OPENSSL_CURRENT_VER_MAJOR = $(firstword $(subst ., ,$(OPENSSL_CURRENT_VER))))
251    # If OpenSSL version is 3.x, then set USING_OPENSSL3 flag to 1
252    $(if $(filter 3,$(OPENSSL_CURRENT_VER_MAJOR)), $(eval USING_OPENSSL3 = 1))
253endef
254
255################################################################################
256# Generic image processing filters
257################################################################################
258
259# GZIP
260define GZIP_RULE
261$(1): $(2)
262	$(ECHO) "  GZIP    $$@"
263	$(Q)gzip -n -f -9 $$< --stdout > $$@
264endef
265
266GZIP_SUFFIX := .gz
267
268################################################################################
269# Auxiliary macros to build TF images from sources
270################################################################################
271
272MAKE_DEP = -Wp,-MD,$(DEP) -MT $$@ -MP
273
274
275# MAKE_C_LIB builds a C source file and generates the dependency file
276#   $(1) = output directory
277#   $(2) = source file (%.c)
278#   $(3) = library name
279define MAKE_C_LIB
280$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
281$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
282
283$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs
284	$$(ECHO) "  CC      $$<"
285	$$(Q)$$(CC) $$(TF_CFLAGS) $$(CFLAGS) $(MAKE_DEP) -c $$< -o $$@
286
287-include $(DEP)
288
289endef
290
291# MAKE_S_LIB builds an assembly source file and generates the dependency file
292#   $(1) = output directory
293#   $(2) = source file (%.S)
294#   $(3) = library name
295define MAKE_S_LIB
296$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
297$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
298
299$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs
300	$$(ECHO) "  AS      $$<"
301	$$(Q)$$(AS) $$(ASFLAGS) $(MAKE_DEP) -c $$< -o $$@
302
303-include $(DEP)
304
305endef
306
307
308# MAKE_C builds a C source file and generates the dependency file
309#   $(1) = output directory
310#   $(2) = source file (%.c)
311#   $(3) = BL stage
312define MAKE_C
313
314$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
315$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
316$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3)))
317$(eval BL_CFLAGS := $($(call uppercase,$(3))_CFLAGS))
318
319$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
320	$$(ECHO) "  CC      $$<"
321	$$(Q)$$(CC) $$(LTO_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(BL_CPPFLAGS) $(BL_CFLAGS) $(MAKE_DEP) -c $$< -o $$@
322
323-include $(DEP)
324
325endef
326
327
328# MAKE_S builds an assembly source file and generates the dependency file
329#   $(1) = output directory
330#   $(2) = assembly file (%.S)
331#   $(3) = BL stage
332define MAKE_S
333
334$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
335$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
336$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3)))
337$(eval BL_ASFLAGS := $($(call uppercase,$(3))_ASFLAGS))
338
339$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
340	$$(ECHO) "  AS      $$<"
341	$$(Q)$$(AS) $$(ASFLAGS) $(BL_CPPFLAGS) $(BL_ASFLAGS) $(MAKE_DEP) -c $$< -o $$@
342
343-include $(DEP)
344
345endef
346
347
348# MAKE_LD generate the linker script using the C preprocessor
349#   $(1) = output linker script
350#   $(2) = input template
351#   $(3) = BL stage
352define MAKE_LD
353
354$(eval DEP := $(1).d)
355$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3)))
356
357$(1): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
358	$$(ECHO) "  PP      $$<"
359	$$(Q)$$(CPP) $$(CPPFLAGS) $(BL_CPPFLAGS) $(TF_CFLAGS_$(ARCH)) -P -x assembler-with-cpp -D__LINKER__ $(MAKE_DEP) -o $$@ $$<
360
361-include $(DEP)
362
363endef
364
365# MAKE_LIB_OBJS builds both C and assembly source files
366#   $(1) = output directory
367#   $(2) = list of source files
368#   $(3) = name of the library
369define MAKE_LIB_OBJS
370        $(eval C_OBJS := $(filter %.c,$(2)))
371        $(eval REMAIN := $(filter-out %.c,$(2)))
372        $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C_LIB,$(1),$(obj),$(3))))
373
374        $(eval S_OBJS := $(filter %.S,$(REMAIN)))
375        $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
376        $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S_LIB,$(1),$(obj),$(3))))
377
378        $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
379endef
380
381
382# MAKE_OBJS builds both C and assembly source files
383#   $(1) = output directory
384#   $(2) = list of source files (both C and assembly)
385#   $(3) = BL stage
386define MAKE_OBJS
387        $(eval C_OBJS := $(filter %.c,$(2)))
388        $(eval REMAIN := $(filter-out %.c,$(2)))
389        $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj),$(3))))
390
391        $(eval S_OBJS := $(filter %.S,$(REMAIN)))
392        $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
393        $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj),$(3))))
394
395        $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
396endef
397
398
399# NOTE: The line continuation '\' is required in the next define otherwise we
400# end up with a line-feed characer at the end of the last c filename.
401# Also bear this issue in mind if extending the list of supported filetypes.
402define SOURCES_TO_OBJS
403        $(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \
404        $(notdir $(patsubst %.S,%.o,$(filter %.S,$(1))))
405endef
406
407# Allow overriding the timestamp, for example for reproducible builds, or to
408# synchronize timestamps across multiple projects.
409# This must be set to a C string (including quotes where applicable).
410BUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__
411
412.PHONY: libraries
413
414# MAKE_LIB_DIRS macro defines the target for the directory where
415# libraries are created
416define MAKE_LIB_DIRS
417        $(eval LIB_DIR    := ${BUILD_PLAT}/lib)
418        $(eval ROMLIB_DIR    := ${BUILD_PLAT}/romlib)
419        $(eval LIBWRAPPER_DIR := ${BUILD_PLAT}/libwrapper)
420        $(eval $(call MAKE_PREREQ_DIR,${LIB_DIR},${BUILD_PLAT}))
421        $(eval $(call MAKE_PREREQ_DIR,${ROMLIB_DIR},${BUILD_PLAT}))
422        $(eval $(call MAKE_PREREQ_DIR,${LIBWRAPPER_DIR},${BUILD_PLAT}))
423endef
424
425# MAKE_LIB macro defines the targets and options to build each BL image.
426# Arguments:
427#   $(1) = Library name
428define MAKE_LIB
429        $(eval BUILD_DIR  := ${BUILD_PLAT}/lib$(1))
430        $(eval LIB_DIR    := ${BUILD_PLAT}/lib)
431        $(eval ROMLIB_DIR    := ${BUILD_PLAT}/romlib)
432        $(eval SOURCES    := $(LIB$(call uppercase,$(1))_SRCS))
433        $(eval OBJS       := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
434
435$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT}))
436$(eval $(call MAKE_LIB_OBJS,$(BUILD_DIR),$(SOURCES),$(1)))
437
438.PHONY : lib${1}_dirs
439lib${1}_dirs: | ${BUILD_DIR} ${LIB_DIR}  ${ROMLIB_DIR} ${LIBWRAPPER_DIR}
440libraries: ${LIB_DIR}/lib$(1).a
441ifneq ($(findstring armlink,$(notdir $(LD))),)
442LDPATHS = --userlibpath=${LIB_DIR}
443LDLIBS += --library=$(1)
444else
445LDPATHS = -L${LIB_DIR}
446LDLIBS += -l$(1)
447endif
448
449ifeq ($(USE_ROMLIB),1)
450LIBWRAPPER = -lwrappers
451endif
452
453all: ${LIB_DIR}/lib$(1).a
454
455${LIB_DIR}/lib$(1).a: $(OBJS)
456	$$(ECHO) "  AR      $$@"
457	$$(Q)$$(AR) cr $$@ $$?
458endef
459
460# MAKE_BL macro defines the targets and options to build each BL image.
461# Arguments:
462#   $(1) = BL stage
463#   $(2) = FIP command line option (if empty, image will not be included in the FIP)
464#   $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
465#   $(4) = BL encryption flag (optional) (0, 1)
466define MAKE_BL
467        $(eval BUILD_DIR  := ${BUILD_PLAT}/$(1))
468        $(eval BL_SOURCES := $($(call uppercase,$(1))_SOURCES))
469        $(eval SOURCES    := $(BL_SOURCES) $(BL_COMMON_SOURCES) $(PLAT_BL_COMMON_SOURCES))
470        $(eval OBJS       := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
471        $(eval LINKERFILE := $(call IMG_LINKERFILE,$(1)))
472        $(eval MAPFILE    := $(call IMG_MAPFILE,$(1)))
473        $(eval ELF        := $(call IMG_ELF,$(1)))
474        $(eval DUMP       := $(call IMG_DUMP,$(1)))
475        $(eval BIN        := $(call IMG_BIN,$(1)))
476        $(eval ENC_BIN    := $(call IMG_ENC_BIN,$(1)))
477        $(eval BL_LINKERFILE := $($(call uppercase,$(1))_LINKERFILE))
478        $(eval BL_LIBS    := $($(call uppercase,$(1))_LIBS))
479        # We use sort only to get a list of unique object directory names.
480        # ordering is not relevant but sort removes duplicates.
481        $(eval TEMP_OBJ_DIRS := $(sort $(dir ${OBJS} ${LINKERFILE})))
482        # The $(dir ) function leaves a trailing / on the directory names
483        # Rip off the / to match directory names with make rule targets.
484        $(eval OBJ_DIRS   := $(patsubst %/,%,$(TEMP_OBJ_DIRS)))
485
486# Create generators for object directory structure
487
488$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT}))
489
490$(eval $(foreach objd,${OBJ_DIRS},$(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR})))
491
492.PHONY : ${1}_dirs
493
494# We use order-only prerequisites to ensure that directories are created,
495# but do not cause re-builds every time a file is written.
496${1}_dirs: | ${OBJ_DIRS}
497
498$(eval $(call MAKE_OBJS,$(BUILD_DIR),$(SOURCES),$(1)))
499$(eval $(call MAKE_LD,$(LINKERFILE),$(BL_LINKERFILE),$(1)))
500$(eval BL_LDFLAGS := $($(call uppercase,$(1))_LDFLAGS))
501
502ifeq ($(USE_ROMLIB),1)
503$(ELF): romlib.bin
504endif
505
506# MODULE_OBJS can be assigned by vendors with different compiled
507# object file path, and prebuilt object file path.
508$(eval OBJS += $(MODULE_OBJS))
509
510$(ELF): $(OBJS) $(LINKERFILE) | $(1)_dirs libraries $(BL_LIBS)
511	$$(ECHO) "  LD      $$@"
512ifdef MAKE_BUILD_STRINGS
513	$(call MAKE_BUILD_STRINGS, $(BUILD_DIR)/build_message.o)
514else
515	@echo 'const char build_message[] = "Built : "$(BUILD_MESSAGE_TIMESTAMP); \
516	       const char version_string[] = "${VERSION_STRING}"; \
517	       const char version[] = "${VERSION}";' | \
518		$$(CC) $$(TF_CFLAGS) $$(CFLAGS) -xc -c - -o $(BUILD_DIR)/build_message.o
519endif
520ifneq ($(findstring armlink,$(notdir $(LD))),)
521	$$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) --entry=${1}_entrypoint \
522		--predefine="-D__LINKER__=$(__LINKER__)" \
523		--predefine="-DTF_CFLAGS=$(TF_CFLAGS)" \
524		--map --list="$(MAPFILE)" --scatter=${PLAT_DIR}/scat/${1}.scat \
525		$(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) \
526		$(BUILD_DIR)/build_message.o $(OBJS)
527else ifneq ($(findstring gcc,$(notdir $(LD))),)
528	$$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) -Wl,-Map=$(MAPFILE) \
529		-Wl,-dT $(LINKERFILE) $(EXTRA_LINKERFILE) $(BUILD_DIR)/build_message.o \
530		$(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS)
531else
532	$$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) -Map=$(MAPFILE) \
533		--script $(LINKERFILE) $(BUILD_DIR)/build_message.o \
534		$(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS)
535endif
536ifeq ($(DISABLE_BIN_GENERATION),1)
537	@${ECHO_BLANK_LINE}
538	@echo "Built $$@ successfully"
539	@${ECHO_BLANK_LINE}
540endif
541
542$(DUMP): $(ELF)
543	$${ECHO} "  OD      $$@"
544	$${Q}$${OD} -dx $$< > $$@
545
546$(BIN): $(ELF)
547	$${ECHO} "  BIN     $$@"
548	$$(Q)$$(OC) -O binary $$< $$@
549	@${ECHO_BLANK_LINE}
550	@echo "Built $$@ successfully"
551	@${ECHO_BLANK_LINE}
552
553.PHONY: $(1)
554ifeq ($(DISABLE_BIN_GENERATION),1)
555$(1): $(ELF) $(DUMP)
556else
557$(1): $(BIN) $(DUMP)
558endif
559
560all: $(1)
561
562ifeq ($(4),1)
563$(call ENCRYPT_FW,$(BIN),$(ENC_BIN))
564$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(ENC_BIN),$(3), \
565		$(ENC_BIN)))
566else
567$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(BIN),$(3)))
568endif
569
570endef
571
572# Convert device tree source file names to matching blobs
573#   $(1) = input dts
574define SOURCES_TO_DTBS
575        $(notdir $(patsubst %.dts,%.dtb,$(filter %.dts,$(1))))
576endef
577
578# MAKE_FDT_DIRS macro creates the prerequisite directories that host the
579# FDT binaries
580#   $(1) = output directory
581#   $(2) = input dts
582define MAKE_FDT_DIRS
583        $(eval DTBS       := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
584        $(eval TEMP_DTB_DIRS := $(sort $(dir ${DTBS})))
585        # The $(dir ) function leaves a trailing / on the directory names
586        # Rip off the / to match directory names with make rule targets.
587        $(eval DTB_DIRS   := $(patsubst %/,%,$(TEMP_DTB_DIRS)))
588
589$(eval $(foreach objd,${DTB_DIRS},$(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR})))
590
591fdt_dirs: ${DTB_DIRS}
592endef
593
594# MAKE_DTB generate the Flattened device tree binary
595#   $(1) = output directory
596#   $(2) = input dts
597define MAKE_DTB
598
599# List of DTB file(s) to generate, based on DTS file basename list
600$(eval DOBJ := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
601# List of the pre-compiled DTS file(s)
602$(eval DPRE := $(addprefix $(1)/,$(patsubst %.dts,%.pre.dts,$(notdir $(2)))))
603# Dependencies of the pre-compiled DTS file(s) on its source and included files
604$(eval DTSDEP := $(patsubst %.dtb,%.o.d,$(DOBJ)))
605# Dependencies of the DT compilation on its pre-compiled DTS
606$(eval DTBDEP := $(patsubst %.dtb,%.d,$(DOBJ)))
607
608$(DOBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | fdt_dirs
609	$${ECHO} "  CPP     $$<"
610	$(eval DTBS       := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
611	$$(Q)$$(PP) $$(DTC_CPPFLAGS) -MT $(DTBS) -MMD -MF $(DTSDEP) -o $(DPRE) $$<
612	$${ECHO} "  DTC     $$<"
613	$$(Q)$$(DTC) $$(DTC_FLAGS) -d $(DTBDEP) -o $$@ $(DPRE)
614
615-include $(DTBDEP)
616-include $(DTSDEP)
617
618endef
619
620# MAKE_DTBS builds flattened device tree sources
621#   $(1) = output directory
622#   $(2) = list of flattened device tree source files
623define MAKE_DTBS
624        $(eval DOBJS := $(filter %.dts,$(2)))
625        $(eval REMAIN := $(filter-out %.dts,$(2)))
626        $(and $(REMAIN),$(error FDT_SOURCES contain non-DTS files: $(REMAIN)))
627        $(eval $(foreach obj,$(DOBJS),$(call MAKE_DTB,$(1),$(obj))))
628
629        $(eval $(call MAKE_FDT_DIRS,$(1),$(2)))
630
631dtbs: $(DTBS)
632all: dtbs
633endef
634