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