]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - spl/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / spl / Makefile
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 # 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
18 CONFIG_SPL_BUILD := y
19 export CONFIG_SPL_BUILD
20
21 include $(TOPDIR)/config.mk
22
23 # We want the final binaries in this directory
24 obj := $(OBJTREE)/spl/
25
26 HAVE_VENDOR_COMMON_LIB := $(shell [ -f $(SRCTREE)/board/$(VENDOR)/common/Makefile ] \
27                         && echo y || echo n)
28
29 START := $(CPUDIR)/start.o
30
31 LIBS-y += arch/$(ARCH)/lib/lib$(ARCH).o
32 LIBS-y += $(CPUDIR)/lib$(CPU).o
33 ifdef SOC
34 LIBS-y += $(CPUDIR)/$(SOC)/lib$(SOC).o
35 endif
36 LIBS-y += board/$(BOARDDIR)/lib$(BOARD).o
37 LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/lib$(VENDOR).o
38
39 LIBS-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/libcommon.o
40 LIBS-$(CONFIG_SPL_LIBDISK_SUPPORT) += disk/libdisk.o
41 LIBS-$(CONFIG_SPL_I2C_SUPPORT) += drivers/i2c/libi2c.o
42 LIBS-$(CONFIG_SPL_GPIO_SUPPORT) += drivers/gpio/libgpio.o
43 LIBS-$(CONFIG_SPL_MMC_SUPPORT) += drivers/mmc/libmmc.o
44 LIBS-$(CONFIG_SPL_SERIAL_SUPPORT) += drivers/serial/libserial.o
45 LIBS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += drivers/mtd/spi/libspi_flash.o
46 LIBS-$(CONFIG_SPL_SPI_SUPPORT) += drivers/spi/libspi.o
47 LIBS-$(CONFIG_SPL_FAT_SUPPORT) += fs/fat/libfat.o
48 LIBS-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/libgeneric.o
49
50 ifeq ($(SOC),omap3)
51 LIBS-y += $(CPUDIR)/omap-common/libomap-common.o
52 endif
53 ifeq ($(SOC),omap4)
54 LIBS-y += $(CPUDIR)/omap-common/libomap-common.o
55 endif
56
57 START := $(addprefix $(SPLTREE)/,$(START))
58 LIBS := $(addprefix $(SPLTREE)/,$(sort $(LIBS-y)))
59
60 __START := $(subst $(obj),,$(START))
61 __LIBS := $(subst $(obj),,$(LIBS))
62
63 # Linker Script
64 ifdef CONFIG_SPL_LDSCRIPT
65 # need to strip off double quotes
66 LDSCRIPT := $(addprefix $(SRCTREE)/,$(subst ",,$(CONFIG_SPL_LDSCRIPT)))
67 endif
68
69 ifeq ($(wildcard $(LDSCRIPT)),)
70         LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-spl.lds
71 endif
72 ifeq ($(wildcard $(LDSCRIPT)),)
73         LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-spl.lds
74 endif
75 ifeq ($(wildcard $(LDSCRIPT)),)
76 $(error could not find linker script)
77 endif
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.
82 LDPPFLAGS += \
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
88 ifdef CONFIG_OMAP
89 $(OBJTREE)/MLO: $(obj)u-boot-spl.bin
90         $(OBJTREE)/tools/mkimage -T omapimage \
91                 -a $(CONFIG_SPL_TEXT_BASE) -d $< $@
92 endif
93
94 ALL-y   += $(obj)u-boot-spl.bin
95
96 ifdef CONFIG_SAMSUNG
97 ALL-y   += $(obj)$(BOARD)-spl.bin
98 endif
99
100 all:    $(ALL-y)
101
102 ifdef CONFIG_SAMSUNG
103 $(obj)$(BOARD)-spl.bin: $(obj)u-boot-spl.bin
104         $(TOPDIR)/board/$(BOARDDIR)/tools/mk$(BOARD)spl.exe \
105                 $(obj)u-boot-spl.bin $(obj)$(BOARD)-spl.bin
106 endif
107
108 $(obj)u-boot-spl.bin:   $(obj)u-boot-spl
109         $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@
110
111 GEN_UBOOT = \
112         UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) | \
113         sed  -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
114         cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $$UNDEF_SYM $(__START) \
115                 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
116                 -Map u-boot-spl.map -o u-boot-spl
117
118 $(obj)u-boot-spl:       depend $(START) $(LIBS) $(obj)u-boot-spl.lds
119         $(GEN_UBOOT)
120
121 $(START):       depend
122         $(MAKE) -C $(SRCTREE)/$(CPUDIR) $@
123
124 $(LIBS):        depend
125         $(MAKE) -C $(SRCTREE)$(dir $(subst $(SPLTREE),,$@))
126
127 $(obj)u-boot-spl.lds: $(LDSCRIPT) depend
128         $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - < $< > $@
129
130 depend: $(obj).depend
131 .PHONY: depend
132
133 # defines $(obj).depend target
134 include $(SRCTREE)/rules.mk