blob: 91dd11a45e1a82b932bf15825989c64fce7e252d [file] [log] [blame]
Daniel Schwierzeck6a11cf42011-07-18 07:48:07 +00001#
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# This file is released under the terms of GPL v2 and any later version.
13# See the file COPYING in the root directory of the source tree for details.
14#
15# Based on top-level Makefile.
16#
17
18CONFIG_SPL_BUILD := y
19export CONFIG_SPL_BUILD
20
21include $(TOPDIR)/config.mk
22
23# We want the final binaries in this directory
24obj := $(OBJTREE)/spl/
25
26HAVE_VENDOR_COMMON_LIB := $(shell [ -f $(SRCTREE)/board/$(VENDOR)/common/Makefile ] \
27 && echo y || echo n)
28
Marek Vasut08e4f702011-09-11 17:56:19 +000029ifdef CONFIG_SPL_START_S_PATH
30START_PATH := $(subst ",,$(CONFIG_SPL_START_S_PATH))
31else
32START_PATH := $(CPUDIR)
33endif
34
35START := $(START_PATH)/start.o
Daniel Schwierzeck6a11cf42011-07-18 07:48:07 +000036
37LIBS-y += arch/$(ARCH)/lib/lib$(ARCH).o
38LIBS-y += $(CPUDIR)/lib$(CPU).o
39ifdef SOC
40LIBS-y += $(CPUDIR)/$(SOC)/lib$(SOC).o
41endif
42LIBS-y += board/$(BOARDDIR)/lib$(BOARD).o
43LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/lib$(VENDOR).o
44
Daniel Schwierzeckefcc6092011-07-13 05:11:08 +000045LIBS-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/libcommon.o
46LIBS-$(CONFIG_SPL_LIBDISK_SUPPORT) += disk/libdisk.o
47LIBS-$(CONFIG_SPL_I2C_SUPPORT) += drivers/i2c/libi2c.o
48LIBS-$(CONFIG_SPL_GPIO_SUPPORT) += drivers/gpio/libgpio.o
49LIBS-$(CONFIG_SPL_MMC_SUPPORT) += drivers/mmc/libmmc.o
50LIBS-$(CONFIG_SPL_SERIAL_SUPPORT) += drivers/serial/libserial.o
51LIBS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += drivers/mtd/spi/libspi_flash.o
52LIBS-$(CONFIG_SPL_SPI_SUPPORT) += drivers/spi/libspi.o
53LIBS-$(CONFIG_SPL_FAT_SUPPORT) += fs/fat/libfat.o
54LIBS-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/libgeneric.o
Simon Schwarz682b3a82011-09-14 15:30:54 -040055LIBS-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/libpower.o
Simon Schwarz12c2f1e2011-09-14 15:30:16 -040056LIBS-$(CONFIG_SPL_NAND_SUPPORT) += drivers/mtd/nand/libnand.o
Daniel Schwierzeckefcc6092011-07-13 05:11:08 +000057
Daniel Schwierzeck525728b2011-07-13 05:11:09 +000058ifeq ($(SOC),omap3)
59LIBS-y += $(CPUDIR)/omap-common/libomap-common.o
60endif
61ifeq ($(SOC),omap4)
62LIBS-y += $(CPUDIR)/omap-common/libomap-common.o
63endif
64
Daniel Schwierzeck6a11cf42011-07-18 07:48:07 +000065START := $(addprefix $(SPLTREE)/,$(START))
66LIBS := $(addprefix $(SPLTREE)/,$(sort $(LIBS-y)))
67
68__START := $(subst $(obj),,$(START))
69__LIBS := $(subst $(obj),,$(LIBS))
70
71# Linker Script
72ifdef CONFIG_SPL_LDSCRIPT
73# need to strip off double quotes
74LDSCRIPT := $(addprefix $(SRCTREE)/,$(subst ",,$(CONFIG_SPL_LDSCRIPT)))
75endif
76
77ifeq ($(wildcard $(LDSCRIPT)),)
78 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-spl.lds
79endif
80ifeq ($(wildcard $(LDSCRIPT)),)
81 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-spl.lds
82endif
83ifeq ($(wildcard $(LDSCRIPT)),)
84$(error could not find linker script)
85endif
86
87# Special flags for CPP when processing the linker script.
88# Pass the version down so we can handle backwards compatibility
89# on the fly.
90LDPPFLAGS += \
91 -include $(TOPDIR)/include/u-boot/u-boot.lds.h \
92 -include $(OBJTREE)/include/config.h \
93 $(shell $(LD) --version | \
94 sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
95
John Rigby3decb142011-07-21 09:10:30 -040096ifdef CONFIG_OMAP
97$(OBJTREE)/MLO: $(obj)u-boot-spl.bin
98 $(OBJTREE)/tools/mkimage -T omapimage \
99 -a $(CONFIG_SPL_TEXT_BASE) -d $< $@
100endif
101
Daniel Schwierzeck6a11cf42011-07-18 07:48:07 +0000102ALL-y += $(obj)u-boot-spl.bin
103
Chander Kashyap98a48c52011-08-18 22:37:20 +0000104ifdef CONFIG_SAMSUNG
105ALL-y += $(obj)$(BOARD)-spl.bin
106endif
107
Daniel Schwierzeck6a11cf42011-07-18 07:48:07 +0000108all: $(ALL-y)
109
Chander Kashyap98a48c52011-08-18 22:37:20 +0000110ifdef CONFIG_SAMSUNG
111$(obj)$(BOARD)-spl.bin: $(obj)u-boot-spl.bin
112 $(TOPDIR)/board/$(BOARDDIR)/tools/mk$(BOARD)spl.exe \
113 $(obj)u-boot-spl.bin $(obj)$(BOARD)-spl.bin
114endif
115
Daniel Schwierzeck6a11cf42011-07-18 07:48:07 +0000116$(obj)u-boot-spl.bin: $(obj)u-boot-spl
117 $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@
118
119GEN_UBOOT = \
120 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) | \
121 sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
122 cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $$UNDEF_SYM $(__START) \
123 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
124 -Map u-boot-spl.map -o u-boot-spl
125
126$(obj)u-boot-spl: depend $(START) $(LIBS) $(obj)u-boot-spl.lds
127 $(GEN_UBOOT)
128
129$(START): depend
Marek Vasut08e4f702011-09-11 17:56:19 +0000130 $(MAKE) -C $(SRCTREE)/$(START_PATH) $@
Daniel Schwierzeck6a11cf42011-07-18 07:48:07 +0000131
132$(LIBS): depend
133 $(MAKE) -C $(SRCTREE)$(dir $(subst $(SPLTREE),,$@))
134
135$(obj)u-boot-spl.lds: $(LDSCRIPT) depend
136 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - < $< > $@
137
138depend: $(obj).depend
139.PHONY: depend
140
141# defines $(obj).depend target
142include $(SRCTREE)/rules.mk