]> Git Repo - u-boot.git/blame - spl/Makefile
mtd/cfi_flash: fix write problems for Numonyx P33/30 32 MBit flashs
[u-boot.git] / spl / Makefile
CommitLineData
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
18CONFIG_SPL_BUILD := y
19export CONFIG_SPL_BUILD
20
21include $(TOPDIR)/config.mk
22
23# We want the final binaries in this directory
24obj := $(OBJTREE)/spl/
25
8b5a0264 26HAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(SRCTREE)/board/$(VENDOR)/common/Makefile), y, n)
6a11cf48 27
08e4f700
MV
28ifdef CONFIG_SPL_START_S_PATH
29START_PATH := $(subst ",,$(CONFIG_SPL_START_S_PATH))
30else
31START_PATH := $(CPUDIR)
32endif
33
34START := $(START_PATH)/start.o
6a11cf48
DS
35
36LIBS-y += arch/$(ARCH)/lib/lib$(ARCH).o
37LIBS-y += $(CPUDIR)/lib$(CPU).o
38ifdef SOC
39LIBS-y += $(CPUDIR)/$(SOC)/lib$(SOC).o
40endif
41LIBS-y += board/$(BOARDDIR)/lib$(BOARD).o
42LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/lib$(VENDOR).o
43
efcc6096
DS
44LIBS-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/libcommon.o
45LIBS-$(CONFIG_SPL_LIBDISK_SUPPORT) += disk/libdisk.o
46LIBS-$(CONFIG_SPL_I2C_SUPPORT) += drivers/i2c/libi2c.o
47LIBS-$(CONFIG_SPL_GPIO_SUPPORT) += drivers/gpio/libgpio.o
48LIBS-$(CONFIG_SPL_MMC_SUPPORT) += drivers/mmc/libmmc.o
49LIBS-$(CONFIG_SPL_SERIAL_SUPPORT) += drivers/serial/libserial.o
50LIBS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += drivers/mtd/spi/libspi_flash.o
51LIBS-$(CONFIG_SPL_SPI_SUPPORT) += drivers/spi/libspi.o
52LIBS-$(CONFIG_SPL_FAT_SUPPORT) += fs/fat/libfat.o
53LIBS-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/libgeneric.o
682b3a81 54LIBS-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/libpower.o
12c2f1ee 55LIBS-$(CONFIG_SPL_NAND_SUPPORT) += drivers/mtd/nand/libnand.o
54cd51bf 56LIBS-$(CONFIG_SPL_ONENAND_SUPPORT) += drivers/mtd/onenand/libonenand.o
3a0d60c5 57LIBS-$(CONFIG_SPL_DMA_SUPPORT) += drivers/dma/libdma.o
18e8ff18 58LIBS-$(CONFIG_SPL_POST_MEM_SUPPORT) += post/drivers/memory.o
efcc6096 59
8a8f084e 60ifneq ($(CONFIG_AM33XX)$(CONFIG_OMAP34XX)$(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),)
508a58fa
S
61LIBS-y += $(CPUDIR)/omap-common/libomap-common.o
62endif
525728b4 63
6a11cf48
DS
64START := $(addprefix $(SPLTREE)/,$(START))
65LIBS := $(addprefix $(SPLTREE)/,$(sort $(LIBS-y)))
66
67__START := $(subst $(obj),,$(START))
68__LIBS := $(subst $(obj),,$(LIBS))
69
70# Linker Script
71ifdef CONFIG_SPL_LDSCRIPT
72# need to strip off double quotes
73LDSCRIPT := $(addprefix $(SRCTREE)/,$(subst ",,$(CONFIG_SPL_LDSCRIPT)))
74endif
75
76ifeq ($(wildcard $(LDSCRIPT)),)
77 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-spl.lds
78endif
79ifeq ($(wildcard $(LDSCRIPT)),)
80 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-spl.lds
81endif
ee60197e
SG
82ifeq ($(wildcard $(LDSCRIPT)),)
83 LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot.lds
84endif
6a11cf48
DS
85ifeq ($(wildcard $(LDSCRIPT)),)
86$(error could not find linker script)
87endif
88
89# Special flags for CPP when processing the linker script.
90# Pass the version down so we can handle backwards compatibility
91# on the fly.
92LDPPFLAGS += \
93 -include $(TOPDIR)/include/u-boot/u-boot.lds.h \
94 -include $(OBJTREE)/include/config.h \
7e6403a6 95 -DCPUDIR=$(CPUDIR) \
6a11cf48
DS
96 $(shell $(LD) --version | \
97 sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
98
3decb14a
JR
99ifdef CONFIG_OMAP
100$(OBJTREE)/MLO: $(obj)u-boot-spl.bin
101 $(OBJTREE)/tools/mkimage -T omapimage \
102 -a $(CONFIG_SPL_TEXT_BASE) -d $< $@
103endif
8a8f084e
CN
104ifdef CONFIG_AM33XX
105$(OBJTREE)/MLO: $(obj)u-boot-spl.bin
106 $(OBJTREE)/tools/mkimage -T omapimage \
107 -a $(CONFIG_SPL_TEXT_BASE) -d $< $@
108endif
3decb14a 109
6a11cf48
DS
110ALL-y += $(obj)u-boot-spl.bin
111
98a48c5d
CK
112ifdef CONFIG_SAMSUNG
113ALL-y += $(obj)$(BOARD)-spl.bin
114endif
115
6a11cf48
DS
116all: $(ALL-y)
117
98a48c5d
CK
118ifdef CONFIG_SAMSUNG
119$(obj)$(BOARD)-spl.bin: $(obj)u-boot-spl.bin
a2ee7f07 120 $(OBJTREE)/tools/mk$(BOARD)spl \
98a48c5d
CK
121 $(obj)u-boot-spl.bin $(obj)$(BOARD)-spl.bin
122endif
123
6a11cf48
DS
124$(obj)u-boot-spl.bin: $(obj)u-boot-spl
125 $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@
126
127GEN_UBOOT = \
128 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) | \
129 sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
130 cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $$UNDEF_SYM $(__START) \
131 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
132 -Map u-boot-spl.map -o u-boot-spl
133
134$(obj)u-boot-spl: depend $(START) $(LIBS) $(obj)u-boot-spl.lds
135 $(GEN_UBOOT)
136
137$(START): depend
08e4f700 138 $(MAKE) -C $(SRCTREE)/$(START_PATH) $@
6a11cf48
DS
139
140$(LIBS): depend
141 $(MAKE) -C $(SRCTREE)$(dir $(subst $(SPLTREE),,$@))
142
143$(obj)u-boot-spl.lds: $(LDSCRIPT) depend
144 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - < $< > $@
145
146depend: $(obj).depend
147.PHONY: depend
148
149# defines $(obj).depend target
150include $(SRCTREE)/rules.mk
This page took 0.065233 seconds and 4 git commands to generate.