Makefile.spl 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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. UBOOTINCLUDE := -I$(obj)/include $(UBOOTINCLUDE)
  21. -include $(obj)/include/config/auto.conf
  22. -include $(obj)/include/autoconf.mk
  23. ifeq ($(CONFIG_TPL_BUILD),y)
  24. export CONFIG_TPL_BUILD
  25. SPL_BIN := u-boot-tpl
  26. else
  27. SPL_BIN := u-boot-spl
  28. endif
  29. include $(srctree)/config.mk
  30. include $(srctree)/arch/$(ARCH)/Makefile
  31. # Enable garbage collection of un-used sections for SPL
  32. KBUILD_CFLAGS += -ffunction-sections -fdata-sections
  33. LDFLAGS_FINAL += --gc-sections
  34. # FIX ME
  35. cpp_flags := $(KBUILD_CPPFLAGS) $(PLATFORM_CPPFLAGS) $(UBOOTINCLUDE) \
  36. $(NOSTDINC_FLAGS)
  37. HAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(srctree)/board/$(VENDOR)/common/Makefile),y,n)
  38. libs-y += $(if $(BOARDDIR),board/$(BOARDDIR)/)
  39. libs-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/
  40. libs-$(CONFIG_SPL_FRAMEWORK) += common/spl/
  41. libs-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/
  42. libs-$(CONFIG_SPL_LIBDISK_SUPPORT) += disk/
  43. libs-$(CONFIG_SPL_DM) += drivers/core/
  44. libs-$(CONFIG_SPL_I2C_SUPPORT) += drivers/i2c/
  45. libs-$(CONFIG_SPL_GPIO_SUPPORT) += drivers/gpio/
  46. libs-$(CONFIG_SPL_MMC_SUPPORT) += drivers/mmc/
  47. libs-$(CONFIG_SPL_MPC8XXX_INIT_DDR_SUPPORT) += drivers/ddr/fsl/
  48. libs-$(CONFIG_SPL_SERIAL_SUPPORT) += drivers/serial/
  49. libs-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += drivers/mtd/spi/
  50. libs-$(CONFIG_SPL_SPI_SUPPORT) += drivers/spi/
  51. libs-y += fs/
  52. libs-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/
  53. libs-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/ drivers/power/pmic/
  54. libs-$(CONFIG_SPL_MTD_SUPPORT) += drivers/mtd/
  55. libs-$(CONFIG_SPL_NAND_SUPPORT) += drivers/mtd/nand/
  56. libs-$(CONFIG_SPL_DRIVERS_MISC_SUPPORT) += drivers/misc/
  57. libs-$(CONFIG_SPL_ONENAND_SUPPORT) += drivers/mtd/onenand/
  58. libs-$(CONFIG_SPL_DMA_SUPPORT) += drivers/dma/
  59. libs-$(CONFIG_SPL_POST_MEM_SUPPORT) += post/drivers/
  60. libs-$(CONFIG_SPL_NET_SUPPORT) += net/
  61. libs-$(CONFIG_SPL_ETH_SUPPORT) += drivers/net/
  62. libs-$(CONFIG_SPL_ETH_SUPPORT) += drivers/net/phy/
  63. libs-$(CONFIG_SPL_USBETH_SUPPORT) += drivers/net/phy/
  64. libs-$(CONFIG_SPL_MUSB_NEW_SUPPORT) += drivers/usb/musb-new/
  65. libs-$(CONFIG_SPL_USBETH_SUPPORT) += drivers/usb/gadget/
  66. libs-$(CONFIG_SPL_WATCHDOG_SUPPORT) += drivers/watchdog/
  67. libs-$(CONFIG_SPL_USB_HOST_SUPPORT) += drivers/usb/host/
  68. libs-$(CONFIG_OMAP_USB_PHY) += drivers/usb/phy/
  69. libs-$(CONFIG_SPL_SATA_SUPPORT) += drivers/block/
  70. head-y := $(addprefix $(obj)/,$(head-y))
  71. libs-y := $(addprefix $(obj)/,$(libs-y))
  72. u-boot-spl-dirs := $(patsubst %/,%,$(filter %/, $(libs-y)))
  73. libs-y := $(patsubst %/, %/built-in.o, $(libs-y))
  74. # Add GCC lib
  75. ifeq ($(CONFIG_USE_PRIVATE_LIBGCC),y)
  76. PLATFORM_LIBGCC = arch/$(ARCH)/lib/lib.a
  77. PLATFORM_LIBS := $(filter-out %/lib.a, $(filter-out -lgcc, $(PLATFORM_LIBS))) $(PLATFORM_LIBGCC)
  78. endif
  79. u-boot-spl-init := $(head-y)
  80. u-boot-spl-main := $(libs-y)
  81. # Linker Script
  82. ifdef CONFIG_SPL_LDSCRIPT
  83. # need to strip off double quotes
  84. LDSCRIPT := $(addprefix $(srctree)/,$(CONFIG_SPL_LDSCRIPT:"%"=%))
  85. endif
  86. ifeq ($(wildcard $(LDSCRIPT)),)
  87. LDSCRIPT := $(srctree)/board/$(BOARDDIR)/u-boot-spl.lds
  88. endif
  89. ifeq ($(wildcard $(LDSCRIPT)),)
  90. LDSCRIPT := $(srctree)/$(CPUDIR)/u-boot-spl.lds
  91. endif
  92. ifeq ($(wildcard $(LDSCRIPT)),)
  93. LDSCRIPT := $(srctree)/arch/$(ARCH)/cpu/u-boot-spl.lds
  94. endif
  95. ifeq ($(wildcard $(LDSCRIPT)),)
  96. $(error could not find linker script)
  97. endif
  98. # Special flags for CPP when processing the linker script.
  99. # Pass the version down so we can handle backwards compatibility
  100. # on the fly.
  101. LDPPFLAGS += \
  102. -include $(srctree)/include/u-boot/u-boot.lds.h \
  103. -include $(objtree)/include/config.h \
  104. -DCPUDIR=$(CPUDIR) \
  105. $(shell $(LD) --version | \
  106. sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
  107. quiet_cmd_mkimage = MKIMAGE $@
  108. cmd_mkimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) -d $< $@ \
  109. $(if $(KBUILD_VERBOSE:1=), >/dev/null)
  110. MKIMAGEFLAGS_MLO = -T omapimage -a $(CONFIG_SPL_TEXT_BASE)
  111. MKIMAGEFLAGS_MLO.byteswap = -T omapimage -n byteswap -a $(CONFIG_SPL_TEXT_BASE)
  112. MLO MLO.byteswap: $(obj)/u-boot-spl.bin
  113. $(call if_changed,mkimage)
  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
  120. $(call if_changed,mkimage)
  121. ALL-y += $(obj)/$(SPL_BIN).bin
  122. ifdef CONFIG_SAMSUNG
  123. ALL-y += $(obj)/$(BOARD)-spl.bin
  124. endif
  125. ifdef CONFIG_SUNXI
  126. ifndef CONFIG_SPL_FEL
  127. ALL-y += $(obj)/sunxi-spl.bin
  128. endif
  129. endif
  130. ifeq ($(CONFIG_SYS_SOC),"at91")
  131. ALL-y += boot.bin
  132. endif
  133. all: $(ALL-y)
  134. ifdef CONFIG_SAMSUNG
  135. ifdef CONFIG_VAR_SIZE_SPL
  136. VAR_SIZE_PARAM = --vs
  137. else
  138. VAR_SIZE_PARAM =
  139. endif
  140. $(obj)/$(BOARD)-spl.bin: $(obj)/u-boot-spl.bin
  141. $(if $(wildcard $(objtree)/spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl),\
  142. $(objtree)/spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl,\
  143. $(objtree)/tools/mkexynosspl) $(VAR_SIZE_PARAM) $< $@
  144. endif
  145. quiet_cmd_objcopy = OBJCOPY $@
  146. cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@
  147. OBJCOPYFLAGS_$(SPL_BIN).bin = $(SPL_OBJCFLAGS) -O binary
  148. $(obj)/$(SPL_BIN).bin: $(obj)/$(SPL_BIN) FORCE
  149. $(call if_changed,objcopy)
  150. LDFLAGS_$(SPL_BIN) += -T u-boot-spl.lds $(LDFLAGS_FINAL)
  151. ifneq ($(CONFIG_SPL_TEXT_BASE),)
  152. LDFLAGS_$(SPL_BIN) += -Ttext $(CONFIG_SPL_TEXT_BASE)
  153. endif
  154. ifdef CONFIG_SUNXI
  155. quiet_cmd_mksunxiboot = MKSUNXI $@
  156. cmd_mksunxiboot = $(objtree)/tools/mksunxiboot $< $@
  157. $(obj)/sunxi-spl.bin: $(obj)/$(SPL_BIN).bin
  158. $(call if_changed,mksunxiboot)
  159. endif
  160. quiet_cmd_u-boot-spl = LD $@
  161. cmd_u-boot-spl = (cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \
  162. $(patsubst $(obj)/%,%,$(u-boot-spl-init)) --start-group \
  163. $(patsubst $(obj)/%,%,$(u-boot-spl-main)) --end-group \
  164. $(PLATFORM_LIBS) -Map $(SPL_BIN).map -o $(SPL_BIN))
  165. $(obj)/$(SPL_BIN): $(u-boot-spl-init) $(u-boot-spl-main) $(obj)/u-boot-spl.lds FORCE
  166. $(call if_changed,u-boot-spl)
  167. $(sort $(u-boot-spl-init) $(u-boot-spl-main)): $(u-boot-spl-dirs) ;
  168. PHONY += $(u-boot-spl-dirs)
  169. $(u-boot-spl-dirs):
  170. $(Q)$(MAKE) $(build)=$@
  171. quiet_cmd_cpp_lds = LDS $@
  172. cmd_cpp_lds = $(CPP) -Wp,-MD,$(depfile) $(cpp_flags) $(LDPPFLAGS) -ansi \
  173. -D__ASSEMBLY__ -x assembler-with-cpp -P -o $@ $<
  174. $(obj)/u-boot-spl.lds: $(LDSCRIPT) FORCE
  175. $(call if_changed_dep,cpp_lds)
  176. # read all saved command lines
  177. targets := $(wildcard $(sort $(targets)))
  178. cmd_files := $(wildcard $(obj)/.*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
  179. ifneq ($(cmd_files),)
  180. $(cmd_files): ; # Do not try to update included dependency files
  181. include $(cmd_files)
  182. endif
  183. PHONY += FORCE
  184. FORCE:
  185. # Declare the contents of the .PHONY variable as phony. We keep that
  186. # information in a variable so we can use it in if_changed and friends.
  187. .PHONY: $(PHONY)