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