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