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