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