Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 1 | # |
Chris Kay | 68d2836 | 2023-01-16 16:53:45 +0000 | [diff] [blame] | 2 | # Copyright (c) 2015-2023, Arm Limited and Contributors. All rights reserved. |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 3 | # |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | # SPDX-License-Identifier: BSD-3-Clause |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 5 | # |
| 6 | |
Evan Lloyd | 870a18c | 2015-12-02 18:41:22 +0000 | [diff] [blame] | 7 | # Report an error if the eval make function is not available. |
| 8 | $(eval eval_available := T) |
| 9 | ifneq (${eval_available},T) |
| 10 | $(error This makefile only works with a Make program that supports $$(eval)) |
| 11 | endif |
| 12 | |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 13 | # Some utility macros for manipulating awkward (whitespace) characters. |
| 14 | blank := |
| 15 | space :=${blank} ${blank} |
Chris Kay | 0c0007b | 2023-01-16 18:57:26 +0000 | [diff] [blame] | 16 | comma := , |
Evan Lloyd | f269714 | 2015-12-02 18:17:37 +0000 | [diff] [blame] | 17 | |
| 18 | # A user defined function to recursively search for a filename below a directory |
| 19 | # $1 is the directory root of the recursive search (blank for current directory). |
| 20 | # $2 is the file name to search for. |
| 21 | define rwildcard |
| 22 | $(strip $(foreach d,$(wildcard ${1}*),$(call rwildcard,${d}/,${2}) $(filter $(subst *,%,%${2}),${d}))) |
| 23 | endef |
| 24 | |
Yatharth Kochar | 115352c | 2015-10-02 13:58:52 +0100 | [diff] [blame] | 25 | # This table is used in converting lower case to upper case. |
| 26 | uppercase_table:=a,A b,B c,C d,D e,E f,F g,G h,H i,I j,J k,K l,L m,M n,N o,O p,P q,Q r,R s,S t,T u,U v,V w,W x,X y,Y z,Z |
| 27 | |
| 28 | # Internal macro used for converting lower case to upper case. |
| 29 | # $(1) = upper case table |
| 30 | # $(2) = String to convert |
| 31 | define uppercase_internal |
| 32 | $(if $(1),$$(subst $(firstword $(1)),$(call uppercase_internal,$(wordlist 2,$(words $(1)),$(1)),$(2))),$(2)) |
| 33 | endef |
| 34 | |
| 35 | # A macro for converting a string to upper case |
| 36 | # $(1) = String to convert |
| 37 | define uppercase |
| 38 | $(eval uppercase_result:=$(call uppercase_internal,$(uppercase_table),$(1)))$(uppercase_result) |
| 39 | endef |
| 40 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 41 | # Convenience function for adding build definitions |
| 42 | # $(eval $(call add_define,FOO)) will have: |
| 43 | # -DFOO if $(FOO) is empty; -DFOO=$(FOO) otherwise |
| 44 | define add_define |
| 45 | DEFINES += -D$(1)$(if $(value $(1)),=$(value $(1)),) |
| 46 | endef |
| 47 | |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 48 | |
| 49 | # Convenience function for addding multiple build definitions |
| 50 | # $(eval $(call add_defines,FOO BOO)) |
| 51 | define add_defines |
| 52 | $(foreach def,$1,$(eval $(call add_define,$(def)))) |
| 53 | endef |
| 54 | |
Soren Brinkmann | 9efe657 | 2016-06-09 13:36:27 -0700 | [diff] [blame] | 55 | # Convenience function for adding build definitions |
| 56 | # $(eval $(call add_define_val,FOO,BAR)) will have: |
| 57 | # -DFOO=BAR |
| 58 | define add_define_val |
| 59 | DEFINES += -D$(1)=$(2) |
| 60 | endef |
| 61 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 62 | # Convenience function for verifying option has a boolean value |
| 63 | # $(eval $(call assert_boolean,FOO)) will assert FOO is 0 or 1 |
| 64 | define assert_boolean |
Masahiro Yamada | 1ab9e92 | 2017-05-23 23:45:01 +0900 | [diff] [blame] | 65 | $(if $(filter-out 0 1,$($1)),$(error $1 must be boolean)) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 66 | endef |
| 67 | |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 68 | # Convenience function for verifying options have boolean values |
| 69 | # $(eval $(call assert_booleans,FOO BOO)) will assert FOO and BOO for 0 or 1 values |
| 70 | define assert_booleans |
| 71 | $(foreach bool,$1,$(eval $(call assert_boolean,$(bool)))) |
| 72 | endef |
| 73 | |
Jeenu Viswambharan | fca7680 | 2017-01-16 16:52:35 +0000 | [diff] [blame] | 74 | 0-9 := 0 1 2 3 4 5 6 7 8 9 |
| 75 | |
| 76 | # Function to verify that a given option $(1) contains a numeric value |
| 77 | define assert_numeric |
| 78 | $(if $($(1)),,$(error $(1) must not be empty)) |
| 79 | $(eval __numeric := $($(1))) |
| 80 | $(foreach d,$(0-9),$(eval __numeric := $(subst $(d),,$(__numeric)))) |
| 81 | $(if $(__numeric),$(error $(1) must be numeric)) |
| 82 | endef |
| 83 | |
Leonardo Sandoval | 65fca7c | 2020-09-10 12:18:27 -0500 | [diff] [blame] | 84 | # Convenience function for verifying options have numeric values |
| 85 | # $(eval $(call assert_numerics,FOO BOO)) will assert FOO and BOO contain numeric values |
| 86 | define assert_numerics |
| 87 | $(foreach num,$1,$(eval $(call assert_numeric,$(num)))) |
| 88 | endef |
| 89 | |
Vijayenthiran Subramaniam | 3414e3a | 2020-02-08 21:27:30 +0530 | [diff] [blame] | 90 | # CREATE_SEQ is a recursive function to create sequence of numbers from 1 to |
| 91 | # $(2) and assign the sequence to $(1) |
| 92 | define CREATE_SEQ |
| 93 | $(if $(word $(2), $($(1))),\ |
| 94 | $(eval $(1) += $(words $($(1))))\ |
| 95 | $(eval $(1) := $(filter-out 0,$($(1)))),\ |
| 96 | $(eval $(1) += $(words $($(1))))\ |
| 97 | $(call CREATE_SEQ,$(1),$(2))\ |
| 98 | ) |
| 99 | endef |
| 100 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 101 | # IMG_MAPFILE defines the output file describing the memory map corresponding |
| 102 | # to a BL stage |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 103 | # $(1) = BL stage |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 104 | define IMG_MAPFILE |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 105 | ${BUILD_DIR}/$(1).map |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 106 | endef |
| 107 | |
| 108 | # IMG_ELF defines the elf file corresponding to a BL stage |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 109 | # $(1) = BL stage |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 110 | define IMG_ELF |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 111 | ${BUILD_DIR}/$(1).elf |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 112 | endef |
| 113 | |
| 114 | # IMG_DUMP defines the symbols dump file corresponding to a BL stage |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 115 | # $(1) = BL stage |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 116 | define IMG_DUMP |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 117 | ${BUILD_DIR}/$(1).dump |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 118 | endef |
| 119 | |
| 120 | # IMG_BIN defines the default image file corresponding to a BL stage |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 121 | # $(1) = BL stage |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 122 | define IMG_BIN |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 123 | ${BUILD_PLAT}/$(1).bin |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 124 | endef |
| 125 | |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 126 | # IMG_ENC_BIN defines the default encrypted image file corresponding to a |
| 127 | # BL stage |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 128 | # $(1) = BL stage |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 129 | define IMG_ENC_BIN |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 130 | ${BUILD_PLAT}/$(1)_enc.bin |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 131 | endef |
| 132 | |
| 133 | # ENCRYPT_FW invokes enctool to encrypt firmware binary |
| 134 | # $(1) = input firmware binary |
| 135 | # $(2) = output encrypted firmware binary |
| 136 | define ENCRYPT_FW |
| 137 | $(2): $(1) enctool |
| 138 | $$(ECHO) " ENC $$<" |
| 139 | $$(Q)$$(ENCTOOL) $$(ENC_ARGS) -i $$< -o $$@ |
| 140 | endef |
| 141 | |
Masahiro Yamada | 6c2b459 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 142 | # TOOL_ADD_PAYLOAD appends the command line arguments required by fiptool to |
| 143 | # package a new payload and/or by cert_create to generate certificate. |
| 144 | # Optionally, it adds the dependency on this payload |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 145 | # $(1) = payload filename (i.e. bl31.bin) |
Masahiro Yamada | c85deee | 2017-12-23 23:56:18 +0900 | [diff] [blame] | 146 | # $(2) = command line option for the specified payload (i.e. --soc-fw) |
Masahiro Yamada | 5c3ae33 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 147 | # $(3) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin) |
Masahiro Yamada | cd7711d | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 148 | # $(4) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 149 | # $(5) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin) |
Masahiro Yamada | 6c2b459 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 150 | define TOOL_ADD_PAYLOAD |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 151 | ifneq ($(5),) |
| 152 | $(4)FIP_ARGS += $(2) $(5) |
| 153 | $(if $(3),$(4)CRT_DEPS += $(1)) |
| 154 | else |
Masahiro Yamada | 714a692 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 155 | $(4)FIP_ARGS += $(2) $(1) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 156 | $(if $(3),$(4)CRT_DEPS += $(3)) |
| 157 | endif |
Masahiro Yamada | 714a692 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 158 | $(if $(3),$(4)FIP_DEPS += $(3)) |
Masahiro Yamada | ec154ad | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 159 | $(4)CRT_ARGS += $(2) $(1) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 160 | endef |
| 161 | |
Masahiro Yamada | bfb64ac | 2018-02-01 16:31:09 +0900 | [diff] [blame] | 162 | # TOOL_ADD_IMG_PAYLOAD works like TOOL_ADD_PAYLOAD, but applies image filters |
| 163 | # before passing them to host tools if BL*_PRE_TOOL_FILTER is defined. |
| 164 | # $(1) = image_type (scp_bl2, bl33, etc.) |
| 165 | # $(2) = payload filepath (ex. build/fvp/release/bl31.bin) |
| 166 | # $(3) = command line option for the specified payload (ex. --soc-fw) |
| 167 | # $(4) = tool target dependency (optional) (ex. build/fvp/release/bl31.bin) |
| 168 | # $(5) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 169 | # $(6) = encrypted payload (optional) (ex. build/fvp/release/bl31_enc.bin) |
Masahiro Yamada | bfb64ac | 2018-02-01 16:31:09 +0900 | [diff] [blame] | 170 | |
| 171 | define TOOL_ADD_IMG_PAYLOAD |
| 172 | |
| 173 | $(eval PRE_TOOL_FILTER := $($(call uppercase,$(1))_PRE_TOOL_FILTER)) |
| 174 | |
| 175 | ifneq ($(PRE_TOOL_FILTER),) |
| 176 | |
| 177 | $(eval PROCESSED_PATH := $(BUILD_PLAT)/$(1).bin$($(PRE_TOOL_FILTER)_SUFFIX)) |
| 178 | |
| 179 | $(call $(PRE_TOOL_FILTER)_RULE,$(PROCESSED_PATH),$(2)) |
| 180 | |
| 181 | $(PROCESSED_PATH): $(4) |
| 182 | |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 183 | $(call TOOL_ADD_PAYLOAD,$(PROCESSED_PATH),$(3),$(PROCESSED_PATH),$(5),$(6)) |
Masahiro Yamada | bfb64ac | 2018-02-01 16:31:09 +0900 | [diff] [blame] | 184 | |
| 185 | else |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 186 | $(call TOOL_ADD_PAYLOAD,$(2),$(3),$(4),$(5),$(6)) |
Masahiro Yamada | bfb64ac | 2018-02-01 16:31:09 +0900 | [diff] [blame] | 187 | endif |
| 188 | endef |
| 189 | |
Yatharth Kochar | d1a9343 | 2015-10-12 12:33:47 +0100 | [diff] [blame] | 190 | # CERT_ADD_CMD_OPT adds a new command line option to the cert_create invocation |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 191 | # $(1) = parameter filename |
| 192 | # $(2) = cert_create command line option for the specified parameter |
Masahiro Yamada | 5ebfda3 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 193 | # $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 194 | define CERT_ADD_CMD_OPT |
Masahiro Yamada | 5ebfda3 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 195 | $(3)CRT_ARGS += $(2) $(1) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 196 | endef |
| 197 | |
Masahiro Yamada | 4d15680 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 198 | # TOOL_ADD_IMG allows the platform to specify an external image to be packed |
| 199 | # in the FIP and/or for which certificate is generated. It also adds a |
| 200 | # dependency on the image file, aborting the build if the file does not exist. |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 201 | # $(1) = image_type (scp_bl2, bl33, etc.) |
Masahiro Yamada | c85deee | 2017-12-23 23:56:18 +0900 | [diff] [blame] | 202 | # $(2) = command line option for fiptool (--scp-fw, --nt-fw, etc) |
Masahiro Yamada | cd7711d | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 203 | # $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 204 | # $(4) = Image encryption flag (optional) (0, 1) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 205 | # Example: |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 206 | # $(eval $(call TOOL_ADD_IMG,bl33,--nt-fw)) |
Masahiro Yamada | 4d15680 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 207 | define TOOL_ADD_IMG |
Masahiro Yamada | 9c5ca52 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 208 | # Build option to specify the image filename (SCP_BL2, BL33, etc) |
| 209 | # This is the uppercase form of the first parameter |
| 210 | $(eval _V := $(call uppercase,$(1))) |
| 211 | |
Pali Rohár | a5416ab | 2020-11-24 16:53:04 +0100 | [diff] [blame] | 212 | # $(check_$(1)_cmd) variable is executed in the check_$(1) target and also |
| 213 | # is put into the ${CHECK_$(3)FIP_CMD} variable which is executed by the |
| 214 | # target ${BUILD_PLAT}/${$(3)FIP_NAME}. |
| 215 | $(eval check_$(1)_cmd := \ |
| 216 | $(if $(value $(_V)),,$$$$(error "Platform '${PLAT}' requires $(_V). Please set $(_V) to point to the right file")) \ |
| 217 | $(if $(wildcard $(value $(_V))),,$$$$(error '$(_V)=$(value $(_V))' was specified, but '$(value $(_V))' does not exist)) \ |
| 218 | ) |
| 219 | |
Masahiro Yamada | 714a692 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 220 | $(3)CRT_DEPS += check_$(1) |
Pali Rohár | a5416ab | 2020-11-24 16:53:04 +0100 | [diff] [blame] | 221 | CHECK_$(3)FIP_CMD += $$(check_$(1)_cmd) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 222 | ifeq ($(4),1) |
| 223 | $(eval ENC_BIN := ${BUILD_PLAT}/$(1)_enc.bin) |
| 224 | $(call ENCRYPT_FW,$(value $(_V)),$(ENC_BIN)) |
| 225 | $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(ENC_BIN),$(3), \ |
| 226 | $(ENC_BIN)) |
| 227 | else |
Pali Rohár | a5416ab | 2020-11-24 16:53:04 +0100 | [diff] [blame] | 228 | $(call TOOL_ADD_IMG_PAYLOAD,$(1),$(value $(_V)),$(2),$(if $(wildcard $(value $(_V))),$(value $(_V)),FORCE),$(3)) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 229 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 230 | |
Masahiro Yamada | 9dff156 | 2017-12-24 13:08:00 +0900 | [diff] [blame] | 231 | .PHONY: check_$(1) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 232 | check_$(1): |
Pali Rohár | a5416ab | 2020-11-24 16:53:04 +0100 | [diff] [blame] | 233 | $(check_$(1)_cmd) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 234 | endef |
| 235 | |
Juan Pablo Conde | 3539c74 | 2022-10-25 19:41:02 -0400 | [diff] [blame] | 236 | # SELECT_OPENSSL_API_VERSION selects the OpenSSL API version to be used to |
| 237 | # build the host tools by checking the version of OpenSSL located under |
| 238 | # the path defined by the OPENSSL_DIR variable. It receives no parameters. |
| 239 | define SELECT_OPENSSL_API_VERSION |
| 240 | # Set default value for USING_OPENSSL3 macro to 0 |
| 241 | $(eval USING_OPENSSL3 = 0) |
| 242 | # Obtain the OpenSSL version for the build located under OPENSSL_DIR |
| 243 | $(eval OPENSSL_INFO := $(shell LD_LIBRARY_PATH=${OPENSSL_DIR}:${OPENSSL_DIR}/lib ${OPENSSL_BIN_PATH}/openssl version)) |
| 244 | $(eval OPENSSL_CURRENT_VER = $(word 2, ${OPENSSL_INFO})) |
| 245 | $(eval OPENSSL_CURRENT_VER_MAJOR = $(firstword $(subst ., ,$(OPENSSL_CURRENT_VER)))) |
| 246 | # If OpenSSL version is 3.x, then set USING_OPENSSL3 flag to 1 |
| 247 | $(if $(filter 3,$(OPENSSL_CURRENT_VER_MAJOR)), $(eval USING_OPENSSL3 = 1)) |
| 248 | endef |
| 249 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 250 | ################################################################################ |
Masahiro Yamada | eff36a9 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 251 | # Generic image processing filters |
| 252 | ################################################################################ |
| 253 | |
| 254 | # GZIP |
| 255 | define GZIP_RULE |
| 256 | $(1): $(2) |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 257 | $(ECHO) " GZIP $$@" |
Masahiro Yamada | eff36a9 | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 258 | $(Q)gzip -n -f -9 $$< --stdout > $$@ |
| 259 | endef |
| 260 | |
| 261 | GZIP_SUFFIX := .gz |
| 262 | |
| 263 | ################################################################################ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 264 | # Auxiliary macros to build TF images from sources |
| 265 | ################################################################################ |
| 266 | |
Masahiro Yamada | e487bb6 | 2016-12-22 15:23:05 +0900 | [diff] [blame] | 267 | MAKE_DEP = -Wp,-MD,$(DEP) -MT $$@ -MP |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 268 | |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 269 | |
| 270 | # MAKE_C_LIB builds a C source file and generates the dependency file |
| 271 | # $(1) = output directory |
| 272 | # $(2) = source file (%.c) |
| 273 | # $(3) = library name |
| 274 | define MAKE_C_LIB |
| 275 | $(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2)))) |
| 276 | $(eval DEP := $(patsubst %.o,%.d,$(OBJ))) |
Govindraj Raja | 98375d4 | 2023-01-27 10:08:54 +0000 | [diff] [blame] | 277 | $(eval LIB := $(call uppercase, $(notdir $(1)))) |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 278 | |
| 279 | $(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 280 | $$(ECHO) " CC $$<" |
Govindraj Raja | 98375d4 | 2023-01-27 10:08:54 +0000 | [diff] [blame] | 281 | $$(Q)$$(CC) $$($(LIB)_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(MAKE_DEP) -c $$< -o $$@ |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 282 | |
| 283 | -include $(DEP) |
| 284 | |
| 285 | endef |
| 286 | |
Antonio Nino Diaz | a884dfb | 2019-02-08 13:20:37 +0000 | [diff] [blame] | 287 | # MAKE_S_LIB builds an assembly source file and generates the dependency file |
| 288 | # $(1) = output directory |
| 289 | # $(2) = source file (%.S) |
| 290 | # $(3) = library name |
| 291 | define MAKE_S_LIB |
| 292 | $(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2)))) |
| 293 | $(eval DEP := $(patsubst %.o,%.d,$(OBJ))) |
| 294 | |
| 295 | $(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | lib$(3)_dirs |
| 296 | $$(ECHO) " AS $$<" |
| 297 | $$(Q)$$(AS) $$(ASFLAGS) $(MAKE_DEP) -c $$< -o $$@ |
| 298 | |
| 299 | -include $(DEP) |
| 300 | |
| 301 | endef |
| 302 | |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 303 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 304 | # MAKE_C builds a C source file and generates the dependency file |
| 305 | # $(1) = output directory |
| 306 | # $(2) = source file (%.c) |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 307 | # $(3) = BL stage |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 308 | define MAKE_C |
| 309 | |
| 310 | $(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2)))) |
Masahiro Yamada | 56c53f6 | 2016-12-22 14:02:27 +0900 | [diff] [blame] | 311 | $(eval DEP := $(patsubst %.o,%.d,$(OBJ))) |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 312 | $(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3))) |
| 313 | $(eval BL_CFLAGS := $($(call uppercase,$(3))_CFLAGS)) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 314 | |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 315 | $(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 316 | $$(ECHO) " CC $$<" |
Masahiro Yamada | efcbfa8 | 2020-03-25 16:55:28 +0900 | [diff] [blame] | 317 | $$(Q)$$(CC) $$(LTO_CFLAGS) $$(TF_CFLAGS) $$(CFLAGS) $(BL_CPPFLAGS) $(BL_CFLAGS) $(MAKE_DEP) -c $$< -o $$@ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 318 | |
Masahiro Yamada | 56c53f6 | 2016-12-22 14:02:27 +0900 | [diff] [blame] | 319 | -include $(DEP) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 320 | |
| 321 | endef |
| 322 | |
| 323 | |
| 324 | # MAKE_S builds an assembly source file and generates the dependency file |
| 325 | # $(1) = output directory |
| 326 | # $(2) = assembly file (%.S) |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 327 | # $(3) = BL stage |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 328 | define MAKE_S |
| 329 | |
| 330 | $(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2)))) |
Masahiro Yamada | 56c53f6 | 2016-12-22 14:02:27 +0900 | [diff] [blame] | 331 | $(eval DEP := $(patsubst %.o,%.d,$(OBJ))) |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 332 | $(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3))) |
| 333 | $(eval BL_ASFLAGS := $($(call uppercase,$(3))_ASFLAGS)) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 334 | |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 335 | $(OBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 336 | $$(ECHO) " AS $$<" |
Masahiro Yamada | efcbfa8 | 2020-03-25 16:55:28 +0900 | [diff] [blame] | 337 | $$(Q)$$(AS) $$(ASFLAGS) $(BL_CPPFLAGS) $(BL_ASFLAGS) $(MAKE_DEP) -c $$< -o $$@ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 338 | |
Masahiro Yamada | 56c53f6 | 2016-12-22 14:02:27 +0900 | [diff] [blame] | 339 | -include $(DEP) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 340 | |
| 341 | endef |
| 342 | |
| 343 | |
| 344 | # MAKE_LD generate the linker script using the C preprocessor |
| 345 | # $(1) = output linker script |
| 346 | # $(2) = input template |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 347 | # $(3) = BL stage |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 348 | define MAKE_LD |
| 349 | |
Masahiro Yamada | 56c53f6 | 2016-12-22 14:02:27 +0900 | [diff] [blame] | 350 | $(eval DEP := $(1).d) |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 351 | $(eval BL_CPPFLAGS := $($(call uppercase,$(3))_CPPFLAGS) -DIMAGE_$(call uppercase,$(3))) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 352 | |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 353 | $(1): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | $(3)_dirs |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 354 | $$(ECHO) " PP $$<" |
Masahiro Yamada | efcbfa8 | 2020-03-25 16:55:28 +0900 | [diff] [blame] | 355 | $$(Q)$$(CPP) $$(CPPFLAGS) $(BL_CPPFLAGS) $(TF_CFLAGS_$(ARCH)) -P -x assembler-with-cpp -D__LINKER__ $(MAKE_DEP) -o $$@ $$< |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 356 | |
Masahiro Yamada | 56c53f6 | 2016-12-22 14:02:27 +0900 | [diff] [blame] | 357 | -include $(DEP) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 358 | |
| 359 | endef |
| 360 | |
Antonio Nino Diaz | a884dfb | 2019-02-08 13:20:37 +0000 | [diff] [blame] | 361 | # MAKE_LIB_OBJS builds both C and assembly source files |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 362 | # $(1) = output directory |
| 363 | # $(2) = list of source files |
| 364 | # $(3) = name of the library |
| 365 | define MAKE_LIB_OBJS |
| 366 | $(eval C_OBJS := $(filter %.c,$(2))) |
| 367 | $(eval REMAIN := $(filter-out %.c,$(2))) |
| 368 | $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C_LIB,$(1),$(obj),$(3)))) |
| 369 | |
Antonio Nino Diaz | a884dfb | 2019-02-08 13:20:37 +0000 | [diff] [blame] | 370 | $(eval S_OBJS := $(filter %.S,$(REMAIN))) |
| 371 | $(eval REMAIN := $(filter-out %.S,$(REMAIN))) |
| 372 | $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S_LIB,$(1),$(obj),$(3)))) |
| 373 | |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 374 | $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN))) |
| 375 | endef |
| 376 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 377 | |
| 378 | # MAKE_OBJS builds both C and assembly source files |
| 379 | # $(1) = output directory |
| 380 | # $(2) = list of source files (both C and assembly) |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 381 | # $(3) = BL stage |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 382 | define MAKE_OBJS |
| 383 | $(eval C_OBJS := $(filter %.c,$(2))) |
| 384 | $(eval REMAIN := $(filter-out %.c,$(2))) |
| 385 | $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj),$(3)))) |
| 386 | |
| 387 | $(eval S_OBJS := $(filter %.S,$(REMAIN))) |
| 388 | $(eval REMAIN := $(filter-out %.S,$(REMAIN))) |
| 389 | $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj),$(3)))) |
| 390 | |
| 391 | $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN))) |
| 392 | endef |
| 393 | |
| 394 | |
| 395 | # NOTE: The line continuation '\' is required in the next define otherwise we |
| 396 | # end up with a line-feed characer at the end of the last c filename. |
Evan Lloyd | a71d259 | 2015-12-02 18:56:06 +0000 | [diff] [blame] | 397 | # Also bear this issue in mind if extending the list of supported filetypes. |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 398 | define SOURCES_TO_OBJS |
| 399 | $(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \ |
| 400 | $(notdir $(patsubst %.S,%.o,$(filter %.S,$(1)))) |
| 401 | endef |
| 402 | |
Patrick Georgi | 8a10e34 | 2016-01-28 14:46:18 +0100 | [diff] [blame] | 403 | # Allow overriding the timestamp, for example for reproducible builds, or to |
| 404 | # synchronize timestamps across multiple projects. |
| 405 | # This must be set to a C string (including quotes where applicable). |
| 406 | BUILD_MESSAGE_TIMESTAMP ?= __TIME__", "__DATE__ |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 407 | |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 408 | .PHONY: libraries |
| 409 | |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 410 | # MAKE_LIB_DIRS macro defines the target for the directory where |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 411 | # libraries are created |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 412 | define MAKE_LIB_DIRS |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 413 | $(eval LIB_DIR := ${BUILD_PLAT}/lib) |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 414 | $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib) |
| 415 | $(eval LIBWRAPPER_DIR := ${BUILD_PLAT}/libwrapper) |
| 416 | $(eval $(call MAKE_PREREQ_DIR,${LIB_DIR},${BUILD_PLAT})) |
| 417 | $(eval $(call MAKE_PREREQ_DIR,${ROMLIB_DIR},${BUILD_PLAT})) |
| 418 | $(eval $(call MAKE_PREREQ_DIR,${LIBWRAPPER_DIR},${BUILD_PLAT})) |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 419 | endef |
| 420 | |
| 421 | # MAKE_LIB macro defines the targets and options to build each BL image. |
| 422 | # Arguments: |
| 423 | # $(1) = Library name |
| 424 | define MAKE_LIB |
| 425 | $(eval BUILD_DIR := ${BUILD_PLAT}/lib$(1)) |
| 426 | $(eval LIB_DIR := ${BUILD_PLAT}/lib) |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 427 | $(eval ROMLIB_DIR := ${BUILD_PLAT}/romlib) |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 428 | $(eval SOURCES := $(LIB$(call uppercase,$(1))_SRCS)) |
| 429 | $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES)))) |
| 430 | |
| 431 | $(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT})) |
| 432 | $(eval $(call MAKE_LIB_OBJS,$(BUILD_DIR),$(SOURCES),$(1))) |
| 433 | |
| 434 | .PHONY : lib${1}_dirs |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 435 | lib${1}_dirs: | ${BUILD_DIR} ${LIB_DIR} ${ROMLIB_DIR} ${LIBWRAPPER_DIR} |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 436 | libraries: ${LIB_DIR}/lib$(1).a |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 437 | ifneq ($(findstring armlink,$(notdir $(LD))),) |
| 438 | LDPATHS = --userlibpath=${LIB_DIR} |
| 439 | LDLIBS += --library=$(1) |
| 440 | else |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 441 | LDPATHS = -L${LIB_DIR} |
| 442 | LDLIBS += -l$(1) |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 443 | endif |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 444 | |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 445 | ifeq ($(USE_ROMLIB),1) |
Sathees Balya | f5ec500 | 2018-10-18 19:14:21 +0100 | [diff] [blame] | 446 | LIBWRAPPER = -lwrappers |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 447 | endif |
| 448 | |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 449 | all: ${LIB_DIR}/lib$(1).a |
| 450 | |
| 451 | ${LIB_DIR}/lib$(1).a: $(OBJS) |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 452 | $$(ECHO) " AR $$@" |
Roberto Vargas | 21360f3 | 2018-05-08 10:27:10 +0100 | [diff] [blame] | 453 | $$(Q)$$(AR) cr $$@ $$? |
| 454 | endef |
| 455 | |
Chris Kay | 68d2836 | 2023-01-16 16:53:45 +0000 | [diff] [blame] | 456 | # Generate the path to one or more preprocessed linker scripts given the paths |
| 457 | # of their sources. |
| 458 | # |
| 459 | # Arguments: |
| 460 | # $(1) = path to one or more linker script sources |
| 461 | define linker_script_path |
| 462 | $(patsubst %.S,$(BUILD_DIR)/%,$(1)) |
| 463 | endef |
| 464 | |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 465 | # MAKE_BL macro defines the targets and options to build each BL image. |
| 466 | # Arguments: |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 467 | # $(1) = BL stage |
Juan Castillo | 8e04dec | 2016-01-05 11:55:36 +0000 | [diff] [blame] | 468 | # $(2) = FIP command line option (if empty, image will not be included in the FIP) |
Masahiro Yamada | cd7711d | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 469 | # $(3) = FIP prefix (optional) (if FWU_, target is fwu_fip instead of fip) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 470 | # $(4) = BL encryption flag (optional) (0, 1) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 471 | define MAKE_BL |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 472 | $(eval BUILD_DIR := ${BUILD_PLAT}/$(1)) |
| 473 | $(eval BL_SOURCES := $($(call uppercase,$(1))_SOURCES)) |
Yatharth Kochar | 115352c | 2015-10-02 13:58:52 +0100 | [diff] [blame] | 474 | $(eval SOURCES := $(BL_SOURCES) $(BL_COMMON_SOURCES) $(PLAT_BL_COMMON_SOURCES)) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 475 | $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES)))) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 476 | $(eval MAPFILE := $(call IMG_MAPFILE,$(1))) |
| 477 | $(eval ELF := $(call IMG_ELF,$(1))) |
| 478 | $(eval DUMP := $(call IMG_DUMP,$(1))) |
| 479 | $(eval BIN := $(call IMG_BIN,$(1))) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 480 | $(eval ENC_BIN := $(call IMG_ENC_BIN,$(1))) |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 481 | $(eval BL_LIBS := $($(call uppercase,$(1))_LIBS)) |
Chris Kay | 68d2836 | 2023-01-16 16:53:45 +0000 | [diff] [blame] | 482 | |
| 483 | $(eval DEFAULT_LINKER_SCRIPT_SOURCE := $($(call uppercase,$(1))_DEFAULT_LINKER_SCRIPT_SOURCE)) |
| 484 | $(eval DEFAULT_LINKER_SCRIPT := $(call linker_script_path,$(DEFAULT_LINKER_SCRIPT_SOURCE))) |
| 485 | |
Chris Kay | 0c0007b | 2023-01-16 18:57:26 +0000 | [diff] [blame] | 486 | $(eval LINKER_SCRIPT_SOURCES := $($(call uppercase,$(1))_LINKER_SCRIPT_SOURCES)) |
| 487 | $(eval LINKER_SCRIPTS := $(call linker_script_path,$(LINKER_SCRIPT_SOURCES))) |
| 488 | |
Evan Lloyd | 93d3b70 | 2015-12-03 12:19:30 +0000 | [diff] [blame] | 489 | # We use sort only to get a list of unique object directory names. |
| 490 | # ordering is not relevant but sort removes duplicates. |
Chris Kay | 0c0007b | 2023-01-16 18:57:26 +0000 | [diff] [blame] | 491 | $(eval TEMP_OBJ_DIRS := $(sort $(dir ${OBJS} ${DEFAULT_LINKER_SCRIPT} ${LINKER_SCRIPTS}))) |
Evan Lloyd | 93d3b70 | 2015-12-03 12:19:30 +0000 | [diff] [blame] | 492 | # The $(dir ) function leaves a trailing / on the directory names |
Masahiro Yamada | 823482b | 2017-01-19 19:31:00 +0900 | [diff] [blame] | 493 | # Rip off the / to match directory names with make rule targets. |
| 494 | $(eval OBJ_DIRS := $(patsubst %/,%,$(TEMP_OBJ_DIRS))) |
Evan Lloyd | 93d3b70 | 2015-12-03 12:19:30 +0000 | [diff] [blame] | 495 | |
| 496 | # Create generators for object directory structure |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 497 | |
Masahiro Yamada | e2395b4 | 2017-11-04 03:12:28 +0900 | [diff] [blame] | 498 | $(eval $(call MAKE_PREREQ_DIR,${BUILD_DIR},${BUILD_PLAT})) |
Evan Lloyd | 4c3055f | 2017-04-07 16:58:57 +0100 | [diff] [blame] | 499 | |
Chris Kay | 68d2836 | 2023-01-16 16:53:45 +0000 | [diff] [blame] | 500 | $(eval $(foreach objd,${OBJ_DIRS}, |
| 501 | $(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR}))) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 502 | |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 503 | .PHONY : ${1}_dirs |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 504 | |
Evan Lloyd | 93d3b70 | 2015-12-03 12:19:30 +0000 | [diff] [blame] | 505 | # We use order-only prerequisites to ensure that directories are created, |
| 506 | # but do not cause re-builds every time a file is written. |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 507 | ${1}_dirs: | ${OBJ_DIRS} |
Evan Lloyd | 93d3b70 | 2015-12-03 12:19:30 +0000 | [diff] [blame] | 508 | |
| 509 | $(eval $(call MAKE_OBJS,$(BUILD_DIR),$(SOURCES),$(1))) |
Chris Kay | 0c0007b | 2023-01-16 18:57:26 +0000 | [diff] [blame] | 510 | |
| 511 | # Generate targets to preprocess each required linker script |
| 512 | $(eval $(foreach source,$(DEFAULT_LINKER_SCRIPT_SOURCE) $(LINKER_SCRIPT_SOURCES), \ |
| 513 | $(call MAKE_LD,$(call linker_script_path,$(source)),$(source),$(1)))) |
| 514 | |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 515 | $(eval BL_LDFLAGS := $($(call uppercase,$(1))_LDFLAGS)) |
Evan Lloyd | 93d3b70 | 2015-12-03 12:19:30 +0000 | [diff] [blame] | 516 | |
Roberto Vargas | e92111a | 2018-05-22 16:05:42 +0100 | [diff] [blame] | 517 | ifeq ($(USE_ROMLIB),1) |
| 518 | $(ELF): romlib.bin |
| 519 | endif |
| 520 | |
developer | 09f3e98 | 2022-03-23 18:51:48 +0800 | [diff] [blame] | 521 | # MODULE_OBJS can be assigned by vendors with different compiled |
| 522 | # object file path, and prebuilt object file path. |
| 523 | $(eval OBJS += $(MODULE_OBJS)) |
| 524 | |
Chris Kay | 0c0007b | 2023-01-16 18:57:26 +0000 | [diff] [blame] | 525 | $(ELF): $(OBJS) $(DEFAULT_LINKER_SCRIPT) $(LINKER_SCRIPTS) | $(1)_dirs libraries $(BL_LIBS) |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 526 | $$(ECHO) " LD $$@" |
Evan Lloyd | cf6e9d4 | 2015-12-03 12:58:52 +0000 | [diff] [blame] | 527 | ifdef MAKE_BUILD_STRINGS |
| 528 | $(call MAKE_BUILD_STRINGS, $(BUILD_DIR)/build_message.o) |
| 529 | else |
Patrick Georgi | 8a10e34 | 2016-01-28 14:46:18 +0100 | [diff] [blame] | 530 | @echo 'const char build_message[] = "Built : "$(BUILD_MESSAGE_TIMESTAMP); \ |
laurenw-arm | e954f65 | 2022-07-12 10:12:05 -0500 | [diff] [blame] | 531 | const char version_string[] = "${VERSION_STRING}"; \ |
| 532 | const char version[] = "${VERSION}";' | \ |
Masahiro Yamada | 49071ae | 2016-12-22 12:39:55 +0900 | [diff] [blame] | 533 | $$(CC) $$(TF_CFLAGS) $$(CFLAGS) -xc -c - -o $(BUILD_DIR)/build_message.o |
Evan Lloyd | cf6e9d4 | 2015-12-03 12:58:52 +0000 | [diff] [blame] | 534 | endif |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 535 | ifneq ($(findstring armlink,$(notdir $(LD))),) |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 536 | $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) --entry=${1}_entrypoint \ |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 537 | --predefine="-D__LINKER__=$(__LINKER__)" \ |
| 538 | --predefine="-DTF_CFLAGS=$(TF_CFLAGS)" \ |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 539 | --map --list="$(MAPFILE)" --scatter=${PLAT_DIR}/scat/${1}.scat \ |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 540 | $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) \ |
| 541 | $(BUILD_DIR)/build_message.o $(OBJS) |
zelalem-aweke | d5f4527 | 2019-11-12 16:20:17 -0600 | [diff] [blame] | 542 | else ifneq ($(findstring gcc,$(notdir $(LD))),) |
| 543 | $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) -Wl,-Map=$(MAPFILE) \ |
Chris Kay | 0c0007b | 2023-01-16 18:57:26 +0000 | [diff] [blame] | 544 | $(addprefix -Wl$(comma)--script$(comma),$(LINKER_SCRIPTS)) -Wl,--script,$(DEFAULT_LINKER_SCRIPT) \ |
| 545 | $(BUILD_DIR)/build_message.o \ |
zelalem-aweke | d5f4527 | 2019-11-12 16:20:17 -0600 | [diff] [blame] | 546 | $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 547 | else |
Masahiro Yamada | e2e8e10 | 2020-01-17 13:44:20 +0900 | [diff] [blame] | 548 | $$(Q)$$(LD) -o $$@ $$(TF_LDFLAGS) $$(LDFLAGS) $(BL_LDFLAGS) -Map=$(MAPFILE) \ |
Chris Kay | 0c0007b | 2023-01-16 18:57:26 +0000 | [diff] [blame] | 549 | $(addprefix -T ,$(LINKER_SCRIPTS)) --script $(DEFAULT_LINKER_SCRIPT) \ |
| 550 | $(BUILD_DIR)/build_message.o \ |
Sathees Balya | f5ec500 | 2018-10-18 19:14:21 +0100 | [diff] [blame] | 551 | $(OBJS) $(LDPATHS) $(LIBWRAPPER) $(LDLIBS) $(BL_LIBS) |
Varun Wadekar | 4d034c5 | 2019-01-11 14:47:48 -0800 | [diff] [blame] | 552 | endif |
Christoph Müllner | 4f088e4 | 2019-04-24 09:45:30 +0200 | [diff] [blame] | 553 | ifeq ($(DISABLE_BIN_GENERATION),1) |
| 554 | @${ECHO_BLANK_LINE} |
| 555 | @echo "Built $$@ successfully" |
| 556 | @${ECHO_BLANK_LINE} |
| 557 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 558 | |
| 559 | $(DUMP): $(ELF) |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 560 | $${ECHO} " OD $$@" |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 561 | $${Q}$${OD} -dx $$< > $$@ |
| 562 | |
| 563 | $(BIN): $(ELF) |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 564 | $${ECHO} " BIN $$@" |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 565 | $$(Q)$$(OC) -O binary $$< $$@ |
Evan Lloyd | 1c5f360 | 2017-04-11 16:52:00 +0100 | [diff] [blame] | 566 | @${ECHO_BLANK_LINE} |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 567 | @echo "Built $$@ successfully" |
Evan Lloyd | 1c5f360 | 2017-04-11 16:52:00 +0100 | [diff] [blame] | 568 | @${ECHO_BLANK_LINE} |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 569 | |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 570 | .PHONY: $(1) |
Christoph Müllner | 4f088e4 | 2019-04-24 09:45:30 +0200 | [diff] [blame] | 571 | ifeq ($(DISABLE_BIN_GENERATION),1) |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 572 | $(1): $(ELF) $(DUMP) |
Christoph Müllner | 4f088e4 | 2019-04-24 09:45:30 +0200 | [diff] [blame] | 573 | else |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 574 | $(1): $(BIN) $(DUMP) |
Christoph Müllner | 4f088e4 | 2019-04-24 09:45:30 +0200 | [diff] [blame] | 575 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 576 | |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 577 | all: $(1) |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 578 | |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 579 | ifeq ($(4),1) |
| 580 | $(call ENCRYPT_FW,$(BIN),$(ENC_BIN)) |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 581 | $(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(ENC_BIN),$(3), \ |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 582 | $(ENC_BIN))) |
| 583 | else |
Zelalem Aweke | b44dec1 | 2021-07-11 17:25:48 -0500 | [diff] [blame] | 584 | $(if $(2),$(call TOOL_ADD_IMG_PAYLOAD,$(1),$(BIN),--$(2),$(BIN),$(3))) |
Sumit Garg | eec5244 | 2019-11-14 16:33:45 +0530 | [diff] [blame] | 585 | endif |
Juan Castillo | a3487d1 | 2015-08-18 14:23:04 +0100 | [diff] [blame] | 586 | |
| 587 | endef |
| 588 | |
Soby Mathew | ab4181d | 2017-12-14 17:44:56 +0000 | [diff] [blame] | 589 | # Convert device tree source file names to matching blobs |
| 590 | # $(1) = input dts |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 591 | define SOURCES_TO_DTBS |
| 592 | $(notdir $(patsubst %.dts,%.dtb,$(filter %.dts,$(1)))) |
| 593 | endef |
| 594 | |
Soby Mathew | ab4181d | 2017-12-14 17:44:56 +0000 | [diff] [blame] | 595 | # MAKE_FDT_DIRS macro creates the prerequisite directories that host the |
| 596 | # FDT binaries |
| 597 | # $(1) = output directory |
| 598 | # $(2) = input dts |
| 599 | define MAKE_FDT_DIRS |
| 600 | $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2)))) |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 601 | $(eval TEMP_DTB_DIRS := $(sort $(dir ${DTBS}))) |
| 602 | # The $(dir ) function leaves a trailing / on the directory names |
| 603 | # Rip off the / to match directory names with make rule targets. |
| 604 | $(eval DTB_DIRS := $(patsubst %/,%,$(TEMP_DTB_DIRS))) |
| 605 | |
| 606 | $(eval $(foreach objd,${DTB_DIRS},$(call MAKE_PREREQ_DIR,${objd},${BUILD_DIR}))) |
| 607 | |
| 608 | fdt_dirs: ${DTB_DIRS} |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 609 | endef |
| 610 | |
Soby Mathew | ab4181d | 2017-12-14 17:44:56 +0000 | [diff] [blame] | 611 | # MAKE_DTB generate the Flattened device tree binary |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 612 | # $(1) = output directory |
| 613 | # $(2) = input dts |
| 614 | define MAKE_DTB |
| 615 | |
Yann Gautier | f383180 | 2018-09-04 10:44:00 +0200 | [diff] [blame] | 616 | # List of DTB file(s) to generate, based on DTS file basename list |
Soby Mathew | ab4181d | 2017-12-14 17:44:56 +0000 | [diff] [blame] | 617 | $(eval DOBJ := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2)))) |
Yann Gautier | f383180 | 2018-09-04 10:44:00 +0200 | [diff] [blame] | 618 | # List of the pre-compiled DTS file(s) |
Yann Gautier | 2cf1dbc | 2018-06-18 16:00:23 +0200 | [diff] [blame] | 619 | $(eval DPRE := $(addprefix $(1)/,$(patsubst %.dts,%.pre.dts,$(notdir $(2))))) |
Yann Gautier | f383180 | 2018-09-04 10:44:00 +0200 | [diff] [blame] | 620 | # Dependencies of the pre-compiled DTS file(s) on its source and included files |
| 621 | $(eval DTSDEP := $(patsubst %.dtb,%.o.d,$(DOBJ))) |
| 622 | # Dependencies of the DT compilation on its pre-compiled DTS |
| 623 | $(eval DTBDEP := $(patsubst %.dtb,%.d,$(DOBJ))) |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 624 | |
Stephen Warren | c4d562a | 2018-02-21 17:13:50 -0700 | [diff] [blame] | 625 | $(DOBJ): $(2) $(filter-out %.d,$(MAKEFILE_LIST)) | fdt_dirs |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 626 | $${ECHO} " CPP $$<" |
Yann Gautier | f383180 | 2018-09-04 10:44:00 +0200 | [diff] [blame] | 627 | $(eval DTBS := $(addprefix $(1)/,$(call SOURCES_TO_DTBS,$(2)))) |
Manish Pandey | e6c5a23 | 2019-01-21 14:50:10 +0000 | [diff] [blame] | 628 | $$(Q)$$(PP) $$(DTC_CPPFLAGS) -MT $(DTBS) -MMD -MF $(DTSDEP) -o $(DPRE) $$< |
Andre Przywara | cf2bb08 | 2018-09-27 10:56:05 +0100 | [diff] [blame] | 629 | $${ECHO} " DTC $$<" |
Balint Dobszay | 5ce2c32 | 2020-01-10 17:16:27 +0100 | [diff] [blame] | 630 | $$(Q)$$(DTC) $$(DTC_FLAGS) -d $(DTBDEP) -o $$@ $(DPRE) |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 631 | |
Yann Gautier | f383180 | 2018-09-04 10:44:00 +0200 | [diff] [blame] | 632 | -include $(DTBDEP) |
| 633 | -include $(DTSDEP) |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 634 | |
| 635 | endef |
| 636 | |
| 637 | # MAKE_DTBS builds flattened device tree sources |
| 638 | # $(1) = output directory |
| 639 | # $(2) = list of flattened device tree source files |
| 640 | define MAKE_DTBS |
| 641 | $(eval DOBJS := $(filter %.dts,$(2))) |
| 642 | $(eval REMAIN := $(filter-out %.dts,$(2))) |
Soby Mathew | ab4181d | 2017-12-14 17:44:56 +0000 | [diff] [blame] | 643 | $(and $(REMAIN),$(error FDT_SOURCES contain non-DTS files: $(REMAIN))) |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 644 | $(eval $(foreach obj,$(DOBJS),$(call MAKE_DTB,$(1),$(obj)))) |
| 645 | |
Soby Mathew | ab4181d | 2017-12-14 17:44:56 +0000 | [diff] [blame] | 646 | $(eval $(call MAKE_FDT_DIRS,$(1),$(2))) |
| 647 | |
| 648 | dtbs: $(DTBS) |
| 649 | all: dtbs |
Nishanth Menon | 4ac02ba | 2016-10-14 01:13:57 +0000 | [diff] [blame] | 650 | endef |