blob: 36ac1269ac24df9eb811748625f9bd461a97898c [file] [log] [blame]
Juan Castilloa3487d12015-08-18 14:23:04 +01001#
Chris Kayc7ea3472024-01-15 18:45:07 +00002# Copyright (c) 2015-2024, Arm Limited and Contributors. All rights reserved.
Juan Castilloa3487d12015-08-18 14:23:04 +01003#
dp-armfa3cf0b2017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Juan Castilloa3487d12015-08-18 14:23:04 +01005#
6
Evan Lloyd870a18c2015-12-02 18:41:22 +00007# Report an error if the eval make function is not available.
8$(eval eval_available := T)
9ifneq (${eval_available},T)
10 $(error This makefile only works with a Make program that supports $$(eval))
11endif
12
Evan Lloydf2697142015-12-02 18:17:37 +000013# A user defined function to recursively search for a filename below a directory
14# $1 is the directory root of the recursive search (blank for current directory).
15# $2 is the file name to search for.
16define rwildcard
17$(strip $(foreach d,$(wildcard ${1}*),$(call rwildcard,${d}/,${2}) $(filter $(subst *,%,%${2}),${d})))
18endef
19
Yatharth Kochar115352c2015-10-02 13:58:52 +010020# This table is used in converting lower case to upper case.
21uppercase_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
22
23# Internal macro used for converting lower case to upper case.
24# $(1) = upper case table
25# $(2) = String to convert
26define uppercase_internal
27$(if $(1),$$(subst $(firstword $(1)),$(call uppercase_internal,$(wordlist 2,$(words $(1)),$(1)),$(2))),$(2))
28endef
29
30# A macro for converting a string to upper case
31# $(1) = String to convert
32define uppercase
33$(eval uppercase_result:=$(call uppercase_internal,$(uppercase_table),$(1)))$(uppercase_result)
34endef
35
Boyan Karatotevb4f25db2022-11-17 12:01:29 +000036# Convenience function for setting a variable to 0 if not previously set
37# $(eval $(call default_zero,FOO))
38define default_zero
39 $(eval $(1) ?= 0)
40endef
41
42# Convenience function for setting a list of variables to 0 if not previously set
43# $(eval $(call default_zeros,FOO BAR))
44define default_zeros
45 $(foreach var,$1,$(eval $(call default_zero,$(var))))
46endef
47
Govindraj Raja7dc5f1b2024-01-23 14:20:52 -060048# Convenience function for setting a variable to 1 if not previously set
49# $(eval $(call default_one,FOO))
50define default_one
51 $(eval $(1) ?= 1)
52endef
53
54# Convenience function for setting a list of variables to 1 if not previously set
55# $(eval $(call default_ones,FOO BAR))
56define default_ones
57 $(foreach var,$1,$(eval $(call default_one,$(var))))
58endef
59
Juan Castilloa3487d12015-08-18 14:23:04 +010060# Convenience function for adding build definitions
61# $(eval $(call add_define,FOO)) will have:
62# -DFOO if $(FOO) is empty; -DFOO=$(FOO) otherwise
63define add_define
64 DEFINES += -D$(1)$(if $(value $(1)),=$(value $(1)),)
65endef
66
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -050067# Convenience function for addding multiple build definitions
68# $(eval $(call add_defines,FOO BOO))
69define add_defines
70 $(foreach def,$1,$(eval $(call add_define,$(def))))
71endef
72
Soren Brinkmann9efe6572016-06-09 13:36:27 -070073# Convenience function for adding build definitions
74# $(eval $(call add_define_val,FOO,BAR)) will have:
75# -DFOO=BAR
76define add_define_val
77 DEFINES += -D$(1)=$(2)
78endef
79
Juan Castilloa3487d12015-08-18 14:23:04 +010080# Convenience function for verifying option has a boolean value
81# $(eval $(call assert_boolean,FOO)) will assert FOO is 0 or 1
82define assert_boolean
Yann Gautierdbf0a162023-04-24 13:38:12 +020083 $(if $($(1)),,$(error $(1) must not be empty))
Masahiro Yamada1ab9e922017-05-23 23:45:01 +090084 $(if $(filter-out 0 1,$($1)),$(error $1 must be boolean))
Juan Castilloa3487d12015-08-18 14:23:04 +010085endef
86
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -050087# Convenience function for verifying options have boolean values
88# $(eval $(call assert_booleans,FOO BOO)) will assert FOO and BOO for 0 or 1 values
89define assert_booleans
90 $(foreach bool,$1,$(eval $(call assert_boolean,$(bool))))
91endef
92
Jeenu Viswambharanfca76802017-01-16 16:52:35 +0000930-9 := 0 1 2 3 4 5 6 7 8 9
94
95# Function to verify that a given option $(1) contains a numeric value
96define assert_numeric
97$(if $($(1)),,$(error $(1) must not be empty))
98$(eval __numeric := $($(1)))
99$(foreach d,$(0-9),$(eval __numeric := $(subst $(d),,$(__numeric))))
100$(if $(__numeric),$(error $(1) must be numeric))
101endef
102
Leonardo Sandoval65fca7c2020-09-10 12:18:27 -0500103# Convenience function for verifying options have numeric values
104# $(eval $(call assert_numerics,FOO BOO)) will assert FOO and BOO contain numeric values
105define assert_numerics
106 $(foreach num,$1,$(eval $(call assert_numeric,$(num))))
107endef
108
Marco Felschdf646b52022-11-24 11:02:05 +0100109# Convenience function to check for a given linker option. An call to
110# $(call ld_option, --no-XYZ) will return --no-XYZ if supported by the linker
Chris Kay523e8642023-12-04 12:03:51 +0000111ld_option = $(shell $($(ARCH)-ld) $(1) -Wl,--version >/dev/null 2>&1 || $($(ARCH)-ld) $(1) -v >/dev/null 2>&1 && echo $(1))
Marco Felschdf646b52022-11-24 11:02:05 +0100112
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500113# Convenience function to check for a given compiler option. A call to
114# $(call cc_option, --no-XYZ) will return --no-XYZ if supported by the compiler
115define cc_option
Chris Kay523e8642023-12-04 12:03:51 +0000116 $(shell if $($(ARCH)-cc) $(1) -c -x c /dev/null -o /dev/null >/dev/null 2>&1; then echo $(1); fi )
Govindraj Rajaaa8ef3f2023-05-05 09:09:36 -0500117endef
118
Vijayenthiran Subramaniam3414e3a2020-02-08 21:27:30 +0530119# CREATE_SEQ is a recursive function to create sequence of numbers from 1 to
120# $(2) and assign the sequence to $(1)
121define CREATE_SEQ
122$(if $(word $(2), $($(1))),\
123 $(eval $(1) += $(words $($(1))))\
124 $(eval $(1) := $(filter-out 0,$($(1)))),\
125 $(eval $(1) += $(words $($(1))))\
126 $(call CREATE_SEQ,$(1),$(2))\
127)
128endef
129
Juan Castilloa3487d12015-08-18 14:23:04 +0100130# IMG_MAPFILE defines the output file describing the memory map corresponding
131# to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500132# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100133define IMG_MAPFILE
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500134 ${BUILD_DIR}/$(1).map
Juan Castilloa3487d12015-08-18 14:23:04 +0100135endef
136
137# IMG_ELF defines the elf 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_ELF
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500140 ${BUILD_DIR}/$(1).elf
Juan Castilloa3487d12015-08-18 14:23:04 +0100141endef
142
143# IMG_DUMP defines the symbols dump 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_DUMP
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500146 ${BUILD_DIR}/$(1).dump
Juan Castilloa3487d12015-08-18 14:23:04 +0100147endef
148
149# IMG_BIN defines the default image file corresponding to a BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500150# $(1) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100151define IMG_BIN
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500152 ${BUILD_PLAT}/$(1).bin
Juan Castilloa3487d12015-08-18 14:23:04 +0100153endef
154
Sumit Gargeec52442019-11-14 16:33:45 +0530155# IMG_ENC_BIN defines the default encrypted image file corresponding to a
156# BL stage
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500157# $(1) = BL stage
Sumit Gargeec52442019-11-14 16:33:45 +0530158define IMG_ENC_BIN
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500159 ${BUILD_PLAT}/$(1)_enc.bin
Sumit Gargeec52442019-11-14 16:33:45 +0530160endef
161
162# ENCRYPT_FW invokes enctool to encrypt firmware binary
163# $(1) = input firmware binary
164# $(2) = output encrypted firmware binary
165define ENCRYPT_FW
166$(2): $(1) enctool
167 $$(ECHO) " ENC $$<"
168 $$(Q)$$(ENCTOOL) $$(ENC_ARGS) -i $$< -o $$@
169endef
170
Masahiro Yamada6c2b4592018-01-26 11:42:01 +0900171# TOOL_ADD_PAYLOAD appends the command line arguments required by fiptool to
172# package a new payload and/or by cert_create to generate certificate.
173# Optionally, it adds the dependency on this payload
Juan Castilloa3487d12015-08-18 14:23:04 +0100174# $(1) = payload filename (i.e. bl31.bin)
Masahiro Yamadac85deee2017-12-23 23:56:18 +0900175# $(2) = command line option for the specified payload (i.e. --soc-fw)
Masahiro Yamada5c3ae332018-01-26 11:42:01 +0900176# $(3) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900177# $(4) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530178# $(5) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin)
Masahiro Yamada6c2b4592018-01-26 11:42:01 +0900179define TOOL_ADD_PAYLOAD
Sumit Gargeec52442019-11-14 16:33:45 +0530180ifneq ($(5),)
181 $(4)FIP_ARGS += $(2) $(5)
182 $(if $(3),$(4)CRT_DEPS += $(1))
183else
Masahiro Yamada714a6922018-01-26 11:42:01 +0900184 $(4)FIP_ARGS += $(2) $(1)
Sumit Gargeec52442019-11-14 16:33:45 +0530185 $(if $(3),$(4)CRT_DEPS += $(3))
186endif
Masahiro Yamada714a6922018-01-26 11:42:01 +0900187 $(if $(3),$(4)FIP_DEPS += $(3))
Masahiro Yamadaec154ad2018-01-26 11:42:01 +0900188 $(4)CRT_ARGS += $(2) $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100189endef
190
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900191# TOOL_ADD_IMG_PAYLOAD works like TOOL_ADD_PAYLOAD, but applies image filters
192# before passing them to host tools if BL*_PRE_TOOL_FILTER is defined.
193# $(1) = image_type (scp_bl2, bl33, etc.)
194# $(2) = payload filepath (ex. build/fvp/release/bl31.bin)
195# $(3) = command line option for the specified payload (ex. --soc-fw)
196# $(4) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin)
197# $(5) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530198# $(6) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin)
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900199
200define TOOL_ADD_IMG_PAYLOAD
201
202$(eval PRE_TOOL_FILTER := $($(call uppercase,$(1))_PRE_TOOL_FILTER))
203
204ifneq ($(PRE_TOOL_FILTER),)
205
206$(eval PROCESSED_PATH := $(BUILD_PLAT)/$(1).bin$($(PRE_TOOL_FILTER)_SUFFIX))
207
208$(call $(PRE_TOOL_FILTER)_RULE,$(PROCESSED_PATH),$(2))
209
210$(PROCESSED_PATH): $(4)
211
Sumit Gargeec52442019-11-14 16:33:45 +0530212$(call TOOL_ADD_PAYLOAD,$(PROCESSED_PATH),$(3),$(PROCESSED_PATH),$(5),$(6))
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900213
214else
Sumit Gargeec52442019-11-14 16:33:45 +0530215$(call TOOL_ADD_PAYLOAD,$(2),$(3),$(4),$(5),$(6))
Masahiro Yamadabfb64ac2018-02-01 16:31:09 +0900216endif
217endef
218
Yatharth Kochard1a93432015-10-12 12:33:47 +0100219# CERT_ADD_CMD_OPT adds a new command line option to the cert_create invocation
Juan Castilloa3487d12015-08-18 14:23:04 +0100220# $(1) = parameter filename
221# $(2) = cert_create command line option for the specified parameter
Masahiro Yamada5ebfda32018-01-26 11:42:01 +0900222# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Juan Castilloa3487d12015-08-18 14:23:04 +0100223define CERT_ADD_CMD_OPT
Masahiro Yamada5ebfda32018-01-26 11:42:01 +0900224 $(3)CRT_ARGS += $(2) $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100225endef
226
Masahiro Yamada4d156802018-01-26 11:42:01 +0900227# TOOL_ADD_IMG allows the platform to specify an external image to be packed
228# in the FIP and/or for which certificate is generated. It also adds a
229# dependency on the image file, aborting the build if the file does not exist.
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900230# $(1) = image_type (scp_bl2, bl33, etc.)
Masahiro Yamadac85deee2017-12-23 23:56:18 +0900231# $(2) = command line option for fiptool (--scp-fw, --nt-fw, etc)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900232# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530233# $(4) = Image encryption flag (optional) (0, 1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100234# Example:
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900235# $(eval $(call TOOL_ADD_IMG,bl33,--nt-fw))
Masahiro Yamada4d156802018-01-26 11:42:01 +0900236define TOOL_ADD_IMG
Masahiro Yamada9c5ca522018-01-26 11:42:01 +0900237 # Build option to specify the image filename (SCP_BL2, BL33, etc)
238 # This is the uppercase form of the first parameter
239 $(eval _V := $(call uppercase,$(1)))
240
Pali Rohára5416ab2020-11-24 16:53:04 +0100241 # $(check_$(1)_cmd) variable is executed in the check_$(1) target and also
242 # is put into the ${CHECK_$(3)FIP_CMD} variable which is executed by the
243 # target ${BUILD_PLAT}/${$(3)FIP_NAME}.
244 $(eval check_$(1)_cmd := \
245 $(if $(value $(_V)),,$$$$(error "Platform '${PLAT}' requires $(_V). Please set $(_V) to point to the right file")) \
246 $(if $(wildcard $(value $(_V))),,$$$$(error '$(_V)=$(value $(_V))' was specified, but '$(value $(_V))' does not exist)) \
247 )
248
Masahiro Yamada714a6922018-01-26 11:42:01 +0900249 $(3)CRT_DEPS += check_$(1)
Pali Rohára5416ab2020-11-24 16:53:04 +0100250 CHECK_$(3)FIP_CMD += $$(check_$(1)_cmd)
Sumit Gargeec52442019-11-14 16:33:45 +0530251ifeq ($(4),1)
252 $(eval ENC_BIN := ${BUILD_PLAT}/$(1)_enc.bin)
253 $(call ENCRYPT_FW,$(value $(_V)),$(ENC_BIN))
254 $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(ENC_BIN),$(3), \
255 $(ENC_BIN))
256else
Pali Rohára5416ab2020-11-24 16:53:04 +0100257 $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(if $(wildcard $(value $(_V))),$(value $(_V)),FORCE),$(3))
Sumit Gargeec52442019-11-14 16:33:45 +0530258endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100259
Masahiro Yamada9dff1562017-12-24 13:08:00 +0900260.PHONY: check_$(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100261check_$(1):
Pali Rohára5416ab2020-11-24 16:53:04 +0100262 $(check_$(1)_cmd)
Juan Castilloa3487d12015-08-18 14:23:04 +0100263endef
264
Juan Pablo Conde3539c742022-10-25 19:41:02 -0400265# SELECT_OPENSSL_API_VERSION selects the OpenSSL API version to be used to
266# build the host tools by checking the version of OpenSSL located under
267# the path defined by the OPENSSL_DIR variable. It receives no parameters.
268define SELECT_OPENSSL_API_VERSION
269 # Set default value for USING_OPENSSL3 macro to 0
270 $(eval USING_OPENSSL3 = 0)
271 # Obtain the OpenSSL version for the build located under OPENSSL_DIR
272 $(eval OPENSSL_INFO := $(shell LD_LIBRARY_PATH=${OPENSSL_DIR}:${OPENSSL_DIR}/lib ${OPENSSL_BIN_PATH}/openssl version))
273 $(eval OPENSSL_CURRENT_VER = $(word 2, ${OPENSSL_INFO}))
274 $(eval OPENSSL_CURRENT_VER_MAJOR = $(firstword $(subst ., ,$(OPENSSL_CURRENT_VER))))
275 # If OpenSSL version is 3.x, then set USING_OPENSSL3 flag to 1
276 $(if $(filter 3,$(OPENSSL_CURRENT_VER_MAJOR)), $(eval USING_OPENSSL3 = 1))
277endef
278
Juan Castilloa3487d12015-08-18 14:23:04 +0100279################################################################################
Masahiro Yamadaeff36a92018-01-26 11:42:01 +0900280# Generic image processing filters
281################################################################################
282
283# GZIP
284define GZIP_RULE
285$(1): $(2)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100286 $(ECHO) " GZIP $$@"
Masahiro Yamadaeff36a92018-01-26 11:42:01 +0900287 $(Q)gzip -n -f -9 $$< --stdout > $$@
288endef
289
290GZIP_SUFFIX := .gz
291
292################################################################################
Juan Castilloa3487d12015-08-18 14:23:04 +0100293# Auxiliary macros to build TF images from sources
294################################################################################
295
Masahiro Yamadae487bb62016-12-22 15:23:05 +0900296MAKE_DEP = -Wp,-MD,$(DEP) -MT $$@ -MP
Juan Castilloa3487d12015-08-18 14:23:04 +0100297
Roberto Vargas21360f32018-05-08 10:27:10 +0100298
299# MAKE_C_LIB builds a C source file and generates the dependency file
300# $(1) = output directory
301# $(2) = source file (%.c)
302# $(3) = library name
303define MAKE_C_LIB
304$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
305$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Govindraj Raja98375d42023-01-27 10:08:54 +0000306$(eval LIB := $(call uppercase, $(notdir $(1))))
Roberto Vargas21360f32018-05-08 10:27:10 +0100307
308$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100309 $$(ECHO) " CC $$<"
Chris Kay523e8642023-12-04 12:03:51 +0000310 $$(Q)$($(ARCH)-cc) $$($(LIB)_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(MAKE_DEP) -c $$< -o $$@
Roberto Vargas21360f32018-05-08 10:27:10 +0100311
312-include $(DEP)
313
314endef
315
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000316# MAKE_S_LIB builds an assembly source file and generates the dependency file
317# $(1) = output directory
318# $(2) = source file (%.S)
319# $(3) = library name
320define MAKE_S_LIB
321$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
322$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
323
324$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs
325 $$(ECHO) " AS $$<"
Chris Kay523e8642023-12-04 12:03:51 +0000326 $$(Q)$($(ARCH)-as) -x assembler-with-cpp $$(TF_CFLAGS_$(ARCH)) $$(ASFLAGS) $(MAKE_DEP) -c $$< -o $$@
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000327
328-include $(DEP)
329
330endef
331
Roberto Vargas21360f32018-05-08 10:27:10 +0100332
Juan Castilloa3487d12015-08-18 14:23:04 +0100333# MAKE_C builds a C source file and generates the dependency file
334# $(1) = output directory
335# $(2) = source file (%.c)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500336# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100337define MAKE_C
338
339$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900340$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Chris Kay2a8e4242023-03-22 15:42:32 +0000341
Chris Kayf5818252023-05-03 15:31:42 +0200342$(eval BL_DEFINES := IMAGE_$(call uppercase,$(3)) $($(call uppercase,$(3))_DEFINES) $(PLAT_BL_COMMON_DEFINES))
343$(eval BL_INCLUDE_DIRS := $($(call uppercase,$(3))_INCLUDE_DIRS) $(PLAT_BL_COMMON_INCLUDE_DIRS))
344$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) $(addprefix -D,$(BL_DEFINES)) $(addprefix -I,$(BL_INCLUDE_DIRS)) $(PLAT_BL_COMMON_CPPFLAGS))
345$(eval BL_CFLAGS := $($(call uppercase,$(3))_CFLAGS) $(PLAT_BL_COMMON_CFLAGS))
Juan Castilloa3487d12015-08-18 14:23:04 +0100346
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500347$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100348 $$(ECHO) " CC $$<"
Chris Kay523e8642023-12-04 12:03:51 +0000349 $$(Q)$($(ARCH)-cc) $$(LTO_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(BL_CPPFLAGS) $(BL_CFLAGS) $(MAKE_DEP) -c $$< -o $$@
Juan Castilloa3487d12015-08-18 14:23:04 +0100350
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900351-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100352
353endef
354
355
356# MAKE_S builds an assembly source file and generates the dependency file
357# $(1) = output directory
358# $(2) = assembly file (%.S)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500359# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100360define MAKE_S
361
362$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900363$(eval DEP := $(patsubst %.o,%.d,$(OBJ)))
Chris Kay2a8e4242023-03-22 15:42:32 +0000364
Chris Kayf5818252023-05-03 15:31:42 +0200365$(eval BL_DEFINES := IMAGE_$(call uppercase,$(3)) $($(call uppercase,$(3))_DEFINES) $(PLAT_BL_COMMON_DEFINES))
366$(eval BL_INCLUDE_DIRS := $($(call uppercase,$(3))_INCLUDE_DIRS) $(PLAT_BL_COMMON_INCLUDE_DIRS))
367$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) $(addprefix -D,$(BL_DEFINES)) $(addprefix -I,$(BL_INCLUDE_DIRS)) $(PLAT_BL_COMMON_CPPFLAGS))
368$(eval BL_ASFLAGS := $($(call uppercase,$(3))_ASFLAGS) $(PLAT_BL_COMMON_ASFLAGS))
Juan Castilloa3487d12015-08-18 14:23:04 +0100369
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500370$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100371 $$(ECHO) " AS $$<"
Chris Kay523e8642023-12-04 12:03:51 +0000372 $$(Q)$($(ARCH)-as) -x assembler-with-cpp $$(TF_CFLAGS_$(ARCH)) $$(ASFLAGS) $(BL_CPPFLAGS) $(BL_ASFLAGS) $(MAKE_DEP) -c $$< -o $$@
Juan Castilloa3487d12015-08-18 14:23:04 +0100373
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900374-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100375
376endef
377
378
379# MAKE_LD generate the linker script using the C preprocessor
380# $(1) = output linker script
381# $(2) = input template
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500382# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100383define MAKE_LD
384
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900385$(eval DEP := $(1).d)
Chris Kay2a8e4242023-03-22 15:42:32 +0000386
Chris Kayf5818252023-05-03 15:31:42 +0200387$(eval BL_DEFINES := IMAGE_$(call uppercase,$(3)) $($(call uppercase,$(3))_DEFINES) $(PLAT_BL_COMMON_DEFINES))
388$(eval BL_INCLUDE_DIRS := $($(call uppercase,$(3))_INCLUDE_DIRS) $(PLAT_BL_COMMON_INCLUDE_DIRS))
389$(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 +0100390
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500391$(1): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100392 $$(ECHO) " PP $$<"
Chris Kay523e8642023-12-04 12:03:51 +0000393 $$(Q)$($(ARCH)-cpp) -E $$(CPPFLAGS) $(BL_CPPFLAGS) $(TF_CFLAGS_$(ARCH)) -P -x assembler-with-cpp -D__LINKER__ $(MAKE_DEP) -o $$@ $$<
Juan Castilloa3487d12015-08-18 14:23:04 +0100394
Masahiro Yamada56c53f62016-12-22 14:02:27 +0900395-include $(DEP)
Juan Castilloa3487d12015-08-18 14:23:04 +0100396
397endef
398
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000399# MAKE_LIB_OBJS builds both C and assembly source files
Roberto Vargas21360f32018-05-08 10:27:10 +0100400# $(1) = output directory
401# $(2) = list of source files
402# $(3) = name of the library
403define MAKE_LIB_OBJS
404 $(eval C_OBJS := $(filter %.c,$(2)))
405 $(eval REMAIN := $(filter-out %.c,$(2)))
406 $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C_LIB,$(1),$(obj),$(3))))
407
Antonio Nino Diaza884dfb2019-02-08 13:20:37 +0000408 $(eval S_OBJS := $(filter %.S,$(REMAIN)))
409 $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
410 $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S_LIB,$(1),$(obj),$(3))))
411
Roberto Vargas21360f32018-05-08 10:27:10 +0100412 $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
413endef
414
Juan Castilloa3487d12015-08-18 14:23:04 +0100415
416# MAKE_OBJS builds both C and assembly source files
417# $(1) = output directory
418# $(2) = list of source files (both C and assembly)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500419# $(3) = BL stage
Juan Castilloa3487d12015-08-18 14:23:04 +0100420define MAKE_OBJS
421 $(eval C_OBJS := $(filter %.c,$(2)))
422 $(eval REMAIN := $(filter-out %.c,$(2)))
423 $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj),$(3))))
424
425 $(eval S_OBJS := $(filter %.S,$(REMAIN)))
426 $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
427 $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj),$(3))))
428
429 $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
430endef
431
432
433# NOTE: The line continuation '\' is required in the next define otherwise we
434# end up with a line-feed characer at the end of the last c filename.
Evan Lloyda71d2592015-12-02 18:56:06 +0000435# Also bear this issue in mind if extending the list of supported filetypes.
Juan Castilloa3487d12015-08-18 14:23:04 +0100436define SOURCES_TO_OBJS
437 $(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \
438 $(notdir $(patsubst %.S,%.o,$(filter %.S,$(1))))
439endef
440
Patrick Georgi8a10e342016-01-28 14:46:18 +0100441# Allow overriding the timestamp, for example for reproducible builds, or to
442# synchronize timestamps across multiple projects.
443# This must be set to a C string (including quotes where applicable).
444BUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__
Juan Castilloa3487d12015-08-18 14:23:04 +0100445
Roberto Vargas21360f32018-05-08 10:27:10 +0100446.PHONY: libraries
447
Roberto Vargase92111a2018-05-22 16:05:42 +0100448# MAKE_LIB_DIRS macro defines the target for the directory where
Roberto Vargas21360f32018-05-08 10:27:10 +0100449# libraries are created
Roberto Vargase92111a2018-05-22 16:05:42 +0100450define MAKE_LIB_DIRS
Roberto Vargas21360f32018-05-08 10:27:10 +0100451 $(eval LIB_DIR := ${BUILD_PLAT}/lib)
Roberto Vargase92111a2018-05-22 16:05:42 +0100452 $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib)
453 $(eval LIBWRAPPER_DIR := ${BUILD_PLAT}/libwrapper)
454 $(eval $(call MAKE_PREREQ_DIR,${LIB_DIR},${BUILD_PLAT}))
455 $(eval $(call MAKE_PREREQ_DIR,${ROMLIB_DIR},${BUILD_PLAT}))
456 $(eval $(call MAKE_PREREQ_DIR,${LIBWRAPPER_DIR},${BUILD_PLAT}))
Roberto Vargas21360f32018-05-08 10:27:10 +0100457endef
458
459# MAKE_LIB macro defines the targets and options to build each BL image.
460# Arguments:
461# $(1) = Library name
462define MAKE_LIB
463 $(eval BUILD_DIR := ${BUILD_PLAT}/lib$(1))
464 $(eval LIB_DIR := ${BUILD_PLAT}/lib)
Roberto Vargase92111a2018-05-22 16:05:42 +0100465 $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib)
Roberto Vargas21360f32018-05-08 10:27:10 +0100466 $(eval SOURCES := $(LIB$(call uppercase,$(1))_SRCS))
467 $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
468
469$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT}))
470$(eval $(call MAKE_LIB_OBJS,$(BUILD_DIR),$(SOURCES),$(1)))
471
472.PHONY : lib${1}_dirs
Roberto Vargase92111a2018-05-22 16:05:42 +0100473lib${1}_dirs: | ${BUILD_DIR} ${LIB_DIR} ${ROMLIB_DIR} ${LIBWRAPPER_DIR}
Roberto Vargas21360f32018-05-08 10:27:10 +0100474libraries: ${LIB_DIR}/lib$(1).a
Chris Kaycfba6452023-12-04 09:55:50 +0000475ifeq ($($(ARCH)-ld-id),arm-link)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800476LDPATHS = --userlibpath=${LIB_DIR}
477LDLIBS += --library=$(1)
478else
Roberto Vargas21360f32018-05-08 10:27:10 +0100479LDPATHS = -L${LIB_DIR}
480LDLIBS += -l$(1)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800481endif
Roberto Vargas21360f32018-05-08 10:27:10 +0100482
Roberto Vargase92111a2018-05-22 16:05:42 +0100483ifeq ($(USE_ROMLIB),1)
Sathees Balyaf5ec5002018-10-18 19:14:21 +0100484LIBWRAPPER = -lwrappers
Roberto Vargase92111a2018-05-22 16:05:42 +0100485endif
486
Roberto Vargas21360f32018-05-08 10:27:10 +0100487all: ${LIB_DIR}/lib$(1).a
488
489${LIB_DIR}/lib$(1).a: $(OBJS)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100490 $$(ECHO) " AR $$@"
Chris Kay523e8642023-12-04 12:03:51 +0000491 $$(Q)$($(ARCH)-ar) cr $$@ $$?
Roberto Vargas21360f32018-05-08 10:27:10 +0100492endef
493
Chris Kay68d28362023-01-16 16:53:45 +0000494# Generate the path to one or more preprocessed linker scripts given the paths
495# of their sources.
496#
497# Arguments:
498# $(1) = path to one or more linker script sources
499define linker_script_path
500 $(patsubst %.S,$(BUILD_DIR)/%,$(1))
501endef
502
Juan Castilloa3487d12015-08-18 14:23:04 +0100503# MAKE_BL macro defines the targets and options to build each BL image.
504# Arguments:
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500505# $(1) = BL stage
Juan Castillo8e04dec2016-01-05 11:55:36 +0000506# $(2) = FIP command line option (if empty, image will not be included in the FIP)
Masahiro Yamadacd7711d2018-01-26 11:42:01 +0900507# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip)
Sumit Gargeec52442019-11-14 16:33:45 +0530508# $(4) = BL encryption flag (optional) (0, 1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100509define MAKE_BL
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500510 $(eval BUILD_DIR := ${BUILD_PLAT}/$(1))
511 $(eval BL_SOURCES := $($(call uppercase,$(1))_SOURCES))
Chris Kaya7492ee2023-05-05 12:33:23 +0200512 $(eval SOURCES := $(sort $(BL_SOURCES) $(BL_COMMON_SOURCES) $(PLAT_BL_COMMON_SOURCES)))
Juan Castilloa3487d12015-08-18 14:23:04 +0100513 $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
Juan Castilloa3487d12015-08-18 14:23:04 +0100514 $(eval MAPFILE := $(call IMG_MAPFILE,$(1)))
515 $(eval ELF := $(call IMG_ELF,$(1)))
516 $(eval DUMP := $(call IMG_DUMP,$(1)))
517 $(eval BIN := $(call IMG_BIN,$(1)))
Sumit Gargeec52442019-11-14 16:33:45 +0530518 $(eval ENC_BIN := $(call IMG_ENC_BIN,$(1)))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500519 $(eval BL_LIBS := $($(call uppercase,$(1))_LIBS))
Chris Kay68d28362023-01-16 16:53:45 +0000520
521 $(eval DEFAULT_LINKER_SCRIPT_SOURCE := $($(call uppercase,$(1))_DEFAULT_LINKER_SCRIPT_SOURCE))
522 $(eval DEFAULT_LINKER_SCRIPT := $(call linker_script_path,$(DEFAULT_LINKER_SCRIPT_SOURCE)))
523
Chris Kay0c0007b2023-01-16 18:57:26 +0000524 $(eval LINKER_SCRIPT_SOURCES := $($(call uppercase,$(1))_LINKER_SCRIPT_SOURCES))
525 $(eval LINKER_SCRIPTS := $(call linker_script_path,$(LINKER_SCRIPT_SOURCES)))
526
Evan Lloyd93d3b702015-12-03 12:19:30 +0000527 # We use sort only to get a list of unique object directory names.
528 # ordering is not relevant but sort removes duplicates.
Chris Kay0c0007b2023-01-16 18:57:26 +0000529 $(eval TEMP_OBJ_DIRS := $(sort $(dir ${OBJS} ${DEFAULT_LINKER_SCRIPT} ${LINKER_SCRIPTS})))
Evan Lloyd93d3b702015-12-03 12:19:30 +0000530 # The $(dir ) function leaves a trailing / on the directory names
Masahiro Yamada823482b2017-01-19 19:31:00 +0900531 # Rip off the / to match directory names with make rule targets.
532 $(eval OBJ_DIRS := $(patsubst %/,%,$(TEMP_OBJ_DIRS)))
Evan Lloyd93d3b702015-12-03 12:19:30 +0000533
534# Create generators for object directory structure
Juan Castilloa3487d12015-08-18 14:23:04 +0100535
Masahiro Yamadae2395b42017-11-04 03:12:28 +0900536$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT}))
Evan Lloyd4c3055f2017-04-07 16:58:57 +0100537
Chris Kay68d28362023-01-16 16:53:45 +0000538$(eval $(foreach objd,${OBJ_DIRS},
539 $(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR})))
Juan Castilloa3487d12015-08-18 14:23:04 +0100540
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500541.PHONY : ${1}_dirs
Juan Castilloa3487d12015-08-18 14:23:04 +0100542
Evan Lloyd93d3b702015-12-03 12:19:30 +0000543# We use order-only prerequisites to ensure that directories are created,
544# but do not cause re-builds every time a file is written.
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500545${1}_dirs: | ${OBJ_DIRS}
Evan Lloyd93d3b702015-12-03 12:19:30 +0000546
547$(eval $(call MAKE_OBJS,$(BUILD_DIR),$(SOURCES),$(1)))
Chris Kay0c0007b2023-01-16 18:57:26 +0000548
549# Generate targets to preprocess each required linker script
550$(eval $(foreach source,$(DEFAULT_LINKER_SCRIPT_SOURCE) $(LINKER_SCRIPT_SOURCES), \
551 $(call MAKE_LD,$(call linker_script_path,$(source)),$(source),$(1))))
552
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500553$(eval BL_LDFLAGS := $($(call uppercase,$(1))_LDFLAGS))
Evan Lloyd93d3b702015-12-03 12:19:30 +0000554
Roberto Vargase92111a2018-05-22 16:05:42 +0100555ifeq ($(USE_ROMLIB),1)
556$(ELF): romlib.bin
557endif
558
developer09f3e982022-03-23 18:51:48 +0800559# MODULE_OBJS can be assigned by vendors with different compiled
560# object file path, and prebuilt object file path.
561$(eval OBJS += $(MODULE_OBJS))
562
Chris Kay0c0007b2023-01-16 18:57:26 +0000563$(ELF): $(OBJS) $(DEFAULT_LINKER_SCRIPT) $(LINKER_SCRIPTS) | $(1)_dirs libraries $(BL_LIBS)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100564 $$(ECHO) " LD $$@"
Evan Lloydcf6e9d42015-12-03 12:58:52 +0000565ifdef MAKE_BUILD_STRINGS
Harrison Mutai5b5a4752023-09-26 15:07:24 +0100566 $(call MAKE_BUILD_STRINGS,$(BUILD_DIR)/build_message.o)
Evan Lloydcf6e9d42015-12-03 12:58:52 +0000567else
Patrick Georgi8a10e342016-01-28 14:46:18 +0100568 @echo 'const char build_message[] = "Built : "$(BUILD_MESSAGE_TIMESTAMP); \
laurenw-arme954f652022-07-12 10:12:05 -0500569 const char version_string[] = "${VERSION_STRING}"; \
570 const char version[] = "${VERSION}";' | \
Chris Kay523e8642023-12-04 12:03:51 +0000571 $($(ARCH)-cc) $$(TF_CFLAGS) $$(CFLAGS) -xc -c - -o $(BUILD_DIR)/build_message.o
Evan Lloydcf6e9d42015-12-03 12:58:52 +0000572endif
Chris Kaycfba6452023-12-04 09:55:50 +0000573ifeq ($($(ARCH)-ld-id),arm-link)
Chris Kay523e8642023-12-04 12:03:51 +0000574 $$(Q)$($(ARCH)-ld) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) --entry=${1}_entrypoint \
Varun Wadekar4d034c52019-01-11 14:47:48 -0800575 --predefine="-D__LINKER__=$(__LINKER__)" \
576 --predefine="-DTF_CFLAGS=$(TF_CFLAGS)" \
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500577 --map --list="$(MAPFILE)" --scatter=${PLAT_DIR}/scat/${1}.scat \
Varun Wadekar4d034c52019-01-11 14:47:48 -0800578 $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) \
579 $(BUILD_DIR)/build_message.o $(OBJS)
Chris Kaycfba6452023-12-04 09:55:50 +0000580else ifeq ($($(ARCH)-ld-id),gnu-gcc)
Chris Kay523e8642023-12-04 12:03:51 +0000581 $$(Q)$($(ARCH)-ld) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) -Wl,-Map=$(MAPFILE) \
Chris Kay0c0007b2023-01-16 18:57:26 +0000582 $(addprefix -Wl$(comma)--script$(comma),$(LINKER_SCRIPTS)) -Wl,--script,$(DEFAULT_LINKER_SCRIPT) \
583 $(BUILD_DIR)/build_message.o \
zelalem-aweked5f45272019-11-12 16:20:17 -0600584 $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800585else
Chris Kay523e8642023-12-04 12:03:51 +0000586 $$(Q)$($(ARCH)-ld) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) -Map=$(MAPFILE) \
Chris Kay0c0007b2023-01-16 18:57:26 +0000587 $(addprefix -T ,$(LINKER_SCRIPTS)) --script $(DEFAULT_LINKER_SCRIPT) \
588 $(BUILD_DIR)/build_message.o \
Sathees Balyaf5ec5002018-10-18 19:14:21 +0100589 $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS)
Varun Wadekar4d034c52019-01-11 14:47:48 -0800590endif
Christoph Müllner4f088e42019-04-24 09:45:30 +0200591ifeq ($(DISABLE_BIN_GENERATION),1)
592 @${ECHO_BLANK_LINE}
593 @echo "Built $$@ successfully"
594 @${ECHO_BLANK_LINE}
595endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100596
597$(DUMP): $(ELF)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100598 $${ECHO} " OD $$@"
Chris Kay523e8642023-12-04 12:03:51 +0000599 $${Q}$($(ARCH)-od) -dx $$< > $$@
Juan Castilloa3487d12015-08-18 14:23:04 +0100600
601$(BIN): $(ELF)
Andre Przywaracf2bb082018-09-27 10:56:05 +0100602 $${ECHO} " BIN $$@"
Chris Kay523e8642023-12-04 12:03:51 +0000603 $$(Q)$($(ARCH)-oc) -O binary $$< $$@
Evan Lloyd1c5f3602017-04-11 16:52:00 +0100604 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +0100605 @echo "Built $$@ successfully"
Evan Lloyd1c5f3602017-04-11 16:52:00 +0100606 @${ECHO_BLANK_LINE}
Juan Castilloa3487d12015-08-18 14:23:04 +0100607
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500608.PHONY: $(1)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200609ifeq ($(DISABLE_BIN_GENERATION),1)
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500610$(1): $(ELF) $(DUMP)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200611else
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500612$(1): $(BIN) $(DUMP)
Christoph Müllner4f088e42019-04-24 09:45:30 +0200613endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100614
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500615all: $(1)
Juan Castilloa3487d12015-08-18 14:23:04 +0100616
Sumit Gargeec52442019-11-14 16:33:45 +0530617ifeq ($(4),1)
618$(call ENCRYPT_FW,$(BIN),$(ENC_BIN))
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500619$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(ENC_BIN),$(3), \
Sumit Gargeec52442019-11-14 16:33:45 +0530620 $(ENC_BIN)))
621else
Zelalem Awekeb44dec12021-07-11 17:25:48 -0500622$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(BIN),$(3)))
Sumit Gargeec52442019-11-14 16:33:45 +0530623endif
Juan Castilloa3487d12015-08-18 14:23:04 +0100624
625endef
626
Soby Mathewab4181d2017-12-14 17:44:56 +0000627# Convert device tree source file names to matching blobs
628# $(1) = input dts
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000629define SOURCES_TO_DTBS
630 $(notdir $(patsubst %.dts,%.dtb,$(filter %.dts,$(1))))
631endef
632
Soby Mathewab4181d2017-12-14 17:44:56 +0000633# MAKE_FDT_DIRS macro creates the prerequisite directories that host the
634# FDT binaries
635# $(1) = output directory
636# $(2) = input dts
637define MAKE_FDT_DIRS
638 $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000639 $(eval TEMP_DTB_DIRS := $(sort $(dir ${DTBS})))
640 # The $(dir ) function leaves a trailing / on the directory names
641 # Rip off the / to match directory names with make rule targets.
642 $(eval DTB_DIRS := $(patsubst %/,%,$(TEMP_DTB_DIRS)))
643
644$(eval $(foreach objd,${DTB_DIRS},$(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR})))
645
646fdt_dirs: ${DTB_DIRS}
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000647endef
648
Soby Mathewab4181d2017-12-14 17:44:56 +0000649# MAKE_DTB generate the Flattened device tree binary
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000650# $(1) = output directory
651# $(2) = input dts
652define MAKE_DTB
653
Yann Gautierf3831802018-09-04 10:44:00 +0200654# List of DTB file(s) to generate, based on DTS file basename list
Soby Mathewab4181d2017-12-14 17:44:56 +0000655$(eval DOBJ := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Yann Gautierf3831802018-09-04 10:44:00 +0200656# List of the pre-compiled DTS file(s)
Yann Gautier2cf1dbc2018-06-18 16:00:23 +0200657$(eval DPRE := $(addprefix $(1)/,$(patsubst %.dts,%.pre.dts,$(notdir $(2)))))
Yann Gautierf3831802018-09-04 10:44:00 +0200658# Dependencies of the pre-compiled DTS file(s) on its source and included files
659$(eval DTSDEP := $(patsubst %.dtb,%.o.d,$(DOBJ)))
660# Dependencies of the DT compilation on its pre-compiled DTS
661$(eval DTBDEP := $(patsubst %.dtb,%.d,$(DOBJ)))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000662
Stephen Warrenc4d562a2018-02-21 17:13:50 -0700663$(DOBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | fdt_dirs
Andre Przywaracf2bb082018-09-27 10:56:05 +0100664 $${ECHO} " CPP $$<"
Yann Gautierf3831802018-09-04 10:44:00 +0200665 $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))))
Chris Kay523e8642023-12-04 12:03:51 +0000666 $$(Q)$($(ARCH)-cpp) -E $$(TF_CFLAGS_$(ARCH)) $$(DTC_CPPFLAGS) -MT $(DTBS) -MMD -MF $(DTSDEP) -o $(DPRE) $$<
Andre Przywaracf2bb082018-09-27 10:56:05 +0100667 $${ECHO} " DTC $$<"
Chris Kay523e8642023-12-04 12:03:51 +0000668 $$(Q)$($(ARCH)-dtc) $$(DTC_FLAGS) -d $(DTBDEP) -o $$@ $(DPRE)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000669
Yann Gautierf3831802018-09-04 10:44:00 +0200670-include $(DTBDEP)
671-include $(DTSDEP)
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000672
673endef
674
675# MAKE_DTBS builds flattened device tree sources
676# $(1) = output directory
677# $(2) = list of flattened device tree source files
678define MAKE_DTBS
679 $(eval DOBJS := $(filter %.dts,$(2)))
680 $(eval REMAIN := $(filter-out %.dts,$(2)))
Soby Mathewab4181d2017-12-14 17:44:56 +0000681 $(and $(REMAIN),$(error FDT_SOURCES contain non-DTS files: $(REMAIN)))
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000682 $(eval $(foreach obj,$(DOBJS),$(call MAKE_DTB,$(1),$(obj))))
683
Soby Mathewab4181d2017-12-14 17:44:56 +0000684 $(eval $(call MAKE_FDT_DIRS,$(1),$(2)))
685
686dtbs: $(DTBS)
687all: dtbs
Nishanth Menon4ac02ba2016-10-14 01:13:57 +0000688endef