]> git.ipfire.org Git - people/ms/u-boot.git/blame - scripts/Makefile.spl
kbuild: make dependencies in scripts/Makefile.autoconf more readable
[people/ms/u-boot.git] / scripts / Makefile.spl
CommitLineData
6a11cf48
DS
1#
2# (C) Copyright 2000-2011
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# (C) Copyright 2011
6# Daniel Schwierzeck, daniel.schwierzeck@googlemail.com.
7#
8# (C) Copyright 2011
9# Texas Instruments Incorporated - http://www.ti.com/
10# Aneesh V <aneesh@ti.com>
11#
1a459660 12# SPDX-License-Identifier: GPL-2.0+
6a11cf48
DS
13#
14# Based on top-level Makefile.
15#
16
9e414032
MY
17src := $(obj)
18
19# Create output directory if not already present
20_dummy := $(shell [ -d $(obj) ] || mkdir -p $(obj))
21
bf4b3de1
MY
22include $(srctree)/scripts/Kbuild.include
23
e02ee254 24-include include/config/auto.conf
51148790 25-include $(obj)/include/autoconf.mk
e0d5d9f8 26
e02ee254
MY
27KBUILD_CPPFLAGS += -DCONFIG_SPL_BUILD
28ifeq ($(CONFIG_TPL_BUILD),y)
29KBUILD_CPPFLAGS += -DCONFIG_TPL_BUILD
30endif
31
3aa29de0 32ifeq ($(CONFIG_TPL_BUILD),y)
3aa29de0
YZ
33SPL_BIN := u-boot-tpl
34else
35SPL_BIN := u-boot-spl
36endif
37
4379ac61 38include $(srctree)/config.mk
e19db555 39include $(srctree)/arch/$(ARCH)/Makefile
6a11cf48 40
026f9cf2
MY
41# Enable garbage collection of un-used sections for SPL
42KBUILD_CFLAGS += -ffunction-sections -fdata-sections
43LDFLAGS_FINAL += --gc-sections
44
5fe6301a 45# FIX ME
026f9cf2
MY
46cpp_flags := $(KBUILD_CPPFLAGS) $(PLATFORM_CPPFLAGS) $(UBOOTINCLUDE) \
47 $(NOSTDINC_FLAGS)
dbbe2e64 48c_flags := $(KBUILD_CFLAGS) $(cpp_flags)
5fe6301a 49
01286329 50HAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(srctree)/board/$(VENDOR)/common/Makefile),y,n)
6a11cf48 51
bf69d664 52libs-y += $(if $(BOARDDIR),board/$(BOARDDIR)/)
656de6b8
MY
53libs-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/
54
55libs-$(CONFIG_SPL_FRAMEWORK) += common/spl/
af6bbd4d 56libs-y += common/init/
76f1f388
SG
57
58# Special handling for a few options which support SPL/TPL
59ifeq ($(CONFIG_TPL_BUILD),y)
60libs-$(CONFIG_TPL_LIBCOMMON_SUPPORT) += common/ cmd/
61libs-$(CONFIG_TPL_LIBGENERIC_SUPPORT) += lib/
62else
72a8cf8d 63libs-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/ cmd/
76f1f388
SG
64libs-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/
65endif
66
656de6b8 67libs-$(CONFIG_SPL_LIBDISK_SUPPORT) += disk/
d6c2ac5b 68libs-y += drivers/
bc5dbcb9
R
69libs-$(CONFIG_SPL_DFU_SUPPORT) += drivers/dfu/
70libs-$(CONFIG_SPL_DFU_SUPPORT) += drivers/usb/gadget/
71libs-$(CONFIG_SPL_DFU_SUPPORT) += drivers/usb/gadget/udc/
72libs-$(CONFIG_SPL_DFU_SUPPORT) += drivers/usb/dwc3/
8d7a2b83 73libs-y += dts/
656de6b8 74libs-y += fs/
656de6b8
MY
75libs-$(CONFIG_SPL_POST_MEM_SUPPORT) += post/drivers/
76libs-$(CONFIG_SPL_NET_SUPPORT) += net/
efcc6096 77
656de6b8
MY
78head-y := $(addprefix $(obj)/,$(head-y))
79libs-y := $(addprefix $(obj)/,$(libs-y))
80u-boot-spl-dirs := $(patsubst %/,%,$(filter %/, $(libs-y)))
81
82libs-y := $(patsubst %/, %/built-in.o, $(libs-y))
e2906a59 83
660e98f2 84# Add GCC lib
cd2e46cb 85ifeq ($(CONFIG_USE_PRIVATE_LIBGCC),y)
a86cf89c 86PLATFORM_LIBGCC = arch/$(ARCH)/lib/lib.a
6445262c 87PLATFORM_LIBS := $(filter-out %/lib.a, $(filter-out -lgcc, $(PLATFORM_LIBS))) $(PLATFORM_LIBGCC)
660e98f2
AM
88endif
89
656de6b8
MY
90u-boot-spl-init := $(head-y)
91u-boot-spl-main := $(libs-y)
dbbe2e64
SG
92ifdef CONFIG_SPL_OF_PLATDATA
93u-boot-spl-platdata := $(obj)/dts/dt-platdata.o
94endif
6a11cf48
DS
95
96# Linker Script
97ifdef CONFIG_SPL_LDSCRIPT
98# need to strip off double quotes
01286329 99LDSCRIPT := $(addprefix $(srctree)/,$(CONFIG_SPL_LDSCRIPT:"%"=%))
6a11cf48
DS
100endif
101
102ifeq ($(wildcard $(LDSCRIPT)),)
4379ac61 103 LDSCRIPT := $(srctree)/board/$(BOARDDIR)/u-boot-spl.lds
6a11cf48
DS
104endif
105ifeq ($(wildcard $(LDSCRIPT)),)
4379ac61 106 LDSCRIPT := $(srctree)/$(CPUDIR)/u-boot-spl.lds
6a11cf48 107endif
ee60197e 108ifeq ($(wildcard $(LDSCRIPT)),)
4379ac61 109 LDSCRIPT := $(srctree)/arch/$(ARCH)/cpu/u-boot-spl.lds
ee60197e 110endif
6a11cf48
DS
111ifeq ($(wildcard $(LDSCRIPT)),)
112$(error could not find linker script)
113endif
114
115# Special flags for CPP when processing the linker script.
116# Pass the version down so we can handle backwards compatibility
117# on the fly.
118LDPPFLAGS += \
4379ac61 119 -include $(srctree)/include/u-boot/u-boot.lds.h \
5ee828ca 120 -include $(objtree)/include/config.h \
7e6403a6 121 -DCPUDIR=$(CPUDIR) \
6a11cf48
DS
122 $(shell $(LD) --version | \
123 sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
124
b97241b3 125quiet_cmd_mkimage = MKIMAGE $@
9bf215b0
MY
126cmd_mkimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) -d $< $@ \
127 $(if $(KBUILD_VERBOSE:1=), >/dev/null)
79b9ebb7 128
9bf215b0
MY
129MKIMAGEFLAGS_MLO = -T omapimage -a $(CONFIG_SPL_TEXT_BASE)
130
131MKIMAGEFLAGS_MLO.byteswap = -T omapimage -n byteswap -a $(CONFIG_SPL_TEXT_BASE)
132
514ec438 133MLO MLO.byteswap: $(obj)/u-boot-spl.bin FORCE
9bf215b0 134 $(call if_changed,mkimage)
3decb14a 135
08598d6e 136ifeq ($(CONFIG_SYS_SOC),"at91")
5c390a5b
AB
137MKIMAGEFLAGS_boot.bin = -T atmelimage
138
139ifeq ($(CONFIG_SPL_GENERATE_ATMEL_PMECC_HEADER),y)
140MKIMAGEFLAGS_boot.bin += -n $(shell $(obj)/../tools/atmel_pmecc_params)
141
142boot.bin: $(obj)/../tools/atmel_pmecc_params
143endif
144
514ec438 145boot.bin: $(obj)/u-boot-spl.bin FORCE
5c390a5b 146 $(call if_changed,mkimage)
08598d6e 147else
d9b58b30 148ifdef CONFIG_ARCH_ZYNQ
08598d6e 149MKIMAGEFLAGS_boot.bin = -T zynqimage
d9b58b30
MS
150endif
151ifdef CONFIG_ARCH_ZYNQMP
152MKIMAGEFLAGS_boot.bin = -T zynqmpimage
153endif
08598d6e 154
514ec438 155spl/boot.bin: $(obj)/u-boot-spl.bin FORCE
08598d6e
NR
156 $(call if_changed,mkimage)
157endif
5c390a5b 158
741e58e0 159ALL-y += $(obj)/$(SPL_BIN).bin $(obj)/$(SPL_BIN).cfg
6a11cf48 160
98a48c5d 161ifdef CONFIG_SAMSUNG
9e414032 162ALL-y += $(obj)/$(BOARD)-spl.bin
98a48c5d
CK
163endif
164
333b7209 165ifdef CONFIG_ARCH_SOCFPGA
bd7dc388 166ALL-y += $(obj)/$(SPL_BIN).sfp
333b7209
MV
167endif
168
50827a59 169ifdef CONFIG_SUNXI
50827a59
IC
170ALL-y += $(obj)/sunxi-spl.bin
171endif
50827a59 172
c001486d
HS
173ifeq ($(CONFIG_SYS_SOC),"at91")
174ALL-y += boot.bin
175endif
176
1a6a6e9a
MS
177ALL-$(CONFIG_ARCH_ZYNQ) += $(obj)/boot.bin
178ALL-$(CONFIG_ARCH_ZYNQMP) += $(obj)/boot.bin
d9b58b30 179
6a11cf48
DS
180all: $(ALL-y)
181
fa78e0a3
SG
182quiet_cmd_cat = CAT $@
183cmd_cat = cat $(filter-out $(PHONY), $^) > $@
184
03c25bcd
SG
185quiet_cmd_copy = COPY $@
186 cmd_copy = cp $< $@
187
d22199b1 188ifeq ($(CONFIG_SPL_OF_CONTROL)$(CONFIG_OF_SEPARATE)$(CONFIG_SPL_OF_PLATDATA),yy)
03c25bcd 189$(obj)/$(SPL_BIN)-dtb.bin: $(obj)/$(SPL_BIN)-nodtb.bin $(obj)/$(SPL_BIN)-pad.bin \
fa78e0a3
SG
190 $(obj)/$(SPL_BIN).dtb FORCE
191 $(call if_changed,cat)
192
03c25bcd
SG
193$(obj)/$(SPL_BIN).bin: $(obj)/$(SPL_BIN)-dtb.bin FORCE
194 $(call if_changed,copy)
195else
196$(obj)/$(SPL_BIN).bin: $(obj)/$(SPL_BIN)-nodtb.bin FORCE
197 $(call if_changed,copy)
198endif
199
200# Create a file that pads from the end of u-boot-spl-nodtb.bin to bss_end
fa78e0a3
SG
201$(obj)/$(SPL_BIN)-pad.bin: $(obj)/$(SPL_BIN)
202 @bss_size_str=$(shell $(NM) $< | awk 'BEGIN {size = 0} /__bss_size/ {size = $$1} END {print "ibase=16; " toupper(size)}' | bc); \
203 dd if=/dev/zero of=$@ bs=1 count=$${bss_size_str} 2>/dev/null;
204
205# Pass the original device tree file through fdtgrep twice. The first pass
206# removes any unwanted nodes (i.e. those which don't have the
207# 'u-boot,dm-pre-reloc' property and thus are not needed by SPL. The second
208# pass removes various unused properties from the remaining nodes.
209# The output is typically a much smaller device tree file.
210quiet_cmd_fdtgrep = FDTGREP $@
211 cmd_fdtgrep = $(objtree)/tools/fdtgrep -b u-boot,dm-pre-reloc -RT $< \
212 -n /chosen -O dtb | \
213 $(objtree)/tools/fdtgrep -r -O dtb - -o $@ \
214 $(addprefix -P ,$(subst $\",,$(CONFIG_OF_SPL_REMOVE_PROPS)))
215
35b78678
MY
216$(obj)/$(SPL_BIN).dtb: dts/dt.dtb $(objtree)/tools/fdtgrep FORCE
217 $(call if_changed,fdtgrep)
fa78e0a3 218
741e58e0
SG
219quiet_cmd_cpp_cfg = CFG $@
220cmd_cpp_cfg = $(CPP) -Wp,-MD,$(depfile) $(cpp_flags) $(LDPPFLAGS) -ansi \
3113471f 221 -DDO_DEPS_ONLY -D__ASSEMBLY__ -x assembler-with-cpp -P -dM -E -o $@ $<
741e58e0 222
a6c13097
SW
223# If .u-boot.cfg.d is still present, then either:
224# a) The previous build used a Makefile that used if_changed rather than
225# if_changed_dep when building u-boot.cfg, and hence any later builds will
226# be unaware of the dependencies for u-boot.cfg. In this case, we must
227# delete u-boot.cfg to force it and .u-boot.cfg.cmd to be rebuilt the
228# correct way.
229# b) The previous build failed or was interrupted while building u-boot.cfg,
230# so deleting u-boot.cfg isn't going to cause any additional work.
231ifneq ($(wildcard $(obj)/.$(SPL_BIN).d),)
232 unused := $(shell rm -f $(obj)/$(SPL_BIN).cfg)
233endif
514ec438 234$(obj)/$(SPL_BIN).cfg: include/config.h FORCE
fcd29a4d 235 $(call if_changed_dep,cpp_cfg)
741e58e0 236
dbbe2e64
SG
237pythonpath = PYTHONPATH=tools
238
239quiet_cmd_dtocc = DTOC C $@
240cmd_dtocc = $(pythonpath) $(srctree)/tools/dtoc/dtoc -d $(obj)/$(SPL_BIN).dtb -o $@ platdata
241
242quiet_cmd_dtoch = DTOC H $@
243cmd_dtoch = $(pythonpath) $(srctree)/tools/dtoc/dtoc -d $(obj)/$(SPL_BIN).dtb -o $@ struct
244
245quiet_cmd_plat = PLAT $@
246cmd_plat = $(CC) $(c_flags) -c $< -o $@
247
248$(obj)/dts/dt-platdata.o: $(obj)/dts/dt-platdata.c include/generated/dt-structs.h
249 $(call if_changed,plat)
250
251PHONY += dts_dir
252dts_dir:
253 $(shell [ -d $(obj)/dts ] || mkdir -p $(obj)/dts)
254
255include/generated/dt-structs.h: $(obj)/$(SPL_BIN).dtb dts_dir dtoc
256 $(call if_changed,dtoch)
257
258$(obj)/dts/dt-platdata.c: $(obj)/$(SPL_BIN).dtb dts_dir dtoc
259 $(call if_changed,dtocc)
260
261dtoc: #$(objtree)/tools/_libfdt.so
262
98a48c5d 263ifdef CONFIG_SAMSUNG
0fcac1ab
RS
264ifdef CONFIG_VAR_SIZE_SPL
265VAR_SIZE_PARAM = --vs
266else
267VAR_SIZE_PARAM =
268endif
9e414032 269$(obj)/$(BOARD)-spl.bin: $(obj)/u-boot-spl.bin
5ee828ca
MY
270 $(if $(wildcard $(objtree)/spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl),\
271 $(objtree)/spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl,\
272 $(objtree)/tools/mkexynosspl) $(VAR_SIZE_PARAM) $< $@
98a48c5d
CK
273endif
274
f9c235fd
MY
275quiet_cmd_objcopy = OBJCOPY $@
276cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@
277
03c25bcd 278OBJCOPYFLAGS_$(SPL_BIN)-nodtb.bin = $(SPL_OBJCFLAGS) -O binary
f9c235fd 279
03c25bcd 280$(obj)/$(SPL_BIN)-nodtb.bin: $(obj)/$(SPL_BIN) FORCE
f9c235fd 281 $(call if_changed,objcopy)
6a11cf48 282
9e414032 283LDFLAGS_$(SPL_BIN) += -T u-boot-spl.lds $(LDFLAGS_FINAL)
e0d5d9f8
MY
284ifneq ($(CONFIG_SPL_TEXT_BASE),)
285LDFLAGS_$(SPL_BIN) += -Ttext $(CONFIG_SPL_TEXT_BASE)
286endif
287
bd7dc388
SG
288MKIMAGEFLAGS_$(SPL_BIN).sfp = -T socfpgaimage
289$(obj)/$(SPL_BIN).sfp: $(obj)/$(SPL_BIN).bin FORCE
333b7209 290 $(call if_changed,mkimage)
333b7209 291
50827a59
IC
292quiet_cmd_mksunxiboot = MKSUNXI $@
293cmd_mksunxiboot = $(objtree)/tools/mksunxiboot $< $@
514ec438 294$(obj)/sunxi-spl.bin: $(obj)/$(SPL_BIN).bin FORCE
50827a59 295 $(call if_changed,mksunxiboot)
50827a59 296
72a7e076
SG
297# Rule to link u-boot-spl
298# May be overridden by arch/$(ARCH)/config.mk
299quiet_cmd_u-boot-spl ?= LD $@
300 cmd_u-boot-spl ?= (cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \
656de6b8 301 $(patsubst $(obj)/%,%,$(u-boot-spl-init)) --start-group \
dbbe2e64
SG
302 $(patsubst $(obj)/%,%,$(u-boot-spl-main)) \
303 $(patsubst $(obj)/%,%,$(u-boot-spl-platdata)) \
304 --end-group \
9adb6d24 305 $(PLATFORM_LIBS) -Map $(SPL_BIN).map -o $(SPL_BIN))
6a11cf48 306
dbbe2e64
SG
307$(obj)/$(SPL_BIN): $(u-boot-spl-platdata) $(u-boot-spl-init) \
308 $(u-boot-spl-main) $(obj)/u-boot-spl.lds FORCE
9adb6d24 309 $(call if_changed,u-boot-spl)
6a11cf48 310
656de6b8 311$(sort $(u-boot-spl-init) $(u-boot-spl-main)): $(u-boot-spl-dirs) ;
6a11cf48 312
656de6b8 313PHONY += $(u-boot-spl-dirs)
dbbe2e64 314$(u-boot-spl-dirs): $(u-boot-spl-platdata)
656de6b8 315 $(Q)$(MAKE) $(build)=$@
6a11cf48 316
04a34c96 317quiet_cmd_cpp_lds = LDS $@
395e60cd
MY
318cmd_cpp_lds = $(CPP) -Wp,-MD,$(depfile) $(cpp_flags) $(LDPPFLAGS) -ansi \
319 -D__ASSEMBLY__ -x assembler-with-cpp -P -o $@ $<
04a34c96 320
6825a95b 321$(obj)/u-boot-spl.lds: $(LDSCRIPT) FORCE
395e60cd 322 $(call if_changed_dep,cpp_lds)
6a11cf48 323
f9c235fd
MY
324# read all saved command lines
325
326targets := $(wildcard $(sort $(targets)))
327cmd_files := $(wildcard $(obj)/.*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
328
329ifneq ($(cmd_files),)
330 $(cmd_files): ; # Do not try to update included dependency files
331 include $(cmd_files)
332endif
333
6825a95b
MY
334PHONY += FORCE
335FORCE:
336
337# Declare the contents of the .PHONY variable as phony. We keep that
338# information in a variable so we can use it in if_changed and friends.
339.PHONY: $(PHONY)