Makefile.spl 9.1 KB

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