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