Makefile.spl 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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. HAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(srctree)/board/$(VENDOR)/common/Makefile),y,n)
  40. libs-y += $(if $(BOARDDIR),board/$(BOARDDIR)/)
  41. libs-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/
  42. libs-$(CONFIG_SPL_FRAMEWORK) += common/spl/
  43. libs-y += common/init/
  44. libs-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/
  45. libs-$(CONFIG_SPL_LIBDISK_SUPPORT) += disk/
  46. libs-y += drivers/
  47. libs-y += fs/
  48. libs-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/
  49. libs-$(CONFIG_SPL_POST_MEM_SUPPORT) += post/drivers/
  50. libs-$(CONFIG_SPL_NET_SUPPORT) += net/
  51. head-y := $(addprefix $(obj)/,$(head-y))
  52. libs-y := $(addprefix $(obj)/,$(libs-y))
  53. u-boot-spl-dirs := $(patsubst %/,%,$(filter %/, $(libs-y)))
  54. libs-y := $(patsubst %/, %/built-in.o, $(libs-y))
  55. # Add GCC lib
  56. ifeq ($(CONFIG_USE_PRIVATE_LIBGCC),y)
  57. PLATFORM_LIBGCC = arch/$(ARCH)/lib/lib.a
  58. PLATFORM_LIBS := $(filter-out %/lib.a, $(filter-out -lgcc, $(PLATFORM_LIBS))) $(PLATFORM_LIBGCC)
  59. endif
  60. u-boot-spl-init := $(head-y)
  61. u-boot-spl-main := $(libs-y)
  62. # Linker Script
  63. ifdef CONFIG_SPL_LDSCRIPT
  64. # need to strip off double quotes
  65. LDSCRIPT := $(addprefix $(srctree)/,$(CONFIG_SPL_LDSCRIPT:"%"=%))
  66. endif
  67. ifeq ($(wildcard $(LDSCRIPT)),)
  68. LDSCRIPT := $(srctree)/board/$(BOARDDIR)/u-boot-spl.lds
  69. endif
  70. ifeq ($(wildcard $(LDSCRIPT)),)
  71. LDSCRIPT := $(srctree)/$(CPUDIR)/u-boot-spl.lds
  72. endif
  73. ifeq ($(wildcard $(LDSCRIPT)),)
  74. LDSCRIPT := $(srctree)/arch/$(ARCH)/cpu/u-boot-spl.lds
  75. endif
  76. ifeq ($(wildcard $(LDSCRIPT)),)
  77. $(error could not find linker script)
  78. endif
  79. # Special flags for CPP when processing the linker script.
  80. # Pass the version down so we can handle backwards compatibility
  81. # on the fly.
  82. LDPPFLAGS += \
  83. -include $(srctree)/include/u-boot/u-boot.lds.h \
  84. -include $(objtree)/include/config.h \
  85. -DCPUDIR=$(CPUDIR) \
  86. $(shell $(LD) --version | \
  87. sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
  88. quiet_cmd_mkimage = MKIMAGE $@
  89. cmd_mkimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) -d $< $@ \
  90. $(if $(KBUILD_VERBOSE:1=), >/dev/null)
  91. MKIMAGEFLAGS_MLO = -T omapimage -a $(CONFIG_SPL_TEXT_BASE)
  92. MKIMAGEFLAGS_MLO.byteswap = -T omapimage -n byteswap -a $(CONFIG_SPL_TEXT_BASE)
  93. MLO MLO.byteswap: $(obj)/u-boot-spl.bin
  94. $(call if_changed,mkimage)
  95. MKIMAGEFLAGS_boot.bin = -T atmelimage
  96. ifeq ($(CONFIG_SPL_GENERATE_ATMEL_PMECC_HEADER),y)
  97. MKIMAGEFLAGS_boot.bin += -n $(shell $(obj)/../tools/atmel_pmecc_params)
  98. boot.bin: $(obj)/../tools/atmel_pmecc_params
  99. endif
  100. boot.bin: $(obj)/u-boot-spl.bin
  101. $(call if_changed,mkimage)
  102. ALL-y += $(obj)/$(SPL_BIN).bin $(obj)/$(SPL_BIN).cfg
  103. ALL-$(CONFIG_OF_SEPARATE) += $(obj)/$(SPL_BIN)-pad.bin $(obj)/$(SPL_BIN)-dtb.bin
  104. ifdef CONFIG_SAMSUNG
  105. ALL-y += $(obj)/$(BOARD)-spl.bin
  106. endif
  107. ifdef CONFIG_ARCH_SOCFPGA
  108. ALL-y += $(obj)/$(SPL_BIN)-dtb.sfp
  109. endif
  110. ifdef CONFIG_SUNXI
  111. ALL-y += $(obj)/sunxi-spl.bin
  112. endif
  113. ifeq ($(CONFIG_SYS_SOC),"at91")
  114. ALL-y += boot.bin
  115. endif
  116. all: $(ALL-y)
  117. quiet_cmd_cat = CAT $@
  118. cmd_cat = cat $(filter-out $(PHONY), $^) > $@
  119. $(obj)/$(SPL_BIN)-dtb.bin: $(obj)/$(SPL_BIN).bin $(obj)/$(SPL_BIN)-pad.bin \
  120. $(obj)/$(SPL_BIN).dtb FORCE
  121. $(call if_changed,cat)
  122. # Create a file that pads from the end of u-boot-spl.bin to bss_end
  123. $(obj)/$(SPL_BIN)-pad.bin: $(obj)/$(SPL_BIN)
  124. @bss_size_str=$(shell $(NM) $< | awk 'BEGIN {size = 0} /__bss_size/ {size = $$1} END {print "ibase=16; " toupper(size)}' | bc); \
  125. dd if=/dev/zero of=$@ bs=1 count=$${bss_size_str} 2>/dev/null;
  126. # Pass the original device tree file through fdtgrep twice. The first pass
  127. # removes any unwanted nodes (i.e. those which don't have the
  128. # 'u-boot,dm-pre-reloc' property and thus are not needed by SPL. The second
  129. # pass removes various unused properties from the remaining nodes.
  130. # The output is typically a much smaller device tree file.
  131. quiet_cmd_fdtgrep = FDTGREP $@
  132. cmd_fdtgrep = $(objtree)/tools/fdtgrep -b u-boot,dm-pre-reloc -RT $< \
  133. -n /chosen -O dtb | \
  134. $(objtree)/tools/fdtgrep -r -O dtb - -o $@ \
  135. $(addprefix -P ,$(subst $\",,$(CONFIG_OF_SPL_REMOVE_PROPS)))
  136. $(obj)/$(SPL_BIN).dtb: dts/dt.dtb
  137. $(call cmd,fdtgrep)
  138. quiet_cmd_cpp_cfg = CFG $@
  139. cmd_cpp_cfg = $(CPP) -Wp,-MD,$(depfile) $(cpp_flags) $(LDPPFLAGS) -ansi \
  140. -DDO_DEPS_ONLY -D__ASSEMBLY__ -x assembler-with-cpp -P -dM -E -o $@ $<
  141. $(obj)/$(SPL_BIN).cfg: include/config.h
  142. $(call if_changed,cpp_cfg)
  143. ifdef CONFIG_SAMSUNG
  144. ifdef CONFIG_VAR_SIZE_SPL
  145. VAR_SIZE_PARAM = --vs
  146. else
  147. VAR_SIZE_PARAM =
  148. endif
  149. $(obj)/$(BOARD)-spl.bin: $(obj)/u-boot-spl.bin
  150. $(if $(wildcard $(objtree)/spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl),\
  151. $(objtree)/spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl,\
  152. $(objtree)/tools/mkexynosspl) $(VAR_SIZE_PARAM) $< $@
  153. endif
  154. quiet_cmd_objcopy = OBJCOPY $@
  155. cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@
  156. OBJCOPYFLAGS_$(SPL_BIN).bin = $(SPL_OBJCFLAGS) -O binary
  157. $(obj)/$(SPL_BIN).bin: $(obj)/$(SPL_BIN) FORCE
  158. $(call if_changed,objcopy)
  159. LDFLAGS_$(SPL_BIN) += -T u-boot-spl.lds $(LDFLAGS_FINAL)
  160. ifneq ($(CONFIG_SPL_TEXT_BASE),)
  161. LDFLAGS_$(SPL_BIN) += -Ttext $(CONFIG_SPL_TEXT_BASE)
  162. endif
  163. ifdef CONFIG_ARCH_SOCFPGA
  164. MKIMAGEFLAGS_$(SPL_BIN)-dtb.sfp = -T socfpgaimage
  165. $(obj)/$(SPL_BIN)-dtb.sfp: $(obj)/$(SPL_BIN)-dtb.bin FORCE
  166. $(call if_changed,mkimage)
  167. endif
  168. ifdef CONFIG_SUNXI
  169. quiet_cmd_mksunxiboot = MKSUNXI $@
  170. cmd_mksunxiboot = $(objtree)/tools/mksunxiboot $< $@
  171. $(obj)/sunxi-spl.bin: $(obj)/$(SPL_BIN).bin
  172. $(call if_changed,mksunxiboot)
  173. endif
  174. quiet_cmd_u-boot-spl = LD $@
  175. cmd_u-boot-spl = (cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \
  176. $(patsubst $(obj)/%,%,$(u-boot-spl-init)) --start-group \
  177. $(patsubst $(obj)/%,%,$(u-boot-spl-main)) --end-group \
  178. $(PLATFORM_LIBS) -Map $(SPL_BIN).map -o $(SPL_BIN))
  179. $(obj)/$(SPL_BIN): $(u-boot-spl-init) $(u-boot-spl-main) $(obj)/u-boot-spl.lds FORCE
  180. $(call if_changed,u-boot-spl)
  181. $(sort $(u-boot-spl-init) $(u-boot-spl-main)): $(u-boot-spl-dirs) ;
  182. PHONY += $(u-boot-spl-dirs)
  183. $(u-boot-spl-dirs):
  184. $(Q)$(MAKE) $(build)=$@
  185. quiet_cmd_cpp_lds = LDS $@
  186. cmd_cpp_lds = $(CPP) -Wp,-MD,$(depfile) $(cpp_flags) $(LDPPFLAGS) -ansi \
  187. -D__ASSEMBLY__ -x assembler-with-cpp -P -o $@ $<
  188. $(obj)/u-boot-spl.lds: $(LDSCRIPT) FORCE
  189. $(call if_changed_dep,cpp_lds)
  190. # read all saved command lines
  191. targets := $(wildcard $(sort $(targets)))
  192. cmd_files := $(wildcard $(obj)/.*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
  193. ifneq ($(cmd_files),)
  194. $(cmd_files): ; # Do not try to update included dependency files
  195. include $(cmd_files)
  196. endif
  197. PHONY += FORCE
  198. FORCE:
  199. # Declare the contents of the .PHONY variable as phony. We keep that
  200. # information in a variable so we can use it in if_changed and friends.
  201. .PHONY: $(PHONY)