173c99d4eSJuan Castillo# 2cbd6cec3SBoyan Karatotev# Copyright (c) 2015-2025, Arm Limited and Contributors. All rights reserved. 373c99d4eSJuan Castillo# 482cb2c1aSdp-arm# SPDX-License-Identifier: BSD-3-Clause 573c99d4eSJuan Castillo# 673c99d4eSJuan Castillo 71670d9dfSEvan Lloyd# Report an error if the eval make function is not available. 81670d9dfSEvan Lloyd$(eval eval_available := T) 91670d9dfSEvan Lloydifneq (${eval_available},T) 101670d9dfSEvan Lloyd $(error This makefile only works with a Make program that supports $$(eval)) 111670d9dfSEvan Lloydendif 121670d9dfSEvan Lloyd 13231c1470SEvan Lloyd# A user defined function to recursively search for a filename below a directory 14231c1470SEvan Lloyd# $1 is the directory root of the recursive search (blank for current directory). 15231c1470SEvan Lloyd# $2 is the file name to search for. 16231c1470SEvan Lloyddefine rwildcard 17231c1470SEvan Lloyd$(strip $(foreach d,$(wildcard ${1}*),$(call rwildcard,${d}/,${2}) $(filter $(subst *,%,%${2}),${d}))) 18231c1470SEvan Lloydendef 19231c1470SEvan Lloyd 20e444763dSBoyan Karatotev# Convenience function for setting a variable to 0 if not previously set 21e444763dSBoyan Karatotev# $(eval $(call default_zero,FOO)) 22e444763dSBoyan Karatotevdefine default_zero 23e444763dSBoyan Karatotev $(eval $(1) ?= 0) 24e444763dSBoyan Karatotevendef 25e444763dSBoyan Karatotev 26e444763dSBoyan Karatotev# Convenience function for setting a list of variables to 0 if not previously set 27e444763dSBoyan Karatotev# $(eval $(call default_zeros,FOO BAR)) 28e444763dSBoyan Karatotevdefine default_zeros 29e444763dSBoyan Karatotev $(foreach var,$1,$(eval $(call default_zero,$(var)))) 30e444763dSBoyan Karatotevendef 31e444763dSBoyan Karatotev 322a71f163SGovindraj Raja# Convenience function for setting a variable to 1 if not previously set 332a71f163SGovindraj Raja# $(eval $(call default_one,FOO)) 342a71f163SGovindraj Rajadefine default_one 352a71f163SGovindraj Raja $(eval $(1) ?= 1) 362a71f163SGovindraj Rajaendef 372a71f163SGovindraj Raja 382a71f163SGovindraj Raja# Convenience function for setting a list of variables to 1 if not previously set 392a71f163SGovindraj Raja# $(eval $(call default_ones,FOO BAR)) 402a71f163SGovindraj Rajadefine default_ones 412a71f163SGovindraj Raja $(foreach var,$1,$(eval $(call default_one,$(var)))) 422a71f163SGovindraj Rajaendef 432a71f163SGovindraj Raja 4473c99d4eSJuan Castillo# Convenience function for adding build definitions 4573c99d4eSJuan Castillo# $(eval $(call add_define,FOO)) will have: 4673c99d4eSJuan Castillo# -DFOO if $(FOO) is empty; -DFOO=$(FOO) otherwise 4773c99d4eSJuan Castillodefine add_define 4873c99d4eSJuan Castillo DEFINES += -D$(1)$(if $(value $(1)),=$(value $(1)),) 4973c99d4eSJuan Castilloendef 5073c99d4eSJuan Castillo 51327131c4SLeonardo Sandoval# Convenience function for addding multiple build definitions 52327131c4SLeonardo Sandoval# $(eval $(call add_defines,FOO BOO)) 53327131c4SLeonardo Sandovaldefine add_defines 54327131c4SLeonardo Sandoval $(foreach def,$1,$(eval $(call add_define,$(def)))) 55327131c4SLeonardo Sandovalendef 56327131c4SLeonardo Sandoval 578eadeb4aSSoren Brinkmann# Convenience function for adding build definitions 588eadeb4aSSoren Brinkmann# $(eval $(call add_define_val,FOO,BAR)) will have: 598eadeb4aSSoren Brinkmann# -DFOO=BAR 608eadeb4aSSoren Brinkmanndefine add_define_val 618eadeb4aSSoren Brinkmann DEFINES += -D$(1)=$(2) 628eadeb4aSSoren Brinkmannendef 638eadeb4aSSoren Brinkmann 6473c99d4eSJuan Castillo# Convenience function for verifying option has a boolean value 6573c99d4eSJuan Castillo# $(eval $(call assert_boolean,FOO)) will assert FOO is 0 or 1 6673c99d4eSJuan Castillodefine assert_boolean 671369fb82SYann Gautier $(if $($(1)),,$(error $(1) must not be empty)) 68be4cd40eSMasahiro Yamada $(if $(filter-out 0 1,$($1)),$(error $1 must be boolean)) 6973c99d4eSJuan Castilloendef 7073c99d4eSJuan Castillo 71327131c4SLeonardo Sandoval# Convenience function for verifying options have boolean values 72327131c4SLeonardo Sandoval# $(eval $(call assert_booleans,FOO BOO)) will assert FOO and BOO for 0 or 1 values 73327131c4SLeonardo Sandovaldefine assert_booleans 74327131c4SLeonardo Sandoval $(foreach bool,$1,$(eval $(call assert_boolean,$(bool)))) 75327131c4SLeonardo Sandovalendef 76327131c4SLeonardo Sandoval 77c877b414SJeenu Viswambharan0-9 := 0 1 2 3 4 5 6 7 8 9 78c877b414SJeenu Viswambharan 79c877b414SJeenu Viswambharan# Function to verify that a given option $(1) contains a numeric value 80c877b414SJeenu Viswambharandefine assert_numeric 81c877b414SJeenu Viswambharan$(if $($(1)),,$(error $(1) must not be empty)) 82c877b414SJeenu Viswambharan$(eval __numeric := $($(1))) 83c877b414SJeenu Viswambharan$(foreach d,$(0-9),$(eval __numeric := $(subst $(d),,$(__numeric)))) 84c877b414SJeenu Viswambharan$(if $(__numeric),$(error $(1) must be numeric)) 85c877b414SJeenu Viswambharanendef 86c877b414SJeenu Viswambharan 87327131c4SLeonardo Sandoval# Convenience function for verifying options have numeric values 88327131c4SLeonardo Sandoval# $(eval $(call assert_numerics,FOO BOO)) will assert FOO and BOO contain numeric values 89327131c4SLeonardo Sandovaldefine assert_numerics 90327131c4SLeonardo Sandoval $(foreach num,$1,$(eval $(call assert_numeric,$(num)))) 91327131c4SLeonardo Sandovalendef 92327131c4SLeonardo Sandoval 93a5f09cf7SMarco Felsch# Convenience function to check for a given linker option. An call to 94a5f09cf7SMarco Felsch# $(call ld_option, --no-XYZ) will return --no-XYZ if supported by the linker 95ffb77421SChris Kayld_option = $(shell $($(ARCH)-ld) $(1) -Wl,--version >/dev/null 2>&1 || $($(ARCH)-ld) $(1) -v >/dev/null 2>&1 && echo $(1)) 96a5f09cf7SMarco Felsch 97dea23e24SGovindraj Raja# Convenience function to check for a given compiler option. A call to 98dea23e24SGovindraj Raja# $(call cc_option, --no-XYZ) will return --no-XYZ if supported by the compiler 99316f5c97SBoyan Karatotev# NOTE: consider assigning to an immediately expanded temporary variable before 100316f5c97SBoyan Karatotev# assigning. This is because variables like TF_CFLAGS are recursively expanded 101316f5c97SBoyan Karatotev# and assigning this directly will cause it to be expanded every time the 102316f5c97SBoyan Karatotev# variable is used, potentially thrashing multicore performance. 103dea23e24SGovindraj Rajadefine cc_option 104ffb77421SChris Kay $(shell if $($(ARCH)-cc) $(1) -c -x c /dev/null -o /dev/null >/dev/null 2>&1; then echo $(1); fi ) 105dea23e24SGovindraj Rajaendef 106dea23e24SGovindraj Raja 1078c7b944aSVijayenthiran Subramaniam# CREATE_SEQ is a recursive function to create sequence of numbers from 1 to 1088c7b944aSVijayenthiran Subramaniam# $(2) and assign the sequence to $(1) 1098c7b944aSVijayenthiran Subramaniamdefine CREATE_SEQ 1108c7b944aSVijayenthiran Subramaniam$(if $(word $(2), $($(1))),\ 1118c7b944aSVijayenthiran Subramaniam $(eval $(1) += $(words $($(1))))\ 1128c7b944aSVijayenthiran Subramaniam $(eval $(1) := $(filter-out 0,$($(1)))),\ 1138c7b944aSVijayenthiran Subramaniam $(eval $(1) += $(words $($(1))))\ 1148c7b944aSVijayenthiran Subramaniam $(call CREATE_SEQ,$(1),$(2))\ 1158c7b944aSVijayenthiran Subramaniam) 1168c7b944aSVijayenthiran Subramaniamendef 1178c7b944aSVijayenthiran Subramaniam 11873c99d4eSJuan Castillo# IMG_MAPFILE defines the output file describing the memory map corresponding 11973c99d4eSJuan Castillo# to a BL stage 120434d0491SZelalem Aweke# $(1) = BL stage 12173c99d4eSJuan Castillodefine IMG_MAPFILE 122434d0491SZelalem Aweke ${BUILD_DIR}/$(1).map 12373c99d4eSJuan Castilloendef 12473c99d4eSJuan Castillo 12573c99d4eSJuan Castillo# IMG_ELF defines the elf file corresponding to a BL stage 126434d0491SZelalem Aweke# $(1) = BL stage 12773c99d4eSJuan Castillodefine IMG_ELF 128434d0491SZelalem Aweke ${BUILD_DIR}/$(1).elf 12973c99d4eSJuan Castilloendef 13073c99d4eSJuan Castillo 13173c99d4eSJuan Castillo# IMG_DUMP defines the symbols dump file corresponding to a BL stage 132434d0491SZelalem Aweke# $(1) = BL stage 13373c99d4eSJuan Castillodefine IMG_DUMP 134434d0491SZelalem Aweke ${BUILD_DIR}/$(1).dump 13573c99d4eSJuan Castilloendef 13673c99d4eSJuan Castillo 13773c99d4eSJuan Castillo# IMG_BIN defines the default image file corresponding to a BL stage 138434d0491SZelalem Aweke# $(1) = BL stage 13973c99d4eSJuan Castillodefine IMG_BIN 140434d0491SZelalem Aweke ${BUILD_PLAT}/$(1).bin 14173c99d4eSJuan Castilloendef 14273c99d4eSJuan Castillo 143c6ba9b45SSumit Garg# IMG_ENC_BIN defines the default encrypted image file corresponding to a 144c6ba9b45SSumit Garg# BL stage 145434d0491SZelalem Aweke# $(1) = BL stage 146c6ba9b45SSumit Gargdefine IMG_ENC_BIN 147434d0491SZelalem Aweke ${BUILD_PLAT}/$(1)_enc.bin 148c6ba9b45SSumit Gargendef 149c6ba9b45SSumit Garg 150c6ba9b45SSumit Garg# ENCRYPT_FW invokes enctool to encrypt firmware binary 151c6ba9b45SSumit Garg# $(1) = input firmware binary 152c6ba9b45SSumit Garg# $(2) = output encrypted firmware binary 153c6ba9b45SSumit Gargdefine ENCRYPT_FW 154c6ba9b45SSumit Garg$(2): $(1) enctool 1557c4e1eeaSChris Kay $$(s)echo " ENC $$<" 1567c4e1eeaSChris Kay $$(q)$$(ENCTOOL) $$(ENC_ARGS) -i $$< -o $$@ 157c6ba9b45SSumit Gargendef 158c6ba9b45SSumit Garg 15910cea934SMasahiro Yamada# TOOL_ADD_PAYLOAD appends the command line arguments required by fiptool to 16010cea934SMasahiro Yamada# package a new payload and/or by cert_create to generate certificate. 16110cea934SMasahiro Yamada# Optionally, it adds the dependency on this payload 16273c99d4eSJuan Castillo# $(1) = payload filename (i.e. bl31.bin) 1631e0c0784SMasahiro Yamada# $(2) = command line option for the specified payload (i.e. --soc-fw) 16436af3455SMasahiro Yamada# $(3) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin) 1651dc0714fSMasahiro Yamada# $(4) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip) 166c6ba9b45SSumit Garg# $(5) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin) 16710cea934SMasahiro Yamadadefine TOOL_ADD_PAYLOAD 168c6ba9b45SSumit Gargifneq ($(5),) 169c6ba9b45SSumit Garg $(4)FIP_ARGS += $(2) $(5) 170c6ba9b45SSumit Garg $(if $(3),$(4)CRT_DEPS += $(1)) 171c6ba9b45SSumit Gargelse 172945b316fSMasahiro Yamada $(4)FIP_ARGS += $(2) $(1) 173c6ba9b45SSumit Garg $(if $(3),$(4)CRT_DEPS += $(3)) 174c6ba9b45SSumit Gargendif 175945b316fSMasahiro Yamada $(if $(3),$(4)FIP_DEPS += $(3)) 176f30ee0b9SMasahiro Yamada $(4)CRT_ARGS += $(2) $(1) 17773c99d4eSJuan Castilloendef 17873c99d4eSJuan Castillo 1792da522bbSMasahiro Yamada# TOOL_ADD_IMG_PAYLOAD works like TOOL_ADD_PAYLOAD, but applies image filters 1802da522bbSMasahiro Yamada# before passing them to host tools if BL*_PRE_TOOL_FILTER is defined. 1812da522bbSMasahiro Yamada# $(1) = image_type (scp_bl2, bl33, etc.) 1822da522bbSMasahiro Yamada# $(2) = payload filepath (ex. build/fvp/release/bl31.bin) 1832da522bbSMasahiro Yamada# $(3) = command line option for the specified payload (ex. --soc-fw) 1842da522bbSMasahiro Yamada# $(4) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin) 1852da522bbSMasahiro Yamada# $(5) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip) 186c6ba9b45SSumit Garg# $(6) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin) 1872da522bbSMasahiro Yamada 1882da522bbSMasahiro Yamadadefine TOOL_ADD_IMG_PAYLOAD 1892da522bbSMasahiro Yamada 190f7a41fb4SBoyan Karatotev$(eval PRE_TOOL_FILTER := $($(1)_PRE_TOOL_FILTER)) 1912da522bbSMasahiro Yamada 1922da522bbSMasahiro Yamadaifneq ($(PRE_TOOL_FILTER),) 1932da522bbSMasahiro Yamada 1942da522bbSMasahiro Yamada$(eval PROCESSED_PATH := $(BUILD_PLAT)/$(1).bin$($(PRE_TOOL_FILTER)_SUFFIX)) 1952da522bbSMasahiro Yamada 1962da522bbSMasahiro Yamada$(call $(PRE_TOOL_FILTER)_RULE,$(PROCESSED_PATH),$(2)) 1972da522bbSMasahiro Yamada 1982da522bbSMasahiro Yamada$(PROCESSED_PATH): $(4) 1992da522bbSMasahiro Yamada 200c6ba9b45SSumit Garg$(call TOOL_ADD_PAYLOAD,$(PROCESSED_PATH),$(3),$(PROCESSED_PATH),$(5),$(6)) 2012da522bbSMasahiro Yamada 2022da522bbSMasahiro Yamadaelse 203c6ba9b45SSumit Garg$(call TOOL_ADD_PAYLOAD,$(2),$(3),$(4),$(5),$(6)) 2042da522bbSMasahiro Yamadaendif 2052da522bbSMasahiro Yamadaendef 2062da522bbSMasahiro Yamada 2070191262dSYatharth Kochar# CERT_ADD_CMD_OPT adds a new command line option to the cert_create invocation 20873c99d4eSJuan Castillo# $(1) = parameter filename 20973c99d4eSJuan Castillo# $(2) = cert_create command line option for the specified parameter 21091704d9dSMasahiro Yamada# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip) 21173c99d4eSJuan Castillodefine CERT_ADD_CMD_OPT 21291704d9dSMasahiro Yamada $(3)CRT_ARGS += $(2) $(1) 21373c99d4eSJuan Castilloendef 21473c99d4eSJuan Castillo 215c939d13aSMasahiro Yamada# TOOL_ADD_IMG allows the platform to specify an external image to be packed 216c939d13aSMasahiro Yamada# in the FIP and/or for which certificate is generated. It also adds a 217c939d13aSMasahiro Yamada# dependency on the image file, aborting the build if the file does not exist. 21833950dd8SMasahiro Yamada# $(1) = image_type (scp_bl2, bl33, etc.) 2191e0c0784SMasahiro Yamada# $(2) = command line option for fiptool (--scp-fw, --nt-fw, etc) 2201dc0714fSMasahiro Yamada# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip) 221c6ba9b45SSumit Garg# $(4) = Image encryption flag (optional) (0, 1) 22273c99d4eSJuan Castillo# Example: 22333950dd8SMasahiro Yamada# $(eval $(call TOOL_ADD_IMG,bl33,--nt-fw)) 224c939d13aSMasahiro Yamadadefine TOOL_ADD_IMG 22533950dd8SMasahiro Yamada # Build option to specify the image filename (SCP_BL2, BL33, etc) 22633950dd8SMasahiro Yamada # This is the uppercase form of the first parameter 227f7a41fb4SBoyan Karatotev $(eval BL := $(call uppercase,$(1))) 228f7a41fb4SBoyan Karatotev $(eval _V := $(BL)) 22933950dd8SMasahiro Yamada 2304727fd13SPali Rohár # $(check_$(1)_cmd) variable is executed in the check_$(1) target and also 2314727fd13SPali Rohár # is put into the ${CHECK_$(3)FIP_CMD} variable which is executed by the 2324727fd13SPali Rohár # target ${BUILD_PLAT}/${$(3)FIP_NAME}. 2334727fd13SPali Rohár $(eval check_$(1)_cmd := \ 2344727fd13SPali Rohár $(if $(value $(_V)),,$$$$(error "Platform '${PLAT}' requires $(_V). Please set $(_V) to point to the right file")) \ 2354727fd13SPali Rohár $(if $(wildcard $(value $(_V))),,$$$$(error '$(_V)=$(value $(_V))' was specified, but '$(value $(_V))' does not exist)) \ 2364727fd13SPali Rohár ) 2374727fd13SPali Rohár 238945b316fSMasahiro Yamada $(3)CRT_DEPS += check_$(1) 2394727fd13SPali Rohár CHECK_$(3)FIP_CMD += $$(check_$(1)_cmd) 240c6ba9b45SSumit Gargifeq ($(4),1) 241c6ba9b45SSumit Garg $(eval ENC_BIN := ${BUILD_PLAT}/$(1)_enc.bin) 242c6ba9b45SSumit Garg $(call ENCRYPT_FW,$(value $(_V)),$(ENC_BIN)) 243f7a41fb4SBoyan Karatotev $(call TOOL_ADD_IMG_PAYLOAD,$(BL),$(value $(_V)),$(2),$(ENC_BIN),$(3), \ 244c6ba9b45SSumit Garg $(ENC_BIN)) 245c6ba9b45SSumit Gargelse 246f7a41fb4SBoyan Karatotev $(call TOOL_ADD_IMG_PAYLOAD,$(BL),$(value $(_V)),$(2),$(if $(wildcard $(value $(_V))),$(value $(_V)),FORCE),$(3)) 247c6ba9b45SSumit Gargendif 2480191262dSYatharth Kochar 24987ebd20dSMasahiro Yamada.PHONY: check_$(1) 2500191262dSYatharth Kocharcheck_$(1): 2514727fd13SPali Rohár $(check_$(1)_cmd) 2520191262dSYatharth Kocharendef 25373c99d4eSJuan Castillo 254cf2dd17dSJuan Pablo Conde# SELECT_OPENSSL_API_VERSION selects the OpenSSL API version to be used to 255cf2dd17dSJuan Pablo Conde# build the host tools by checking the version of OpenSSL located under 256cf2dd17dSJuan Pablo Conde# the path defined by the OPENSSL_DIR variable. It receives no parameters. 257cf2dd17dSJuan Pablo Condedefine SELECT_OPENSSL_API_VERSION 258cf2dd17dSJuan Pablo Conde # Set default value for USING_OPENSSL3 macro to 0 259cf2dd17dSJuan Pablo Conde $(eval USING_OPENSSL3 = 0) 260cf2dd17dSJuan Pablo Conde # Obtain the OpenSSL version for the build located under OPENSSL_DIR 261cf2dd17dSJuan Pablo Conde $(eval OPENSSL_INFO := $(shell LD_LIBRARY_PATH=${OPENSSL_DIR}:${OPENSSL_DIR}/lib ${OPENSSL_BIN_PATH}/openssl version)) 262cf2dd17dSJuan Pablo Conde $(eval OPENSSL_CURRENT_VER = $(word 2, ${OPENSSL_INFO})) 263cf2dd17dSJuan Pablo Conde $(eval OPENSSL_CURRENT_VER_MAJOR = $(firstword $(subst ., ,$(OPENSSL_CURRENT_VER)))) 264cf2dd17dSJuan Pablo Conde # If OpenSSL version is 3.x, then set USING_OPENSSL3 flag to 1 265cf2dd17dSJuan Pablo Conde $(if $(filter 3,$(OPENSSL_CURRENT_VER_MAJOR)), $(eval USING_OPENSSL3 = 1)) 266cf2dd17dSJuan Pablo Condeendef 267cf2dd17dSJuan Pablo Conde 26873c99d4eSJuan Castillo################################################################################ 26914db8908SMasahiro Yamada# Generic image processing filters 27014db8908SMasahiro Yamada################################################################################ 27114db8908SMasahiro Yamada 27214db8908SMasahiro Yamada# GZIP 27314db8908SMasahiro Yamadadefine GZIP_RULE 27414db8908SMasahiro Yamada$(1): $(2) 2757c4e1eeaSChris Kay $(s)echo " GZIP $$@" 2767c4e1eeaSChris Kay $(q)gzip -n -f -9 $$< --stdout > $$@ 27714db8908SMasahiro Yamadaendef 27814db8908SMasahiro Yamada 27914db8908SMasahiro YamadaGZIP_SUFFIX := .gz 28014db8908SMasahiro Yamada 28114db8908SMasahiro Yamada################################################################################ 28273c99d4eSJuan Castillo# Auxiliary macros to build TF images from sources 28373c99d4eSJuan Castillo################################################################################ 28473c99d4eSJuan Castillo 285a7bbd8e7SChris KayMAKE_DEP = -Wp,-MD,$1 -MT $2 -MP 28673c99d4eSJuan Castillo 287cbd6cec3SBoyan Karatotev# MAKE_TOOL_C builds a C source file and generates the dependency file 288cbd6cec3SBoyan Karatotev# $(1) = output directory 289cbd6cec3SBoyan Karatotev# $(2) = source file (%.c) 290cbd6cec3SBoyan Karatotev# $(3) = lowercase name of the tool 291cbd6cec3SBoyan Karatotev# $(4) = uppercase name of the tool 292cbd6cec3SBoyan Karatotevdefine MAKE_TOOL_C 293cbd6cec3SBoyan Karatotev 294cbd6cec3SBoyan Karatotev$(eval SRC := $(2)) 295cbd6cec3SBoyan Karatotev$(eval OBJ := $(patsubst %.c,$(1)/$(3)/%.o,$(SRC))) 296cbd6cec3SBoyan Karatotev$(eval DEP := $(patsubst %.o,%.d,$(OBJ))) 297cbd6cec3SBoyan Karatotev 298cbd6cec3SBoyan Karatotev$(eval TOOL_DEFINES := $($(4)_DEFINES)) 299cbd6cec3SBoyan Karatotev$(eval TOOL_INCLUDE_DIRS := $($(4)_INCLUDE_DIRS)) 300cbd6cec3SBoyan Karatotev$(eval TOOL_CPPFLAGS := $($(4)_CPPFLAGS) $(addprefix -D,$(TOOL_DEFINES)) $(addprefix -I,$(TOOL_INCLUDE_DIRS))) 301cbd6cec3SBoyan Karatotev$(eval TOOL_CFLAGS := $($(4)_CFLAGS)) 302cbd6cec3SBoyan Karatotev 303cbd6cec3SBoyan Karatotev$(OBJ): $(SRC) $(filter-out %.d,$(MAKEFILE_LIST)) | $$$$(@D)/ 304cbd6cec3SBoyan Karatotev $$(s)echo " HOSTCC $$<" 305cbd6cec3SBoyan Karatotev $$(q)$(host-cc) $$(HOSTCCFLAGS) $(TOOL_CPPFLAGS) $(TOOL_CFLAGS) $(call MAKE_DEP,$(DEP),$(OBJ)) -c $$< -o $$@ 306cbd6cec3SBoyan Karatotev 307cbd6cec3SBoyan Karatotev-include $(DEP) 308cbd6cec3SBoyan Karatotev 309cbd6cec3SBoyan Karatotevendef 310cbd6cec3SBoyan Karatotev 311cbd6cec3SBoyan Karatotev# MAKE_TOOL 312cbd6cec3SBoyan Karatotev# $(1) = output directory 313cbd6cec3SBoyan Karatotev# $(2) = lowercase name of the tool 314cbd6cec3SBoyan Karatotev# $(3) = uppercase name of the tool 315cbd6cec3SBoyan Karatotevdefine MAKE_TOOL 316cbd6cec3SBoyan Karatotev$(eval SRCS := $($(3)_SOURCES)) 317cbd6cec3SBoyan Karatotev$(eval OBJS := $(patsubst %.c,$(1)/$(2)/%.o,$(SRCS))) 318cbd6cec3SBoyan Karatotev$(eval DST := $(1)/$(2)/$(2)$(.exe)) 319cbd6cec3SBoyan Karatotev$(eval $(foreach src,$(SRCS),$(call MAKE_TOOL_C,$(1),$(src),$(2),$(3)))) 320cbd6cec3SBoyan Karatotev 321cbd6cec3SBoyan Karatotev$(DST): $(OBJS) $(filter-out %.d,$(MAKEFILE_LIST)) 322cbd6cec3SBoyan Karatotev $$(s)echo " HOSTLD $$@" 323cbd6cec3SBoyan Karatotev $$(q)$(host-cc) $${OBJS} -o $$@ $($(3)_LDFLAGS) 324cbd6cec3SBoyan Karatotev $$(s)echo 325cbd6cec3SBoyan Karatotev $$(s)echo "Built $$@ successfully" 326cbd6cec3SBoyan Karatotev $$(s)echo 327cbd6cec3SBoyan Karatotev 328cbd6cec3SBoyan Karatotevall: $(DST) 329cbd6cec3SBoyan Karatotevendef 3305fee0287SRoberto Vargas 3315fee0287SRoberto Vargas# MAKE_C_LIB builds a C source file and generates the dependency file 3325fee0287SRoberto Vargas# $(1) = output directory 3335fee0287SRoberto Vargas# $(2) = source file (%.c) 3345fee0287SRoberto Vargas# $(3) = library name 335f7a41fb4SBoyan Karatotev# $(4) = uppercase name of the library 3365fee0287SRoberto Vargasdefine MAKE_C_LIB 3375fee0287SRoberto Vargas$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2)))) 3385fee0287SRoberto Vargas$(eval DEP := $(patsubst %.o,%.d,$(OBJ))) 339f7a41fb4SBoyan Karatotev$(eval LIB := $(notdir $(1))) 3405fee0287SRoberto Vargas 341f4dd18c2SChris Kay$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $$$$(@D)/ 3427c4e1eeaSChris Kay $$(s)echo " CC $$<" 3436bb9f053SBoyan Karatotev $$(q)$($(ARCH)-cc) $$($(LIB)_CFLAGS) $$(TF_CFLAGS) $(call MAKE_DEP,$(DEP),$(OBJ)) -c $$< -o $$@ 3445fee0287SRoberto Vargas 3455fee0287SRoberto Vargas-include $(DEP) 3465fee0287SRoberto Vargas 3475fee0287SRoberto Vargasendef 3485fee0287SRoberto Vargas 34970b0f278SAntonio Nino Diaz# MAKE_S_LIB builds an assembly source file and generates the dependency file 35070b0f278SAntonio Nino Diaz# $(1) = output directory 35170b0f278SAntonio Nino Diaz# $(2) = source file (%.S) 35270b0f278SAntonio Nino Diaz# $(3) = library name 353f7a41fb4SBoyan Karatotev# $(4) = uppercase name of the library 35470b0f278SAntonio Nino Diazdefine MAKE_S_LIB 35570b0f278SAntonio Nino Diaz$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2)))) 35670b0f278SAntonio Nino Diaz$(eval DEP := $(patsubst %.o,%.d,$(OBJ))) 35770b0f278SAntonio Nino Diaz 358f4dd18c2SChris Kay$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $$$$(@D)/ 3597c4e1eeaSChris Kay $$(s)echo " AS $$<" 360*7416eb2fSBoyan Karatotev $$(q)$($(ARCH)-as) -x assembler-with-cpp $$(TF_CFLAGS) $$(ASFLAGS) $(call MAKE_DEP,$(DEP),$(OBJ)) -c $$< -o $$@ 36170b0f278SAntonio Nino Diaz 36270b0f278SAntonio Nino Diaz-include $(DEP) 36370b0f278SAntonio Nino Diaz 36470b0f278SAntonio Nino Diazendef 36570b0f278SAntonio Nino Diaz 3665fee0287SRoberto Vargas 36773c99d4eSJuan Castillo# MAKE_C builds a C source file and generates the dependency file 36873c99d4eSJuan Castillo# $(1) = output directory 36973c99d4eSJuan Castillo# $(2) = source file (%.c) 370434d0491SZelalem Aweke# $(3) = BL stage 371f7a41fb4SBoyan Karatotev# $(4) = uppercase BL stage 37273c99d4eSJuan Castillodefine MAKE_C 37373c99d4eSJuan Castillo 37473c99d4eSJuan Castillo$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2)))) 375710ea1d0SMasahiro Yamada$(eval DEP := $(patsubst %.o,%.d,$(OBJ))) 376a123cb14SChris Kay 377500927efSBoyan Karatotev$(eval BL_DEFINES := IMAGE_$(4) $($(4)_DEFINES)) 378500927efSBoyan Karatotev$(eval BL_INCLUDE_DIRS := $($(4)_INCLUDE_DIRS)) 379500927efSBoyan Karatotev$(eval BL_CPPFLAGS := $($(4)_CPPFLAGS) $(addprefix -D,$(BL_DEFINES)) $(addprefix -I,$(BL_INCLUDE_DIRS))) 380500927efSBoyan Karatotev$(eval BL_CFLAGS := $($(4)_CFLAGS)) 38173c99d4eSJuan Castillo 382f4dd18c2SChris Kay$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $$$$(@D)/ 3837c4e1eeaSChris Kay $$(s)echo " CC $$<" 3846bb9f053SBoyan Karatotev $$(q)$($(ARCH)-cc) $$(LTO_CFLAGS) $$(TF_CFLAGS) $(BL_CPPFLAGS) $(BL_CFLAGS) $(call MAKE_DEP,$(DEP),$(OBJ)) -c $$< -o $$@ 38573c99d4eSJuan Castillo 386710ea1d0SMasahiro Yamada-include $(DEP) 38773c99d4eSJuan Castillo 38873c99d4eSJuan Castilloendef 38973c99d4eSJuan Castillo 39073c99d4eSJuan Castillo 39173c99d4eSJuan Castillo# MAKE_S builds an assembly source file and generates the dependency file 39273c99d4eSJuan Castillo# $(1) = output directory 39373c99d4eSJuan Castillo# $(2) = assembly file (%.S) 394434d0491SZelalem Aweke# $(3) = BL stage 395f7a41fb4SBoyan Karatotev# $(4) = uppercase BL stage 39673c99d4eSJuan Castillodefine MAKE_S 39773c99d4eSJuan Castillo 39873c99d4eSJuan Castillo$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2)))) 399710ea1d0SMasahiro Yamada$(eval DEP := $(patsubst %.o,%.d,$(OBJ))) 400a123cb14SChris Kay 401500927efSBoyan Karatotev$(eval BL_DEFINES := IMAGE_$(4) $($(4)_DEFINES)) 402500927efSBoyan Karatotev$(eval BL_INCLUDE_DIRS := $($(4)_INCLUDE_DIRS)) 403500927efSBoyan Karatotev$(eval BL_CPPFLAGS := $($(4)_CPPFLAGS) $(addprefix -D,$(BL_DEFINES)) $(addprefix -I,$(BL_INCLUDE_DIRS))) 404500927efSBoyan Karatotev$(eval BL_ASFLAGS := $($(4)_ASFLAGS)) 40573c99d4eSJuan Castillo 406f4dd18c2SChris Kay$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $$$$(@D)/ 4077c4e1eeaSChris Kay $$(s)echo " AS $$<" 408*7416eb2fSBoyan Karatotev $$(q)$($(ARCH)-as) -x assembler-with-cpp $$(TF_CFLAGS) $$(ASFLAGS) $(BL_CPPFLAGS) $(BL_ASFLAGS) $(call MAKE_DEP,$(DEP),$(OBJ)) -c $$< -o $$@ 40973c99d4eSJuan Castillo 410710ea1d0SMasahiro Yamada-include $(DEP) 41173c99d4eSJuan Castillo 41273c99d4eSJuan Castilloendef 41373c99d4eSJuan Castillo 4141e8b5354SBoyan Karatotev# MAKE_PRE run the C preprocessor on a file 4151e8b5354SBoyan Karatotev# $(1) = output file 4161e8b5354SBoyan Karatotev# $(2) = list of input files 4171e8b5354SBoyan Karatotev# $(3) = dep file 4181e8b5354SBoyan Karatotev# $(4) = list of rule-specific flags to pass 4191e8b5354SBoyan Karatotevdefine MAKE_PRE 4201e8b5354SBoyan Karatotev$(eval OUT := $(1)) 4211e8b5354SBoyan Karatotev$(eval SRC := $(2)) 4221e8b5354SBoyan Karatotev$(eval DEP := $(3)) 4231e8b5354SBoyan Karatotev$(eval CUSTOM_FLAGS := $(4)) 4241e8b5354SBoyan Karatotev$(OUT): $(SRC) $(filter-out %.d,$(MAKEFILE_LIST)) | $$$$(@D)/ 4251e8b5354SBoyan Karatotev $$(s)echo " CPP $$<" 4261e8b5354SBoyan Karatotev $$(q)$($(ARCH)-cpp) -E -P -x assembler-with-cpp $$(TF_CFLAGS) $(CUSTOM_FLAGS) $(call MAKE_DEP,$(DEP),$(OUT)) -o $$@ $$< 4271e8b5354SBoyan Karatotevendef 42873c99d4eSJuan Castillo 42973c99d4eSJuan Castillo# MAKE_LD generate the linker script using the C preprocessor 43073c99d4eSJuan Castillo# $(1) = output linker script 43173c99d4eSJuan Castillo# $(2) = input template 432434d0491SZelalem Aweke# $(3) = BL stage 433f7a41fb4SBoyan Karatotev# $(4) = uppercase BL stage 43473c99d4eSJuan Castillodefine MAKE_LD 43573c99d4eSJuan Castillo 436710ea1d0SMasahiro Yamada$(eval DEP := $(1).d) 437a123cb14SChris Kay 438500927efSBoyan Karatotev$(eval BL_DEFINES := IMAGE_$(4) $($(4)_DEFINES)) 439500927efSBoyan Karatotev$(eval BL_INCLUDE_DIRS := $($(4)_INCLUDE_DIRS)) 440500927efSBoyan Karatotev$(eval BL_CPPFLAGS := $($(4)_CPPFLAGS) $(addprefix -D,$(BL_DEFINES)) $(addprefix -I,$(BL_INCLUDE_DIRS))) 4411e8b5354SBoyan Karatotev$(eval FLAGS := -D__LINKER__ $(BL_CPPFLAGS)) 44273c99d4eSJuan Castillo 4431e8b5354SBoyan Karatotev$(eval $(call MAKE_PRE,$(1),$(2),$(DEP),$(FLAGS))) 444710ea1d0SMasahiro Yamada-include $(DEP) 44573c99d4eSJuan Castillo 44673c99d4eSJuan Castilloendef 44773c99d4eSJuan Castillo 44870b0f278SAntonio Nino Diaz# MAKE_LIB_OBJS builds both C and assembly source files 4495fee0287SRoberto Vargas# $(1) = output directory 4505fee0287SRoberto Vargas# $(2) = list of source files 4515fee0287SRoberto Vargas# $(3) = name of the library 452f7a41fb4SBoyan Karatotev# $(4) = uppercase name of the library 4535fee0287SRoberto Vargasdefine MAKE_LIB_OBJS 4545fee0287SRoberto Vargas $(eval C_OBJS := $(filter %.c,$(2))) 4555fee0287SRoberto Vargas $(eval REMAIN := $(filter-out %.c,$(2))) 456f7a41fb4SBoyan Karatotev $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C_LIB,$(1),$(obj),$(3),$(4)))) 4575fee0287SRoberto Vargas 45870b0f278SAntonio Nino Diaz $(eval S_OBJS := $(filter %.S,$(REMAIN))) 45970b0f278SAntonio Nino Diaz $(eval REMAIN := $(filter-out %.S,$(REMAIN))) 460f7a41fb4SBoyan Karatotev $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S_LIB,$(1),$(obj),$(3),$(4)))) 46170b0f278SAntonio Nino Diaz 4625fee0287SRoberto Vargas $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN))) 4635fee0287SRoberto Vargasendef 4645fee0287SRoberto Vargas 46573c99d4eSJuan Castillo 46673c99d4eSJuan Castillo# MAKE_OBJS builds both C and assembly source files 46773c99d4eSJuan Castillo# $(1) = output directory 46873c99d4eSJuan Castillo# $(2) = list of source files (both C and assembly) 469434d0491SZelalem Aweke# $(3) = BL stage 470f7a41fb4SBoyan Karatotev# $(4) = uppercase BL stage 47173c99d4eSJuan Castillodefine MAKE_OBJS 47273c99d4eSJuan Castillo $(eval C_OBJS := $(filter %.c,$(2))) 47373c99d4eSJuan Castillo $(eval REMAIN := $(filter-out %.c,$(2))) 474f7a41fb4SBoyan Karatotev $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj),$(3),$(4)))) 47573c99d4eSJuan Castillo 47673c99d4eSJuan Castillo $(eval S_OBJS := $(filter %.S,$(REMAIN))) 47773c99d4eSJuan Castillo $(eval REMAIN := $(filter-out %.S,$(REMAIN))) 478f7a41fb4SBoyan Karatotev $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj),$(3),$(4)))) 47973c99d4eSJuan Castillo 48073c99d4eSJuan Castillo $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN))) 48173c99d4eSJuan Castilloendef 48273c99d4eSJuan Castillo 48373c99d4eSJuan Castillo 48473c99d4eSJuan Castillo# NOTE: The line continuation '\' is required in the next define otherwise we 48573c99d4eSJuan Castillo# end up with a line-feed characer at the end of the last c filename. 486e7f54dbdSEvan Lloyd# Also bear this issue in mind if extending the list of supported filetypes. 48773c99d4eSJuan Castillodefine SOURCES_TO_OBJS 48873c99d4eSJuan Castillo $(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \ 48973c99d4eSJuan Castillo $(notdir $(patsubst %.S,%.o,$(filter %.S,$(1)))) 49073c99d4eSJuan Castilloendef 49173c99d4eSJuan Castillo 4925fee0287SRoberto Vargas.PHONY: libraries 4935fee0287SRoberto Vargas 4945fee0287SRoberto Vargas# MAKE_LIB macro defines the targets and options to build each BL image. 4955fee0287SRoberto Vargas# Arguments: 4965fee0287SRoberto Vargas# $(1) = Library name 4975fee0287SRoberto Vargasdefine MAKE_LIB 498f7a41fb4SBoyan Karatotev $(eval BL := $(call uppercase,$(1))) 4995fee0287SRoberto Vargas $(eval BUILD_DIR := ${BUILD_PLAT}/lib$(1)) 5005fee0287SRoberto Vargas $(eval LIB_DIR := ${BUILD_PLAT}/lib) 5015accce5bSRoberto Vargas $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib) 502f7a41fb4SBoyan Karatotev $(eval SOURCES := $(LIB$(BL)_SRCS)) 5035fee0287SRoberto Vargas $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES)))) 5045fee0287SRoberto Vargas 505f7a41fb4SBoyan Karatotev$(eval $(call MAKE_LIB_OBJS,$(BUILD_DIR),$(SOURCES),$(1),$(BL))) 5065fee0287SRoberto Vargas 5075fee0287SRoberto Vargaslibraries: ${LIB_DIR}/lib$(1).a 5088620bd0bSChris Kayifeq ($($(ARCH)-ld-id),arm-link) 509c2ad38ceSVarun WadekarLDPATHS = --userlibpath=${LIB_DIR} 510c2ad38ceSVarun WadekarLDLIBS += --library=$(1) 511c2ad38ceSVarun Wadekarelse 5125fee0287SRoberto VargasLDPATHS = -L${LIB_DIR} 5135fee0287SRoberto VargasLDLIBS += -l$(1) 514c2ad38ceSVarun Wadekarendif 5155fee0287SRoberto Vargas 5165accce5bSRoberto Vargasifeq ($(USE_ROMLIB),1) 5176baf85b3SSathees BalyaLIBWRAPPER = -lwrappers 5185accce5bSRoberto Vargasendif 5195accce5bSRoberto Vargas 5205fee0287SRoberto Vargasall: ${LIB_DIR}/lib$(1).a 5215fee0287SRoberto Vargas 522f4dd18c2SChris Kay${LIB_DIR}/lib$(1).a: $(OBJS) | $$$$(@D)/ 5237c4e1eeaSChris Kay $$(s)echo " AR $$@" 5247c4e1eeaSChris Kay $$(q)$($(ARCH)-ar) cr $$@ $$? 5255fee0287SRoberto Vargasendef 5265fee0287SRoberto Vargas 52782274936SChris Kay# Generate the path to one or more preprocessed linker scripts given the paths 52882274936SChris Kay# of their sources. 52982274936SChris Kay# 53082274936SChris Kay# Arguments: 53182274936SChris Kay# $(1) = path to one or more linker script sources 53282274936SChris Kaydefine linker_script_path 53382274936SChris Kay $(patsubst %.S,$(BUILD_DIR)/%,$(1)) 53482274936SChris Kayendef 53582274936SChris Kay 536d95d56bdSJimmy Brissonifeq ($(USE_ROMLIB),1) 537d95d56bdSJimmy BrissonWRAPPER_FLAGS := @${BUILD_PLAT}/romlib/romlib.ldflags 538d95d56bdSJimmy Brissonendif 539d95d56bdSJimmy Brisson 54073c99d4eSJuan Castillo# MAKE_BL macro defines the targets and options to build each BL image. 54173c99d4eSJuan Castillo# Arguments: 542434d0491SZelalem Aweke# $(1) = BL stage 5438f0617efSJuan Castillo# $(2) = FIP command line option (if empty, image will not be included in the FIP) 5441dc0714fSMasahiro Yamada# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip) 545c6ba9b45SSumit Garg# $(4) = BL encryption flag (optional) (0, 1) 54673c99d4eSJuan Castillodefine MAKE_BL 547f7a41fb4SBoyan Karatotev $(eval BL := $(call uppercase,$(1))) 548434d0491SZelalem Aweke $(eval BUILD_DIR := ${BUILD_PLAT}/$(1)) 549f7a41fb4SBoyan Karatotev $(eval BL_SOURCES := $($(BL)_SOURCES)) 550bb22fb84SChris Kay $(eval SOURCES := $(sort $(BL_SOURCES) $(BL_COMMON_SOURCES) $(PLAT_BL_COMMON_SOURCES))) 55173c99d4eSJuan Castillo $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES)))) 55273c99d4eSJuan Castillo $(eval MAPFILE := $(call IMG_MAPFILE,$(1))) 55373c99d4eSJuan Castillo $(eval ELF := $(call IMG_ELF,$(1))) 55473c99d4eSJuan Castillo $(eval DUMP := $(call IMG_DUMP,$(1))) 55573c99d4eSJuan Castillo $(eval BIN := $(call IMG_BIN,$(1))) 556c6ba9b45SSumit Garg $(eval ENC_BIN := $(call IMG_ENC_BIN,$(1))) 557f7a41fb4SBoyan Karatotev $(eval BL_LIBS := $($(BL)_LIBS)) 55882274936SChris Kay 559f7a41fb4SBoyan Karatotev $(eval DEFAULT_LINKER_SCRIPT_SOURCE := $($(BL)_DEFAULT_LINKER_SCRIPT_SOURCE)) 56082274936SChris Kay $(eval DEFAULT_LINKER_SCRIPT := $(call linker_script_path,$(DEFAULT_LINKER_SCRIPT_SOURCE))) 56182274936SChris Kay 562f7a41fb4SBoyan Karatotev $(eval LINKER_SCRIPT_SOURCES := $($(BL)_LINKER_SCRIPT_SOURCES)) 563a6ff0067SChris Kay $(eval LINKER_SCRIPTS := $(call linker_script_path,$(LINKER_SCRIPT_SOURCES))) 564a6ff0067SChris Kay 565f7a41fb4SBoyan Karatotev$(eval $(call MAKE_OBJS,$(BUILD_DIR),$(SOURCES),$(1),$(BL))) 566a6ff0067SChris Kay 567a6ff0067SChris Kay# Generate targets to preprocess each required linker script 568a6ff0067SChris Kay$(eval $(foreach source,$(DEFAULT_LINKER_SCRIPT_SOURCE) $(LINKER_SCRIPT_SOURCES), \ 569f7a41fb4SBoyan Karatotev $(call MAKE_LD,$(call linker_script_path,$(source)),$(source),$(1),$(BL)))) 570a6ff0067SChris Kay 571f7a41fb4SBoyan Karatotev$(eval BL_LDFLAGS := $($(BL)_LDFLAGS)) 57273c99d4eSJuan Castillo 5735accce5bSRoberto Vargasifeq ($(USE_ROMLIB),1) 5746e622818SChris Kay$(ELF): $(BUILD_PLAT)/romlib/romlib.bin | $$$$(@D)/ 5755accce5bSRoberto Vargasendif 5765accce5bSRoberto Vargas 5778dccddc7SLeon Chen# MODULE_OBJS can be assigned by vendors with different compiled 5788dccddc7SLeon Chen# object file path, and prebuilt object file path. 5798dccddc7SLeon Chen$(eval OBJS += $(MODULE_OBJS)) 5808dccddc7SLeon Chen 581f4dd18c2SChris Kay$(ELF): $(OBJS) $(DEFAULT_LINKER_SCRIPT) $(LINKER_SCRIPTS) | $$$$(@D)/ libraries $(BL_LIBS) 5827c4e1eeaSChris Kay $$(s)echo " LD $$@" 5838620bd0bSChris Kayifeq ($($(ARCH)-ld-id),arm-link) 5847c4e1eeaSChris Kay $$(q)$($(ARCH)-ld) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) --entry=${1}_entrypoint \ 585df52e260SChris Kay --predefine=$(call escape-shell,-D__LINKER__=$(__LINKER__)) \ 586df52e260SChris Kay --predefine=$(call escape-shell,-DTF_CFLAGS=$(TF_CFLAGS)) \ 587434d0491SZelalem Aweke --map --list="$(MAPFILE)" --scatter=${PLAT_DIR}/scat/${1}.scat \ 588758ccb80SChris Kay $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) $(OBJS) 5898620bd0bSChris Kayelse ifeq ($($(ARCH)-ld-id),gnu-gcc) 590d95d56bdSJimmy Brisson $$(q)$($(ARCH)-ld) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $$(WRAPPER_FLAGS) $(BL_LDFLAGS) -Wl,-Map=$(MAPFILE) \ 591a6ff0067SChris Kay $(addprefix -Wl$(comma)--script$(comma),$(LINKER_SCRIPTS)) -Wl,--script,$(DEFAULT_LINKER_SCRIPT) \ 592edbce9aaSzelalem-aweke $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) 593c2ad38ceSVarun Wadekarelse 594d95d56bdSJimmy Brisson $$(q)$($(ARCH)-ld) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $$(WRAPPER_FLAGS) $(BL_LDFLAGS) -Map=$(MAPFILE) \ 595a6ff0067SChris Kay $(addprefix -T ,$(LINKER_SCRIPTS)) --script $(DEFAULT_LINKER_SCRIPT) \ 5966baf85b3SSathees Balya $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) 597c2ad38ceSVarun Wadekarendif 5989e4609f1SChristoph Müllnerifeq ($(DISABLE_BIN_GENERATION),1) 5997c4e1eeaSChris Kay $(s)echo 6007c4e1eeaSChris Kay $(s)echo "Built $$@ successfully" 6017c4e1eeaSChris Kay $(s)echo 6029e4609f1SChristoph Müllnerendif 60373c99d4eSJuan Castillo 604f4dd18c2SChris Kay$(DUMP): $(ELF) | $$$$(@D)/ 6057c4e1eeaSChris Kay $$(s)echo " OD $$@" 6067c4e1eeaSChris Kay $$(q)$($(ARCH)-od) -dx $$< > $$@ 60773c99d4eSJuan Castillo 608f4dd18c2SChris Kay$(BIN): $(ELF) | $$$$(@D)/ 6097c4e1eeaSChris Kay $$(s)echo " BIN $$@" 6107c4e1eeaSChris Kay $$(q)$($(ARCH)-oc) -O binary $$< $$@ 6117c4e1eeaSChris Kay $(s)echo 6127c4e1eeaSChris Kay $(s)echo "Built $$@ successfully" 6137c4e1eeaSChris Kay $(s)echo 61473c99d4eSJuan Castillo 615434d0491SZelalem Aweke.PHONY: $(1) 6169e4609f1SChristoph Müllnerifeq ($(DISABLE_BIN_GENERATION),1) 617434d0491SZelalem Aweke$(1): $(ELF) $(DUMP) 6189e4609f1SChristoph Müllnerelse 619434d0491SZelalem Aweke$(1): $(BIN) $(DUMP) 6209e4609f1SChristoph Müllnerendif 62173c99d4eSJuan Castillo 622434d0491SZelalem Awekeall: $(1) 62373c99d4eSJuan Castillo 624c6ba9b45SSumit Gargifeq ($(4),1) 625c6ba9b45SSumit Garg$(call ENCRYPT_FW,$(BIN),$(ENC_BIN)) 626f7a41fb4SBoyan Karatotev$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(BL),$(BIN),--$(2),$(ENC_BIN),$(3), \ 627c6ba9b45SSumit Garg $(ENC_BIN))) 628c6ba9b45SSumit Gargelse 629f7a41fb4SBoyan Karatotev$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(BL),$(BIN),--$(2),$(BIN),$(3))) 630c6ba9b45SSumit Gargendif 63173c99d4eSJuan Castillo 63273c99d4eSJuan Castilloendef 63373c99d4eSJuan Castillo 63438c14d88SSoby Mathew# Convert device tree source file names to matching blobs 63538c14d88SSoby Mathew# $(1) = input dts 63603b397a8SNishanth Menondefine SOURCES_TO_DTBS 63703b397a8SNishanth Menon $(notdir $(patsubst %.dts,%.dtb,$(filter %.dts,$(1)))) 63803b397a8SNishanth Menonendef 63903b397a8SNishanth Menon 64038c14d88SSoby Mathew# MAKE_DTB generate the Flattened device tree binary 64103b397a8SNishanth Menon# $(1) = output directory 64203b397a8SNishanth Menon# $(2) = input dts 64303b397a8SNishanth Menondefine MAKE_DTB 64403b397a8SNishanth Menon 645077b3e9aSYann Gautier# List of DTB file(s) to generate, based on DTS file basename list 64638c14d88SSoby Mathew$(eval DOBJ := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2)))) 647077b3e9aSYann Gautier# List of the pre-compiled DTS file(s) 64801d237cbSYann Gautier$(eval DPRE := $(addprefix $(1)/,$(patsubst %.dts,%.pre.dts,$(notdir $(2))))) 649077b3e9aSYann Gautier# Dependencies of the pre-compiled DTS file(s) on its source and included files 650077b3e9aSYann Gautier$(eval DTSDEP := $(patsubst %.dtb,%.o.d,$(DOBJ))) 651077b3e9aSYann Gautier# Dependencies of the DT compilation on its pre-compiled DTS 652077b3e9aSYann Gautier$(eval DTBDEP := $(patsubst %.dtb,%.d,$(DOBJ))) 65303b397a8SNishanth Menon 6541e8b5354SBoyan Karatotev$(eval $(call MAKE_PRE,$(DPRE),$(2),$(DTSDEP),$(DTC_CPPFLAGS))) 6557b453526SChris Kay 656f4dd18c2SChris Kay$(DOBJ): $(DPRE) $(filter-out %.d,$(MAKEFILE_LIST)) | $$$$(@D)/ 6577c4e1eeaSChris Kay $$(s)echo " DTC $$<" 6587c4e1eeaSChris Kay $$(q)$($(ARCH)-dtc) $$(DTC_FLAGS) -d $(DTBDEP) -o $$@ $$< 6591c08ff32SSalman Nabi $$($$@-after) 66003b397a8SNishanth Menon 661077b3e9aSYann Gautier-include $(DTBDEP) 662077b3e9aSYann Gautier-include $(DTSDEP) 66303b397a8SNishanth Menon 66403b397a8SNishanth Menonendef 66503b397a8SNishanth Menon 66603b397a8SNishanth Menon# MAKE_DTBS builds flattened device tree sources 66703b397a8SNishanth Menon# $(1) = output directory 66803b397a8SNishanth Menon# $(2) = list of flattened device tree source files 66903b397a8SNishanth Menondefine MAKE_DTBS 67003b397a8SNishanth Menon $(eval DOBJS := $(filter %.dts,$(2))) 67103b397a8SNishanth Menon $(eval REMAIN := $(filter-out %.dts,$(2))) 67238c14d88SSoby Mathew $(and $(REMAIN),$(error FDT_SOURCES contain non-DTS files: $(REMAIN))) 67303b397a8SNishanth Menon $(eval $(foreach obj,$(DOBJS),$(call MAKE_DTB,$(1),$(obj)))) 67403b397a8SNishanth Menon 675f4dd18c2SChris Kaydtbs: $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2))) 67638c14d88SSoby Mathewall: dtbs 67703b397a8SNishanth Menonendef 678