blob: 9ca6bdf0c2859e527a64b98bae746978fb484fc5 [file] [log] [blame]
Juan Castilloa3487d12015-08-18 14:23:04 +01001#
Chris Kay68d28362023-01-16 16:53:45 +00002# Copyright (c) 2015-2023, Arm Limited and Contributors. All rights reserved.
Juan Castilloa3487d12015-08-18 14:23:04 +01003#
dp-armfa3cf0b2017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Juan Castilloa3487d12015-08-18 14:23:04 +01005#
6
Evan Lloyd870a18c2015-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 Lloydf2697142015-12-02 18:17:37 +000013# Some utility macros for manipulating awkward (whitespace) characters.
14blank :=
15space :=${blank} ${blank}
Chris Kay0c0007b2023-01-16 18:57:26 +000016comma := ,
Evan Lloydf2697142015-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 Kochar115352c2015-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 Karatotevb4f25db2022-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
Juan Castilloa3487d12015-08-18 14:23:04 +010053# Convenience function for adding build definitions
54# $(eval $(call add_define,FOO)) will have:
55# -DFOO if $(FOO) is empty; -DFOO=$(FOO) otherwise
56define add_define
57 DEFINES += -D$(1)$(if $(value $(1)),=$(value $(1)),)
58endef
59
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -050060# Convenience function for addding multiple build definitions
61# $(eval $(call add_defines,FOO BOO))
62define add_defines
63 $(foreach def,$1,$(eval $(call add_define,$(def))))
64endef
65
Soren Brinkmann9efe6572016-06-09 13:36:27 -070066# Convenience function for adding build definitions
67# $(eval $(call add_define_val,FOO,BAR)) will have:
68# -DFOO=BAR
69define add_define_val
70 DEFINES += -D$(1)=$(2)
71endef
72
Juan Castilloa3487d12015-08-18 14:23:04 +010073# Convenience function for verifying option has a boolean value
74# $(eval $(call assert_boolean,FOO)) will assert FOO is 0 or 1
75define assert_boolean
Masahiro Yamada1ab9e922017-05-23 23:45:01 +090076 $(if $(filter-out 0 1,$($1)),$(error $1 must be boolean))
Juan Castilloa3487d12015-08-18 14:23:04 +010077endef
78
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -050079# Convenience function for verifying options have boolean values
80# $(eval $(call assert_booleans,FOO BOO)) will assert FOO and BOO for 0 or 1 values
81define assert_booleans
82 $(foreach bool,$1,$(eval $(call assert_boolean,$(bool))))
83endef
84
Jeenu Viswambharanfca76802017-01-16 16:52:35 +0000850-9 := 0 1 2 3 4 5 6 7 8 9
86
87# Function to verify that a given option $(1) contains a numeric value
88define assert_numeric
89$(if $($(1)),,$(error $(1) must not be empty))
90$(eval __numeric := $($(1)))
91$(foreach d,$(0-9),$(eval __numeric := $(subst $(d),,$(__numeric))))
92$(if $(__numeric),$(error $(1) must be numeric))
93endef
94
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -050095# Convenience function for verifying options have numeric values
96# $(eval $(call assert_numerics,FOO BOO)) will assert FOO and BOO contain numeric values
97define assert_numerics
98 $(foreach num,$1,$(eval $(call assert_numeric,$(num))))
99endef
100
Marco Felschdf646b52022-11-24 11:02:05 +0100101# Convenience function to check for a given linker option. An call to
102# $(call ld_option, --no-XYZ) will return --no-XYZ if supported by the linker
103define ld_option
104 $(shell if $(LD) $(1) -v >/dev/null 2>&1; then echo $(1); fi )
105endef
106
Vijayenthiran Subramaniam3414e3a2020-02-08 21:27:30 +0530107# CREATE_SEQ is a recursive function to create sequence of numbers from 1 to
108# $(2) and assign the sequence to $(1)
109define CREATE_SEQ
110$(if $(word $(2), $($(1))),\
111 $(eval $(1) += $(words $($(1))))\
112 $(eval $(1) := $(filter-out 0,$($(1)))),\
113 $(eval $(1) += $(words $($(1))))\
114 $(call CREATE_SEQ,$(1),$(2))\
115)
116endef
117
Juan Castilloa3487d12015-08-18 14:23:04 +0100118# IMG_MAPFILE defines the output file describing the memory map corresponding
119# to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500120# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100121define IMG_MAPFILE
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500122 ${BUILD_DIR}/$(1).map
Juan Castilloa3487d12015-08-18 14:23:04 +0100123endef
124
125# IMG_ELF defines the elf file corresponding to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500126# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100127define IMG_ELF
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500128 ${BUILD_DIR}/$(1).elf
Juan Castilloa3487d12015-08-18 14:23:04 +0100129endef
130
131# IMG_DUMP defines the symbols dump file corresponding to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500132# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100133define IMG_DUMP
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500134 ${BUILD_DIR}/$(1).dump
Juan Castilloa3487d12015-08-18 14:23:04 +0100135endef
136
137# IMG_BIN defines the default image file corresponding to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500138# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100139define IMG_BIN
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500140 ${BUILD_PLAT}/$(1).bin
Juan Castilloa3487d12015-08-18 14:23:04 +0100141endef
142
Sumit Gargeec52442019-11-14 16:33:45 +0530143# IMG_ENC_BIN defines the default encrypted image file corresponding to a
144# BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500145# $(1) = BL stage
Sumit Gargeec52442019-11-14 16:33:45 +0530146define IMG_ENC_BIN
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500147 ${BUILD_PLAT}/$(1)_enc.bin
Sumit Gargeec52442019-11-14 16:33:45 +0530148endef
149
150# ENCRYPT_FW invokes enctool to encrypt firmware binary
151# $(1) = input firmware binary
152# $(2) = output encrypted firmware binary
153define ENCRYPT_FW
154$(2): $(1) enctool
155 $$(ECHO) " ENC $$<"
156 $$(Q)$$(ENCTOOL) $$(ENC_ARGS) -i $$< -o $$@
157endef
158
Masahiro Yamada6c2b4592018-01-26 11:42:01 +0900159# TOOL_ADD_PAYLOAD appends the command line arguments required by fiptool to
160# package a new payload and/or by cert_create to generate certificate.
161# Optionally, it adds the dependency on this payload
Juan Castilloa3487d12015-08-18 14:23:04 +0100162# $(1) = payload filename (i.e. bl31.bin)
Masahiro Yamadac85deee2017-12-23 23:56:18 +0900163# $(2) = command line option for the specified payload (i.e. --soc-fw)
Masahiro Yamada5c3ae332018-01-26 11:42:01 +0900164# $(3) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900165# $(4) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530166# $(5) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin)
Masahiro Yamada6c2b4592018-01-26 11:42:01 +0900167define TOOL_ADD_PAYLOAD
Sumit Gargeec52442019-11-14 16:33:45 +0530168ifneq ($(5),)
169 $(4)FIP_ARGS += $(2) $(5)
170 $(if $(3),$(4)CRT_DEPS += $(1))
171else
Masahiro Yamada714a6922018-01-26 11:42:01 +0900172 $(4)FIP_ARGS += $(2) $(1)
Sumit Gargeec52442019-11-14 16:33:45 +0530173 $(if $(3),$(4)CRT_DEPS += $(3))
174endif
Masahiro Yamada714a6922018-01-26 11:42:01 +0900175 $(if $(3),$(4)FIP_DEPS += $(3))
Masahiro Yamadaec154ad2018-01-26 11:42:01 +0900176 $(4)CRT_ARGS += $(2) $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100177endef
178
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900179# TOOL_ADD_IMG_PAYLOAD works like TOOL_ADD_PAYLOAD, but applies image filters
180# before passing them to host tools if BL*_PRE_TOOL_FILTER is defined.
181# $(1) = image_type (scp_bl2, bl33, etc.)
182# $(2) = payload filepath (ex. build/fvp/release/bl31.bin)
183# $(3) = command line option for the specified payload (ex. --soc-fw)
184# $(4) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin)
185# $(5) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530186# $(6) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin)
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900187
188define TOOL_ADD_IMG_PAYLOAD
189
190$(eval PRE_TOOL_FILTER := $($(call uppercase,$(1))_PRE_TOOL_FILTER))
191
192ifneq ($(PRE_TOOL_FILTER),)
193
194$(eval PROCESSED_PATH := $(BUILD_PLAT)/$(1).bin$($(PRE_TOOL_FILTER)_SUFFIX))
195
196$(call $(PRE_TOOL_FILTER)_RULE,$(PROCESSED_PATH),$(2))
197
198$(PROCESSED_PATH): $(4)
199
Sumit Gargeec52442019-11-14 16:33:45 +0530200$(call TOOL_ADD_PAYLOAD,$(PROCESSED_PATH),$(3),$(PROCESSED_PATH),$(5),$(6))
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900201
202else
Sumit Gargeec52442019-11-14 16:33:45 +0530203$(call TOOL_ADD_PAYLOAD,$(2),$(3),$(4),$(5),$(6))
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900204endif
205endef
206
Yatharth Kochard1a93432015-10-12 12:33:47 +0100207# CERT_ADD_CMD_OPT adds a new command line option to the cert_create invocation
Juan Castilloa3487d12015-08-18 14:23:04 +0100208# $(1) = parameter filename
209# $(2) = cert_create command line option for the specified parameter
Masahiro Yamada5ebfda32018-01-26 11:42:01 +0900210# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Juan Castilloa3487d12015-08-18 14:23:04 +0100211define CERT_ADD_CMD_OPT
Masahiro Yamada5ebfda32018-01-26 11:42:01 +0900212 $(3)CRT_ARGS += $(2) $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100213endef
214
Masahiro Yamada4d156802018-01-26 11:42:01 +0900215# TOOL_ADD_IMG allows the platform to specify an external image to be packed
216# in the FIP and/or for which certificate is generated. It also adds a
217# dependency on the image file, aborting the build if the file does not exist.
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900218# $(1) = image_type (scp_bl2, bl33, etc.)
Masahiro Yamadac85deee2017-12-23 23:56:18 +0900219# $(2) = command line option for fiptool (--scp-fw, --nt-fw, etc)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900220# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530221# $(4) = Image encryption flag (optional) (0, 1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100222# Example:
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900223# $(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Masahiro Yamada4d156802018-01-26 11:42:01 +0900224define TOOL_ADD_IMG
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900225 # Build option to specify the image filename (SCP_BL2, BL33, etc)
226 # This is the uppercase form of the first parameter
227 $(eval _V := $(call uppercase,$(1)))
228
Pali Rohára5416ab2020-11-24 16:53:04 +0100229 # $(check_$(1)_cmd) variable is executed in the check_$(1) target and also
230 # is put into the ${CHECK_$(3)FIP_CMD} variable which is executed by the
231 # target ${BUILD_PLAT}/${$(3)FIP_NAME}.
232 $(eval check_$(1)_cmd := \
233 $(if $(value $(_V)),,$$$$(error "Platform '${PLAT}' requires $(_V). Please set $(_V) to point to the right file")) \
234 $(if $(wildcard $(value $(_V))),,$$$$(error '$(_V)=$(value $(_V))' was specified, but '$(value $(_V))' does not exist)) \
235 )
236
Masahiro Yamada714a6922018-01-26 11:42:01 +0900237 $(3)CRT_DEPS += check_$(1)
Pali Rohára5416ab2020-11-24 16:53:04 +0100238 CHECK_$(3)FIP_CMD += $$(check_$(1)_cmd)
Sumit Gargeec52442019-11-14 16:33:45 +0530239ifeq ($(4),1)
240 $(eval ENC_BIN := ${BUILD_PLAT}/$(1)_enc.bin)
241 $(call ENCRYPT_FW,$(value $(_V)),$(ENC_BIN))
242 $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(ENC_BIN),$(3), \
243 $(ENC_BIN))
244else
Pali Rohára5416ab2020-11-24 16:53:04 +0100245 $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(if $(wildcard $(value $(_V))),$(value $(_V)),FORCE),$(3))
Sumit Gargeec52442019-11-14 16:33:45 +0530246endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100247
Masahiro Yamada9dff1562017-12-24 13:08:00 +0900248.PHONY: check_$(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100249check_$(1):
Pali Rohára5416ab2020-11-24 16:53:04 +0100250 $(check_$(1)_cmd)
Juan Castilloa3487d12015-08-18 14:23:04 +0100251endef
252
Juan Pablo Conde3539c742022-10-25 19:41:02 -0400253# SELECT_OPENSSL_API_VERSION selects the OpenSSL API version to be used to
254# build the host tools by checking the version of OpenSSL located under
255# the path defined by the OPENSSL_DIR variable. It receives no parameters.
256define SELECT_OPENSSL_API_VERSION
257 # Set default value for USING_OPENSSL3 macro to 0
258 $(eval USING_OPENSSL3 = 0)
259 # Obtain the OpenSSL version for the build located under OPENSSL_DIR
260 $(eval OPENSSL_INFO := $(shell LD_LIBRARY_PATH=${OPENSSL_DIR}:${OPENSSL_DIR}/lib ${OPENSSL_BIN_PATH}/openssl version))
261 $(eval OPENSSL_CURRENT_VER = $(word 2, ${OPENSSL_INFO}))
262 $(eval OPENSSL_CURRENT_VER_MAJOR = $(firstword $(subst ., ,$(OPENSSL_CURRENT_VER))))
263 # If OpenSSL version is 3.x, then set USING_OPENSSL3 flag to 1
264 $(if $(filter 3,$(OPENSSL_CURRENT_VER_MAJOR)), $(eval USING_OPENSSL3 = 1))
265endef
266
Juan Castilloa3487d12015-08-18 14:23:04 +0100267################################################################################
Masahiro Yamadaeff36a92018-01-26 11:42:01 +0900268# Generic image processing filters
269################################################################################
270
271# GZIP
272define GZIP_RULE
273$(1): $(2)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100274 $(ECHO) " GZIP $$@"
Masahiro Yamadaeff36a92018-01-26 11:42:01 +0900275 $(Q)gzip -n -f -9 $$< --stdout > $$@
276endef
277
278GZIP_SUFFIX := .gz
279
280################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100281# Auxiliary macros to build TF images from sources
282################################################################################
283
Masahiro Yamadae487bb62016-12-22 15:23:05 +0900284MAKE_DEP = -Wp,-MD,$(DEP) -MT $$@ -MP
Juan Castilloa3487d12015-08-18 14:23:04 +0100285
Roberto Vargas21360f32018-05-08 10:27:10 +0100286
287# MAKE_C_LIB builds a C source file and generates the dependency file
288# $(1) = output directory
289# $(2) = source file (%.c)
290# $(3) = library name
291define MAKE_C_LIB
292$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
293$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Govindraj Raja98375d42023-01-27 10:08:54 +0000294$(eval LIB := $(call uppercase, $(notdir $(1))))
Roberto Vargas21360f32018-05-08 10:27:10 +0100295
296$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100297 $$(ECHO) " CC $$<"
Govindraj Raja98375d42023-01-27 10:08:54 +0000298 $$(Q)$$(CC) $$($(LIB)_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(MAKE_DEP) -c $$< -o $$@
Roberto Vargas21360f32018-05-08 10:27:10 +0100299
300-include $(DEP)
301
302endef
303
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000304# MAKE_S_LIB builds an assembly source file and generates the dependency file
305# $(1) = output directory
306# $(2) = source file (%.S)
307# $(3) = library name
308define MAKE_S_LIB
309$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
310$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
311
312$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs
313 $$(ECHO) " AS $$<"
314 $$(Q)$$(AS) $$(ASFLAGS) $(MAKE_DEP) -c $$< -o $$@
315
316-include $(DEP)
317
318endef
319
Roberto Vargas21360f32018-05-08 10:27:10 +0100320
Juan Castilloa3487d12015-08-18 14:23:04 +0100321# MAKE_C builds a C source file and generates the dependency file
322# $(1) = output directory
323# $(2) = source file (%.c)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500324# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100325define MAKE_C
326
327$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900328$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500329$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3)))
330$(eval BL_CFLAGS := $($(call uppercase,$(3))_CFLAGS))
Juan Castilloa3487d12015-08-18 14:23:04 +0100331
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500332$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100333 $$(ECHO) " CC $$<"
Masahiro Yamadaefcbfa82020-03-25 16:55:28 +0900334 $$(Q)$$(CC) $$(LTO_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(BL_CPPFLAGS) $(BL_CFLAGS) $(MAKE_DEP) -c $$< -o $$@
Juan Castilloa3487d12015-08-18 14:23:04 +0100335
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900336-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100337
338endef
339
340
341# MAKE_S builds an assembly source file and generates the dependency file
342# $(1) = output directory
343# $(2) = assembly file (%.S)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500344# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100345define MAKE_S
346
347$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900348$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500349$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3)))
350$(eval BL_ASFLAGS := $($(call uppercase,$(3))_ASFLAGS))
Juan Castilloa3487d12015-08-18 14:23:04 +0100351
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500352$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100353 $$(ECHO) " AS $$<"
Masahiro Yamadaefcbfa82020-03-25 16:55:28 +0900354 $$(Q)$$(AS) $$(ASFLAGS) $(BL_CPPFLAGS) $(BL_ASFLAGS) $(MAKE_DEP) -c $$< -o $$@
Juan Castilloa3487d12015-08-18 14:23:04 +0100355
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900356-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100357
358endef
359
360
361# MAKE_LD generate the linker script using the C preprocessor
362# $(1) = output linker script
363# $(2) = input template
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500364# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100365define MAKE_LD
366
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900367$(eval DEP := $(1).d)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500368$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3)))
Juan Castilloa3487d12015-08-18 14:23:04 +0100369
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500370$(1): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100371 $$(ECHO) " PP $$<"
Masahiro Yamadaefcbfa82020-03-25 16:55:28 +0900372 $$(Q)$$(CPP) $$(CPPFLAGS) $(BL_CPPFLAGS) $(TF_CFLAGS_$(ARCH)) -P -x assembler-with-cpp -D__LINKER__ $(MAKE_DEP) -o $$@ $$<
Juan Castilloa3487d12015-08-18 14:23:04 +0100373
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900374-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100375
376endef
377
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000378# MAKE_LIB_OBJS builds both C and assembly source files
Roberto Vargas21360f32018-05-08 10:27:10 +0100379# $(1) = output directory
380# $(2) = list of source files
381# $(3) = name of the library
382define MAKE_LIB_OBJS
383 $(eval C_OBJS := $(filter %.c,$(2)))
384 $(eval REMAIN := $(filter-out %.c,$(2)))
385 $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C_LIB,$(1),$(obj),$(3))))
386
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000387 $(eval S_OBJS := $(filter %.S,$(REMAIN)))
388 $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
389 $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S_LIB,$(1),$(obj),$(3))))
390
Roberto Vargas21360f32018-05-08 10:27:10 +0100391 $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
392endef
393
Juan Castilloa3487d12015-08-18 14:23:04 +0100394
395# MAKE_OBJS builds both C and assembly source files
396# $(1) = output directory
397# $(2) = list of source files (both C and assembly)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500398# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100399define MAKE_OBJS
400 $(eval C_OBJS := $(filter %.c,$(2)))
401 $(eval REMAIN := $(filter-out %.c,$(2)))
402 $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj),$(3))))
403
404 $(eval S_OBJS := $(filter %.S,$(REMAIN)))
405 $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
406 $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj),$(3))))
407
408 $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
409endef
410
411
412# NOTE: The line continuation '\' is required in the next define otherwise we
413# end up with a line-feed characer at the end of the last c filename.
Evan Lloyda71d2592015-12-02 18:56:06 +0000414# Also bear this issue in mind if extending the list of supported filetypes.
Juan Castilloa3487d12015-08-18 14:23:04 +0100415define SOURCES_TO_OBJS
416 $(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \
417 $(notdir $(patsubst %.S,%.o,$(filter %.S,$(1))))
418endef
419
Patrick Georgi8a10e342016-01-28 14:46:18 +0100420# Allow overriding the timestamp, for example for reproducible builds, or to
421# synchronize timestamps across multiple projects.
422# This must be set to a C string (including quotes where applicable).
423BUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__
Juan Castilloa3487d12015-08-18 14:23:04 +0100424
Roberto Vargas21360f32018-05-08 10:27:10 +0100425.PHONY: libraries
426
Roberto Vargase92111a2018-05-22 16:05:42 +0100427# MAKE_LIB_DIRS macro defines the target for the directory where
Roberto Vargas21360f32018-05-08 10:27:10 +0100428# libraries are created
Roberto Vargase92111a2018-05-22 16:05:42 +0100429define MAKE_LIB_DIRS
Roberto Vargas21360f32018-05-08 10:27:10 +0100430 $(eval LIB_DIR := ${BUILD_PLAT}/lib)
Roberto Vargase92111a2018-05-22 16:05:42 +0100431 $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib)
432 $(eval LIBWRAPPER_DIR := ${BUILD_PLAT}/libwrapper)
433 $(eval $(call MAKE_PREREQ_DIR,${LIB_DIR},${BUILD_PLAT}))
434 $(eval $(call MAKE_PREREQ_DIR,${ROMLIB_DIR},${BUILD_PLAT}))
435 $(eval $(call MAKE_PREREQ_DIR,${LIBWRAPPER_DIR},${BUILD_PLAT}))
Roberto Vargas21360f32018-05-08 10:27:10 +0100436endef
437
438# MAKE_LIB macro defines the targets and options to build each BL image.
439# Arguments:
440# $(1) = Library name
441define MAKE_LIB
442 $(eval BUILD_DIR := ${BUILD_PLAT}/lib$(1))
443 $(eval LIB_DIR := ${BUILD_PLAT}/lib)
Roberto Vargase92111a2018-05-22 16:05:42 +0100444 $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib)
Roberto Vargas21360f32018-05-08 10:27:10 +0100445 $(eval SOURCES := $(LIB$(call uppercase,$(1))_SRCS))
446 $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
447
448$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT}))
449$(eval $(call MAKE_LIB_OBJS,$(BUILD_DIR),$(SOURCES),$(1)))
450
451.PHONY : lib${1}_dirs
Roberto Vargase92111a2018-05-22 16:05:42 +0100452lib${1}_dirs: | ${BUILD_DIR} ${LIB_DIR} ${ROMLIB_DIR} ${LIBWRAPPER_DIR}
Roberto Vargas21360f32018-05-08 10:27:10 +0100453libraries: ${LIB_DIR}/lib$(1).a
Varun Wadekar4d034c52019-01-11 14:47:48 -0800454ifneq ($(findstring armlink,$(notdir $(LD))),)
455LDPATHS = --userlibpath=${LIB_DIR}
456LDLIBS += --library=$(1)
457else
Roberto Vargas21360f32018-05-08 10:27:10 +0100458LDPATHS = -L${LIB_DIR}
459LDLIBS += -l$(1)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800460endif
Roberto Vargas21360f32018-05-08 10:27:10 +0100461
Roberto Vargase92111a2018-05-22 16:05:42 +0100462ifeq ($(USE_ROMLIB),1)
Sathees Balyaf5ec5002018-10-18 19:14:21 +0100463LIBWRAPPER = -lwrappers
Roberto Vargase92111a2018-05-22 16:05:42 +0100464endif
465
Roberto Vargas21360f32018-05-08 10:27:10 +0100466all: ${LIB_DIR}/lib$(1).a
467
468${LIB_DIR}/lib$(1).a: $(OBJS)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100469 $$(ECHO) " AR $$@"
Roberto Vargas21360f32018-05-08 10:27:10 +0100470 $$(Q)$$(AR) cr $$@ $$?
471endef
472
Chris Kay68d28362023-01-16 16:53:45 +0000473# Generate the path to one or more preprocessed linker scripts given the paths
474# of their sources.
475#
476# Arguments:
477# $(1) = path to one or more linker script sources
478define linker_script_path
479 $(patsubst %.S,$(BUILD_DIR)/%,$(1))
480endef
481
Juan Castilloa3487d12015-08-18 14:23:04 +0100482# MAKE_BL macro defines the targets and options to build each BL image.
483# Arguments:
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500484# $(1) = BL stage
Juan Castillo8e04dec2016-01-05 11:55:36 +0000485# $(2) = FIP command line option (if empty, image will not be included in the FIP)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900486# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530487# $(4) = BL encryption flag (optional) (0, 1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100488define MAKE_BL
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500489 $(eval BUILD_DIR := ${BUILD_PLAT}/$(1))
490 $(eval BL_SOURCES := $($(call uppercase,$(1))_SOURCES))
Yatharth Kochar115352c2015-10-02 13:58:52 +0100491 $(eval SOURCES := $(BL_SOURCES) $(BL_COMMON_SOURCES) $(PLAT_BL_COMMON_SOURCES))
Juan Castilloa3487d12015-08-18 14:23:04 +0100492 $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
Juan Castilloa3487d12015-08-18 14:23:04 +0100493 $(eval MAPFILE := $(call IMG_MAPFILE,$(1)))
494 $(eval ELF := $(call IMG_ELF,$(1)))
495 $(eval DUMP := $(call IMG_DUMP,$(1)))
496 $(eval BIN := $(call IMG_BIN,$(1)))
Sumit Gargeec52442019-11-14 16:33:45 +0530497 $(eval ENC_BIN := $(call IMG_ENC_BIN,$(1)))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500498 $(eval BL_LIBS := $($(call uppercase,$(1))_LIBS))
Chris Kay68d28362023-01-16 16:53:45 +0000499
500 $(eval DEFAULT_LINKER_SCRIPT_SOURCE := $($(call uppercase,$(1))_DEFAULT_LINKER_SCRIPT_SOURCE))
501 $(eval DEFAULT_LINKER_SCRIPT := $(call linker_script_path,$(DEFAULT_LINKER_SCRIPT_SOURCE)))
502
Chris Kay0c0007b2023-01-16 18:57:26 +0000503 $(eval LINKER_SCRIPT_SOURCES := $($(call uppercase,$(1))_LINKER_SCRIPT_SOURCES))
504 $(eval LINKER_SCRIPTS := $(call linker_script_path,$(LINKER_SCRIPT_SOURCES)))
505
Evan Lloyd93d3b702015-12-03 12:19:30 +0000506 # We use sort only to get a list of unique object directory names.
507 # ordering is not relevant but sort removes duplicates.
Chris Kay0c0007b2023-01-16 18:57:26 +0000508 $(eval TEMP_OBJ_DIRS := $(sort $(dir ${OBJS} ${DEFAULT_LINKER_SCRIPT} ${LINKER_SCRIPTS})))
Evan Lloyd93d3b702015-12-03 12:19:30 +0000509 # The $(dir ) function leaves a trailing / on the directory names
Masahiro Yamada823482b2017-01-19 19:31:00 +0900510 # Rip off the / to match directory names with make rule targets.
511 $(eval OBJ_DIRS := $(patsubst %/,%,$(TEMP_OBJ_DIRS)))
Evan Lloyd93d3b702015-12-03 12:19:30 +0000512
513# Create generators for object directory structure
Juan Castilloa3487d12015-08-18 14:23:04 +0100514
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900515$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT}))
Evan Lloyd4c3055f2017-04-07 16:58:57 +0100516
Chris Kay68d28362023-01-16 16:53:45 +0000517$(eval $(foreach objd,${OBJ_DIRS},
518 $(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR})))
Juan Castilloa3487d12015-08-18 14:23:04 +0100519
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500520.PHONY : ${1}_dirs
Juan Castilloa3487d12015-08-18 14:23:04 +0100521
Evan Lloyd93d3b702015-12-03 12:19:30 +0000522# We use order-only prerequisites to ensure that directories are created,
523# but do not cause re-builds every time a file is written.
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500524${1}_dirs: | ${OBJ_DIRS}
Evan Lloyd93d3b702015-12-03 12:19:30 +0000525
526$(eval $(call MAKE_OBJS,$(BUILD_DIR),$(SOURCES),$(1)))
Chris Kay0c0007b2023-01-16 18:57:26 +0000527
528# Generate targets to preprocess each required linker script
529$(eval $(foreach source,$(DEFAULT_LINKER_SCRIPT_SOURCE) $(LINKER_SCRIPT_SOURCES), \
530 $(call MAKE_LD,$(call linker_script_path,$(source)),$(source),$(1))))
531
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500532$(eval BL_LDFLAGS := $($(call uppercase,$(1))_LDFLAGS))
Evan Lloyd93d3b702015-12-03 12:19:30 +0000533
Roberto Vargase92111a2018-05-22 16:05:42 +0100534ifeq ($(USE_ROMLIB),1)
535$(ELF): romlib.bin
536endif
537
developer09f3e982022-03-23 18:51:48 +0800538# MODULE_OBJS can be assigned by vendors with different compiled
539# object file path, and prebuilt object file path.
540$(eval OBJS += $(MODULE_OBJS))
541
Chris Kay0c0007b2023-01-16 18:57:26 +0000542$(ELF): $(OBJS) $(DEFAULT_LINKER_SCRIPT) $(LINKER_SCRIPTS) | $(1)_dirs libraries $(BL_LIBS)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100543 $$(ECHO) " LD $$@"
Evan Lloydcf6e9d42015-12-03 12:58:52 +0000544ifdef MAKE_BUILD_STRINGS
545 $(call MAKE_BUILD_STRINGS, $(BUILD_DIR)/build_message.o)
546else
Patrick Georgi8a10e342016-01-28 14:46:18 +0100547 @echo 'const char build_message[] = "Built : "$(BUILD_MESSAGE_TIMESTAMP); \
laurenw-arme954f652022-07-12 10:12:05 -0500548 const char version_string[] = "${VERSION_STRING}"; \
549 const char version[] = "${VERSION}";' | \
Masahiro Yamada49071ae2016-12-22 12:39:55 +0900550 $$(CC) $$(TF_CFLAGS) $$(CFLAGS) -xc -c - -o $(BUILD_DIR)/build_message.o
Evan Lloydcf6e9d42015-12-03 12:58:52 +0000551endif
Varun Wadekar4d034c52019-01-11 14:47:48 -0800552ifneq ($(findstring armlink,$(notdir $(LD))),)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500553 $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) --entry=${1}_entrypoint \
Varun Wadekar4d034c52019-01-11 14:47:48 -0800554 --predefine="-D__LINKER__=$(__LINKER__)" \
555 --predefine="-DTF_CFLAGS=$(TF_CFLAGS)" \
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500556 --map --list="$(MAPFILE)" --scatter=${PLAT_DIR}/scat/${1}.scat \
Varun Wadekar4d034c52019-01-11 14:47:48 -0800557 $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) \
558 $(BUILD_DIR)/build_message.o $(OBJS)
zelalem-aweked5f45272019-11-12 16:20:17 -0600559else ifneq ($(findstring gcc,$(notdir $(LD))),)
560 $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) -Wl,-Map=$(MAPFILE) \
Chris Kay0c0007b2023-01-16 18:57:26 +0000561 $(addprefix -Wl$(comma)--script$(comma),$(LINKER_SCRIPTS)) -Wl,--script,$(DEFAULT_LINKER_SCRIPT) \
562 $(BUILD_DIR)/build_message.o \
zelalem-aweked5f45272019-11-12 16:20:17 -0600563 $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800564else
Masahiro Yamadae2e8e102020-01-17 13:44:20 +0900565 $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) -Map=$(MAPFILE) \
Chris Kay0c0007b2023-01-16 18:57:26 +0000566 $(addprefix -T ,$(LINKER_SCRIPTS)) --script $(DEFAULT_LINKER_SCRIPT) \
567 $(BUILD_DIR)/build_message.o \
Sathees Balyaf5ec5002018-10-18 19:14:21 +0100568 $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800569endif
Christoph Müllner4f088e42019-04-24 09:45:30 +0200570ifeq ($(DISABLE_BIN_GENERATION),1)
571 @${ECHO_BLANK_LINE}
572 @echo "Built $$@ successfully"
573 @${ECHO_BLANK_LINE}
574endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100575
576$(DUMP): $(ELF)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100577 $${ECHO} " OD $$@"
Juan Castilloa3487d12015-08-18 14:23:04 +0100578 $${Q}$${OD} -dx $$< > $$@
579
580$(BIN): $(ELF)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100581 $${ECHO} " BIN $$@"
Juan Castilloa3487d12015-08-18 14:23:04 +0100582 $$(Q)$$(OC) -O binary $$< $$@
Evan Lloyd1c5f3602017-04-11 16:52:00 +0100583 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +0100584 @echo "Built $$@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +0100585 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +0100586
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500587.PHONY: $(1)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200588ifeq ($(DISABLE_BIN_GENERATION),1)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500589$(1): $(ELF) $(DUMP)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200590else
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500591$(1): $(BIN) $(DUMP)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200592endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100593
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500594all: $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100595
Sumit Gargeec52442019-11-14 16:33:45 +0530596ifeq ($(4),1)
597$(call ENCRYPT_FW,$(BIN),$(ENC_BIN))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500598$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(ENC_BIN),$(3), \
Sumit Gargeec52442019-11-14 16:33:45 +0530599 $(ENC_BIN)))
600else
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500601$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(BIN),$(3)))
Sumit Gargeec52442019-11-14 16:33:45 +0530602endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100603
604endef
605
Soby Mathewab4181d2017-12-14 17:44:56 +0000606# Convert device tree source file names to matching blobs
607# $(1) = input dts
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000608define SOURCES_TO_DTBS
609 $(notdir $(patsubst %.dts,%.dtb,$(filter %.dts,$(1))))
610endef
611
Soby Mathewab4181d2017-12-14 17:44:56 +0000612# MAKE_FDT_DIRS macro creates the prerequisite directories that host the
613# FDT binaries
614# $(1) = output directory
615# $(2) = input dts
616define MAKE_FDT_DIRS
617 $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000618 $(eval TEMP_DTB_DIRS := $(sort $(dir ${DTBS})))
619 # The $(dir ) function leaves a trailing / on the directory names
620 # Rip off the / to match directory names with make rule targets.
621 $(eval DTB_DIRS := $(patsubst %/,%,$(TEMP_DTB_DIRS)))
622
623$(eval $(foreach objd,${DTB_DIRS},$(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR})))
624
625fdt_dirs: ${DTB_DIRS}
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000626endef
627
Soby Mathewab4181d2017-12-14 17:44:56 +0000628# MAKE_DTB generate the Flattened device tree binary
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000629# $(1) = output directory
630# $(2) = input dts
631define MAKE_DTB
632
Yann Gautierf3831802018-09-04 10:44:00 +0200633# List of DTB file(s) to generate, based on DTS file basename list
Soby Mathewab4181d2017-12-14 17:44:56 +0000634$(eval DOBJ := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Yann Gautierf3831802018-09-04 10:44:00 +0200635# List of the pre-compiled DTS file(s)
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200636$(eval DPRE := $(addprefix $(1)/,$(patsubst %.dts,%.pre.dts,$(notdir $(2)))))
Yann Gautierf3831802018-09-04 10:44:00 +0200637# Dependencies of the pre-compiled DTS file(s) on its source and included files
638$(eval DTSDEP := $(patsubst %.dtb,%.o.d,$(DOBJ)))
639# Dependencies of the DT compilation on its pre-compiled DTS
640$(eval DTBDEP := $(patsubst %.dtb,%.d,$(DOBJ)))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000641
Stephen Warrenc4d562a2018-02-21 17:13:50 -0700642$(DOBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | fdt_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100643 $${ECHO} " CPP $$<"
Yann Gautierf3831802018-09-04 10:44:00 +0200644 $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Manish Pandeye6c5a232019-01-21 14:50:10 +0000645 $$(Q)$$(PP) $$(DTC_CPPFLAGS) -MT $(DTBS) -MMD -MF $(DTSDEP) -o $(DPRE) $$<
Andre Przywaracf2bb082018-09-27 10:56:05 +0100646 $${ECHO} " DTC $$<"
Balint Dobszay5ce2c322020-01-10 17:16:27 +0100647 $$(Q)$$(DTC) $$(DTC_FLAGS) -d $(DTBDEP) -o $$@ $(DPRE)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000648
Yann Gautierf3831802018-09-04 10:44:00 +0200649-include $(DTBDEP)
650-include $(DTSDEP)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000651
652endef
653
654# MAKE_DTBS builds flattened device tree sources
655# $(1) = output directory
656# $(2) = list of flattened device tree source files
657define MAKE_DTBS
658 $(eval DOBJS := $(filter %.dts,$(2)))
659 $(eval REMAIN := $(filter-out %.dts,$(2)))
Soby Mathewab4181d2017-12-14 17:44:56 +0000660 $(and $(REMAIN),$(error FDT_SOURCES contain non-DTS files: $(REMAIN)))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000661 $(eval $(foreach obj,$(DOBJS),$(call MAKE_DTB,$(1),$(obj))))
662
Soby Mathewab4181d2017-12-14 17:44:56 +0000663 $(eval $(call MAKE_FDT_DIRS,$(1),$(2)))
664
665dtbs: $(DTBS)
666all: dtbs
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000667endef