blob: 9bf26f08362fe269504e3418caf564a7f05dc0b0 [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
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500107# Convenience function to check for a given compiler option. A call to
108# $(call cc_option, --no-XYZ) will return --no-XYZ if supported by the compiler
109define cc_option
110 $(shell if $(CC) $(1) -c -x c /dev/null -o /dev/null >/dev/null 2>&1; then echo $(1); fi )
111endef
112
Vijayenthiran Subramaniam3414e3a2020-02-08 21:27:30 +0530113# CREATE_SEQ is a recursive function to create sequence of numbers from 1 to
114# $(2) and assign the sequence to $(1)
115define CREATE_SEQ
116$(if $(word $(2), $($(1))),\
117 $(eval $(1) += $(words $($(1))))\
118 $(eval $(1) := $(filter-out 0,$($(1)))),\
119 $(eval $(1) += $(words $($(1))))\
120 $(call CREATE_SEQ,$(1),$(2))\
121)
122endef
123
Juan Castilloa3487d12015-08-18 14:23:04 +0100124# IMG_MAPFILE defines the output file describing the memory map corresponding
125# to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500126# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100127define IMG_MAPFILE
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500128 ${BUILD_DIR}/$(1).map
Juan Castilloa3487d12015-08-18 14:23:04 +0100129endef
130
131# IMG_ELF defines the elf 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_ELF
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500134 ${BUILD_DIR}/$(1).elf
Juan Castilloa3487d12015-08-18 14:23:04 +0100135endef
136
137# IMG_DUMP defines the symbols dump 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_DUMP
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500140 ${BUILD_DIR}/$(1).dump
Juan Castilloa3487d12015-08-18 14:23:04 +0100141endef
142
143# IMG_BIN defines the default image file corresponding to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500144# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100145define IMG_BIN
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500146 ${BUILD_PLAT}/$(1).bin
Juan Castilloa3487d12015-08-18 14:23:04 +0100147endef
148
Sumit Gargeec52442019-11-14 16:33:45 +0530149# IMG_ENC_BIN defines the default encrypted image file corresponding to a
150# BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500151# $(1) = BL stage
Sumit Gargeec52442019-11-14 16:33:45 +0530152define IMG_ENC_BIN
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500153 ${BUILD_PLAT}/$(1)_enc.bin
Sumit Gargeec52442019-11-14 16:33:45 +0530154endef
155
156# ENCRYPT_FW invokes enctool to encrypt firmware binary
157# $(1) = input firmware binary
158# $(2) = output encrypted firmware binary
159define ENCRYPT_FW
160$(2): $(1) enctool
161 $$(ECHO) " ENC $$<"
162 $$(Q)$$(ENCTOOL) $$(ENC_ARGS) -i $$< -o $$@
163endef
164
Masahiro Yamada6c2b4592018-01-26 11:42:01 +0900165# TOOL_ADD_PAYLOAD appends the command line arguments required by fiptool to
166# package a new payload and/or by cert_create to generate certificate.
167# Optionally, it adds the dependency on this payload
Juan Castilloa3487d12015-08-18 14:23:04 +0100168# $(1) = payload filename (i.e. bl31.bin)
Masahiro Yamadac85deee2017-12-23 23:56:18 +0900169# $(2) = command line option for the specified payload (i.e. --soc-fw)
Masahiro Yamada5c3ae332018-01-26 11:42:01 +0900170# $(3) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900171# $(4) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530172# $(5) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin)
Masahiro Yamada6c2b4592018-01-26 11:42:01 +0900173define TOOL_ADD_PAYLOAD
Sumit Gargeec52442019-11-14 16:33:45 +0530174ifneq ($(5),)
175 $(4)FIP_ARGS += $(2) $(5)
176 $(if $(3),$(4)CRT_DEPS += $(1))
177else
Masahiro Yamada714a6922018-01-26 11:42:01 +0900178 $(4)FIP_ARGS += $(2) $(1)
Sumit Gargeec52442019-11-14 16:33:45 +0530179 $(if $(3),$(4)CRT_DEPS += $(3))
180endif
Masahiro Yamada714a6922018-01-26 11:42:01 +0900181 $(if $(3),$(4)FIP_DEPS += $(3))
Masahiro Yamadaec154ad2018-01-26 11:42:01 +0900182 $(4)CRT_ARGS += $(2) $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100183endef
184
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900185# TOOL_ADD_IMG_PAYLOAD works like TOOL_ADD_PAYLOAD, but applies image filters
186# before passing them to host tools if BL*_PRE_TOOL_FILTER is defined.
187# $(1) = image_type (scp_bl2, bl33, etc.)
188# $(2) = payload filepath (ex. build/fvp/release/bl31.bin)
189# $(3) = command line option for the specified payload (ex. --soc-fw)
190# $(4) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin)
191# $(5) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530192# $(6) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin)
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900193
194define TOOL_ADD_IMG_PAYLOAD
195
196$(eval PRE_TOOL_FILTER := $($(call uppercase,$(1))_PRE_TOOL_FILTER))
197
198ifneq ($(PRE_TOOL_FILTER),)
199
200$(eval PROCESSED_PATH := $(BUILD_PLAT)/$(1).bin$($(PRE_TOOL_FILTER)_SUFFIX))
201
202$(call $(PRE_TOOL_FILTER)_RULE,$(PROCESSED_PATH),$(2))
203
204$(PROCESSED_PATH): $(4)
205
Sumit Gargeec52442019-11-14 16:33:45 +0530206$(call TOOL_ADD_PAYLOAD,$(PROCESSED_PATH),$(3),$(PROCESSED_PATH),$(5),$(6))
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900207
208else
Sumit Gargeec52442019-11-14 16:33:45 +0530209$(call TOOL_ADD_PAYLOAD,$(2),$(3),$(4),$(5),$(6))
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900210endif
211endef
212
Yatharth Kochard1a93432015-10-12 12:33:47 +0100213# CERT_ADD_CMD_OPT adds a new command line option to the cert_create invocation
Juan Castilloa3487d12015-08-18 14:23:04 +0100214# $(1) = parameter filename
215# $(2) = cert_create command line option for the specified parameter
Masahiro Yamada5ebfda32018-01-26 11:42:01 +0900216# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Juan Castilloa3487d12015-08-18 14:23:04 +0100217define CERT_ADD_CMD_OPT
Masahiro Yamada5ebfda32018-01-26 11:42:01 +0900218 $(3)CRT_ARGS += $(2) $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100219endef
220
Masahiro Yamada4d156802018-01-26 11:42:01 +0900221# TOOL_ADD_IMG allows the platform to specify an external image to be packed
222# in the FIP and/or for which certificate is generated. It also adds a
223# dependency on the image file, aborting the build if the file does not exist.
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900224# $(1) = image_type (scp_bl2, bl33, etc.)
Masahiro Yamadac85deee2017-12-23 23:56:18 +0900225# $(2) = command line option for fiptool (--scp-fw, --nt-fw, etc)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900226# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530227# $(4) = Image encryption flag (optional) (0, 1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100228# Example:
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900229# $(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Masahiro Yamada4d156802018-01-26 11:42:01 +0900230define TOOL_ADD_IMG
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900231 # Build option to specify the image filename (SCP_BL2, BL33, etc)
232 # This is the uppercase form of the first parameter
233 $(eval _V := $(call uppercase,$(1)))
234
Pali Rohára5416ab2020-11-24 16:53:04 +0100235 # $(check_$(1)_cmd) variable is executed in the check_$(1) target and also
236 # is put into the ${CHECK_$(3)FIP_CMD} variable which is executed by the
237 # target ${BUILD_PLAT}/${$(3)FIP_NAME}.
238 $(eval check_$(1)_cmd := \
239 $(if $(value $(_V)),,$$$$(error "Platform '${PLAT}' requires $(_V). Please set $(_V) to point to the right file")) \
240 $(if $(wildcard $(value $(_V))),,$$$$(error '$(_V)=$(value $(_V))' was specified, but '$(value $(_V))' does not exist)) \
241 )
242
Masahiro Yamada714a6922018-01-26 11:42:01 +0900243 $(3)CRT_DEPS += check_$(1)
Pali Rohára5416ab2020-11-24 16:53:04 +0100244 CHECK_$(3)FIP_CMD += $$(check_$(1)_cmd)
Sumit Gargeec52442019-11-14 16:33:45 +0530245ifeq ($(4),1)
246 $(eval ENC_BIN := ${BUILD_PLAT}/$(1)_enc.bin)
247 $(call ENCRYPT_FW,$(value $(_V)),$(ENC_BIN))
248 $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(ENC_BIN),$(3), \
249 $(ENC_BIN))
250else
Pali Rohára5416ab2020-11-24 16:53:04 +0100251 $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(if $(wildcard $(value $(_V))),$(value $(_V)),FORCE),$(3))
Sumit Gargeec52442019-11-14 16:33:45 +0530252endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100253
Masahiro Yamada9dff1562017-12-24 13:08:00 +0900254.PHONY: check_$(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100255check_$(1):
Pali Rohára5416ab2020-11-24 16:53:04 +0100256 $(check_$(1)_cmd)
Juan Castilloa3487d12015-08-18 14:23:04 +0100257endef
258
Juan Pablo Conde3539c742022-10-25 19:41:02 -0400259# SELECT_OPENSSL_API_VERSION selects the OpenSSL API version to be used to
260# build the host tools by checking the version of OpenSSL located under
261# the path defined by the OPENSSL_DIR variable. It receives no parameters.
262define SELECT_OPENSSL_API_VERSION
263 # Set default value for USING_OPENSSL3 macro to 0
264 $(eval USING_OPENSSL3 = 0)
265 # Obtain the OpenSSL version for the build located under OPENSSL_DIR
266 $(eval OPENSSL_INFO := $(shell LD_LIBRARY_PATH=${OPENSSL_DIR}:${OPENSSL_DIR}/lib ${OPENSSL_BIN_PATH}/openssl version))
267 $(eval OPENSSL_CURRENT_VER = $(word 2, ${OPENSSL_INFO}))
268 $(eval OPENSSL_CURRENT_VER_MAJOR = $(firstword $(subst ., ,$(OPENSSL_CURRENT_VER))))
269 # If OpenSSL version is 3.x, then set USING_OPENSSL3 flag to 1
270 $(if $(filter 3,$(OPENSSL_CURRENT_VER_MAJOR)), $(eval USING_OPENSSL3 = 1))
271endef
272
Juan Castilloa3487d12015-08-18 14:23:04 +0100273################################################################################
Masahiro Yamadaeff36a92018-01-26 11:42:01 +0900274# Generic image processing filters
275################################################################################
276
277# GZIP
278define GZIP_RULE
279$(1): $(2)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100280 $(ECHO) " GZIP $$@"
Masahiro Yamadaeff36a92018-01-26 11:42:01 +0900281 $(Q)gzip -n -f -9 $$< --stdout > $$@
282endef
283
284GZIP_SUFFIX := .gz
285
286################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100287# Auxiliary macros to build TF images from sources
288################################################################################
289
Masahiro Yamadae487bb62016-12-22 15:23:05 +0900290MAKE_DEP = -Wp,-MD,$(DEP) -MT $$@ -MP
Juan Castilloa3487d12015-08-18 14:23:04 +0100291
Roberto Vargas21360f32018-05-08 10:27:10 +0100292
293# MAKE_C_LIB builds a C source file and generates the dependency file
294# $(1) = output directory
295# $(2) = source file (%.c)
296# $(3) = library name
297define MAKE_C_LIB
298$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
299$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Govindraj Raja98375d42023-01-27 10:08:54 +0000300$(eval LIB := $(call uppercase, $(notdir $(1))))
Roberto Vargas21360f32018-05-08 10:27:10 +0100301
302$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100303 $$(ECHO) " CC $$<"
Govindraj Raja98375d42023-01-27 10:08:54 +0000304 $$(Q)$$(CC) $$($(LIB)_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(MAKE_DEP) -c $$< -o $$@
Roberto Vargas21360f32018-05-08 10:27:10 +0100305
306-include $(DEP)
307
308endef
309
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000310# MAKE_S_LIB builds an assembly source file and generates the dependency file
311# $(1) = output directory
312# $(2) = source file (%.S)
313# $(3) = library name
314define MAKE_S_LIB
315$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
316$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
317
318$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs
319 $$(ECHO) " AS $$<"
320 $$(Q)$$(AS) $$(ASFLAGS) $(MAKE_DEP) -c $$< -o $$@
321
322-include $(DEP)
323
324endef
325
Roberto Vargas21360f32018-05-08 10:27:10 +0100326
Juan Castilloa3487d12015-08-18 14:23:04 +0100327# MAKE_C builds a C source file and generates the dependency file
328# $(1) = output directory
329# $(2) = source file (%.c)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500330# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100331define MAKE_C
332
333$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900334$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Chris Kay2a8e4242023-03-22 15:42:32 +0000335
336$(eval BL_DEFINES := $($(call uppercase,$(3))_DEFINES))
337$(eval BL_INCLUDE_DIRS := $($(call uppercase,$(3))_INCLUDE_DIRS))
338$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3)) $(addprefix -D,$(BL_DEFINES)) $(addprefix -I,$(BL_INCLUDE_DIRS)))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500339$(eval BL_CFLAGS := $($(call uppercase,$(3))_CFLAGS))
Juan Castilloa3487d12015-08-18 14:23:04 +0100340
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500341$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100342 $$(ECHO) " CC $$<"
Masahiro Yamadaefcbfa82020-03-25 16:55:28 +0900343 $$(Q)$$(CC) $$(LTO_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(BL_CPPFLAGS) $(BL_CFLAGS) $(MAKE_DEP) -c $$< -o $$@
Juan Castilloa3487d12015-08-18 14:23:04 +0100344
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900345-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100346
347endef
348
349
350# MAKE_S builds an assembly source file and generates the dependency file
351# $(1) = output directory
352# $(2) = assembly file (%.S)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500353# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100354define MAKE_S
355
356$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900357$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Chris Kay2a8e4242023-03-22 15:42:32 +0000358
359$(eval BL_DEFINES := $($(call uppercase,$(3))_DEFINES))
360$(eval BL_INCLUDE_DIRS := $($(call uppercase,$(3))_INCLUDE_DIRS))
361$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3)) $(addprefix -D,$(BL_DEFINES)) $(addprefix -I,$(BL_INCLUDE_DIRS)))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500362$(eval BL_ASFLAGS := $($(call uppercase,$(3))_ASFLAGS))
Juan Castilloa3487d12015-08-18 14:23:04 +0100363
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500364$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100365 $$(ECHO) " AS $$<"
Masahiro Yamadaefcbfa82020-03-25 16:55:28 +0900366 $$(Q)$$(AS) $$(ASFLAGS) $(BL_CPPFLAGS) $(BL_ASFLAGS) $(MAKE_DEP) -c $$< -o $$@
Juan Castilloa3487d12015-08-18 14:23:04 +0100367
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900368-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100369
370endef
371
372
373# MAKE_LD generate the linker script using the C preprocessor
374# $(1) = output linker script
375# $(2) = input template
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500376# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100377define MAKE_LD
378
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900379$(eval DEP := $(1).d)
Chris Kay2a8e4242023-03-22 15:42:32 +0000380
381$(eval BL_DEFINES := $($(call uppercase,$(3))_DEFINES))
382$(eval BL_INCLUDE_DIRS := $($(call uppercase,$(3))_INCLUDE_DIRS))
383$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3)) $(addprefix -D,$(BL_DEFINES)) $(addprefix -I,$(BL_INCLUDE_DIRS)))
Juan Castilloa3487d12015-08-18 14:23:04 +0100384
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500385$(1): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100386 $$(ECHO) " PP $$<"
Masahiro Yamadaefcbfa82020-03-25 16:55:28 +0900387 $$(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 +0100388
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900389-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100390
391endef
392
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000393# MAKE_LIB_OBJS builds both C and assembly source files
Roberto Vargas21360f32018-05-08 10:27:10 +0100394# $(1) = output directory
395# $(2) = list of source files
396# $(3) = name of the library
397define MAKE_LIB_OBJS
398 $(eval C_OBJS := $(filter %.c,$(2)))
399 $(eval REMAIN := $(filter-out %.c,$(2)))
400 $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C_LIB,$(1),$(obj),$(3))))
401
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000402 $(eval S_OBJS := $(filter %.S,$(REMAIN)))
403 $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
404 $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S_LIB,$(1),$(obj),$(3))))
405
Roberto Vargas21360f32018-05-08 10:27:10 +0100406 $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
407endef
408
Juan Castilloa3487d12015-08-18 14:23:04 +0100409
410# MAKE_OBJS builds both C and assembly source files
411# $(1) = output directory
412# $(2) = list of source files (both C and assembly)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500413# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100414define MAKE_OBJS
415 $(eval C_OBJS := $(filter %.c,$(2)))
416 $(eval REMAIN := $(filter-out %.c,$(2)))
417 $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj),$(3))))
418
419 $(eval S_OBJS := $(filter %.S,$(REMAIN)))
420 $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
421 $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj),$(3))))
422
423 $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
424endef
425
426
427# NOTE: The line continuation '\' is required in the next define otherwise we
428# end up with a line-feed characer at the end of the last c filename.
Evan Lloyda71d2592015-12-02 18:56:06 +0000429# Also bear this issue in mind if extending the list of supported filetypes.
Juan Castilloa3487d12015-08-18 14:23:04 +0100430define SOURCES_TO_OBJS
431 $(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \
432 $(notdir $(patsubst %.S,%.o,$(filter %.S,$(1))))
433endef
434
Patrick Georgi8a10e342016-01-28 14:46:18 +0100435# Allow overriding the timestamp, for example for reproducible builds, or to
436# synchronize timestamps across multiple projects.
437# This must be set to a C string (including quotes where applicable).
438BUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__
Juan Castilloa3487d12015-08-18 14:23:04 +0100439
Roberto Vargas21360f32018-05-08 10:27:10 +0100440.PHONY: libraries
441
Roberto Vargase92111a2018-05-22 16:05:42 +0100442# MAKE_LIB_DIRS macro defines the target for the directory where
Roberto Vargas21360f32018-05-08 10:27:10 +0100443# libraries are created
Roberto Vargase92111a2018-05-22 16:05:42 +0100444define MAKE_LIB_DIRS
Roberto Vargas21360f32018-05-08 10:27:10 +0100445 $(eval LIB_DIR := ${BUILD_PLAT}/lib)
Roberto Vargase92111a2018-05-22 16:05:42 +0100446 $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib)
447 $(eval LIBWRAPPER_DIR := ${BUILD_PLAT}/libwrapper)
448 $(eval $(call MAKE_PREREQ_DIR,${LIB_DIR},${BUILD_PLAT}))
449 $(eval $(call MAKE_PREREQ_DIR,${ROMLIB_DIR},${BUILD_PLAT}))
450 $(eval $(call MAKE_PREREQ_DIR,${LIBWRAPPER_DIR},${BUILD_PLAT}))
Roberto Vargas21360f32018-05-08 10:27:10 +0100451endef
452
453# MAKE_LIB macro defines the targets and options to build each BL image.
454# Arguments:
455# $(1) = Library name
456define MAKE_LIB
457 $(eval BUILD_DIR := ${BUILD_PLAT}/lib$(1))
458 $(eval LIB_DIR := ${BUILD_PLAT}/lib)
Roberto Vargase92111a2018-05-22 16:05:42 +0100459 $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib)
Roberto Vargas21360f32018-05-08 10:27:10 +0100460 $(eval SOURCES := $(LIB$(call uppercase,$(1))_SRCS))
461 $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
462
463$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT}))
464$(eval $(call MAKE_LIB_OBJS,$(BUILD_DIR),$(SOURCES),$(1)))
465
466.PHONY : lib${1}_dirs
Roberto Vargase92111a2018-05-22 16:05:42 +0100467lib${1}_dirs: | ${BUILD_DIR} ${LIB_DIR} ${ROMLIB_DIR} ${LIBWRAPPER_DIR}
Roberto Vargas21360f32018-05-08 10:27:10 +0100468libraries: ${LIB_DIR}/lib$(1).a
Varun Wadekar4d034c52019-01-11 14:47:48 -0800469ifneq ($(findstring armlink,$(notdir $(LD))),)
470LDPATHS = --userlibpath=${LIB_DIR}
471LDLIBS += --library=$(1)
472else
Roberto Vargas21360f32018-05-08 10:27:10 +0100473LDPATHS = -L${LIB_DIR}
474LDLIBS += -l$(1)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800475endif
Roberto Vargas21360f32018-05-08 10:27:10 +0100476
Roberto Vargase92111a2018-05-22 16:05:42 +0100477ifeq ($(USE_ROMLIB),1)
Sathees Balyaf5ec5002018-10-18 19:14:21 +0100478LIBWRAPPER = -lwrappers
Roberto Vargase92111a2018-05-22 16:05:42 +0100479endif
480
Roberto Vargas21360f32018-05-08 10:27:10 +0100481all: ${LIB_DIR}/lib$(1).a
482
483${LIB_DIR}/lib$(1).a: $(OBJS)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100484 $$(ECHO) " AR $$@"
Roberto Vargas21360f32018-05-08 10:27:10 +0100485 $$(Q)$$(AR) cr $$@ $$?
486endef
487
Chris Kay68d28362023-01-16 16:53:45 +0000488# Generate the path to one or more preprocessed linker scripts given the paths
489# of their sources.
490#
491# Arguments:
492# $(1) = path to one or more linker script sources
493define linker_script_path
494 $(patsubst %.S,$(BUILD_DIR)/%,$(1))
495endef
496
Juan Castilloa3487d12015-08-18 14:23:04 +0100497# MAKE_BL macro defines the targets and options to build each BL image.
498# Arguments:
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500499# $(1) = BL stage
Juan Castillo8e04dec2016-01-05 11:55:36 +0000500# $(2) = FIP command line option (if empty, image will not be included in the FIP)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900501# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530502# $(4) = BL encryption flag (optional) (0, 1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100503define MAKE_BL
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500504 $(eval BUILD_DIR := ${BUILD_PLAT}/$(1))
505 $(eval BL_SOURCES := $($(call uppercase,$(1))_SOURCES))
Yatharth Kochar115352c2015-10-02 13:58:52 +0100506 $(eval SOURCES := $(BL_SOURCES) $(BL_COMMON_SOURCES) $(PLAT_BL_COMMON_SOURCES))
Juan Castilloa3487d12015-08-18 14:23:04 +0100507 $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
Juan Castilloa3487d12015-08-18 14:23:04 +0100508 $(eval MAPFILE := $(call IMG_MAPFILE,$(1)))
509 $(eval ELF := $(call IMG_ELF,$(1)))
510 $(eval DUMP := $(call IMG_DUMP,$(1)))
511 $(eval BIN := $(call IMG_BIN,$(1)))
Sumit Gargeec52442019-11-14 16:33:45 +0530512 $(eval ENC_BIN := $(call IMG_ENC_BIN,$(1)))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500513 $(eval BL_LIBS := $($(call uppercase,$(1))_LIBS))
Chris Kay68d28362023-01-16 16:53:45 +0000514
515 $(eval DEFAULT_LINKER_SCRIPT_SOURCE := $($(call uppercase,$(1))_DEFAULT_LINKER_SCRIPT_SOURCE))
516 $(eval DEFAULT_LINKER_SCRIPT := $(call linker_script_path,$(DEFAULT_LINKER_SCRIPT_SOURCE)))
517
Chris Kay0c0007b2023-01-16 18:57:26 +0000518 $(eval LINKER_SCRIPT_SOURCES := $($(call uppercase,$(1))_LINKER_SCRIPT_SOURCES))
519 $(eval LINKER_SCRIPTS := $(call linker_script_path,$(LINKER_SCRIPT_SOURCES)))
520
Evan Lloyd93d3b702015-12-03 12:19:30 +0000521 # We use sort only to get a list of unique object directory names.
522 # ordering is not relevant but sort removes duplicates.
Chris Kay0c0007b2023-01-16 18:57:26 +0000523 $(eval TEMP_OBJ_DIRS := $(sort $(dir ${OBJS} ${DEFAULT_LINKER_SCRIPT} ${LINKER_SCRIPTS})))
Evan Lloyd93d3b702015-12-03 12:19:30 +0000524 # The $(dir ) function leaves a trailing / on the directory names
Masahiro Yamada823482b2017-01-19 19:31:00 +0900525 # Rip off the / to match directory names with make rule targets.
526 $(eval OBJ_DIRS := $(patsubst %/,%,$(TEMP_OBJ_DIRS)))
Evan Lloyd93d3b702015-12-03 12:19:30 +0000527
528# Create generators for object directory structure
Juan Castilloa3487d12015-08-18 14:23:04 +0100529
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900530$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT}))
Evan Lloyd4c3055f2017-04-07 16:58:57 +0100531
Chris Kay68d28362023-01-16 16:53:45 +0000532$(eval $(foreach objd,${OBJ_DIRS},
533 $(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR})))
Juan Castilloa3487d12015-08-18 14:23:04 +0100534
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500535.PHONY : ${1}_dirs
Juan Castilloa3487d12015-08-18 14:23:04 +0100536
Evan Lloyd93d3b702015-12-03 12:19:30 +0000537# We use order-only prerequisites to ensure that directories are created,
538# but do not cause re-builds every time a file is written.
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500539${1}_dirs: | ${OBJ_DIRS}
Evan Lloyd93d3b702015-12-03 12:19:30 +0000540
541$(eval $(call MAKE_OBJS,$(BUILD_DIR),$(SOURCES),$(1)))
Chris Kay0c0007b2023-01-16 18:57:26 +0000542
543# Generate targets to preprocess each required linker script
544$(eval $(foreach source,$(DEFAULT_LINKER_SCRIPT_SOURCE) $(LINKER_SCRIPT_SOURCES), \
545 $(call MAKE_LD,$(call linker_script_path,$(source)),$(source),$(1))))
546
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500547$(eval BL_LDFLAGS := $($(call uppercase,$(1))_LDFLAGS))
Evan Lloyd93d3b702015-12-03 12:19:30 +0000548
Roberto Vargase92111a2018-05-22 16:05:42 +0100549ifeq ($(USE_ROMLIB),1)
550$(ELF): romlib.bin
551endif
552
developer09f3e982022-03-23 18:51:48 +0800553# MODULE_OBJS can be assigned by vendors with different compiled
554# object file path, and prebuilt object file path.
555$(eval OBJS += $(MODULE_OBJS))
556
Chris Kay0c0007b2023-01-16 18:57:26 +0000557$(ELF): $(OBJS) $(DEFAULT_LINKER_SCRIPT) $(LINKER_SCRIPTS) | $(1)_dirs libraries $(BL_LIBS)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100558 $$(ECHO) " LD $$@"
Evan Lloydcf6e9d42015-12-03 12:58:52 +0000559ifdef MAKE_BUILD_STRINGS
560 $(call MAKE_BUILD_STRINGS, $(BUILD_DIR)/build_message.o)
561else
Patrick Georgi8a10e342016-01-28 14:46:18 +0100562 @echo 'const char build_message[] = "Built : "$(BUILD_MESSAGE_TIMESTAMP); \
laurenw-arme954f652022-07-12 10:12:05 -0500563 const char version_string[] = "${VERSION_STRING}"; \
564 const char version[] = "${VERSION}";' | \
Masahiro Yamada49071ae2016-12-22 12:39:55 +0900565 $$(CC) $$(TF_CFLAGS) $$(CFLAGS) -xc -c - -o $(BUILD_DIR)/build_message.o
Evan Lloydcf6e9d42015-12-03 12:58:52 +0000566endif
Varun Wadekar4d034c52019-01-11 14:47:48 -0800567ifneq ($(findstring armlink,$(notdir $(LD))),)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500568 $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) --entry=${1}_entrypoint \
Varun Wadekar4d034c52019-01-11 14:47:48 -0800569 --predefine="-D__LINKER__=$(__LINKER__)" \
570 --predefine="-DTF_CFLAGS=$(TF_CFLAGS)" \
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500571 --map --list="$(MAPFILE)" --scatter=${PLAT_DIR}/scat/${1}.scat \
Varun Wadekar4d034c52019-01-11 14:47:48 -0800572 $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) \
573 $(BUILD_DIR)/build_message.o $(OBJS)
zelalem-aweked5f45272019-11-12 16:20:17 -0600574else ifneq ($(findstring gcc,$(notdir $(LD))),)
575 $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) -Wl,-Map=$(MAPFILE) \
Chris Kay0c0007b2023-01-16 18:57:26 +0000576 $(addprefix -Wl$(comma)--script$(comma),$(LINKER_SCRIPTS)) -Wl,--script,$(DEFAULT_LINKER_SCRIPT) \
577 $(BUILD_DIR)/build_message.o \
zelalem-aweked5f45272019-11-12 16:20:17 -0600578 $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800579else
Masahiro Yamadae2e8e102020-01-17 13:44:20 +0900580 $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) -Map=$(MAPFILE) \
Chris Kay0c0007b2023-01-16 18:57:26 +0000581 $(addprefix -T ,$(LINKER_SCRIPTS)) --script $(DEFAULT_LINKER_SCRIPT) \
582 $(BUILD_DIR)/build_message.o \
Sathees Balyaf5ec5002018-10-18 19:14:21 +0100583 $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800584endif
Christoph Müllner4f088e42019-04-24 09:45:30 +0200585ifeq ($(DISABLE_BIN_GENERATION),1)
586 @${ECHO_BLANK_LINE}
587 @echo "Built $$@ successfully"
588 @${ECHO_BLANK_LINE}
589endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100590
591$(DUMP): $(ELF)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100592 $${ECHO} " OD $$@"
Juan Castilloa3487d12015-08-18 14:23:04 +0100593 $${Q}$${OD} -dx $$< > $$@
594
595$(BIN): $(ELF)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100596 $${ECHO} " BIN $$@"
Juan Castilloa3487d12015-08-18 14:23:04 +0100597 $$(Q)$$(OC) -O binary $$< $$@
Evan Lloyd1c5f3602017-04-11 16:52:00 +0100598 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +0100599 @echo "Built $$@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +0100600 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +0100601
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500602.PHONY: $(1)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200603ifeq ($(DISABLE_BIN_GENERATION),1)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500604$(1): $(ELF) $(DUMP)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200605else
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500606$(1): $(BIN) $(DUMP)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200607endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100608
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500609all: $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100610
Sumit Gargeec52442019-11-14 16:33:45 +0530611ifeq ($(4),1)
612$(call ENCRYPT_FW,$(BIN),$(ENC_BIN))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500613$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(ENC_BIN),$(3), \
Sumit Gargeec52442019-11-14 16:33:45 +0530614 $(ENC_BIN)))
615else
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500616$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(BIN),$(3)))
Sumit Gargeec52442019-11-14 16:33:45 +0530617endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100618
619endef
620
Soby Mathewab4181d2017-12-14 17:44:56 +0000621# Convert device tree source file names to matching blobs
622# $(1) = input dts
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000623define SOURCES_TO_DTBS
624 $(notdir $(patsubst %.dts,%.dtb,$(filter %.dts,$(1))))
625endef
626
Soby Mathewab4181d2017-12-14 17:44:56 +0000627# MAKE_FDT_DIRS macro creates the prerequisite directories that host the
628# FDT binaries
629# $(1) = output directory
630# $(2) = input dts
631define MAKE_FDT_DIRS
632 $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000633 $(eval TEMP_DTB_DIRS := $(sort $(dir ${DTBS})))
634 # The $(dir ) function leaves a trailing / on the directory names
635 # Rip off the / to match directory names with make rule targets.
636 $(eval DTB_DIRS := $(patsubst %/,%,$(TEMP_DTB_DIRS)))
637
638$(eval $(foreach objd,${DTB_DIRS},$(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR})))
639
640fdt_dirs: ${DTB_DIRS}
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000641endef
642
Soby Mathewab4181d2017-12-14 17:44:56 +0000643# MAKE_DTB generate the Flattened device tree binary
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000644# $(1) = output directory
645# $(2) = input dts
646define MAKE_DTB
647
Yann Gautierf3831802018-09-04 10:44:00 +0200648# List of DTB file(s) to generate, based on DTS file basename list
Soby Mathewab4181d2017-12-14 17:44:56 +0000649$(eval DOBJ := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Yann Gautierf3831802018-09-04 10:44:00 +0200650# List of the pre-compiled DTS file(s)
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200651$(eval DPRE := $(addprefix $(1)/,$(patsubst %.dts,%.pre.dts,$(notdir $(2)))))
Yann Gautierf3831802018-09-04 10:44:00 +0200652# Dependencies of the pre-compiled DTS file(s) on its source and included files
653$(eval DTSDEP := $(patsubst %.dtb,%.o.d,$(DOBJ)))
654# Dependencies of the DT compilation on its pre-compiled DTS
655$(eval DTBDEP := $(patsubst %.dtb,%.d,$(DOBJ)))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000656
Stephen Warrenc4d562a2018-02-21 17:13:50 -0700657$(DOBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | fdt_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100658 $${ECHO} " CPP $$<"
Yann Gautierf3831802018-09-04 10:44:00 +0200659 $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Manish Pandeye6c5a232019-01-21 14:50:10 +0000660 $$(Q)$$(PP) $$(DTC_CPPFLAGS) -MT $(DTBS) -MMD -MF $(DTSDEP) -o $(DPRE) $$<
Andre Przywaracf2bb082018-09-27 10:56:05 +0100661 $${ECHO} " DTC $$<"
Balint Dobszay5ce2c322020-01-10 17:16:27 +0100662 $$(Q)$$(DTC) $$(DTC_FLAGS) -d $(DTBDEP) -o $$@ $(DPRE)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000663
Yann Gautierf3831802018-09-04 10:44:00 +0200664-include $(DTBDEP)
665-include $(DTSDEP)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000666
667endef
668
669# MAKE_DTBS builds flattened device tree sources
670# $(1) = output directory
671# $(2) = list of flattened device tree source files
672define MAKE_DTBS
673 $(eval DOBJS := $(filter %.dts,$(2)))
674 $(eval REMAIN := $(filter-out %.dts,$(2)))
Soby Mathewab4181d2017-12-14 17:44:56 +0000675 $(and $(REMAIN),$(error FDT_SOURCES contain non-DTS files: $(REMAIN)))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000676 $(eval $(foreach obj,$(DOBJS),$(call MAKE_DTB,$(1),$(obj))))
677
Soby Mathewab4181d2017-12-14 17:44:56 +0000678 $(eval $(call MAKE_FDT_DIRS,$(1),$(2)))
679
680dtbs: $(DTBS)
681all: dtbs
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000682endef