173c99d4eSJuan Castillo# 2*82274936SChris Kay# Copyright (c) 2015-2023, 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# Some utility macros for manipulating awkward (whitespace) characters. 14231c1470SEvan Lloydblank := 15231c1470SEvan Lloydspace :=${blank} ${blank} 16231c1470SEvan Lloyd 17231c1470SEvan Lloyd# A user defined function to recursively search for a filename below a directory 18231c1470SEvan Lloyd# $1 is the directory root of the recursive search (blank for current directory). 19231c1470SEvan Lloyd# $2 is the file name to search for. 20231c1470SEvan Lloyddefine rwildcard 21231c1470SEvan Lloyd$(strip $(foreach d,$(wildcard ${1}*),$(call rwildcard,${d}/,${2}) $(filter $(subst *,%,%${2}),${d}))) 22231c1470SEvan Lloydendef 23231c1470SEvan Lloyd 245ba8f669SYatharth Kochar# This table is used in converting lower case to upper case. 255ba8f669SYatharth Kocharuppercase_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 265ba8f669SYatharth Kochar 275ba8f669SYatharth Kochar# Internal macro used for converting lower case to upper case. 285ba8f669SYatharth Kochar# $(1) = upper case table 295ba8f669SYatharth Kochar# $(2) = String to convert 305ba8f669SYatharth Kochardefine uppercase_internal 315ba8f669SYatharth Kochar$(if $(1),$$(subst $(firstword $(1)),$(call uppercase_internal,$(wordlist 2,$(words $(1)),$(1)),$(2))),$(2)) 325ba8f669SYatharth Kocharendef 335ba8f669SYatharth Kochar 345ba8f669SYatharth Kochar# A macro for converting a string to upper case 355ba8f669SYatharth Kochar# $(1) = String to convert 365ba8f669SYatharth Kochardefine uppercase 375ba8f669SYatharth Kochar$(eval uppercase_result:=$(call uppercase_internal,$(uppercase_table),$(1)))$(uppercase_result) 385ba8f669SYatharth Kocharendef 395ba8f669SYatharth Kochar 4073c99d4eSJuan Castillo# Convenience function for adding build definitions 4173c99d4eSJuan Castillo# $(eval $(call add_define,FOO)) will have: 4273c99d4eSJuan Castillo# -DFOO if $(FOO) is empty; -DFOO=$(FOO) otherwise 4373c99d4eSJuan Castillodefine add_define 4473c99d4eSJuan Castillo DEFINES += -D$(1)$(if $(value $(1)),=$(value $(1)),) 4573c99d4eSJuan Castilloendef 4673c99d4eSJuan Castillo 47327131c4SLeonardo Sandoval 48327131c4SLeonardo Sandoval# Convenience function for addding multiple build definitions 49327131c4SLeonardo Sandoval# $(eval $(call add_defines,FOO BOO)) 50327131c4SLeonardo Sandovaldefine add_defines 51327131c4SLeonardo Sandoval $(foreach def,$1,$(eval $(call add_define,$(def)))) 52327131c4SLeonardo Sandovalendef 53327131c4SLeonardo Sandoval 548eadeb4aSSoren Brinkmann# Convenience function for adding build definitions 558eadeb4aSSoren Brinkmann# $(eval $(call add_define_val,FOO,BAR)) will have: 568eadeb4aSSoren Brinkmann# -DFOO=BAR 578eadeb4aSSoren Brinkmanndefine add_define_val 588eadeb4aSSoren Brinkmann DEFINES += -D$(1)=$(2) 598eadeb4aSSoren Brinkmannendef 608eadeb4aSSoren Brinkmann 6173c99d4eSJuan Castillo# Convenience function for verifying option has a boolean value 6273c99d4eSJuan Castillo# $(eval $(call assert_boolean,FOO)) will assert FOO is 0 or 1 6373c99d4eSJuan Castillodefine assert_boolean 64be4cd40eSMasahiro Yamada $(if $(filter-out 0 1,$($1)),$(error $1 must be boolean)) 6573c99d4eSJuan Castilloendef 6673c99d4eSJuan Castillo 67327131c4SLeonardo Sandoval# Convenience function for verifying options have boolean values 68327131c4SLeonardo Sandoval# $(eval $(call assert_booleans,FOO BOO)) will assert FOO and BOO for 0 or 1 values 69327131c4SLeonardo Sandovaldefine assert_booleans 70327131c4SLeonardo Sandoval $(foreach bool,$1,$(eval $(call assert_boolean,$(bool)))) 71327131c4SLeonardo Sandovalendef 72327131c4SLeonardo Sandoval 73c877b414SJeenu Viswambharan0-9 := 0 1 2 3 4 5 6 7 8 9 74c877b414SJeenu Viswambharan 75c877b414SJeenu Viswambharan# Function to verify that a given option $(1) contains a numeric value 76c877b414SJeenu Viswambharandefine assert_numeric 77c877b414SJeenu Viswambharan$(if $($(1)),,$(error $(1) must not be empty)) 78c877b414SJeenu Viswambharan$(eval __numeric := $($(1))) 79c877b414SJeenu Viswambharan$(foreach d,$(0-9),$(eval __numeric := $(subst $(d),,$(__numeric)))) 80c877b414SJeenu Viswambharan$(if $(__numeric),$(error $(1) must be numeric)) 81c877b414SJeenu Viswambharanendef 82c877b414SJeenu Viswambharan 83327131c4SLeonardo Sandoval# Convenience function for verifying options have numeric values 84327131c4SLeonardo Sandoval# $(eval $(call assert_numerics,FOO BOO)) will assert FOO and BOO contain numeric values 85327131c4SLeonardo Sandovaldefine assert_numerics 86327131c4SLeonardo Sandoval $(foreach num,$1,$(eval $(call assert_numeric,$(num)))) 87327131c4SLeonardo Sandovalendef 88327131c4SLeonardo Sandoval 898c7b944aSVijayenthiran Subramaniam# CREATE_SEQ is a recursive function to create sequence of numbers from 1 to 908c7b944aSVijayenthiran Subramaniam# $(2) and assign the sequence to $(1) 918c7b944aSVijayenthiran Subramaniamdefine CREATE_SEQ 928c7b944aSVijayenthiran Subramaniam$(if $(word $(2), $($(1))),\ 938c7b944aSVijayenthiran Subramaniam $(eval $(1) += $(words $($(1))))\ 948c7b944aSVijayenthiran Subramaniam $(eval $(1) := $(filter-out 0,$($(1)))),\ 958c7b944aSVijayenthiran Subramaniam $(eval $(1) += $(words $($(1))))\ 968c7b944aSVijayenthiran Subramaniam $(call CREATE_SEQ,$(1),$(2))\ 978c7b944aSVijayenthiran Subramaniam) 988c7b944aSVijayenthiran Subramaniamendef 998c7b944aSVijayenthiran Subramaniam 10073c99d4eSJuan Castillo# IMG_MAPFILE defines the output file describing the memory map corresponding 10173c99d4eSJuan Castillo# to a BL stage 102434d0491SZelalem Aweke# $(1) = BL stage 10373c99d4eSJuan Castillodefine IMG_MAPFILE 104434d0491SZelalem Aweke ${BUILD_DIR}/$(1).map 10573c99d4eSJuan Castilloendef 10673c99d4eSJuan Castillo 10773c99d4eSJuan Castillo# IMG_ELF defines the elf file corresponding to a BL stage 108434d0491SZelalem Aweke# $(1) = BL stage 10973c99d4eSJuan Castillodefine IMG_ELF 110434d0491SZelalem Aweke ${BUILD_DIR}/$(1).elf 11173c99d4eSJuan Castilloendef 11273c99d4eSJuan Castillo 11373c99d4eSJuan Castillo# IMG_DUMP defines the symbols dump file corresponding to a BL stage 114434d0491SZelalem Aweke# $(1) = BL stage 11573c99d4eSJuan Castillodefine IMG_DUMP 116434d0491SZelalem Aweke ${BUILD_DIR}/$(1).dump 11773c99d4eSJuan Castilloendef 11873c99d4eSJuan Castillo 11973c99d4eSJuan Castillo# IMG_BIN defines the default image file corresponding to a BL stage 120434d0491SZelalem Aweke# $(1) = BL stage 12173c99d4eSJuan Castillodefine IMG_BIN 122434d0491SZelalem Aweke ${BUILD_PLAT}/$(1).bin 12373c99d4eSJuan Castilloendef 12473c99d4eSJuan Castillo 125c6ba9b45SSumit Garg# IMG_ENC_BIN defines the default encrypted image file corresponding to a 126c6ba9b45SSumit Garg# BL stage 127434d0491SZelalem Aweke# $(1) = BL stage 128c6ba9b45SSumit Gargdefine IMG_ENC_BIN 129434d0491SZelalem Aweke ${BUILD_PLAT}/$(1)_enc.bin 130c6ba9b45SSumit Gargendef 131c6ba9b45SSumit Garg 132c6ba9b45SSumit Garg# ENCRYPT_FW invokes enctool to encrypt firmware binary 133c6ba9b45SSumit Garg# $(1) = input firmware binary 134c6ba9b45SSumit Garg# $(2) = output encrypted firmware binary 135c6ba9b45SSumit Gargdefine ENCRYPT_FW 136c6ba9b45SSumit Garg$(2): $(1) enctool 137c6ba9b45SSumit Garg $$(ECHO) " ENC $$<" 138c6ba9b45SSumit Garg $$(Q)$$(ENCTOOL) $$(ENC_ARGS) -i $$< -o $$@ 139c6ba9b45SSumit Gargendef 140c6ba9b45SSumit Garg 14110cea934SMasahiro Yamada# TOOL_ADD_PAYLOAD appends the command line arguments required by fiptool to 14210cea934SMasahiro Yamada# package a new payload and/or by cert_create to generate certificate. 14310cea934SMasahiro Yamada# Optionally, it adds the dependency on this payload 14473c99d4eSJuan Castillo# $(1) = payload filename (i.e. bl31.bin) 1451e0c0784SMasahiro Yamada# $(2) = command line option for the specified payload (i.e. --soc-fw) 14636af3455SMasahiro Yamada# $(3) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin) 1471dc0714fSMasahiro Yamada# $(4) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip) 148c6ba9b45SSumit Garg# $(5) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin) 14910cea934SMasahiro Yamadadefine TOOL_ADD_PAYLOAD 150c6ba9b45SSumit Gargifneq ($(5),) 151c6ba9b45SSumit Garg $(4)FIP_ARGS += $(2) $(5) 152c6ba9b45SSumit Garg $(if $(3),$(4)CRT_DEPS += $(1)) 153c6ba9b45SSumit Gargelse 154945b316fSMasahiro Yamada $(4)FIP_ARGS += $(2) $(1) 155c6ba9b45SSumit Garg $(if $(3),$(4)CRT_DEPS += $(3)) 156c6ba9b45SSumit Gargendif 157945b316fSMasahiro Yamada $(if $(3),$(4)FIP_DEPS += $(3)) 158f30ee0b9SMasahiro Yamada $(4)CRT_ARGS += $(2) $(1) 15973c99d4eSJuan Castilloendef 16073c99d4eSJuan Castillo 1612da522bbSMasahiro Yamada# TOOL_ADD_IMG_PAYLOAD works like TOOL_ADD_PAYLOAD, but applies image filters 1622da522bbSMasahiro Yamada# before passing them to host tools if BL*_PRE_TOOL_FILTER is defined. 1632da522bbSMasahiro Yamada# $(1) = image_type (scp_bl2, bl33, etc.) 1642da522bbSMasahiro Yamada# $(2) = payload filepath (ex. build/fvp/release/bl31.bin) 1652da522bbSMasahiro Yamada# $(3) = command line option for the specified payload (ex. --soc-fw) 1662da522bbSMasahiro Yamada# $(4) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin) 1672da522bbSMasahiro Yamada# $(5) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip) 168c6ba9b45SSumit Garg# $(6) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin) 1692da522bbSMasahiro Yamada 1702da522bbSMasahiro Yamadadefine TOOL_ADD_IMG_PAYLOAD 1712da522bbSMasahiro Yamada 1722da522bbSMasahiro Yamada$(eval PRE_TOOL_FILTER := $($(call uppercase,$(1))_PRE_TOOL_FILTER)) 1732da522bbSMasahiro Yamada 1742da522bbSMasahiro Yamadaifneq ($(PRE_TOOL_FILTER),) 1752da522bbSMasahiro Yamada 1762da522bbSMasahiro Yamada$(eval PROCESSED_PATH := $(BUILD_PLAT)/$(1).bin$($(PRE_TOOL_FILTER)_SUFFIX)) 1772da522bbSMasahiro Yamada 1782da522bbSMasahiro Yamada$(call $(PRE_TOOL_FILTER)_RULE,$(PROCESSED_PATH),$(2)) 1792da522bbSMasahiro Yamada 1802da522bbSMasahiro Yamada$(PROCESSED_PATH): $(4) 1812da522bbSMasahiro Yamada 182c6ba9b45SSumit Garg$(call TOOL_ADD_PAYLOAD,$(PROCESSED_PATH),$(3),$(PROCESSED_PATH),$(5),$(6)) 1832da522bbSMasahiro Yamada 1842da522bbSMasahiro Yamadaelse 185c6ba9b45SSumit Garg$(call TOOL_ADD_PAYLOAD,$(2),$(3),$(4),$(5),$(6)) 1862da522bbSMasahiro Yamadaendif 1872da522bbSMasahiro Yamadaendef 1882da522bbSMasahiro Yamada 1890191262dSYatharth Kochar# CERT_ADD_CMD_OPT adds a new command line option to the cert_create invocation 19073c99d4eSJuan Castillo# $(1) = parameter filename 19173c99d4eSJuan Castillo# $(2) = cert_create command line option for the specified parameter 19291704d9dSMasahiro Yamada# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip) 19373c99d4eSJuan Castillodefine CERT_ADD_CMD_OPT 19491704d9dSMasahiro Yamada $(3)CRT_ARGS += $(2) $(1) 19573c99d4eSJuan Castilloendef 19673c99d4eSJuan Castillo 197c939d13aSMasahiro Yamada# TOOL_ADD_IMG allows the platform to specify an external image to be packed 198c939d13aSMasahiro Yamada# in the FIP and/or for which certificate is generated. It also adds a 199c939d13aSMasahiro Yamada# dependency on the image file, aborting the build if the file does not exist. 20033950dd8SMasahiro Yamada# $(1) = image_type (scp_bl2, bl33, etc.) 2011e0c0784SMasahiro Yamada# $(2) = command line option for fiptool (--scp-fw, --nt-fw, etc) 2021dc0714fSMasahiro Yamada# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip) 203c6ba9b45SSumit Garg# $(4) = Image encryption flag (optional) (0, 1) 20473c99d4eSJuan Castillo# Example: 20533950dd8SMasahiro Yamada# $(eval $(call TOOL_ADD_IMG,bl33,--nt-fw)) 206c939d13aSMasahiro Yamadadefine TOOL_ADD_IMG 20733950dd8SMasahiro Yamada # Build option to specify the image filename (SCP_BL2, BL33, etc) 20833950dd8SMasahiro Yamada # This is the uppercase form of the first parameter 20933950dd8SMasahiro Yamada $(eval _V := $(call uppercase,$(1))) 21033950dd8SMasahiro Yamada 2114727fd13SPali Rohár # $(check_$(1)_cmd) variable is executed in the check_$(1) target and also 2124727fd13SPali Rohár # is put into the ${CHECK_$(3)FIP_CMD} variable which is executed by the 2134727fd13SPali Rohár # target ${BUILD_PLAT}/${$(3)FIP_NAME}. 2144727fd13SPali Rohár $(eval check_$(1)_cmd := \ 2154727fd13SPali Rohár $(if $(value $(_V)),,$$$$(error "Platform '${PLAT}' requires $(_V). Please set $(_V) to point to the right file")) \ 2164727fd13SPali Rohár $(if $(wildcard $(value $(_V))),,$$$$(error '$(_V)=$(value $(_V))' was specified, but '$(value $(_V))' does not exist)) \ 2174727fd13SPali Rohár ) 2184727fd13SPali Rohár 219945b316fSMasahiro Yamada $(3)CRT_DEPS += check_$(1) 2204727fd13SPali Rohár CHECK_$(3)FIP_CMD += $$(check_$(1)_cmd) 221c6ba9b45SSumit Gargifeq ($(4),1) 222c6ba9b45SSumit Garg $(eval ENC_BIN := ${BUILD_PLAT}/$(1)_enc.bin) 223c6ba9b45SSumit Garg $(call ENCRYPT_FW,$(value $(_V)),$(ENC_BIN)) 224c6ba9b45SSumit Garg $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(ENC_BIN),$(3), \ 225c6ba9b45SSumit Garg $(ENC_BIN)) 226c6ba9b45SSumit Gargelse 2274727fd13SPali Rohár $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(if $(wildcard $(value $(_V))),$(value $(_V)),FORCE),$(3)) 228c6ba9b45SSumit Gargendif 2290191262dSYatharth Kochar 23087ebd20dSMasahiro Yamada.PHONY: check_$(1) 2310191262dSYatharth Kocharcheck_$(1): 2324727fd13SPali Rohár $(check_$(1)_cmd) 2330191262dSYatharth Kocharendef 23473c99d4eSJuan Castillo 235cf2dd17dSJuan Pablo Conde# SELECT_OPENSSL_API_VERSION selects the OpenSSL API version to be used to 236cf2dd17dSJuan Pablo Conde# build the host tools by checking the version of OpenSSL located under 237cf2dd17dSJuan Pablo Conde# the path defined by the OPENSSL_DIR variable. It receives no parameters. 238cf2dd17dSJuan Pablo Condedefine SELECT_OPENSSL_API_VERSION 239cf2dd17dSJuan Pablo Conde # Set default value for USING_OPENSSL3 macro to 0 240cf2dd17dSJuan Pablo Conde $(eval USING_OPENSSL3 = 0) 241cf2dd17dSJuan Pablo Conde # Obtain the OpenSSL version for the build located under OPENSSL_DIR 242cf2dd17dSJuan Pablo Conde $(eval OPENSSL_INFO := $(shell LD_LIBRARY_PATH=${OPENSSL_DIR}:${OPENSSL_DIR}/lib ${OPENSSL_BIN_PATH}/openssl version)) 243cf2dd17dSJuan Pablo Conde $(eval OPENSSL_CURRENT_VER = $(word 2, ${OPENSSL_INFO})) 244cf2dd17dSJuan Pablo Conde $(eval OPENSSL_CURRENT_VER_MAJOR = $(firstword $(subst ., ,$(OPENSSL_CURRENT_VER)))) 245cf2dd17dSJuan Pablo Conde # If OpenSSL version is 3.x, then set USING_OPENSSL3 flag to 1 246cf2dd17dSJuan Pablo Conde $(if $(filter 3,$(OPENSSL_CURRENT_VER_MAJOR)), $(eval USING_OPENSSL3 = 1)) 247cf2dd17dSJuan Pablo Condeendef 248cf2dd17dSJuan Pablo Conde 24973c99d4eSJuan Castillo################################################################################ 25014db8908SMasahiro Yamada# Generic image processing filters 25114db8908SMasahiro Yamada################################################################################ 25214db8908SMasahiro Yamada 25314db8908SMasahiro Yamada# GZIP 25414db8908SMasahiro Yamadadefine GZIP_RULE 25514db8908SMasahiro Yamada$(1): $(2) 256ee1ba6d4SAndre Przywara $(ECHO) " GZIP $$@" 25714db8908SMasahiro Yamada $(Q)gzip -n -f -9 $$< --stdout > $$@ 25814db8908SMasahiro Yamadaendef 25914db8908SMasahiro Yamada 26014db8908SMasahiro YamadaGZIP_SUFFIX := .gz 26114db8908SMasahiro Yamada 26214db8908SMasahiro Yamada################################################################################ 26373c99d4eSJuan Castillo# Auxiliary macros to build TF images from sources 26473c99d4eSJuan Castillo################################################################################ 26573c99d4eSJuan Castillo 2661d274ab0SMasahiro YamadaMAKE_DEP = -Wp,-MD,$(DEP) -MT $$@ -MP 26773c99d4eSJuan Castillo 2685fee0287SRoberto Vargas 2695fee0287SRoberto Vargas# MAKE_C_LIB builds a C source file and generates the dependency file 2705fee0287SRoberto Vargas# $(1) = output directory 2715fee0287SRoberto Vargas# $(2) = source file (%.c) 2725fee0287SRoberto Vargas# $(3) = library name 2735fee0287SRoberto Vargasdefine MAKE_C_LIB 2745fee0287SRoberto Vargas$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2)))) 2755fee0287SRoberto Vargas$(eval DEP := $(patsubst %.o,%.d,$(OBJ))) 2765fee0287SRoberto Vargas 2775fee0287SRoberto Vargas$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs 278ee1ba6d4SAndre Przywara $$(ECHO) " CC $$<" 2795fee0287SRoberto Vargas $$(Q)$$(CC) $$(TF_CFLAGS) $$(CFLAGS) $(MAKE_DEP) -c $$< -o $$@ 2805fee0287SRoberto Vargas 2815fee0287SRoberto Vargas-include $(DEP) 2825fee0287SRoberto Vargas 2835fee0287SRoberto Vargasendef 2845fee0287SRoberto Vargas 28570b0f278SAntonio Nino Diaz# MAKE_S_LIB builds an assembly source file and generates the dependency file 28670b0f278SAntonio Nino Diaz# $(1) = output directory 28770b0f278SAntonio Nino Diaz# $(2) = source file (%.S) 28870b0f278SAntonio Nino Diaz# $(3) = library name 28970b0f278SAntonio Nino Diazdefine MAKE_S_LIB 29070b0f278SAntonio Nino Diaz$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2)))) 29170b0f278SAntonio Nino Diaz$(eval DEP := $(patsubst %.o,%.d,$(OBJ))) 29270b0f278SAntonio Nino Diaz 29370b0f278SAntonio Nino Diaz$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs 29470b0f278SAntonio Nino Diaz $$(ECHO) " AS $$<" 29570b0f278SAntonio Nino Diaz $$(Q)$$(AS) $$(ASFLAGS) $(MAKE_DEP) -c $$< -o $$@ 29670b0f278SAntonio Nino Diaz 29770b0f278SAntonio Nino Diaz-include $(DEP) 29870b0f278SAntonio Nino Diaz 29970b0f278SAntonio Nino Diazendef 30070b0f278SAntonio Nino Diaz 3015fee0287SRoberto Vargas 30273c99d4eSJuan Castillo# MAKE_C builds a C source file and generates the dependency file 30373c99d4eSJuan Castillo# $(1) = output directory 30473c99d4eSJuan Castillo# $(2) = source file (%.c) 305434d0491SZelalem Aweke# $(3) = BL stage 30673c99d4eSJuan Castillodefine MAKE_C 30773c99d4eSJuan Castillo 30873c99d4eSJuan Castillo$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2)))) 309710ea1d0SMasahiro Yamada$(eval DEP := $(patsubst %.o,%.d,$(OBJ))) 310434d0491SZelalem Aweke$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3))) 311434d0491SZelalem Aweke$(eval BL_CFLAGS := $($(call uppercase,$(3))_CFLAGS)) 31273c99d4eSJuan Castillo 313434d0491SZelalem Aweke$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs 314ee1ba6d4SAndre Przywara $$(ECHO) " CC $$<" 315848a7e8cSMasahiro Yamada $$(Q)$$(CC) $$(LTO_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(BL_CPPFLAGS) $(BL_CFLAGS) $(MAKE_DEP) -c $$< -o $$@ 31673c99d4eSJuan Castillo 317710ea1d0SMasahiro Yamada-include $(DEP) 31873c99d4eSJuan Castillo 31973c99d4eSJuan Castilloendef 32073c99d4eSJuan Castillo 32173c99d4eSJuan Castillo 32273c99d4eSJuan Castillo# MAKE_S builds an assembly source file and generates the dependency file 32373c99d4eSJuan Castillo# $(1) = output directory 32473c99d4eSJuan Castillo# $(2) = assembly file (%.S) 325434d0491SZelalem Aweke# $(3) = BL stage 32673c99d4eSJuan Castillodefine MAKE_S 32773c99d4eSJuan Castillo 32873c99d4eSJuan Castillo$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2)))) 329710ea1d0SMasahiro Yamada$(eval DEP := $(patsubst %.o,%.d,$(OBJ))) 330434d0491SZelalem Aweke$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3))) 331434d0491SZelalem Aweke$(eval BL_ASFLAGS := $($(call uppercase,$(3))_ASFLAGS)) 33273c99d4eSJuan Castillo 333434d0491SZelalem Aweke$(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs 334ee1ba6d4SAndre Przywara $$(ECHO) " AS $$<" 335848a7e8cSMasahiro Yamada $$(Q)$$(AS) $$(ASFLAGS) $(BL_CPPFLAGS) $(BL_ASFLAGS) $(MAKE_DEP) -c $$< -o $$@ 33673c99d4eSJuan Castillo 337710ea1d0SMasahiro Yamada-include $(DEP) 33873c99d4eSJuan Castillo 33973c99d4eSJuan Castilloendef 34073c99d4eSJuan Castillo 34173c99d4eSJuan Castillo 34273c99d4eSJuan Castillo# MAKE_LD generate the linker script using the C preprocessor 34373c99d4eSJuan Castillo# $(1) = output linker script 34473c99d4eSJuan Castillo# $(2) = input template 345434d0491SZelalem Aweke# $(3) = BL stage 34673c99d4eSJuan Castillodefine MAKE_LD 34773c99d4eSJuan Castillo 348710ea1d0SMasahiro Yamada$(eval DEP := $(1).d) 349434d0491SZelalem Aweke$(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3))) 35073c99d4eSJuan Castillo 351434d0491SZelalem Aweke$(1): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs 352ee1ba6d4SAndre Przywara $$(ECHO) " PP $$<" 353848a7e8cSMasahiro Yamada $$(Q)$$(CPP) $$(CPPFLAGS) $(BL_CPPFLAGS) $(TF_CFLAGS_$(ARCH)) -P -x assembler-with-cpp -D__LINKER__ $(MAKE_DEP) -o $$@ $$< 35473c99d4eSJuan Castillo 355710ea1d0SMasahiro Yamada-include $(DEP) 35673c99d4eSJuan Castillo 35773c99d4eSJuan Castilloendef 35873c99d4eSJuan Castillo 35970b0f278SAntonio Nino Diaz# MAKE_LIB_OBJS builds both C and assembly source files 3605fee0287SRoberto Vargas# $(1) = output directory 3615fee0287SRoberto Vargas# $(2) = list of source files 3625fee0287SRoberto Vargas# $(3) = name of the library 3635fee0287SRoberto Vargasdefine MAKE_LIB_OBJS 3645fee0287SRoberto Vargas $(eval C_OBJS := $(filter %.c,$(2))) 3655fee0287SRoberto Vargas $(eval REMAIN := $(filter-out %.c,$(2))) 3665fee0287SRoberto Vargas $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C_LIB,$(1),$(obj),$(3)))) 3675fee0287SRoberto Vargas 36870b0f278SAntonio Nino Diaz $(eval S_OBJS := $(filter %.S,$(REMAIN))) 36970b0f278SAntonio Nino Diaz $(eval REMAIN := $(filter-out %.S,$(REMAIN))) 37070b0f278SAntonio Nino Diaz $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S_LIB,$(1),$(obj),$(3)))) 37170b0f278SAntonio Nino Diaz 3725fee0287SRoberto Vargas $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN))) 3735fee0287SRoberto Vargasendef 3745fee0287SRoberto Vargas 37573c99d4eSJuan Castillo 37673c99d4eSJuan Castillo# MAKE_OBJS builds both C and assembly source files 37773c99d4eSJuan Castillo# $(1) = output directory 37873c99d4eSJuan Castillo# $(2) = list of source files (both C and assembly) 379434d0491SZelalem Aweke# $(3) = BL stage 38073c99d4eSJuan Castillodefine MAKE_OBJS 38173c99d4eSJuan Castillo $(eval C_OBJS := $(filter %.c,$(2))) 38273c99d4eSJuan Castillo $(eval REMAIN := $(filter-out %.c,$(2))) 38373c99d4eSJuan Castillo $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj),$(3)))) 38473c99d4eSJuan Castillo 38573c99d4eSJuan Castillo $(eval S_OBJS := $(filter %.S,$(REMAIN))) 38673c99d4eSJuan Castillo $(eval REMAIN := $(filter-out %.S,$(REMAIN))) 38773c99d4eSJuan Castillo $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj),$(3)))) 38873c99d4eSJuan Castillo 38973c99d4eSJuan Castillo $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN))) 39073c99d4eSJuan Castilloendef 39173c99d4eSJuan Castillo 39273c99d4eSJuan Castillo 39373c99d4eSJuan Castillo# NOTE: The line continuation '\' is required in the next define otherwise we 39473c99d4eSJuan Castillo# end up with a line-feed characer at the end of the last c filename. 395e7f54dbdSEvan Lloyd# Also bear this issue in mind if extending the list of supported filetypes. 39673c99d4eSJuan Castillodefine SOURCES_TO_OBJS 39773c99d4eSJuan Castillo $(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \ 39873c99d4eSJuan Castillo $(notdir $(patsubst %.S,%.o,$(filter %.S,$(1)))) 39973c99d4eSJuan Castilloendef 40073c99d4eSJuan Castillo 4012f5d4a48SPatrick Georgi# Allow overriding the timestamp, for example for reproducible builds, or to 4022f5d4a48SPatrick Georgi# synchronize timestamps across multiple projects. 4032f5d4a48SPatrick Georgi# This must be set to a C string (including quotes where applicable). 4042f5d4a48SPatrick GeorgiBUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__ 40573c99d4eSJuan Castillo 4065fee0287SRoberto Vargas.PHONY: libraries 4075fee0287SRoberto Vargas 4085accce5bSRoberto Vargas# MAKE_LIB_DIRS macro defines the target for the directory where 4095fee0287SRoberto Vargas# libraries are created 4105accce5bSRoberto Vargasdefine MAKE_LIB_DIRS 4115fee0287SRoberto Vargas $(eval LIB_DIR := ${BUILD_PLAT}/lib) 4125accce5bSRoberto Vargas $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib) 4135accce5bSRoberto Vargas $(eval LIBWRAPPER_DIR := ${BUILD_PLAT}/libwrapper) 4145fee0287SRoberto Vargas $(eval $(call MAKE_PREREQ_DIR,${LIB_DIR},${BUILD_PLAT})) 4155accce5bSRoberto Vargas $(eval $(call MAKE_PREREQ_DIR,${ROMLIB_DIR},${BUILD_PLAT})) 4165accce5bSRoberto Vargas $(eval $(call MAKE_PREREQ_DIR,${LIBWRAPPER_DIR},${BUILD_PLAT})) 4175fee0287SRoberto Vargasendef 4185fee0287SRoberto Vargas 4195fee0287SRoberto Vargas# MAKE_LIB macro defines the targets and options to build each BL image. 4205fee0287SRoberto Vargas# Arguments: 4215fee0287SRoberto Vargas# $(1) = Library name 4225fee0287SRoberto Vargasdefine MAKE_LIB 4235fee0287SRoberto Vargas $(eval BUILD_DIR := ${BUILD_PLAT}/lib$(1)) 4245fee0287SRoberto Vargas $(eval LIB_DIR := ${BUILD_PLAT}/lib) 4255accce5bSRoberto Vargas $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib) 4265fee0287SRoberto Vargas $(eval SOURCES := $(LIB$(call uppercase,$(1))_SRCS)) 4275fee0287SRoberto Vargas $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES)))) 4285fee0287SRoberto Vargas 4295fee0287SRoberto Vargas$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT})) 4305fee0287SRoberto Vargas$(eval $(call MAKE_LIB_OBJS,$(BUILD_DIR),$(SOURCES),$(1))) 4315fee0287SRoberto Vargas 4325fee0287SRoberto Vargas.PHONY : lib${1}_dirs 4335accce5bSRoberto Vargaslib${1}_dirs: | ${BUILD_DIR} ${LIB_DIR} ${ROMLIB_DIR} ${LIBWRAPPER_DIR} 4345fee0287SRoberto Vargaslibraries: ${LIB_DIR}/lib$(1).a 435c2ad38ceSVarun Wadekarifneq ($(findstring armlink,$(notdir $(LD))),) 436c2ad38ceSVarun WadekarLDPATHS = --userlibpath=${LIB_DIR} 437c2ad38ceSVarun WadekarLDLIBS += --library=$(1) 438c2ad38ceSVarun Wadekarelse 4395fee0287SRoberto VargasLDPATHS = -L${LIB_DIR} 4405fee0287SRoberto VargasLDLIBS += -l$(1) 441c2ad38ceSVarun Wadekarendif 4425fee0287SRoberto Vargas 4435accce5bSRoberto Vargasifeq ($(USE_ROMLIB),1) 4446baf85b3SSathees BalyaLIBWRAPPER = -lwrappers 4455accce5bSRoberto Vargasendif 4465accce5bSRoberto Vargas 4475fee0287SRoberto Vargasall: ${LIB_DIR}/lib$(1).a 4485fee0287SRoberto Vargas 4495fee0287SRoberto Vargas${LIB_DIR}/lib$(1).a: $(OBJS) 450ee1ba6d4SAndre Przywara $$(ECHO) " AR $$@" 4515fee0287SRoberto Vargas $$(Q)$$(AR) cr $$@ $$? 4525fee0287SRoberto Vargasendef 4535fee0287SRoberto Vargas 454*82274936SChris Kay# Generate the path to one or more preprocessed linker scripts given the paths 455*82274936SChris Kay# of their sources. 456*82274936SChris Kay# 457*82274936SChris Kay# Arguments: 458*82274936SChris Kay# $(1) = path to one or more linker script sources 459*82274936SChris Kaydefine linker_script_path 460*82274936SChris Kay $(patsubst %.S,$(BUILD_DIR)/%,$(1)) 461*82274936SChris Kayendef 462*82274936SChris Kay 46373c99d4eSJuan Castillo# MAKE_BL macro defines the targets and options to build each BL image. 46473c99d4eSJuan Castillo# Arguments: 465434d0491SZelalem Aweke# $(1) = BL stage 4668f0617efSJuan Castillo# $(2) = FIP command line option (if empty, image will not be included in the FIP) 4671dc0714fSMasahiro Yamada# $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip) 468c6ba9b45SSumit Garg# $(4) = BL encryption flag (optional) (0, 1) 46973c99d4eSJuan Castillodefine MAKE_BL 470434d0491SZelalem Aweke $(eval BUILD_DIR := ${BUILD_PLAT}/$(1)) 471434d0491SZelalem Aweke $(eval BL_SOURCES := $($(call uppercase,$(1))_SOURCES)) 4725ba8f669SYatharth Kochar $(eval SOURCES := $(BL_SOURCES) $(BL_COMMON_SOURCES) $(PLAT_BL_COMMON_SOURCES)) 47373c99d4eSJuan Castillo $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES)))) 47473c99d4eSJuan Castillo $(eval MAPFILE := $(call IMG_MAPFILE,$(1))) 47573c99d4eSJuan Castillo $(eval ELF := $(call IMG_ELF,$(1))) 47673c99d4eSJuan Castillo $(eval DUMP := $(call IMG_DUMP,$(1))) 47773c99d4eSJuan Castillo $(eval BIN := $(call IMG_BIN,$(1))) 478c6ba9b45SSumit Garg $(eval ENC_BIN := $(call IMG_ENC_BIN,$(1))) 479434d0491SZelalem Aweke $(eval BL_LIBS := $($(call uppercase,$(1))_LIBS)) 480*82274936SChris Kay 481*82274936SChris Kay $(eval DEFAULT_LINKER_SCRIPT_SOURCE := $($(call uppercase,$(1))_DEFAULT_LINKER_SCRIPT_SOURCE)) 482*82274936SChris Kay $(eval DEFAULT_LINKER_SCRIPT := $(call linker_script_path,$(DEFAULT_LINKER_SCRIPT_SOURCE))) 483*82274936SChris Kay 48451b27702SEvan Lloyd # We use sort only to get a list of unique object directory names. 48551b27702SEvan Lloyd # ordering is not relevant but sort removes duplicates. 486*82274936SChris Kay $(eval TEMP_OBJ_DIRS := $(sort $(dir ${OBJS} ${DEFAULT_LINKER_SCRIPT}))) 48751b27702SEvan Lloyd # The $(dir ) function leaves a trailing / on the directory names 488d014ea6cSMasahiro Yamada # Rip off the / to match directory names with make rule targets. 489d014ea6cSMasahiro Yamada $(eval OBJ_DIRS := $(patsubst %/,%,$(TEMP_OBJ_DIRS))) 49051b27702SEvan Lloyd 49151b27702SEvan Lloyd# Create generators for object directory structure 49251b27702SEvan Lloyd 4938012cc5cSMasahiro Yamada$(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT})) 4946ba7d274SEvan Lloyd 495*82274936SChris Kay$(eval $(foreach objd,${OBJ_DIRS}, 496*82274936SChris Kay $(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR}))) 49751b27702SEvan Lloyd 498434d0491SZelalem Aweke.PHONY : ${1}_dirs 49951b27702SEvan Lloyd 50051b27702SEvan Lloyd# We use order-only prerequisites to ensure that directories are created, 50151b27702SEvan Lloyd# but do not cause re-builds every time a file is written. 502434d0491SZelalem Aweke${1}_dirs: | ${OBJ_DIRS} 50373c99d4eSJuan Castillo 50473c99d4eSJuan Castillo$(eval $(call MAKE_OBJS,$(BUILD_DIR),$(SOURCES),$(1))) 505*82274936SChris Kay$(eval $(call MAKE_LD,$(DEFAULT_LINKER_SCRIPT),$(DEFAULT_LINKER_SCRIPT_SOURCE),$(1))) 506434d0491SZelalem Aweke$(eval BL_LDFLAGS := $($(call uppercase,$(1))_LDFLAGS)) 50773c99d4eSJuan Castillo 5085accce5bSRoberto Vargasifeq ($(USE_ROMLIB),1) 5095accce5bSRoberto Vargas$(ELF): romlib.bin 5105accce5bSRoberto Vargasendif 5115accce5bSRoberto Vargas 5128dccddc7SLeon Chen# MODULE_OBJS can be assigned by vendors with different compiled 5138dccddc7SLeon Chen# object file path, and prebuilt object file path. 5148dccddc7SLeon Chen$(eval OBJS += $(MODULE_OBJS)) 5158dccddc7SLeon Chen 516*82274936SChris Kay$(ELF): $(OBJS) $(DEFAULT_LINKER_SCRIPT) | $(1)_dirs libraries $(BL_LIBS) 517ee1ba6d4SAndre Przywara $$(ECHO) " LD $$@" 518414ab853SEvan Lloydifdef MAKE_BUILD_STRINGS 519414ab853SEvan Lloyd $(call MAKE_BUILD_STRINGS, $(BUILD_DIR)/build_message.o) 520414ab853SEvan Lloydelse 5212f5d4a48SPatrick Georgi @echo 'const char build_message[] = "Built : "$(BUILD_MESSAGE_TIMESTAMP); \ 522dddf4283Slaurenw-arm const char version_string[] = "${VERSION_STRING}"; \ 523dddf4283Slaurenw-arm const char version[] = "${VERSION}";' | \ 524f2e1d57eSMasahiro Yamada $$(CC) $$(TF_CFLAGS) $$(CFLAGS) -xc -c - -o $(BUILD_DIR)/build_message.o 525414ab853SEvan Lloydendif 526c2ad38ceSVarun Wadekarifneq ($(findstring armlink,$(notdir $(LD))),) 527434d0491SZelalem Aweke $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) --entry=${1}_entrypoint \ 528c2ad38ceSVarun Wadekar --predefine="-D__LINKER__=$(__LINKER__)" \ 529c2ad38ceSVarun Wadekar --predefine="-DTF_CFLAGS=$(TF_CFLAGS)" \ 530434d0491SZelalem Aweke --map --list="$(MAPFILE)" --scatter=${PLAT_DIR}/scat/${1}.scat \ 531c2ad38ceSVarun Wadekar $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) \ 532c2ad38ceSVarun Wadekar $(BUILD_DIR)/build_message.o $(OBJS) 533edbce9aaSzelalem-awekeelse ifneq ($(findstring gcc,$(notdir $(LD))),) 534edbce9aaSzelalem-aweke $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) -Wl,-Map=$(MAPFILE) \ 535*82274936SChris Kay $(EXTRA_LINKERFILE) -Wl,--script,$(DEFAULT_LINKER_SCRIPT) $(BUILD_DIR)/build_message.o \ 536edbce9aaSzelalem-aweke $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) 537c2ad38ceSVarun Wadekarelse 538d986bae4SMasahiro Yamada $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) -Map=$(MAPFILE) \ 539*82274936SChris Kay --script $(DEFAULT_LINKER_SCRIPT) $(BUILD_DIR)/build_message.o \ 5406baf85b3SSathees Balya $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) 541c2ad38ceSVarun Wadekarendif 5429e4609f1SChristoph Müllnerifeq ($(DISABLE_BIN_GENERATION),1) 5439e4609f1SChristoph Müllner @${ECHO_BLANK_LINE} 5449e4609f1SChristoph Müllner @echo "Built $$@ successfully" 5459e4609f1SChristoph Müllner @${ECHO_BLANK_LINE} 5469e4609f1SChristoph Müllnerendif 54773c99d4eSJuan Castillo 54873c99d4eSJuan Castillo$(DUMP): $(ELF) 549ee1ba6d4SAndre Przywara $${ECHO} " OD $$@" 55073c99d4eSJuan Castillo $${Q}$${OD} -dx $$< > $$@ 55173c99d4eSJuan Castillo 55273c99d4eSJuan Castillo$(BIN): $(ELF) 553ee1ba6d4SAndre Przywara $${ECHO} " BIN $$@" 55473c99d4eSJuan Castillo $$(Q)$$(OC) -O binary $$< $$@ 555052ab529SEvan Lloyd @${ECHO_BLANK_LINE} 55673c99d4eSJuan Castillo @echo "Built $$@ successfully" 557052ab529SEvan Lloyd @${ECHO_BLANK_LINE} 55873c99d4eSJuan Castillo 559434d0491SZelalem Aweke.PHONY: $(1) 5609e4609f1SChristoph Müllnerifeq ($(DISABLE_BIN_GENERATION),1) 561434d0491SZelalem Aweke$(1): $(ELF) $(DUMP) 5629e4609f1SChristoph Müllnerelse 563434d0491SZelalem Aweke$(1): $(BIN) $(DUMP) 5649e4609f1SChristoph Müllnerendif 56573c99d4eSJuan Castillo 566434d0491SZelalem Awekeall: $(1) 56773c99d4eSJuan Castillo 568c6ba9b45SSumit Gargifeq ($(4),1) 569c6ba9b45SSumit Garg$(call ENCRYPT_FW,$(BIN),$(ENC_BIN)) 570434d0491SZelalem Aweke$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(ENC_BIN),$(3), \ 571c6ba9b45SSumit Garg $(ENC_BIN))) 572c6ba9b45SSumit Gargelse 573434d0491SZelalem Aweke$(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(BIN),$(3))) 574c6ba9b45SSumit Gargendif 57573c99d4eSJuan Castillo 57673c99d4eSJuan Castilloendef 57773c99d4eSJuan Castillo 57838c14d88SSoby Mathew# Convert device tree source file names to matching blobs 57938c14d88SSoby Mathew# $(1) = input dts 58003b397a8SNishanth Menondefine SOURCES_TO_DTBS 58103b397a8SNishanth Menon $(notdir $(patsubst %.dts,%.dtb,$(filter %.dts,$(1)))) 58203b397a8SNishanth Menonendef 58303b397a8SNishanth Menon 58438c14d88SSoby Mathew# MAKE_FDT_DIRS macro creates the prerequisite directories that host the 58538c14d88SSoby Mathew# FDT binaries 58638c14d88SSoby Mathew# $(1) = output directory 58738c14d88SSoby Mathew# $(2) = input dts 58838c14d88SSoby Mathewdefine MAKE_FDT_DIRS 58938c14d88SSoby Mathew $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2)))) 59003b397a8SNishanth Menon $(eval TEMP_DTB_DIRS := $(sort $(dir ${DTBS}))) 59103b397a8SNishanth Menon # The $(dir ) function leaves a trailing / on the directory names 59203b397a8SNishanth Menon # Rip off the / to match directory names with make rule targets. 59303b397a8SNishanth Menon $(eval DTB_DIRS := $(patsubst %/,%,$(TEMP_DTB_DIRS))) 59403b397a8SNishanth Menon 59503b397a8SNishanth Menon$(eval $(foreach objd,${DTB_DIRS},$(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR}))) 59603b397a8SNishanth Menon 59703b397a8SNishanth Menonfdt_dirs: ${DTB_DIRS} 59803b397a8SNishanth Menonendef 59903b397a8SNishanth Menon 60038c14d88SSoby Mathew# MAKE_DTB generate the Flattened device tree binary 60103b397a8SNishanth Menon# $(1) = output directory 60203b397a8SNishanth Menon# $(2) = input dts 60303b397a8SNishanth Menondefine MAKE_DTB 60403b397a8SNishanth Menon 605077b3e9aSYann Gautier# List of DTB file(s) to generate, based on DTS file basename list 60638c14d88SSoby Mathew$(eval DOBJ := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2)))) 607077b3e9aSYann Gautier# List of the pre-compiled DTS file(s) 60801d237cbSYann Gautier$(eval DPRE := $(addprefix $(1)/,$(patsubst %.dts,%.pre.dts,$(notdir $(2))))) 609077b3e9aSYann Gautier# Dependencies of the pre-compiled DTS file(s) on its source and included files 610077b3e9aSYann Gautier$(eval DTSDEP := $(patsubst %.dtb,%.o.d,$(DOBJ))) 611077b3e9aSYann Gautier# Dependencies of the DT compilation on its pre-compiled DTS 612077b3e9aSYann Gautier$(eval DTBDEP := $(patsubst %.dtb,%.d,$(DOBJ))) 61303b397a8SNishanth Menon 6146bc1a30cSStephen Warren$(DOBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | fdt_dirs 615ee1ba6d4SAndre Przywara $${ECHO} " CPP $$<" 616077b3e9aSYann Gautier $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2)))) 6177e94a699SManish Pandey $$(Q)$$(PP) $$(DTC_CPPFLAGS) -MT $(DTBS) -MMD -MF $(DTSDEP) -o $(DPRE) $$< 618ee1ba6d4SAndre Przywara $${ECHO} " DTC $$<" 6192d51b55eSBalint Dobszay $$(Q)$$(DTC) $$(DTC_FLAGS) -d $(DTBDEP) -o $$@ $(DPRE) 62003b397a8SNishanth Menon 621077b3e9aSYann Gautier-include $(DTBDEP) 622077b3e9aSYann Gautier-include $(DTSDEP) 62303b397a8SNishanth Menon 62403b397a8SNishanth Menonendef 62503b397a8SNishanth Menon 62603b397a8SNishanth Menon# MAKE_DTBS builds flattened device tree sources 62703b397a8SNishanth Menon# $(1) = output directory 62803b397a8SNishanth Menon# $(2) = list of flattened device tree source files 62903b397a8SNishanth Menondefine MAKE_DTBS 63003b397a8SNishanth Menon $(eval DOBJS := $(filter %.dts,$(2))) 63103b397a8SNishanth Menon $(eval REMAIN := $(filter-out %.dts,$(2))) 63238c14d88SSoby Mathew $(and $(REMAIN),$(error FDT_SOURCES contain non-DTS files: $(REMAIN))) 63303b397a8SNishanth Menon $(eval $(foreach obj,$(DOBJS),$(call MAKE_DTB,$(1),$(obj)))) 63403b397a8SNishanth Menon 63538c14d88SSoby Mathew $(eval $(call MAKE_FDT_DIRS,$(1),$(2))) 63638c14d88SSoby Mathew 63738c14d88SSoby Mathewdtbs: $(DTBS) 63838c14d88SSoby Mathewall: dtbs 63903b397a8SNishanth Menonendef 640