blob: a6b1d528b3ba42307fcb1522269a8592ff4f235d [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
Juan Castilloa3487d12015-08-18 14:23:04 +010041# Convenience function for adding build definitions
42# $(eval $(call add_define,FOO)) will have:
43# -DFOO if $(FOO) is empty; -DFOO=$(FOO) otherwise
44define add_define
45 DEFINES += -D$(1)$(if $(value $(1)),=$(value $(1)),)
46endef
47
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -050048
49# Convenience function for addding multiple build definitions
50# $(eval $(call add_defines,FOO BOO))
51define add_defines
52 $(foreach def,$1,$(eval $(call add_define,$(def))))
53endef
54
Soren Brinkmann9efe6572016-06-09 13:36:27 -070055# Convenience function for adding build definitions
56# $(eval $(call add_define_val,FOO,BAR)) will have:
57# -DFOO=BAR
58define add_define_val
59 DEFINES += -D$(1)=$(2)
60endef
61
Juan Castilloa3487d12015-08-18 14:23:04 +010062# Convenience function for verifying option has a boolean value
63# $(eval $(call assert_boolean,FOO)) will assert FOO is 0 or 1
64define assert_boolean
Masahiro Yamada1ab9e922017-05-23 23:45:01 +090065 $(if $(filter-out 0 1,$($1)),$(error $1 must be boolean))
Juan Castilloa3487d12015-08-18 14:23:04 +010066endef
67
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -050068# Convenience function for verifying options have boolean values
69# $(eval $(call assert_booleans,FOO BOO)) will assert FOO and BOO for 0 or 1 values
70define assert_booleans
71 $(foreach bool,$1,$(eval $(call assert_boolean,$(bool))))
72endef
73
Jeenu Viswambharanfca76802017-01-16 16:52:35 +0000740-9 := 0 1 2 3 4 5 6 7 8 9
75
76# Function to verify that a given option $(1) contains a numeric value
77define assert_numeric
78$(if $($(1)),,$(error $(1) must not be empty))
79$(eval __numeric := $($(1)))
80$(foreach d,$(0-9),$(eval __numeric := $(subst $(d),,$(__numeric))))
81$(if $(__numeric),$(error $(1) must be numeric))
82endef
83
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -050084# Convenience function for verifying options have numeric values
85# $(eval $(call assert_numerics,FOO BOO)) will assert FOO and BOO contain numeric values
86define assert_numerics
87 $(foreach num,$1,$(eval $(call assert_numeric,$(num))))
88endef
89
Vijayenthiran Subramaniam3414e3a2020-02-08 21:27:30 +053090# CREATE_SEQ is a recursive function to create sequence of numbers from 1 to
91# $(2) and assign the sequence to $(1)
92define CREATE_SEQ
93$(if $(word $(2), $($(1))),\
94 $(eval $(1) += $(words $($(1))))\
95 $(eval $(1) := $(filter-out 0,$($(1)))),\
96 $(eval $(1) += $(words $($(1))))\
97 $(call CREATE_SEQ,$(1),$(2))\
98)
99endef
100
Juan Castilloa3487d12015-08-18 14:23:04 +0100101# IMG_MAPFILE defines the output file describing the memory map corresponding
102# to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500103# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100104define IMG_MAPFILE
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500105 ${BUILD_DIR}/$(1).map
Juan Castilloa3487d12015-08-18 14:23:04 +0100106endef
107
108# IMG_ELF defines the elf file corresponding to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500109# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100110define IMG_ELF
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500111 ${BUILD_DIR}/$(1).elf
Juan Castilloa3487d12015-08-18 14:23:04 +0100112endef
113
114# IMG_DUMP defines the symbols dump file corresponding to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500115# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100116define IMG_DUMP
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500117 ${BUILD_DIR}/$(1).dump
Juan Castilloa3487d12015-08-18 14:23:04 +0100118endef
119
120# IMG_BIN defines the default image file corresponding to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500121# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100122define IMG_BIN
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500123 ${BUILD_PLAT}/$(1).bin
Juan Castilloa3487d12015-08-18 14:23:04 +0100124endef
125
Sumit Gargeec52442019-11-14 16:33:45 +0530126# IMG_ENC_BIN defines the default encrypted image file corresponding to a
127# BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500128# $(1) = BL stage
Sumit Gargeec52442019-11-14 16:33:45 +0530129define IMG_ENC_BIN
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500130 ${BUILD_PLAT}/$(1)_enc.bin
Sumit Gargeec52442019-11-14 16:33:45 +0530131endef
132
133# ENCRYPT_FW invokes enctool to encrypt firmware binary
134# $(1) = input firmware binary
135# $(2) = output encrypted firmware binary
136define ENCRYPT_FW
137$(2): $(1) enctool
138 $$(ECHO) " ENC $$<"
139 $$(Q)$$(ENCTOOL) $$(ENC_ARGS) -i $$< -o $$@
140endef
141
Masahiro Yamada6c2b4592018-01-26 11:42:01 +0900142# TOOL_ADD_PAYLOAD appends the command line arguments required by fiptool to
143# package a new payload and/or by cert_create to generate certificate.
144# Optionally, it adds the dependency on this payload
Juan Castilloa3487d12015-08-18 14:23:04 +0100145# $(1) = payload filename (i.e. bl31.bin)
Masahiro Yamadac85deee2017-12-23 23:56:18 +0900146# $(2) = command line option for the specified payload (i.e. --soc-fw)
Masahiro Yamada5c3ae332018-01-26 11:42:01 +0900147# $(3) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900148# $(4) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530149# $(5) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin)
Masahiro Yamada6c2b4592018-01-26 11:42:01 +0900150define TOOL_ADD_PAYLOAD
Sumit Gargeec52442019-11-14 16:33:45 +0530151ifneq ($(5),)
152 $(4)FIP_ARGS += $(2) $(5)
153 $(if $(3),$(4)CRT_DEPS += $(1))
154else
Masahiro Yamada714a6922018-01-26 11:42:01 +0900155 $(4)FIP_ARGS += $(2) $(1)
Sumit Gargeec52442019-11-14 16:33:45 +0530156 $(if $(3),$(4)CRT_DEPS += $(3))
157endif
Masahiro Yamada714a6922018-01-26 11:42:01 +0900158 $(if $(3),$(4)FIP_DEPS += $(3))
Masahiro Yamadaec154ad2018-01-26 11:42:01 +0900159 $(4)CRT_ARGS += $(2) $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100160endef
161
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900162# TOOL_ADD_IMG_PAYLOAD works like TOOL_ADD_PAYLOAD, but applies image filters
163# before passing them to host tools if BL*_PRE_TOOL_FILTER is defined.
164# $(1) = image_type (scp_bl2, bl33, etc.)
165# $(2) = payload filepath (ex. build/fvp/release/bl31.bin)
166# $(3) = command line option for the specified payload (ex. --soc-fw)
167# $(4) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin)
168# $(5) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530169# $(6) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin)
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900170
171define TOOL_ADD_IMG_PAYLOAD
172
173$(eval PRE_TOOL_FILTER := $($(call uppercase,$(1))_PRE_TOOL_FILTER))
174
175ifneq ($(PRE_TOOL_FILTER),)
176
177$(eval PROCESSED_PATH := $(BUILD_PLAT)/$(1).bin$($(PRE_TOOL_FILTER)_SUFFIX))
178
179$(call $(PRE_TOOL_FILTER)_RULE,$(PROCESSED_PATH),$(2))
180
181$(PROCESSED_PATH): $(4)
182
Sumit Gargeec52442019-11-14 16:33:45 +0530183$(call TOOL_ADD_PAYLOAD,$(PROCESSED_PATH),$(3),$(PROCESSED_PATH),$(5),$(6))
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900184
185else
Sumit Gargeec52442019-11-14 16:33:45 +0530186$(call TOOL_ADD_PAYLOAD,$(2),$(3),$(4),$(5),$(6))
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900187endif
188endef
189
Yatharth Kochard1a93432015-10-12 12:33:47 +0100190# CERT_ADD_CMD_OPT adds a new command line option to the cert_create invocation
Juan Castilloa3487d12015-08-18 14:23:04 +0100191# $(1) = parameter filename
192# $(2) = cert_create command line option for the specified parameter
Masahiro Yamada5ebfda32018-01-26 11:42:01 +0900193# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Juan Castilloa3487d12015-08-18 14:23:04 +0100194define CERT_ADD_CMD_OPT
Masahiro Yamada5ebfda32018-01-26 11:42:01 +0900195 $(3)CRT_ARGS += $(2) $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100196endef
197
Masahiro Yamada4d156802018-01-26 11:42:01 +0900198# TOOL_ADD_IMG allows the platform to specify an external image to be packed
199# in the FIP and/or for which certificate is generated. It also adds a
200# dependency on the image file, aborting the build if the file does not exist.
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900201# $(1) = image_type (scp_bl2, bl33, etc.)
Masahiro Yamadac85deee2017-12-23 23:56:18 +0900202# $(2) = command line option for fiptool (--scp-fw, --nt-fw, etc)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900203# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530204# $(4) = Image encryption flag (optional) (0, 1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100205# Example:
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900206# $(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Masahiro Yamada4d156802018-01-26 11:42:01 +0900207define TOOL_ADD_IMG
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900208 # Build option to specify the image filename (SCP_BL2, BL33, etc)
209 # This is the uppercase form of the first parameter
210 $(eval _V := $(call uppercase,$(1)))
211
Pali Rohára5416ab2020-11-24 16:53:04 +0100212 # $(check_$(1)_cmd) variable is executed in the check_$(1) target and also
213 # is put into the ${CHECK_$(3)FIP_CMD} variable which is executed by the
214 # target ${BUILD_PLAT}/${$(3)FIP_NAME}.
215 $(eval check_$(1)_cmd := \
216 $(if $(value $(_V)),,$$$$(error "Platform '${PLAT}' requires $(_V). Please set $(_V) to point to the right file")) \
217 $(if $(wildcard $(value $(_V))),,$$$$(error '$(_V)=$(value $(_V))' was specified, but '$(value $(_V))' does not exist)) \
218 )
219
Masahiro Yamada714a6922018-01-26 11:42:01 +0900220 $(3)CRT_DEPS += check_$(1)
Pali Rohára5416ab2020-11-24 16:53:04 +0100221 CHECK_$(3)FIP_CMD += $$(check_$(1)_cmd)
Sumit Gargeec52442019-11-14 16:33:45 +0530222ifeq ($(4),1)
223 $(eval ENC_BIN := ${BUILD_PLAT}/$(1)_enc.bin)
224 $(call ENCRYPT_FW,$(value $(_V)),$(ENC_BIN))
225 $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(ENC_BIN),$(3), \
226 $(ENC_BIN))
227else
Pali Rohára5416ab2020-11-24 16:53:04 +0100228 $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(if $(wildcard $(value $(_V))),$(value $(_V)),FORCE),$(3))
Sumit Gargeec52442019-11-14 16:33:45 +0530229endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100230
Masahiro Yamada9dff1562017-12-24 13:08:00 +0900231.PHONY: check_$(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100232check_$(1):
Pali Rohára5416ab2020-11-24 16:53:04 +0100233 $(check_$(1)_cmd)
Juan Castilloa3487d12015-08-18 14:23:04 +0100234endef
235
Juan Pablo Conde3539c742022-10-25 19:41:02 -0400236# SELECT_OPENSSL_API_VERSION selects the OpenSSL API version to be used to
237# build the host tools by checking the version of OpenSSL located under
238# the path defined by the OPENSSL_DIR variable. It receives no parameters.
239define SELECT_OPENSSL_API_VERSION
240 # Set default value for USING_OPENSSL3 macro to 0
241 $(eval USING_OPENSSL3 = 0)
242 # Obtain the OpenSSL version for the build located under OPENSSL_DIR
243 $(eval OPENSSL_INFO := $(shell LD_LIBRARY_PATH=${OPENSSL_DIR}:${OPENSSL_DIR}/lib ${OPENSSL_BIN_PATH}/openssl version))
244 $(eval OPENSSL_CURRENT_VER = $(word 2, ${OPENSSL_INFO}))
245 $(eval OPENSSL_CURRENT_VER_MAJOR = $(firstword $(subst ., ,$(OPENSSL_CURRENT_VER))))
246 # If OpenSSL version is 3.x, then set USING_OPENSSL3 flag to 1
247 $(if $(filter 3,$(OPENSSL_CURRENT_VER_MAJOR)), $(eval USING_OPENSSL3 = 1))
248endef
249
Juan Castilloa3487d12015-08-18 14:23:04 +0100250################################################################################
Masahiro Yamadaeff36a92018-01-26 11:42:01 +0900251# Generic image processing filters
252################################################################################
253
254# GZIP
255define GZIP_RULE
256$(1): $(2)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100257 $(ECHO) " GZIP $$@"
Masahiro Yamadaeff36a92018-01-26 11:42:01 +0900258 $(Q)gzip -n -f -9 $$< --stdout > $$@
259endef
260
261GZIP_SUFFIX := .gz
262
263################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100264# Auxiliary macros to build TF images from sources
265################################################################################
266
Masahiro Yamadae487bb62016-12-22 15:23:05 +0900267MAKE_DEP = -Wp,-MD,$(DEP) -MT $$@ -MP
Juan Castilloa3487d12015-08-18 14:23:04 +0100268
Roberto Vargas21360f32018-05-08 10:27:10 +0100269
270# MAKE_C_LIB builds a C source file and generates the dependency file
271# $(1) = output directory
272# $(2) = source file (%.c)
273# $(3) = library name
274define MAKE_C_LIB
275$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
276$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
277
278$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100279 $$(ECHO) " CC $$<"
Roberto Vargas21360f32018-05-08 10:27:10 +0100280 $$(Q)$$(CC) $$(TF_CFLAGS) $$(CFLAGS) $(MAKE_DEP) -c $$< -o $$@
281
282-include $(DEP)
283
284endef
285
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000286# MAKE_S_LIB builds an assembly source file and generates the dependency file
287# $(1) = output directory
288# $(2) = source file (%.S)
289# $(3) = library name
290define MAKE_S_LIB
291$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
292$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
293
294$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs
295 $$(ECHO) " AS $$<"
296 $$(Q)$$(AS) $$(ASFLAGS) $(MAKE_DEP) -c $$< -o $$@
297
298-include $(DEP)
299
300endef
301
Roberto Vargas21360f32018-05-08 10:27:10 +0100302
Juan Castilloa3487d12015-08-18 14:23:04 +0100303# MAKE_C builds a C source file and generates the dependency file
304# $(1) = output directory
305# $(2) = source file (%.c)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500306# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100307define MAKE_C
308
309$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900310$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500311$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3)))
312$(eval BL_CFLAGS := $($(call uppercase,$(3))_CFLAGS))
Juan Castilloa3487d12015-08-18 14:23:04 +0100313
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500314$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100315 $$(ECHO) " CC $$<"
Masahiro Yamadaefcbfa82020-03-25 16:55:28 +0900316 $$(Q)$$(CC) $$(LTO_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(BL_CPPFLAGS) $(BL_CFLAGS) $(MAKE_DEP) -c $$< -o $$@
Juan Castilloa3487d12015-08-18 14:23:04 +0100317
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900318-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100319
320endef
321
322
323# MAKE_S builds an assembly source file and generates the dependency file
324# $(1) = output directory
325# $(2) = assembly file (%.S)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500326# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100327define MAKE_S
328
329$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900330$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500331$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3)))
332$(eval BL_ASFLAGS := $($(call uppercase,$(3))_ASFLAGS))
Juan Castilloa3487d12015-08-18 14:23:04 +0100333
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500334$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100335 $$(ECHO) " AS $$<"
Masahiro Yamadaefcbfa82020-03-25 16:55:28 +0900336 $$(Q)$$(AS) $$(ASFLAGS) $(BL_CPPFLAGS) $(BL_ASFLAGS) $(MAKE_DEP) -c $$< -o $$@
Juan Castilloa3487d12015-08-18 14:23:04 +0100337
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900338-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100339
340endef
341
342
343# MAKE_LD generate the linker script using the C preprocessor
344# $(1) = output linker script
345# $(2) = input template
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500346# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100347define MAKE_LD
348
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900349$(eval DEP := $(1).d)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500350$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3)))
Juan Castilloa3487d12015-08-18 14:23:04 +0100351
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500352$(1): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100353 $$(ECHO) " PP $$<"
Masahiro Yamadaefcbfa82020-03-25 16:55:28 +0900354 $$(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 +0100355
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900356-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100357
358endef
359
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000360# MAKE_LIB_OBJS builds both C and assembly source files
Roberto Vargas21360f32018-05-08 10:27:10 +0100361# $(1) = output directory
362# $(2) = list of source files
363# $(3) = name of the library
364define MAKE_LIB_OBJS
365 $(eval C_OBJS := $(filter %.c,$(2)))
366 $(eval REMAIN := $(filter-out %.c,$(2)))
367 $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C_LIB,$(1),$(obj),$(3))))
368
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000369 $(eval S_OBJS := $(filter %.S,$(REMAIN)))
370 $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
371 $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S_LIB,$(1),$(obj),$(3))))
372
Roberto Vargas21360f32018-05-08 10:27:10 +0100373 $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
374endef
375
Juan Castilloa3487d12015-08-18 14:23:04 +0100376
377# MAKE_OBJS builds both C and assembly source files
378# $(1) = output directory
379# $(2) = list of source files (both C and assembly)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500380# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100381define MAKE_OBJS
382 $(eval C_OBJS := $(filter %.c,$(2)))
383 $(eval REMAIN := $(filter-out %.c,$(2)))
384 $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj),$(3))))
385
386 $(eval S_OBJS := $(filter %.S,$(REMAIN)))
387 $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
388 $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj),$(3))))
389
390 $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
391endef
392
393
394# NOTE: The line continuation '\' is required in the next define otherwise we
395# end up with a line-feed characer at the end of the last c filename.
Evan Lloyda71d2592015-12-02 18:56:06 +0000396# Also bear this issue in mind if extending the list of supported filetypes.
Juan Castilloa3487d12015-08-18 14:23:04 +0100397define SOURCES_TO_OBJS
398 $(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \
399 $(notdir $(patsubst %.S,%.o,$(filter %.S,$(1))))
400endef
401
Patrick Georgi8a10e342016-01-28 14:46:18 +0100402# Allow overriding the timestamp, for example for reproducible builds, or to
403# synchronize timestamps across multiple projects.
404# This must be set to a C string (including quotes where applicable).
405BUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__
Juan Castilloa3487d12015-08-18 14:23:04 +0100406
Roberto Vargas21360f32018-05-08 10:27:10 +0100407.PHONY: libraries
408
Roberto Vargase92111a2018-05-22 16:05:42 +0100409# MAKE_LIB_DIRS macro defines the target for the directory where
Roberto Vargas21360f32018-05-08 10:27:10 +0100410# libraries are created
Roberto Vargase92111a2018-05-22 16:05:42 +0100411define MAKE_LIB_DIRS
Roberto Vargas21360f32018-05-08 10:27:10 +0100412 $(eval LIB_DIR := ${BUILD_PLAT}/lib)
Roberto Vargase92111a2018-05-22 16:05:42 +0100413 $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib)
414 $(eval LIBWRAPPER_DIR := ${BUILD_PLAT}/libwrapper)
415 $(eval $(call MAKE_PREREQ_DIR,${LIB_DIR},${BUILD_PLAT}))
416 $(eval $(call MAKE_PREREQ_DIR,${ROMLIB_DIR},${BUILD_PLAT}))
417 $(eval $(call MAKE_PREREQ_DIR,${LIBWRAPPER_DIR},${BUILD_PLAT}))
Roberto Vargas21360f32018-05-08 10:27:10 +0100418endef
419
420# MAKE_LIB macro defines the targets and options to build each BL image.
421# Arguments:
422# $(1) = Library name
423define MAKE_LIB
424 $(eval BUILD_DIR := ${BUILD_PLAT}/lib$(1))
425 $(eval LIB_DIR := ${BUILD_PLAT}/lib)
Roberto Vargase92111a2018-05-22 16:05:42 +0100426 $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib)
Roberto Vargas21360f32018-05-08 10:27:10 +0100427 $(eval SOURCES := $(LIB$(call uppercase,$(1))_SRCS))
428 $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
429
430$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT}))
431$(eval $(call MAKE_LIB_OBJS,$(BUILD_DIR),$(SOURCES),$(1)))
432
433.PHONY : lib${1}_dirs
Roberto Vargase92111a2018-05-22 16:05:42 +0100434lib${1}_dirs: | ${BUILD_DIR} ${LIB_DIR} ${ROMLIB_DIR} ${LIBWRAPPER_DIR}
Roberto Vargas21360f32018-05-08 10:27:10 +0100435libraries: ${LIB_DIR}/lib$(1).a
Varun Wadekar4d034c52019-01-11 14:47:48 -0800436ifneq ($(findstring armlink,$(notdir $(LD))),)
437LDPATHS = --userlibpath=${LIB_DIR}
438LDLIBS += --library=$(1)
439else
Roberto Vargas21360f32018-05-08 10:27:10 +0100440LDPATHS = -L${LIB_DIR}
441LDLIBS += -l$(1)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800442endif
Roberto Vargas21360f32018-05-08 10:27:10 +0100443
Roberto Vargase92111a2018-05-22 16:05:42 +0100444ifeq ($(USE_ROMLIB),1)
Sathees Balyaf5ec5002018-10-18 19:14:21 +0100445LIBWRAPPER = -lwrappers
Roberto Vargase92111a2018-05-22 16:05:42 +0100446endif
447
Roberto Vargas21360f32018-05-08 10:27:10 +0100448all: ${LIB_DIR}/lib$(1).a
449
450${LIB_DIR}/lib$(1).a: $(OBJS)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100451 $$(ECHO) " AR $$@"
Roberto Vargas21360f32018-05-08 10:27:10 +0100452 $$(Q)$$(AR) cr $$@ $$?
453endef
454
Chris Kay68d28362023-01-16 16:53:45 +0000455# Generate the path to one or more preprocessed linker scripts given the paths
456# of their sources.
457#
458# Arguments:
459# $(1) = path to one or more linker script sources
460define linker_script_path
461 $(patsubst %.S,$(BUILD_DIR)/%,$(1))
462endef
463
Juan Castilloa3487d12015-08-18 14:23:04 +0100464# MAKE_BL macro defines the targets and options to build each BL image.
465# Arguments:
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500466# $(1) = BL stage
Juan Castillo8e04dec2016-01-05 11:55:36 +0000467# $(2) = FIP command line option (if empty, image will not be included in the FIP)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900468# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530469# $(4) = BL encryption flag (optional) (0, 1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100470define MAKE_BL
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500471 $(eval BUILD_DIR := ${BUILD_PLAT}/$(1))
472 $(eval BL_SOURCES := $($(call uppercase,$(1))_SOURCES))
Yatharth Kochar115352c2015-10-02 13:58:52 +0100473 $(eval SOURCES := $(BL_SOURCES) $(BL_COMMON_SOURCES) $(PLAT_BL_COMMON_SOURCES))
Juan Castilloa3487d12015-08-18 14:23:04 +0100474 $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
Juan Castilloa3487d12015-08-18 14:23:04 +0100475 $(eval MAPFILE := $(call IMG_MAPFILE,$(1)))
476 $(eval ELF := $(call IMG_ELF,$(1)))
477 $(eval DUMP := $(call IMG_DUMP,$(1)))
478 $(eval BIN := $(call IMG_BIN,$(1)))
Sumit Gargeec52442019-11-14 16:33:45 +0530479 $(eval ENC_BIN := $(call IMG_ENC_BIN,$(1)))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500480 $(eval BL_LIBS := $($(call uppercase,$(1))_LIBS))
Chris Kay68d28362023-01-16 16:53:45 +0000481
482 $(eval DEFAULT_LINKER_SCRIPT_SOURCE := $($(call uppercase,$(1))_DEFAULT_LINKER_SCRIPT_SOURCE))
483 $(eval DEFAULT_LINKER_SCRIPT := $(call linker_script_path,$(DEFAULT_LINKER_SCRIPT_SOURCE)))
484
Chris Kay0c0007b2023-01-16 18:57:26 +0000485 $(eval LINKER_SCRIPT_SOURCES := $($(call uppercase,$(1))_LINKER_SCRIPT_SOURCES))
486 $(eval LINKER_SCRIPTS := $(call linker_script_path,$(LINKER_SCRIPT_SOURCES)))
487
Evan Lloyd93d3b702015-12-03 12:19:30 +0000488 # We use sort only to get a list of unique object directory names.
489 # ordering is not relevant but sort removes duplicates.
Chris Kay0c0007b2023-01-16 18:57:26 +0000490 $(eval TEMP_OBJ_DIRS := $(sort $(dir ${OBJS} ${DEFAULT_LINKER_SCRIPT} ${LINKER_SCRIPTS})))
Evan Lloyd93d3b702015-12-03 12:19:30 +0000491 # The $(dir ) function leaves a trailing / on the directory names
Masahiro Yamada823482b2017-01-19 19:31:00 +0900492 # Rip off the / to match directory names with make rule targets.
493 $(eval OBJ_DIRS := $(patsubst %/,%,$(TEMP_OBJ_DIRS)))
Evan Lloyd93d3b702015-12-03 12:19:30 +0000494
495# Create generators for object directory structure
Juan Castilloa3487d12015-08-18 14:23:04 +0100496
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900497$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT}))
Evan Lloyd4c3055f2017-04-07 16:58:57 +0100498
Chris Kay68d28362023-01-16 16:53:45 +0000499$(eval $(foreach objd,${OBJ_DIRS},
500 $(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR})))
Juan Castilloa3487d12015-08-18 14:23:04 +0100501
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500502.PHONY : ${1}_dirs
Juan Castilloa3487d12015-08-18 14:23:04 +0100503
Evan Lloyd93d3b702015-12-03 12:19:30 +0000504# We use order-only prerequisites to ensure that directories are created,
505# but do not cause re-builds every time a file is written.
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500506${1}_dirs: | ${OBJ_DIRS}
Evan Lloyd93d3b702015-12-03 12:19:30 +0000507
508$(eval $(call MAKE_OBJS,$(BUILD_DIR),$(SOURCES),$(1)))
Chris Kay0c0007b2023-01-16 18:57:26 +0000509
510# Generate targets to preprocess each required linker script
511$(eval $(foreach source,$(DEFAULT_LINKER_SCRIPT_SOURCE) $(LINKER_SCRIPT_SOURCES), \
512 $(call MAKE_LD,$(call linker_script_path,$(source)),$(source),$(1))))
513
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500514$(eval BL_LDFLAGS := $($(call uppercase,$(1))_LDFLAGS))
Evan Lloyd93d3b702015-12-03 12:19:30 +0000515
Roberto Vargase92111a2018-05-22 16:05:42 +0100516ifeq ($(USE_ROMLIB),1)
517$(ELF): romlib.bin
518endif
519
developer09f3e982022-03-23 18:51:48 +0800520# MODULE_OBJS can be assigned by vendors with different compiled
521# object file path, and prebuilt object file path.
522$(eval OBJS += $(MODULE_OBJS))
523
Chris Kay0c0007b2023-01-16 18:57:26 +0000524$(ELF): $(OBJS) $(DEFAULT_LINKER_SCRIPT) $(LINKER_SCRIPTS) | $(1)_dirs libraries $(BL_LIBS)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100525 $$(ECHO) " LD $$@"
Evan Lloydcf6e9d42015-12-03 12:58:52 +0000526ifdef MAKE_BUILD_STRINGS
527 $(call MAKE_BUILD_STRINGS, $(BUILD_DIR)/build_message.o)
528else
Patrick Georgi8a10e342016-01-28 14:46:18 +0100529 @echo 'const char build_message[] = "Built : "$(BUILD_MESSAGE_TIMESTAMP); \
laurenw-arme954f652022-07-12 10:12:05 -0500530 const char version_string[] = "${VERSION_STRING}"; \
531 const char version[] = "${VERSION}";' | \
Masahiro Yamada49071ae2016-12-22 12:39:55 +0900532 $$(CC) $$(TF_CFLAGS) $$(CFLAGS) -xc -c - -o $(BUILD_DIR)/build_message.o
Evan Lloydcf6e9d42015-12-03 12:58:52 +0000533endif
Varun Wadekar4d034c52019-01-11 14:47:48 -0800534ifneq ($(findstring armlink,$(notdir $(LD))),)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500535 $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) --entry=${1}_entrypoint \
Varun Wadekar4d034c52019-01-11 14:47:48 -0800536 --predefine="-D__LINKER__=$(__LINKER__)" \
537 --predefine="-DTF_CFLAGS=$(TF_CFLAGS)" \
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500538 --map --list="$(MAPFILE)" --scatter=${PLAT_DIR}/scat/${1}.scat \
Varun Wadekar4d034c52019-01-11 14:47:48 -0800539 $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) \
540 $(BUILD_DIR)/build_message.o $(OBJS)
zelalem-aweked5f45272019-11-12 16:20:17 -0600541else ifneq ($(findstring gcc,$(notdir $(LD))),)
542 $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) -Wl,-Map=$(MAPFILE) \
Chris Kay0c0007b2023-01-16 18:57:26 +0000543 $(addprefix -Wl$(comma)--script$(comma),$(LINKER_SCRIPTS)) -Wl,--script,$(DEFAULT_LINKER_SCRIPT) \
544 $(BUILD_DIR)/build_message.o \
zelalem-aweked5f45272019-11-12 16:20:17 -0600545 $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800546else
Masahiro Yamadae2e8e102020-01-17 13:44:20 +0900547 $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) -Map=$(MAPFILE) \
Chris Kay0c0007b2023-01-16 18:57:26 +0000548 $(addprefix -T ,$(LINKER_SCRIPTS)) --script $(DEFAULT_LINKER_SCRIPT) \
549 $(BUILD_DIR)/build_message.o \
Sathees Balyaf5ec5002018-10-18 19:14:21 +0100550 $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800551endif
Christoph Müllner4f088e42019-04-24 09:45:30 +0200552ifeq ($(DISABLE_BIN_GENERATION),1)
553 @${ECHO_BLANK_LINE}
554 @echo "Built $$@ successfully"
555 @${ECHO_BLANK_LINE}
556endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100557
558$(DUMP): $(ELF)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100559 $${ECHO} " OD $$@"
Juan Castilloa3487d12015-08-18 14:23:04 +0100560 $${Q}$${OD} -dx $$< > $$@
561
562$(BIN): $(ELF)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100563 $${ECHO} " BIN $$@"
Juan Castilloa3487d12015-08-18 14:23:04 +0100564 $$(Q)$$(OC) -O binary $$< $$@
Evan Lloyd1c5f3602017-04-11 16:52:00 +0100565 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +0100566 @echo "Built $$@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +0100567 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +0100568
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500569.PHONY: $(1)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200570ifeq ($(DISABLE_BIN_GENERATION),1)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500571$(1): $(ELF) $(DUMP)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200572else
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500573$(1): $(BIN) $(DUMP)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200574endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100575
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500576all: $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100577
Sumit Gargeec52442019-11-14 16:33:45 +0530578ifeq ($(4),1)
579$(call ENCRYPT_FW,$(BIN),$(ENC_BIN))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500580$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(ENC_BIN),$(3), \
Sumit Gargeec52442019-11-14 16:33:45 +0530581 $(ENC_BIN)))
582else
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500583$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(BIN),$(3)))
Sumit Gargeec52442019-11-14 16:33:45 +0530584endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100585
586endef
587
Soby Mathewab4181d2017-12-14 17:44:56 +0000588# Convert device tree source file names to matching blobs
589# $(1) = input dts
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000590define SOURCES_TO_DTBS
591 $(notdir $(patsubst %.dts,%.dtb,$(filter %.dts,$(1))))
592endef
593
Soby Mathewab4181d2017-12-14 17:44:56 +0000594# MAKE_FDT_DIRS macro creates the prerequisite directories that host the
595# FDT binaries
596# $(1) = output directory
597# $(2) = input dts
598define MAKE_FDT_DIRS
599 $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000600 $(eval TEMP_DTB_DIRS := $(sort $(dir ${DTBS})))
601 # The $(dir ) function leaves a trailing / on the directory names
602 # Rip off the / to match directory names with make rule targets.
603 $(eval DTB_DIRS := $(patsubst %/,%,$(TEMP_DTB_DIRS)))
604
605$(eval $(foreach objd,${DTB_DIRS},$(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR})))
606
607fdt_dirs: ${DTB_DIRS}
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000608endef
609
Soby Mathewab4181d2017-12-14 17:44:56 +0000610# MAKE_DTB generate the Flattened device tree binary
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000611# $(1) = output directory
612# $(2) = input dts
613define MAKE_DTB
614
Yann Gautierf3831802018-09-04 10:44:00 +0200615# List of DTB file(s) to generate, based on DTS file basename list
Soby Mathewab4181d2017-12-14 17:44:56 +0000616$(eval DOBJ := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Yann Gautierf3831802018-09-04 10:44:00 +0200617# List of the pre-compiled DTS file(s)
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200618$(eval DPRE := $(addprefix $(1)/,$(patsubst %.dts,%.pre.dts,$(notdir $(2)))))
Yann Gautierf3831802018-09-04 10:44:00 +0200619# Dependencies of the pre-compiled DTS file(s) on its source and included files
620$(eval DTSDEP := $(patsubst %.dtb,%.o.d,$(DOBJ)))
621# Dependencies of the DT compilation on its pre-compiled DTS
622$(eval DTBDEP := $(patsubst %.dtb,%.d,$(DOBJ)))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000623
Stephen Warrenc4d562a2018-02-21 17:13:50 -0700624$(DOBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | fdt_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100625 $${ECHO} " CPP $$<"
Yann Gautierf3831802018-09-04 10:44:00 +0200626 $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Manish Pandeye6c5a232019-01-21 14:50:10 +0000627 $$(Q)$$(PP) $$(DTC_CPPFLAGS) -MT $(DTBS) -MMD -MF $(DTSDEP) -o $(DPRE) $$<
Andre Przywaracf2bb082018-09-27 10:56:05 +0100628 $${ECHO} " DTC $$<"
Balint Dobszay5ce2c322020-01-10 17:16:27 +0100629 $$(Q)$$(DTC) $$(DTC_FLAGS) -d $(DTBDEP) -o $$@ $(DPRE)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000630
Yann Gautierf3831802018-09-04 10:44:00 +0200631-include $(DTBDEP)
632-include $(DTSDEP)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000633
634endef
635
636# MAKE_DTBS builds flattened device tree sources
637# $(1) = output directory
638# $(2) = list of flattened device tree source files
639define MAKE_DTBS
640 $(eval DOBJS := $(filter %.dts,$(2)))
641 $(eval REMAIN := $(filter-out %.dts,$(2)))
Soby Mathewab4181d2017-12-14 17:44:56 +0000642 $(and $(REMAIN),$(error FDT_SOURCES contain non-DTS files: $(REMAIN)))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000643 $(eval $(foreach obj,$(DOBJS),$(call MAKE_DTB,$(1),$(obj))))
644
Soby Mathewab4181d2017-12-14 17:44:56 +0000645 $(eval $(call MAKE_FDT_DIRS,$(1),$(2)))
646
647dtbs: $(DTBS)
648all: dtbs
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000649endef