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