]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - spl/Makefile
Merge branch 'u-boot-imx/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_MX23)$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35))
92 LIBS-y += arch/$(ARCH)/imx-common/libimx-common.o
93 endif
94
95 ifneq ($(CONFIG_TEGRA),)
96 LIBS-y += arch/$(ARCH)/cpu/$(SOC)-common/lib$(SOC)-common.o
97 LIBS-y += arch/$(ARCH)/cpu/tegra-common/libcputegra-common.o
98 LIBS-y += $(CPUDIR)/tegra-common/libtegra-common.o
99 endif
100
101 ifneq ($(CONFIG_MX23)$(CONFIG_MX35),)
102 LIBS-y += arch/$(ARCH)/imx-common/libimx-common.o
103 endif
104
105 ifeq ($(SOC),exynos)
106 LIBS-y += $(CPUDIR)/s5p-common/libs5p-common.o
107 endif
108
109 # Add GCC lib
110 ifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
111 PLATFORM_LIBGCC = $(SPLTREE)/arch/$(ARCH)/lib/libgcc.o
112 PLATFORM_LIBS := $(filter-out %/libgcc.o, $(filter-out -lgcc, $(PLATFORM_LIBS))) $(PLATFORM_LIBGCC)
113 endif
114
115 START := $(addprefix $(SPLTREE)/,$(START))
116 LIBS := $(addprefix $(SPLTREE)/,$(sort $(LIBS-y)))
117
118 __START := $(subst $(obj),,$(START))
119 __LIBS := $(subst $(obj),,$(LIBS))
120
121 # Linker Script
122 ifdef CONFIG_SPL_LDSCRIPT
123 # need to strip off double quotes
124 LDSCRIPT := $(addprefix $(SRCTREE)/,$(subst ",,$(CONFIG_SPL_LDSCRIPT)))
125 endif
126
127 ifeq ($(wildcard $(LDSCRIPT)),)
128         LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-spl.lds
129 endif
130 ifeq ($(wildcard $(LDSCRIPT)),)
131         LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-spl.lds
132 endif
133 ifeq ($(wildcard $(LDSCRIPT)),)
134         LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot-spl.lds
135 endif
136 ifeq ($(wildcard $(LDSCRIPT)),)
137 $(error could not find linker script)
138 endif
139
140 # Special flags for CPP when processing the linker script.
141 # Pass the version down so we can handle backwards compatibility
142 # on the fly.
143 LDPPFLAGS += \
144         -include $(TOPDIR)/include/u-boot/u-boot.lds.h \
145         -include $(OBJTREE)/include/config.h \
146         -DCPUDIR=$(CPUDIR) \
147         $(shell $(LD) --version | \
148           sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
149
150 $(OBJTREE)/MLO: $(obj)u-boot-spl.bin
151         $(OBJTREE)/tools/mkimage -T omapimage \
152                 -a $(CONFIG_SPL_TEXT_BASE) -d $< $@
153
154 $(OBJTREE)/MLO.byteswap: $(obj)u-boot-spl.bin
155         $(OBJTREE)/tools/mkimage -T omapimage -n byteswap \
156                 -a $(CONFIG_SPL_TEXT_BASE) -d $< $@
157
158 $(OBJTREE)/SPL : $(obj)u-boot-spl.bin depend
159                 $(MAKE) -C $(SRCTREE)/arch/arm/imx-common $@
160
161 ALL-y   += $(obj)u-boot-spl.bin
162
163 ifdef CONFIG_SAMSUNG
164 ALL-y   += $(obj)$(BOARD)-spl.bin
165 endif
166
167 all:    $(ALL-y)
168
169 ifdef CONFIG_SAMSUNG
170 $(obj)$(BOARD)-spl.bin: $(obj)u-boot-spl.bin
171         $(OBJTREE)/tools/mk$(BOARD)spl \
172                 $(obj)u-boot-spl.bin $(obj)$(BOARD)-spl.bin
173 endif
174
175 $(obj)u-boot-spl.bin:   $(obj)u-boot-spl
176         $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@
177
178 GEN_UBOOT = \
179         cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $(__START) \
180                 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
181                 -Map u-boot-spl.map -o u-boot-spl
182
183 $(obj)u-boot-spl:       depend $(START) $(LIBS) $(obj)u-boot-spl.lds
184         $(GEN_UBOOT)
185
186 $(START):       depend
187         $(MAKE) -C $(SRCTREE)/$(START_PATH) $@
188
189 $(LIBS):        depend
190         $(MAKE) -C $(SRCTREE)$(dir $(subst $(SPLTREE),,$@))
191
192 $(obj)u-boot-spl.lds: $(LDSCRIPT) depend
193         $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -I$(obj). -ansi -D__ASSEMBLY__ -P - < $< > $@
194
195 depend: $(obj).depend
196 .PHONY: depend
197
198 # defines $(obj).depend target
199 include $(SRCTREE)/rules.mk