Makefile.spl 10.0 KB

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