blob: 5e2e09bc7f7443aeaf75fc34a16480946981de88 [file] [log] [blame]
Juan Castillo73c99d42015-08-18 14:23:04 +01001#
Chris Kay82274932023-01-16 16:53:45 +00002# Copyright (c) 2015-2023, Arm Limited and Contributors. All rights reserved.
Juan Castillo73c99d42015-08-18 14:23:04 +01003#
dp-arm82cb2c12017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Juan Castillo73c99d42015-08-18 14:23:04 +01005#
6
Evan Lloyd1670d9d2015-12-02 18:41:22 +00007# 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
Evan Lloyd231c1472015-12-02 18:17:37 +000013# Some utility macros for manipulating awkward (whitespace) characters.
14blank :=
15space :=${blank} ${blank}
Chris Kaya6ff0062023-01-16 18:57:26 +000016comma := ,
Evan Lloyd231c1472015-12-02 18:17:37 +000017
18# A user defined function to recursively search for a filename below a directory
19# $1 is the directory root of the recursive search (blank for current directory).
20# $2 is the file name to search for.
21define rwildcard
22$(strip $(foreach d,$(wildcard ${1}*),$(call rwildcard,${d}/,${2}) $(filter $(subst *,%,%${2}),${d})))
23endef
24
Yatharth Kochar5ba8f662015-10-02 13:58:52 +010025# This table is used in converting lower case to upper case.
26uppercase_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
27
28# Internal macro used for converting lower case to upper case.
29# $(1) = upper case table
30# $(2) = String to convert
31define uppercase_internal
32$(if $(1),$$(subst $(firstword $(1)),$(call uppercase_internal,$(wordlist 2,$(words $(1)),$(1)),$(2))),$(2))
33endef
34
35# A macro for converting a string to upper case
36# $(1) = String to convert
37define uppercase
38$(eval uppercase_result:=$(call uppercase_internal,$(uppercase_table),$(1)))$(uppercase_result)
39endef
40
Boyan Karatoteve4447632022-11-17 12:01:29 +000041# Convenience function for setting a variable to 0 if not previously set
42# $(eval $(call default_zero,FOO))
43define default_zero
44 $(eval $(1) ?= 0)
45endef
46
47# Convenience function for setting a list of variables to 0 if not previously set
48# $(eval $(call default_zeros,FOO BAR))
49define default_zeros
50 $(foreach var,$1,$(eval $(call default_zero,$(var))))
51endef
52
Govindraj Raja48b41b42024-01-23 14:20:52 -060053# Convenience function for setting a variable to 1 if not previously set
54# $(eval $(call default_one,FOO))
55define default_one
56 $(eval $(1) ?= 1)
57endef
58
59# Convenience function for setting a list of variables to 1 if not previously set
60# $(eval $(call default_ones,FOO BAR))
61define default_ones
62 $(foreach var,$1,$(eval $(call default_one,$(var))))
63endef
64
Juan Castillo73c99d42015-08-18 14:23:04 +010065# Convenience function for adding build definitions
66# $(eval $(call add_define,FOO)) will have:
67# -DFOO if $(FOO) is empty; -DFOO=$(FOO) otherwise
68define add_define
69 DEFINES += -D$(1)$(if $(value $(1)),=$(value $(1)),)
70endef
71
Leonardo Sandoval327131c2020-09-10 12:18:27 -050072# Convenience function for addding multiple build definitions
73# $(eval $(call add_defines,FOO BOO))
74define add_defines
75 $(foreach def,$1,$(eval $(call add_define,$(def))))
76endef
77
Soren Brinkmann8eadeb42016-06-09 13:36:27 -070078# Convenience function for adding build definitions
79# $(eval $(call add_define_val,FOO,BAR)) will have:
80# -DFOO=BAR
81define add_define_val
82 DEFINES += -D$(1)=$(2)
83endef
84
Juan Castillo73c99d42015-08-18 14:23:04 +010085# Convenience function for verifying option has a boolean value
86# $(eval $(call assert_boolean,FOO)) will assert FOO is 0 or 1
87define assert_boolean
Yann Gautier1369fb82023-04-24 13:38:12 +020088 $(if $($(1)),,$(error $(1) must not be empty))
Masahiro Yamadabe4cd402017-05-23 23:45:01 +090089 $(if $(filter-out 0 1,$($1)),$(error $1 must be boolean))
Juan Castillo73c99d42015-08-18 14:23:04 +010090endef
91
Leonardo Sandoval327131c2020-09-10 12:18:27 -050092# Convenience function for verifying options have boolean values
93# $(eval $(call assert_booleans,FOO BOO)) will assert FOO and BOO for 0 or 1 values
94define assert_booleans
95 $(foreach bool,$1,$(eval $(call assert_boolean,$(bool))))
96endef
97
Jeenu Viswambharanc877b412017-01-16 16:52:35 +0000980-9 := 0 1 2 3 4 5 6 7 8 9
99
100# Function to verify that a given option $(1) contains a numeric value
101define assert_numeric
102$(if $($(1)),,$(error $(1) must not be empty))
103$(eval __numeric := $($(1)))
104$(foreach d,$(0-9),$(eval __numeric := $(subst $(d),,$(__numeric))))
105$(if $(__numeric),$(error $(1) must be numeric))
106endef
107
Leonardo Sandoval327131c2020-09-10 12:18:27 -0500108# Convenience function for verifying options have numeric values
109# $(eval $(call assert_numerics,FOO BOO)) will assert FOO and BOO contain numeric values
110define assert_numerics
111 $(foreach num,$1,$(eval $(call assert_numeric,$(num))))
112endef
113
Marco Felscha5f09cf2022-11-24 11:02:05 +0100114# Convenience function to check for a given linker option. An call to
115# $(call ld_option, --no-XYZ) will return --no-XYZ if supported by the linker
116define ld_option
117 $(shell if $(LD) $(1) -v >/dev/null 2>&1; then echo $(1); fi )
118endef
119
Govindraj Rajadea23e22023-05-05 09:09:36 -0500120# Convenience function to check for a given compiler option. A call to
121# $(call cc_option, --no-XYZ) will return --no-XYZ if supported by the compiler
122define cc_option
123 $(shell if $(CC) $(1) -c -x c /dev/null -o /dev/null >/dev/null 2>&1; then echo $(1); fi )
124endef
125
Vijayenthiran Subramaniam8c7b9442020-02-08 21:27:30 +0530126# CREATE_SEQ is a recursive function to create sequence of numbers from 1 to
127# $(2) and assign the sequence to $(1)
128define CREATE_SEQ
129$(if $(word $(2), $($(1))),\
130 $(eval $(1) += $(words $($(1))))\
131 $(eval $(1) := $(filter-out 0,$($(1)))),\
132 $(eval $(1) += $(words $($(1))))\
133 $(call CREATE_SEQ,$(1),$(2))\
134)
135endef
136
Juan Castillo73c99d42015-08-18 14:23:04 +0100137# IMG_MAPFILE defines the output file describing the memory map corresponding
138# to a BL stage
Zelalem Aweke434d0492021-07-11 17:25:48 -0500139# $(1) = BL stage
Juan Castillo73c99d42015-08-18 14:23:04 +0100140define IMG_MAPFILE
Zelalem Aweke434d0492021-07-11 17:25:48 -0500141 ${BUILD_DIR}/$(1).map
Juan Castillo73c99d42015-08-18 14:23:04 +0100142endef
143
144# IMG_ELF defines the elf file corresponding to a BL stage
Zelalem Aweke434d0492021-07-11 17:25:48 -0500145# $(1) = BL stage
Juan Castillo73c99d42015-08-18 14:23:04 +0100146define IMG_ELF
Zelalem Aweke434d0492021-07-11 17:25:48 -0500147 ${BUILD_DIR}/$(1).elf
Juan Castillo73c99d42015-08-18 14:23:04 +0100148endef
149
150# IMG_DUMP defines the symbols dump file corresponding to a BL stage
Zelalem Aweke434d0492021-07-11 17:25:48 -0500151# $(1) = BL stage
Juan Castillo73c99d42015-08-18 14:23:04 +0100152define IMG_DUMP
Zelalem Aweke434d0492021-07-11 17:25:48 -0500153 ${BUILD_DIR}/$(1).dump
Juan Castillo73c99d42015-08-18 14:23:04 +0100154endef
155
156# IMG_BIN defines the default image file corresponding to a BL stage
Zelalem Aweke434d0492021-07-11 17:25:48 -0500157# $(1) = BL stage
Juan Castillo73c99d42015-08-18 14:23:04 +0100158define IMG_BIN
Zelalem Aweke434d0492021-07-11 17:25:48 -0500159 ${BUILD_PLAT}/$(1).bin
Juan Castillo73c99d42015-08-18 14:23:04 +0100160endef
161
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530162# IMG_ENC_BIN defines the default encrypted image file corresponding to a
163# BL stage
Zelalem Aweke434d0492021-07-11 17:25:48 -0500164# $(1) = BL stage
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530165define IMG_ENC_BIN
Zelalem Aweke434d0492021-07-11 17:25:48 -0500166 ${BUILD_PLAT}/$(1)_enc.bin
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530167endef
168
169# ENCRYPT_FW invokes enctool to encrypt firmware binary
170# $(1) = input firmware binary
171# $(2) = output encrypted firmware binary
172define ENCRYPT_FW
173$(2): $(1) enctool
174 $$(ECHO) " ENC $$<"
175 $$(Q)$$(ENCTOOL) $$(ENC_ARGS) -i $$< -o $$@
176endef
177
Masahiro Yamada10cea932018-01-26 11:42:01 +0900178# TOOL_ADD_PAYLOAD appends the command line arguments required by fiptool to
179# package a new payload and/or by cert_create to generate certificate.
180# Optionally, it adds the dependency on this payload
Juan Castillo73c99d42015-08-18 14:23:04 +0100181# $(1) = payload filename (i.e. bl31.bin)
Masahiro Yamada1e0c0782017-12-23 23:56:18 +0900182# $(2) = command line option for the specified payload (i.e. --soc-fw)
Masahiro Yamada36af3452018-01-26 11:42:01 +0900183# $(3) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin)
Masahiro Yamada1dc07142018-01-26 11:42:01 +0900184# $(4) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530185# $(5) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin)
Masahiro Yamada10cea932018-01-26 11:42:01 +0900186define TOOL_ADD_PAYLOAD
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530187ifneq ($(5),)
188 $(4)FIP_ARGS += $(2) $(5)
189 $(if $(3),$(4)CRT_DEPS += $(1))
190else
Masahiro Yamada945b3162018-01-26 11:42:01 +0900191 $(4)FIP_ARGS += $(2) $(1)
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530192 $(if $(3),$(4)CRT_DEPS += $(3))
193endif
Masahiro Yamada945b3162018-01-26 11:42:01 +0900194 $(if $(3),$(4)FIP_DEPS += $(3))
Masahiro Yamadaf30ee0b2018-01-26 11:42:01 +0900195 $(4)CRT_ARGS += $(2) $(1)
Juan Castillo73c99d42015-08-18 14:23:04 +0100196endef
197
Masahiro Yamada2da522b2018-02-01 16:31:09 +0900198# TOOL_ADD_IMG_PAYLOAD works like TOOL_ADD_PAYLOAD, but applies image filters
199# before passing them to host tools if BL*_PRE_TOOL_FILTER is defined.
200# $(1) = image_type (scp_bl2, bl33, etc.)
201# $(2) = payload filepath (ex. build/fvp/release/bl31.bin)
202# $(3) = command line option for the specified payload (ex. --soc-fw)
203# $(4) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin)
204# $(5) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530205# $(6) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin)
Masahiro Yamada2da522b2018-02-01 16:31:09 +0900206
207define TOOL_ADD_IMG_PAYLOAD
208
209$(eval PRE_TOOL_FILTER := $($(call uppercase,$(1))_PRE_TOOL_FILTER))
210
211ifneq ($(PRE_TOOL_FILTER),)
212
213$(eval PROCESSED_PATH := $(BUILD_PLAT)/$(1).bin$($(PRE_TOOL_FILTER)_SUFFIX))
214
215$(call $(PRE_TOOL_FILTER)_RULE,$(PROCESSED_PATH),$(2))
216
217$(PROCESSED_PATH): $(4)
218
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530219$(call TOOL_ADD_PAYLOAD,$(PROCESSED_PATH),$(3),$(PROCESSED_PATH),$(5),$(6))
Masahiro Yamada2da522b2018-02-01 16:31:09 +0900220
221else
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530222$(call TOOL_ADD_PAYLOAD,$(2),$(3),$(4),$(5),$(6))
Masahiro Yamada2da522b2018-02-01 16:31:09 +0900223endif
224endef
225
Yatharth Kochar01912622015-10-12 12:33:47 +0100226# CERT_ADD_CMD_OPT adds a new command line option to the cert_create invocation
Juan Castillo73c99d42015-08-18 14:23:04 +0100227# $(1) = parameter filename
228# $(2) = cert_create command line option for the specified parameter
Masahiro Yamada91704d92018-01-26 11:42:01 +0900229# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Juan Castillo73c99d42015-08-18 14:23:04 +0100230define CERT_ADD_CMD_OPT
Masahiro Yamada91704d92018-01-26 11:42:01 +0900231 $(3)CRT_ARGS += $(2) $(1)
Juan Castillo73c99d42015-08-18 14:23:04 +0100232endef
233
Masahiro Yamadac939d132018-01-26 11:42:01 +0900234# TOOL_ADD_IMG allows the platform to specify an external image to be packed
235# in the FIP and/or for which certificate is generated. It also adds a
236# dependency on the image file, aborting the build if the file does not exist.
Masahiro Yamada33950dd2018-01-26 11:42:01 +0900237# $(1) = image_type (scp_bl2, bl33, etc.)
Masahiro Yamada1e0c0782017-12-23 23:56:18 +0900238# $(2) = command line option for fiptool (--scp-fw, --nt-fw, etc)
Masahiro Yamada1dc07142018-01-26 11:42:01 +0900239# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530240# $(4) = Image encryption flag (optional) (0, 1)
Juan Castillo73c99d42015-08-18 14:23:04 +0100241# Example:
Masahiro Yamada33950dd2018-01-26 11:42:01 +0900242# $(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Masahiro Yamadac939d132018-01-26 11:42:01 +0900243define TOOL_ADD_IMG
Masahiro Yamada33950dd2018-01-26 11:42:01 +0900244 # Build option to specify the image filename (SCP_BL2, BL33, etc)
245 # This is the uppercase form of the first parameter
246 $(eval _V := $(call uppercase,$(1)))
247
Pali Rohár4727fd12020-11-24 16:53:04 +0100248 # $(check_$(1)_cmd) variable is executed in the check_$(1) target and also
249 # is put into the ${CHECK_$(3)FIP_CMD} variable which is executed by the
250 # target ${BUILD_PLAT}/${$(3)FIP_NAME}.
251 $(eval check_$(1)_cmd := \
252 $(if $(value $(_V)),,$$$$(error "Platform '${PLAT}' requires $(_V). Please set $(_V) to point to the right file")) \
253 $(if $(wildcard $(value $(_V))),,$$$$(error '$(_V)=$(value $(_V))' was specified, but '$(value $(_V))' does not exist)) \
254 )
255
Masahiro Yamada945b3162018-01-26 11:42:01 +0900256 $(3)CRT_DEPS += check_$(1)
Pali Rohár4727fd12020-11-24 16:53:04 +0100257 CHECK_$(3)FIP_CMD += $$(check_$(1)_cmd)
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530258ifeq ($(4),1)
259 $(eval ENC_BIN := ${BUILD_PLAT}/$(1)_enc.bin)
260 $(call ENCRYPT_FW,$(value $(_V)),$(ENC_BIN))
261 $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(ENC_BIN),$(3), \
262 $(ENC_BIN))
263else
Pali Rohár4727fd12020-11-24 16:53:04 +0100264 $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(if $(wildcard $(value $(_V))),$(value $(_V)),FORCE),$(3))
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530265endif
Yatharth Kochar01912622015-10-12 12:33:47 +0100266
Masahiro Yamada87ebd202017-12-24 13:08:00 +0900267.PHONY: check_$(1)
Yatharth Kochar01912622015-10-12 12:33:47 +0100268check_$(1):
Pali Rohár4727fd12020-11-24 16:53:04 +0100269 $(check_$(1)_cmd)
Yatharth Kochar01912622015-10-12 12:33:47 +0100270endef
Juan Castillo73c99d42015-08-18 14:23:04 +0100271
Juan Pablo Condecf2dd172022-10-25 19:41:02 -0400272# SELECT_OPENSSL_API_VERSION selects the OpenSSL API version to be used to
273# build the host tools by checking the version of OpenSSL located under
274# the path defined by the OPENSSL_DIR variable. It receives no parameters.
275define SELECT_OPENSSL_API_VERSION
276 # Set default value for USING_OPENSSL3 macro to 0
277 $(eval USING_OPENSSL3 = 0)
278 # Obtain the OpenSSL version for the build located under OPENSSL_DIR
279 $(eval OPENSSL_INFO := $(shell LD_LIBRARY_PATH=${OPENSSL_DIR}:${OPENSSL_DIR}/lib ${OPENSSL_BIN_PATH}/openssl version))
280 $(eval OPENSSL_CURRENT_VER = $(word 2, ${OPENSSL_INFO}))
281 $(eval OPENSSL_CURRENT_VER_MAJOR = $(firstword $(subst ., ,$(OPENSSL_CURRENT_VER))))
282 # If OpenSSL version is 3.x, then set USING_OPENSSL3 flag to 1
283 $(if $(filter 3,$(OPENSSL_CURRENT_VER_MAJOR)), $(eval USING_OPENSSL3 = 1))
284endef
285
Juan Castillo73c99d42015-08-18 14:23:04 +0100286################################################################################
Masahiro Yamada14db8902018-01-26 11:42:01 +0900287# Generic image processing filters
288################################################################################
289
290# GZIP
291define GZIP_RULE
292$(1): $(2)
Andre Przywaraee1ba6d2018-09-27 10:56:05 +0100293 $(ECHO) " GZIP $$@"
Masahiro Yamada14db8902018-01-26 11:42:01 +0900294 $(Q)gzip -n -f -9 $$< --stdout > $$@
295endef
296
297GZIP_SUFFIX := .gz
298
299################################################################################
Juan Castillo73c99d42015-08-18 14:23:04 +0100300# Auxiliary macros to build TF images from sources
301################################################################################
302
Masahiro Yamada1d274ab2016-12-22 15:23:05 +0900303MAKE_DEP = -Wp,-MD,$(DEP) -MT $$@ -MP
Juan Castillo73c99d42015-08-18 14:23:04 +0100304
Roberto Vargas5fee0282018-05-08 10:27:10 +0100305
306# MAKE_C_LIB builds a C source file and generates the dependency file
307# $(1) = output directory
308# $(2) = source file (%.c)
309# $(3) = library name
310define MAKE_C_LIB
311$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
312$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Govindraj Raja5a65fcd2023-01-27 10:08:54 +0000313$(eval LIB := $(call uppercase, $(notdir $(1))))
Roberto Vargas5fee0282018-05-08 10:27:10 +0100314
315$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs
Andre Przywaraee1ba6d2018-09-27 10:56:05 +0100316 $$(ECHO) " CC $$<"
Govindraj Raja5a65fcd2023-01-27 10:08:54 +0000317 $$(Q)$$(CC) $$($(LIB)_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(MAKE_DEP) -c $$< -o $$@
Roberto Vargas5fee0282018-05-08 10:27:10 +0100318
319-include $(DEP)
320
321endef
322
Antonio Nino Diaz70b0f272019-02-08 13:20:37 +0000323# MAKE_S_LIB builds an assembly source file and generates the dependency file
324# $(1) = output directory
325# $(2) = source file (%.S)
326# $(3) = library name
327define MAKE_S_LIB
328$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
329$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
330
331$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs
332 $$(ECHO) " AS $$<"
333 $$(Q)$$(AS) $$(ASFLAGS) $(MAKE_DEP) -c $$< -o $$@
334
335-include $(DEP)
336
337endef
338
Roberto Vargas5fee0282018-05-08 10:27:10 +0100339
Juan Castillo73c99d42015-08-18 14:23:04 +0100340# MAKE_C builds a C source file and generates the dependency file
341# $(1) = output directory
342# $(2) = source file (%.c)
Zelalem Aweke434d0492021-07-11 17:25:48 -0500343# $(3) = BL stage
Juan Castillo73c99d42015-08-18 14:23:04 +0100344define MAKE_C
345
346$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
Masahiro Yamada710ea1d2016-12-22 14:02:27 +0900347$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Chris Kaya123cb12023-03-22 15:42:32 +0000348
Chris Kay1ab8c102023-05-03 15:31:42 +0200349$(eval BL_DEFINES := IMAGE_$(call uppercase,$(3)) $($(call uppercase,$(3))_DEFINES) $(PLAT_BL_COMMON_DEFINES))
350$(eval BL_INCLUDE_DIRS := $($(call uppercase,$(3))_INCLUDE_DIRS) $(PLAT_BL_COMMON_INCLUDE_DIRS))
351$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) $(addprefix -D,$(BL_DEFINES)) $(addprefix -I,$(BL_INCLUDE_DIRS)) $(PLAT_BL_COMMON_CPPFLAGS))
352$(eval BL_CFLAGS := $($(call uppercase,$(3))_CFLAGS) $(PLAT_BL_COMMON_CFLAGS))
Juan Castillo73c99d42015-08-18 14:23:04 +0100353
Zelalem Aweke434d0492021-07-11 17:25:48 -0500354$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaraee1ba6d2018-09-27 10:56:05 +0100355 $$(ECHO) " CC $$<"
Masahiro Yamada848a7e82020-03-25 16:55:28 +0900356 $$(Q)$$(CC) $$(LTO_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(BL_CPPFLAGS) $(BL_CFLAGS) $(MAKE_DEP) -c $$< -o $$@
Juan Castillo73c99d42015-08-18 14:23:04 +0100357
Masahiro Yamada710ea1d2016-12-22 14:02:27 +0900358-include $(DEP)
Juan Castillo73c99d42015-08-18 14:23:04 +0100359
360endef
361
362
363# MAKE_S builds an assembly source file and generates the dependency file
364# $(1) = output directory
365# $(2) = assembly file (%.S)
Zelalem Aweke434d0492021-07-11 17:25:48 -0500366# $(3) = BL stage
Juan Castillo73c99d42015-08-18 14:23:04 +0100367define MAKE_S
368
369$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
Masahiro Yamada710ea1d2016-12-22 14:02:27 +0900370$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Chris Kaya123cb12023-03-22 15:42:32 +0000371
Chris Kay1ab8c102023-05-03 15:31:42 +0200372$(eval BL_DEFINES := IMAGE_$(call uppercase,$(3)) $($(call uppercase,$(3))_DEFINES) $(PLAT_BL_COMMON_DEFINES))
373$(eval BL_INCLUDE_DIRS := $($(call uppercase,$(3))_INCLUDE_DIRS) $(PLAT_BL_COMMON_INCLUDE_DIRS))
374$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) $(addprefix -D,$(BL_DEFINES)) $(addprefix -I,$(BL_INCLUDE_DIRS)) $(PLAT_BL_COMMON_CPPFLAGS))
375$(eval BL_ASFLAGS := $($(call uppercase,$(3))_ASFLAGS) $(PLAT_BL_COMMON_ASFLAGS))
Juan Castillo73c99d42015-08-18 14:23:04 +0100376
Zelalem Aweke434d0492021-07-11 17:25:48 -0500377$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaraee1ba6d2018-09-27 10:56:05 +0100378 $$(ECHO) " AS $$<"
Masahiro Yamada848a7e82020-03-25 16:55:28 +0900379 $$(Q)$$(AS) $$(ASFLAGS) $(BL_CPPFLAGS) $(BL_ASFLAGS) $(MAKE_DEP) -c $$< -o $$@
Juan Castillo73c99d42015-08-18 14:23:04 +0100380
Masahiro Yamada710ea1d2016-12-22 14:02:27 +0900381-include $(DEP)
Juan Castillo73c99d42015-08-18 14:23:04 +0100382
383endef
384
385
386# MAKE_LD generate the linker script using the C preprocessor
387# $(1) = output linker script
388# $(2) = input template
Zelalem Aweke434d0492021-07-11 17:25:48 -0500389# $(3) = BL stage
Juan Castillo73c99d42015-08-18 14:23:04 +0100390define MAKE_LD
391
Masahiro Yamada710ea1d2016-12-22 14:02:27 +0900392$(eval DEP := $(1).d)
Chris Kaya123cb12023-03-22 15:42:32 +0000393
Chris Kay1ab8c102023-05-03 15:31:42 +0200394$(eval BL_DEFINES := IMAGE_$(call uppercase,$(3)) $($(call uppercase,$(3))_DEFINES) $(PLAT_BL_COMMON_DEFINES))
395$(eval BL_INCLUDE_DIRS := $($(call uppercase,$(3))_INCLUDE_DIRS) $(PLAT_BL_COMMON_INCLUDE_DIRS))
396$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) $(addprefix -D,$(BL_DEFINES)) $(addprefix -I,$(BL_INCLUDE_DIRS)) $(PLAT_BL_COMMON_CPPFLAGS))
Juan Castillo73c99d42015-08-18 14:23:04 +0100397
Zelalem Aweke434d0492021-07-11 17:25:48 -0500398$(1): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaraee1ba6d2018-09-27 10:56:05 +0100399 $$(ECHO) " PP $$<"
Masahiro Yamada848a7e82020-03-25 16:55:28 +0900400 $$(Q)$$(CPP) $$(CPPFLAGS) $(BL_CPPFLAGS) $(TF_CFLAGS_$(ARCH)) -P -x assembler-with-cpp -D__LINKER__ $(MAKE_DEP) -o $$@ $$<
Juan Castillo73c99d42015-08-18 14:23:04 +0100401
Masahiro Yamada710ea1d2016-12-22 14:02:27 +0900402-include $(DEP)
Juan Castillo73c99d42015-08-18 14:23:04 +0100403
404endef
405
Antonio Nino Diaz70b0f272019-02-08 13:20:37 +0000406# MAKE_LIB_OBJS builds both C and assembly source files
Roberto Vargas5fee0282018-05-08 10:27:10 +0100407# $(1) = output directory
408# $(2) = list of source files
409# $(3) = name of the library
410define MAKE_LIB_OBJS
411 $(eval C_OBJS := $(filter %.c,$(2)))
412 $(eval REMAIN := $(filter-out %.c,$(2)))
413 $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C_LIB,$(1),$(obj),$(3))))
414
Antonio Nino Diaz70b0f272019-02-08 13:20:37 +0000415 $(eval S_OBJS := $(filter %.S,$(REMAIN)))
416 $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
417 $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S_LIB,$(1),$(obj),$(3))))
418
Roberto Vargas5fee0282018-05-08 10:27:10 +0100419 $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
420endef
421
Juan Castillo73c99d42015-08-18 14:23:04 +0100422
423# MAKE_OBJS builds both C and assembly source files
424# $(1) = output directory
425# $(2) = list of source files (both C and assembly)
Zelalem Aweke434d0492021-07-11 17:25:48 -0500426# $(3) = BL stage
Juan Castillo73c99d42015-08-18 14:23:04 +0100427define MAKE_OBJS
428 $(eval C_OBJS := $(filter %.c,$(2)))
429 $(eval REMAIN := $(filter-out %.c,$(2)))
430 $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj),$(3))))
431
432 $(eval S_OBJS := $(filter %.S,$(REMAIN)))
433 $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
434 $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj),$(3))))
435
436 $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
437endef
438
439
440# NOTE: The line continuation '\' is required in the next define otherwise we
441# end up with a line-feed characer at the end of the last c filename.
Evan Lloyde7f54db2015-12-02 18:56:06 +0000442# Also bear this issue in mind if extending the list of supported filetypes.
Juan Castillo73c99d42015-08-18 14:23:04 +0100443define SOURCES_TO_OBJS
444 $(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \
445 $(notdir $(patsubst %.S,%.o,$(filter %.S,$(1))))
446endef
447
Patrick Georgi2f5d4a42016-01-28 14:46:18 +0100448# Allow overriding the timestamp, for example for reproducible builds, or to
449# synchronize timestamps across multiple projects.
450# This must be set to a C string (including quotes where applicable).
451BUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__
Juan Castillo73c99d42015-08-18 14:23:04 +0100452
Roberto Vargas5fee0282018-05-08 10:27:10 +0100453.PHONY: libraries
454
Roberto Vargas5accce52018-05-22 16:05:42 +0100455# MAKE_LIB_DIRS macro defines the target for the directory where
Roberto Vargas5fee0282018-05-08 10:27:10 +0100456# libraries are created
Roberto Vargas5accce52018-05-22 16:05:42 +0100457define MAKE_LIB_DIRS
Roberto Vargas5fee0282018-05-08 10:27:10 +0100458 $(eval LIB_DIR := ${BUILD_PLAT}/lib)
Roberto Vargas5accce52018-05-22 16:05:42 +0100459 $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib)
460 $(eval LIBWRAPPER_DIR := ${BUILD_PLAT}/libwrapper)
461 $(eval $(call MAKE_PREREQ_DIR,${LIB_DIR},${BUILD_PLAT}))
462 $(eval $(call MAKE_PREREQ_DIR,${ROMLIB_DIR},${BUILD_PLAT}))
463 $(eval $(call MAKE_PREREQ_DIR,${LIBWRAPPER_DIR},${BUILD_PLAT}))
Roberto Vargas5fee0282018-05-08 10:27:10 +0100464endef
465
466# MAKE_LIB macro defines the targets and options to build each BL image.
467# Arguments:
468# $(1) = Library name
469define MAKE_LIB
470 $(eval BUILD_DIR := ${BUILD_PLAT}/lib$(1))
471 $(eval LIB_DIR := ${BUILD_PLAT}/lib)
Roberto Vargas5accce52018-05-22 16:05:42 +0100472 $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib)
Roberto Vargas5fee0282018-05-08 10:27:10 +0100473 $(eval SOURCES := $(LIB$(call uppercase,$(1))_SRCS))
474 $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
475
476$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT}))
477$(eval $(call MAKE_LIB_OBJS,$(BUILD_DIR),$(SOURCES),$(1)))
478
479.PHONY : lib${1}_dirs
Roberto Vargas5accce52018-05-22 16:05:42 +0100480lib${1}_dirs: | ${BUILD_DIR} ${LIB_DIR} ${ROMLIB_DIR} ${LIBWRAPPER_DIR}
Roberto Vargas5fee0282018-05-08 10:27:10 +0100481libraries: ${LIB_DIR}/lib$(1).a
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800482ifneq ($(findstring armlink,$(notdir $(LD))),)
483LDPATHS = --userlibpath=${LIB_DIR}
484LDLIBS += --library=$(1)
485else
Roberto Vargas5fee0282018-05-08 10:27:10 +0100486LDPATHS = -L${LIB_DIR}
487LDLIBS += -l$(1)
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800488endif
Roberto Vargas5fee0282018-05-08 10:27:10 +0100489
Roberto Vargas5accce52018-05-22 16:05:42 +0100490ifeq ($(USE_ROMLIB),1)
Sathees Balya6baf85b2018-10-18 19:14:21 +0100491LIBWRAPPER = -lwrappers
Roberto Vargas5accce52018-05-22 16:05:42 +0100492endif
493
Roberto Vargas5fee0282018-05-08 10:27:10 +0100494all: ${LIB_DIR}/lib$(1).a
495
496${LIB_DIR}/lib$(1).a: $(OBJS)
Andre Przywaraee1ba6d2018-09-27 10:56:05 +0100497 $$(ECHO) " AR $$@"
Roberto Vargas5fee0282018-05-08 10:27:10 +0100498 $$(Q)$$(AR) cr $$@ $$?
499endef
500
Chris Kay82274932023-01-16 16:53:45 +0000501# Generate the path to one or more preprocessed linker scripts given the paths
502# of their sources.
503#
504# Arguments:
505# $(1) = path to one or more linker script sources
506define linker_script_path
507 $(patsubst %.S,$(BUILD_DIR)/%,$(1))
508endef
509
Juan Castillo73c99d42015-08-18 14:23:04 +0100510# MAKE_BL macro defines the targets and options to build each BL image.
511# Arguments:
Zelalem Aweke434d0492021-07-11 17:25:48 -0500512# $(1) = BL stage
Juan Castillo8f0617e2016-01-05 11:55:36 +0000513# $(2) = FIP command line option (if empty, image will not be included in the FIP)
Masahiro Yamada1dc07142018-01-26 11:42:01 +0900514# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530515# $(4) = BL encryption flag (optional) (0, 1)
Juan Castillo73c99d42015-08-18 14:23:04 +0100516define MAKE_BL
Zelalem Aweke434d0492021-07-11 17:25:48 -0500517 $(eval BUILD_DIR := ${BUILD_PLAT}/$(1))
518 $(eval BL_SOURCES := $($(call uppercase,$(1))_SOURCES))
Chris Kaybb22fb82023-05-05 12:33:23 +0200519 $(eval SOURCES := $(sort $(BL_SOURCES) $(BL_COMMON_SOURCES) $(PLAT_BL_COMMON_SOURCES)))
Juan Castillo73c99d42015-08-18 14:23:04 +0100520 $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
Juan Castillo73c99d42015-08-18 14:23:04 +0100521 $(eval MAPFILE := $(call IMG_MAPFILE,$(1)))
522 $(eval ELF := $(call IMG_ELF,$(1)))
523 $(eval DUMP := $(call IMG_DUMP,$(1)))
524 $(eval BIN := $(call IMG_BIN,$(1)))
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530525 $(eval ENC_BIN := $(call IMG_ENC_BIN,$(1)))
Zelalem Aweke434d0492021-07-11 17:25:48 -0500526 $(eval BL_LIBS := $($(call uppercase,$(1))_LIBS))
Chris Kay82274932023-01-16 16:53:45 +0000527
528 $(eval DEFAULT_LINKER_SCRIPT_SOURCE := $($(call uppercase,$(1))_DEFAULT_LINKER_SCRIPT_SOURCE))
529 $(eval DEFAULT_LINKER_SCRIPT := $(call linker_script_path,$(DEFAULT_LINKER_SCRIPT_SOURCE)))
530
Chris Kaya6ff0062023-01-16 18:57:26 +0000531 $(eval LINKER_SCRIPT_SOURCES := $($(call uppercase,$(1))_LINKER_SCRIPT_SOURCES))
532 $(eval LINKER_SCRIPTS := $(call linker_script_path,$(LINKER_SCRIPT_SOURCES)))
533
Evan Lloyd51b27702015-12-03 12:19:30 +0000534 # We use sort only to get a list of unique object directory names.
535 # ordering is not relevant but sort removes duplicates.
Chris Kaya6ff0062023-01-16 18:57:26 +0000536 $(eval TEMP_OBJ_DIRS := $(sort $(dir ${OBJS} ${DEFAULT_LINKER_SCRIPT} ${LINKER_SCRIPTS})))
Evan Lloyd51b27702015-12-03 12:19:30 +0000537 # The $(dir ) function leaves a trailing / on the directory names
Masahiro Yamadad014ea62017-01-19 19:31:00 +0900538 # Rip off the / to match directory names with make rule targets.
539 $(eval OBJ_DIRS := $(patsubst %/,%,$(TEMP_OBJ_DIRS)))
Juan Castillo73c99d42015-08-18 14:23:04 +0100540
Evan Lloyd51b27702015-12-03 12:19:30 +0000541# Create generators for object directory structure
Juan Castillo73c99d42015-08-18 14:23:04 +0100542
Masahiro Yamada8012cc52017-11-04 03:12:28 +0900543$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT}))
Evan Lloyd6ba7d272017-04-07 16:58:57 +0100544
Chris Kay82274932023-01-16 16:53:45 +0000545$(eval $(foreach objd,${OBJ_DIRS},
546 $(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR})))
Juan Castillo73c99d42015-08-18 14:23:04 +0100547
Zelalem Aweke434d0492021-07-11 17:25:48 -0500548.PHONY : ${1}_dirs
Evan Lloyd51b27702015-12-03 12:19:30 +0000549
550# We use order-only prerequisites to ensure that directories are created,
551# but do not cause re-builds every time a file is written.
Zelalem Aweke434d0492021-07-11 17:25:48 -0500552${1}_dirs: | ${OBJ_DIRS}
Evan Lloyd51b27702015-12-03 12:19:30 +0000553
554$(eval $(call MAKE_OBJS,$(BUILD_DIR),$(SOURCES),$(1)))
Chris Kaya6ff0062023-01-16 18:57:26 +0000555
556# Generate targets to preprocess each required linker script
557$(eval $(foreach source,$(DEFAULT_LINKER_SCRIPT_SOURCE) $(LINKER_SCRIPT_SOURCES), \
558 $(call MAKE_LD,$(call linker_script_path,$(source)),$(source),$(1))))
559
Zelalem Aweke434d0492021-07-11 17:25:48 -0500560$(eval BL_LDFLAGS := $($(call uppercase,$(1))_LDFLAGS))
Evan Lloyd51b27702015-12-03 12:19:30 +0000561
Roberto Vargas5accce52018-05-22 16:05:42 +0100562ifeq ($(USE_ROMLIB),1)
563$(ELF): romlib.bin
564endif
565
Leon Chen8dccddc2022-03-23 18:51:48 +0800566# MODULE_OBJS can be assigned by vendors with different compiled
567# object file path, and prebuilt object file path.
568$(eval OBJS += $(MODULE_OBJS))
569
Chris Kaya6ff0062023-01-16 18:57:26 +0000570$(ELF): $(OBJS) $(DEFAULT_LINKER_SCRIPT) $(LINKER_SCRIPTS) | $(1)_dirs libraries $(BL_LIBS)
Andre Przywaraee1ba6d2018-09-27 10:56:05 +0100571 $$(ECHO) " LD $$@"
Evan Lloyd414ab852015-12-03 12:58:52 +0000572ifdef MAKE_BUILD_STRINGS
Harrison Mutai430be432023-09-26 15:07:24 +0100573 $(call MAKE_BUILD_STRINGS,$(BUILD_DIR)/build_message.o)
Evan Lloyd414ab852015-12-03 12:58:52 +0000574else
Patrick Georgi2f5d4a42016-01-28 14:46:18 +0100575 @echo 'const char build_message[] = "Built : "$(BUILD_MESSAGE_TIMESTAMP); \
laurenw-armdddf4282022-07-12 10:12:05 -0500576 const char version_string[] = "${VERSION_STRING}"; \
577 const char version[] = "${VERSION}";' | \
Masahiro Yamadaf2e1d572016-12-22 12:39:55 +0900578 $$(CC) $$(TF_CFLAGS) $$(CFLAGS) -xc -c - -o $(BUILD_DIR)/build_message.o
Evan Lloyd414ab852015-12-03 12:58:52 +0000579endif
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800580ifneq ($(findstring armlink,$(notdir $(LD))),)
Zelalem Aweke434d0492021-07-11 17:25:48 -0500581 $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) --entry=${1}_entrypoint \
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800582 --predefine="-D__LINKER__=$(__LINKER__)" \
583 --predefine="-DTF_CFLAGS=$(TF_CFLAGS)" \
Zelalem Aweke434d0492021-07-11 17:25:48 -0500584 --map --list="$(MAPFILE)" --scatter=${PLAT_DIR}/scat/${1}.scat \
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800585 $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) \
586 $(BUILD_DIR)/build_message.o $(OBJS)
zelalem-awekeedbce9a2019-11-12 16:20:17 -0600587else ifneq ($(findstring gcc,$(notdir $(LD))),)
588 $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) -Wl,-Map=$(MAPFILE) \
Chris Kaya6ff0062023-01-16 18:57:26 +0000589 $(addprefix -Wl$(comma)--script$(comma),$(LINKER_SCRIPTS)) -Wl,--script,$(DEFAULT_LINKER_SCRIPT) \
590 $(BUILD_DIR)/build_message.o \
zelalem-awekeedbce9a2019-11-12 16:20:17 -0600591 $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS)
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800592else
Masahiro Yamadad986bae2020-01-17 13:44:20 +0900593 $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) -Map=$(MAPFILE) \
Chris Kaya6ff0062023-01-16 18:57:26 +0000594 $(addprefix -T ,$(LINKER_SCRIPTS)) --script $(DEFAULT_LINKER_SCRIPT) \
595 $(BUILD_DIR)/build_message.o \
Sathees Balya6baf85b2018-10-18 19:14:21 +0100596 $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS)
Varun Wadekarc2ad38c2019-01-11 14:47:48 -0800597endif
Christoph Müllner9e4609f2019-04-24 09:45:30 +0200598ifeq ($(DISABLE_BIN_GENERATION),1)
599 @${ECHO_BLANK_LINE}
600 @echo "Built $$@ successfully"
601 @${ECHO_BLANK_LINE}
602endif
Juan Castillo73c99d42015-08-18 14:23:04 +0100603
604$(DUMP): $(ELF)
Andre Przywaraee1ba6d2018-09-27 10:56:05 +0100605 $${ECHO} " OD $$@"
Juan Castillo73c99d42015-08-18 14:23:04 +0100606 $${Q}$${OD} -dx $$< > $$@
607
608$(BIN): $(ELF)
Andre Przywaraee1ba6d2018-09-27 10:56:05 +0100609 $${ECHO} " BIN $$@"
Juan Castillo73c99d42015-08-18 14:23:04 +0100610 $$(Q)$$(OC) -O binary $$< $$@
Evan Lloyd052ab522017-04-11 16:52:00 +0100611 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +0100612 @echo "Built $$@ successfully"
Evan Lloyd052ab522017-04-11 16:52:00 +0100613 @${ECHO_BLANK_LINE}
Juan Castillo73c99d42015-08-18 14:23:04 +0100614
Zelalem Aweke434d0492021-07-11 17:25:48 -0500615.PHONY: $(1)
Christoph Müllner9e4609f2019-04-24 09:45:30 +0200616ifeq ($(DISABLE_BIN_GENERATION),1)
Zelalem Aweke434d0492021-07-11 17:25:48 -0500617$(1): $(ELF) $(DUMP)
Christoph Müllner9e4609f2019-04-24 09:45:30 +0200618else
Zelalem Aweke434d0492021-07-11 17:25:48 -0500619$(1): $(BIN) $(DUMP)
Christoph Müllner9e4609f2019-04-24 09:45:30 +0200620endif
Juan Castillo73c99d42015-08-18 14:23:04 +0100621
Zelalem Aweke434d0492021-07-11 17:25:48 -0500622all: $(1)
Juan Castillo73c99d42015-08-18 14:23:04 +0100623
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530624ifeq ($(4),1)
625$(call ENCRYPT_FW,$(BIN),$(ENC_BIN))
Zelalem Aweke434d0492021-07-11 17:25:48 -0500626$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(ENC_BIN),$(3), \
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530627 $(ENC_BIN)))
628else
Zelalem Aweke434d0492021-07-11 17:25:48 -0500629$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(BIN),$(3)))
Sumit Gargc6ba9b42019-11-14 16:33:45 +0530630endif
Juan Castillo73c99d42015-08-18 14:23:04 +0100631
632endef
633
Soby Mathew38c14d82017-12-14 17:44:56 +0000634# Convert device tree source file names to matching blobs
635# $(1) = input dts
Nishanth Menon03b397a2016-10-14 01:13:57 +0000636define SOURCES_TO_DTBS
637 $(notdir $(patsubst %.dts,%.dtb,$(filter %.dts,$(1))))
638endef
639
Soby Mathew38c14d82017-12-14 17:44:56 +0000640# MAKE_FDT_DIRS macro creates the prerequisite directories that host the
641# FDT binaries
642# $(1) = output directory
643# $(2) = input dts
644define MAKE_FDT_DIRS
645 $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Nishanth Menon03b397a2016-10-14 01:13:57 +0000646 $(eval TEMP_DTB_DIRS := $(sort $(dir ${DTBS})))
647 # The $(dir ) function leaves a trailing / on the directory names
648 # Rip off the / to match directory names with make rule targets.
649 $(eval DTB_DIRS := $(patsubst %/,%,$(TEMP_DTB_DIRS)))
650
651$(eval $(foreach objd,${DTB_DIRS},$(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR})))
652
653fdt_dirs: ${DTB_DIRS}
Nishanth Menon03b397a2016-10-14 01:13:57 +0000654endef
655
Soby Mathew38c14d82017-12-14 17:44:56 +0000656# MAKE_DTB generate the Flattened device tree binary
Nishanth Menon03b397a2016-10-14 01:13:57 +0000657# $(1) = output directory
658# $(2) = input dts
659define MAKE_DTB
660
Yann Gautier077b3e92018-09-04 10:44:00 +0200661# List of DTB file(s) to generate, based on DTS file basename list
Soby Mathew38c14d82017-12-14 17:44:56 +0000662$(eval DOBJ := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Yann Gautier077b3e92018-09-04 10:44:00 +0200663# List of the pre-compiled DTS file(s)
Yann Gautier01d237c2018-06-18 16:00:23 +0200664$(eval DPRE := $(addprefix $(1)/,$(patsubst %.dts,%.pre.dts,$(notdir $(2)))))
Yann Gautier077b3e92018-09-04 10:44:00 +0200665# Dependencies of the pre-compiled DTS file(s) on its source and included files
666$(eval DTSDEP := $(patsubst %.dtb,%.o.d,$(DOBJ)))
667# Dependencies of the DT compilation on its pre-compiled DTS
668$(eval DTBDEP := $(patsubst %.dtb,%.d,$(DOBJ)))
Nishanth Menon03b397a2016-10-14 01:13:57 +0000669
Stephen Warren6bc1a302018-02-21 17:13:50 -0700670$(DOBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | fdt_dirs
Andre Przywaraee1ba6d2018-09-27 10:56:05 +0100671 $${ECHO} " CPP $$<"
Yann Gautier077b3e92018-09-04 10:44:00 +0200672 $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Manish Pandey7e94a692019-01-21 14:50:10 +0000673 $$(Q)$$(PP) $$(DTC_CPPFLAGS) -MT $(DTBS) -MMD -MF $(DTSDEP) -o $(DPRE) $$<
Andre Przywaraee1ba6d2018-09-27 10:56:05 +0100674 $${ECHO} " DTC $$<"
Balint Dobszay2d51b552020-01-10 17:16:27 +0100675 $$(Q)$$(DTC) $$(DTC_FLAGS) -d $(DTBDEP) -o $$@ $(DPRE)
Nishanth Menon03b397a2016-10-14 01:13:57 +0000676
Yann Gautier077b3e92018-09-04 10:44:00 +0200677-include $(DTBDEP)
678-include $(DTSDEP)
Nishanth Menon03b397a2016-10-14 01:13:57 +0000679
680endef
681
682# MAKE_DTBS builds flattened device tree sources
683# $(1) = output directory
684# $(2) = list of flattened device tree source files
685define MAKE_DTBS
686 $(eval DOBJS := $(filter %.dts,$(2)))
687 $(eval REMAIN := $(filter-out %.dts,$(2)))
Soby Mathew38c14d82017-12-14 17:44:56 +0000688 $(and $(REMAIN),$(error FDT_SOURCES contain non-DTS files: $(REMAIN)))
Nishanth Menon03b397a2016-10-14 01:13:57 +0000689 $(eval $(foreach obj,$(DOBJS),$(call MAKE_DTB,$(1),$(obj))))
690
Soby Mathew38c14d82017-12-14 17:44:56 +0000691 $(eval $(call MAKE_FDT_DIRS,$(1),$(2)))
692
693dtbs: $(DTBS)
694all: dtbs
Nishanth Menon03b397a2016-10-14 01:13:57 +0000695endef