]>
Commit | Line | Data |
---|---|---|
6a11cf48 DS |
1 | # |
2 | # (C) Copyright 2000-2011 | |
3 | # Wolfgang Denk, DENX Software Engineering, [email protected]. | |
4 | # | |
5 | # (C) Copyright 2011 | |
6 | # Daniel Schwierzeck, [email protected]. | |
7 | # | |
8 | # (C) Copyright 2011 | |
9 | # Texas Instruments Incorporated - http://www.ti.com/ | |
10 | # Aneesh V <[email protected]> | |
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 | ||
e66443fd | 26 | HAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(SRCTREE)/board/$(VENDOR)/common/Makefile),y,n) |
6a11cf48 | 27 | |
08e4f700 MV |
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 | |
6a11cf48 DS |
35 | |
36 | LIBS-y += arch/$(ARCH)/lib/lib$(ARCH).o | |
37 | LIBS-y += $(CPUDIR)/lib$(CPU).o | |
38 | ifdef SOC | |
39 | LIBS-y += $(CPUDIR)/$(SOC)/lib$(SOC).o | |
40 | endif | |
41 | LIBS-y += board/$(BOARDDIR)/lib$(BOARD).o | |
42 | LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/lib$(VENDOR).o | |
43 | ||
47f7bcae | 44 | LIBS-$(CONFIG_SPL_FRAMEWORK) += common/spl/libspl.o |
efcc6096 DS |
45 | LIBS-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/libcommon.o |
46 | LIBS-$(CONFIG_SPL_LIBDISK_SUPPORT) += disk/libdisk.o | |
47 | LIBS-$(CONFIG_SPL_I2C_SUPPORT) += drivers/i2c/libi2c.o | |
48 | LIBS-$(CONFIG_SPL_GPIO_SUPPORT) += drivers/gpio/libgpio.o | |
49 | LIBS-$(CONFIG_SPL_MMC_SUPPORT) += drivers/mmc/libmmc.o | |
50 | LIBS-$(CONFIG_SPL_SERIAL_SUPPORT) += drivers/serial/libserial.o | |
51 | LIBS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += drivers/mtd/spi/libspi_flash.o | |
52 | LIBS-$(CONFIG_SPL_SPI_SUPPORT) += drivers/spi/libspi.o | |
53 | LIBS-$(CONFIG_SPL_FAT_SUPPORT) += fs/fat/libfat.o | |
54 | LIBS-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/libgeneric.o | |
682b3a81 | 55 | LIBS-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/libpower.o |
12c2f1ee | 56 | LIBS-$(CONFIG_SPL_NAND_SUPPORT) += drivers/mtd/nand/libnand.o |
54cd51bf | 57 | LIBS-$(CONFIG_SPL_ONENAND_SUPPORT) += drivers/mtd/onenand/libonenand.o |
3a0d60c5 | 58 | LIBS-$(CONFIG_SPL_DMA_SUPPORT) += drivers/dma/libdma.o |
18e8ff18 | 59 | LIBS-$(CONFIG_SPL_POST_MEM_SUPPORT) += post/drivers/memory.o |
7ac2fe2d IY |
60 | LIBS-$(CONFIG_SPL_NET_SUPPORT) += net/libnet.o |
61 | LIBS-$(CONFIG_SPL_ETH_SUPPORT) += drivers/net/libnet.o | |
62 | LIBS-$(CONFIG_SPL_ETH_SUPPORT) += drivers/net/phy/libphy.o | |
efcc6096 | 63 | |
8a8f084e | 64 | ifneq ($(CONFIG_AM33XX)$(CONFIG_OMAP34XX)$(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),) |
508a58fa S |
65 | LIBS-y += $(CPUDIR)/omap-common/libomap-common.o |
66 | endif | |
525728b4 | 67 | |
d9e73a87 AM |
68 | ifeq ($(SOC),tegra20) |
69 | LIBS-y += arch/$(ARCH)/cpu/$(SOC)-common/lib$(SOC)-common.o | |
70 | endif | |
71 | ||
660e98f2 AM |
72 | # Add GCC lib |
73 | ifeq ("$(USE_PRIVATE_LIBGCC)", "yes") | |
74 | PLATFORM_LIBGCC = $(SPLTREE)/arch/$(ARCH)/lib/libgcc.o | |
75 | PLATFORM_LIBS := $(filter-out %/libgcc.o, $(filter-out -lgcc, $(PLATFORM_LIBS))) $(PLATFORM_LIBGCC) | |
76 | endif | |
77 | ||
6a11cf48 DS |
78 | START := $(addprefix $(SPLTREE)/,$(START)) |
79 | LIBS := $(addprefix $(SPLTREE)/,$(sort $(LIBS-y))) | |
80 | ||
81 | __START := $(subst $(obj),,$(START)) | |
82 | __LIBS := $(subst $(obj),,$(LIBS)) | |
83 | ||
84 | # Linker Script | |
85 | ifdef CONFIG_SPL_LDSCRIPT | |
86 | # need to strip off double quotes | |
87 | LDSCRIPT := $(addprefix $(SRCTREE)/,$(subst ",,$(CONFIG_SPL_LDSCRIPT))) | |
88 | endif | |
89 | ||
90 | ifeq ($(wildcard $(LDSCRIPT)),) | |
91 | LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-spl.lds | |
92 | endif | |
93 | ifeq ($(wildcard $(LDSCRIPT)),) | |
94 | LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-spl.lds | |
95 | endif | |
ee60197e SG |
96 | ifeq ($(wildcard $(LDSCRIPT)),) |
97 | LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot.lds | |
98 | endif | |
6a11cf48 DS |
99 | ifeq ($(wildcard $(LDSCRIPT)),) |
100 | $(error could not find linker script) | |
101 | endif | |
102 | ||
103 | # Special flags for CPP when processing the linker script. | |
104 | # Pass the version down so we can handle backwards compatibility | |
105 | # on the fly. | |
106 | LDPPFLAGS += \ | |
107 | -include $(TOPDIR)/include/u-boot/u-boot.lds.h \ | |
108 | -include $(OBJTREE)/include/config.h \ | |
7e6403a6 | 109 | -DCPUDIR=$(CPUDIR) \ |
6a11cf48 DS |
110 | $(shell $(LD) --version | \ |
111 | sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p') | |
112 | ||
3decb14a JR |
113 | ifdef CONFIG_OMAP |
114 | $(OBJTREE)/MLO: $(obj)u-boot-spl.bin | |
115 | $(OBJTREE)/tools/mkimage -T omapimage \ | |
116 | -a $(CONFIG_SPL_TEXT_BASE) -d $< $@ | |
117 | endif | |
8a8f084e CN |
118 | ifdef CONFIG_AM33XX |
119 | $(OBJTREE)/MLO: $(obj)u-boot-spl.bin | |
120 | $(OBJTREE)/tools/mkimage -T omapimage \ | |
121 | -a $(CONFIG_SPL_TEXT_BASE) -d $< $@ | |
122 | endif | |
3decb14a | 123 | |
6a11cf48 DS |
124 | ALL-y += $(obj)u-boot-spl.bin |
125 | ||
98a48c5d CK |
126 | ifdef CONFIG_SAMSUNG |
127 | ALL-y += $(obj)$(BOARD)-spl.bin | |
128 | endif | |
129 | ||
6a11cf48 DS |
130 | all: $(ALL-y) |
131 | ||
98a48c5d CK |
132 | ifdef CONFIG_SAMSUNG |
133 | $(obj)$(BOARD)-spl.bin: $(obj)u-boot-spl.bin | |
a2ee7f07 | 134 | $(OBJTREE)/tools/mk$(BOARD)spl \ |
98a48c5d CK |
135 | $(obj)u-boot-spl.bin $(obj)$(BOARD)-spl.bin |
136 | endif | |
137 | ||
6a11cf48 DS |
138 | $(obj)u-boot-spl.bin: $(obj)u-boot-spl |
139 | $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@ | |
140 | ||
141 | GEN_UBOOT = \ | |
be7e41ef | 142 | cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $(__START) \ |
6a11cf48 DS |
143 | --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \ |
144 | -Map u-boot-spl.map -o u-boot-spl | |
145 | ||
146 | $(obj)u-boot-spl: depend $(START) $(LIBS) $(obj)u-boot-spl.lds | |
147 | $(GEN_UBOOT) | |
148 | ||
149 | $(START): depend | |
08e4f700 | 150 | $(MAKE) -C $(SRCTREE)/$(START_PATH) $@ |
6a11cf48 DS |
151 | |
152 | $(LIBS): depend | |
153 | $(MAKE) -C $(SRCTREE)$(dir $(subst $(SPLTREE),,$@)) | |
154 | ||
155 | $(obj)u-boot-spl.lds: $(LDSCRIPT) depend | |
156 | $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - < $< > $@ | |
157 | ||
158 | depend: $(obj).depend | |
159 | .PHONY: depend | |
160 | ||
161 | # defines $(obj).depend target | |
162 | include $(SRCTREE)/rules.mk |