]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - spl/Makefile
Merge branch 'u-boot-ti/master' into 'u-boot-arm/master'
[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 = $(if $(wildcard $(SRCTREE)/board/$(VENDOR)/common/Makefile),y,n)
27
28 ifdef   CONFIG_SPL_START_S_PATH
29 START_PATH := $(subst ",,$(CONFIG_SPL_START_S_PATH))
30 else
31 START_PATH := $(CPUDIR)
32 endif
33
34 START := $(START_PATH)/start.o
35 ifeq ($(CPU),x86)
36 START += $(START_PATH)/start16.o
37 START += $(START_PATH)/resetvec.o
38 endif
39 ifeq ($(CPU),ppc4xx)
40 START += $(START_PATH)/resetvec.o
41 endif
42 ifeq ($(CPU),mpc85xx)
43 START += $(START_PATH)/resetvec.o
44 endif
45
46 LIBS-y += arch/$(ARCH)/lib/lib$(ARCH).o
47
48 LIBS-y += $(CPUDIR)/lib$(CPU).o
49 ifeq ($(CPU),mpc83xx)
50 LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
51 endif
52 ifeq ($(CPU),mpc85xx)
53 LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
54 endif
55 ifeq ($(CPU),mpc86xx)
56 LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
57 endif
58
59 ifdef SOC
60 LIBS-y += $(CPUDIR)/$(SOC)/lib$(SOC).o
61 endif
62 LIBS-y += board/$(BOARDDIR)/lib$(BOARD).o
63 LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/lib$(VENDOR).o
64
65 LIBS-$(CONFIG_SPL_FRAMEWORK) += common/spl/libspl.o
66 LIBS-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/libcommon.o
67 LIBS-$(CONFIG_SPL_LIBDISK_SUPPORT) += disk/libdisk.o
68 LIBS-$(CONFIG_SPL_I2C_SUPPORT) += drivers/i2c/libi2c.o
69 LIBS-$(CONFIG_SPL_GPIO_SUPPORT) += drivers/gpio/libgpio.o
70 LIBS-$(CONFIG_SPL_MMC_SUPPORT) += drivers/mmc/libmmc.o
71 LIBS-$(CONFIG_SPL_SERIAL_SUPPORT) += drivers/serial/libserial.o
72 LIBS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += drivers/mtd/spi/libspi_flash.o
73 LIBS-$(CONFIG_SPL_SPI_SUPPORT) += drivers/spi/libspi.o
74 LIBS-$(CONFIG_SPL_FAT_SUPPORT) += fs/fat/libfat.o
75 LIBS-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/libgeneric.o
76 LIBS-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/libpower.o
77 LIBS-$(CONFIG_SPL_NAND_SUPPORT) += drivers/mtd/nand/libnand.o
78 LIBS-$(CONFIG_SPL_ONENAND_SUPPORT) += drivers/mtd/onenand/libonenand.o
79 LIBS-$(CONFIG_SPL_DMA_SUPPORT) += drivers/dma/libdma.o
80 LIBS-$(CONFIG_SPL_POST_MEM_SUPPORT) += post/drivers/memory.o
81 LIBS-$(CONFIG_SPL_NET_SUPPORT) += net/libnet.o
82 LIBS-$(CONFIG_SPL_ETH_SUPPORT) += drivers/net/libnet.o
83 LIBS-$(CONFIG_SPL_ETH_SUPPORT) += drivers/net/phy/libphy.o
84 LIBS-$(CONFIG_SPL_MUSB_NEW_SUPPORT) += drivers/usb/musb-new/libusb_musb-new.o
85 LIBS-$(CONFIG_SPL_USBETH_SUPPORT) += drivers/usb/gadget/libusb_gadget.o
86
87 ifneq ($(CONFIG_AM33XX)$(CONFIG_OMAP34XX)$(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX)$(CONFIG_TI814X),)
88 LIBS-y += $(CPUDIR)/omap-common/libomap-common.o
89 endif
90
91 ifneq ($(CONFIG_TEGRA),)
92 LIBS-y += arch/$(ARCH)/cpu/$(SOC)-common/lib$(SOC)-common.o
93 LIBS-y += arch/$(ARCH)/cpu/tegra-common/libcputegra-common.o
94 LIBS-y += $(CPUDIR)/tegra-common/libtegra-common.o
95 endif
96
97 # Add GCC lib
98 ifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
99 PLATFORM_LIBGCC = $(SPLTREE)/arch/$(ARCH)/lib/libgcc.o
100 PLATFORM_LIBS := $(filter-out %/libgcc.o, $(filter-out -lgcc, $(PLATFORM_LIBS))) $(PLATFORM_LIBGCC)
101 endif
102
103 START := $(addprefix $(SPLTREE)/,$(START))
104 LIBS := $(addprefix $(SPLTREE)/,$(sort $(LIBS-y)))
105
106 __START := $(subst $(obj),,$(START))
107 __LIBS := $(subst $(obj),,$(LIBS))
108
109 # Linker Script
110 ifdef CONFIG_SPL_LDSCRIPT
111 # need to strip off double quotes
112 LDSCRIPT := $(addprefix $(SRCTREE)/,$(subst ",,$(CONFIG_SPL_LDSCRIPT)))
113 endif
114
115 ifeq ($(wildcard $(LDSCRIPT)),)
116         LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-spl.lds
117 endif
118 ifeq ($(wildcard $(LDSCRIPT)),)
119         LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-spl.lds
120 endif
121 ifeq ($(wildcard $(LDSCRIPT)),)
122         LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot-spl.lds
123 endif
124 ifeq ($(wildcard $(LDSCRIPT)),)
125 $(error could not find linker script)
126 endif
127
128 # Special flags for CPP when processing the linker script.
129 # Pass the version down so we can handle backwards compatibility
130 # on the fly.
131 LDPPFLAGS += \
132         -include $(TOPDIR)/include/u-boot/u-boot.lds.h \
133         -include $(OBJTREE)/include/config.h \
134         -DCPUDIR=$(CPUDIR) \
135         $(shell $(LD) --version | \
136           sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
137
138 $(OBJTREE)/MLO: $(obj)u-boot-spl.bin
139         $(OBJTREE)/tools/mkimage -T omapimage \
140                 -a $(CONFIG_SPL_TEXT_BASE) -d $< $@
141
142 $(OBJTREE)/MLO.byteswap: $(obj)u-boot-spl.bin
143         $(OBJTREE)/tools/mkimage -T omapimage -n byteswap \
144                 -a $(CONFIG_SPL_TEXT_BASE) -d $< $@
145
146 $(OBJTREE)/SPL : $(obj)u-boot-spl.bin depend
147                 $(MAKE) -C $(SRCTREE)/arch/arm/imx-common $@
148
149 ALL-y   += $(obj)u-boot-spl.bin
150
151 ifdef CONFIG_SAMSUNG
152 ALL-y   += $(obj)$(BOARD)-spl.bin
153 endif
154
155 all:    $(ALL-y)
156
157 ifdef CONFIG_SAMSUNG
158 $(obj)$(BOARD)-spl.bin: $(obj)u-boot-spl.bin
159         $(OBJTREE)/tools/mk$(BOARD)spl \
160                 $(obj)u-boot-spl.bin $(obj)$(BOARD)-spl.bin
161 endif
162
163 $(obj)u-boot-spl.bin:   $(obj)u-boot-spl
164         $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@
165
166 GEN_UBOOT = \
167         cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $(__START) \
168                 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
169                 -Map u-boot-spl.map -o u-boot-spl
170
171 $(obj)u-boot-spl:       depend $(START) $(LIBS) $(obj)u-boot-spl.lds
172         $(GEN_UBOOT)
173
174 $(START):       depend
175         $(MAKE) -C $(SRCTREE)/$(START_PATH) $@
176
177 $(LIBS):        depend
178         $(MAKE) -C $(SRCTREE)$(dir $(subst $(SPLTREE),,$@))
179
180 $(obj)u-boot-spl.lds: $(LDSCRIPT) depend
181         $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -I$(obj). -ansi -D__ASSEMBLY__ -P - < $< > $@
182
183 depend: $(obj).depend
184 .PHONY: depend
185
186 # defines $(obj).depend target
187 include $(SRCTREE)/rules.mk