blob: 0204f97349310a65789fb7f7ef2f373cba11cae4 [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
29START := $(CPUDIR)/start.o
30
31LIBS-y += arch/$(ARCH)/lib/lib$(ARCH).o
32LIBS-y += $(CPUDIR)/lib$(CPU).o
33ifdef SOC
34LIBS-y += $(CPUDIR)/$(SOC)/lib$(SOC).o
35endif
36LIBS-y += board/$(BOARDDIR)/lib$(BOARD).o
37LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/lib$(VENDOR).o
38
Daniel Schwierzeckefcc6092011-07-13 05:11:08 +000039LIBS-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/libcommon.o
40LIBS-$(CONFIG_SPL_LIBDISK_SUPPORT) += disk/libdisk.o
41LIBS-$(CONFIG_SPL_I2C_SUPPORT) += drivers/i2c/libi2c.o
42LIBS-$(CONFIG_SPL_GPIO_SUPPORT) += drivers/gpio/libgpio.o
43LIBS-$(CONFIG_SPL_MMC_SUPPORT) += drivers/mmc/libmmc.o
44LIBS-$(CONFIG_SPL_SERIAL_SUPPORT) += drivers/serial/libserial.o
45LIBS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += drivers/mtd/spi/libspi_flash.o
46LIBS-$(CONFIG_SPL_SPI_SUPPORT) += drivers/spi/libspi.o
47LIBS-$(CONFIG_SPL_FAT_SUPPORT) += fs/fat/libfat.o
48LIBS-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/libgeneric.o
49
Daniel Schwierzeck525728b2011-07-13 05:11:09 +000050ifeq ($(SOC),omap3)
51LIBS-y += $(CPUDIR)/omap-common/libomap-common.o
52endif
53ifeq ($(SOC),omap4)
54LIBS-y += $(CPUDIR)/omap-common/libomap-common.o
55endif
56
Daniel Schwierzeck6a11cf42011-07-18 07:48:07 +000057START := $(addprefix $(SPLTREE)/,$(START))
58LIBS := $(addprefix $(SPLTREE)/,$(sort $(LIBS-y)))
59
60__START := $(subst $(obj),,$(START))
61__LIBS := $(subst $(obj),,$(LIBS))
62
63# Linker Script
64ifdef CONFIG_SPL_LDSCRIPT
65# need to strip off double quotes
66LDSCRIPT := $(addprefix $(SRCTREE)/,$(subst ",,$(CONFIG_SPL_LDSCRIPT)))
67endif
68
69ifeq ($(wildcard $(LDSCRIPT)),)
70 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-spl.lds
71endif
72ifeq ($(wildcard $(LDSCRIPT)),)
73 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-spl.lds
74endif
75ifeq ($(wildcard $(LDSCRIPT)),)
76$(error could not find linker script)
77endif
78
79# Special flags for CPP when processing the linker script.
80# Pass the version down so we can handle backwards compatibility
81# on the fly.
82LDPPFLAGS += \
83 -include $(TOPDIR)/include/u-boot/u-boot.lds.h \
84 -include $(OBJTREE)/include/config.h \
85 $(shell $(LD) --version | \
86 sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
87
88ALL-y += $(obj)u-boot-spl.bin
89
90all: $(ALL-y)
91
92$(obj)u-boot-spl.bin: $(obj)u-boot-spl
93 $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@
94
95GEN_UBOOT = \
96 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) | \
97 sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
98 cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $$UNDEF_SYM $(__START) \
99 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
100 -Map u-boot-spl.map -o u-boot-spl
101
102$(obj)u-boot-spl: depend $(START) $(LIBS) $(obj)u-boot-spl.lds
103 $(GEN_UBOOT)
104
105$(START): depend
106 $(MAKE) -C $(SRCTREE)/$(CPUDIR) $@
107
108$(LIBS): depend
109 $(MAKE) -C $(SRCTREE)$(dir $(subst $(SPLTREE),,$@))
110
111$(obj)u-boot-spl.lds: $(LDSCRIPT) depend
112 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - < $< > $@
113
114depend: $(obj).depend
115.PHONY: depend
116
117# defines $(obj).depend target
118include $(SRCTREE)/rules.mk