Makefile.spl 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  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. #
  12. # SPDX-License-Identifier: GPL-2.0+
  13. #
  14. # Based on top-level Makefile.
  15. #
  16. src := $(obj)
  17. # Create output directory if not already present
  18. _dummy := $(shell [ -d $(obj) ] || mkdir -p $(obj))
  19. include $(srctree)/scripts/Kbuild.include
  20. -include include/config/auto.conf
  21. -include $(obj)/include/autoconf.mk
  22. KBUILD_CPPFLAGS += -DCONFIG_SPL_BUILD
  23. ifeq ($(CONFIG_TPL_BUILD),y)
  24. KBUILD_CPPFLAGS += -DCONFIG_TPL_BUILD
  25. endif
  26. ifeq ($(CONFIG_TPL_BUILD),y)
  27. SPL_BIN := u-boot-tpl
  28. else
  29. SPL_BIN := u-boot-spl
  30. endif
  31. ifdef CONFIG_SPL_BUILD
  32. SPL_ := SPL_
  33. else
  34. SPL_ :=
  35. endif
  36. include $(srctree)/config.mk
  37. include $(srctree)/arch/$(ARCH)/Makefile
  38. # Enable garbage collection of un-used sections for SPL
  39. KBUILD_CFLAGS += -ffunction-sections -fdata-sections
  40. LDFLAGS_FINAL += --gc-sections
  41. # FIX ME
  42. cpp_flags := $(KBUILD_CPPFLAGS) $(PLATFORM_CPPFLAGS) $(UBOOTINCLUDE) \
  43. $(NOSTDINC_FLAGS)
  44. c_flags := $(KBUILD_CFLAGS) $(cpp_flags)
  45. HAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(srctree)/board/$(VENDOR)/common/Makefile),y,n)
  46. libs-y += $(if $(BOARDDIR),board/$(BOARDDIR)/)
  47. libs-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/
  48. libs-$(CONFIG_SPL_FRAMEWORK) += common/spl/
  49. libs-y += common/init/
  50. # Special handling for a few options which support SPL/TPL
  51. ifeq ($(CONFIG_TPL_BUILD),y)
  52. libs-$(CONFIG_TPL_LIBCOMMON_SUPPORT) += common/ cmd/
  53. libs-$(CONFIG_TPL_LIBGENERIC_SUPPORT) += lib/
  54. else
  55. libs-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/ cmd/
  56. libs-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/
  57. endif
  58. libs-$(CONFIG_SPL_LIBDISK_SUPPORT) += disk/
  59. libs-y += drivers/
  60. libs-$(CONFIG_SPL_USB_GADGET_SUPPORT) += drivers/usb/dwc3/
  61. libs-y += dts/
  62. libs-y += fs/
  63. libs-$(CONFIG_SPL_POST_MEM_SUPPORT) += post/drivers/
  64. libs-$(CONFIG_SPL_NET_SUPPORT) += net/
  65. head-y := $(addprefix $(obj)/,$(head-y))
  66. libs-y := $(addprefix $(obj)/,$(libs-y))
  67. u-boot-spl-dirs := $(patsubst %/,%,$(filter %/, $(libs-y)))
  68. libs-y := $(patsubst %/, %/built-in.o, $(libs-y))
  69. # Add GCC lib
  70. ifeq ($(CONFIG_USE_PRIVATE_LIBGCC),y)
  71. PLATFORM_LIBGCC = arch/$(ARCH)/lib/lib.a
  72. PLATFORM_LIBS := $(filter-out %/lib.a, $(filter-out -lgcc, $(PLATFORM_LIBS))) $(PLATFORM_LIBGCC)
  73. endif
  74. u-boot-spl-init := $(head-y)
  75. u-boot-spl-main := $(libs-y)
  76. ifdef CONFIG_SPL_OF_PLATDATA
  77. u-boot-spl-platdata := $(obj)/dts/dt-platdata.o
  78. endif
  79. # Linker Script
  80. ifdef CONFIG_SPL_LDSCRIPT
  81. # need to strip off double quotes
  82. LDSCRIPT := $(addprefix $(srctree)/,$(CONFIG_SPL_LDSCRIPT:"%"=%))
  83. endif
  84. ifeq ($(wildcard $(LDSCRIPT)),)
  85. LDSCRIPT := $(srctree)/board/$(BOARDDIR)/u-boot-spl.lds
  86. endif
  87. ifeq ($(wildcard $(LDSCRIPT)),)
  88. LDSCRIPT := $(srctree)/$(CPUDIR)/u-boot-spl.lds
  89. endif
  90. ifeq ($(wildcard $(LDSCRIPT)),)
  91. LDSCRIPT := $(srctree)/arch/$(ARCH)/cpu/u-boot-spl.lds
  92. endif
  93. ifeq ($(wildcard $(LDSCRIPT)),)
  94. $(error could not find linker script)
  95. endif
  96. # Special flags for CPP when processing the linker script.
  97. # Pass the version down so we can handle backwards compatibility
  98. # on the fly.
  99. LDPPFLAGS += \
  100. -include $(srctree)/include/u-boot/u-boot.lds.h \
  101. -include $(objtree)/include/config.h \
  102. -DCPUDIR=$(CPUDIR) \
  103. $(shell $(LD) --version | \
  104. sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
  105. MKIMAGEOUTPUT ?= /dev/null
  106. quiet_cmd_mkimage = MKIMAGE $@
  107. cmd_mkimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) -d $< $@ \
  108. $(if $(KBUILD_VERBOSE:1=), >$(MKIMAGEOUTPUT))
  109. MKIMAGEFLAGS_MLO = -T omapimage -a $(CONFIG_SPL_TEXT_BASE)
  110. MKIMAGEFLAGS_MLO.byteswap = -T omapimage -n byteswap -a $(CONFIG_SPL_TEXT_BASE)
  111. MLO MLO.byteswap: $(obj)/u-boot-spl.bin FORCE
  112. $(call if_changed,mkimage)
  113. ifeq ($(CONFIG_SYS_SOC),"at91")
  114. MKIMAGEFLAGS_boot.bin = -T atmelimage
  115. ifeq ($(CONFIG_SPL_GENERATE_ATMEL_PMECC_HEADER),y)
  116. MKIMAGEFLAGS_boot.bin += -n $(shell $(obj)/../tools/atmel_pmecc_params)
  117. boot.bin: $(obj)/../tools/atmel_pmecc_params
  118. endif
  119. boot.bin: $(obj)/u-boot-spl.bin FORCE
  120. $(call if_changed,mkimage)
  121. else
  122. ifdef CONFIG_ARCH_ZYNQ
  123. MKIMAGEFLAGS_boot.bin = -T zynqimage -R $(srctree)/$(CONFIG_BOOT_INIT_FILE)
  124. endif
  125. ifdef CONFIG_ARCH_ZYNQMP
  126. MKIMAGEFLAGS_boot.bin = -T zynqmpimage -R $(srctree)/$(CONFIG_BOOT_INIT_FILE)
  127. endif
  128. spl/boot.bin: $(obj)/u-boot-spl.bin FORCE
  129. $(call if_changed,mkimage)
  130. endif
  131. ALL-y += $(obj)/$(SPL_BIN).bin
  132. ifdef CONFIG_SAMSUNG
  133. ALL-y += $(obj)/$(BOARD)-spl.bin
  134. endif
  135. ifdef CONFIG_ARCH_SOCFPGA
  136. ALL-y += $(obj)/$(SPL_BIN).sfp
  137. endif
  138. ifdef CONFIG_ARCH_SUNXI
  139. ALL-y += $(obj)/sunxi-spl.bin
  140. endif
  141. ifeq ($(CONFIG_SYS_SOC),"at91")
  142. ALL-y += boot.bin
  143. endif
  144. ALL-$(CONFIG_SPL_X86_16BIT_INIT) += $(obj)/u-boot-x86-16bit-spl.bin
  145. ALL-$(CONFIG_ARCH_ZYNQ) += $(obj)/boot.bin
  146. ALL-$(CONFIG_ARCH_ZYNQMP) += $(obj)/boot.bin
  147. all: $(ALL-y)
  148. quiet_cmd_cat = CAT $@
  149. cmd_cat = cat $(filter-out $(PHONY), $^) > $@
  150. quiet_cmd_copy = COPY $@
  151. cmd_copy = cp $< $@
  152. ifeq ($(CONFIG_SPL_OF_CONTROL)$(CONFIG_OF_SEPARATE)$(CONFIG_SPL_OF_PLATDATA),yy)
  153. $(obj)/$(SPL_BIN)-dtb.bin: $(obj)/$(SPL_BIN)-nodtb.bin \
  154. $(if $(CONFIG_SPL_SEPARATE_BSS),,$(obj)/$(SPL_BIN)-pad.bin) \
  155. $(obj)/$(SPL_BIN).dtb FORCE
  156. $(call if_changed,cat)
  157. $(obj)/$(SPL_BIN).bin: $(obj)/$(SPL_BIN)-dtb.bin FORCE
  158. $(call if_changed,copy)
  159. else
  160. $(obj)/$(SPL_BIN).bin: $(obj)/$(SPL_BIN)-nodtb.bin FORCE
  161. $(call if_changed,copy)
  162. endif
  163. # Create a file that pads from the end of u-boot-spl-nodtb.bin to bss_end
  164. $(obj)/$(SPL_BIN)-pad.bin: $(obj)/$(SPL_BIN)
  165. @bss_size_str=$(shell $(NM) $< | awk 'BEGIN {size = 0} /__bss_size/ {size = $$1} END {print "ibase=16; " toupper(size)}' | bc); \
  166. dd if=/dev/zero of=$@ bs=1 count=$${bss_size_str} 2>/dev/null;
  167. # Pass the original device tree file through fdtgrep twice. The first pass
  168. # removes any unwanted nodes (i.e. those which don't have the
  169. # 'u-boot,dm-pre-reloc' property and thus are not needed by SPL. The second
  170. # pass removes various unused properties from the remaining nodes.
  171. # The output is typically a much smaller device tree file.
  172. ifeq ($(CONFIG_TPL_BUILD),y)
  173. fdtgrep_props := -b u-boot,dm-pre-reloc -b u-boot,dm-tpl
  174. else
  175. fdtgrep_props := -b u-boot,dm-pre-reloc -b u-boot,dm-spl
  176. endif
  177. quiet_cmd_fdtgrep = FDTGREP $@
  178. cmd_fdtgrep = $(objtree)/tools/fdtgrep $(fdtgrep_props) -RT $< \
  179. -n /chosen -O dtb | \
  180. $(objtree)/tools/fdtgrep -r -O dtb - -o $@ \
  181. $(addprefix -P ,$(subst $\",,$(CONFIG_OF_SPL_REMOVE_PROPS)))
  182. $(obj)/$(SPL_BIN).dtb: dts/dt.dtb $(objtree)/tools/fdtgrep FORCE
  183. $(call if_changed,fdtgrep)
  184. pythonpath = PYTHONPATH=tools
  185. quiet_cmd_dtocc = DTOC C $@
  186. cmd_dtocc = $(pythonpath) $(srctree)/tools/dtoc/dtoc -d $(obj)/$(SPL_BIN).dtb -o $@ platdata
  187. quiet_cmd_dtoch = DTOC H $@
  188. cmd_dtoch = $(pythonpath) $(srctree)/tools/dtoc/dtoc -d $(obj)/$(SPL_BIN).dtb -o $@ struct
  189. quiet_cmd_plat = PLAT $@
  190. cmd_plat = $(CC) $(c_flags) -c $< -o $@
  191. $(obj)/dts/dt-platdata.o: $(obj)/dts/dt-platdata.c include/generated/dt-structs.h
  192. $(call if_changed,plat)
  193. PHONY += dts_dir
  194. dts_dir:
  195. $(shell [ -d $(obj)/dts ] || mkdir -p $(obj)/dts)
  196. include/generated/dt-structs.h: $(obj)/$(SPL_BIN).dtb dts_dir dtoc
  197. $(call if_changed,dtoch)
  198. $(obj)/dts/dt-platdata.c: $(obj)/$(SPL_BIN).dtb dts_dir dtoc
  199. $(call if_changed,dtocc)
  200. dtoc: #$(objtree)/tools/_libfdt.so
  201. ifdef CONFIG_SAMSUNG
  202. ifdef CONFIG_VAR_SIZE_SPL
  203. VAR_SIZE_PARAM = --vs
  204. else
  205. VAR_SIZE_PARAM =
  206. endif
  207. $(obj)/$(BOARD)-spl.bin: $(obj)/u-boot-spl.bin
  208. $(if $(wildcard $(objtree)/spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl),\
  209. $(objtree)/spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl,\
  210. $(objtree)/tools/mkexynosspl) $(VAR_SIZE_PARAM) $< $@
  211. endif
  212. quiet_cmd_objcopy = OBJCOPY $@
  213. cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@
  214. OBJCOPYFLAGS_$(SPL_BIN)-nodtb.bin = $(SPL_OBJCFLAGS) -O binary \
  215. $(if $(CONFIG_SPL_X86_16BIT_INIT),-R .start16 -R .resetvec)
  216. $(obj)/$(SPL_BIN)-nodtb.bin: $(obj)/$(SPL_BIN) FORCE
  217. $(call if_changed,objcopy)
  218. OBJCOPYFLAGS_u-boot-x86-16bit-spl.bin := -O binary -j .start16 -j .resetvec
  219. $(obj)/u-boot-x86-16bit-spl.bin: $(obj)/u-boot-spl FORCE
  220. $(call if_changed,objcopy)
  221. LDFLAGS_$(SPL_BIN) += -T u-boot-spl.lds $(LDFLAGS_FINAL)
  222. ifneq ($(CONFIG_SPL_TEXT_BASE),)
  223. LDFLAGS_$(SPL_BIN) += -Ttext $(CONFIG_SPL_TEXT_BASE)
  224. endif
  225. MKIMAGEFLAGS_$(SPL_BIN).sfp = -T socfpgaimage
  226. $(obj)/$(SPL_BIN).sfp: $(obj)/$(SPL_BIN).bin FORCE
  227. $(call if_changed,mkimage)
  228. quiet_cmd_mksunxiboot = MKSUNXI $@
  229. cmd_mksunxiboot = $(objtree)/tools/mksunxiboot $< $@
  230. $(obj)/sunxi-spl.bin: $(obj)/$(SPL_BIN).bin FORCE
  231. $(call if_changed,mksunxiboot)
  232. # Rule to link u-boot-spl
  233. # May be overridden by arch/$(ARCH)/config.mk
  234. quiet_cmd_u-boot-spl ?= LD $@
  235. cmd_u-boot-spl ?= (cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \
  236. $(patsubst $(obj)/%,%,$(u-boot-spl-init)) --start-group \
  237. $(patsubst $(obj)/%,%,$(u-boot-spl-main)) \
  238. $(patsubst $(obj)/%,%,$(u-boot-spl-platdata)) \
  239. --end-group \
  240. $(PLATFORM_LIBS) -Map $(SPL_BIN).map -o $(SPL_BIN))
  241. $(obj)/$(SPL_BIN): $(u-boot-spl-platdata) $(u-boot-spl-init) \
  242. $(u-boot-spl-main) $(obj)/u-boot-spl.lds FORCE
  243. $(call if_changed,u-boot-spl)
  244. $(sort $(u-boot-spl-init) $(u-boot-spl-main)): $(u-boot-spl-dirs) ;
  245. PHONY += $(u-boot-spl-dirs)
  246. $(u-boot-spl-dirs): $(u-boot-spl-platdata)
  247. $(Q)$(MAKE) $(build)=$@
  248. quiet_cmd_cpp_lds = LDS $@
  249. cmd_cpp_lds = $(CPP) -Wp,-MD,$(depfile) $(cpp_flags) $(LDPPFLAGS) -ansi \
  250. -D__ASSEMBLY__ -x assembler-with-cpp -P -o $@ $<
  251. $(obj)/u-boot-spl.lds: $(LDSCRIPT) FORCE
  252. $(call if_changed_dep,cpp_lds)
  253. # read all saved command lines
  254. targets := $(wildcard $(sort $(targets)))
  255. cmd_files := $(wildcard $(obj)/.*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
  256. ifneq ($(cmd_files),)
  257. $(cmd_files): ; # Do not try to update included dependency files
  258. include $(cmd_files)
  259. endif
  260. PHONY += FORCE
  261. FORCE:
  262. # Declare the contents of the .PHONY variable as phony. We keep that
  263. # information in a variable so we can use it in if_changed and friends.
  264. .PHONY: $(PHONY)