xref: /openbmc/u-boot/Makefile (revision d51dfff7af2ad30c54a4fb99539f3fa4275a1573)
17ebf7443Swdenk#
2fd428c05SDetlev Zundel# (C) Copyright 2000-2010
37ebf7443Swdenk# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
47ebf7443Swdenk#
57ebf7443Swdenk# See file CREDITS for list of people who contributed to this
67ebf7443Swdenk# project.
77ebf7443Swdenk#
87ebf7443Swdenk# This program is free software; you can redistribute it and/or
97ebf7443Swdenk# modify it under the terms of the GNU General Public License as
1045a212c4SWolfgang Denk# published by the Free Software Foundatio; either version 2 of
117ebf7443Swdenk# the License, or (at your option) any later version.
127ebf7443Swdenk#
137ebf7443Swdenk# This program is distributed in the hope that it will be useful,
147ebf7443Swdenk# but WITHOUT ANY WARRANTY; without even the implied warranty of
157ebf7443Swdenk# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
167ebf7443Swdenk# GNU General Public License for more details.
177ebf7443Swdenk#
187ebf7443Swdenk# You should have received a copy of the GNU General Public License
197ebf7443Swdenk# along with this program; if not, write to the Free Software
207ebf7443Swdenk# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
217ebf7443Swdenk# MA 02111-1307 USA
227ebf7443Swdenk#
237ebf7443Swdenk
2442d44f63SWolfgang DenkVERSION = 2011
257a82c208SWolfgang DenkPATCHLEVEL = 06
268b9e4787SWolfgang DenkSUBLEVEL =
2779cfe422SWolfgang DenkEXTRAVERSION = -rc3
288b9e4787SWolfgang Denkifneq "$(SUBLEVEL)" ""
29881a87ecSWolfgang DenkU_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
308b9e4787SWolfgang Denkelse
318b9e4787SWolfgang DenkU_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION)
328b9e4787SWolfgang Denkendif
33561858eeSPeter TyserTIMESTAMP_FILE = $(obj)include/timestamp_autogenerated.h
34f9328639SMarian BalakowiczVERSION_FILE = $(obj)include/version_autogenerated.h
35881a87ecSWolfgang Denk
367ebf7443SwdenkHOSTARCH := $(shell uname -m | \
37fea25720SGraeme Russ	sed -e s/i.86/x86/ \
387ebf7443Swdenk	    -e s/sun4u/sparc64/ \
397ebf7443Swdenk	    -e s/arm.*/arm/ \
407ebf7443Swdenk	    -e s/sa110/arm/ \
41d0179083SKumar Gala	    -e s/ppc64/powerpc/ \
42d0179083SKumar Gala	    -e s/ppc/powerpc/ \
438d1f6355SNobuhiro Iwamatsu	    -e s/macppc/powerpc/\
448d1f6355SNobuhiro Iwamatsu	    -e s/sh.*/sh/)
457ebf7443Swdenk
46f9d77ed3SWolfgang DenkHOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
477ebf7443Swdenk	    sed -e 's/\(cygwin\).*/cygwin/')
487ebf7443Swdenk
49cf7a7b99SPeter Tyser# Set shell to bash if possible, otherwise fall back to sh
50cf7a7b99SPeter TyserSHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
51cf7a7b99SPeter Tyser	else if [ -x /bin/bash ]; then echo /bin/bash; \
52cf7a7b99SPeter Tyser	else echo sh; fi; fi)
53cf7a7b99SPeter Tyser
54cf7a7b99SPeter Tyserexport	HOSTARCH HOSTOS SHELL
557ebf7443Swdenk
567ebf7443Swdenk# Deal with colliding definitions from tcsh etc.
577ebf7443SwdenkVENDOR=
587ebf7443Swdenk
597ebf7443Swdenk#########################################################################
60ae6d1056SWolfgang Denk# Allow for silent builds
61ae6d1056SWolfgang Denkifeq (,$(findstring s,$(MAKEFLAGS)))
62ae6d1056SWolfgang DenkXECHO = echo
63ae6d1056SWolfgang Denkelse
64ae6d1056SWolfgang DenkXECHO = :
65ae6d1056SWolfgang Denkendif
66ae6d1056SWolfgang Denk
67ae6d1056SWolfgang Denk#########################################################################
68f9328639SMarian Balakowicz#
69f9328639SMarian Balakowicz# U-boot build supports producing a object files to the separate external
70f9328639SMarian Balakowicz# directory. Two use cases are supported:
71f9328639SMarian Balakowicz#
72f9328639SMarian Balakowicz# 1) Add O= to the make command line
73f9328639SMarian Balakowicz# 'make O=/tmp/build all'
74f9328639SMarian Balakowicz#
75f9328639SMarian Balakowicz# 2) Set environement variable BUILD_DIR to point to the desired location
76f9328639SMarian Balakowicz# 'export BUILD_DIR=/tmp/build'
77f9328639SMarian Balakowicz# 'make'
78f9328639SMarian Balakowicz#
79f9328639SMarian Balakowicz# The second approach can also be used with a MAKEALL script
80f9328639SMarian Balakowicz# 'export BUILD_DIR=/tmp/build'
81f9328639SMarian Balakowicz# './MAKEALL'
82f9328639SMarian Balakowicz#
83f9328639SMarian Balakowicz# Command line 'O=' setting overrides BUILD_DIR environent variable.
84f9328639SMarian Balakowicz#
85f9328639SMarian Balakowicz# When none of the above methods is used the local build is performed and
86f9328639SMarian Balakowicz# the object files are placed in the source directory.
87f9328639SMarian Balakowicz#
887ebf7443Swdenk
89f9328639SMarian Balakowiczifdef O
90f9328639SMarian Balakowiczifeq ("$(origin O)", "command line")
91f9328639SMarian BalakowiczBUILD_DIR := $(O)
92f9328639SMarian Balakowiczendif
93f9328639SMarian Balakowiczendif
947ebf7443Swdenk
95f9328639SMarian Balakowiczifneq ($(BUILD_DIR),)
96f9328639SMarian Balakowiczsaved-output := $(BUILD_DIR)
974f0645ebSMarian Balakowicz
984f0645ebSMarian Balakowicz# Attempt to create a output directory.
994f0645ebSMarian Balakowicz$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
1004f0645ebSMarian Balakowicz
1014f0645ebSMarian Balakowicz# Verify if it was successful.
102f9328639SMarian BalakowiczBUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
103f9328639SMarian Balakowicz$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
104f9328639SMarian Balakowiczendif # ifneq ($(BUILD_DIR),)
105f9328639SMarian Balakowicz
106f9328639SMarian BalakowiczOBJTREE		:= $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
107f9328639SMarian BalakowiczSRCTREE		:= $(CURDIR)
108f9328639SMarian BalakowiczTOPDIR		:= $(SRCTREE)
109f9328639SMarian BalakowiczLNDIR		:= $(OBJTREE)
110f9328639SMarian Balakowiczexport	TOPDIR SRCTREE OBJTREE
111f9328639SMarian Balakowicz
112f9328639SMarian BalakowiczMKCONFIG	:= $(SRCTREE)/mkconfig
113f9328639SMarian Balakowiczexport MKCONFIG
114f9328639SMarian Balakowicz
115f9328639SMarian Balakowiczifneq ($(OBJTREE),$(SRCTREE))
116f9328639SMarian BalakowiczREMOTE_BUILD	:= 1
117f9328639SMarian Balakowiczexport REMOTE_BUILD
118f9328639SMarian Balakowiczendif
119f9328639SMarian Balakowicz
120f9328639SMarian Balakowicz# $(obj) and (src) are defined in config.mk but here in main Makefile
121f9328639SMarian Balakowicz# we also need them before config.mk is included which is the case for
122f9328639SMarian Balakowicz# some targets like unconfig, clean, clobber, distclean, etc.
123f9328639SMarian Balakowiczifneq ($(OBJTREE),$(SRCTREE))
124f9328639SMarian Balakowiczobj := $(OBJTREE)/
125f9328639SMarian Balakowiczsrc := $(SRCTREE)/
126f9328639SMarian Balakowiczelse
127f9328639SMarian Balakowiczobj :=
128f9328639SMarian Balakowiczsrc :=
129f9328639SMarian Balakowiczendif
130f9328639SMarian Balakowiczexport obj src
131f9328639SMarian Balakowicz
1325013c09fSWolfgang Denk# Make sure CDPATH settings don't interfere
1335013c09fSWolfgang Denkunexport CDPATH
1345013c09fSWolfgang Denk
135f9328639SMarian Balakowicz#########################################################################
136f9328639SMarian Balakowicz
1376d1ce387SMike Frysinger# The "tools" are needed early, so put this first
1386d1ce387SMike Frysinger# Don't include stuff already done in $(LIBS)
1396d1ce387SMike FrysingerSUBDIRS	= tools \
1401bc15386SPeter Tyser	  examples/standalone \
141d4abc757SPeter Tyser	  examples/api
1426d1ce387SMike Frysinger
1436d1ce387SMike Frysinger.PHONY : $(SUBDIRS)
1446d1ce387SMike Frysinger
145ae6d1056SWolfgang Denkifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk))
146f9328639SMarian Balakowicz
1472632c008SMike Frysinger# Include autoconf.mk before config.mk so that the config options are available
1482632c008SMike Frysinger# to all top level build files.  We need the dummy all: target to prevent the
1492632c008SMike Frysinger# dependency target in autoconf.mk.dep from being the default.
1502632c008SMike Frysingerall:
1512632c008SMike Frysingersinclude $(obj)include/autoconf.mk.dep
1522632c008SMike Frysingersinclude $(obj)include/autoconf.mk
1532632c008SMike Frysinger
1547ebf7443Swdenk# load ARCH, BOARD, and CPU configuration
155ae6d1056SWolfgang Denkinclude $(obj)include/config.mk
1561d9f4105Swdenkexport	ARCH CPU BOARD VENDOR SOC
157f9328639SMarian Balakowicz
1581ea6bcd8SMike Frysinger# set default to nothing for native builds
159a5284efdSWolfgang Denkifeq ($(HOSTARCH),$(ARCH))
1601ea6bcd8SMike FrysingerCROSS_COMPILE ?=
1617ebf7443Swdenkendif
1627ebf7443Swdenk
16392b197f0SWolfgang Denk# load other configuration
16492b197f0SWolfgang Denkinclude $(TOPDIR)/config.mk
16592b197f0SWolfgang Denk
166*d51dfff7SIlya Yanok# If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use
167*d51dfff7SIlya Yanok# that (or fail if absent).  Otherwise, search for a linker script in a
168*d51dfff7SIlya Yanok# standard location.
169*d51dfff7SIlya Yanok
170*d51dfff7SIlya Yanokifndef LDSCRIPT
171*d51dfff7SIlya Yanok	#LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug
172*d51dfff7SIlya Yanok	ifdef CONFIG_SYS_LDSCRIPT
173*d51dfff7SIlya Yanok		# need to strip off double quotes
174*d51dfff7SIlya Yanok		LDSCRIPT := $(subst ",,$(CONFIG_SYS_LDSCRIPT))
175*d51dfff7SIlya Yanok	endif
176*d51dfff7SIlya Yanokendif
177*d51dfff7SIlya Yanok
178*d51dfff7SIlya Yanokifndef LDSCRIPT
179*d51dfff7SIlya Yanok	ifeq ($(CONFIG_NAND_U_BOOT),y)
180*d51dfff7SIlya Yanok		LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds
181*d51dfff7SIlya Yanok		ifeq ($(wildcard $(LDSCRIPT)),)
182*d51dfff7SIlya Yanok			LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds
183*d51dfff7SIlya Yanok		endif
184*d51dfff7SIlya Yanok	endif
185*d51dfff7SIlya Yanok	ifeq ($(wildcard $(LDSCRIPT)),)
186*d51dfff7SIlya Yanok		LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
187*d51dfff7SIlya Yanok	endif
188*d51dfff7SIlya Yanok	ifeq ($(wildcard $(LDSCRIPT)),)
189*d51dfff7SIlya Yanok		LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds
190*d51dfff7SIlya Yanok	endif
191*d51dfff7SIlya Yanok	ifeq ($(wildcard $(LDSCRIPT)),)
192*d51dfff7SIlya Yanok$(error could not find linker script)
193*d51dfff7SIlya Yanok	endif
194*d51dfff7SIlya Yanokendif
195*d51dfff7SIlya Yanok
1967ebf7443Swdenk#########################################################################
1977ebf7443Swdenk# U-Boot objects....order is important (i.e. start must be first)
1987ebf7443Swdenk
19903b7004dSPeter TyserOBJS  = $(CPUDIR)/start.o
200fea25720SGraeme Russifeq ($(CPU),x86)
20103b7004dSPeter TyserOBJS += $(CPUDIR)/start16.o
20203b7004dSPeter TyserOBJS += $(CPUDIR)/resetvec.o
2032262cfeeSwdenkendif
2047ebf7443Swdenkifeq ($(CPU),ppc4xx)
20503b7004dSPeter TyserOBJS += $(CPUDIR)/resetvec.o
2067ebf7443Swdenkendif
20742d1f039Swdenkifeq ($(CPU),mpc85xx)
20803b7004dSPeter TyserOBJS += $(CPUDIR)/resetvec.o
20942d1f039Swdenkendif
2107ebf7443Swdenk
211f9328639SMarian BalakowiczOBJS := $(addprefix $(obj),$(OBJS))
212f9328639SMarian Balakowicz
2136d8962e8SSebastien CarlierLIBS  = lib/libgeneric.o
2146d8962e8SSebastien CarlierLIBS += lib/lzma/liblzma.o
2156d8962e8SSebastien CarlierLIBS += lib/lzo/liblzo.o
216e89516f0SMike FrysingerLIBS += lib/zlib/libz.o
2177608d75fSKim PhillipsLIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \
2186d8962e8SSebastien Carlier	"board/$(VENDOR)/common/lib$(VENDOR).o"; fi)
2196d8962e8SSebastien CarlierLIBS += $(CPUDIR)/lib$(CPU).o
2201d9f4105Swdenkifdef SOC
2216d8962e8SSebastien CarlierLIBS += $(CPUDIR)/$(SOC)/lib$(SOC).o
2221d9f4105Swdenkendif
223323bfa8fSStefan Roeseifeq ($(CPU),ixp)
2246d8962e8SSebastien CarlierLIBS += arch/arm/cpu/ixp/npe/libnpe.o
225323bfa8fSStefan Roeseendif
2266d8962e8SSebastien CarlierLIBS += arch/$(ARCH)/lib/lib$(ARCH).o
2276d8962e8SSebastien CarlierLIBS += fs/cramfs/libcramfs.o fs/fat/libfat.o fs/fdos/libfdos.o fs/jffs2/libjffs2.o \
2286d8962e8SSebastien Carlier	fs/reiserfs/libreiserfs.o fs/ext2/libext2fs.o fs/yaffs2/libyaffs2.o \
2296d8962e8SSebastien Carlier	fs/ubifs/libubifs.o
2306d8962e8SSebastien CarlierLIBS += net/libnet.o
2316d8962e8SSebastien CarlierLIBS += disk/libdisk.o
2326d8962e8SSebastien CarlierLIBS += drivers/bios_emulator/libatibiosemu.o
2336d8962e8SSebastien CarlierLIBS += drivers/block/libblock.o
2346d8962e8SSebastien CarlierLIBS += drivers/dma/libdma.o
2356d8962e8SSebastien CarlierLIBS += drivers/fpga/libfpga.o
2366d8962e8SSebastien CarlierLIBS += drivers/gpio/libgpio.o
2376d8962e8SSebastien CarlierLIBS += drivers/hwmon/libhwmon.o
2386d8962e8SSebastien CarlierLIBS += drivers/i2c/libi2c.o
2396d8962e8SSebastien CarlierLIBS += drivers/input/libinput.o
2406d8962e8SSebastien CarlierLIBS += drivers/misc/libmisc.o
2416d8962e8SSebastien CarlierLIBS += drivers/mmc/libmmc.o
2426d8962e8SSebastien CarlierLIBS += drivers/mtd/libmtd.o
2436d8962e8SSebastien CarlierLIBS += drivers/mtd/nand/libnand.o
2446d8962e8SSebastien CarlierLIBS += drivers/mtd/onenand/libonenand.o
2456d8962e8SSebastien CarlierLIBS += drivers/mtd/ubi/libubi.o
2466d8962e8SSebastien CarlierLIBS += drivers/mtd/spi/libspi_flash.o
2476d8962e8SSebastien CarlierLIBS += drivers/net/libnet.o
2486d8962e8SSebastien CarlierLIBS += drivers/net/phy/libphy.o
2496d8962e8SSebastien CarlierLIBS += drivers/pci/libpci.o
2506d8962e8SSebastien CarlierLIBS += drivers/pcmcia/libpcmcia.o
2516d8962e8SSebastien CarlierLIBS += drivers/power/libpower.o
2526d8962e8SSebastien CarlierLIBS += drivers/spi/libspi.o
2537737d5c6SDave Liuifeq ($(CPU),mpc83xx)
2546d8962e8SSebastien CarlierLIBS += drivers/qe/libqe.o
2556d8962e8SSebastien CarlierLIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
2567737d5c6SDave Liuendif
257da9d4610SAndy Flemingifeq ($(CPU),mpc85xx)
2586d8962e8SSebastien CarlierLIBS += drivers/qe/libqe.o
2596d8962e8SSebastien CarlierLIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
2606d8962e8SSebastien CarlierLIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
26158e5e9afSKumar Galaendif
26258e5e9afSKumar Galaifeq ($(CPU),mpc86xx)
2636d8962e8SSebastien CarlierLIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
2646d8962e8SSebastien CarlierLIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
265da9d4610SAndy Flemingendif
2666d8962e8SSebastien CarlierLIBS += drivers/rtc/librtc.o
2676d8962e8SSebastien CarlierLIBS += drivers/serial/libserial.o
2686d8962e8SSebastien CarlierLIBS += drivers/twserial/libtws.o
26989d48367SSimon GlassLIBS += drivers/usb/eth/libusb_eth.a
2706d8962e8SSebastien CarlierLIBS += drivers/usb/gadget/libusb_gadget.o
2716d8962e8SSebastien CarlierLIBS += drivers/usb/host/libusb_host.o
2726d8962e8SSebastien CarlierLIBS += drivers/usb/musb/libusb_musb.o
2736d8962e8SSebastien CarlierLIBS += drivers/usb/phy/libusb_phy.o
2746d8962e8SSebastien CarlierLIBS += drivers/video/libvideo.o
2756d8962e8SSebastien CarlierLIBS += drivers/watchdog/libwatchdog.o
2766d8962e8SSebastien CarlierLIBS += common/libcommon.o
2776d8962e8SSebastien CarlierLIBS += lib/libfdt/libfdt.o
2786d8962e8SSebastien CarlierLIBS += api/libapi.o
2796d8962e8SSebastien CarlierLIBS += post/libpost.o
280f9328639SMarian Balakowicz
281d34efc76SSteve Sakomanifeq ($(SOC),omap3)
2826d8962e8SSebastien CarlierLIBS += $(CPUDIR)/omap-common/libomap-common.o
283d34efc76SSteve Sakomanendif
284d34efc76SSteve Sakomanifeq ($(SOC),omap4)
2856d8962e8SSebastien CarlierLIBS += $(CPUDIR)/omap-common/libomap-common.o
286d34efc76SSteve Sakomanendif
287d34efc76SSteve Sakoman
288852bd07cSMinkyu Kangifeq ($(SOC),s5pc1xx)
2896d8962e8SSebastien CarlierLIBS += $(CPUDIR)/s5p-common/libs5p-common.o
290852bd07cSMinkyu Kangendif
291852bd07cSMinkyu Kangifeq ($(SOC),s5pc2xx)
2926d8962e8SSebastien CarlierLIBS += $(CPUDIR)/s5p-common/libs5p-common.o
293852bd07cSMinkyu Kangendif
294852bd07cSMinkyu Kang
295566d49a3SWolfgang DenkLIBS := $(addprefix $(obj),$(sort $(LIBS)))
296561858eeSPeter Tyser.PHONY : $(LIBS) $(TIMESTAMP_FILE) $(VERSION_FILE)
297a8c7c708Swdenk
2986d8962e8SSebastien CarlierLIBBOARD = board/$(BOARDDIR)/lib$(BOARD).o
299de109d90SWolfgang DenkLIBBOARD := $(addprefix $(obj),$(LIBBOARD))
300de109d90SWolfgang Denk
3014f7cb08eSwdenk# Add GCC lib
30252b1bf2cSWolfgang Denkifdef USE_PRIVATE_LIBGCC
30352b1bf2cSWolfgang Denkifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
304635d1b3eSMatthias WeisserPLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/libgcc.o
30552b1bf2cSWolfgang Denkelse
30652b1bf2cSWolfgang DenkPLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc
30752b1bf2cSWolfgang Denkendif
30852b1bf2cSWolfgang Denkelse
30952b1bf2cSWolfgang DenkPLATFORM_LIBGCC = -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
31052b1bf2cSWolfgang Denkendif
31152b1bf2cSWolfgang DenkPLATFORM_LIBS += $(PLATFORM_LIBGCC)
31252b1bf2cSWolfgang Denkexport PLATFORM_LIBS
3133d3befa7Swdenk
3146ac9f479SMike Frysinger# Special flags for CPP when processing the linker script.
3156ac9f479SMike Frysinger# Pass the version down so we can handle backwards compatibility
3166ac9f479SMike Frysinger# on the fly.
3176ac9f479SMike FrysingerLDPPFLAGS += \
3186ac9f479SMike Frysinger	-include $(TOPDIR)/include/u-boot/u-boot.lds.h \
3196ac9f479SMike Frysinger	$(shell $(LD) --version | \
3206ac9f479SMike Frysinger	  sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
3216ac9f479SMike Frysinger
322f9328639SMarian Balakowicz__OBJS := $(subst $(obj),,$(OBJS))
323de109d90SWolfgang Denk__LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD))
324f9328639SMarian Balakowicz
3257ebf7443Swdenk#########################################################################
326bdccc4feSwdenk#########################################################################
3277ebf7443Swdenk
328f3a14d37SMike Frysingerifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
329f3a14d37SMike FrysingerBOARD_SIZE_CHECK = \
330f3a14d37SMike Frysinger	@actual=`wc -c $@ | awk '{print $$1}'`; \
331f3a14d37SMike Frysinger	limit=$(CONFIG_BOARD_SIZE_LIMIT); \
332f3a14d37SMike Frysinger	if test $$actual -gt $$limit; then \
333f3a14d37SMike Frysinger		echo "$@ exceeds file size limit:"; \
334f3a14d37SMike Frysinger		echo "  limit:  $$limit bytes"; \
335f3a14d37SMike Frysinger		echo "  actual: $$actual bytes"; \
336f3a14d37SMike Frysinger		echo "  excess: $$((actual - limit)) bytes"; \
337f3a14d37SMike Frysinger		exit 1; \
338f3a14d37SMike Frysinger	fi
339f3a14d37SMike Frysingerelse
340f3a14d37SMike FrysingerBOARD_SIZE_CHECK =
341f3a14d37SMike Frysingerendif
342f3a14d37SMike Frysinger
3433e88337bSMike Frysinger# Always append ALL so that arch config.mk's can add custom ones
344e935a374SHaiying WangALL += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map
345e935a374SHaiying Wang
346e935a374SHaiying Wangifeq ($(CONFIG_NAND_U_BOOT),y)
347e935a374SHaiying WangALL += $(obj)u-boot-nand.bin
348e935a374SHaiying Wangendif
349e935a374SHaiying Wang
350e935a374SHaiying Wangifeq ($(CONFIG_ONENAND_U_BOOT),y)
351e935a374SHaiying WangALL += $(obj)u-boot-onenand.bin
352e935a374SHaiying WangONENAND_BIN ?= $(obj)onenand_ipl/onenand-ipl-2k.bin
353e935a374SHaiying Wangendif
3547ebf7443Swdenk
3550d3c62e4SChander Kashyapifeq ($(CONFIG_MMC_U_BOOT),y)
3560d3c62e4SChander KashyapALL += $(obj)mmc_spl/u-boot-mmc-spl.bin
3570d3c62e4SChander Kashyapendif
3580d3c62e4SChander Kashyap
359bdccc4feSwdenkall:		$(ALL)
3607ebf7443Swdenk
361f9328639SMarian Balakowicz$(obj)u-boot.hex:	$(obj)u-boot
3626310eb9dSwdenk		$(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
3636310eb9dSwdenk
364f9328639SMarian Balakowicz$(obj)u-boot.srec:	$(obj)u-boot
3650817d688SRicardo Ribalda Delgado		$(OBJCOPY) -O srec $< $@
3667ebf7443Swdenk
367f9328639SMarian Balakowicz$(obj)u-boot.bin:	$(obj)u-boot
3687ebf7443Swdenk		$(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
369f3a14d37SMike Frysinger		$(BOARD_SIZE_CHECK)
3707ebf7443Swdenk
37194a91e24SMike Frysinger$(obj)u-boot.ldr:	$(obj)u-boot
37276d82187SMike Frysinger		$(CREATE_LDR_ENV)
37368e56324SMike Frysinger		$(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
374f3a14d37SMike Frysinger		$(BOARD_SIZE_CHECK)
37594a91e24SMike Frysinger
37694a91e24SMike Frysinger$(obj)u-boot.ldr.hex:	$(obj)u-boot.ldr
37794a91e24SMike Frysinger		$(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary
37894a91e24SMike Frysinger
37994a91e24SMike Frysinger$(obj)u-boot.ldr.srec:	$(obj)u-boot.ldr
38094a91e24SMike Frysinger		$(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary
38194a91e24SMike Frysinger
382f9328639SMarian Balakowicz$(obj)u-boot.img:	$(obj)u-boot.bin
383a2a0a717SWolfgang Denk		$(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
38414d0a02aSWolfgang Denk		-a $(CONFIG_SYS_TEXT_BASE) -e 0 \
385881a87ecSWolfgang Denk		-n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
386bdccc4feSwdenk			sed -e 's/"[	 ]*$$/ for $(BOARD) board"/') \
387bdccc4feSwdenk		-d $< $@
388bdccc4feSwdenk
3898edcde5eSStefano Babic$(obj)u-boot.imx:       $(obj)u-boot.bin
39045d7d72bSStefano Babic		$(obj)tools/mkimage -n  $(CONFIG_IMX_CONFIG) -T imximage \
39114d0a02aSWolfgang Denk		-e $(CONFIG_SYS_TEXT_BASE) -d $< $@
3928edcde5eSStefano Babic
393aa0c7a86SPrafulla Wadaskar$(obj)u-boot.kwb:       $(obj)u-boot.bin
39431d80c77SPrafulla Wadaskar		$(obj)tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \
3952ea88b06SEric Cooper		-a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
396aa0c7a86SPrafulla Wadaskar
397566a494fSHeiko Schocher$(obj)u-boot.sha1:	$(obj)u-boot.bin
39801159530SHeiko Schocher		$(obj)tools/ubsha1 $(obj)u-boot.bin
399566a494fSHeiko Schocher
400f9328639SMarian Balakowicz$(obj)u-boot.dis:	$(obj)u-boot
4017ebf7443Swdenk		$(OBJDUMP) -d $< > $@
4027ebf7443Swdenk
403ecb1dc89SMike FrysingerGEN_UBOOT = \
404de109d90SWolfgang Denk		UNDEF_SYM=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \
405de109d90SWolfgang Denk		sed  -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
4068aba9dceSNobuhiro Iwamatsu		cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $$UNDEF_SYM $(__OBJS) \
407f9328639SMarian Balakowicz			--start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
408b2184c31Swdenk			-Map u-boot.map -o u-boot
40916a354f9SWolfgang Denk$(obj)u-boot:	depend \
41016a354f9SWolfgang Denk		$(SUBDIRS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds
411ecb1dc89SMike Frysinger		$(GEN_UBOOT)
412ecb1dc89SMike Frysingerifeq ($(CONFIG_KALLSYMS),y)
4131aada9cdSWolfgang Denk		smap=`$(call SYSTEM_MAP,u-boot) | \
4141aada9cdSWolfgang Denk			awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
4151aada9cdSWolfgang Denk		$(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \
4161aada9cdSWolfgang Denk			-c common/system_map.c -o $(obj)common/system_map.o
417ecb1dc89SMike Frysinger		$(GEN_UBOOT) $(obj)common/system_map.o
418ecb1dc89SMike Frysingerendif
4197ebf7443Swdenk
420d0d6144eSPeter Tyser$(OBJS):	depend
42103b7004dSPeter Tyser		$(MAKE) -C $(CPUDIR) $(if $(REMOTE_BUILD),$@,$(notdir $@))
422f9328639SMarian Balakowicz
423d0d6144eSPeter Tyser$(LIBS):	depend $(SUBDIRS)
424f9328639SMarian Balakowicz		$(MAKE) -C $(dir $(subst $(obj),,$@))
425a8c7c708Swdenk
426d0d6144eSPeter Tyser$(LIBBOARD):	depend $(LIBS)
427de109d90SWolfgang Denk		$(MAKE) -C $(dir $(subst $(obj),,$@))
428de109d90SWolfgang Denk
429d0d6144eSPeter Tyser$(SUBDIRS):	depend
430b028f715Swdenk		$(MAKE) -C $@ all
4317ebf7443Swdenk
432d0d6144eSPeter Tyser$(LDSCRIPT):	depend
433f65c9812SMike Frysinger		$(MAKE) -C $(dir $@) $(notdir $@)
434f65c9812SMike Frysinger
4351aada9cdSWolfgang Denk$(obj)u-boot.lds: $(LDSCRIPT)
4361aada9cdSWolfgang Denk		$(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
4371aada9cdSWolfgang Denk
438e935a374SHaiying Wangnand_spl:	$(TIMESTAMP_FILE) $(VERSION_FILE) depend
4398318fbf8SMarian Balakowicz		$(MAKE) -C nand_spl/board/$(BOARDDIR) all
440887e2ec9SStefan Roese
441e935a374SHaiying Wang$(obj)u-boot-nand.bin:	nand_spl $(obj)u-boot.bin
4428318fbf8SMarian Balakowicz		cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin
443887e2ec9SStefan Roese
444e935a374SHaiying Wangonenand_ipl:	$(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk
445f2302d44SStefan Roese		$(MAKE) -C onenand_ipl/board/$(BOARDDIR) all
446751b9b51SKyungmin Park
447e935a374SHaiying Wang$(obj)u-boot-onenand.bin:	onenand_ipl $(obj)u-boot.bin
448ca6189dbSKyungmin Park		cat $(ONENAND_BIN) $(obj)u-boot.bin > $(obj)u-boot-onenand.bin
449751b9b51SKyungmin Park
4500d3c62e4SChander Kashyapmmc_spl:	$(TIMESTAMP_FILE) $(VERSION_FILE) depend
4510d3c62e4SChander Kashyap		$(MAKE) -C mmc_spl/board/$(BOARDDIR) all
4520d3c62e4SChander Kashyap
4530d3c62e4SChander Kashyap$(obj)mmc_spl/u-boot-mmc-spl.bin:	mmc_spl
4540d3c62e4SChander Kashyap
455ae6d1056SWolfgang Denk$(VERSION_FILE):
456976b38c0SWolfgang Denk		@( localvers='$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ; \
457976b38c0SWolfgang Denk		   printf '#define PLAIN_VERSION "%s%s"\n' \
458976b38c0SWolfgang Denk			"$(U_BOOT_VERSION)" "$${localvers}" ; \
459976b38c0SWolfgang Denk		   printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \
460976b38c0SWolfgang Denk			"$(U_BOOT_VERSION)" "$${localvers}" ; \
461976b38c0SWolfgang Denk		) > $@.tmp
46289ffa8dbSAlexander Holler		@( printf '#define CC_VERSION_STRING "%s"\n' \
46389ffa8dbSAlexander Holler		 '$(shell $(CC) --version | head -n 1)' )>>  $@.tmp
46489ffa8dbSAlexander Holler		@( printf '#define LD_VERSION_STRING "%s"\n' \
46589ffa8dbSAlexander Holler		 '$(shell $(LD) -v | head -n 1)' )>>  $@.tmp
4660ec7a061SMike Frysinger		@cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
467881a87ecSWolfgang Denk
468561858eeSPeter Tyser$(TIMESTAMP_FILE):
469d6b93714SIlya Yanok		@LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@
470d6b93714SIlya Yanok		@LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@
471561858eeSPeter Tyser
472f9328639SMarian Balakowiczupdater:
4730358df42SMike Frysinger		$(MAKE) -C tools/updater all
4748f713fdfSdzu
4752a998793SDaniel Hobi# Explicitly make _depend in subdirs containing multiple targets to prevent
4762a998793SDaniel Hobi# parallel sub-makes creating .depend files simultaneously.
47716a354f9SWolfgang Denkdepend dep:	$(TIMESTAMP_FILE) $(VERSION_FILE) \
47816a354f9SWolfgang Denk		$(obj)include/autoconf.mk \
47916a354f9SWolfgang Denk		$(obj)include/generated/generic-asm-offsets.h
48003b7004dSPeter Tyser		for dir in $(SUBDIRS) $(CPUDIR) $(dir $(LDSCRIPT)) ; do \
4812a998793SDaniel Hobi			$(MAKE) -C $$dir _depend ; done
4827ebf7443Swdenk
483e5e4e705SLi YangTAG_SUBDIRS = $(SUBDIRS)
484e5e4e705SLi YangTAG_SUBDIRS += $(dir $(__LIBS))
485a340c325SJean-Christophe PLAGNIOL-VILLARDTAG_SUBDIRS += include
486a340c325SJean-Christophe PLAGNIOL-VILLARD
487f9328639SMarian Balakowicztags ctags:
488e5e4e705SLi Yang		ctags -w -o $(obj)ctags `find $(TAG_SUBDIRS) \
489e5e4e705SLi Yang						-name '*.[chS]' -print`
4907ebf7443Swdenk
4917ebf7443Swdenketags:
492e5e4e705SLi Yang		etags -a -o $(obj)etags `find $(TAG_SUBDIRS) \
493e5e4e705SLi Yang						-name '*.[chS]' -print`
494ffda586fSLi Yangcscope:
495e5e4e705SLi Yang		find $(TAG_SUBDIRS) -name '*.[chS]' -print > cscope.files
496ffda586fSLi Yang		cscope -b -q -k
4977ebf7443Swdenk
498ecb1dc89SMike FrysingerSYSTEM_MAP = \
499ecb1dc89SMike Frysinger		$(NM) $1 | \
5007ebf7443Swdenk		grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
501ecb1dc89SMike Frysinger		LC_ALL=C sort
502ecb1dc89SMike Frysinger$(obj)System.map:	$(obj)u-boot
503ecb1dc89SMike Frysinger		@$(call SYSTEM_MAP,$<) > $(obj)System.map
5047ebf7443Swdenk
5052f155f6cSGrant Likely#
5062f155f6cSGrant Likely# Auto-generate the autoconf.mk file (which is included by all makefiles)
5072f155f6cSGrant Likely#
5082f155f6cSGrant Likely# This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
5092f155f6cSGrant Likely# the dep file is only include in this top level makefile to determine when
5102f155f6cSGrant Likely# to regenerate the autoconf.mk file.
5111510b82dSWolfgang Denk$(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h
5121510b82dSWolfgang Denk	@$(XECHO) Generating $@ ; \
51316fe7775SMike Frysinger	set -e ; \
514ae6d1056SWolfgang Denk	: Generate the dependancies ; \
5159aef7388SMike Frysinger	$(CC) -x c -DDO_DEPS_ONLY -M $(HOSTCFLAGS) $(CPPFLAGS) \
5161510b82dSWolfgang Denk		-MQ $(obj)include/autoconf.mk include/common.h > $@
5171510b82dSWolfgang Denk
5181510b82dSWolfgang Denk$(obj)include/autoconf.mk: $(obj)include/config.h
5191510b82dSWolfgang Denk	@$(XECHO) Generating $@ ; \
5201510b82dSWolfgang Denk	set -e ; \
521ae6d1056SWolfgang Denk	: Extract the config macros ; \
5221510b82dSWolfgang Denk	$(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \
5234a0f7538SWolfgang Denk		sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
5244a0f7538SWolfgang Denk	mv $@.tmp $@
5252f155f6cSGrant Likely
52616a354f9SWolfgang Denk$(obj)include/generated/generic-asm-offsets.h:	$(obj)include/autoconf.mk.dep \
52716a354f9SWolfgang Denk	$(obj)lib/asm-offsets.s
52816a354f9SWolfgang Denk	@$(XECHO) Generating $@
52916a354f9SWolfgang Denk	tools/scripts/make-asm-offsets $(obj)lib/asm-offsets.s $@
53016a354f9SWolfgang Denk
53116a354f9SWolfgang Denk$(obj)lib/asm-offsets.s:	$(obj)include/autoconf.mk.dep \
53216a354f9SWolfgang Denk	$(src)lib/asm-offsets.c
53316a354f9SWolfgang Denk	@mkdir -p $(obj)lib
53416a354f9SWolfgang Denk	$(CC) -DDO_DEPS_ONLY \
53516a354f9SWolfgang Denk		$(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
53616a354f9SWolfgang Denk		-o $@ $(src)lib/asm-offsets.c -c -S
53716a354f9SWolfgang Denk
5387ebf7443Swdenk#########################################################################
539ae6d1056SWolfgang Denkelse	# !config.mk
540f9328639SMarian Balakowiczall $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
541f9328639SMarian Balakowicz$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
5420358df42SMike Frysinger$(filter-out tools,$(SUBDIRS)) $(TIMESTAMP_FILE) $(VERSION_FILE) \
5430358df42SMike Frysingerupdater depend dep tags ctags etags cscope $(obj)System.map:
5447ebf7443Swdenk	@echo "System not configured - see README" >&2
5457ebf7443Swdenk	@ exit 1
546c7c0d542SMike Frysinger
547c7c0d542SMike Frysingertools:
5480358df42SMike Frysinger	$(MAKE) -C $@ all
549ae6d1056SWolfgang Denkendif	# config.mk
5507ebf7443Swdenk
5510358df42SMike Frysingereasylogo env gdb:
5520358df42SMike Frysinger	$(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION}
5530358df42SMike Frysingergdbtools: gdb
5540358df42SMike Frysinger
5550358df42SMike Frysingertools-all: easylogo env gdb
5560358df42SMike Frysinger	$(MAKE) -C tools HOST_TOOLS_ALL=y
5570358df42SMike Frysinger
5584e53a258SWolfgang Denk.PHONY : CHANGELOG
5594e53a258SWolfgang DenkCHANGELOG:
560b985b5d6SBen Warren	git log --no-merges U-Boot-1_1_5.. | \
561b985b5d6SBen Warren	unexpand -a | sed -e 's/\s\s*$$//' > $@
5624e53a258SWolfgang Denk
5630a823aa2SHarald Welteinclude/license.h: tools/bin2header COPYING
5640a823aa2SHarald Welte	cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
5657ebf7443Swdenk#########################################################################
5667ebf7443Swdenk
5677ebf7443Swdenkunconfig:
568887e2ec9SStefan Roese	@rm -f $(obj)include/config.h $(obj)include/config.mk \
5692f155f6cSGrant Likely		$(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \
5702f155f6cSGrant Likely		$(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep
5717ebf7443Swdenk
572a6862bc1SWolfgang Denk%_config::	unconfig
573a6862bc1SWolfgang Denk	@$(MKCONFIG) -A $(@:_config=)
574a6862bc1SWolfgang Denk
575d6a5e6d5SLoïc Miniersinclude $(obj).boards.depend
576d6a5e6d5SLoïc Minier$(obj).boards.depend:	boards.cfg
577727ebd9fSMike Frysinger	awk '(NF && $$1 !~ /^#/) { print $$1 ": " $$1 "_config; $$(MAKE)" }' $< > $@
5789f4a4206SMike Frysinger
5798c994630SWolfgang Denk#
5808c994630SWolfgang Denk# Functions to generate common board directory names
5818c994630SWolfgang Denk#
5828c994630SWolfgang Denklcname	= $(shell echo $(1) | sed -e 's/\(.*\)_config/\L\1/')
5838c994630SWolfgang Denkucname	= $(shell echo $(1) | sed -e 's/\(.*\)_config/\U\1/')
5848c994630SWolfgang Denk
5854e5ca3ebSwdenk#########################################################################
5864e5ca3ebSwdenk## Coldfire
5874e5ca3ebSwdenk#########################################################################
5884e5ca3ebSwdenk
5899d79e575SWolfgang Wegnerastro_mcf5373l_config \
5909d79e575SWolfgang Wegnerastro_mcf5373l_RAM_config :	unconfig
591ed7a196cSWolfgang Denk	@$(MKCONFIG) -n $@ -t $@ astro_mcf5373l m68k mcf532x mcf5373l astro
5929d79e575SWolfgang Wegner
593a21d0c2cSTsiChung LiewM52277EVB_config \
594a21d0c2cSTsiChung LiewM52277EVB_spansion_config \
595a21d0c2cSTsiChung LiewM52277EVB_stmicro_config :	unconfig
596a21d0c2cSTsiChung Liew	@case "$@" in \
597a21d0c2cSTsiChung Liew	M52277EVB_config)		FLASH=SPANSION;; \
598a21d0c2cSTsiChung Liew	M52277EVB_spansion_config)	FLASH=SPANSION;; \
599a21d0c2cSTsiChung Liew	M52277EVB_stmicro_config)	FLASH=STMICRO;; \
600a21d0c2cSTsiChung Liew	esac; \
601a21d0c2cSTsiChung Liew	if [ "$${FLASH}" = "SPANSION" ] ; then \
602a21d0c2cSTsiChung Liew		echo "#define CONFIG_SYS_SPANSION_BOOT"	>> $(obj)include/config.h ; \
60314d0a02aSWolfgang Denk		echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m52277evb/config.tmp ; \
604a21d0c2cSTsiChung Liew		cp $(obj)board/freescale/m52277evb/u-boot.spa $(obj)board/freescale/m52277evb/u-boot.lds ; \
605a21d0c2cSTsiChung Liew	fi; \
606a21d0c2cSTsiChung Liew	if [ "$${FLASH}" = "STMICRO" ] ; then \
607a21d0c2cSTsiChung Liew		echo "#define CONFIG_CF_SBF"	>> $(obj)include/config.h ; \
608a21d0c2cSTsiChung Liew		echo "#define CONFIG_SYS_STMICRO_BOOT"	>> $(obj)include/config.h ; \
60914d0a02aSWolfgang Denk		echo "CONFIG_SYS_TEXT_BASE = 0x43E00000" > $(obj)board/freescale/m52277evb/config.tmp ; \
610a21d0c2cSTsiChung Liew		cp $(obj)board/freescale/m52277evb/u-boot.stm $(obj)board/freescale/m52277evb/u-boot.lds ; \
611a21d0c2cSTsiChung Liew	fi
6120e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ -a M52277EVB m68k mcf5227x m52277evb freescale
6131552af70STsiChungLiew
6144a442d31STsiChungLiewM5235EVB_config \
6154a442d31STsiChungLiewM5235EVB_Flash16_config \
6164a442d31STsiChungLiewM5235EVB_Flash32_config:	unconfig
6174a442d31STsiChungLiew	@case "$@" in \
6184a442d31STsiChungLiew	M5235EVB_config)		FLASH=16;; \
6194a442d31STsiChungLiew	M5235EVB_Flash16_config)	FLASH=16;; \
6204a442d31STsiChungLiew	M5235EVB_Flash32_config)	FLASH=32;; \
6214a442d31STsiChungLiew	esac; \
6224a442d31STsiChungLiew	if [ "$${FLASH}" != "16" ] ; then \
623ae6d1056SWolfgang Denk		echo "#define NORFLASH_PS32BIT	1" >> $(obj)include/config.h ; \
62414d0a02aSWolfgang Denk		echo "CONFIG_SYS_TEXT_BASE = 0xFFC00000" > $(obj)board/freescale/m5235evb/config.tmp ; \
6254a442d31STsiChungLiew		cp $(obj)board/freescale/m5235evb/u-boot.32 $(obj)board/freescale/m5235evb/u-boot.lds ; \
6264a442d31STsiChungLiew	else \
62714d0a02aSWolfgang Denk		echo "CONFIG_SYS_TEXT_BASE = 0xFFE00000" > $(obj)board/freescale/m5235evb/config.tmp ; \
6284a442d31STsiChungLiew		cp $(obj)board/freescale/m5235evb/u-boot.16 $(obj)board/freescale/m5235evb/u-boot.lds ; \
6294a442d31STsiChungLiew	fi
6300e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ -a M5235EVB m68k mcf523x m5235evb freescale
6314a442d31STsiChungLiew
6327481266eSWolfgang Denkcobra5272_config :		unconfig
633ed7a196cSWolfgang Denk	@$(MKCONFIG) $@ m68k mcf52x2 cobra5272
6347481266eSWolfgang Denk
6354176c799SWolfgang DenkEB+MCF-EV123_config :		unconfig
636f9328639SMarian Balakowicz	@mkdir -p $(obj)include
637f9328639SMarian Balakowicz	@mkdir -p $(obj)board/BuS/EB+MCF-EV123
63814d0a02aSWolfgang Denk	@echo "CONFIG_SYS_TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
6390e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
6404176c799SWolfgang Denk
6414176c799SWolfgang DenkEB+MCF-EV123_internal_config :	unconfig
642f9328639SMarian Balakowicz	@mkdir -p $(obj)include
643f9328639SMarian Balakowicz	@mkdir -p $(obj)board/BuS/EB+MCF-EV123
64414d0a02aSWolfgang Denk	@echo "CONFIG_SYS_TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
6450e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
6464176c799SWolfgang Denk
6478e585f02STsiChung LiewM5329AFEE_config \
6488e585f02STsiChung LiewM5329BFEE_config :	unconfig
6498e585f02STsiChung Liew	@case "$@" in \
6508e585f02STsiChung Liew	M5329AFEE_config)	NAND=0;; \
6518e585f02STsiChung Liew	M5329BFEE_config)	NAND=16;; \
6528e585f02STsiChung Liew	esac; \
6538e585f02STsiChung Liew	if [ "$${NAND}" != "0" ] ; then \
654ab77bc54STsiChungLiew		echo "#define NANDFLASH_SIZE	$${NAND}" > $(obj)include/config.h ; \
6558e585f02STsiChung Liew	fi
6560e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ -a M5329EVB m68k mcf532x m5329evb freescale
6578e585f02STsiChung Liew
658aa5f1f9dSTsiChungLiewM5373EVB_config :	unconfig
659aa5f1f9dSTsiChungLiew	@case "$@" in \
660aa5f1f9dSTsiChungLiew	M5373EVB_config)	NAND=16;; \
661aa5f1f9dSTsiChungLiew	esac; \
662aa5f1f9dSTsiChungLiew	if [ "$${NAND}" != "0" ] ; then \
663aa5f1f9dSTsiChungLiew		echo "#define NANDFLASH_SIZE	$${NAND}" > $(obj)include/config.h ; \
664aa5f1f9dSTsiChungLiew	fi
665aa5f1f9dSTsiChungLiew	@$(MKCONFIG) -a M5373EVB m68k mcf532x m5373evb freescale
666aa5f1f9dSTsiChungLiew
66705316f8eSTsiChung LiewM54451EVB_config \
66805316f8eSTsiChung LiewM54451EVB_stmicro_config :	unconfig
66905316f8eSTsiChung Liew	@case "$@" in \
670709b384bSTsiChung Liew	M54451EVB_config)		FLASH=NOR;; \
67105316f8eSTsiChung Liew	M54451EVB_stmicro_config)	FLASH=STMICRO;; \
67205316f8eSTsiChung Liew	esac; \
673709b384bSTsiChung Liew	if [ "$${FLASH}" = "NOR" ] ; then \
67414d0a02aSWolfgang Denk		echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54451evb/config.tmp ; \
67505316f8eSTsiChung Liew		cp $(obj)board/freescale/m54451evb/u-boot.spa $(obj)board/freescale/m54451evb/u-boot.lds ; \
67605316f8eSTsiChung Liew	fi; \
67705316f8eSTsiChung Liew	if [ "$${FLASH}" = "STMICRO" ] ; then \
67805316f8eSTsiChung Liew		echo "#define CONFIG_CF_SBF"	>> $(obj)include/config.h ; \
6796d0f6bcfSJean-Christophe PLAGNIOL-VILLARD		echo "#define CONFIG_SYS_STMICRO_BOOT"	>> $(obj)include/config.h ; \
68014d0a02aSWolfgang Denk		echo "CONFIG_SYS_TEXT_BASE = 0x47E00000" > $(obj)board/freescale/m54451evb/config.tmp ; \
68105316f8eSTsiChung Liew		cp $(obj)board/freescale/m54451evb/u-boot.stm $(obj)board/freescale/m54451evb/u-boot.lds ; \
68205316f8eSTsiChung Liew	fi; \
6836d0f6bcfSJean-Christophe PLAGNIOL-VILLARD	echo "#define CONFIG_SYS_INPUT_CLKSRC 24000000" >> $(obj)include/config.h ;
6840e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ -a M54451EVB m68k mcf5445x m54451evb freescale
68505316f8eSTsiChung Liew
6868ae158cdSTsiChungLiewM54455EVB_config \
6878ae158cdSTsiChungLiewM54455EVB_atmel_config \
6888ae158cdSTsiChungLiewM54455EVB_intel_config \
6898ae158cdSTsiChungLiewM54455EVB_a33_config \
6908ae158cdSTsiChungLiewM54455EVB_a66_config \
6918ae158cdSTsiChungLiewM54455EVB_i33_config \
6929f751551STsiChung LiewM54455EVB_i66_config \
6939f751551STsiChung LiewM54455EVB_stm33_config :	unconfig
6948ae158cdSTsiChungLiew	@case "$@" in \
6958ae158cdSTsiChungLiew	M54455EVB_config)		FLASH=ATMEL; FREQ=33333333;; \
6968ae158cdSTsiChungLiew	M54455EVB_atmel_config)		FLASH=ATMEL; FREQ=33333333;; \
6978ae158cdSTsiChungLiew	M54455EVB_intel_config)		FLASH=INTEL; FREQ=33333333;; \
6988ae158cdSTsiChungLiew	M54455EVB_a33_config)		FLASH=ATMEL; FREQ=33333333;; \
6998ae158cdSTsiChungLiew	M54455EVB_a66_config)		FLASH=ATMEL; FREQ=66666666;; \
7008ae158cdSTsiChungLiew	M54455EVB_i33_config)		FLASH=INTEL; FREQ=33333333;; \
7018ae158cdSTsiChungLiew	M54455EVB_i66_config)		FLASH=INTEL; FREQ=66666666;; \
7029f751551STsiChung Liew	M54455EVB_stm33_config)		FLASH=STMICRO; FREQ=33333333;; \
7038ae158cdSTsiChungLiew	esac; \
7041aaab9bfSWolfgang Denk	if [ "$${FLASH}" = "INTEL" ] ; then \
7056d0f6bcfSJean-Christophe PLAGNIOL-VILLARD		echo "#define CONFIG_SYS_INTEL_BOOT" >> $(obj)include/config.h ; \
70614d0a02aSWolfgang Denk		echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54455evb/config.tmp ; \
707e8ee8f3aSTsiChungLiew		cp $(obj)board/freescale/m54455evb/u-boot.int $(obj)board/freescale/m54455evb/u-boot.lds ; \
7089f751551STsiChung Liew	fi; \
7099f751551STsiChung Liew	if [ "$${FLASH}" = "ATMEL" ] ; then \
7106d0f6bcfSJean-Christophe PLAGNIOL-VILLARD		echo "#define CONFIG_SYS_ATMEL_BOOT"	>> $(obj)include/config.h ; \
71114d0a02aSWolfgang Denk		echo "CONFIG_SYS_TEXT_BASE = 0x04000000" > $(obj)board/freescale/m54455evb/config.tmp ; \
712e8ee8f3aSTsiChungLiew		cp $(obj)board/freescale/m54455evb/u-boot.atm $(obj)board/freescale/m54455evb/u-boot.lds ; \
7138ae158cdSTsiChungLiew	fi; \
7149f751551STsiChung Liew	if [ "$${FLASH}" = "STMICRO" ] ; then \
7159f751551STsiChung Liew		echo "#define CONFIG_CF_SBF"	>> $(obj)include/config.h ; \
7166d0f6bcfSJean-Christophe PLAGNIOL-VILLARD		echo "#define CONFIG_SYS_STMICRO_BOOT"	>> $(obj)include/config.h ; \
71714d0a02aSWolfgang Denk		echo "CONFIG_SYS_TEXT_BASE = 0x4FE00000" > $(obj)board/freescale/m54455evb/config.tmp ; \
7189f751551STsiChung Liew		cp $(obj)board/freescale/m54455evb/u-boot.stm $(obj)board/freescale/m54455evb/u-boot.lds ; \
7199f751551STsiChung Liew	fi; \
7206d0f6bcfSJean-Christophe PLAGNIOL-VILLARD	echo "#define CONFIG_SYS_INPUT_CLKSRC $${FREQ}" >> $(obj)include/config.h ; \
7210e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ -a M54455EVB m68k mcf5445x m54455evb freescale
7228ae158cdSTsiChungLiew
72357a12720STsiChungLiewM5475AFE_config \
72457a12720STsiChungLiewM5475BFE_config \
72557a12720STsiChungLiewM5475CFE_config \
72657a12720STsiChungLiewM5475DFE_config \
72757a12720STsiChungLiewM5475EFE_config \
72857a12720STsiChungLiewM5475FFE_config \
72957a12720STsiChungLiewM5475GFE_config :	unconfig
73057a12720STsiChungLiew	@case "$@" in \
73157a12720STsiChungLiew	M5475AFE_config)	BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
73257a12720STsiChungLiew	M5475BFE_config)	BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \
73357a12720STsiChungLiew	M5475CFE_config)	BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \
73457a12720STsiChungLiew	M5475DFE_config)	BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \
73557a12720STsiChungLiew	M5475EFE_config)	BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \
73657a12720STsiChungLiew	M5475FFE_config)	BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \
73757a12720STsiChungLiew	M5475GFE_config)	BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
73857a12720STsiChungLiew	esac; \
7396d0f6bcfSJean-Christophe PLAGNIOL-VILLARD	echo "#define CONFIG_SYS_BUSCLK	133333333" > $(obj)include/config.h ; \
7406d0f6bcfSJean-Christophe PLAGNIOL-VILLARD	echo "#define CONFIG_SYS_BOOTSZ	$${BOOT}" >> $(obj)include/config.h ; \
7416d0f6bcfSJean-Christophe PLAGNIOL-VILLARD	echo "#define CONFIG_SYS_DRAMSZ	$${RAM}" >> $(obj)include/config.h ; \
74257a12720STsiChungLiew	if [ "$${RAM1}" != "0" ] ; then \
7436d0f6bcfSJean-Christophe PLAGNIOL-VILLARD		echo "#define CONFIG_SYS_DRAMSZ1	$${RAM1}" >> $(obj)include/config.h ; \
74457a12720STsiChungLiew	fi; \
74557a12720STsiChungLiew	if [ "$${CODE}" != "0" ] ; then \
7466d0f6bcfSJean-Christophe PLAGNIOL-VILLARD		echo "#define CONFIG_SYS_NOR1SZ	$${CODE}" >> $(obj)include/config.h ; \
74757a12720STsiChungLiew	fi; \
74857a12720STsiChungLiew	if [ "$${VID}" == "1" ] ; then \
7496d0f6bcfSJean-Christophe PLAGNIOL-VILLARD		echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \
75057a12720STsiChungLiew	fi; \
75157a12720STsiChungLiew	if [ "$${USB}" == "1" ] ; then \
7526d0f6bcfSJean-Christophe PLAGNIOL-VILLARD		echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \
75357a12720STsiChungLiew	fi
7540e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ -a M5475EVB m68k mcf547x_8x m547xevb freescale
75557a12720STsiChungLiew
75657a12720STsiChungLiewM5485AFE_config \
75757a12720STsiChungLiewM5485BFE_config \
75857a12720STsiChungLiewM5485CFE_config \
75957a12720STsiChungLiewM5485DFE_config \
76057a12720STsiChungLiewM5485EFE_config \
76157a12720STsiChungLiewM5485FFE_config \
76257a12720STsiChungLiewM5485GFE_config \
76357a12720STsiChungLiewM5485HFE_config :	unconfig
76457a12720STsiChungLiew	@case "$@" in \
76557a12720STsiChungLiew	M5485AFE_config)	BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
76657a12720STsiChungLiew	M5485BFE_config)	BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \
76757a12720STsiChungLiew	M5485CFE_config)	BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \
76857a12720STsiChungLiew	M5485DFE_config)	BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \
76957a12720STsiChungLiew	M5485EFE_config)	BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \
77057a12720STsiChungLiew	M5485FFE_config)	BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \
77157a12720STsiChungLiew	M5485GFE_config)	BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
7724d264effSTsiChungLiew	M5485HFE_config)	BOOT=2;CODE=16;VID=1;USB=0;RAM=64;RAM1=0;; \
77357a12720STsiChungLiew	esac; \
7746d0f6bcfSJean-Christophe PLAGNIOL-VILLARD	echo "#define CONFIG_SYS_BUSCLK	100000000" > $(obj)include/config.h ; \
7756d0f6bcfSJean-Christophe PLAGNIOL-VILLARD	echo "#define CONFIG_SYS_BOOTSZ	$${BOOT}" >> $(obj)include/config.h ; \
7766d0f6bcfSJean-Christophe PLAGNIOL-VILLARD	echo "#define CONFIG_SYS_DRAMSZ	$${RAM}" >> $(obj)include/config.h ; \
77757a12720STsiChungLiew	if [ "$${RAM1}" != "0" ] ; then \
7786d0f6bcfSJean-Christophe PLAGNIOL-VILLARD		echo "#define CONFIG_SYS_DRAMSZ1	$${RAM1}" >> $(obj)include/config.h ; \
77957a12720STsiChungLiew	fi; \
78057a12720STsiChungLiew	if [ "$${CODE}" != "0" ] ; then \
7816d0f6bcfSJean-Christophe PLAGNIOL-VILLARD		echo "#define CONFIG_SYS_NOR1SZ	$${CODE}" >> $(obj)include/config.h ; \
78257a12720STsiChungLiew	fi; \
78357a12720STsiChungLiew	if [ "$${VID}" == "1" ] ; then \
7846d0f6bcfSJean-Christophe PLAGNIOL-VILLARD		echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \
78557a12720STsiChungLiew	fi; \
78657a12720STsiChungLiew	if [ "$${USB}" == "1" ] ; then \
7876d0f6bcfSJean-Christophe PLAGNIOL-VILLARD		echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \
78857a12720STsiChungLiew	fi
7890e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ -a M5485EVB m68k mcf547x_8x m548xevb freescale
79057a12720STsiChungLiew
7917ebf7443Swdenk#========================================================================
7927ebf7443Swdenk# ARM
7937ebf7443Swdenk#========================================================================
79443a5f0dfSPo-Yu Chuang
795a4b46ed6SUlf Samuelsson#########################################################################
79634be1065SMatthias Weisser## ARM926EJ-S Systems
797a4b46ed6SUlf Samuelsson#########################################################################
798a4b46ed6SUlf Samuelsson
79989a7a87fSNicolas Ferreat91sam9261ek_nandflash_config \
80089a7a87fSNicolas Ferreat91sam9261ek_dataflash_cs0_config \
80189a7a87fSNicolas Ferreat91sam9261ek_dataflash_cs3_config \
8025ccc2d99SSedji Gaouaouat91sam9261ek_config \
8035ccc2d99SSedji Gaouaouat91sam9g10ek_nandflash_config \
8045ccc2d99SSedji Gaouaouat91sam9g10ek_dataflash_cs0_config \
8055ccc2d99SSedji Gaouaouat91sam9g10ek_dataflash_cs3_config \
8065ccc2d99SSedji Gaouaouat91sam9g10ek_config	:	unconfig
807e12d9a8fSJean-Christophe PLAGNIOL-VILLARD	@mkdir -p $(obj)include
8085ccc2d99SSedji Gaouaou	@if [ "$(findstring 9g10,$@)" ] ; then \
8095ccc2d99SSedji Gaouaou		echo "#define CONFIG_AT91SAM9G10EK 1"	>>$(obj)include/config.h ; \
8105ccc2d99SSedji Gaouaou	else \
8115ccc2d99SSedji Gaouaou		echo "#define CONFIG_AT91SAM9261EK 1"	>>$(obj)include/config.h ; \
8125ccc2d99SSedji Gaouaou	fi;
81389a7a87fSNicolas Ferre	@if [ "$(findstring _nandflash,$@)" ] ; then \
81489a7a87fSNicolas Ferre		echo "#define CONFIG_SYS_USE_NANDFLASH 1"	>>$(obj)include/config.h ; \
8155ccc2d99SSedji Gaouaou	elif [ "$(findstring dataflash_cs0,$@)" ] ; then \
81689a7a87fSNicolas Ferre		echo "#define CONFIG_SYS_USE_DATAFLASH_CS3 1"	>>$(obj)include/config.h ; \
81789a7a87fSNicolas Ferre	else \
81889a7a87fSNicolas Ferre		echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1"	>>$(obj)include/config.h ; \
81989a7a87fSNicolas Ferre	fi;
8200e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ -a at91sam9261ek arm arm926ejs at91sam9261ek atmel at91
82128962f5aSJean-Christophe PLAGNIOL-VILLARD
8221b3b7c64SJean-Christophe PLAGNIOL-VILLARDat91sam9263ek_norflash_config \
8231b3b7c64SJean-Christophe PLAGNIOL-VILLARDat91sam9263ek_norflash_boot_config \
82489a7a87fSNicolas Ferreat91sam9263ek_nandflash_config \
82589a7a87fSNicolas Ferreat91sam9263ek_dataflash_config \
82689a7a87fSNicolas Ferreat91sam9263ek_dataflash_cs0_config \
82728962f5aSJean-Christophe PLAGNIOL-VILLARDat91sam9263ek_config	:	unconfig
828e12d9a8fSJean-Christophe PLAGNIOL-VILLARD	@mkdir -p $(obj)include
82989a7a87fSNicolas Ferre	@if [ "$(findstring _nandflash,$@)" ] ; then \
83089a7a87fSNicolas Ferre		echo "#define CONFIG_SYS_USE_NANDFLASH 1"	>>$(obj)include/config.h ; \
8311b3b7c64SJean-Christophe PLAGNIOL-VILLARD	elif [ "$(findstring norflash,$@)" ] ; then \
8321b3b7c64SJean-Christophe PLAGNIOL-VILLARD		echo "#define CONFIG_SYS_USE_NORFLASH 1"	>>$(obj)include/config.h ; \
83389a7a87fSNicolas Ferre	else \
83489a7a87fSNicolas Ferre		echo "#define CONFIG_SYS_USE_DATAFLASH 1"	>>$(obj)include/config.h ; \
83589a7a87fSNicolas Ferre	fi;
8361b3b7c64SJean-Christophe PLAGNIOL-VILLARD	@if [ "$(findstring norflash_boot,$@)" ] ; then \
8371b3b7c64SJean-Christophe PLAGNIOL-VILLARD		echo "#define CONFIG_SYS_USE_BOOT_NORFLASH 1"	>>$(obj)include/config.h ; \
8381b3b7c64SJean-Christophe PLAGNIOL-VILLARD	fi;
8390e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ -a at91sam9263ek arm arm926ejs at91sam9263ek atmel at91
84028962f5aSJean-Christophe PLAGNIOL-VILLARD
84189a7a87fSNicolas Ferreat91sam9rlek_nandflash_config \
84289a7a87fSNicolas Ferreat91sam9rlek_dataflash_config \
84389a7a87fSNicolas Ferreat91sam9rlek_dataflash_cs0_config \
84428962f5aSJean-Christophe PLAGNIOL-VILLARDat91sam9rlek_config	:	unconfig
845e12d9a8fSJean-Christophe PLAGNIOL-VILLARD	@mkdir -p $(obj)include
84689a7a87fSNicolas Ferre	@if [ "$(findstring _nandflash,$@)" ] ; then \
84789a7a87fSNicolas Ferre		echo "#define CONFIG_SYS_USE_NANDFLASH 1"	>>$(obj)include/config.h ; \
84889a7a87fSNicolas Ferre	else \
84989a7a87fSNicolas Ferre		echo "#define CONFIG_SYS_USE_DATAFLASH 1"	>>$(obj)include/config.h ; \
85089a7a87fSNicolas Ferre	fi;
8510e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ -a at91sam9rlek arm arm926ejs at91sam9rlek atmel at91
85228962f5aSJean-Christophe PLAGNIOL-VILLARD
85322ee6473SSedji Gaouaouat91sam9m10g45ek_nandflash_config \
85422ee6473SSedji Gaouaouat91sam9m10g45ek_dataflash_config \
85522ee6473SSedji Gaouaouat91sam9m10g45ek_dataflash_cs0_config \
85622ee6473SSedji Gaouaouat91sam9m10g45ek_config \
85722ee6473SSedji Gaouaouat91sam9g45ekes_nandflash_config \
85822ee6473SSedji Gaouaouat91sam9g45ekes_dataflash_config \
85922ee6473SSedji Gaouaouat91sam9g45ekes_dataflash_cs0_config \
86022ee6473SSedji Gaouaouat91sam9g45ekes_config	:	unconfig
86122ee6473SSedji Gaouaou	@mkdir -p $(obj)include
86222ee6473SSedji Gaouaou		@if [ "$(findstring 9m10,$@)" ] ; then \
86322ee6473SSedji Gaouaou		echo "#define CONFIG_AT91SAM9M10G45EK 1"	>>$(obj)include/config.h ; \
86422ee6473SSedji Gaouaou	else \
86522ee6473SSedji Gaouaou		echo "#define CONFIG_AT91SAM9G45EKES 1"	>>$(obj)include/config.h ; \
86622ee6473SSedji Gaouaou	fi;
86722ee6473SSedji Gaouaou	@if [ "$(findstring _nandflash,$@)" ] ; then \
86822ee6473SSedji Gaouaou		echo "#define CONFIG_SYS_USE_NANDFLASH 1"	>>$(obj)include/config.h ; \
86922ee6473SSedji Gaouaou	else \
87022ee6473SSedji Gaouaou		echo "#define CONFIG_ATMEL_SPI 1"	>>$(obj)include/config.h ; \
87122ee6473SSedji Gaouaou	fi;
8720e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ -a at91sam9m10g45ek arm arm926ejs at91sam9m10g45ek atmel at91
87322ee6473SSedji Gaouaou
874b5d289fcSAsen Dimovpm9g45_config	:	unconfig
875b5d289fcSAsen Dimov	@mkdir -p $(obj)include
876b5d289fcSAsen Dimov	@$(MKCONFIG) -a pm9g45 arm arm926ejs pm9g45 ronetix at91
877b5d289fcSAsen Dimov
8789453967eSAlbin TonnerreSBC35_A9G20_NANDFLASH_config \
8799453967eSAlbin TonnerreSBC35_A9G20_EEPROM_config \
8809453967eSAlbin TonnerreSBC35_A9G20_config	:	unconfig
8819453967eSAlbin Tonnerre	@mkdir -p $(obj)include
8829453967eSAlbin Tonnerre	@echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
8830e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ -a sbc35_a9g20 arm arm926ejs sbc35_a9g20 calao at91
8849453967eSAlbin Tonnerre
8852dc851e3SAlbin TonnerreTNY_A9G20_NANDFLASH_config \
8862dc851e3SAlbin TonnerreTNY_A9G20_EEPROM_config \
8872dc851e3SAlbin TonnerreTNY_A9G20_config \
8882dc851e3SAlbin TonnerreTNY_A9260_NANDFLASH_config \
8892dc851e3SAlbin TonnerreTNY_A9260_EEPROM_config \
8902dc851e3SAlbin TonnerreTNY_A9260_config	:	unconfig
8912dc851e3SAlbin Tonnerre	@mkdir -p $(obj)include
8922dc851e3SAlbin Tonnerre	@echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
8930e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ -a tny_a9260 arm arm926ejs tny_a9260 calao at91
8942dc851e3SAlbin Tonnerre
89574f4304eSWolfgang Denk########################################################################
89687cb6862SWolfgang Denk## ARM Integrator boards - see doc/README-integrator for more info.
89787cb6862SWolfgang Denkintegratorap_config	\
89887cb6862SWolfgang Denkap_config		\
89987cb6862SWolfgang Denkap966_config		\
90087cb6862SWolfgang Denkap922_config		\
90187cb6862SWolfgang Denkap922_XA10_config	\
90287cb6862SWolfgang Denkap7_config		\
90387cb6862SWolfgang Denkap720t_config		\
90487cb6862SWolfgang Denkap920t_config		\
90587cb6862SWolfgang Denkap926ejs_config		\
90687cb6862SWolfgang Denkap946es_config: unconfig
907576afd4fSJean-Christophe PLAGNIOL-VILLARD	@board/armltd/integrator/split_by_variant.sh ap $@
9083d3befa7Swdenk
90987cb6862SWolfgang Denkintegratorcp_config	\
91087cb6862SWolfgang Denkcp_config		\
91187cb6862SWolfgang Denkcp920t_config		\
91287cb6862SWolfgang Denkcp926ejs_config		\
91387cb6862SWolfgang Denkcp946es_config		\
91487cb6862SWolfgang Denkcp1136_config		\
91587cb6862SWolfgang Denkcp966_config		\
91687cb6862SWolfgang Denkcp922_config		\
91787cb6862SWolfgang Denkcp922_XA10_config	\
91887cb6862SWolfgang Denkcp1026_config: unconfig
919576afd4fSJean-Christophe PLAGNIOL-VILLARD	@board/armltd/integrator/split_by_variant.sh cp $@
92025d6712aSwdenk
921a4b46ed6SUlf Samuelssonxtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
922a4b46ed6SUlf Samuelsson
92363e73c9aSwdenkomap1610inn_config \
92463e73c9aSwdenkomap1610inn_cs0boot_config \
92563e73c9aSwdenkomap1610inn_cs3boot_config \
9263ff02c27Swdenkomap1610inn_cs_autoboot_config \
92763e73c9aSwdenkomap1610h2_config \
92863e73c9aSwdenkomap1610h2_cs0boot_config \
9293ff02c27Swdenkomap1610h2_cs3boot_config \
9303ff02c27Swdenkomap1610h2_cs_autoboot_config:	unconfig
931f9328639SMarian Balakowicz	@mkdir -p $(obj)include
93263e73c9aSwdenk	@if [ "$(findstring _cs0boot_, $@)" ] ; then \
933cdd917a4SWolfgang Denk		echo "#define CONFIG_CS0_BOOT" >> .$(obj)include/config.h ; \
9343ff02c27Swdenk	elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
935cdd917a4SWolfgang Denk		echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)include/config.h ; \
93663e73c9aSwdenk	else \
937cdd917a4SWolfgang Denk		echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
93863e73c9aSwdenk	fi;
9390e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn ti omap
9406f21347dSwdenk
941a56bd922Swdenkomap730p2_config \
942a56bd922Swdenkomap730p2_cs0boot_config \
943a56bd922Swdenkomap730p2_cs3boot_config :	unconfig
944f9328639SMarian Balakowicz	@mkdir -p $(obj)include
945a56bd922Swdenk	@if [ "$(findstring _cs0boot_, $@)" ] ; then \
946f9328639SMarian Balakowicz		echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
947a56bd922Swdenk	else \
948f9328639SMarian Balakowicz		echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
949a56bd922Swdenk	fi;
950ed7a196cSWolfgang Denk	@$(MKCONFIG) -n $@ -a omap730p2 arm arm926ejs omap730p2 ti omap
951a56bd922Swdenk
952080cfee7SVipin KUMARspear300_config \
9537da69236SVipin KUMARspear310_config \
9547da69236SVipin KUMARspear320_config :	unconfig
955ed7a196cSWolfgang Denk	@$(MKCONFIG) -n $@ -t $@ spear3xx arm arm926ejs $(@:_config=) spear spear
9567e074158SVipin KUMAR
957566c9c16SVipin KUMARspear600_config :	unconfig
958ed7a196cSWolfgang Denk	@$(MKCONFIG) -n $@ -t $@ spear6xx arm arm926ejs $(@:_config=) spear spear
959566c9c16SVipin KUMAR
96047fd3bffSJean-Christophe PLAGNIOL-VILLARDSX1_stdout_serial_config \
9612d24a3a7SwdenkSX1_config:		unconfig
96247fd3bffSJean-Christophe PLAGNIOL-VILLARD	@mkdir -p $(obj)include
96347fd3bffSJean-Christophe PLAGNIOL-VILLARD	@if [ "$(findstring _stdout_serial_, $@)" ] ; then \
96447fd3bffSJean-Christophe PLAGNIOL-VILLARD		echo "#undef CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
96547fd3bffSJean-Christophe PLAGNIOL-VILLARD	else \
96647fd3bffSJean-Christophe PLAGNIOL-VILLARD		echo "#define CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
96747fd3bffSJean-Christophe PLAGNIOL-VILLARD	fi;
9680e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ SX1 arm arm925t sx1
9692d24a3a7Swdenk
9706895d451SJohn Rigbytx25_config	: unconfig
9716895d451SJohn Rigby	@echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
972ed7a196cSWolfgang Denk	@$(MKCONFIG) $@ arm arm926ejs tx25 karo mx25
9736895d451SJohn Rigby
974a6862bc1SWolfgang Denkedb9301_config \
975a6862bc1SWolfgang Denkedb9302_config \
976a6862bc1SWolfgang Denkedb9302a_config \
977a6862bc1SWolfgang Denkedb9307_config \
978a6862bc1SWolfgang Denkedb9307a_config \
979a6862bc1SWolfgang Denkedb9312_config \
980a6862bc1SWolfgang Denkedb9315_config \
981a6862bc1SWolfgang Denkedb9315a_config: unconfig
982a6862bc1SWolfgang Denk	@$(MKCONFIG) -n $@ -t $(@:_config=) edb93xx arm arm920t edb93xx - ep93xx
983a6862bc1SWolfgang Denk
984699f0512SWolfgang Denk#########################################################################
98587cb6862SWolfgang Denk# ARM supplied Versatile development boards
986699f0512SWolfgang Denk#########################################################################
987699f0512SWolfgang Denk
98887cb6862SWolfgang Denkversatile_config	\
98987cb6862SWolfgang Denkversatileab_config	\
99087cb6862SWolfgang Denkversatilepb_config :	unconfig
991e4943ec5SJean-Christophe PLAGNIOL-VILLARD	@board/armltd/versatile/split_by_variant.sh $@
992074cff0dSwdenk
993074cff0dSwdenk#########################################################################
99443d9616cSwdenk## XScale Systems
9957ebf7443Swdenk#########################################################################
9967ebf7443Swdenk
9979d8d5a5bSStefan Roesepdnb3_config \
9989d8d5a5bSStefan Roesescpu_config:	unconfig
999cdd917a4SWolfgang Denk	@mkdir -p $(obj)include
10009d8d5a5bSStefan Roese	@if [ "$(findstring scpu_,$@)" ] ; then \
1001cdd917a4SWolfgang Denk		echo "#define CONFIG_SCPU"	>>$(obj)include/config.h ; \
10029d8d5a5bSStefan Roese	fi
10030e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ -a pdnb3 arm ixp pdnb3 prodrive
1004ba94a1bbSWolfgang Denk
10058ed96046Swdenk#########################################################################
10068ed96046Swdenk## ARM1136 Systems
10078ed96046Swdenk#########################################################################
10085ca9881aSPeter Pearse
10095ca9881aSPeter Pearseapollon_config		: unconfig
10108cbf4e4fSWolfgang Denk	@mkdir -p $(obj)include
1011751b9b51SKyungmin Park	@echo "#define CONFIG_ONENAND_U_BOOT" > $(obj)include/config.h
1012751b9b51SKyungmin Park	@echo "CONFIG_ONENAND_U_BOOT = y" >> $(obj)include/config.mk
1013a6862bc1SWolfgang Denk	@$(MKCONFIG) $@ arm arm1136 apollon - omap24xx
10148ed96046Swdenk
1015a2bb7105SGuennadi Liakhovetskiimx31_phycore_eet_config \
10165ad86216SSascha Hauerimx31_phycore_config	: unconfig
101769c5bf29SGuennadi Liakhovetski	@mkdir -p $(obj)include
1018a2bb7105SGuennadi Liakhovetski	@if [ -n "$(findstring _eet_,$@)" ]; then			\
1019a2bb7105SGuennadi Liakhovetski		echo "#define CONFIG_IMX31_PHYCORE_EET" >> $(obj)include/config.h;	\
1020a2bb7105SGuennadi Liakhovetski	fi
1021a6862bc1SWolfgang Denk	@$(MKCONFIG) -n $@ -a imx31_phycore arm arm1136 imx31_phycore - mx31
10225ad86216SSascha Hauer
1023d08e5ca3SMagnus Liljamx31pdk_config \
1024d08e5ca3SMagnus Liljamx31pdk_nand_config	: unconfig
1025d08e5ca3SMagnus Lilja	@mkdir -p $(obj)include
1026d08e5ca3SMagnus Lilja	@if [ -n "$(findstring _nand_,$@)" ]; then					\
1027d08e5ca3SMagnus Lilja		echo "#define CONFIG_NAND_U_BOOT" >> $(obj)include/config.h;		\
1028d08e5ca3SMagnus Lilja	else										\
1029d08e5ca3SMagnus Lilja		echo "#define CONFIG_SKIP_LOWLEVEL_INIT" >> $(obj)include/config.h;	\
1030d08e5ca3SMagnus Lilja	fi
10310e42ada3SWolfgang Denk	@$(MKCONFIG) -n $@ -a mx31pdk arm arm1136 mx31pdk freescale mx31
10328449f287SMagnus Lilja
103311edcfe2SGuennadi Liakhovetski#########################################################################
103411edcfe2SGuennadi Liakhovetski## ARM1176 Systems
103511edcfe2SGuennadi Liakhovetski#########################################################################
103611edcfe2SGuennadi Liakhovetskismdk6400_noUSB_config	\
103711edcfe2SGuennadi Liakhovetskismdk6400_config	:	unconfig
103811edcfe2SGuennadi Liakhovetski	@mkdir -p $(obj)include $(obj)board/samsung/smdk6400
103911edcfe2SGuennadi Liakhovetski	@mkdir -p $(obj)nand_spl/board/samsung/smdk6400
104011edcfe2SGuennadi Liakhovetski	@echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
10410e42ada3SWolfgang Denk	@echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
104211edcfe2SGuennadi Liakhovetski	@if [ -z "$(findstring smdk6400_noUSB_config,$@)" ]; then			\
104311edcfe2SGuennadi Liakhovetski		echo "RAM_TEXT = 0x57e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
104411edcfe2SGuennadi Liakhovetski	else										\
104511edcfe2SGuennadi Liakhovetski		echo "RAM_TEXT = 0xc7e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
104611edcfe2SGuennadi Liakhovetski	fi
104754e19a7dSWolfgang Denk	@$(MKCONFIG) smdk6400 arm arm1176 smdk6400 samsung s3c64xx
104811edcfe2SGuennadi Liakhovetski	@echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
104911edcfe2SGuennadi Liakhovetski
10502262cfeeSwdenk#========================================================================
10514a551709Swdenk# Nios
10524a551709Swdenk#========================================================================
10534a551709Swdenk
10545c952cf0Swdenk#########################################################################
10555c952cf0Swdenk## Nios-II
10565c952cf0Swdenk#########################################################################
10575c952cf0Swdenk
10588cbb0dddSThomas Chou# nios2 generic boards
10598cbb0dddSThomas ChouNIOS2_GENERIC = nios2-generic
10608cbb0dddSThomas Chou
10618cbb0dddSThomas Chou$(NIOS2_GENERIC:%=%_config) : unconfig
1062ed7a196cSWolfgang Denk	@$(MKCONFIG) $@ nios2 nios2 nios2-generic altera
10638cbb0dddSThomas Chou
10640afe519aSWolfgang Denk#########################################################################
10653e38691eSwdenk#########################################################################
10667ebf7443Swdenk
10677ebf7443Swdenkclean:
10681bc15386SPeter Tyser	@rm -f $(obj)examples/standalone/82559_eeprom			  \
1069d640ac58SWolfgang Denk	       $(obj)examples/standalone/atmel_df_pow2			  \
10701bc15386SPeter Tyser	       $(obj)examples/standalone/eepro100_eeprom		  \
10711bc15386SPeter Tyser	       $(obj)examples/standalone/hello_world			  \
10721bc15386SPeter Tyser	       $(obj)examples/standalone/interrupt			  \
10731bc15386SPeter Tyser	       $(obj)examples/standalone/mem_to_mem_idma2intr		  \
10741bc15386SPeter Tyser	       $(obj)examples/standalone/sched				  \
1075201a017cSMike Frysinger	       $(obj)examples/standalone/smc911{11,x}_eeprom		  \
10761bc15386SPeter Tyser	       $(obj)examples/standalone/test_burst			  \
10771bc15386SPeter Tyser	       $(obj)examples/standalone/timer
1078d4abc757SPeter Tyser	@rm -f $(obj)examples/api/demo{,.bin}
1079f9301e1cSWolfgang Denk	@rm -f $(obj)tools/bmp_logo	   $(obj)tools/easylogo/easylogo  \
1080f9301e1cSWolfgang Denk	       $(obj)tools/env/{fw_printenv,fw_setenv}			  \
1081f9301e1cSWolfgang Denk	       $(obj)tools/envcrc					  \
1082f9301e1cSWolfgang Denk	       $(obj)tools/gdb/{astest,gdbcont,gdbsend}			  \
1083f9301e1cSWolfgang Denk	       $(obj)tools/gen_eth_addr    $(obj)tools/img2srec		  \
1084f9301e1cSWolfgang Denk	       $(obj)tools/mkimage	   $(obj)tools/mpc86x_clk	  \
1085f9301e1cSWolfgang Denk	       $(obj)tools/ncb		   $(obj)tools/ubsha1
1086f9301e1cSWolfgang Denk	@rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image}	  \
108774c7a95fSWolfgang Denk	       $(obj)board/matrix_vision/*/bootscript.img		  \
1088f9301e1cSWolfgang Denk	       $(obj)board/netstar/{eeprom,crcek,crcit,*.srec,*.bin}	  \
1089566e5cf4SWolfgang Denk	       $(obj)board/voiceblue/eeprom 				  \
10901dcb50afSWolfgang Denk	       $(obj)board/armltd/{integratorap,integratorcp}/u-boot.lds  \
10911aada9cdSWolfgang Denk	       $(obj)u-boot.lds						  \
1092c6fb83d2SPeter Tyser	       $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs]
1093dc7746d8SWolfgang Denk	@rm -f $(obj)include/bmp_logo.h
109416a354f9SWolfgang Denk	@rm -f $(obj)lib/asm-offsets.s
10951aada9cdSWolfgang Denk	@rm -f $(obj)nand_spl/{u-boot.lds,u-boot-spl,u-boot-spl.map,System.map}
1096ca6189dbSKyungmin Park	@rm -f $(obj)onenand_ipl/onenand-{ipl,ipl.bin,ipl.map}
10970d3c62e4SChander Kashyap	@rm -f $(obj)mmc_spl/{u-boot.lds,u-boot-spl,u-boot-spl.map,u-boot-spl.bin,u-boot-mmc-spl.bin}
1098ca6189dbSKyungmin Park	@rm -f $(ONENAND_BIN)
10991aada9cdSWolfgang Denk	@rm -f $(obj)onenand_ipl/u-boot.lds
1100d4abc757SPeter Tyser	@rm -f $(TIMESTAMP_FILE) $(VERSION_FILE)
1101ae6d1056SWolfgang Denk	@find $(OBJTREE) -type f \
11027ebf7443Swdenk		\( -name 'core' -o -name '*.bak' -o -name '*~' \
11032b48f7d5SPeter Tyser		-o -name '*.o'	-o -name '*.a' -o -name '*.exe'	\) -print \
11047ebf7443Swdenk		| xargs rm -f
11057ebf7443Swdenk
11067ebf7443Swdenkclobber:	clean
1107727ebd9fSMike Frysinger	@find $(OBJTREE) -type f \( -name '*.depend' \
11084c0d4c3bSwdenk		-o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
11094c0d4c3bSwdenk		-print0 \
11104c0d4c3bSwdenk		| xargs -0 rm -f
1111ffda586fSLi Yang	@rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \
11125013c09fSWolfgang Denk		$(obj)cscope.* $(obj)*.*~
1113ae6d1056SWolfgang Denk	@rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL)
1114aa0c7a86SPrafulla Wadaskar	@rm -f $(obj)u-boot.kwb
1115c5fb70c9SStefano Babic	@rm -f $(obj)u-boot.imx
1116fb8b33c1SPeter Tyser	@rm -f $(obj)tools/{env/crc32.c,inca-swap-bytes}
1117a47a12beSStefan Roese	@rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c
1118a9d8bc98SLoïc Minier	@rm -fr $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
111916a354f9SWolfgang Denk	@rm -fr $(obj)include/generated
1120a958b663SJean-Christophe PLAGNIOL-VILLARD	@[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f
1121a958b663SJean-Christophe PLAGNIOL-VILLARD	@[ ! -d $(obj)onenand_ipl ] || find $(obj)onenand_ipl -name "*" -type l -print | xargs rm -f
11220d3c62e4SChander Kashyap	@[ ! -d $(obj)mmc_spl ] || find $(obj)mmc_spl -name "*" -type l -print | xargs rm -f
11237ebf7443Swdenk
1124f9328639SMarian Balakowiczifeq ($(OBJTREE),$(SRCTREE))
11257ebf7443Swdenkmrproper \
11267ebf7443Swdenkdistclean:	clobber unconfig
1127f9328639SMarian Balakowiczelse
1128f9328639SMarian Balakowiczmrproper \
1129f9328639SMarian Balakowiczdistclean:	clobber unconfig
1130ae6d1056SWolfgang Denk	rm -rf $(obj)*
1131f9328639SMarian Balakowiczendif
11327ebf7443Swdenk
11337ebf7443Swdenkbackup:
11347ebf7443Swdenk	F=`basename $(TOPDIR)` ; cd .. ; \
1135d6b93714SIlya Yanok	gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
11367ebf7443Swdenk
11377ebf7443Swdenk#########################################################################
1138