blob: 2d2f14116a867eca00218d4bc9439317d69b588d [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# 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
Yann Gautierdbf0a162023-04-24 13:38:12 +020076 $(if $($(1)),,$(error $(1) must not be empty))
Masahiro Yamada1ab9e922017-05-23 23:45:01 +090077 $(if $(filter-out 0 1,$($1)),$(error $1 must be boolean))
Juan Castilloa3487d12015-08-18 14:23:04 +010078endef
79
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -050080# Convenience function for verifying options have boolean values
81# $(eval $(call assert_booleans,FOO BOO)) will assert FOO and BOO for 0 or 1 values
82define assert_booleans
83 $(foreach bool,$1,$(eval $(call assert_boolean,$(bool))))
84endef
85
Jeenu Viswambharanfca76802017-01-16 16:52:35 +0000860-9 := 0 1 2 3 4 5 6 7 8 9
87
88# Function to verify that a given option $(1) contains a numeric value
89define assert_numeric
90$(if $($(1)),,$(error $(1) must not be empty))
91$(eval __numeric := $($(1)))
92$(foreach d,$(0-9),$(eval __numeric := $(subst $(d),,$(__numeric))))
93$(if $(__numeric),$(error $(1) must be numeric))
94endef
95
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -050096# Convenience function for verifying options have numeric values
97# $(eval $(call assert_numerics,FOO BOO)) will assert FOO and BOO contain numeric values
98define assert_numerics
99 $(foreach num,$1,$(eval $(call assert_numeric,$(num))))
100endef
101
Marco Felschdf646b52022-11-24 11:02:05 +0100102# Convenience function to check for a given linker option. An call to
103# $(call ld_option, --no-XYZ) will return --no-XYZ if supported by the linker
Chris Kayb0fe96f2024-01-16 11:53:35 +0000104ld_option = $(shell $(LD) $(1) -Wl,--version >/dev/null 2>&1 || $(LD) $(1) -v >/dev/null 2>&1 && echo $(1))
Marco Felschdf646b52022-11-24 11:02:05 +0100105
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500106# Convenience function to check for a given compiler option. A call to
107# $(call cc_option, --no-XYZ) will return --no-XYZ if supported by the compiler
108define cc_option
109 $(shell if $(CC) $(1) -c -x c /dev/null -o /dev/null >/dev/null 2>&1; then echo $(1); fi )
110endef
111
Vijayenthiran Subramaniam3414e3a2020-02-08 21:27:30 +0530112# CREATE_SEQ is a recursive function to create sequence of numbers from 1 to
113# $(2) and assign the sequence to $(1)
114define CREATE_SEQ
115$(if $(word $(2), $($(1))),\
116 $(eval $(1) += $(words $($(1))))\
117 $(eval $(1) := $(filter-out 0,$($(1)))),\
118 $(eval $(1) += $(words $($(1))))\
119 $(call CREATE_SEQ,$(1),$(2))\
120)
121endef
122
Juan Castilloa3487d12015-08-18 14:23:04 +0100123# IMG_MAPFILE defines the output file describing the memory map corresponding
124# to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500125# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100126define IMG_MAPFILE
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500127 ${BUILD_DIR}/$(1).map
Juan Castilloa3487d12015-08-18 14:23:04 +0100128endef
129
130# IMG_ELF defines the elf file corresponding to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500131# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100132define IMG_ELF
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500133 ${BUILD_DIR}/$(1).elf
Juan Castilloa3487d12015-08-18 14:23:04 +0100134endef
135
136# IMG_DUMP defines the symbols dump file corresponding to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500137# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100138define IMG_DUMP
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500139 ${BUILD_DIR}/$(1).dump
Juan Castilloa3487d12015-08-18 14:23:04 +0100140endef
141
142# IMG_BIN defines the default image file corresponding to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500143# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100144define IMG_BIN
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500145 ${BUILD_PLAT}/$(1).bin
Juan Castilloa3487d12015-08-18 14:23:04 +0100146endef
147
Sumit Gargeec52442019-11-14 16:33:45 +0530148# IMG_ENC_BIN defines the default encrypted image file corresponding to a
149# BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500150# $(1) = BL stage
Sumit Gargeec52442019-11-14 16:33:45 +0530151define IMG_ENC_BIN
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500152 ${BUILD_PLAT}/$(1)_enc.bin
Sumit Gargeec52442019-11-14 16:33:45 +0530153endef
154
155# ENCRYPT_FW invokes enctool to encrypt firmware binary
156# $(1) = input firmware binary
157# $(2) = output encrypted firmware binary
158define ENCRYPT_FW
159$(2): $(1) enctool
160 $$(ECHO) " ENC $$<"
161 $$(Q)$$(ENCTOOL) $$(ENC_ARGS) -i $$< -o $$@
162endef
163
Masahiro Yamada6c2b4592018-01-26 11:42:01 +0900164# TOOL_ADD_PAYLOAD appends the command line arguments required by fiptool to
165# package a new payload and/or by cert_create to generate certificate.
166# Optionally, it adds the dependency on this payload
Juan Castilloa3487d12015-08-18 14:23:04 +0100167# $(1) = payload filename (i.e. bl31.bin)
Masahiro Yamadac85deee2017-12-23 23:56:18 +0900168# $(2) = command line option for the specified payload (i.e. --soc-fw)
Masahiro Yamada5c3ae332018-01-26 11:42:01 +0900169# $(3) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900170# $(4) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530171# $(5) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin)
Masahiro Yamada6c2b4592018-01-26 11:42:01 +0900172define TOOL_ADD_PAYLOAD
Sumit Gargeec52442019-11-14 16:33:45 +0530173ifneq ($(5),)
174 $(4)FIP_ARGS += $(2) $(5)
175 $(if $(3),$(4)CRT_DEPS += $(1))
176else
Masahiro Yamada714a6922018-01-26 11:42:01 +0900177 $(4)FIP_ARGS += $(2) $(1)
Sumit Gargeec52442019-11-14 16:33:45 +0530178 $(if $(3),$(4)CRT_DEPS += $(3))
179endif
Masahiro Yamada714a6922018-01-26 11:42:01 +0900180 $(if $(3),$(4)FIP_DEPS += $(3))
Masahiro Yamadaec154ad2018-01-26 11:42:01 +0900181 $(4)CRT_ARGS += $(2) $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100182endef
183
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900184# TOOL_ADD_IMG_PAYLOAD works like TOOL_ADD_PAYLOAD, but applies image filters
185# before passing them to host tools if BL*_PRE_TOOL_FILTER is defined.
186# $(1) = image_type (scp_bl2, bl33, etc.)
187# $(2) = payload filepath (ex. build/fvp/release/bl31.bin)
188# $(3) = command line option for the specified payload (ex. --soc-fw)
189# $(4) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin)
190# $(5) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530191# $(6) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin)
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900192
193define TOOL_ADD_IMG_PAYLOAD
194
195$(eval PRE_TOOL_FILTER := $($(call uppercase,$(1))_PRE_TOOL_FILTER))
196
197ifneq ($(PRE_TOOL_FILTER),)
198
199$(eval PROCESSED_PATH := $(BUILD_PLAT)/$(1).bin$($(PRE_TOOL_FILTER)_SUFFIX))
200
201$(call $(PRE_TOOL_FILTER)_RULE,$(PROCESSED_PATH),$(2))
202
203$(PROCESSED_PATH): $(4)
204
Sumit Gargeec52442019-11-14 16:33:45 +0530205$(call TOOL_ADD_PAYLOAD,$(PROCESSED_PATH),$(3),$(PROCESSED_PATH),$(5),$(6))
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900206
207else
Sumit Gargeec52442019-11-14 16:33:45 +0530208$(call TOOL_ADD_PAYLOAD,$(2),$(3),$(4),$(5),$(6))
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900209endif
210endef
211
Yatharth Kochard1a93432015-10-12 12:33:47 +0100212# CERT_ADD_CMD_OPT adds a new command line option to the cert_create invocation
Juan Castilloa3487d12015-08-18 14:23:04 +0100213# $(1) = parameter filename
214# $(2) = cert_create command line option for the specified parameter
Masahiro Yamada5ebfda32018-01-26 11:42:01 +0900215# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Juan Castilloa3487d12015-08-18 14:23:04 +0100216define CERT_ADD_CMD_OPT
Masahiro Yamada5ebfda32018-01-26 11:42:01 +0900217 $(3)CRT_ARGS += $(2) $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100218endef
219
Masahiro Yamada4d156802018-01-26 11:42:01 +0900220# TOOL_ADD_IMG allows the platform to specify an external image to be packed
221# in the FIP and/or for which certificate is generated. It also adds a
222# dependency on the image file, aborting the build if the file does not exist.
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900223# $(1) = image_type (scp_bl2, bl33, etc.)
Masahiro Yamadac85deee2017-12-23 23:56:18 +0900224# $(2) = command line option for fiptool (--scp-fw, --nt-fw, etc)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900225# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530226# $(4) = Image encryption flag (optional) (0, 1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100227# Example:
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900228# $(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Masahiro Yamada4d156802018-01-26 11:42:01 +0900229define TOOL_ADD_IMG
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900230 # Build option to specify the image filename (SCP_BL2, BL33, etc)
231 # This is the uppercase form of the first parameter
232 $(eval _V := $(call uppercase,$(1)))
233
Pali Rohára5416ab2020-11-24 16:53:04 +0100234 # $(check_$(1)_cmd) variable is executed in the check_$(1) target and also
235 # is put into the ${CHECK_$(3)FIP_CMD} variable which is executed by the
236 # target ${BUILD_PLAT}/${$(3)FIP_NAME}.
237 $(eval check_$(1)_cmd := \
238 $(if $(value $(_V)),,$$$$(error "Platform '${PLAT}' requires $(_V). Please set $(_V) to point to the right file")) \
239 $(if $(wildcard $(value $(_V))),,$$$$(error '$(_V)=$(value $(_V))' was specified, but '$(value $(_V))' does not exist)) \
240 )
241
Masahiro Yamada714a6922018-01-26 11:42:01 +0900242 $(3)CRT_DEPS += check_$(1)
Pali Rohára5416ab2020-11-24 16:53:04 +0100243 CHECK_$(3)FIP_CMD += $$(check_$(1)_cmd)
Sumit Gargeec52442019-11-14 16:33:45 +0530244ifeq ($(4),1)
245 $(eval ENC_BIN := ${BUILD_PLAT}/$(1)_enc.bin)
246 $(call ENCRYPT_FW,$(value $(_V)),$(ENC_BIN))
247 $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(ENC_BIN),$(3), \
248 $(ENC_BIN))
249else
Pali Rohára5416ab2020-11-24 16:53:04 +0100250 $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(if $(wildcard $(value $(_V))),$(value $(_V)),FORCE),$(3))
Sumit Gargeec52442019-11-14 16:33:45 +0530251endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100252
Masahiro Yamada9dff1562017-12-24 13:08:00 +0900253.PHONY: check_$(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100254check_$(1):
Pali Rohára5416ab2020-11-24 16:53:04 +0100255 $(check_$(1)_cmd)
Juan Castilloa3487d12015-08-18 14:23:04 +0100256endef
257
Juan Pablo Conde3539c742022-10-25 19:41:02 -0400258# SELECT_OPENSSL_API_VERSION selects the OpenSSL API version to be used to
259# build the host tools by checking the version of OpenSSL located under
260# the path defined by the OPENSSL_DIR variable. It receives no parameters.
261define SELECT_OPENSSL_API_VERSION
262 # Set default value for USING_OPENSSL3 macro to 0
263 $(eval USING_OPENSSL3 = 0)
264 # Obtain the OpenSSL version for the build located under OPENSSL_DIR
265 $(eval OPENSSL_INFO := $(shell LD_LIBRARY_PATH=${OPENSSL_DIR}:${OPENSSL_DIR}/lib ${OPENSSL_BIN_PATH}/openssl version))
266 $(eval OPENSSL_CURRENT_VER = $(word 2, ${OPENSSL_INFO}))
267 $(eval OPENSSL_CURRENT_VER_MAJOR = $(firstword $(subst ., ,$(OPENSSL_CURRENT_VER))))
268 # If OpenSSL version is 3.x, then set USING_OPENSSL3 flag to 1
269 $(if $(filter 3,$(OPENSSL_CURRENT_VER_MAJOR)), $(eval USING_OPENSSL3 = 1))
270endef
271
Juan Castilloa3487d12015-08-18 14:23:04 +0100272################################################################################
Masahiro Yamadaeff36a92018-01-26 11:42:01 +0900273# Generic image processing filters
274################################################################################
275
276# GZIP
277define GZIP_RULE
278$(1): $(2)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100279 $(ECHO) " GZIP $$@"
Masahiro Yamadaeff36a92018-01-26 11:42:01 +0900280 $(Q)gzip -n -f -9 $$< --stdout > $$@
281endef
282
283GZIP_SUFFIX := .gz
284
285################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100286# Auxiliary macros to build TF images from sources
287################################################################################
288
Masahiro Yamadae487bb62016-12-22 15:23:05 +0900289MAKE_DEP = -Wp,-MD,$(DEP) -MT $$@ -MP
Juan Castilloa3487d12015-08-18 14:23:04 +0100290
Roberto Vargas21360f32018-05-08 10:27:10 +0100291
292# MAKE_C_LIB builds a C source file and generates the dependency file
293# $(1) = output directory
294# $(2) = source file (%.c)
295# $(3) = library name
296define MAKE_C_LIB
297$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
298$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Govindraj Raja98375d42023-01-27 10:08:54 +0000299$(eval LIB := $(call uppercase, $(notdir $(1))))
Roberto Vargas21360f32018-05-08 10:27:10 +0100300
301$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100302 $$(ECHO) " CC $$<"
Govindraj Raja98375d42023-01-27 10:08:54 +0000303 $$(Q)$$(CC) $$($(LIB)_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(MAKE_DEP) -c $$< -o $$@
Roberto Vargas21360f32018-05-08 10:27:10 +0100304
305-include $(DEP)
306
307endef
308
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000309# MAKE_S_LIB builds an assembly source file and generates the dependency file
310# $(1) = output directory
311# $(2) = source file (%.S)
312# $(3) = library name
313define MAKE_S_LIB
314$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
315$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
316
317$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs
318 $$(ECHO) " AS $$<"
319 $$(Q)$$(AS) $$(ASFLAGS) $(MAKE_DEP) -c $$< -o $$@
320
321-include $(DEP)
322
323endef
324
Roberto Vargas21360f32018-05-08 10:27:10 +0100325
Juan Castilloa3487d12015-08-18 14:23:04 +0100326# MAKE_C builds a C source file and generates the dependency file
327# $(1) = output directory
328# $(2) = source file (%.c)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500329# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100330define MAKE_C
331
332$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900333$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Chris Kay2a8e4242023-03-22 15:42:32 +0000334
Chris Kayf5818252023-05-03 15:31:42 +0200335$(eval BL_DEFINES := IMAGE_$(call uppercase,$(3)) $($(call uppercase,$(3))_DEFINES) $(PLAT_BL_COMMON_DEFINES))
336$(eval BL_INCLUDE_DIRS := $($(call uppercase,$(3))_INCLUDE_DIRS) $(PLAT_BL_COMMON_INCLUDE_DIRS))
337$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) $(addprefix -D,$(BL_DEFINES)) $(addprefix -I,$(BL_INCLUDE_DIRS)) $(PLAT_BL_COMMON_CPPFLAGS))
338$(eval BL_CFLAGS := $($(call uppercase,$(3))_CFLAGS) $(PLAT_BL_COMMON_CFLAGS))
Juan Castilloa3487d12015-08-18 14:23:04 +0100339
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500340$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100341 $$(ECHO) " CC $$<"
Masahiro Yamadaefcbfa82020-03-25 16:55:28 +0900342 $$(Q)$$(CC) $$(LTO_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(BL_CPPFLAGS) $(BL_CFLAGS) $(MAKE_DEP) -c $$< -o $$@
Juan Castilloa3487d12015-08-18 14:23:04 +0100343
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900344-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100345
346endef
347
348
349# MAKE_S builds an assembly source file and generates the dependency file
350# $(1) = output directory
351# $(2) = assembly file (%.S)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500352# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100353define MAKE_S
354
355$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900356$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Chris Kay2a8e4242023-03-22 15:42:32 +0000357
Chris Kayf5818252023-05-03 15:31:42 +0200358$(eval BL_DEFINES := IMAGE_$(call uppercase,$(3)) $($(call uppercase,$(3))_DEFINES) $(PLAT_BL_COMMON_DEFINES))
359$(eval BL_INCLUDE_DIRS := $($(call uppercase,$(3))_INCLUDE_DIRS) $(PLAT_BL_COMMON_INCLUDE_DIRS))
360$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) $(addprefix -D,$(BL_DEFINES)) $(addprefix -I,$(BL_INCLUDE_DIRS)) $(PLAT_BL_COMMON_CPPFLAGS))
361$(eval BL_ASFLAGS := $($(call uppercase,$(3))_ASFLAGS) $(PLAT_BL_COMMON_ASFLAGS))
Juan Castilloa3487d12015-08-18 14:23:04 +0100362
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500363$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100364 $$(ECHO) " AS $$<"
Masahiro Yamadaefcbfa82020-03-25 16:55:28 +0900365 $$(Q)$$(AS) $$(ASFLAGS) $(BL_CPPFLAGS) $(BL_ASFLAGS) $(MAKE_DEP) -c $$< -o $$@
Juan Castilloa3487d12015-08-18 14:23:04 +0100366
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900367-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100368
369endef
370
371
372# MAKE_LD generate the linker script using the C preprocessor
373# $(1) = output linker script
374# $(2) = input template
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500375# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100376define MAKE_LD
377
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900378$(eval DEP := $(1).d)
Chris Kay2a8e4242023-03-22 15:42:32 +0000379
Chris Kayf5818252023-05-03 15:31:42 +0200380$(eval BL_DEFINES := IMAGE_$(call uppercase,$(3)) $($(call uppercase,$(3))_DEFINES) $(PLAT_BL_COMMON_DEFINES))
381$(eval BL_INCLUDE_DIRS := $($(call uppercase,$(3))_INCLUDE_DIRS) $(PLAT_BL_COMMON_INCLUDE_DIRS))
382$(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 +0100383
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500384$(1): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100385 $$(ECHO) " PP $$<"
Masahiro Yamadaefcbfa82020-03-25 16:55:28 +0900386 $$(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 +0100387
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900388-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100389
390endef
391
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000392# MAKE_LIB_OBJS builds both C and assembly source files
Roberto Vargas21360f32018-05-08 10:27:10 +0100393# $(1) = output directory
394# $(2) = list of source files
395# $(3) = name of the library
396define MAKE_LIB_OBJS
397 $(eval C_OBJS := $(filter %.c,$(2)))
398 $(eval REMAIN := $(filter-out %.c,$(2)))
399 $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C_LIB,$(1),$(obj),$(3))))
400
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000401 $(eval S_OBJS := $(filter %.S,$(REMAIN)))
402 $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
403 $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S_LIB,$(1),$(obj),$(3))))
404
Roberto Vargas21360f32018-05-08 10:27:10 +0100405 $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
406endef
407
Juan Castilloa3487d12015-08-18 14:23:04 +0100408
409# MAKE_OBJS builds both C and assembly source files
410# $(1) = output directory
411# $(2) = list of source files (both C and assembly)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500412# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100413define MAKE_OBJS
414 $(eval C_OBJS := $(filter %.c,$(2)))
415 $(eval REMAIN := $(filter-out %.c,$(2)))
416 $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj),$(3))))
417
418 $(eval S_OBJS := $(filter %.S,$(REMAIN)))
419 $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
420 $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj),$(3))))
421
422 $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
423endef
424
425
426# NOTE: The line continuation '\' is required in the next define otherwise we
427# end up with a line-feed characer at the end of the last c filename.
Evan Lloyda71d2592015-12-02 18:56:06 +0000428# Also bear this issue in mind if extending the list of supported filetypes.
Juan Castilloa3487d12015-08-18 14:23:04 +0100429define SOURCES_TO_OBJS
430 $(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \
431 $(notdir $(patsubst %.S,%.o,$(filter %.S,$(1))))
432endef
433
Patrick Georgi8a10e342016-01-28 14:46:18 +0100434# Allow overriding the timestamp, for example for reproducible builds, or to
435# synchronize timestamps across multiple projects.
436# This must be set to a C string (including quotes where applicable).
437BUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__
Juan Castilloa3487d12015-08-18 14:23:04 +0100438
Roberto Vargas21360f32018-05-08 10:27:10 +0100439.PHONY: libraries
440
Roberto Vargase92111a2018-05-22 16:05:42 +0100441# MAKE_LIB_DIRS macro defines the target for the directory where
Roberto Vargas21360f32018-05-08 10:27:10 +0100442# libraries are created
Roberto Vargase92111a2018-05-22 16:05:42 +0100443define MAKE_LIB_DIRS
Roberto Vargas21360f32018-05-08 10:27:10 +0100444 $(eval LIB_DIR := ${BUILD_PLAT}/lib)
Roberto Vargase92111a2018-05-22 16:05:42 +0100445 $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib)
446 $(eval LIBWRAPPER_DIR := ${BUILD_PLAT}/libwrapper)
447 $(eval $(call MAKE_PREREQ_DIR,${LIB_DIR},${BUILD_PLAT}))
448 $(eval $(call MAKE_PREREQ_DIR,${ROMLIB_DIR},${BUILD_PLAT}))
449 $(eval $(call MAKE_PREREQ_DIR,${LIBWRAPPER_DIR},${BUILD_PLAT}))
Roberto Vargas21360f32018-05-08 10:27:10 +0100450endef
451
452# MAKE_LIB macro defines the targets and options to build each BL image.
453# Arguments:
454# $(1) = Library name
455define MAKE_LIB
456 $(eval BUILD_DIR := ${BUILD_PLAT}/lib$(1))
457 $(eval LIB_DIR := ${BUILD_PLAT}/lib)
Roberto Vargase92111a2018-05-22 16:05:42 +0100458 $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib)
Roberto Vargas21360f32018-05-08 10:27:10 +0100459 $(eval SOURCES := $(LIB$(call uppercase,$(1))_SRCS))
460 $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
461
462$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT}))
463$(eval $(call MAKE_LIB_OBJS,$(BUILD_DIR),$(SOURCES),$(1)))
464
465.PHONY : lib${1}_dirs
Roberto Vargase92111a2018-05-22 16:05:42 +0100466lib${1}_dirs: | ${BUILD_DIR} ${LIB_DIR} ${ROMLIB_DIR} ${LIBWRAPPER_DIR}
Roberto Vargas21360f32018-05-08 10:27:10 +0100467libraries: ${LIB_DIR}/lib$(1).a
Varun Wadekar4d034c52019-01-11 14:47:48 -0800468ifneq ($(findstring armlink,$(notdir $(LD))),)
469LDPATHS = --userlibpath=${LIB_DIR}
470LDLIBS += --library=$(1)
471else
Roberto Vargas21360f32018-05-08 10:27:10 +0100472LDPATHS = -L${LIB_DIR}
473LDLIBS += -l$(1)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800474endif
Roberto Vargas21360f32018-05-08 10:27:10 +0100475
Roberto Vargase92111a2018-05-22 16:05:42 +0100476ifeq ($(USE_ROMLIB),1)
Sathees Balyaf5ec5002018-10-18 19:14:21 +0100477LIBWRAPPER = -lwrappers
Roberto Vargase92111a2018-05-22 16:05:42 +0100478endif
479
Roberto Vargas21360f32018-05-08 10:27:10 +0100480all: ${LIB_DIR}/lib$(1).a
481
482${LIB_DIR}/lib$(1).a: $(OBJS)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100483 $$(ECHO) " AR $$@"
Roberto Vargas21360f32018-05-08 10:27:10 +0100484 $$(Q)$$(AR) cr $$@ $$?
485endef
486
Chris Kay68d28362023-01-16 16:53:45 +0000487# Generate the path to one or more preprocessed linker scripts given the paths
488# of their sources.
489#
490# Arguments:
491# $(1) = path to one or more linker script sources
492define linker_script_path
493 $(patsubst %.S,$(BUILD_DIR)/%,$(1))
494endef
495
Juan Castilloa3487d12015-08-18 14:23:04 +0100496# MAKE_BL macro defines the targets and options to build each BL image.
497# Arguments:
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500498# $(1) = BL stage
Juan Castillo8e04dec2016-01-05 11:55:36 +0000499# $(2) = FIP command line option (if empty, image will not be included in the FIP)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900500# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530501# $(4) = BL encryption flag (optional) (0, 1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100502define MAKE_BL
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500503 $(eval BUILD_DIR := ${BUILD_PLAT}/$(1))
504 $(eval BL_SOURCES := $($(call uppercase,$(1))_SOURCES))
Chris Kaya7492ee2023-05-05 12:33:23 +0200505 $(eval SOURCES := $(sort $(BL_SOURCES) $(BL_COMMON_SOURCES) $(PLAT_BL_COMMON_SOURCES)))
Juan Castilloa3487d12015-08-18 14:23:04 +0100506 $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
Juan Castilloa3487d12015-08-18 14:23:04 +0100507 $(eval MAPFILE := $(call IMG_MAPFILE,$(1)))
508 $(eval ELF := $(call IMG_ELF,$(1)))
509 $(eval DUMP := $(call IMG_DUMP,$(1)))
510 $(eval BIN := $(call IMG_BIN,$(1)))
Sumit Gargeec52442019-11-14 16:33:45 +0530511 $(eval ENC_BIN := $(call IMG_ENC_BIN,$(1)))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500512 $(eval BL_LIBS := $($(call uppercase,$(1))_LIBS))
Chris Kay68d28362023-01-16 16:53:45 +0000513
514 $(eval DEFAULT_LINKER_SCRIPT_SOURCE := $($(call uppercase,$(1))_DEFAULT_LINKER_SCRIPT_SOURCE))
515 $(eval DEFAULT_LINKER_SCRIPT := $(call linker_script_path,$(DEFAULT_LINKER_SCRIPT_SOURCE)))
516
Chris Kay0c0007b2023-01-16 18:57:26 +0000517 $(eval LINKER_SCRIPT_SOURCES := $($(call uppercase,$(1))_LINKER_SCRIPT_SOURCES))
518 $(eval LINKER_SCRIPTS := $(call linker_script_path,$(LINKER_SCRIPT_SOURCES)))
519
Evan Lloyd93d3b702015-12-03 12:19:30 +0000520 # We use sort only to get a list of unique object directory names.
521 # ordering is not relevant but sort removes duplicates.
Chris Kay0c0007b2023-01-16 18:57:26 +0000522 $(eval TEMP_OBJ_DIRS := $(sort $(dir ${OBJS} ${DEFAULT_LINKER_SCRIPT} ${LINKER_SCRIPTS})))
Evan Lloyd93d3b702015-12-03 12:19:30 +0000523 # The $(dir ) function leaves a trailing / on the directory names
Masahiro Yamada823482b2017-01-19 19:31:00 +0900524 # Rip off the / to match directory names with make rule targets.
525 $(eval OBJ_DIRS := $(patsubst %/,%,$(TEMP_OBJ_DIRS)))
Evan Lloyd93d3b702015-12-03 12:19:30 +0000526
527# Create generators for object directory structure
Juan Castilloa3487d12015-08-18 14:23:04 +0100528
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900529$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT}))
Evan Lloyd4c3055f2017-04-07 16:58:57 +0100530
Chris Kay68d28362023-01-16 16:53:45 +0000531$(eval $(foreach objd,${OBJ_DIRS},
532 $(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR})))
Juan Castilloa3487d12015-08-18 14:23:04 +0100533
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500534.PHONY : ${1}_dirs
Juan Castilloa3487d12015-08-18 14:23:04 +0100535
Evan Lloyd93d3b702015-12-03 12:19:30 +0000536# We use order-only prerequisites to ensure that directories are created,
537# but do not cause re-builds every time a file is written.
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500538${1}_dirs: | ${OBJ_DIRS}
Evan Lloyd93d3b702015-12-03 12:19:30 +0000539
540$(eval $(call MAKE_OBJS,$(BUILD_DIR),$(SOURCES),$(1)))
Chris Kay0c0007b2023-01-16 18:57:26 +0000541
542# Generate targets to preprocess each required linker script
543$(eval $(foreach source,$(DEFAULT_LINKER_SCRIPT_SOURCE) $(LINKER_SCRIPT_SOURCES), \
544 $(call MAKE_LD,$(call linker_script_path,$(source)),$(source),$(1))))
545
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500546$(eval BL_LDFLAGS := $($(call uppercase,$(1))_LDFLAGS))
Evan Lloyd93d3b702015-12-03 12:19:30 +0000547
Roberto Vargase92111a2018-05-22 16:05:42 +0100548ifeq ($(USE_ROMLIB),1)
549$(ELF): romlib.bin
550endif
551
developer09f3e982022-03-23 18:51:48 +0800552# MODULE_OBJS can be assigned by vendors with different compiled
553# object file path, and prebuilt object file path.
554$(eval OBJS += $(MODULE_OBJS))
555
Chris Kay0c0007b2023-01-16 18:57:26 +0000556$(ELF): $(OBJS) $(DEFAULT_LINKER_SCRIPT) $(LINKER_SCRIPTS) | $(1)_dirs libraries $(BL_LIBS)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100557 $$(ECHO) " LD $$@"
Evan Lloydcf6e9d42015-12-03 12:58:52 +0000558ifdef MAKE_BUILD_STRINGS
Harrison Mutai5b5a4752023-09-26 15:07:24 +0100559 $(call MAKE_BUILD_STRINGS,$(BUILD_DIR)/build_message.o)
Evan Lloydcf6e9d42015-12-03 12:58:52 +0000560else
Patrick Georgi8a10e342016-01-28 14:46:18 +0100561 @echo 'const char build_message[] = "Built : "$(BUILD_MESSAGE_TIMESTAMP); \
laurenw-arme954f652022-07-12 10:12:05 -0500562 const char version_string[] = "${VERSION_STRING}"; \
563 const char version[] = "${VERSION}";' | \
Masahiro Yamada49071ae2016-12-22 12:39:55 +0900564 $$(CC) $$(TF_CFLAGS) $$(CFLAGS) -xc -c - -o $(BUILD_DIR)/build_message.o
Evan Lloydcf6e9d42015-12-03 12:58:52 +0000565endif
Varun Wadekar4d034c52019-01-11 14:47:48 -0800566ifneq ($(findstring armlink,$(notdir $(LD))),)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500567 $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) --entry=${1}_entrypoint \
Varun Wadekar4d034c52019-01-11 14:47:48 -0800568 --predefine="-D__LINKER__=$(__LINKER__)" \
569 --predefine="-DTF_CFLAGS=$(TF_CFLAGS)" \
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500570 --map --list="$(MAPFILE)" --scatter=${PLAT_DIR}/scat/${1}.scat \
Varun Wadekar4d034c52019-01-11 14:47:48 -0800571 $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) \
572 $(BUILD_DIR)/build_message.o $(OBJS)
zelalem-aweked5f45272019-11-12 16:20:17 -0600573else ifneq ($(findstring gcc,$(notdir $(LD))),)
Andrey Skvortsov572116b2023-09-05 22:39:21 +0300574 $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) -Wl,-Map=$(MAPFILE) \
Chris Kay0c0007b2023-01-16 18:57:26 +0000575 $(addprefix -Wl$(comma)--script$(comma),$(LINKER_SCRIPTS)) -Wl,--script,$(DEFAULT_LINKER_SCRIPT) \
576 $(BUILD_DIR)/build_message.o \
zelalem-aweked5f45272019-11-12 16:20:17 -0600577 $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800578else
Masahiro Yamadae2e8e102020-01-17 13:44:20 +0900579 $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) -Map=$(MAPFILE) \
Chris Kay0c0007b2023-01-16 18:57:26 +0000580 $(addprefix -T ,$(LINKER_SCRIPTS)) --script $(DEFAULT_LINKER_SCRIPT) \
581 $(BUILD_DIR)/build_message.o \
Sathees Balyaf5ec5002018-10-18 19:14:21 +0100582 $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800583endif
Christoph Müllner4f088e42019-04-24 09:45:30 +0200584ifeq ($(DISABLE_BIN_GENERATION),1)
585 @${ECHO_BLANK_LINE}
586 @echo "Built $$@ successfully"
587 @${ECHO_BLANK_LINE}
588endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100589
590$(DUMP): $(ELF)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100591 $${ECHO} " OD $$@"
Juan Castilloa3487d12015-08-18 14:23:04 +0100592 $${Q}$${OD} -dx $$< > $$@
593
594$(BIN): $(ELF)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100595 $${ECHO} " BIN $$@"
Juan Castilloa3487d12015-08-18 14:23:04 +0100596 $$(Q)$$(OC) -O binary $$< $$@
Evan Lloyd1c5f3602017-04-11 16:52:00 +0100597 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +0100598 @echo "Built $$@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +0100599 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +0100600
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500601.PHONY: $(1)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200602ifeq ($(DISABLE_BIN_GENERATION),1)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500603$(1): $(ELF) $(DUMP)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200604else
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500605$(1): $(BIN) $(DUMP)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200606endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100607
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500608all: $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100609
Sumit Gargeec52442019-11-14 16:33:45 +0530610ifeq ($(4),1)
611$(call ENCRYPT_FW,$(BIN),$(ENC_BIN))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500612$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(ENC_BIN),$(3), \
Sumit Gargeec52442019-11-14 16:33:45 +0530613 $(ENC_BIN)))
614else
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500615$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(BIN),$(3)))
Sumit Gargeec52442019-11-14 16:33:45 +0530616endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100617
618endef
619
Soby Mathewab4181d2017-12-14 17:44:56 +0000620# Convert device tree source file names to matching blobs
621# $(1) = input dts
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000622define SOURCES_TO_DTBS
623 $(notdir $(patsubst %.dts,%.dtb,$(filter %.dts,$(1))))
624endef
625
Soby Mathewab4181d2017-12-14 17:44:56 +0000626# MAKE_FDT_DIRS macro creates the prerequisite directories that host the
627# FDT binaries
628# $(1) = output directory
629# $(2) = input dts
630define MAKE_FDT_DIRS
631 $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000632 $(eval TEMP_DTB_DIRS := $(sort $(dir ${DTBS})))
633 # The $(dir ) function leaves a trailing / on the directory names
634 # Rip off the / to match directory names with make rule targets.
635 $(eval DTB_DIRS := $(patsubst %/,%,$(TEMP_DTB_DIRS)))
636
637$(eval $(foreach objd,${DTB_DIRS},$(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR})))
638
639fdt_dirs: ${DTB_DIRS}
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000640endef
641
Soby Mathewab4181d2017-12-14 17:44:56 +0000642# MAKE_DTB generate the Flattened device tree binary
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000643# $(1) = output directory
644# $(2) = input dts
645define MAKE_DTB
646
Yann Gautierf3831802018-09-04 10:44:00 +0200647# List of DTB file(s) to generate, based on DTS file basename list
Soby Mathewab4181d2017-12-14 17:44:56 +0000648$(eval DOBJ := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Yann Gautierf3831802018-09-04 10:44:00 +0200649# List of the pre-compiled DTS file(s)
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200650$(eval DPRE := $(addprefix $(1)/,$(patsubst %.dts,%.pre.dts,$(notdir $(2)))))
Yann Gautierf3831802018-09-04 10:44:00 +0200651# Dependencies of the pre-compiled DTS file(s) on its source and included files
652$(eval DTSDEP := $(patsubst %.dtb,%.o.d,$(DOBJ)))
653# Dependencies of the DT compilation on its pre-compiled DTS
654$(eval DTBDEP := $(patsubst %.dtb,%.d,$(DOBJ)))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000655
Stephen Warrenc4d562a2018-02-21 17:13:50 -0700656$(DOBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | fdt_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100657 $${ECHO} " CPP $$<"
Yann Gautierf3831802018-09-04 10:44:00 +0200658 $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Chris Kayc7ea3472024-01-15 18:45:07 +0000659 $$(Q)$$(CPP) $$(DTC_CPPFLAGS) -MT $(DTBS) -MMD -MF $(DTSDEP) -o $(DPRE) $$<
Andre Przywaracf2bb082018-09-27 10:56:05 +0100660 $${ECHO} " DTC $$<"
Balint Dobszay5ce2c322020-01-10 17:16:27 +0100661 $$(Q)$$(DTC) $$(DTC_FLAGS) -d $(DTBDEP) -o $$@ $(DPRE)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000662
Yann Gautierf3831802018-09-04 10:44:00 +0200663-include $(DTBDEP)
664-include $(DTSDEP)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000665
666endef
667
668# MAKE_DTBS builds flattened device tree sources
669# $(1) = output directory
670# $(2) = list of flattened device tree source files
671define MAKE_DTBS
672 $(eval DOBJS := $(filter %.dts,$(2)))
673 $(eval REMAIN := $(filter-out %.dts,$(2)))
Soby Mathewab4181d2017-12-14 17:44:56 +0000674 $(and $(REMAIN),$(error FDT_SOURCES contain non-DTS files: $(REMAIN)))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000675 $(eval $(foreach obj,$(DOBJS),$(call MAKE_DTB,$(1),$(obj))))
676
Soby Mathewab4181d2017-12-14 17:44:56 +0000677 $(eval $(call MAKE_FDT_DIRS,$(1),$(2)))
678
679dtbs: $(DTBS)
680all: dtbs
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000681endef