blob: d27408c50f03fb86557c0045418f7cd196350590 [file] [log] [blame]
Juan Castilloa3487d12015-08-18 14:23:04 +01001#
Chris Kayc7ea3472024-01-15 18:45:07 +00002# Copyright (c) 2015-2024, 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# A user defined function to recursively search for a filename below a directory
14# $1 is the directory root of the recursive search (blank for current directory).
15# $2 is the file name to search for.
16define rwildcard
17$(strip $(foreach d,$(wildcard ${1}*),$(call rwildcard,${d}/,${2}) $(filter $(subst *,%,%${2}),${d})))
18endef
19
Boyan Karatotevb4f25db2022-11-17 12:01:29 +000020# Convenience function for setting a variable to 0 if not previously set
21# $(eval $(call default_zero,FOO))
22define default_zero
23 $(eval $(1) ?= 0)
24endef
25
26# Convenience function for setting a list of variables to 0 if not previously set
27# $(eval $(call default_zeros,FOO BAR))
28define default_zeros
29 $(foreach var,$1,$(eval $(call default_zero,$(var))))
30endef
31
Govindraj Raja7dc5f1b2024-01-23 14:20:52 -060032# Convenience function for setting a variable to 1 if not previously set
33# $(eval $(call default_one,FOO))
34define default_one
35 $(eval $(1) ?= 1)
36endef
37
38# Convenience function for setting a list of variables to 1 if not previously set
39# $(eval $(call default_ones,FOO BAR))
40define default_ones
41 $(foreach var,$1,$(eval $(call default_one,$(var))))
42endef
43
Juan Castilloa3487d12015-08-18 14:23:04 +010044# Convenience function for adding build definitions
45# $(eval $(call add_define,FOO)) will have:
46# -DFOO if $(FOO) is empty; -DFOO=$(FOO) otherwise
47define add_define
48 DEFINES += -D$(1)$(if $(value $(1)),=$(value $(1)),)
49endef
50
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -050051# Convenience function for addding multiple build definitions
52# $(eval $(call add_defines,FOO BOO))
53define add_defines
54 $(foreach def,$1,$(eval $(call add_define,$(def))))
55endef
56
Soren Brinkmann9efe6572016-06-09 13:36:27 -070057# Convenience function for adding build definitions
58# $(eval $(call add_define_val,FOO,BAR)) will have:
59# -DFOO=BAR
60define add_define_val
61 DEFINES += -D$(1)=$(2)
62endef
63
Juan Castilloa3487d12015-08-18 14:23:04 +010064# Convenience function for verifying option has a boolean value
65# $(eval $(call assert_boolean,FOO)) will assert FOO is 0 or 1
66define assert_boolean
Yann Gautierdbf0a162023-04-24 13:38:12 +020067 $(if $($(1)),,$(error $(1) must not be empty))
Masahiro Yamada1ab9e922017-05-23 23:45:01 +090068 $(if $(filter-out 0 1,$($1)),$(error $1 must be boolean))
Juan Castilloa3487d12015-08-18 14:23:04 +010069endef
70
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -050071# Convenience function for verifying options have boolean values
72# $(eval $(call assert_booleans,FOO BOO)) will assert FOO and BOO for 0 or 1 values
73define assert_booleans
74 $(foreach bool,$1,$(eval $(call assert_boolean,$(bool))))
75endef
76
Jeenu Viswambharanfca76802017-01-16 16:52:35 +0000770-9 := 0 1 2 3 4 5 6 7 8 9
78
79# Function to verify that a given option $(1) contains a numeric value
80define assert_numeric
81$(if $($(1)),,$(error $(1) must not be empty))
82$(eval __numeric := $($(1)))
83$(foreach d,$(0-9),$(eval __numeric := $(subst $(d),,$(__numeric))))
84$(if $(__numeric),$(error $(1) must be numeric))
85endef
86
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -050087# Convenience function for verifying options have numeric values
88# $(eval $(call assert_numerics,FOO BOO)) will assert FOO and BOO contain numeric values
89define assert_numerics
90 $(foreach num,$1,$(eval $(call assert_numeric,$(num))))
91endef
92
Marco Felschdf646b52022-11-24 11:02:05 +010093# Convenience function to check for a given linker option. An call to
94# $(call ld_option, --no-XYZ) will return --no-XYZ if supported by the linker
Chris Kay523e8642023-12-04 12:03:51 +000095ld_option = $(shell $($(ARCH)-ld) $(1) -Wl,--version >/dev/null 2>&1 || $($(ARCH)-ld) $(1) -v >/dev/null 2>&1 && echo $(1))
Marco Felschdf646b52022-11-24 11:02:05 +010096
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -050097# Convenience function to check for a given compiler option. A call to
98# $(call cc_option, --no-XYZ) will return --no-XYZ if supported by the compiler
99define cc_option
Chris Kay523e8642023-12-04 12:03:51 +0000100 $(shell if $($(ARCH)-cc) $(1) -c -x c /dev/null -o /dev/null >/dev/null 2>&1; then echo $(1); fi )
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500101endef
102
Vijayenthiran Subramaniam3414e3a2020-02-08 21:27:30 +0530103# CREATE_SEQ is a recursive function to create sequence of numbers from 1 to
104# $(2) and assign the sequence to $(1)
105define CREATE_SEQ
106$(if $(word $(2), $($(1))),\
107 $(eval $(1) += $(words $($(1))))\
108 $(eval $(1) := $(filter-out 0,$($(1)))),\
109 $(eval $(1) += $(words $($(1))))\
110 $(call CREATE_SEQ,$(1),$(2))\
111)
112endef
113
Juan Castilloa3487d12015-08-18 14:23:04 +0100114# IMG_MAPFILE defines the output file describing the memory map corresponding
115# to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500116# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100117define IMG_MAPFILE
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500118 ${BUILD_DIR}/$(1).map
Juan Castilloa3487d12015-08-18 14:23:04 +0100119endef
120
121# IMG_ELF defines the elf file corresponding to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500122# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100123define IMG_ELF
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500124 ${BUILD_DIR}/$(1).elf
Juan Castilloa3487d12015-08-18 14:23:04 +0100125endef
126
127# IMG_DUMP defines the symbols dump file corresponding to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500128# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100129define IMG_DUMP
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500130 ${BUILD_DIR}/$(1).dump
Juan Castilloa3487d12015-08-18 14:23:04 +0100131endef
132
133# IMG_BIN defines the default image file corresponding to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500134# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100135define IMG_BIN
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500136 ${BUILD_PLAT}/$(1).bin
Juan Castilloa3487d12015-08-18 14:23:04 +0100137endef
138
Sumit Gargeec52442019-11-14 16:33:45 +0530139# IMG_ENC_BIN defines the default encrypted image file corresponding to a
140# BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500141# $(1) = BL stage
Sumit Gargeec52442019-11-14 16:33:45 +0530142define IMG_ENC_BIN
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500143 ${BUILD_PLAT}/$(1)_enc.bin
Sumit Gargeec52442019-11-14 16:33:45 +0530144endef
145
146# ENCRYPT_FW invokes enctool to encrypt firmware binary
147# $(1) = input firmware binary
148# $(2) = output encrypted firmware binary
149define ENCRYPT_FW
150$(2): $(1) enctool
Chris Kay1870c722024-05-02 17:52:37 +0000151 $$(s)echo " ENC $$<"
152 $$(q)$$(ENCTOOL) $$(ENC_ARGS) -i $$< -o $$@
Sumit Gargeec52442019-11-14 16:33:45 +0530153endef
154
Masahiro Yamada6c2b4592018-01-26 11:42:01 +0900155# TOOL_ADD_PAYLOAD appends the command line arguments required by fiptool to
156# package a new payload and/or by cert_create to generate certificate.
157# Optionally, it adds the dependency on this payload
Juan Castilloa3487d12015-08-18 14:23:04 +0100158# $(1) = payload filename (i.e. bl31.bin)
Masahiro Yamadac85deee2017-12-23 23:56:18 +0900159# $(2) = command line option for the specified payload (i.e. --soc-fw)
Masahiro Yamada5c3ae332018-01-26 11:42:01 +0900160# $(3) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900161# $(4) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530162# $(5) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin)
Masahiro Yamada6c2b4592018-01-26 11:42:01 +0900163define TOOL_ADD_PAYLOAD
Sumit Gargeec52442019-11-14 16:33:45 +0530164ifneq ($(5),)
165 $(4)FIP_ARGS += $(2) $(5)
166 $(if $(3),$(4)CRT_DEPS += $(1))
167else
Masahiro Yamada714a6922018-01-26 11:42:01 +0900168 $(4)FIP_ARGS += $(2) $(1)
Sumit Gargeec52442019-11-14 16:33:45 +0530169 $(if $(3),$(4)CRT_DEPS += $(3))
170endif
Masahiro Yamada714a6922018-01-26 11:42:01 +0900171 $(if $(3),$(4)FIP_DEPS += $(3))
Masahiro Yamadaec154ad2018-01-26 11:42:01 +0900172 $(4)CRT_ARGS += $(2) $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100173endef
174
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900175# TOOL_ADD_IMG_PAYLOAD works like TOOL_ADD_PAYLOAD, but applies image filters
176# before passing them to host tools if BL*_PRE_TOOL_FILTER is defined.
177# $(1) = image_type (scp_bl2, bl33, etc.)
178# $(2) = payload filepath (ex. build/fvp/release/bl31.bin)
179# $(3) = command line option for the specified payload (ex. --soc-fw)
180# $(4) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin)
181# $(5) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530182# $(6) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin)
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900183
184define TOOL_ADD_IMG_PAYLOAD
185
186$(eval PRE_TOOL_FILTER := $($(call uppercase,$(1))_PRE_TOOL_FILTER))
187
188ifneq ($(PRE_TOOL_FILTER),)
189
190$(eval PROCESSED_PATH := $(BUILD_PLAT)/$(1).bin$($(PRE_TOOL_FILTER)_SUFFIX))
191
192$(call $(PRE_TOOL_FILTER)_RULE,$(PROCESSED_PATH),$(2))
193
194$(PROCESSED_PATH): $(4)
195
Sumit Gargeec52442019-11-14 16:33:45 +0530196$(call TOOL_ADD_PAYLOAD,$(PROCESSED_PATH),$(3),$(PROCESSED_PATH),$(5),$(6))
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900197
198else
Sumit Gargeec52442019-11-14 16:33:45 +0530199$(call TOOL_ADD_PAYLOAD,$(2),$(3),$(4),$(5),$(6))
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900200endif
201endef
202
Yatharth Kochard1a93432015-10-12 12:33:47 +0100203# CERT_ADD_CMD_OPT adds a new command line option to the cert_create invocation
Juan Castilloa3487d12015-08-18 14:23:04 +0100204# $(1) = parameter filename
205# $(2) = cert_create command line option for the specified parameter
Masahiro Yamada5ebfda32018-01-26 11:42:01 +0900206# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Juan Castilloa3487d12015-08-18 14:23:04 +0100207define CERT_ADD_CMD_OPT
Masahiro Yamada5ebfda32018-01-26 11:42:01 +0900208 $(3)CRT_ARGS += $(2) $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100209endef
210
Masahiro Yamada4d156802018-01-26 11:42:01 +0900211# TOOL_ADD_IMG allows the platform to specify an external image to be packed
212# in the FIP and/or for which certificate is generated. It also adds a
213# dependency on the image file, aborting the build if the file does not exist.
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900214# $(1) = image_type (scp_bl2, bl33, etc.)
Masahiro Yamadac85deee2017-12-23 23:56:18 +0900215# $(2) = command line option for fiptool (--scp-fw, --nt-fw, etc)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900216# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530217# $(4) = Image encryption flag (optional) (0, 1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100218# Example:
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900219# $(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Masahiro Yamada4d156802018-01-26 11:42:01 +0900220define TOOL_ADD_IMG
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900221 # Build option to specify the image filename (SCP_BL2, BL33, etc)
222 # This is the uppercase form of the first parameter
223 $(eval _V := $(call uppercase,$(1)))
224
Pali Rohára5416ab2020-11-24 16:53:04 +0100225 # $(check_$(1)_cmd) variable is executed in the check_$(1) target and also
226 # is put into the ${CHECK_$(3)FIP_CMD} variable which is executed by the
227 # target ${BUILD_PLAT}/${$(3)FIP_NAME}.
228 $(eval check_$(1)_cmd := \
229 $(if $(value $(_V)),,$$$$(error "Platform '${PLAT}' requires $(_V). Please set $(_V) to point to the right file")) \
230 $(if $(wildcard $(value $(_V))),,$$$$(error '$(_V)=$(value $(_V))' was specified, but '$(value $(_V))' does not exist)) \
231 )
232
Masahiro Yamada714a6922018-01-26 11:42:01 +0900233 $(3)CRT_DEPS += check_$(1)
Pali Rohára5416ab2020-11-24 16:53:04 +0100234 CHECK_$(3)FIP_CMD += $$(check_$(1)_cmd)
Sumit Gargeec52442019-11-14 16:33:45 +0530235ifeq ($(4),1)
236 $(eval ENC_BIN := ${BUILD_PLAT}/$(1)_enc.bin)
237 $(call ENCRYPT_FW,$(value $(_V)),$(ENC_BIN))
238 $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(ENC_BIN),$(3), \
239 $(ENC_BIN))
240else
Pali Rohára5416ab2020-11-24 16:53:04 +0100241 $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(if $(wildcard $(value $(_V))),$(value $(_V)),FORCE),$(3))
Sumit Gargeec52442019-11-14 16:33:45 +0530242endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100243
Masahiro Yamada9dff1562017-12-24 13:08:00 +0900244.PHONY: check_$(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100245check_$(1):
Pali Rohára5416ab2020-11-24 16:53:04 +0100246 $(check_$(1)_cmd)
Juan Castilloa3487d12015-08-18 14:23:04 +0100247endef
248
Juan Pablo Conde3539c742022-10-25 19:41:02 -0400249# SELECT_OPENSSL_API_VERSION selects the OpenSSL API version to be used to
250# build the host tools by checking the version of OpenSSL located under
251# the path defined by the OPENSSL_DIR variable. It receives no parameters.
252define SELECT_OPENSSL_API_VERSION
253 # Set default value for USING_OPENSSL3 macro to 0
254 $(eval USING_OPENSSL3 = 0)
255 # Obtain the OpenSSL version for the build located under OPENSSL_DIR
256 $(eval OPENSSL_INFO := $(shell LD_LIBRARY_PATH=${OPENSSL_DIR}:${OPENSSL_DIR}/lib ${OPENSSL_BIN_PATH}/openssl version))
257 $(eval OPENSSL_CURRENT_VER = $(word 2, ${OPENSSL_INFO}))
258 $(eval OPENSSL_CURRENT_VER_MAJOR = $(firstword $(subst ., ,$(OPENSSL_CURRENT_VER))))
259 # If OpenSSL version is 3.x, then set USING_OPENSSL3 flag to 1
260 $(if $(filter 3,$(OPENSSL_CURRENT_VER_MAJOR)), $(eval USING_OPENSSL3 = 1))
261endef
262
Juan Castilloa3487d12015-08-18 14:23:04 +0100263################################################################################
Masahiro Yamadaeff36a92018-01-26 11:42:01 +0900264# Generic image processing filters
265################################################################################
266
267# GZIP
268define GZIP_RULE
269$(1): $(2)
Chris Kay1870c722024-05-02 17:52:37 +0000270 $(s)echo " GZIP $$@"
271 $(q)gzip -n -f -9 $$< --stdout > $$@
Masahiro Yamadaeff36a92018-01-26 11:42:01 +0900272endef
273
274GZIP_SUFFIX := .gz
275
276################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100277# Auxiliary macros to build TF images from sources
278################################################################################
279
Masahiro Yamadae487bb62016-12-22 15:23:05 +0900280MAKE_DEP = -Wp,-MD,$(DEP) -MT $$@ -MP
Juan Castilloa3487d12015-08-18 14:23:04 +0100281
Roberto Vargas21360f32018-05-08 10:27:10 +0100282
283# MAKE_C_LIB builds a C source file and generates the dependency file
284# $(1) = output directory
285# $(2) = source file (%.c)
286# $(3) = library name
287define MAKE_C_LIB
288$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
289$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Govindraj Raja98375d42023-01-27 10:08:54 +0000290$(eval LIB := $(call uppercase, $(notdir $(1))))
Roberto Vargas21360f32018-05-08 10:27:10 +0100291
292$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs
Chris Kay1870c722024-05-02 17:52:37 +0000293 $$(s)echo " CC $$<"
294 $$(q)$($(ARCH)-cc) $$($(LIB)_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(MAKE_DEP) -c $$< -o $$@
Roberto Vargas21360f32018-05-08 10:27:10 +0100295
296-include $(DEP)
297
298endef
299
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000300# MAKE_S_LIB builds an assembly source file and generates the dependency file
301# $(1) = output directory
302# $(2) = source file (%.S)
303# $(3) = library name
304define MAKE_S_LIB
305$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
306$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
307
308$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs
Chris Kay1870c722024-05-02 17:52:37 +0000309 $$(s)echo " AS $$<"
310 $$(q)$($(ARCH)-as) -x assembler-with-cpp $$(TF_CFLAGS_$(ARCH)) $$(ASFLAGS) $(MAKE_DEP) -c $$< -o $$@
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000311
312-include $(DEP)
313
314endef
315
Roberto Vargas21360f32018-05-08 10:27:10 +0100316
Juan Castilloa3487d12015-08-18 14:23:04 +0100317# MAKE_C builds a C source file and generates the dependency file
318# $(1) = output directory
319# $(2) = source file (%.c)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500320# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100321define MAKE_C
322
323$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900324$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Chris Kay2a8e4242023-03-22 15:42:32 +0000325
Chris Kayf5818252023-05-03 15:31:42 +0200326$(eval BL_DEFINES := IMAGE_$(call uppercase,$(3)) $($(call uppercase,$(3))_DEFINES) $(PLAT_BL_COMMON_DEFINES))
327$(eval BL_INCLUDE_DIRS := $($(call uppercase,$(3))_INCLUDE_DIRS) $(PLAT_BL_COMMON_INCLUDE_DIRS))
328$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) $(addprefix -D,$(BL_DEFINES)) $(addprefix -I,$(BL_INCLUDE_DIRS)) $(PLAT_BL_COMMON_CPPFLAGS))
329$(eval BL_CFLAGS := $($(call uppercase,$(3))_CFLAGS) $(PLAT_BL_COMMON_CFLAGS))
Juan Castilloa3487d12015-08-18 14:23:04 +0100330
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500331$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Chris Kay1870c722024-05-02 17:52:37 +0000332 $$(s)echo " CC $$<"
333 $$(q)$($(ARCH)-cc) $$(LTO_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(BL_CPPFLAGS) $(BL_CFLAGS) $(MAKE_DEP) -c $$< -o $$@
Juan Castilloa3487d12015-08-18 14:23:04 +0100334
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900335-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100336
337endef
338
339
340# MAKE_S builds an assembly source file and generates the dependency file
341# $(1) = output directory
342# $(2) = assembly file (%.S)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500343# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100344define MAKE_S
345
346$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900347$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Chris Kay2a8e4242023-03-22 15:42:32 +0000348
Chris Kayf5818252023-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_ASFLAGS := $($(call uppercase,$(3))_ASFLAGS) $(PLAT_BL_COMMON_ASFLAGS))
Juan Castilloa3487d12015-08-18 14:23:04 +0100353
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500354$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Chris Kay1870c722024-05-02 17:52:37 +0000355 $$(s)echo " AS $$<"
356 $$(q)$($(ARCH)-as) -x assembler-with-cpp $$(TF_CFLAGS_$(ARCH)) $$(ASFLAGS) $(BL_CPPFLAGS) $(BL_ASFLAGS) $(MAKE_DEP) -c $$< -o $$@
Juan Castilloa3487d12015-08-18 14:23:04 +0100357
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900358-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100359
360endef
361
362
363# MAKE_LD generate the linker script using the C preprocessor
364# $(1) = output linker script
365# $(2) = input template
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500366# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100367define MAKE_LD
368
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900369$(eval DEP := $(1).d)
Chris Kay2a8e4242023-03-22 15:42:32 +0000370
Chris Kayf5818252023-05-03 15:31:42 +0200371$(eval BL_DEFINES := IMAGE_$(call uppercase,$(3)) $($(call uppercase,$(3))_DEFINES) $(PLAT_BL_COMMON_DEFINES))
372$(eval BL_INCLUDE_DIRS := $($(call uppercase,$(3))_INCLUDE_DIRS) $(PLAT_BL_COMMON_INCLUDE_DIRS))
373$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) $(addprefix -D,$(BL_DEFINES)) $(addprefix -I,$(BL_INCLUDE_DIRS)) $(PLAT_BL_COMMON_CPPFLAGS))
Juan Castilloa3487d12015-08-18 14:23:04 +0100374
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500375$(1): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Chris Kay1870c722024-05-02 17:52:37 +0000376 $$(s)echo " PP $$<"
377 $$(q)$($(ARCH)-cpp) -E $$(CPPFLAGS) $(BL_CPPFLAGS) $(TF_CFLAGS_$(ARCH)) -P -x assembler-with-cpp -D__LINKER__ $(MAKE_DEP) -o $$@ $$<
Juan Castilloa3487d12015-08-18 14:23:04 +0100378
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900379-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100380
381endef
382
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000383# MAKE_LIB_OBJS builds both C and assembly source files
Roberto Vargas21360f32018-05-08 10:27:10 +0100384# $(1) = output directory
385# $(2) = list of source files
386# $(3) = name of the library
387define MAKE_LIB_OBJS
388 $(eval C_OBJS := $(filter %.c,$(2)))
389 $(eval REMAIN := $(filter-out %.c,$(2)))
390 $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C_LIB,$(1),$(obj),$(3))))
391
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000392 $(eval S_OBJS := $(filter %.S,$(REMAIN)))
393 $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
394 $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S_LIB,$(1),$(obj),$(3))))
395
Roberto Vargas21360f32018-05-08 10:27:10 +0100396 $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
397endef
398
Juan Castilloa3487d12015-08-18 14:23:04 +0100399
400# MAKE_OBJS builds both C and assembly source files
401# $(1) = output directory
402# $(2) = list of source files (both C and assembly)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500403# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100404define MAKE_OBJS
405 $(eval C_OBJS := $(filter %.c,$(2)))
406 $(eval REMAIN := $(filter-out %.c,$(2)))
407 $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj),$(3))))
408
409 $(eval S_OBJS := $(filter %.S,$(REMAIN)))
410 $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
411 $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj),$(3))))
412
413 $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
414endef
415
416
417# NOTE: The line continuation '\' is required in the next define otherwise we
418# end up with a line-feed characer at the end of the last c filename.
Evan Lloyda71d2592015-12-02 18:56:06 +0000419# Also bear this issue in mind if extending the list of supported filetypes.
Juan Castilloa3487d12015-08-18 14:23:04 +0100420define SOURCES_TO_OBJS
421 $(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \
422 $(notdir $(patsubst %.S,%.o,$(filter %.S,$(1))))
423endef
424
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
Chris Kaycfba6452023-12-04 09:55:50 +0000454ifeq ($($(ARCH)-ld-id),arm-link)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800455LDPATHS = --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)
Chris Kay1870c722024-05-02 17:52:37 +0000469 $$(s)echo " AR $$@"
470 $$(q)$($(ARCH)-ar) cr $$@ $$?
Roberto Vargas21360f32018-05-08 10:27:10 +0100471endef
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))
Chris Kaya7492ee2023-05-05 12:33:23 +0200491 $(eval SOURCES := $(sort $(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)
Chris Kay1870c722024-05-02 17:52:37 +0000543 $$(s)echo " LD $$@"
Chris Kaycfba6452023-12-04 09:55:50 +0000544ifeq ($($(ARCH)-ld-id),arm-link)
Chris Kay1870c722024-05-02 17:52:37 +0000545 $$(q)$($(ARCH)-ld) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) --entry=${1}_entrypoint \
Chris Kay6e1c3fd2024-05-29 20:37:33 +0000546 --predefine=$(call escape-shell,-D__LINKER__=$(__LINKER__)) \
547 --predefine=$(call escape-shell,-DTF_CFLAGS=$(TF_CFLAGS)) \
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500548 --map --list="$(MAPFILE)" --scatter=${PLAT_DIR}/scat/${1}.scat \
Chris Kay99b5b2e2024-03-08 16:08:31 +0000549 $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) $(OBJS)
Chris Kaycfba6452023-12-04 09:55:50 +0000550else ifeq ($($(ARCH)-ld-id),gnu-gcc)
Chris Kay1870c722024-05-02 17:52:37 +0000551 $$(q)$($(ARCH)-ld) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) -Wl,-Map=$(MAPFILE) \
Chris Kay0c0007b2023-01-16 18:57:26 +0000552 $(addprefix -Wl$(comma)--script$(comma),$(LINKER_SCRIPTS)) -Wl,--script,$(DEFAULT_LINKER_SCRIPT) \
zelalem-aweked5f45272019-11-12 16:20:17 -0600553 $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800554else
Chris Kay1870c722024-05-02 17:52:37 +0000555 $$(q)$($(ARCH)-ld) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) -Map=$(MAPFILE) \
Chris Kay0c0007b2023-01-16 18:57:26 +0000556 $(addprefix -T ,$(LINKER_SCRIPTS)) --script $(DEFAULT_LINKER_SCRIPT) \
Sathees Balyaf5ec5002018-10-18 19:14:21 +0100557 $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800558endif
Christoph Müllner4f088e42019-04-24 09:45:30 +0200559ifeq ($(DISABLE_BIN_GENERATION),1)
Chris Kay1870c722024-05-02 17:52:37 +0000560 $(s)echo
561 $(s)echo "Built $$@ successfully"
562 $(s)echo
Christoph Müllner4f088e42019-04-24 09:45:30 +0200563endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100564
565$(DUMP): $(ELF)
Chris Kay1870c722024-05-02 17:52:37 +0000566 $$(s)echo " OD $$@"
567 $$(q)$($(ARCH)-od) -dx $$< > $$@
Juan Castilloa3487d12015-08-18 14:23:04 +0100568
569$(BIN): $(ELF)
Chris Kay1870c722024-05-02 17:52:37 +0000570 $$(s)echo " BIN $$@"
571 $$(q)$($(ARCH)-oc) -O binary $$< $$@
572 $(s)echo
573 $(s)echo "Built $$@ successfully"
574 $(s)echo
Juan Castilloa3487d12015-08-18 14:23:04 +0100575
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500576.PHONY: $(1)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200577ifeq ($(DISABLE_BIN_GENERATION),1)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500578$(1): $(ELF) $(DUMP)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200579else
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500580$(1): $(BIN) $(DUMP)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200581endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100582
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500583all: $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100584
Sumit Gargeec52442019-11-14 16:33:45 +0530585ifeq ($(4),1)
586$(call ENCRYPT_FW,$(BIN),$(ENC_BIN))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500587$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(ENC_BIN),$(3), \
Sumit Gargeec52442019-11-14 16:33:45 +0530588 $(ENC_BIN)))
589else
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500590$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(BIN),$(3)))
Sumit Gargeec52442019-11-14 16:33:45 +0530591endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100592
593endef
594
Soby Mathewab4181d2017-12-14 17:44:56 +0000595# Convert device tree source file names to matching blobs
596# $(1) = input dts
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000597define SOURCES_TO_DTBS
598 $(notdir $(patsubst %.dts,%.dtb,$(filter %.dts,$(1))))
599endef
600
Soby Mathewab4181d2017-12-14 17:44:56 +0000601# MAKE_FDT_DIRS macro creates the prerequisite directories that host the
602# FDT binaries
603# $(1) = output directory
604# $(2) = input dts
605define MAKE_FDT_DIRS
606 $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000607 $(eval TEMP_DTB_DIRS := $(sort $(dir ${DTBS})))
608 # The $(dir ) function leaves a trailing / on the directory names
609 # Rip off the / to match directory names with make rule targets.
610 $(eval DTB_DIRS := $(patsubst %/,%,$(TEMP_DTB_DIRS)))
611
612$(eval $(foreach objd,${DTB_DIRS},$(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR})))
613
614fdt_dirs: ${DTB_DIRS}
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000615endef
616
Soby Mathewab4181d2017-12-14 17:44:56 +0000617# MAKE_DTB generate the Flattened device tree binary
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000618# $(1) = output directory
619# $(2) = input dts
620define MAKE_DTB
621
Yann Gautierf3831802018-09-04 10:44:00 +0200622# List of DTB file(s) to generate, based on DTS file basename list
Soby Mathewab4181d2017-12-14 17:44:56 +0000623$(eval DOBJ := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Yann Gautierf3831802018-09-04 10:44:00 +0200624# List of the pre-compiled DTS file(s)
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200625$(eval DPRE := $(addprefix $(1)/,$(patsubst %.dts,%.pre.dts,$(notdir $(2)))))
Yann Gautierf3831802018-09-04 10:44:00 +0200626# Dependencies of the pre-compiled DTS file(s) on its source and included files
627$(eval DTSDEP := $(patsubst %.dtb,%.o.d,$(DOBJ)))
628# Dependencies of the DT compilation on its pre-compiled DTS
629$(eval DTBDEP := $(patsubst %.dtb,%.d,$(DOBJ)))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000630
Chris Kaya6a8bc72024-03-08 16:26:53 +0000631$(DPRE): $(2) | fdt_dirs
Chris Kay1870c722024-05-02 17:52:37 +0000632 $$(s)echo " CPP $$<"
Yann Gautierf3831802018-09-04 10:44:00 +0200633 $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Chris Kay1870c722024-05-02 17:52:37 +0000634 $$(q)$($(ARCH)-cpp) -E $$(TF_CFLAGS_$(ARCH)) $$(DTC_CPPFLAGS) -MT $(DTBS) -MMD -MF $(DTSDEP) -o $(DPRE) $$<
Chris Kaya6a8bc72024-03-08 16:26:53 +0000635
636$(DOBJ): $(DPRE) $(filter-out %.d,$(MAKEFILE_LIST)) | fdt_dirs
Chris Kay1870c722024-05-02 17:52:37 +0000637 $$(s)echo " DTC $$<"
638 $$(q)$($(ARCH)-dtc) $$(DTC_FLAGS) -d $(DTBDEP) -o $$@ $$<
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000639
Yann Gautierf3831802018-09-04 10:44:00 +0200640-include $(DTBDEP)
641-include $(DTSDEP)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000642
643endef
644
645# MAKE_DTBS builds flattened device tree sources
646# $(1) = output directory
647# $(2) = list of flattened device tree source files
648define MAKE_DTBS
649 $(eval DOBJS := $(filter %.dts,$(2)))
650 $(eval REMAIN := $(filter-out %.dts,$(2)))
Soby Mathewab4181d2017-12-14 17:44:56 +0000651 $(and $(REMAIN),$(error FDT_SOURCES contain non-DTS files: $(REMAIN)))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000652 $(eval $(foreach obj,$(DOBJS),$(call MAKE_DTB,$(1),$(obj))))
653
Soby Mathewab4181d2017-12-14 17:44:56 +0000654 $(eval $(call MAKE_FDT_DIRS,$(1),$(2)))
655
656dtbs: $(DTBS)
657all: dtbs
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000658endef