Merge tag 'for-v2020.01' of https://gitlab.denx.de/u-boot/custodians/u-boot-ubi
[oweals/u-boot.git] / scripts / Makefile.spl
1 # SPDX-License-Identifier: GPL-2.0+
2 #
3 # (C) Copyright 2000-2011
4 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 #
6 # (C) Copyright 2011
7 # Daniel Schwierzeck, daniel.schwierzeck@googlemail.com.
8 #
9 # (C) Copyright 2011
10 # Texas Instruments Incorporated - http://www.ti.com/
11 # Aneesh V <aneesh@ti.com>
12 # Based on top-level Makefile.
13 #
14
15 src := $(obj)
16
17 # Create output directory if not already present
18 _dummy := $(shell [ -d $(obj) ] || mkdir -p $(obj))
19
20 include $(srctree)/scripts/Kbuild.include
21
22 -include include/config/auto.conf
23 -include $(obj)/include/autoconf.mk
24
25 KBUILD_CPPFLAGS += -DCONFIG_SPL_BUILD
26 ifeq ($(CONFIG_TPL_BUILD),y)
27 KBUILD_CPPFLAGS += -DCONFIG_TPL_BUILD
28 endif
29
30 ifeq ($(CONFIG_TPL_BUILD),y)
31 SPL_BIN := u-boot-tpl
32 else
33 SPL_BIN := u-boot-spl
34 endif
35
36 ifdef CONFIG_SPL_BUILD
37 SPL_ := SPL_
38 ifeq ($(CONFIG_TPL_BUILD),y)
39 SPL_TPL_ := TPL_
40 else
41 SPL_TPL_ := SPL_
42 endif
43 else
44 SPL_ :=
45 SPL_TPL_ :=
46 endif
47
48 ifeq ($(obj)$(CONFIG_SUPPORT_SPL),spl)
49 $(error You cannot build SPL without enabling CONFIG_SUPPORT_SPL)
50 endif
51 ifeq ($(obj)$(CONFIG_SUPPORT_TPL),tpl)
52 $(error You cannot build TPL without enabling CONFIG_SUPPORT_TPL)
53 endif
54
55 include $(srctree)/config.mk
56 include $(srctree)/arch/$(ARCH)/Makefile
57
58 include $(srctree)/scripts/Makefile.lib
59
60 # Enable garbage collection of un-used sections for SPL
61 KBUILD_CFLAGS += -ffunction-sections -fdata-sections
62 LDFLAGS_FINAL += --gc-sections
63
64 # FIX ME
65 cpp_flags := $(KBUILD_CPPFLAGS) $(PLATFORM_CPPFLAGS) $(UBOOTINCLUDE) \
66                                                         $(NOSTDINC_FLAGS)
67 c_flags := $(KBUILD_CFLAGS) $(cpp_flags)
68
69 HAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(srctree)/board/$(VENDOR)/common/Makefile),y,n)
70
71 libs-y += $(if $(BOARDDIR),board/$(BOARDDIR)/)
72 libs-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/
73
74 libs-$(CONFIG_SPL_FRAMEWORK) += common/spl/
75 libs-y += common/init/
76
77 # Special handling for a few options which support SPL/TPL
78 ifeq ($(CONFIG_TPL_BUILD),y)
79 libs-$(CONFIG_TPL_LIBCOMMON_SUPPORT) += common/ cmd/ env/
80 libs-$(CONFIG_TPL_LIBGENERIC_SUPPORT) += lib/
81 else
82 libs-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/ cmd/ env/
83 libs-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/
84 ifdef CONFIG_SPL_FRAMEWORK
85 libs-$(CONFIG_PARTITIONS) += disk/
86 endif
87 endif
88
89 libs-y += drivers/
90 libs-$(CONFIG_SPL_USB_GADGET) += drivers/usb/dwc3/
91 libs-y += dts/
92 libs-y += fs/
93 libs-$(CONFIG_SPL_POST_MEM_SUPPORT) += post/drivers/
94 libs-$(CONFIG_SPL_NET_SUPPORT) += net/
95
96 head-y          := $(addprefix $(obj)/,$(head-y))
97 libs-y          := $(addprefix $(obj)/,$(libs-y))
98 u-boot-spl-dirs := $(patsubst %/,%,$(filter %/, $(libs-y)))
99
100 libs-y := $(patsubst %/, %/built-in.o, $(libs-y))
101
102 # Add GCC lib
103 ifeq ($(CONFIG_USE_PRIVATE_LIBGCC),y)
104 PLATFORM_LIBGCC = arch/$(ARCH)/lib/lib.a
105 PLATFORM_LIBS := $(filter-out %/lib.a, $(filter-out -lgcc, $(PLATFORM_LIBS))) $(PLATFORM_LIBGCC)
106 endif
107
108 u-boot-spl-init := $(head-y)
109 u-boot-spl-main := $(libs-y)
110 ifdef CONFIG_$(SPL_TPL_)OF_PLATDATA
111 u-boot-spl-platdata := $(obj)/dts/dt-platdata.o
112 endif
113
114 # Linker Script
115 # First test whether there's a linker-script for the specific stage defined...
116 ifneq ($(CONFIG_$(SPL_TPL_)LDSCRIPT),)
117 # need to strip off double quotes
118 LDSCRIPT := $(addprefix $(srctree)/,$(CONFIG_$(SPL_TPL_)LDSCRIPT:"%"=%))
119 else
120 # ...then fall back to the generic SPL linker-script
121 ifneq ($(CONFIG_SPL_LDSCRIPT),)
122 # need to strip off double quotes
123 LDSCRIPT := $(addprefix $(srctree)/,$(CONFIG_SPL_LDSCRIPT:"%"=%))
124 endif
125 endif
126
127 ifeq ($(wildcard $(LDSCRIPT)),)
128         LDSCRIPT := $(srctree)/board/$(BOARDDIR)/u-boot-spl.lds
129 endif
130 ifeq ($(wildcard $(LDSCRIPT)),)
131         LDSCRIPT := $(srctree)/$(CPUDIR)/u-boot-spl.lds
132 endif
133 ifeq ($(wildcard $(LDSCRIPT)),)
134         LDSCRIPT := $(srctree)/arch/$(ARCH)/cpu/u-boot-spl.lds
135 endif
136 ifeq ($(wildcard $(LDSCRIPT)),)
137 $(error could not find linker script)
138 endif
139
140 # Special flags for CPP when processing the linker script.
141 # Pass the version down so we can handle backwards compatibility
142 # on the fly.
143 LDPPFLAGS += \
144         -include $(srctree)/include/u-boot/u-boot.lds.h \
145         -include $(objtree)/include/config.h \
146         -DCPUDIR=$(CPUDIR) \
147         $(shell $(LD) --version | \
148           sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
149
150 # Turn various CONFIG symbols into IMAGE symbols for easy reuse of
151 # the scripts between SPL and TPL.
152 ifneq ($(CONFIG_$(SPL_TPL_)MAX_SIZE),)
153 LDPPFLAGS += -DIMAGE_MAX_SIZE=$(CONFIG_$(SPL_TPL_)MAX_SIZE)
154 endif
155 ifneq ($(CONFIG_$(SPL_TPL_)TEXT_BASE),)
156 LDPPFLAGS += -DIMAGE_TEXT_BASE=$(CONFIG_$(SPL_TPL_)TEXT_BASE)
157 endif
158
159 MKIMAGEOUTPUT ?= /dev/null
160
161 quiet_cmd_mkimage = MKIMAGE $@
162 cmd_mkimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) -d $< $@ \
163         >$(MKIMAGEOUTPUT) $(if $(KBUILD_VERBOSE:0=), && cat $(MKIMAGEOUTPUT))
164
165 quiet_cmd_mkfitimage = MKIMAGE $@
166 cmd_mkfitimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) -f $(SPL_ITS) -E $@ \
167         $(if $(KBUILD_VERBOSE:1=), MKIMAGEOUTPUT)
168
169 MKIMAGEFLAGS_MLO = -T omapimage -a $(CONFIG_SPL_TEXT_BASE)
170
171 MKIMAGEFLAGS_MLO.byteswap = -T omapimage -n byteswap -a $(CONFIG_SPL_TEXT_BASE)
172
173 MLO MLO.byteswap: $(obj)/u-boot-spl.bin FORCE
174         $(call if_changed,mkimage)
175
176 ifeq ($(CONFIG_SYS_SOC),"at91")
177 MKIMAGEFLAGS_boot.bin = -T atmelimage
178
179 ifeq ($(CONFIG_SPL_GENERATE_ATMEL_PMECC_HEADER),y)
180 MKIMAGEFLAGS_boot.bin += -n $(shell $(obj)/../tools/atmel_pmecc_params)
181
182 $(obj)/boot.bin: $(obj)/../tools/atmel_pmecc_params
183 endif
184
185 $(obj)/boot.bin: $(obj)/u-boot-spl.bin FORCE
186         $(call if_changed,mkimage)
187 else
188 ifdef CONFIG_ARCH_ZYNQ
189 MKIMAGEFLAGS_boot.bin = -T zynqimage -R $(srctree)/$(CONFIG_BOOT_INIT_FILE)
190 endif
191 ifdef CONFIG_ARCH_ZYNQMP
192 ifneq ($(CONFIG_PMUFW_INIT_FILE),"")
193 spl/boot.bin: zynqmp-check-pmufw
194 zynqmp-check-pmufw: FORCE
195         ( cd $(srctree) && test -r $(CONFIG_PMUFW_INIT_FILE) ) \
196                 || ( echo "Cannot read $(CONFIG_PMUFW_INIT_FILE)" && false )
197 endif
198 MKIMAGEFLAGS_boot.bin = -T zynqmpimage -R $(srctree)/$(CONFIG_BOOT_INIT_FILE) \
199         -n "$(shell cd $(srctree); readlink -f $(CONFIG_PMUFW_INIT_FILE))"
200 endif
201
202 $(obj)/$(SPL_BIN)-align.bin: $(obj)/$(SPL_BIN).bin
203         @dd if=$< of=$@ conv=block,sync bs=4 2>/dev/null;
204
205 spl/boot.bin: $(obj)/$(SPL_BIN)-align.bin FORCE
206         $(call if_changed,mkimage)
207 endif
208
209 ALL-y   += $(obj)/$(SPL_BIN).bin
210
211 ifdef CONFIG_SAMSUNG
212 ALL-y   += $(obj)/$(BOARD)-spl.bin
213 endif
214
215 ifneq ($(CONFIG_TARGET_SOCFPGA_GEN5)$(CONFIG_TARGET_SOCFPGA_ARRIA10),)
216 ALL-y   += $(obj)/$(SPL_BIN).sfp
217 endif
218
219 ifdef CONFIG_ARCH_SUNXI
220 ALL-y   += $(obj)/sunxi-spl.bin
221
222 ifdef CONFIG_NAND_SUNXI
223 ALL-y   += $(obj)/sunxi-spl-with-ecc.bin
224 endif
225 endif
226
227 ifeq ($(CONFIG_SYS_SOC),"at91")
228 ALL-y   += $(obj)/boot.bin
229 endif
230
231 ifdef CONFIG_TPL_BUILD
232 ALL-$(CONFIG_TPL_X86_16BIT_INIT) += $(obj)/u-boot-x86-start16-tpl.bin \
233         $(obj)/u-boot-x86-reset16-tpl.bin
234 else
235 ALL-$(CONFIG_SPL_X86_16BIT_INIT) += $(obj)/u-boot-x86-start16-spl.bin \
236         $(obj)/u-boot-x86-reset16-spl.bin
237 endif
238
239 ALL-$(CONFIG_ARCH_ZYNQ)         += $(obj)/boot.bin
240 ALL-$(CONFIG_ARCH_ZYNQMP)       += $(obj)/boot.bin
241
242 ALL-$(CONFIG_ARCH_MEDIATEK)     += $(obj)/u-boot-spl-mtk.bin
243
244 all:    $(ALL-y)
245
246 quiet_cmd_cat = CAT     $@
247 cmd_cat = cat $(filter-out $(PHONY), $^) > $@
248
249 quiet_cmd_copy = COPY    $@
250       cmd_copy = cp $< $@
251
252 ifneq ($(CONFIG_SPL_MULTI_DTB_FIT),y)
253 FINAL_DTB_CONTAINER = $(obj)/$(SPL_BIN).dtb
254 else ifeq ($(CONFIG_SPL_MULTI_DTB_FIT_LZO),y)
255 FINAL_DTB_CONTAINER = $(obj)/$(SPL_BIN).multidtb.fit.lzo
256 else ifeq ($(CONFIG_SPL_MULTI_DTB_FIT_GZIP),y)
257 FINAL_DTB_CONTAINER = $(obj)/$(SPL_BIN).multidtb.fit.gz
258 else
259 FINAL_DTB_CONTAINER = $(obj)/$(SPL_BIN).multidtb.fit
260 endif
261
262 # Build the .dtb file if:
263 #   - we are not using OF_PLATDATA
264 #   - we are using OF_CONTROL
265 #   - we have either OF_SEPARATE or OF_HOSTFILE
266 build_dtb :=
267 ifeq ($(CONFIG_$(SPL_TPL_)OF_PLATDATA),)
268 ifneq ($(CONFIG_$(SPL_TPL_)OF_CONTROL),)
269 ifeq ($(CONFIG_OF_SEPARATE)$(CONFIG_OF_HOSTFILE),y)
270 build_dtb := y
271 endif
272 endif
273 endif
274
275 ifneq ($(build_dtb),)
276 $(obj)/$(SPL_BIN)-dtb.bin: $(obj)/$(SPL_BIN)-nodtb.bin \
277                 $(if $(CONFIG_SPL_SEPARATE_BSS),,$(obj)/$(SPL_BIN)-pad.bin) \
278                 $(FINAL_DTB_CONTAINER)  FORCE
279         $(call if_changed,cat)
280
281 $(obj)/$(SPL_BIN).bin: $(obj)/$(SPL_BIN)-dtb.bin FORCE
282         $(call if_changed,copy)
283 else
284 $(obj)/$(SPL_BIN).bin: $(obj)/$(SPL_BIN)-nodtb.bin FORCE
285         $(call if_changed,copy)
286 endif
287
288 # Create a file that pads from the end of u-boot-spl-nodtb.bin to bss_end
289 $(obj)/$(SPL_BIN)-pad.bin: $(obj)/$(SPL_BIN)
290         @bss_size_str=$(shell $(NM) $< | awk 'BEGIN {size = 0} /__bss_size/ {size = $$1} END {print "ibase=16; " toupper(size)}' | bc); \
291         dd if=/dev/zero of=$@ bs=1 count=$${bss_size_str} 2>/dev/null;
292
293 $(obj)/$(SPL_BIN).dtb: dts/dt-spl.dtb FORCE
294         $(call if_changed,copy)
295
296 pythonpath = PYTHONPATH=scripts/dtc/pylibfdt
297
298 quiet_cmd_dtocc = DTOC C  $@
299 cmd_dtocc = $(pythonpath) $(srctree)/tools/dtoc/dtoc -d $(obj)/$(SPL_BIN).dtb -o $@ platdata
300
301 quiet_cmd_dtoch = DTOC H  $@
302 cmd_dtoch = $(pythonpath) $(srctree)/tools/dtoc/dtoc -d $(obj)/$(SPL_BIN).dtb -o $@ struct
303
304 quiet_cmd_plat = PLAT    $@
305 cmd_plat = $(CC) $(c_flags) -c $< -o $@
306
307 $(obj)/dts/dt-platdata.o: $(obj)/dts/dt-platdata.c \
308                 include/generated/dt-structs-gen.h
309         $(call if_changed,plat)
310
311 PHONY += dts_dir
312 dts_dir:
313         $(shell [ -d $(obj)/dts ] || mkdir -p $(obj)/dts)
314
315 include/generated/dt-structs-gen.h: $(obj)/$(SPL_BIN).dtb dts_dir FORCE
316         $(call if_changed,dtoch)
317
318 $(obj)/dts/dt-platdata.c: $(obj)/$(SPL_BIN).dtb dts_dir FORCE
319         $(call if_changed,dtocc)
320
321 ifdef CONFIG_SAMSUNG
322 ifdef CONFIG_VAR_SIZE_SPL
323 VAR_SIZE_PARAM = --vs
324 else
325 VAR_SIZE_PARAM =
326 endif
327 $(obj)/$(BOARD)-spl.bin: $(obj)/u-boot-spl.bin
328         $(if $(wildcard $(objtree)/spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl),\
329         $(objtree)/spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl,\
330         $(objtree)/tools/mkexynosspl) $(VAR_SIZE_PARAM) $< $@
331 endif
332
333 quiet_cmd_objcopy = OBJCOPY $@
334 cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@
335
336 OBJCOPYFLAGS_$(SPL_BIN)-nodtb.bin = $(SPL_OBJCFLAGS) -O binary \
337                 $(if $(CONFIG_$(SPL_TPL_)X86_16BIT_INIT),-R .start16 -R .resetvec)
338
339 $(obj)/$(SPL_BIN)-nodtb.bin: $(obj)/$(SPL_BIN) FORCE
340         $(call if_changed,objcopy)
341
342 OBJCOPYFLAGS_u-boot-x86-start16-spl.bin := -O binary -j .start16
343 $(obj)/u-boot-x86-start16-spl.bin: $(obj)/u-boot-spl FORCE
344         $(call if_changed,objcopy)
345
346 OBJCOPYFLAGS_u-boot-x86-start16-tpl.bin := -O binary -j .start16
347 $(obj)/u-boot-x86-start16-tpl.bin: $(obj)/u-boot-tpl FORCE
348         $(call if_changed,objcopy)
349
350 OBJCOPYFLAGS_u-boot-x86-reset16-spl.bin := -O binary -j .resetvec
351 $(obj)/u-boot-x86-reset16-spl.bin: $(obj)/u-boot-spl FORCE
352         $(call if_changed,objcopy)
353
354 OBJCOPYFLAGS_u-boot-x86-reset16-tpl.bin := -O binary -j .resetvec
355 $(obj)/u-boot-x86-reset16-tpl.bin: $(obj)/u-boot-tpl FORCE
356         $(call if_changed,objcopy)
357
358 LDFLAGS_$(SPL_BIN) += -T u-boot-spl.lds $(LDFLAGS_FINAL)
359
360 # Avoid 'Not enough room for program headers' error on binutils 2.28 onwards.
361 LDFLAGS_$(SPL_BIN) += $(call ld-option, --no-dynamic-linker)
362
363 # Pick the best-match (i.e. SPL_TEXT_BASE for SPL, TPL_TEXT_BASE for TPL)
364 ifneq ($(CONFIG_$(SPL_TPL_)TEXT_BASE),)
365 LDFLAGS_$(SPL_BIN) += -Ttext $(CONFIG_$(SPL_TPL_)TEXT_BASE)
366 endif
367
368 ifdef CONFIG_TARGET_SOCFPGA_ARRIA10
369 MKIMAGEFLAGS_$(SPL_BIN).sfp = -T socfpgaimage_v1
370 else
371 MKIMAGEFLAGS_$(SPL_BIN).sfp = -T socfpgaimage
372 endif
373 $(obj)/$(SPL_BIN).sfp: $(obj)/$(SPL_BIN).bin FORCE
374         $(call if_changed,mkimage)
375
376 quiet_cmd_mksunxiboot = MKSUNXI $@
377 cmd_mksunxiboot = $(objtree)/tools/mksunxiboot \
378                         --default-dt $(CONFIG_DEFAULT_DEVICE_TREE) $< $@
379 $(obj)/sunxi-spl.bin: $(obj)/$(SPL_BIN).bin FORCE
380         $(call if_changed,mksunxiboot)
381
382 quiet_cmd_sunxi_spl_image_builder = SUNXI_SPL_IMAGE_BUILDER $@
383 cmd_sunxi_spl_image_builder = $(objtree)/tools/sunxi-spl-image-builder \
384                                 -c $(CONFIG_NAND_SUNXI_SPL_ECC_STRENGTH)/$(CONFIG_NAND_SUNXI_SPL_ECC_SIZE) \
385                                 -p $(CONFIG_SYS_NAND_PAGE_SIZE) \
386                                 -o $(CONFIG_SYS_NAND_OOBSIZE) \
387                                 -u $(CONFIG_NAND_SUNXI_SPL_USABLE_PAGE_SIZE) \
388                                 -e $(CONFIG_SYS_NAND_BLOCK_SIZE) \
389                                 -s -b $< $@
390 $(obj)/sunxi-spl-with-ecc.bin: $(obj)/sunxi-spl.bin
391         $(call if_changed,sunxi_spl_image_builder)
392
393
394 # MediaTek's specific SPL build
395 MKIMAGEFLAGS_u-boot-spl-mtk.bin = -T mtk_image \
396         -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) \
397         -n "$(patsubst "%",%,$(CONFIG_MTK_BROM_HEADER_INFO))"
398
399 $(obj)/u-boot-spl-mtk.bin: $(obj)/u-boot-spl.bin FORCE
400         $(call if_changed,mkimage)
401
402 # Rule to link u-boot-spl
403 # May be overridden by arch/$(ARCH)/config.mk
404 quiet_cmd_u-boot-spl ?= LD      $@
405       cmd_u-boot-spl ?= (cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \
406                        $(patsubst $(obj)/%,%,$(u-boot-spl-init)) --start-group \
407                        $(patsubst $(obj)/%,%,$(u-boot-spl-main))  \
408                        $(patsubst $(obj)/%,%,$(u-boot-spl-platdata)) \
409                        --end-group \
410                        $(PLATFORM_LIBS) -Map $(SPL_BIN).map -o $(SPL_BIN))
411
412 $(obj)/$(SPL_BIN): $(u-boot-spl-platdata) $(u-boot-spl-init) \
413                 $(u-boot-spl-main) $(obj)/u-boot-spl.lds FORCE
414         $(call if_changed,u-boot-spl)
415
416 $(sort $(u-boot-spl-init) $(u-boot-spl-main)): $(u-boot-spl-dirs) ;
417
418 PHONY += $(u-boot-spl-dirs)
419 $(u-boot-spl-dirs): $(u-boot-spl-platdata)
420         $(Q)$(MAKE) $(build)=$@
421
422 quiet_cmd_cpp_lds = LDS     $@
423 cmd_cpp_lds = $(CPP) -Wp,-MD,$(depfile) $(cpp_flags) $(LDPPFLAGS) -ansi \
424                 -D__ASSEMBLY__ -x assembler-with-cpp -std=c99 -P -o $@ $<
425
426 $(obj)/u-boot-spl.lds: $(LDSCRIPT) FORCE
427         $(call if_changed_dep,cpp_lds)
428
429 # read all saved command lines
430
431 targets := $(wildcard $(sort $(targets)))
432 cmd_files := $(wildcard $(obj)/.*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
433
434 ifneq ($(cmd_files),)
435   $(cmd_files): ;       # Do not try to update included dependency files
436   include $(cmd_files)
437 endif
438
439 PHONY += FORCE
440 FORCE:
441
442 PHONY += dtbs
443 dtbs:
444         $(Q)$(MAKE) $(build)=dts dtbs
445
446 # Declare the contents of the .PHONY variable as phony.  We keep that
447 # information in a variable so we can use it in if_changed and friends.
448 .PHONY: $(PHONY)
449
450 SHRUNK_ARCH_DTB = $(patsubst %,$(obj)/dts/%.dtb,$(subst ",,$(CONFIG_SPL_OF_LIST)))
451 .SECONDEXPANSION:
452 $(SHRUNK_ARCH_DTB): $$(patsubst $(obj)/dts/%, arch/$(ARCH)/dts/%, $$@)
453         $(call if_changed,fdtgrep)
454
455 MKIMAGEFLAGS_$(SPL_BIN).multidtb.fit = -f auto -A $(ARCH) -T firmware -C none -O u-boot \
456         -n "Multi DTB fit image for $(SPL_BIN)" -E \
457         $(patsubst %,-b %,$(SHRUNK_ARCH_DTB))
458
459 $(obj)/$(SPL_BIN).multidtb.fit: /dev/null $(SHRUNK_ARCH_DTB) FORCE
460         $(call if_changed,mkimage)
461 ifneq ($(SOURCE_DATE_EPOCH),)
462         touch -d @$(SOURCE_DATE_EPOCH) $(obj)/$(SPL_BIN).multidtb.fit
463         chmod 0600 $(obj)/$(SPL_BIN).multidtb.fit
464 endif
465
466 $(obj)/$(SPL_BIN).multidtb.fit.gz: $(obj)/$(SPL_BIN).multidtb.fit
467         @gzip -kf9 $< > $@
468
469 $(obj)/$(SPL_BIN).multidtb.fit.lzo: $(obj)/$(SPL_BIN).multidtb.fit
470         @lzop -f9 $< > $@
471
472 ifdef CONFIG_ARCH_K3
473 tispl.bin: $(obj)/u-boot-spl-nodtb.bin $(SHRUNK_ARCH_DTB) $(SPL_ITS) FORCE
474         $(call if_changed,mkfitimage)
475 endif