blob: c9e1053da107aad7cb6155691b65c5c79e789044 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
Wolfgang Denkb1af6f52011-06-27 22:22:42 +02002# (C) Copyright 2000-2011
wdenk7ebf7442002-11-02 23:17:16 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
Wolfgang Denk45a212c2006-07-19 17:52:30 +020010# published by the Free Software Foundatio; either version 2 of
wdenk7ebf7442002-11-02 23:17:16 +000011# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
Wolfgang Denkf9301e12008-03-04 14:58:31 +010015# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenk7ebf7442002-11-02 23:17:16 +000016# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
Wolfgang Denk42d44f62011-02-02 22:37:32 +010024VERSION = 2011
Wolfgang Denk7a82c202011-05-19 22:23:50 +020025PATCHLEVEL = 06
Wolfgang Denk8b9e4782008-09-09 23:55:18 +020026SUBLEVEL =
Wolfgang Denkb1af6f52011-06-27 22:22:42 +020027EXTRAVERSION =
Wolfgang Denk8b9e4782008-09-09 23:55:18 +020028ifneq "$(SUBLEVEL)" ""
Wolfgang Denk881a87e2006-02-21 17:33:04 +010029U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
Wolfgang Denk8b9e4782008-09-09 23:55:18 +020030else
31U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION)
32endif
Peter Tyser561858e2008-11-03 09:30:59 -060033TIMESTAMP_FILE = $(obj)include/timestamp_autogenerated.h
Marian Balakowiczf9328632006-09-01 19:49:50 +020034VERSION_FILE = $(obj)include/version_autogenerated.h
Wolfgang Denk881a87e2006-02-21 17:33:04 +010035
wdenk7ebf7442002-11-02 23:17:16 +000036HOSTARCH := $(shell uname -m | \
Graeme Russfea25722011-04-13 19:43:28 +100037 sed -e s/i.86/x86/ \
wdenk7ebf7442002-11-02 23:17:16 +000038 -e s/sun4u/sparc64/ \
39 -e s/arm.*/arm/ \
40 -e s/sa110/arm/ \
Kumar Galad0179082010-04-28 02:52:02 -050041 -e s/ppc64/powerpc/ \
42 -e s/ppc/powerpc/ \
Nobuhiro Iwamatsu8d1f6352010-06-16 07:59:17 +090043 -e s/macppc/powerpc/\
44 -e s/sh.*/sh/)
wdenk7ebf7442002-11-02 23:17:16 +000045
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020046HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
wdenk7ebf7442002-11-02 23:17:16 +000047 sed -e 's/\(cygwin\).*/cygwin/')
48
Peter Tysercf7a7b92008-11-12 12:33:20 -060049# Set shell to bash if possible, otherwise fall back to sh
50SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
51 else if [ -x /bin/bash ]; then echo /bin/bash; \
52 else echo sh; fi; fi)
53
54export HOSTARCH HOSTOS SHELL
wdenk7ebf7442002-11-02 23:17:16 +000055
56# Deal with colliding definitions from tcsh etc.
57VENDOR=
58
59#########################################################################
Wolfgang Denkae6d1052008-01-13 00:59:21 +010060# Allow for silent builds
61ifeq (,$(findstring s,$(MAKEFLAGS)))
62XECHO = echo
63else
64XECHO = :
65endif
66
67#########################################################################
Marian Balakowiczf9328632006-09-01 19:49:50 +020068#
69# U-boot build supports producing a object files to the separate external
70# directory. Two use cases are supported:
Stefan Roese887e2ec2006-09-07 11:51:23 +020071#
Marian Balakowiczf9328632006-09-01 19:49:50 +020072# 1) Add O= to the make command line
73# 'make O=/tmp/build all'
74#
75# 2) Set environement variable BUILD_DIR to point to the desired location
76# 'export BUILD_DIR=/tmp/build'
77# 'make'
78#
79# The second approach can also be used with a MAKEALL script
80# 'export BUILD_DIR=/tmp/build'
81# './MAKEALL'
Stefan Roese887e2ec2006-09-07 11:51:23 +020082#
Marian Balakowiczf9328632006-09-01 19:49:50 +020083# Command line 'O=' setting overrides BUILD_DIR environent variable.
Stefan Roese887e2ec2006-09-07 11:51:23 +020084#
Marian Balakowiczf9328632006-09-01 19:49:50 +020085# When none of the above methods is used the local build is performed and
86# the object files are placed in the source directory.
Stefan Roese887e2ec2006-09-07 11:51:23 +020087#
wdenk7ebf7442002-11-02 23:17:16 +000088
Marian Balakowiczf9328632006-09-01 19:49:50 +020089ifdef O
90ifeq ("$(origin O)", "command line")
91BUILD_DIR := $(O)
92endif
93endif
wdenk7ebf7442002-11-02 23:17:16 +000094
Marian Balakowiczf9328632006-09-01 19:49:50 +020095ifneq ($(BUILD_DIR),)
96saved-output := $(BUILD_DIR)
Marian Balakowicz4f0645e2006-09-07 12:05:53 +020097
98# Attempt to create a output directory.
99$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
100
Stefan Roesea73c8db2006-09-12 08:49:07 +0200101# Verify if it was successful.
Marian Balakowiczf9328632006-09-01 19:49:50 +0200102BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
103$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
104endif # ifneq ($(BUILD_DIR),)
105
106OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
Daniel Schwierzeckc8f9c302011-07-18 06:09:15 +0000107SPLTREE := $(OBJTREE)/spl
Marian Balakowiczf9328632006-09-01 19:49:50 +0200108SRCTREE := $(CURDIR)
109TOPDIR := $(SRCTREE)
110LNDIR := $(OBJTREE)
Daniel Schwierzeckc8f9c302011-07-18 06:09:15 +0000111export TOPDIR SRCTREE OBJTREE SPLTREE
Marian Balakowiczf9328632006-09-01 19:49:50 +0200112
113MKCONFIG := $(SRCTREE)/mkconfig
114export MKCONFIG
115
116ifneq ($(OBJTREE),$(SRCTREE))
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100117REMOTE_BUILD := 1
Marian Balakowiczf9328632006-09-01 19:49:50 +0200118export REMOTE_BUILD
119endif
120
121# $(obj) and (src) are defined in config.mk but here in main Makefile
122# we also need them before config.mk is included which is the case for
123# some targets like unconfig, clean, clobber, distclean, etc.
124ifneq ($(OBJTREE),$(SRCTREE))
125obj := $(OBJTREE)/
126src := $(SRCTREE)/
127else
128obj :=
129src :=
Stefan Roese887e2ec2006-09-07 11:51:23 +0200130endif
Marian Balakowiczf9328632006-09-01 19:49:50 +0200131export obj src
132
Wolfgang Denk5013c092008-03-02 22:45:33 +0100133# Make sure CDPATH settings don't interfere
134unexport CDPATH
135
Marian Balakowiczf9328632006-09-01 19:49:50 +0200136#########################################################################
137
Mike Frysinger6d1ce382009-05-30 01:02:03 -0400138# The "tools" are needed early, so put this first
139# Don't include stuff already done in $(LIBS)
140SUBDIRS = tools \
Peter Tyser1bc15382009-07-10 11:03:19 -0500141 examples/standalone \
Peter Tyserd4abc752009-07-20 19:02:21 -0500142 examples/api
Mike Frysinger6d1ce382009-05-30 01:02:03 -0400143
Ilya Yanok28abd482011-06-20 12:45:38 +0000144.PHONY : $(SUBDIRS) $(VERSION_FILE)
Mike Frysinger6d1ce382009-05-30 01:02:03 -0400145
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100146ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200147
Mike Frysinger2632c002009-07-21 22:59:36 -0400148# Include autoconf.mk before config.mk so that the config options are available
149# to all top level build files. We need the dummy all: target to prevent the
150# dependency target in autoconf.mk.dep from being the default.
151all:
152sinclude $(obj)include/autoconf.mk.dep
153sinclude $(obj)include/autoconf.mk
154
wdenk7ebf7442002-11-02 23:17:16 +0000155# load ARCH, BOARD, and CPU configuration
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100156include $(obj)include/config.mk
wdenk1d9f4102004-10-09 22:21:29 +0000157export ARCH CPU BOARD VENDOR SOC
Marian Balakowiczf9328632006-09-01 19:49:50 +0200158
Mike Frysinger1ea6bcd2009-06-14 23:33:14 -0400159# set default to nothing for native builds
Wolfgang Denka5284ef2007-03-06 18:01:47 +0100160ifeq ($(HOSTARCH),$(ARCH))
Mike Frysinger1ea6bcd2009-06-14 23:33:14 -0400161CROSS_COMPILE ?=
wdenk7ebf7442002-11-02 23:17:16 +0000162endif
wdenk7ebf7442002-11-02 23:17:16 +0000163
Wolfgang Denk92b197f2006-03-12 01:37:50 +0100164# load other configuration
165include $(TOPDIR)/config.mk
166
Ilya Yanokd51dfff2011-06-20 12:45:37 +0000167# If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use
168# that (or fail if absent). Otherwise, search for a linker script in a
169# standard location.
170
171ifndef LDSCRIPT
172 #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug
173 ifdef CONFIG_SYS_LDSCRIPT
174 # need to strip off double quotes
175 LDSCRIPT := $(subst ",,$(CONFIG_SYS_LDSCRIPT))
176 endif
177endif
178
179ifndef LDSCRIPT
180 ifeq ($(CONFIG_NAND_U_BOOT),y)
181 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds
182 ifeq ($(wildcard $(LDSCRIPT)),)
183 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds
184 endif
185 endif
186 ifeq ($(wildcard $(LDSCRIPT)),)
187 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
188 endif
189 ifeq ($(wildcard $(LDSCRIPT)),)
190 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds
191 endif
192 ifeq ($(wildcard $(LDSCRIPT)),)
193$(error could not find linker script)
194 endif
195endif
196
wdenk7ebf7442002-11-02 23:17:16 +0000197#########################################################################
198# U-Boot objects....order is important (i.e. start must be first)
199
Peter Tyser03b70042010-04-12 22:28:02 -0500200OBJS = $(CPUDIR)/start.o
Graeme Russfea25722011-04-13 19:43:28 +1000201ifeq ($(CPU),x86)
Peter Tyser03b70042010-04-12 22:28:02 -0500202OBJS += $(CPUDIR)/start16.o
203OBJS += $(CPUDIR)/resetvec.o
wdenk2262cfe2002-11-18 00:14:45 +0000204endif
wdenk7ebf7442002-11-02 23:17:16 +0000205ifeq ($(CPU),ppc4xx)
Peter Tyser03b70042010-04-12 22:28:02 -0500206OBJS += $(CPUDIR)/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +0000207endif
wdenk42d1f032003-10-15 23:53:47 +0000208ifeq ($(CPU),mpc85xx)
Peter Tyser03b70042010-04-12 22:28:02 -0500209OBJS += $(CPUDIR)/resetvec.o
wdenk42d1f032003-10-15 23:53:47 +0000210endif
wdenk7ebf7442002-11-02 23:17:16 +0000211
Marian Balakowiczf9328632006-09-01 19:49:50 +0200212OBJS := $(addprefix $(obj),$(OBJS))
213
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100214LIBS = lib/libgeneric.o
215LIBS += lib/lzma/liblzma.o
216LIBS += lib/lzo/liblzo.o
Mike Frysingere89516f2011-04-08 12:23:30 +0000217LIBS += lib/zlib/libz.o
Kim Phillips7608d752007-08-21 17:00:17 -0500218LIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100219 "board/$(VENDOR)/common/lib$(VENDOR).o"; fi)
220LIBS += $(CPUDIR)/lib$(CPU).o
wdenk1d9f4102004-10-09 22:21:29 +0000221ifdef SOC
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100222LIBS += $(CPUDIR)/$(SOC)/lib$(SOC).o
wdenk1d9f4102004-10-09 22:21:29 +0000223endif
Stefan Roese323bfa82007-04-23 12:00:22 +0200224ifeq ($(CPU),ixp)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100225LIBS += arch/arm/cpu/ixp/npe/libnpe.o
Stefan Roese323bfa82007-04-23 12:00:22 +0200226endif
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100227LIBS += arch/$(ARCH)/lib/lib$(ARCH).o
228LIBS += fs/cramfs/libcramfs.o fs/fat/libfat.o fs/fdos/libfdos.o fs/jffs2/libjffs2.o \
229 fs/reiserfs/libreiserfs.o fs/ext2/libext2fs.o fs/yaffs2/libyaffs2.o \
230 fs/ubifs/libubifs.o
231LIBS += net/libnet.o
232LIBS += disk/libdisk.o
233LIBS += drivers/bios_emulator/libatibiosemu.o
234LIBS += drivers/block/libblock.o
235LIBS += drivers/dma/libdma.o
236LIBS += drivers/fpga/libfpga.o
237LIBS += drivers/gpio/libgpio.o
238LIBS += drivers/hwmon/libhwmon.o
239LIBS += drivers/i2c/libi2c.o
240LIBS += drivers/input/libinput.o
241LIBS += drivers/misc/libmisc.o
242LIBS += drivers/mmc/libmmc.o
243LIBS += drivers/mtd/libmtd.o
244LIBS += drivers/mtd/nand/libnand.o
245LIBS += drivers/mtd/onenand/libonenand.o
246LIBS += drivers/mtd/ubi/libubi.o
247LIBS += drivers/mtd/spi/libspi_flash.o
248LIBS += drivers/net/libnet.o
249LIBS += drivers/net/phy/libphy.o
250LIBS += drivers/pci/libpci.o
251LIBS += drivers/pcmcia/libpcmcia.o
252LIBS += drivers/power/libpower.o
253LIBS += drivers/spi/libspi.o
Dave Liu7737d5c2006-11-03 12:11:15 -0600254ifeq ($(CPU),mpc83xx)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100255LIBS += drivers/qe/libqe.o
256LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
Dave Liu7737d5c2006-11-03 12:11:15 -0600257endif
Andy Flemingda9d4612007-08-14 00:14:25 -0500258ifeq ($(CPU),mpc85xx)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100259LIBS += drivers/qe/libqe.o
260LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
261LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500262endif
263ifeq ($(CPU),mpc86xx)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100264LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
265LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
Andy Flemingda9d4612007-08-14 00:14:25 -0500266endif
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100267LIBS += drivers/rtc/librtc.o
268LIBS += drivers/serial/libserial.o
269LIBS += drivers/twserial/libtws.o
Mike Frysinger181f5652011-06-24 21:12:36 -0400270LIBS += drivers/usb/eth/libusb_eth.o
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100271LIBS += drivers/usb/gadget/libusb_gadget.o
272LIBS += drivers/usb/host/libusb_host.o
273LIBS += drivers/usb/musb/libusb_musb.o
274LIBS += drivers/usb/phy/libusb_phy.o
275LIBS += drivers/video/libvideo.o
276LIBS += drivers/watchdog/libwatchdog.o
277LIBS += common/libcommon.o
278LIBS += lib/libfdt/libfdt.o
279LIBS += api/libapi.o
280LIBS += post/libpost.o
Marian Balakowiczf9328632006-09-01 19:49:50 +0200281
Steve Sakomand34efc72010-06-08 13:07:46 -0700282ifeq ($(SOC),omap3)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100283LIBS += $(CPUDIR)/omap-common/libomap-common.o
Steve Sakomand34efc72010-06-08 13:07:46 -0700284endif
285ifeq ($(SOC),omap4)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100286LIBS += $(CPUDIR)/omap-common/libomap-common.o
Steve Sakomand34efc72010-06-08 13:07:46 -0700287endif
288
Minkyu Kang852bd072010-08-19 13:48:11 +0900289ifeq ($(SOC),s5pc1xx)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100290LIBS += $(CPUDIR)/s5p-common/libs5p-common.o
Minkyu Kang852bd072010-08-19 13:48:11 +0900291endif
292ifeq ($(SOC),s5pc2xx)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100293LIBS += $(CPUDIR)/s5p-common/libs5p-common.o
Minkyu Kang852bd072010-08-19 13:48:11 +0900294endif
295
Wolfgang Denk566d49a2010-11-22 23:36:42 +0100296LIBS := $(addprefix $(obj),$(sort $(LIBS)))
Ilya Yanok28abd482011-06-20 12:45:38 +0000297.PHONY : $(LIBS) $(TIMESTAMP_FILE)
wdenka8c7c702003-12-06 19:49:23 +0000298
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100299LIBBOARD = board/$(BOARDDIR)/lib$(BOARD).o
Wolfgang Denkde109d92008-04-30 17:25:07 +0200300LIBBOARD := $(addprefix $(obj),$(LIBBOARD))
301
wdenk4f7cb082003-09-11 23:06:34 +0000302# Add GCC lib
Wolfgang Denk52b1bf22009-07-23 13:15:59 +0200303ifdef USE_PRIVATE_LIBGCC
304ifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
Matthias Weisser635d1b32010-11-18 09:35:09 +0100305PLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/libgcc.o
Wolfgang Denk52b1bf22009-07-23 13:15:59 +0200306else
307PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc
308endif
309else
310PLATFORM_LIBGCC = -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
311endif
312PLATFORM_LIBS += $(PLATFORM_LIBGCC)
313export PLATFORM_LIBS
wdenk3d3befa2004-03-14 15:06:13 +0000314
Mike Frysinger6ac9f472009-08-23 02:47:59 -0400315# Special flags for CPP when processing the linker script.
316# Pass the version down so we can handle backwards compatibility
317# on the fly.
318LDPPFLAGS += \
319 -include $(TOPDIR)/include/u-boot/u-boot.lds.h \
320 $(shell $(LD) --version | \
321 sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
322
Marian Balakowiczf9328632006-09-01 19:49:50 +0200323__OBJS := $(subst $(obj),,$(OBJS))
Wolfgang Denkde109d92008-04-30 17:25:07 +0200324__LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200325
wdenk7ebf7442002-11-02 23:17:16 +0000326#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000327#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000328
Mike Frysingerf3a14d32010-10-13 22:58:23 -0400329ifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
330BOARD_SIZE_CHECK = \
331 @actual=`wc -c $@ | awk '{print $$1}'`; \
332 limit=$(CONFIG_BOARD_SIZE_LIMIT); \
333 if test $$actual -gt $$limit; then \
334 echo "$@ exceeds file size limit:"; \
335 echo " limit: $$limit bytes"; \
336 echo " actual: $$actual bytes"; \
337 echo " excess: $$((actual - limit)) bytes"; \
338 exit 1; \
339 fi
340else
341BOARD_SIZE_CHECK =
342endif
343
Mike Frysinger3e883372009-06-15 00:25:19 -0400344# Always append ALL so that arch config.mk's can add custom ones
Daniel Schwierzeck4e0fbb92011-07-13 05:11:01 +0000345ALL-y += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map
Haiying Wange935a372011-01-27 09:44:59 -0500346
Daniel Schwierzeck4e0fbb92011-07-13 05:11:01 +0000347ALL-$(CONFIG_NAND_U_BOOT) += $(obj)u-boot-nand.bin
348ALL-$(CONFIG_ONENAND_U_BOOT) += $(obj)u-boot-onenand.bin
Haiying Wange935a372011-01-27 09:44:59 -0500349ONENAND_BIN ?= $(obj)onenand_ipl/onenand-ipl-2k.bin
Daniel Schwierzeck4e0fbb92011-07-13 05:11:01 +0000350ALL-$(CONFIG_MMC_U_BOOT) += $(obj)mmc_spl/u-boot-mmc-spl.bin
Daniel Schwierzeck5df2ee22011-07-13 05:11:04 +0000351ALL-$(CONFIG_SPL) += $(obj)spl/u-boot-spl.bin
wdenk7ebf7442002-11-02 23:17:16 +0000352
Daniel Schwierzeck4e0fbb92011-07-13 05:11:01 +0000353all: $(ALL-y)
wdenk7ebf7442002-11-02 23:17:16 +0000354
Marian Balakowiczf9328632006-09-01 19:49:50 +0200355$(obj)u-boot.hex: $(obj)u-boot
wdenk6310eb92005-01-09 21:28:15 +0000356 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
357
Marian Balakowiczf9328632006-09-01 19:49:50 +0200358$(obj)u-boot.srec: $(obj)u-boot
Ricardo Ribalda Delgado0817d682008-09-07 17:10:27 -0400359 $(OBJCOPY) -O srec $< $@
wdenk7ebf7442002-11-02 23:17:16 +0000360
Marian Balakowiczf9328632006-09-01 19:49:50 +0200361$(obj)u-boot.bin: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000362 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
Mike Frysingerf3a14d32010-10-13 22:58:23 -0400363 $(BOARD_SIZE_CHECK)
wdenk7ebf7442002-11-02 23:17:16 +0000364
Mike Frysinger94a91e22008-02-04 19:26:57 -0500365$(obj)u-boot.ldr: $(obj)u-boot
Mike Frysinger76d82182009-07-21 22:17:36 -0400366 $(CREATE_LDR_ENV)
Mike Frysinger68e56322008-08-07 18:56:56 -0400367 $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
Mike Frysingerf3a14d32010-10-13 22:58:23 -0400368 $(BOARD_SIZE_CHECK)
Mike Frysinger94a91e22008-02-04 19:26:57 -0500369
370$(obj)u-boot.ldr.hex: $(obj)u-boot.ldr
371 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary
372
373$(obj)u-boot.ldr.srec: $(obj)u-boot.ldr
374 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary
375
Marian Balakowiczf9328632006-09-01 19:49:50 +0200376$(obj)u-boot.img: $(obj)u-boot.bin
Wolfgang Denka2a0a712010-05-15 21:23:51 +0200377 $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200378 -a $(CONFIG_SYS_TEXT_BASE) -e 0 \
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100379 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenkbdccc4f2003-08-05 17:43:17 +0000380 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
381 -d $< $@
382
Stefano Babic8edcde52010-01-20 18:19:10 +0100383$(obj)u-boot.imx: $(obj)u-boot.bin
Stefano Babic45d7d722011-01-24 00:14:26 +0000384 $(obj)tools/mkimage -n $(CONFIG_IMX_CONFIG) -T imximage \
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200385 -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
Stefano Babic8edcde52010-01-20 18:19:10 +0100386
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530387$(obj)u-boot.kwb: $(obj)u-boot.bin
Prafulla Wadaskar31d80c72010-10-27 17:46:06 +0530388 $(obj)tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \
Eric Cooper2ea88b02010-10-19 13:31:11 -0400389 -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530390
Heiko Schocher566a4942007-06-22 19:11:54 +0200391$(obj)u-boot.sha1: $(obj)u-boot.bin
Heiko Schocher01159532007-07-14 01:06:58 +0200392 $(obj)tools/ubsha1 $(obj)u-boot.bin
Heiko Schocher566a4942007-06-22 19:11:54 +0200393
Marian Balakowiczf9328632006-09-01 19:49:50 +0200394$(obj)u-boot.dis: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000395 $(OBJDUMP) -d $< > $@
396
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400397GEN_UBOOT = \
Wolfgang Denkde109d92008-04-30 17:25:07 +0200398 UNDEF_SYM=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \
399 sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
Nobuhiro Iwamatsu8aba9dc2011-01-06 10:23:54 +0900400 cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $$UNDEF_SYM $(__OBJS) \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200401 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000402 -Map u-boot.map -o u-boot
Wolfgang Denk16a354f2010-10-26 00:08:35 +0200403$(obj)u-boot: depend \
404 $(SUBDIRS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400405 $(GEN_UBOOT)
406ifeq ($(CONFIG_KALLSYMS),y)
Wolfgang Denk1aada9c2009-08-17 14:00:53 +0200407 smap=`$(call SYSTEM_MAP,u-boot) | \
408 awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
409 $(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \
410 -c common/system_map.c -o $(obj)common/system_map.o
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400411 $(GEN_UBOOT) $(obj)common/system_map.o
412endif
wdenk7ebf7442002-11-02 23:17:16 +0000413
Peter Tyserd0d61442009-03-13 18:54:25 -0500414$(OBJS): depend
Peter Tyser03b70042010-04-12 22:28:02 -0500415 $(MAKE) -C $(CPUDIR) $(if $(REMOTE_BUILD),$@,$(notdir $@))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200416
Peter Tyserd0d61442009-03-13 18:54:25 -0500417$(LIBS): depend $(SUBDIRS)
Marian Balakowiczf9328632006-09-01 19:49:50 +0200418 $(MAKE) -C $(dir $(subst $(obj),,$@))
wdenka8c7c702003-12-06 19:49:23 +0000419
Peter Tyserd0d61442009-03-13 18:54:25 -0500420$(LIBBOARD): depend $(LIBS)
Wolfgang Denkde109d92008-04-30 17:25:07 +0200421 $(MAKE) -C $(dir $(subst $(obj),,$@))
422
Peter Tyserd0d61442009-03-13 18:54:25 -0500423$(SUBDIRS): depend
wdenkb028f712003-12-07 21:39:28 +0000424 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000425
Peter Tyserd0d61442009-03-13 18:54:25 -0500426$(LDSCRIPT): depend
Mike Frysingerf65c9812008-02-16 02:12:37 -0500427 $(MAKE) -C $(dir $@) $(notdir $@)
428
Wolfgang Denk1aada9c2009-08-17 14:00:53 +0200429$(obj)u-boot.lds: $(LDSCRIPT)
430 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
431
Haiying Wange935a372011-01-27 09:44:59 -0500432nand_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200433 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
Stefan Roese887e2ec2006-09-07 11:51:23 +0200434
Haiying Wange935a372011-01-27 09:44:59 -0500435$(obj)u-boot-nand.bin: nand_spl $(obj)u-boot.bin
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200436 cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin
Stefan Roese887e2ec2006-09-07 11:51:23 +0200437
Haiying Wange935a372011-01-27 09:44:59 -0500438onenand_ipl: $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk
Stefan Roesef2302d42008-08-06 14:05:38 +0200439 $(MAKE) -C onenand_ipl/board/$(BOARDDIR) all
Kyungmin Park751b9b52008-01-17 16:43:25 +0900440
Haiying Wange935a372011-01-27 09:44:59 -0500441$(obj)u-boot-onenand.bin: onenand_ipl $(obj)u-boot.bin
Kyungmin Parkca6189d2009-09-22 09:05:00 +0900442 cat $(ONENAND_BIN) $(obj)u-boot.bin > $(obj)u-boot-onenand.bin
Kyungmin Park751b9b52008-01-17 16:43:25 +0900443
Chander Kashyap0d3c62e2011-05-24 20:02:57 +0000444mmc_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend
445 $(MAKE) -C mmc_spl/board/$(BOARDDIR) all
446
447$(obj)mmc_spl/u-boot-mmc-spl.bin: mmc_spl
448
Daniel Schwierzeck5df2ee22011-07-13 05:11:04 +0000449$(obj)spl/u-boot-spl.bin: depend
450 $(MAKE) -C spl all
451
Peter Tyser561858e2008-11-03 09:30:59 -0600452$(TIMESTAMP_FILE):
Ilya Yanokd6b93712010-06-21 18:13:21 +0400453 @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@
454 @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@
Peter Tyser561858e2008-11-03 09:30:59 -0600455
Marian Balakowiczf9328632006-09-01 19:49:50 +0200456updater:
Mike Frysinger0358df42010-08-15 00:03:21 -0400457 $(MAKE) -C tools/updater all
dzu8f713fd2003-08-07 14:20:31 +0000458
Daniel Hobi2a998792010-01-18 18:13:39 +0100459# Explicitly make _depend in subdirs containing multiple targets to prevent
460# parallel sub-makes creating .depend files simultaneously.
Wolfgang Denk16a354f2010-10-26 00:08:35 +0200461depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) \
462 $(obj)include/autoconf.mk \
463 $(obj)include/generated/generic-asm-offsets.h
Peter Tyser03b70042010-04-12 22:28:02 -0500464 for dir in $(SUBDIRS) $(CPUDIR) $(dir $(LDSCRIPT)) ; do \
Daniel Hobi2a998792010-01-18 18:13:39 +0100465 $(MAKE) -C $$dir _depend ; done
wdenk7ebf7442002-11-02 23:17:16 +0000466
Li Yange5e4e702009-12-09 18:13:26 +0800467TAG_SUBDIRS = $(SUBDIRS)
468TAG_SUBDIRS += $(dir $(__LIBS))
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100469TAG_SUBDIRS += include
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100470
Horst Kronstorfer857d9ea2011-07-18 01:21:18 +0000471FIND := find
472FINDFLAGS := -L
473
Marian Balakowiczf9328632006-09-01 19:49:50 +0200474tags ctags:
Horst Kronstorfer857d9ea2011-07-18 01:21:18 +0000475 ctags -w -o $(obj)ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
Li Yange5e4e702009-12-09 18:13:26 +0800476 -name '*.[chS]' -print`
wdenk7ebf7442002-11-02 23:17:16 +0000477
478etags:
Horst Kronstorfer857d9ea2011-07-18 01:21:18 +0000479 etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
Li Yange5e4e702009-12-09 18:13:26 +0800480 -name '*.[chS]' -print`
Li Yangffda5862008-02-29 11:46:05 +0800481cscope:
Horst Kronstorfer857d9ea2011-07-18 01:21:18 +0000482 $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \
483 cscope.files
Li Yangffda5862008-02-29 11:46:05 +0800484 cscope -b -q -k
wdenk7ebf7442002-11-02 23:17:16 +0000485
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400486SYSTEM_MAP = \
487 $(NM) $1 | \
wdenk7ebf7442002-11-02 23:17:16 +0000488 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400489 LC_ALL=C sort
490$(obj)System.map: $(obj)u-boot
491 @$(call SYSTEM_MAP,$<) > $(obj)System.map
wdenk7ebf7442002-11-02 23:17:16 +0000492
Grant Likely2f155f62007-09-24 09:05:31 -0600493#
494# Auto-generate the autoconf.mk file (which is included by all makefiles)
495#
496# This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
497# the dep file is only include in this top level makefile to determine when
498# to regenerate the autoconf.mk file.
Wolfgang Denk1510b822008-05-13 23:15:52 +0200499$(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h
500 @$(XECHO) Generating $@ ; \
Mike Frysinger16fe7772008-02-18 05:10:07 -0500501 set -e ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100502 : Generate the dependancies ; \
Mike Frysinger9aef7382009-07-19 15:17:03 -0400503 $(CC) -x c -DDO_DEPS_ONLY -M $(HOSTCFLAGS) $(CPPFLAGS) \
Wolfgang Denk1510b822008-05-13 23:15:52 +0200504 -MQ $(obj)include/autoconf.mk include/common.h > $@
505
506$(obj)include/autoconf.mk: $(obj)include/config.h
507 @$(XECHO) Generating $@ ; \
508 set -e ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100509 : Extract the config macros ; \
Wolfgang Denk1510b822008-05-13 23:15:52 +0200510 $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \
Wolfgang Denk4a0f7532008-12-16 14:41:02 +0100511 sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
512 mv $@.tmp $@
Grant Likely2f155f62007-09-24 09:05:31 -0600513
Wolfgang Denk16a354f2010-10-26 00:08:35 +0200514$(obj)include/generated/generic-asm-offsets.h: $(obj)include/autoconf.mk.dep \
515 $(obj)lib/asm-offsets.s
516 @$(XECHO) Generating $@
517 tools/scripts/make-asm-offsets $(obj)lib/asm-offsets.s $@
518
519$(obj)lib/asm-offsets.s: $(obj)include/autoconf.mk.dep \
520 $(src)lib/asm-offsets.c
521 @mkdir -p $(obj)lib
522 $(CC) -DDO_DEPS_ONLY \
523 $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
524 -o $@ $(src)lib/asm-offsets.c -c -S
525
wdenk7ebf7442002-11-02 23:17:16 +0000526#########################################################################
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100527else # !config.mk
Marian Balakowiczf9328632006-09-01 19:49:50 +0200528all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
529$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
Ilya Yanok28abd482011-06-20 12:45:38 +0000530$(filter-out tools,$(SUBDIRS)) $(TIMESTAMP_FILE) \
Mike Frysinger0358df42010-08-15 00:03:21 -0400531updater depend dep tags ctags etags cscope $(obj)System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000532 @echo "System not configured - see README" >&2
533 @ exit 1
Mike Frysingerc7c0d542010-01-21 04:03:22 -0500534
Ilya Yanok28abd482011-06-20 12:45:38 +0000535tools: $(VERSION_FILE)
Mike Frysinger0358df42010-08-15 00:03:21 -0400536 $(MAKE) -C $@ all
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100537endif # config.mk
wdenk7ebf7442002-11-02 23:17:16 +0000538
Ilya Yanok28abd482011-06-20 12:45:38 +0000539$(VERSION_FILE):
Mike Frysinger14ce91b2011-06-30 16:56:20 +0000540 @mkdir -p $(dir $(VERSION_FILE))
Ilya Yanok28abd482011-06-20 12:45:38 +0000541 @( localvers='$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ; \
542 printf '#define PLAIN_VERSION "%s%s"\n' \
543 "$(U_BOOT_VERSION)" "$${localvers}" ; \
544 printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \
545 "$(U_BOOT_VERSION)" "$${localvers}" ; \
546 ) > $@.tmp
547 @( printf '#define CC_VERSION_STRING "%s"\n' \
548 '$(shell $(CC) --version | head -n 1)' )>> $@.tmp
549 @( printf '#define LD_VERSION_STRING "%s"\n' \
550 '$(shell $(LD) -v | head -n 1)' )>> $@.tmp
551 @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
552
Mike Frysinger0358df42010-08-15 00:03:21 -0400553easylogo env gdb:
554 $(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION}
555gdbtools: gdb
556
Ilya Yanok28abd482011-06-20 12:45:38 +0000557tools-all: easylogo env gdb $(VERSION_FILE)
Mike Frysinger0358df42010-08-15 00:03:21 -0400558 $(MAKE) -C tools HOST_TOOLS_ALL=y
559
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200560.PHONY : CHANGELOG
561CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -0400562 git log --no-merges U-Boot-1_1_5.. | \
563 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200564
Harald Welte0a823aa2008-07-09 22:30:30 +0800565include/license.h: tools/bin2header COPYING
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200566 cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
wdenk7ebf7442002-11-02 23:17:16 +0000567#########################################################################
568
569unconfig:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200570 @rm -f $(obj)include/config.h $(obj)include/config.mk \
Grant Likely2f155f62007-09-24 09:05:31 -0600571 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \
572 $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep
wdenk7ebf7442002-11-02 23:17:16 +0000573
Wolfgang Denka6862bc2010-05-27 23:18:36 +0200574%_config:: unconfig
575 @$(MKCONFIG) -A $(@:_config=)
576
Loïc Minierd6a5e6d2011-01-19 13:16:30 +0100577sinclude $(obj).boards.depend
578$(obj).boards.depend: boards.cfg
Mike Frysinger727ebd92010-08-11 18:52:36 -0400579 awk '(NF && $$1 !~ /^#/) { print $$1 ": " $$1 "_config; $$(MAKE)" }' $< > $@
Mike Frysinger9f4a4202009-10-01 12:11:54 -0400580
Wolfgang Denk8c994632010-05-27 23:18:35 +0200581#
582# Functions to generate common board directory names
583#
584lcname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\L\1/')
585ucname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\U\1/')
586
wdenk4e5ca3e2003-12-08 01:34:36 +0000587#########################################################################
588## Coldfire
589#########################################################################
590
Wolfgang Wegner9d79e572010-01-25 11:27:44 +0100591astro_mcf5373l_config \
592astro_mcf5373l_RAM_config : unconfig
Wolfgang Denked7a1962010-05-27 23:18:34 +0200593 @$(MKCONFIG) -n $@ -t $@ astro_mcf5373l m68k mcf532x mcf5373l astro
Wolfgang Wegner9d79e572010-01-25 11:27:44 +0100594
TsiChung Liewa21d0c22008-10-21 15:37:02 +0000595M52277EVB_config \
596M52277EVB_spansion_config \
597M52277EVB_stmicro_config : unconfig
598 @case "$@" in \
599 M52277EVB_config) FLASH=SPANSION;; \
600 M52277EVB_spansion_config) FLASH=SPANSION;; \
601 M52277EVB_stmicro_config) FLASH=STMICRO;; \
602 esac; \
603 if [ "$${FLASH}" = "SPANSION" ] ; then \
604 echo "#define CONFIG_SYS_SPANSION_BOOT" >> $(obj)include/config.h ; \
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200605 echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m52277evb/config.tmp ; \
TsiChung Liewa21d0c22008-10-21 15:37:02 +0000606 cp $(obj)board/freescale/m52277evb/u-boot.spa $(obj)board/freescale/m52277evb/u-boot.lds ; \
TsiChung Liewa21d0c22008-10-21 15:37:02 +0000607 fi; \
608 if [ "$${FLASH}" = "STMICRO" ] ; then \
609 echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \
610 echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200611 echo "CONFIG_SYS_TEXT_BASE = 0x43E00000" > $(obj)board/freescale/m52277evb/config.tmp ; \
TsiChung Liewa21d0c22008-10-21 15:37:02 +0000612 cp $(obj)board/freescale/m52277evb/u-boot.stm $(obj)board/freescale/m52277evb/u-boot.lds ; \
TsiChung Liewa21d0c22008-10-21 15:37:02 +0000613 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200614 @$(MKCONFIG) -n $@ -a M52277EVB m68k mcf5227x m52277evb freescale
TsiChungLiew1552af72008-01-14 17:43:33 -0600615
TsiChungLiew4a442d32007-08-16 19:23:50 -0500616M5235EVB_config \
617M5235EVB_Flash16_config \
618M5235EVB_Flash32_config: unconfig
619 @case "$@" in \
620 M5235EVB_config) FLASH=16;; \
621 M5235EVB_Flash16_config) FLASH=16;; \
622 M5235EVB_Flash32_config) FLASH=32;; \
623 esac; \
TsiChungLiew4a442d32007-08-16 19:23:50 -0500624 if [ "$${FLASH}" != "16" ] ; then \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100625 echo "#define NORFLASH_PS32BIT 1" >> $(obj)include/config.h ; \
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200626 echo "CONFIG_SYS_TEXT_BASE = 0xFFC00000" > $(obj)board/freescale/m5235evb/config.tmp ; \
TsiChungLiew4a442d32007-08-16 19:23:50 -0500627 cp $(obj)board/freescale/m5235evb/u-boot.32 $(obj)board/freescale/m5235evb/u-boot.lds ; \
628 else \
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200629 echo "CONFIG_SYS_TEXT_BASE = 0xFFE00000" > $(obj)board/freescale/m5235evb/config.tmp ; \
TsiChungLiew4a442d32007-08-16 19:23:50 -0500630 cp $(obj)board/freescale/m5235evb/u-boot.16 $(obj)board/freescale/m5235evb/u-boot.lds ; \
631 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200632 @$(MKCONFIG) -n $@ -a M5235EVB m68k mcf523x m5235evb freescale
TsiChungLiew4a442d32007-08-16 19:23:50 -0500633
Wolfgang Denk74812662005-12-12 16:06:05 +0100634cobra5272_config : unconfig
Wolfgang Denked7a1962010-05-27 23:18:34 +0200635 @$(MKCONFIG) $@ m68k mcf52x2 cobra5272
Wolfgang Denk74812662005-12-12 16:06:05 +0100636
Wolfgang Denk4176c792006-06-10 19:27:47 +0200637EB+MCF-EV123_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200638 @mkdir -p $(obj)include
639 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200640 @echo "CONFIG_SYS_TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200641 @$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +0200642
643EB+MCF-EV123_internal_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200644 @mkdir -p $(obj)include
645 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200646 @echo "CONFIG_SYS_TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200647 @$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +0200648
TsiChung Liew8e585f02007-06-18 13:50:13 -0500649M5329AFEE_config \
650M5329BFEE_config : unconfig
651 @case "$@" in \
652 M5329AFEE_config) NAND=0;; \
653 M5329BFEE_config) NAND=16;; \
654 esac; \
TsiChung Liew8e585f02007-06-18 13:50:13 -0500655 if [ "$${NAND}" != "0" ] ; then \
TsiChungLiewab77bc52007-08-15 15:39:17 -0500656 echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \
TsiChung Liew8e585f02007-06-18 13:50:13 -0500657 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200658 @$(MKCONFIG) -n $@ -a M5329EVB m68k mcf532x m5329evb freescale
TsiChung Liew8e585f02007-06-18 13:50:13 -0500659
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600660M5373EVB_config : unconfig
661 @case "$@" in \
662 M5373EVB_config) NAND=16;; \
663 esac; \
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600664 if [ "$${NAND}" != "0" ] ; then \
665 echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \
666 fi
667 @$(MKCONFIG) -a M5373EVB m68k mcf532x m5373evb freescale
668
TsiChung Liew05316f82008-08-11 13:41:49 +0000669M54451EVB_config \
TsiChung Liew05316f82008-08-11 13:41:49 +0000670M54451EVB_stmicro_config : unconfig
671 @case "$@" in \
TsiChung Liew709b3842009-06-11 15:39:57 +0000672 M54451EVB_config) FLASH=NOR;; \
TsiChung Liew05316f82008-08-11 13:41:49 +0000673 M54451EVB_stmicro_config) FLASH=STMICRO;; \
674 esac; \
TsiChung Liew709b3842009-06-11 15:39:57 +0000675 if [ "$${FLASH}" = "NOR" ] ; then \
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200676 echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54451evb/config.tmp ; \
TsiChung Liew05316f82008-08-11 13:41:49 +0000677 cp $(obj)board/freescale/m54451evb/u-boot.spa $(obj)board/freescale/m54451evb/u-boot.lds ; \
TsiChung Liew05316f82008-08-11 13:41:49 +0000678 fi; \
679 if [ "$${FLASH}" = "STMICRO" ] ; then \
680 echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200681 echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200682 echo "CONFIG_SYS_TEXT_BASE = 0x47E00000" > $(obj)board/freescale/m54451evb/config.tmp ; \
TsiChung Liew05316f82008-08-11 13:41:49 +0000683 cp $(obj)board/freescale/m54451evb/u-boot.stm $(obj)board/freescale/m54451evb/u-boot.lds ; \
TsiChung Liew05316f82008-08-11 13:41:49 +0000684 fi; \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200685 echo "#define CONFIG_SYS_INPUT_CLKSRC 24000000" >> $(obj)include/config.h ;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200686 @$(MKCONFIG) -n $@ -a M54451EVB m68k mcf5445x m54451evb freescale
TsiChung Liew05316f82008-08-11 13:41:49 +0000687
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500688M54455EVB_config \
689M54455EVB_atmel_config \
690M54455EVB_intel_config \
691M54455EVB_a33_config \
692M54455EVB_a66_config \
693M54455EVB_i33_config \
TsiChung Liew9f751552008-07-23 20:38:53 -0500694M54455EVB_i66_config \
695M54455EVB_stm33_config : unconfig
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500696 @case "$@" in \
697 M54455EVB_config) FLASH=ATMEL; FREQ=33333333;; \
698 M54455EVB_atmel_config) FLASH=ATMEL; FREQ=33333333;; \
699 M54455EVB_intel_config) FLASH=INTEL; FREQ=33333333;; \
700 M54455EVB_a33_config) FLASH=ATMEL; FREQ=33333333;; \
701 M54455EVB_a66_config) FLASH=ATMEL; FREQ=66666666;; \
702 M54455EVB_i33_config) FLASH=INTEL; FREQ=33333333;; \
703 M54455EVB_i66_config) FLASH=INTEL; FREQ=66666666;; \
TsiChung Liew9f751552008-07-23 20:38:53 -0500704 M54455EVB_stm33_config) FLASH=STMICRO; FREQ=33333333;; \
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500705 esac; \
Wolfgang Denk1aaab9b2008-01-02 15:54:45 +0100706 if [ "$${FLASH}" = "INTEL" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200707 echo "#define CONFIG_SYS_INTEL_BOOT" >> $(obj)include/config.h ; \
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200708 echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54455evb/config.tmp ; \
TsiChungLiewe8ee8f32007-10-25 17:16:22 -0500709 cp $(obj)board/freescale/m54455evb/u-boot.int $(obj)board/freescale/m54455evb/u-boot.lds ; \
TsiChung Liew9f751552008-07-23 20:38:53 -0500710 fi; \
711 if [ "$${FLASH}" = "ATMEL" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200712 echo "#define CONFIG_SYS_ATMEL_BOOT" >> $(obj)include/config.h ; \
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200713 echo "CONFIG_SYS_TEXT_BASE = 0x04000000" > $(obj)board/freescale/m54455evb/config.tmp ; \
TsiChungLiewe8ee8f32007-10-25 17:16:22 -0500714 cp $(obj)board/freescale/m54455evb/u-boot.atm $(obj)board/freescale/m54455evb/u-boot.lds ; \
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500715 fi; \
TsiChung Liew9f751552008-07-23 20:38:53 -0500716 if [ "$${FLASH}" = "STMICRO" ] ; then \
717 echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200718 echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200719 echo "CONFIG_SYS_TEXT_BASE = 0x4FE00000" > $(obj)board/freescale/m54455evb/config.tmp ; \
TsiChung Liew9f751552008-07-23 20:38:53 -0500720 cp $(obj)board/freescale/m54455evb/u-boot.stm $(obj)board/freescale/m54455evb/u-boot.lds ; \
TsiChung Liew9f751552008-07-23 20:38:53 -0500721 fi; \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200722 echo "#define CONFIG_SYS_INPUT_CLKSRC $${FREQ}" >> $(obj)include/config.h ; \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200723 @$(MKCONFIG) -n $@ -a M54455EVB m68k mcf5445x m54455evb freescale
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500724
TsiChungLiew57a12722008-01-15 14:15:46 -0600725M5475AFE_config \
726M5475BFE_config \
727M5475CFE_config \
728M5475DFE_config \
729M5475EFE_config \
730M5475FFE_config \
731M5475GFE_config : unconfig
732 @case "$@" in \
733 M5475AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
734 M5475BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \
735 M5475CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \
736 M5475DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \
737 M5475EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \
738 M5475FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \
739 M5475GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
740 esac; \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200741 echo "#define CONFIG_SYS_BUSCLK 133333333" > $(obj)include/config.h ; \
742 echo "#define CONFIG_SYS_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \
743 echo "#define CONFIG_SYS_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -0600744 if [ "$${RAM1}" != "0" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200745 echo "#define CONFIG_SYS_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -0600746 fi; \
747 if [ "$${CODE}" != "0" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200748 echo "#define CONFIG_SYS_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -0600749 fi; \
750 if [ "$${VID}" == "1" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200751 echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -0600752 fi; \
753 if [ "$${USB}" == "1" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200754 echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -0600755 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200756 @$(MKCONFIG) -n $@ -a M5475EVB m68k mcf547x_8x m547xevb freescale
TsiChungLiew57a12722008-01-15 14:15:46 -0600757
758M5485AFE_config \
759M5485BFE_config \
760M5485CFE_config \
761M5485DFE_config \
762M5485EFE_config \
763M5485FFE_config \
764M5485GFE_config \
765M5485HFE_config : unconfig
766 @case "$@" in \
767 M5485AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
768 M5485BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \
769 M5485CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \
770 M5485DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \
771 M5485EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \
772 M5485FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \
773 M5485GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
TsiChungLiew4d264ef2008-01-30 15:08:15 -0600774 M5485HFE_config) BOOT=2;CODE=16;VID=1;USB=0;RAM=64;RAM1=0;; \
TsiChungLiew57a12722008-01-15 14:15:46 -0600775 esac; \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200776 echo "#define CONFIG_SYS_BUSCLK 100000000" > $(obj)include/config.h ; \
777 echo "#define CONFIG_SYS_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \
778 echo "#define CONFIG_SYS_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -0600779 if [ "$${RAM1}" != "0" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200780 echo "#define CONFIG_SYS_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -0600781 fi; \
782 if [ "$${CODE}" != "0" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200783 echo "#define CONFIG_SYS_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -0600784 fi; \
785 if [ "$${VID}" == "1" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200786 echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -0600787 fi; \
788 if [ "$${USB}" == "1" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200789 echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -0600790 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200791 @$(MKCONFIG) -n $@ -a M5485EVB m68k mcf547x_8x m548xevb freescale
TsiChungLiew57a12722008-01-15 14:15:46 -0600792
wdenk7ebf7442002-11-02 23:17:16 +0000793#========================================================================
794# ARM
795#========================================================================
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +0800796
Ulf Samuelssona4b46ed2008-04-12 20:56:03 +0200797#########################################################################
Matthias Weisser34be1062010-01-18 10:58:13 +0100798## ARM926EJ-S Systems
Ulf Samuelssona4b46ed2008-04-12 20:56:03 +0200799#########################################################################
800
Nicolas Ferre89a7a872008-12-06 13:11:14 +0100801at91sam9261ek_nandflash_config \
802at91sam9261ek_dataflash_cs0_config \
803at91sam9261ek_dataflash_cs3_config \
Sedji Gaouaou5ccc2d92009-06-25 17:04:15 +0200804at91sam9261ek_config \
805at91sam9g10ek_nandflash_config \
806at91sam9g10ek_dataflash_cs0_config \
807at91sam9g10ek_dataflash_cs3_config \
808at91sam9g10ek_config : unconfig
Jean-Christophe PLAGNIOL-VILLARDe12d9a82009-01-03 17:22:24 +0100809 @mkdir -p $(obj)include
Sedji Gaouaou5ccc2d92009-06-25 17:04:15 +0200810 @if [ "$(findstring 9g10,$@)" ] ; then \
811 echo "#define CONFIG_AT91SAM9G10EK 1" >>$(obj)include/config.h ; \
Sedji Gaouaou5ccc2d92009-06-25 17:04:15 +0200812 else \
813 echo "#define CONFIG_AT91SAM9261EK 1" >>$(obj)include/config.h ; \
814 fi;
Nicolas Ferre89a7a872008-12-06 13:11:14 +0100815 @if [ "$(findstring _nandflash,$@)" ] ; then \
816 echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
Sedji Gaouaou5ccc2d92009-06-25 17:04:15 +0200817 elif [ "$(findstring dataflash_cs0,$@)" ] ; then \
Nicolas Ferre89a7a872008-12-06 13:11:14 +0100818 echo "#define CONFIG_SYS_USE_DATAFLASH_CS3 1" >>$(obj)include/config.h ; \
Nicolas Ferre89a7a872008-12-06 13:11:14 +0100819 else \
820 echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \
Nicolas Ferre89a7a872008-12-06 13:11:14 +0100821 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200822 @$(MKCONFIG) -n $@ -a at91sam9261ek arm arm926ejs at91sam9261ek atmel at91
Jean-Christophe PLAGNIOL-VILLARD28962f52008-11-01 10:47:59 +0100823
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200824at91sam9263ek_norflash_config \
825at91sam9263ek_norflash_boot_config \
Nicolas Ferre89a7a872008-12-06 13:11:14 +0100826at91sam9263ek_nandflash_config \
827at91sam9263ek_dataflash_config \
828at91sam9263ek_dataflash_cs0_config \
Jean-Christophe PLAGNIOL-VILLARD28962f52008-11-01 10:47:59 +0100829at91sam9263ek_config : unconfig
Jean-Christophe PLAGNIOL-VILLARDe12d9a82009-01-03 17:22:24 +0100830 @mkdir -p $(obj)include
Nicolas Ferre89a7a872008-12-06 13:11:14 +0100831 @if [ "$(findstring _nandflash,$@)" ] ; then \
832 echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200833 elif [ "$(findstring norflash,$@)" ] ; then \
834 echo "#define CONFIG_SYS_USE_NORFLASH 1" >>$(obj)include/config.h ; \
Nicolas Ferre89a7a872008-12-06 13:11:14 +0100835 else \
836 echo "#define CONFIG_SYS_USE_DATAFLASH 1" >>$(obj)include/config.h ; \
Nicolas Ferre89a7a872008-12-06 13:11:14 +0100837 fi;
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200838 @if [ "$(findstring norflash_boot,$@)" ] ; then \
839 echo "#define CONFIG_SYS_USE_BOOT_NORFLASH 1" >>$(obj)include/config.h ; \
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200840 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200841 @$(MKCONFIG) -n $@ -a at91sam9263ek arm arm926ejs at91sam9263ek atmel at91
Jean-Christophe PLAGNIOL-VILLARD28962f52008-11-01 10:47:59 +0100842
Nicolas Ferre89a7a872008-12-06 13:11:14 +0100843at91sam9rlek_nandflash_config \
844at91sam9rlek_dataflash_config \
845at91sam9rlek_dataflash_cs0_config \
Jean-Christophe PLAGNIOL-VILLARD28962f52008-11-01 10:47:59 +0100846at91sam9rlek_config : unconfig
Jean-Christophe PLAGNIOL-VILLARDe12d9a82009-01-03 17:22:24 +0100847 @mkdir -p $(obj)include
Nicolas Ferre89a7a872008-12-06 13:11:14 +0100848 @if [ "$(findstring _nandflash,$@)" ] ; then \
849 echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
Nicolas Ferre89a7a872008-12-06 13:11:14 +0100850 else \
851 echo "#define CONFIG_SYS_USE_DATAFLASH 1" >>$(obj)include/config.h ; \
Nicolas Ferre89a7a872008-12-06 13:11:14 +0100852 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200853 @$(MKCONFIG) -n $@ -a at91sam9rlek arm arm926ejs at91sam9rlek atmel at91
Jean-Christophe PLAGNIOL-VILLARD28962f52008-11-01 10:47:59 +0100854
Sedji Gaouaou22ee6472009-07-09 10:16:29 +0200855at91sam9m10g45ek_nandflash_config \
856at91sam9m10g45ek_dataflash_config \
857at91sam9m10g45ek_dataflash_cs0_config \
858at91sam9m10g45ek_config \
859at91sam9g45ekes_nandflash_config \
860at91sam9g45ekes_dataflash_config \
861at91sam9g45ekes_dataflash_cs0_config \
862at91sam9g45ekes_config : unconfig
863 @mkdir -p $(obj)include
864 @if [ "$(findstring 9m10,$@)" ] ; then \
865 echo "#define CONFIG_AT91SAM9M10G45EK 1" >>$(obj)include/config.h ; \
Sedji Gaouaou22ee6472009-07-09 10:16:29 +0200866 else \
867 echo "#define CONFIG_AT91SAM9G45EKES 1" >>$(obj)include/config.h ; \
868 fi;
Sedji Gaouaou22ee6472009-07-09 10:16:29 +0200869 @if [ "$(findstring _nandflash,$@)" ] ; then \
870 echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
Sedji Gaouaou22ee6472009-07-09 10:16:29 +0200871 else \
872 echo "#define CONFIG_ATMEL_SPI 1" >>$(obj)include/config.h ; \
Sedji Gaouaou22ee6472009-07-09 10:16:29 +0200873 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200874 @$(MKCONFIG) -n $@ -a at91sam9m10g45ek arm arm926ejs at91sam9m10g45ek atmel at91
Sedji Gaouaou22ee6472009-07-09 10:16:29 +0200875
Asen Dimovb5d289f2010-04-20 22:49:04 +0300876pm9g45_config : unconfig
877 @mkdir -p $(obj)include
878 @$(MKCONFIG) -a pm9g45 arm arm926ejs pm9g45 ronetix at91
879
Albin Tonnerre94539672009-08-24 18:03:26 +0200880SBC35_A9G20_NANDFLASH_config \
881SBC35_A9G20_EEPROM_config \
882SBC35_A9G20_config : unconfig
883 @mkdir -p $(obj)include
884 @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200885 @$(MKCONFIG) -n $@ -a sbc35_a9g20 arm arm926ejs sbc35_a9g20 calao at91
Albin Tonnerre94539672009-08-24 18:03:26 +0200886
Albin Tonnerre2dc851e2009-08-20 16:04:49 +0200887TNY_A9G20_NANDFLASH_config \
888TNY_A9G20_EEPROM_config \
889TNY_A9G20_config \
890TNY_A9260_NANDFLASH_config \
891TNY_A9260_EEPROM_config \
892TNY_A9260_config : unconfig
893 @mkdir -p $(obj)include
894 @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200895 @$(MKCONFIG) -n $@ -a tny_a9260 arm arm926ejs tny_a9260 calao at91
Albin Tonnerre2dc851e2009-08-20 16:04:49 +0200896
Wolfgang Denk74f43042005-09-25 01:48:28 +0200897########################################################################
Wolfgang Denk87cb6862005-10-06 17:08:18 +0200898## ARM Integrator boards - see doc/README-integrator for more info.
899integratorap_config \
900ap_config \
901ap966_config \
902ap922_config \
903ap922_XA10_config \
904ap7_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100905ap720t_config \
Wolfgang Denk87cb6862005-10-06 17:08:18 +0200906ap920t_config \
907ap926ejs_config \
908ap946es_config: unconfig
Jean-Christophe PLAGNIOL-VILLARD576afd42009-05-17 00:58:37 +0200909 @board/armltd/integrator/split_by_variant.sh ap $@
wdenk3d3befa2004-03-14 15:06:13 +0000910
Wolfgang Denk87cb6862005-10-06 17:08:18 +0200911integratorcp_config \
912cp_config \
913cp920t_config \
914cp926ejs_config \
915cp946es_config \
916cp1136_config \
917cp966_config \
918cp922_config \
919cp922_XA10_config \
920cp1026_config: unconfig
Jean-Christophe PLAGNIOL-VILLARD576afd42009-05-17 00:58:37 +0200921 @board/armltd/integrator/split_by_variant.sh cp $@
wdenk25d67122004-12-10 11:40:40 +0000922
Ulf Samuelssona4b46ed2008-04-12 20:56:03 +0200923xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
924
wdenk63e73c92004-02-23 22:22:28 +0000925omap1610inn_config \
926omap1610inn_cs0boot_config \
927omap1610inn_cs3boot_config \
wdenk3ff02c22004-06-09 15:25:53 +0000928omap1610inn_cs_autoboot_config \
wdenk63e73c92004-02-23 22:22:28 +0000929omap1610h2_config \
930omap1610h2_cs0boot_config \
wdenk3ff02c22004-06-09 15:25:53 +0000931omap1610h2_cs3boot_config \
932omap1610h2_cs_autoboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200933 @mkdir -p $(obj)include
wdenk63e73c92004-02-23 22:22:28 +0000934 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +0200935 echo "#define CONFIG_CS0_BOOT" >> .$(obj)include/config.h ; \
wdenk3ff02c22004-06-09 15:25:53 +0000936 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +0200937 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)include/config.h ; \
wdenk63e73c92004-02-23 22:22:28 +0000938 else \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +0200939 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenk63e73c92004-02-23 22:22:28 +0000940 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200941 @$(MKCONFIG) -n $@ -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn ti omap
wdenk6f213472003-08-29 22:00:43 +0000942
wdenka56bd922004-06-06 23:13:55 +0000943omap730p2_config \
944omap730p2_cs0boot_config \
945omap730p2_cs3boot_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200946 @mkdir -p $(obj)include
wdenka56bd922004-06-06 23:13:55 +0000947 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200948 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +0000949 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200950 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +0000951 fi;
Wolfgang Denked7a1962010-05-27 23:18:34 +0200952 @$(MKCONFIG) -n $@ -a omap730p2 arm arm926ejs omap730p2 ti omap
wdenka56bd922004-06-06 23:13:55 +0000953
Vipin KUMAR080cfee2010-01-15 19:15:52 +0530954spear300_config \
Vipin KUMAR7da69232010-01-15 19:15:53 +0530955spear310_config \
956spear320_config : unconfig
Wolfgang Denked7a1962010-05-27 23:18:34 +0200957 @$(MKCONFIG) -n $@ -t $@ spear3xx arm arm926ejs $(@:_config=) spear spear
Vipin KUMAR7e074152010-01-15 19:15:50 +0530958
Vipin KUMAR566c9c12010-01-15 19:15:48 +0530959spear600_config : unconfig
Wolfgang Denked7a1962010-05-27 23:18:34 +0200960 @$(MKCONFIG) -n $@ -t $@ spear6xx arm arm926ejs $(@:_config=) spear spear
Vipin KUMAR566c9c12010-01-15 19:15:48 +0530961
Jean-Christophe PLAGNIOL-VILLARD47fd3bf2009-01-28 21:58:03 +0100962SX1_stdout_serial_config \
963SX1_config: unconfig
964 @mkdir -p $(obj)include
965 @if [ "$(findstring _stdout_serial_, $@)" ] ; then \
966 echo "#undef CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
Jean-Christophe PLAGNIOL-VILLARD47fd3bf2009-01-28 21:58:03 +0100967 else \
968 echo "#define CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
Jean-Christophe PLAGNIOL-VILLARD47fd3bf2009-01-28 21:58:03 +0100969 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200970 @$(MKCONFIG) -n $@ SX1 arm arm925t sx1
wdenk2d24a3a2004-06-09 21:50:45 +0000971
John Rigby6895d452010-01-25 23:12:58 -0700972tx25_config : unconfig
John Rigby6895d452010-01-25 23:12:58 -0700973 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
Wolfgang Denked7a1962010-05-27 23:18:34 +0200974 @$(MKCONFIG) $@ arm arm926ejs tx25 karo mx25
John Rigby6895d452010-01-25 23:12:58 -0700975
Wolfgang Denka6862bc2010-05-27 23:18:36 +0200976edb9301_config \
977edb9302_config \
978edb9302a_config \
979edb9307_config \
980edb9307a_config \
981edb9312_config \
982edb9315_config \
983edb9315a_config: unconfig
984 @$(MKCONFIG) -n $@ -t $(@:_config=) edb93xx arm arm920t edb93xx - ep93xx
985
Wolfgang Denk699f0512008-07-15 22:22:44 +0200986#########################################################################
Wolfgang Denk87cb6862005-10-06 17:08:18 +0200987# ARM supplied Versatile development boards
Wolfgang Denk699f0512008-07-15 22:22:44 +0200988#########################################################################
989
Wolfgang Denk87cb6862005-10-06 17:08:18 +0200990versatile_config \
991versatileab_config \
992versatilepb_config : unconfig
Jean-Christophe PLAGNIOL-VILLARDe4943ec2009-01-29 12:07:21 +0100993 @board/armltd/versatile/split_by_variant.sh $@
wdenk074cff02004-02-24 00:16:43 +0000994
995#########################################################################
wdenk43d96162003-03-06 00:02:04 +0000996## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +0000997#########################################################################
998
Stefan Roese9d8d5a52007-01-18 16:05:47 +0100999pdnb3_config \
Wolfgang Denkf9301e12008-03-04 14:58:31 +01001000scpu_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001001 @mkdir -p $(obj)include
Stefan Roese9d8d5a52007-01-18 16:05:47 +01001002 @if [ "$(findstring scpu_,$@)" ] ; then \
Wolfgang Denkf9301e12008-03-04 14:58:31 +01001003 echo "#define CONFIG_SCPU" >>$(obj)include/config.h ; \
Stefan Roese9d8d5a52007-01-18 16:05:47 +01001004 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001005 @$(MKCONFIG) -n $@ -a pdnb3 arm ixp pdnb3 prodrive
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02001006
wdenk8ed96042005-01-09 23:16:25 +00001007#########################################################################
1008## ARM1136 Systems
1009#########################################################################
wdenk8ed96042005-01-09 23:16:25 +00001010
Peter Pearse5ca98812007-11-09 15:24:26 +00001011apollon_config : unconfig
Wolfgang Denk8cbf4e42009-12-06 00:26:19 +01001012 @mkdir -p $(obj)include
Kyungmin Park751b9b52008-01-17 16:43:25 +09001013 @echo "#define CONFIG_ONENAND_U_BOOT" > $(obj)include/config.h
Kyungmin Park751b9b52008-01-17 16:43:25 +09001014 @echo "CONFIG_ONENAND_U_BOOT = y" >> $(obj)include/config.mk
Wolfgang Denka6862bc2010-05-27 23:18:36 +02001015 @$(MKCONFIG) $@ arm arm1136 apollon - omap24xx
Peter Pearse5ca98812007-11-09 15:24:26 +00001016
Guennadi Liakhovetskia2bb7102009-02-24 10:44:02 +01001017imx31_phycore_eet_config \
Sascha Hauer5ad86212008-03-26 20:41:17 +01001018imx31_phycore_config : unconfig
Guennadi Liakhovetski69c5bf22009-04-05 00:37:07 +02001019 @mkdir -p $(obj)include
Guennadi Liakhovetskia2bb7102009-02-24 10:44:02 +01001020 @if [ -n "$(findstring _eet_,$@)" ]; then \
1021 echo "#define CONFIG_IMX31_PHYCORE_EET" >> $(obj)include/config.h; \
1022 fi
Wolfgang Denka6862bc2010-05-27 23:18:36 +02001023 @$(MKCONFIG) -n $@ -a imx31_phycore arm arm1136 imx31_phycore - mx31
Sascha Hauer5ad86212008-03-26 20:41:17 +01001024
Magnus Liljad08e5ca2009-07-04 10:31:24 +02001025mx31pdk_config \
1026mx31pdk_nand_config : unconfig
1027 @mkdir -p $(obj)include
1028 @if [ -n "$(findstring _nand_,$@)" ]; then \
1029 echo "#define CONFIG_NAND_U_BOOT" >> $(obj)include/config.h; \
1030 else \
1031 echo "#define CONFIG_SKIP_LOWLEVEL_INIT" >> $(obj)include/config.h; \
Magnus Liljad08e5ca2009-07-04 10:31:24 +02001032 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001033 @$(MKCONFIG) -n $@ -a mx31pdk arm arm1136 mx31pdk freescale mx31
Magnus Lilja8449f282009-07-01 01:07:55 +02001034
Guennadi Liakhovetski11edcfe2008-08-31 00:39:47 +02001035#########################################################################
1036## ARM1176 Systems
1037#########################################################################
1038smdk6400_noUSB_config \
1039smdk6400_config : unconfig
1040 @mkdir -p $(obj)include $(obj)board/samsung/smdk6400
1041 @mkdir -p $(obj)nand_spl/board/samsung/smdk6400
1042 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001043 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
Guennadi Liakhovetski11edcfe2008-08-31 00:39:47 +02001044 @if [ -z "$(findstring smdk6400_noUSB_config,$@)" ]; then \
1045 echo "RAM_TEXT = 0x57e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
Guennadi Liakhovetski11edcfe2008-08-31 00:39:47 +02001046 else \
1047 echo "RAM_TEXT = 0xc7e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
Guennadi Liakhovetski11edcfe2008-08-31 00:39:47 +02001048 fi
Wolfgang Denk54e19a72010-06-18 01:20:49 +02001049 @$(MKCONFIG) smdk6400 arm arm1176 smdk6400 samsung s3c64xx
Guennadi Liakhovetski11edcfe2008-08-31 00:39:47 +02001050 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1051
Wolfgang Denk0afe5192006-03-12 02:10:00 +01001052#########################################################################
wdenk3e386912003-04-05 00:53:31 +00001053#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001054
1055clean:
Peter Tyser1bc15382009-07-10 11:03:19 -05001056 @rm -f $(obj)examples/standalone/82559_eeprom \
Wolfgang Denkd640ac52009-09-07 23:52:31 +02001057 $(obj)examples/standalone/atmel_df_pow2 \
Peter Tyser1bc15382009-07-10 11:03:19 -05001058 $(obj)examples/standalone/eepro100_eeprom \
1059 $(obj)examples/standalone/hello_world \
1060 $(obj)examples/standalone/interrupt \
1061 $(obj)examples/standalone/mem_to_mem_idma2intr \
1062 $(obj)examples/standalone/sched \
Mike Frysinger201a0172011-05-07 12:05:30 +00001063 $(obj)examples/standalone/smc911{11,x}_eeprom \
Peter Tyser1bc15382009-07-10 11:03:19 -05001064 $(obj)examples/standalone/test_burst \
1065 $(obj)examples/standalone/timer
Peter Tyserd4abc752009-07-20 19:02:21 -05001066 @rm -f $(obj)examples/api/demo{,.bin}
Wolfgang Denkf9301e12008-03-04 14:58:31 +01001067 @rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \
1068 $(obj)tools/env/{fw_printenv,fw_setenv} \
1069 $(obj)tools/envcrc \
1070 $(obj)tools/gdb/{astest,gdbcont,gdbsend} \
1071 $(obj)tools/gen_eth_addr $(obj)tools/img2srec \
1072 $(obj)tools/mkimage $(obj)tools/mpc86x_clk \
1073 $(obj)tools/ncb $(obj)tools/ubsha1
1074 @rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \
Wolfgang Denk74c7a952010-10-16 18:24:16 +02001075 $(obj)board/matrix_vision/*/bootscript.img \
Wolfgang Denkf9301e12008-03-04 14:58:31 +01001076 $(obj)board/netstar/{eeprom,crcek,crcit,*.srec,*.bin} \
Wolfgang Denk566e5cf2011-05-01 20:44:23 +02001077 $(obj)board/voiceblue/eeprom \
Wolfgang Denk1dcb50a2009-02-22 01:17:47 +01001078 $(obj)board/armltd/{integratorap,integratorcp}/u-boot.lds \
Wolfgang Denk1aada9c2009-08-17 14:00:53 +02001079 $(obj)u-boot.lds \
Peter Tyserc6fb83d2010-04-12 22:28:13 -05001080 $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs]
Wolfgang Denkdc7746d2008-04-20 15:39:38 -07001081 @rm -f $(obj)include/bmp_logo.h
Wolfgang Denk16a354f2010-10-26 00:08:35 +02001082 @rm -f $(obj)lib/asm-offsets.s
Kumar Galaff6b47a2011-06-30 01:17:02 -05001083 @rm -f $(obj)nand_spl/{u-boot.lds,u-boot-nand_spl.lds,u-boot-spl,u-boot-spl.map,System.map}
Kyungmin Parkca6189d2009-09-22 09:05:00 +09001084 @rm -f $(obj)onenand_ipl/onenand-{ipl,ipl.bin,ipl.map}
Chander Kashyap0d3c62e2011-05-24 20:02:57 +00001085 @rm -f $(obj)mmc_spl/{u-boot.lds,u-boot-spl,u-boot-spl.map,u-boot-spl.bin,u-boot-mmc-spl.bin}
Kyungmin Parkca6189d2009-09-22 09:05:00 +09001086 @rm -f $(ONENAND_BIN)
Wolfgang Denk1aada9c2009-08-17 14:00:53 +02001087 @rm -f $(obj)onenand_ipl/u-boot.lds
Daniel Schwierzeck5df2ee22011-07-13 05:11:04 +00001088 @rm -f $(obj)spl/{u-boot-spl,u-boot-spl.bin,u-boot-spl.lds,u-boot-spl.map}
Peter Tyserd4abc752009-07-20 19:02:21 -05001089 @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE)
Wolfgang Denkae6d1052008-01-13 00:59:21 +01001090 @find $(OBJTREE) -type f \
wdenk7ebf7442002-11-02 23:17:16 +00001091 \( -name 'core' -o -name '*.bak' -o -name '*~' \
Peter Tyser2b48f7d2009-03-13 18:54:26 -05001092 -o -name '*.o' -o -name '*.a' -o -name '*.exe' \) -print \
wdenk7ebf7442002-11-02 23:17:16 +00001093 | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +00001094
1095clobber: clean
Mike Frysinger727ebd92010-08-11 18:52:36 -04001096 @find $(OBJTREE) -type f \( -name '*.depend' \
wdenk4c0d4c32004-06-09 17:34:58 +00001097 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
1098 -print0 \
1099 | xargs -0 rm -f
Li Yangffda5862008-02-29 11:46:05 +08001100 @rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \
Wolfgang Denk5013c092008-03-02 22:45:33 +01001101 $(obj)cscope.* $(obj)*.*~
Daniel Schwierzeck4e0fbb92011-07-13 05:11:01 +00001102 @rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL-y)
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +05301103 @rm -f $(obj)u-boot.kwb
Stefano Babicc5fb70c2010-02-05 15:13:58 +01001104 @rm -f $(obj)u-boot.imx
Peter Tyserfb8b33c2009-03-13 18:54:47 -05001105 @rm -f $(obj)tools/{env/crc32.c,inca-swap-bytes}
Stefan Roesea47a12b2010-04-15 16:07:28 +02001106 @rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c
Loïc Miniera9d8bc92011-01-19 13:16:29 +01001107 @rm -fr $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
Wolfgang Denk16a354f2010-10-26 00:08:35 +02001108 @rm -fr $(obj)include/generated
Jean-Christophe PLAGNIOL-VILLARDa958b662008-08-16 18:54:27 +02001109 @[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f
1110 @[ ! -d $(obj)onenand_ipl ] || find $(obj)onenand_ipl -name "*" -type l -print | xargs rm -f
Chander Kashyap0d3c62e2011-05-24 20:02:57 +00001111 @[ ! -d $(obj)mmc_spl ] || find $(obj)mmc_spl -name "*" -type l -print | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +00001112
1113mrproper \
1114distclean: clobber unconfig
Mike Frysingerafd077b2011-06-24 18:37:55 +00001115ifneq ($(OBJTREE),$(SRCTREE))
Wolfgang Denkae6d1052008-01-13 00:59:21 +01001116 rm -rf $(obj)*
Marian Balakowiczf9328632006-09-01 19:49:50 +02001117endif
wdenk7ebf7442002-11-02 23:17:16 +00001118
1119backup:
1120 F=`basename $(TOPDIR)` ; cd .. ; \
Ilya Yanokd6b93712010-06-21 18:13:21 +04001121 gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
wdenk7ebf7442002-11-02 23:17:16 +00001122
1123#########################################################################