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