blob: 201ad0e77896407b27dcbc4ee4be4968b32b7761 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
Wolfgang Denk881a87e2006-02-21 17:33:04 +01002# (C) Copyright 2000-2006
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
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# 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 Denk881a87e2006-02-21 17:33:04 +010024VERSION = 1
Wolfgang Denkf4eb5452007-01-07 00:13:11 +010025PATCHLEVEL = 2
26SUBLEVEL = 0
Wolfgang Denk881a87e2006-02-21 17:33:04 +010027EXTRAVERSION =
28U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
Marian Balakowiczf9328632006-09-01 19:49:50 +020029VERSION_FILE = $(obj)include/version_autogenerated.h
Wolfgang Denk881a87e2006-02-21 17:33:04 +010030
wdenk7ebf7442002-11-02 23:17:16 +000031HOSTARCH := $(shell uname -m | \
32 sed -e s/i.86/i386/ \
33 -e s/sun4u/sparc64/ \
34 -e s/arm.*/arm/ \
35 -e s/sa110/arm/ \
36 -e s/powerpc/ppc/ \
Kumar Galaa2280642007-08-08 04:14:28 -050037 -e s/ppc64/ppc/ \
wdenk7ebf7442002-11-02 23:17:16 +000038 -e s/macppc/ppc/)
39
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020040HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
wdenk7ebf7442002-11-02 23:17:16 +000041 sed -e 's/\(cygwin\).*/cygwin/')
42
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020043export HOSTARCH HOSTOS
wdenk7ebf7442002-11-02 23:17:16 +000044
45# Deal with colliding definitions from tcsh etc.
46VENDOR=
47
48#########################################################################
Marian Balakowiczf9328632006-09-01 19:49:50 +020049#
50# U-boot build supports producing a object files to the separate external
51# directory. Two use cases are supported:
Stefan Roese887e2ec2006-09-07 11:51:23 +020052#
Marian Balakowiczf9328632006-09-01 19:49:50 +020053# 1) Add O= to the make command line
54# 'make O=/tmp/build all'
55#
56# 2) Set environement variable BUILD_DIR to point to the desired location
57# 'export BUILD_DIR=/tmp/build'
58# 'make'
59#
60# The second approach can also be used with a MAKEALL script
61# 'export BUILD_DIR=/tmp/build'
62# './MAKEALL'
Stefan Roese887e2ec2006-09-07 11:51:23 +020063#
Marian Balakowiczf9328632006-09-01 19:49:50 +020064# Command line 'O=' setting overrides BUILD_DIR environent variable.
Stefan Roese887e2ec2006-09-07 11:51:23 +020065#
Marian Balakowiczf9328632006-09-01 19:49:50 +020066# When none of the above methods is used the local build is performed and
67# the object files are placed in the source directory.
Stefan Roese887e2ec2006-09-07 11:51:23 +020068#
wdenk7ebf7442002-11-02 23:17:16 +000069
Marian Balakowiczf9328632006-09-01 19:49:50 +020070ifdef O
71ifeq ("$(origin O)", "command line")
72BUILD_DIR := $(O)
73endif
74endif
wdenk7ebf7442002-11-02 23:17:16 +000075
Marian Balakowiczf9328632006-09-01 19:49:50 +020076ifneq ($(BUILD_DIR),)
77saved-output := $(BUILD_DIR)
Marian Balakowicz4f0645e2006-09-07 12:05:53 +020078
79# Attempt to create a output directory.
80$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
81
Stefan Roesea73c8db2006-09-12 08:49:07 +020082# Verify if it was successful.
Marian Balakowiczf9328632006-09-01 19:49:50 +020083BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
84$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
85endif # ifneq ($(BUILD_DIR),)
86
87OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
88SRCTREE := $(CURDIR)
89TOPDIR := $(SRCTREE)
90LNDIR := $(OBJTREE)
91export TOPDIR SRCTREE OBJTREE
92
93MKCONFIG := $(SRCTREE)/mkconfig
94export MKCONFIG
95
96ifneq ($(OBJTREE),$(SRCTREE))
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010097REMOTE_BUILD := 1
Marian Balakowiczf9328632006-09-01 19:49:50 +020098export REMOTE_BUILD
99endif
100
101# $(obj) and (src) are defined in config.mk but here in main Makefile
102# we also need them before config.mk is included which is the case for
103# some targets like unconfig, clean, clobber, distclean, etc.
104ifneq ($(OBJTREE),$(SRCTREE))
105obj := $(OBJTREE)/
106src := $(SRCTREE)/
107else
108obj :=
109src :=
Stefan Roese887e2ec2006-09-07 11:51:23 +0200110endif
Marian Balakowiczf9328632006-09-01 19:49:50 +0200111export obj src
112
113#########################################################################
114
115ifeq ($(OBJTREE)/include/config.mk,$(wildcard $(OBJTREE)/include/config.mk))
116
wdenk7ebf7442002-11-02 23:17:16 +0000117# load ARCH, BOARD, and CPU configuration
Marian Balakowiczf9328632006-09-01 19:49:50 +0200118include $(OBJTREE)/include/config.mk
wdenk1d9f4102004-10-09 22:21:29 +0000119export ARCH CPU BOARD VENDOR SOC
Marian Balakowiczf9328632006-09-01 19:49:50 +0200120
wdenk7ebf7442002-11-02 23:17:16 +0000121ifndef CROSS_COMPILE
Wolfgang Denka5284ef2007-03-06 18:01:47 +0100122ifeq ($(HOSTARCH),$(ARCH))
wdenk7ebf7442002-11-02 23:17:16 +0000123CROSS_COMPILE =
124else
wdenk7ebf7442002-11-02 23:17:16 +0000125ifeq ($(ARCH),ppc)
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200126CROSS_COMPILE = ppc_8xx-
wdenk7ebf7442002-11-02 23:17:16 +0000127endif
128ifeq ($(ARCH),arm)
wdenkdc7c9a12003-03-26 06:55:25 +0000129CROSS_COMPILE = arm-linux-
wdenk7ebf7442002-11-02 23:17:16 +0000130endif
wdenk2262cfe2002-11-18 00:14:45 +0000131ifeq ($(ARCH),i386)
wdenk7a8e9bed2003-05-31 18:35:21 +0000132CROSS_COMPILE = i386-linux-
133endif
wdenk43d96162003-03-06 00:02:04 +0000134ifeq ($(ARCH),mips)
135CROSS_COMPILE = mips_4KC-
136endif
wdenk4a551702003-10-08 23:26:14 +0000137ifeq ($(ARCH),nios)
138CROSS_COMPILE = nios-elf-
139endif
wdenk5c952cf2004-10-10 21:27:30 +0000140ifeq ($(ARCH),nios2)
141CROSS_COMPILE = nios2-elf-
142endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000143ifeq ($(ARCH),m68k)
144CROSS_COMPILE = m68k-elf-
145endif
wdenk507bbe32004-04-18 21:13:41 +0000146ifeq ($(ARCH),microblaze)
147CROSS_COMPILE = mb-
148endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100149ifeq ($(ARCH),blackfin)
Aubrey.Lief26a082007-03-09 13:40:56 +0800150CROSS_COMPILE = bfin-uclinux-
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100151endif
Wolfgang Denk7b64fef2006-10-24 14:21:16 +0200152ifeq ($(ARCH),avr32)
Haavard Skinnemoen5374b362006-11-18 17:24:31 +0100153CROSS_COMPILE = avr32-linux-
Wolfgang Denk7b64fef2006-10-24 14:21:16 +0200154endif
wdenk7ebf7442002-11-02 23:17:16 +0000155endif
156endif
157
158export CROSS_COMPILE
159
Wolfgang Denk92b197f2006-03-12 01:37:50 +0100160# load other configuration
161include $(TOPDIR)/config.mk
162
wdenk7ebf7442002-11-02 23:17:16 +0000163#########################################################################
164# U-Boot objects....order is important (i.e. start must be first)
165
wdenk9fd5e312003-12-07 23:55:12 +0000166OBJS = cpu/$(CPU)/start.o
wdenk2262cfe2002-11-18 00:14:45 +0000167ifeq ($(CPU),i386)
wdenk9fd5e312003-12-07 23:55:12 +0000168OBJS += cpu/$(CPU)/start16.o
169OBJS += cpu/$(CPU)/reset.o
wdenk2262cfe2002-11-18 00:14:45 +0000170endif
wdenk7ebf7442002-11-02 23:17:16 +0000171ifeq ($(CPU),ppc4xx)
wdenk9fd5e312003-12-07 23:55:12 +0000172OBJS += cpu/$(CPU)/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +0000173endif
wdenk42d1f032003-10-15 23:53:47 +0000174ifeq ($(CPU),mpc85xx)
175OBJS += cpu/$(CPU)/resetvec.o
176endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100177ifeq ($(CPU),bf533)
178OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
Aubrey.Lief26a082007-03-09 13:40:56 +0800179OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100180endif
Aubrey Li26bf7de2007-03-19 01:24:52 +0800181ifeq ($(CPU),bf537)
182OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
Aubrey Li65458982007-03-20 18:16:24 +0800183OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
184endif
185ifeq ($(CPU),bf561)
186OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
187OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
wdenk7ebf7442002-11-02 23:17:16 +0000188endif
189
Marian Balakowiczf9328632006-09-01 19:49:50 +0200190OBJS := $(addprefix $(obj),$(OBJS))
191
wdenk9fd5e312003-12-07 23:55:12 +0000192LIBS = lib_generic/libgeneric.a
193LIBS += board/$(BOARDDIR)/lib$(BOARD).a
wdenk7ebf7442002-11-02 23:17:16 +0000194LIBS += cpu/$(CPU)/lib$(CPU).a
wdenk1d9f4102004-10-09 22:21:29 +0000195ifdef SOC
196LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
197endif
Stefan Roese323bfa82007-04-23 12:00:22 +0200198ifeq ($(CPU),ixp)
199LIBS += cpu/ixp/npe/libnpe.a
200endif
wdenk7ebf7442002-11-02 23:17:16 +0000201LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk518e2e12004-03-25 14:59:05 +0000202LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
stroesec419d1d2004-12-16 18:44:40 +0000203 fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a
wdenk7ebf7442002-11-02 23:17:16 +0000204LIBS += net/libnet.a
205LIBS += disk/libdisk.a
206LIBS += rtc/librtc.a
207LIBS += dtt/libdtt.a
208LIBS += drivers/libdrivers.a
Jason Jin0f460a12007-07-13 12:14:58 +0800209LIBS += drivers/bios_emulator/libatibiosemu.a
Marian Balakowicz6db39702006-04-08 19:08:06 +0200210LIBS += drivers/nand/libnand.a
211LIBS += drivers/nand_legacy/libnand_legacy.a
TsiChung Liew8e585f02007-06-18 13:50:13 -0500212LIBS += drivers/net/libnet.a
Dave Liu7737d5c2006-11-03 12:11:15 -0600213ifeq ($(CPU),mpc83xx)
214LIBS += drivers/qe/qe.a
215endif
Andy Flemingda9d4612007-08-14 00:14:25 -0500216ifeq ($(CPU),mpc85xx)
217LIBS += drivers/qe/qe.a
218endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500219LIBS += drivers/serial/libserial.a
wdenk7152b1d2003-09-05 23:19:14 +0000220LIBS += drivers/sk98lin/libsk98lin.a
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100221LIBS += post/libpost.a post/drivers/libpostdrivers.a
222LIBS += $(shell if [ -d post/lib_$(ARCH) ]; then echo \
223 "post/lib_$(ARCH)/libpost$(ARCH).a"; fi)
Sergei Poselenovb4489622007-07-05 08:17:37 +0200224LIBS += $(shell if [ -d post/lib_$(ARCH)/fpu ]; then echo \
225 "post/lib_$(ARCH)/fpu/libpost$(ARCH)fpu.a"; fi)
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100226LIBS += $(shell if [ -d post/cpu/$(CPU) ]; then echo \
227 "post/cpu/$(CPU)/libpost$(CPU).a"; fi)
228LIBS += $(shell if [ -d post/board/$(BOARDDIR) ]; then echo \
229 "post/board/$(BOARDDIR)/libpost$(BOARD).a"; fi)
wdenk7ebf7442002-11-02 23:17:16 +0000230LIBS += common/libcommon.a
Gerald Van Baren7651f8b2007-04-19 23:14:39 -0400231LIBS += libfdt/libfdt.a
Marian Balakowiczf9328632006-09-01 19:49:50 +0200232
233LIBS := $(addprefix $(obj),$(LIBS))
wdenk9fd5e312003-12-07 23:55:12 +0000234.PHONY : $(LIBS)
wdenka8c7c702003-12-06 19:49:23 +0000235
wdenk4f7cb082003-09-11 23:06:34 +0000236# Add GCC lib
wdenk1a344f22005-02-03 23:00:49 +0000237PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
wdenk3d3befa2004-03-14 15:06:13 +0000238
wdenka8c7c702003-12-06 19:49:23 +0000239# The "tools" are needed early, so put this first
240# Don't include stuff already done in $(LIBS)
241SUBDIRS = tools \
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100242 examples
243
wdenkb028f712003-12-07 21:39:28 +0000244.PHONY : $(SUBDIRS)
wdenka8c7c702003-12-06 19:49:23 +0000245
Stefan Roese887e2ec2006-09-07 11:51:23 +0200246ifeq ($(CONFIG_NAND_U_BOOT),y)
247NAND_SPL = nand_spl
248U_BOOT_NAND = $(obj)u-boot-nand.bin
249endif
250
Marian Balakowiczf9328632006-09-01 19:49:50 +0200251__OBJS := $(subst $(obj),,$(OBJS))
252__LIBS := $(subst $(obj),,$(LIBS))
253
wdenk7ebf7442002-11-02 23:17:16 +0000254#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000255#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000256
Heiko Schocher566a4942007-06-22 19:11:54 +0200257ALL += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND)
wdenk7ebf7442002-11-02 23:17:16 +0000258
wdenkbdccc4f2003-08-05 17:43:17 +0000259all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000260
Marian Balakowiczf9328632006-09-01 19:49:50 +0200261$(obj)u-boot.hex: $(obj)u-boot
wdenk6310eb92005-01-09 21:28:15 +0000262 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
263
Marian Balakowiczf9328632006-09-01 19:49:50 +0200264$(obj)u-boot.srec: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000265 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
266
Marian Balakowiczf9328632006-09-01 19:49:50 +0200267$(obj)u-boot.bin: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000268 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
269
Marian Balakowiczf9328632006-09-01 19:49:50 +0200270$(obj)u-boot.img: $(obj)u-boot.bin
wdenkbdccc4f2003-08-05 17:43:17 +0000271 ./tools/mkimage -A $(ARCH) -T firmware -C none \
272 -a $(TEXT_BASE) -e 0 \
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100273 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenkbdccc4f2003-08-05 17:43:17 +0000274 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
275 -d $< $@
276
Heiko Schocher566a4942007-06-22 19:11:54 +0200277$(obj)u-boot.sha1: $(obj)u-boot.bin
Heiko Schocher01159532007-07-14 01:06:58 +0200278 $(obj)tools/ubsha1 $(obj)u-boot.bin
Heiko Schocher566a4942007-06-22 19:11:54 +0200279
Marian Balakowiczf9328632006-09-01 19:49:50 +0200280$(obj)u-boot.dis: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000281 $(OBJDUMP) -d $< > $@
282
Marian Balakowiczf9328632006-09-01 19:49:50 +0200283$(obj)u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
wdenk8bde7f72003-06-27 21:31:46 +0000284 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
Marian Balakowiczf9328632006-09-01 19:49:50 +0200285 cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
286 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000287 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000288
Marian Balakowiczf9328632006-09-01 19:49:50 +0200289$(OBJS):
290 $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@))
291
wdenka8c7c702003-12-06 19:49:23 +0000292$(LIBS):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200293 $(MAKE) -C $(dir $(subst $(obj),,$@))
wdenka8c7c702003-12-06 19:49:23 +0000294
295$(SUBDIRS):
wdenkb028f712003-12-07 21:39:28 +0000296 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000297
Stefan Roese887e2ec2006-09-07 11:51:23 +0200298$(NAND_SPL): version
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200299 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
Stefan Roese887e2ec2006-09-07 11:51:23 +0200300
301$(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200302 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 +0200303
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100304version:
305 @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \
306 echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \
307 echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \
308 $(TOPDIR)) >> $(VERSION_FILE); \
309 echo "\"" >> $(VERSION_FILE)
310
dzu8f713fd2003-08-07 14:20:31 +0000311gdbtools:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200312 $(MAKE) -C tools/gdb all || exit 1
313
314updater:
315 $(MAKE) -C tools/updater all || exit 1
316
317env:
318 $(MAKE) -C tools/env all || exit 1
dzu8f713fd2003-08-07 14:20:31 +0000319
wdenk7ebf7442002-11-02 23:17:16 +0000320depend dep:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200321 for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir _depend ; done
wdenk7ebf7442002-11-02 23:17:16 +0000322
Marian Balakowiczf9328632006-09-01 19:49:50 +0200323tags ctags:
324 ctags -w -o $(OBJTREE)/ctags `find $(SUBDIRS) include \
wdenkbda6c8a2004-04-15 21:58:11 +0000325 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
326 fs/cramfs fs/fat fs/fdos fs/jffs2 \
327 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000328 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
329
330etags:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200331 etags -a -o $(OBJTREE)/etags `find $(SUBDIRS) include \
wdenkeedcd072004-09-08 22:03:11 +0000332 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
333 fs/cramfs fs/fat fs/fdos fs/jffs2 \
334 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000335 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
336
Marian Balakowiczf9328632006-09-01 19:49:50 +0200337$(obj)System.map: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000338 @$(NM) $< | \
339 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200340 sort > $(obj)System.map
wdenk7ebf7442002-11-02 23:17:16 +0000341
342#########################################################################
343else
Marian Balakowiczf9328632006-09-01 19:49:50 +0200344all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
345$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
346$(SUBDIRS) version gdbtools updater env depend \
347dep tags ctags etags $(obj)System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000348 @echo "System not configured - see README" >&2
349 @ exit 1
350endif
351
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200352.PHONY : CHANGELOG
353CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -0400354 git log --no-merges U-Boot-1_1_5.. | \
355 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200356
wdenk7ebf7442002-11-02 23:17:16 +0000357#########################################################################
358
359unconfig:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200360 @rm -f $(obj)include/config.h $(obj)include/config.mk \
361 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp
wdenk7ebf7442002-11-02 23:17:16 +0000362
363#========================================================================
364# PowerPC
365#========================================================================
wdenk0db5bca2003-03-31 17:27:09 +0000366
367#########################################################################
368## MPC5xx Systems
369#########################################################################
370
wdenk5e5f9ed2005-04-13 23:15:10 +0000371canmb_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200372 @$(MKCONFIG) -a canmb ppc mpc5xxx canmb
wdenk5e5f9ed2005-04-13 23:15:10 +0000373
wdenk0db5bca2003-03-31 17:27:09 +0000374cmi_mpc5xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200375 @$(MKCONFIG) $(@:_config=) ppc mpc5xx cmi
wdenk0db5bca2003-03-31 17:27:09 +0000376
wdenkdb01a2e2004-04-15 23:14:49 +0000377PATI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200378 @$(MKCONFIG) $(@:_config=) ppc mpc5xx pati mpl
wdenkb6e4c402004-01-02 16:05:07 +0000379
wdenk7ebf7442002-11-02 23:17:16 +0000380#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000381## MPC5xxx Systems
382#########################################################################
wdenka87589d2005-06-10 10:00:19 +0000383
Wolfgang Denkdafba162005-08-12 00:22:49 +0200384aev_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200385 @$(MKCONFIG) -a aev ppc mpc5xxx tqm5200
Wolfgang Denkdafba162005-08-12 00:22:49 +0200386
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200387BC3450_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200388 @$(MKCONFIG) -a BC3450 ppc mpc5xxx bc3450
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200389
Stefan Roese5e4b3362005-08-22 17:51:53 +0200390cpci5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200391 @$(MKCONFIG) -a cpci5200 ppc mpc5xxx cpci5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200392
wdenka87589d2005-06-10 10:00:19 +0000393hmi1001_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200394 @$(MKCONFIG) hmi1001 ppc mpc5xxx hmi1001
wdenka87589d2005-06-10 10:00:19 +0000395
wdenke35745b2004-04-18 23:32:11 +0000396Lite5200_config \
397Lite5200_LOWBOOT_config \
398Lite5200_LOWBOOT08_config \
399icecube_5200_config \
400icecube_5200_LOWBOOT_config \
401icecube_5200_LOWBOOT08_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100402icecube_5200_DDR_config \
403icecube_5200_DDR_LOWBOOT_config \
wdenke35745b2004-04-18 23:32:11 +0000404icecube_5200_DDR_LOWBOOT08_config \
405icecube_5100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200406 @mkdir -p $(obj)include
407 @mkdir -p $(obj)board/icecube
408 @ >$(obj)include/config.h
wdenk17d704e2004-04-10 20:43:50 +0000409 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
410 { if [ "$(findstring DDR,$@)" ] ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200411 then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
412 else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
wdenk17d704e2004-04-10 20:43:50 +0000413 fi ; \
wdenk5cf9da42003-11-07 13:42:26 +0000414 echo "... with LOWBOOT configuration" ; \
415 }
416 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200417 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
wdenk5cf9da42003-11-07 13:42:26 +0000418 echo "... with 8 MB flash only" ; \
wdenk17d704e2004-04-10 20:43:50 +0000419 echo "... with LOWBOOT configuration" ; \
wdenk5cf9da42003-11-07 13:42:26 +0000420 }
wdenkb2001f22003-12-20 22:45:10 +0000421 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200422 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +0000423 echo "... DDR memory revision" ; \
424 }
wdenkd4ca31c2004-01-02 14:00:00 +0000425 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200426 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenkd4ca31c2004-01-02 14:00:00 +0000427 echo "... with MPC5200 processor" ; \
428 }
wdenka0f2fe52003-10-28 09:14:21 +0000429 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200430 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk945af8d2003-07-16 21:53:01 +0000431 echo "... with MGT5100 processor" ; \
432 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200433 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
wdenk945af8d2003-07-16 21:53:01 +0000434
Heiko Schocher2605e902007-02-16 07:57:42 +0100435jupiter_config: unconfig
436 @$(MKCONFIG) jupiter ppc mpc5xxx jupiter
437
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200438v38b_config: unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -0600439 @$(MKCONFIG) -a v38b ppc mpc5xxx v38b
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200440
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100441inka4x0_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200442 @$(MKCONFIG) inka4x0 ppc mpc5xxx inka4x0
wdenk138ff602004-12-16 15:52:40 +0000443
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100444lite5200b_config \
Domen Puncerd3832e82007-04-16 14:00:13 +0200445lite5200b_PM_config \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100446lite5200b_LOWBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200447 @mkdir -p $(obj)include
448 @mkdir -p $(obj)board/icecube
449 @ >$(obj)include/config.h
450 @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100451 @ echo "... DDR memory revision"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200452 @ echo "#define CONFIG_MPC5200" >>$(obj)include/config.h
453 @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h
Domen Puncerd3832e82007-04-16 14:00:13 +0200454 @[ -z "$(findstring _PM_,$@)" ] || \
455 { echo "#define CONFIG_LITE5200B_PM" >>$(obj)include/config.h ; \
456 echo "... with power management (low-power mode) support" ; \
457 }
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100458 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200459 { echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100460 echo "... with LOWBOOT configuration" ; \
461 }
462 @ echo "... with MPC5200B processor"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200463 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100464
Stefan Roesef1ee9822006-03-04 14:57:03 +0100465mcc200_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200466mcc200_SDRAM_config \
467mcc200_highboot_config \
468mcc200_COM12_config \
469mcc200_COM12_SDRAM_config \
Wolfgang Denk113f64e2006-08-25 01:38:04 +0200470mcc200_COM12_highboot_config \
471mcc200_COM12_highboot_SDRAM_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200472mcc200_highboot_SDRAM_config \
473prs200_config \
474prs200_DDR_config \
475prs200_highboot_config \
476prs200_highboot_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200477 @mkdir -p $(obj)include
478 @mkdir -p $(obj)board/mcc200
479 @ >$(obj)include/config.h
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200480 @[ -n "$(findstring highboot,$@)" ] || \
481 { echo "... with lowboot configuration" ; \
Stefan Roesef1ee9822006-03-04 14:57:03 +0100482 }
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200483 @[ -z "$(findstring highboot,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200484 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200485 echo "... with highboot configuration" ; \
486 }
487 @[ -n "$(findstring _SDRAM,$@)" ] || \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200488 { if [ -n "$(findstring mcc200,$@)" ]; \
489 then \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100490 echo "... with DDR" ; \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200491 else \
492 if [ -n "$(findstring _DDR,$@)" ];\
493 then \
494 echo "... with DDR" ; \
495 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200496 echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200497 echo "... with SDRAM" ; \
498 fi; \
499 fi; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200500 }
501 @[ -z "$(findstring _SDRAM,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200502 { echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200503 echo "... with SDRAM" ; \
504 }
Wolfgang Denk463764c2006-08-17 00:36:51 +0200505 @[ -z "$(findstring COM12,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200506 { echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \
Wolfgang Denk463764c2006-08-17 00:36:51 +0200507 echo "... with console on COM12" ; \
508 }
Wolfgang Denked1cf842006-08-24 00:26:42 +0200509 @[ -z "$(findstring prs200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200510 { echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200511 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200512 @$(MKCONFIG) -n $@ -a mcc200 ppc mpc5xxx mcc200
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100513
Stefan Roese8b7d1f02007-01-31 16:37:34 +0100514mecp5200_config: unconfig
515 @$(MKCONFIG) -a mecp5200 ppc mpc5xxx mecp5200 esd
516
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200517o2dnt_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200518 @$(MKCONFIG) o2dnt ppc mpc5xxx o2dnt
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200519
Stefan Roese5e4b3362005-08-22 17:51:53 +0200520pf5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200521 @$(MKCONFIG) pf5200 ppc mpc5xxx pf5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200522
wdenk89394042004-08-04 21:56:49 +0000523PM520_config \
524PM520_DDR_config \
525PM520_ROMBOOT_config \
526PM520_ROMBOOT_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200527 @mkdir -p $(obj)include
528 @ >$(obj)include/config.h
wdenk89394042004-08-04 21:56:49 +0000529 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200530 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000531 echo "... DDR memory revision" ; \
532 }
533 @[ -z "$(findstring ROMBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200534 { echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000535 echo "... booting from 8-bit flash" ; \
536 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200537 @$(MKCONFIG) -a PM520 ppc mpc5xxx pm520
wdenk89394042004-08-04 21:56:49 +0000538
Wolfgang Denk6624b682006-02-22 10:25:39 +0100539smmaco4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200540 @$(MKCONFIG) -a smmaco4 ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100541
Bartlomiej Sieka86b116b2007-08-03 12:08:16 +0200542cm5200_config: unconfig
543 @./mkconfig -a cm5200 ppc mpc5xxx cm5200
Bartlomiej Siekafa1df302007-07-11 20:11:07 +0200544
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100545spieval_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200546 @$(MKCONFIG) -a spieval ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100547
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200548TB5200_B_config \
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200549TB5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200550 @mkdir -p $(obj)include
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200551 @[ -z "$(findstring _B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200552 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200553 echo "... with MPC5200B processor" ; \
554 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200555 @$(MKCONFIG) -n $@ -a TB5200 ppc mpc5xxx tqm5200
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200556
wdenkd4ca31c2004-01-02 14:00:00 +0000557MINI5200_config \
558EVAL5200_config \
559TOP5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200560 @mkdir -p $(obj)include
561 @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
562 @$(MKCONFIG) -n $@ -a TOP5200 ppc mpc5xxx top5200 emk
wdenkd4ca31c2004-01-02 14:00:00 +0000563
wdenk6c7a1402004-07-11 19:17:20 +0000564Total5100_config \
565Total5200_config \
566Total5200_lowboot_config \
567Total5200_Rev2_config \
568Total5200_Rev2_lowboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200569 @mkdir -p $(obj)include
570 @mkdir -p $(obj)board/total5200
571 @ >$(obj)include/config.h
wdenk6c7a1402004-07-11 19:17:20 +0000572 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200573 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000574 echo "... with MGT5100 processor" ; \
575 }
576 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200577 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000578 echo "... with MPC5200 processor" ; \
579 }
580 @[ -n "$(findstring Rev,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200581 { echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000582 echo "... revision 1 board" ; \
583 }
584 @[ -z "$(findstring Rev2_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200585 { echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000586 echo "... revision 2 board" ; \
587 }
588 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200589 { echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp ; \
wdenk6c7a1402004-07-11 19:17:20 +0000590 echo "... with lowboot configuration" ; \
591 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200592 @$(MKCONFIG) -a Total5200 ppc mpc5xxx total5200
wdenk6c7a1402004-07-11 19:17:20 +0000593
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200594cam5200_config \
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100595cam5200_niosflash_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200596fo300_config \
597MiniFAP_config \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200598TQM5200S_config \
599TQM5200S_HIGHBOOT_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200600TQM5200_B_config \
601TQM5200_B_HIGHBOOT_config \
602TQM5200_config \
603TQM5200_STK100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200604 @mkdir -p $(obj)include
605 @mkdir -p $(obj)board/tqm5200
606 @ >$(obj)include/config.h
Wolfgang Denk135ae002006-07-22 01:20:03 +0200607 @[ -z "$(findstring cam5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200608 { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \
609 echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
610 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk135ae002006-07-22 01:20:03 +0200611 echo "... TQM5200S on Cam5200" ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200612 }
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100613 @[ -z "$(findstring niosflash,$@)" ] || \
614 { echo "#define CONFIG_CAM5200_NIOSFLASH" >>$(obj)include/config.h ; \
615 echo "... with NIOS flash driver" ; \
616 }
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200617 @[ -z "$(findstring fo300,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200618 { echo "#define CONFIG_FO300" >>$(obj)include/config.h ; \
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200619 echo "... TQM5200 on FO300" ; \
620 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200621 @[ -z "$(findstring MiniFAP,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200622 { echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200623 echo "... TQM5200_AC on MiniFAP" ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200624 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200625 @[ -z "$(findstring STK100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200626 { echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h ; \
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200627 echo "... on a STK52XX.100 base board" ; \
wdenk56523f12004-07-11 17:40:54 +0000628 }
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200629 @[ -z "$(findstring TQM5200_B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200630 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200631 }
632 @[ -z "$(findstring TQM5200S,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200633 { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
634 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200635 }
Wolfgang Denk978b1092006-07-19 18:01:38 +0200636 @[ -z "$(findstring HIGHBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200637 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200638 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200639 @$(MKCONFIG) -n $@ -a TQM5200 ppc mpc5xxx tqm5200
Heiko Schocher6dedf3d2006-12-21 16:14:48 +0100640uc101_config: unconfig
641 @$(MKCONFIG) uc101 ppc mpc5xxx uc101
Bartlomiej Sieka53d4a492007-02-09 10:45:42 +0100642motionpro_config: unconfig
643 @$(MKCONFIG) motionpro ppc mpc5xxx motionpro
644
wdenk56523f12004-07-11 17:40:54 +0000645
wdenk945af8d2003-07-16 21:53:01 +0000646#########################################################################
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200647## MPC512x Systems
648#########################################################################
649ads5121_config: unconfig
650 @$(MKCONFIG) ads5121 ppc mpc512x ads5121
651
652
653#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000654## MPC8xx Systems
655#########################################################################
656
wdenk2d24a3a2004-06-09 21:50:45 +0000657Adder_config \
658Adder87x_config \
wdenk26238132004-07-09 22:51:01 +0000659AdderII_config \
wdenk2d24a3a2004-06-09 21:50:45 +0000660 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200661 @mkdir -p $(obj)include
wdenk26238132004-07-09 22:51:01 +0000662 $(if $(findstring AdderII,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200663 @echo "#define CONFIG_MPC852T" > $(obj)include/config.h)
664 @$(MKCONFIG) -a Adder ppc mpc8xx adder
wdenk2d24a3a2004-06-09 21:50:45 +0000665
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200666AdderUSB_config: unconfig
667 @./mkconfig -a AdderUSB ppc mpc8xx adder
668
wdenk180d3f72004-01-04 16:28:35 +0000669ADS860_config \
wdenk180d3f72004-01-04 16:28:35 +0000670FADS823_config \
671FADS850SAR_config \
672MPC86xADS_config \
wdenk11142572004-06-06 21:35:06 +0000673MPC885ADS_config \
wdenk180d3f72004-01-04 16:28:35 +0000674FADS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200675 @$(MKCONFIG) $(@:_config=) ppc mpc8xx fads
wdenk7ebf7442002-11-02 23:17:16 +0000676
677AMX860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200678 @$(MKCONFIG) $(@:_config=) ppc mpc8xx amx860 westel
wdenk7ebf7442002-11-02 23:17:16 +0000679
680c2mon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200681 @$(MKCONFIG) $(@:_config=) ppc mpc8xx c2mon
wdenk7ebf7442002-11-02 23:17:16 +0000682
683CCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200684 @$(MKCONFIG) $(@:_config=) ppc mpc8xx CCM siemens
wdenk7ebf7442002-11-02 23:17:16 +0000685
686cogent_mpc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200687 @$(MKCONFIG) $(@:_config=) ppc mpc8xx cogent
wdenk7ebf7442002-11-02 23:17:16 +0000688
wdenk3bac3512003-03-12 10:41:04 +0000689ELPT860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200690 @$(MKCONFIG) $(@:_config=) ppc mpc8xx elpt860 LEOX
wdenk3bac3512003-03-12 10:41:04 +0000691
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100692EP88x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200693 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ep88x
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100694
wdenk7ebf7442002-11-02 23:17:16 +0000695ESTEEM192E_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200696 @$(MKCONFIG) $(@:_config=) ppc mpc8xx esteem192e
wdenk7ebf7442002-11-02 23:17:16 +0000697
698ETX094_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200699 @$(MKCONFIG) $(@:_config=) ppc mpc8xx etx094
wdenk7ebf7442002-11-02 23:17:16 +0000700
wdenk7ebf7442002-11-02 23:17:16 +0000701FLAGADM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200702 @$(MKCONFIG) $(@:_config=) ppc mpc8xx flagadm
wdenk7ebf7442002-11-02 23:17:16 +0000703
wdenk7aa78612003-05-03 15:50:43 +0000704xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
705
706GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000707GEN860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200708 @mkdir -p $(obj)include
709 @ >$(obj)include/config.h
wdenk7aa78612003-05-03 15:50:43 +0000710 @[ -z "$(findstring _SC,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200711 { echo "#define CONFIG_SC" >>$(obj)include/config.h ; \
wdenk7aa78612003-05-03 15:50:43 +0000712 echo "With reduced H/W feature set (SC)..." ; \
713 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200714 @$(MKCONFIG) -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000715
716GENIETV_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200717 @$(MKCONFIG) $(@:_config=) ppc mpc8xx genietv
wdenk7ebf7442002-11-02 23:17:16 +0000718
719GTH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200720 @$(MKCONFIG) $(@:_config=) ppc mpc8xx gth
wdenk7ebf7442002-11-02 23:17:16 +0000721
722hermes_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200723 @$(MKCONFIG) $(@:_config=) ppc mpc8xx hermes
wdenk7ebf7442002-11-02 23:17:16 +0000724
wdenkc40b2952004-03-13 23:29:43 +0000725HMI10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200726 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenkc40b2952004-03-13 23:29:43 +0000727
wdenk7ebf7442002-11-02 23:17:16 +0000728IAD210_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200729 @$(MKCONFIG) $(@:_config=) ppc mpc8xx IAD210 siemens
wdenk7ebf7442002-11-02 23:17:16 +0000730
731xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
732
733ICU862_100MHz_config \
734ICU862_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200735 @mkdir -p $(obj)include
736 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000737 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200738 { echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000739 echo "... with 100MHz system clock" ; \
740 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200741 @$(MKCONFIG) -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
wdenk7ebf7442002-11-02 23:17:16 +0000742
743IP860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200744 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ip860
wdenk7ebf7442002-11-02 23:17:16 +0000745
746IVML24_256_config \
747IVML24_128_config \
748IVML24_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200749 @mkdir -p $(obj)include
750 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000751 @[ -z "$(findstring IVML24_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200752 { echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000753 }
754 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200755 { echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000756 }
757 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200758 { echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000759 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200760 @$(MKCONFIG) -a IVML24 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000761
762IVMS8_256_config \
763IVMS8_128_config \
764IVMS8_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200765 @mkdir -p $(obj)include
766 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000767 @[ -z "$(findstring IVMS8_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200768 { echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000769 }
770 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200771 { echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000772 }
773 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200774 { echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000775 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200776 @$(MKCONFIG) -a IVMS8 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000777
wdenk56f94be2002-11-05 16:35:14 +0000778KUP4K_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200779 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4k kup
wdenk0608e042004-03-25 19:29:38 +0000780
781KUP4X_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200782 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000783
wdenk7ebf7442002-11-02 23:17:16 +0000784LANTEC_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200785 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lantec
wdenk7ebf7442002-11-02 23:17:16 +0000786
787lwmon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200788 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lwmon
wdenk7ebf7442002-11-02 23:17:16 +0000789
790MBX_config \
791MBX860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200792 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mbx8xx
wdenk7ebf7442002-11-02 23:17:16 +0000793
794MHPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200795 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mhpc eltec
wdenk7ebf7442002-11-02 23:17:16 +0000796
797MVS1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200798 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mvs1
wdenk7ebf7442002-11-02 23:17:16 +0000799
wdenk993cad92003-06-26 22:04:09 +0000800xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
801
802NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000803NETVIA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200804 @mkdir -p $(obj)include
805 @ >$(obj)include/config.h
wdenk993cad92003-06-26 22:04:09 +0000806 @[ -z "$(findstring NETVIA_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200807 { echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000808 echo "... Version 1" ; \
809 }
810 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200811 { echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000812 echo "... Version 2" ; \
813 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200814 @$(MKCONFIG) -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000815
wdenkc26e4542004-04-18 10:13:26 +0000816xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
817
818NETPHONE_V2_config \
wdenk04a85b32004-04-15 18:22:41 +0000819NETPHONE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200820 @mkdir -p $(obj)include
821 @ >$(obj)include/config.h
wdenkc26e4542004-04-18 10:13:26 +0000822 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200823 { echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000824 }
825 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200826 { echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000827 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200828 @$(MKCONFIG) -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk04a85b32004-04-15 18:22:41 +0000829
wdenk79fa88f2004-06-07 23:46:25 +0000830xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk04a85b32004-04-15 18:22:41 +0000831
wdenk79fa88f2004-06-07 23:46:25 +0000832NETTA_ISDN_6412_SWAPHOOK_config \
833NETTA_ISDN_SWAPHOOK_config \
834NETTA_6412_SWAPHOOK_config \
835NETTA_SWAPHOOK_config \
836NETTA_ISDN_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000837NETTA_ISDN_config \
wdenk79fa88f2004-06-07 23:46:25 +0000838NETTA_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000839NETTA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200840 @mkdir -p $(obj)include
841 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000842 @[ -z "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200843 { echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \
wdenk04a85b32004-04-15 18:22:41 +0000844 }
wdenk79fa88f2004-06-07 23:46:25 +0000845 @[ -n "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200846 { echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000847 }
848 @[ -z "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200849 { echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000850 }
851 @[ -n "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200852 { echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000853 }
854 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200855 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000856 }
857 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200858 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000859 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200860 @$(MKCONFIG) -a $(call xtract_NETTA,$@) ppc mpc8xx netta
wdenk04a85b32004-04-15 18:22:41 +0000861
wdenk79fa88f2004-06-07 23:46:25 +0000862xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
863
864NETTA2_V2_config \
865NETTA2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200866 @mkdir -p $(obj)include
867 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000868 @[ -z "$(findstring NETTA2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200869 { echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000870 }
871 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200872 { echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000873 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200874 @$(MKCONFIG) -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
wdenk79fa88f2004-06-07 23:46:25 +0000875
dzu@denx.dea367d422006-04-19 11:52:46 +0200876NC650_Rev1_config \
877NC650_Rev2_config \
878CP850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200879 @mkdir -p $(obj)include
880 @ >$(obj)include/config.h
dzu@denx.dea367d422006-04-19 11:52:46 +0200881 @[ -z "$(findstring CP850,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200882 { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \
883 echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200884 }
885 @[ -z "$(findstring Rev1,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200886 { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200887 }
888 @[ -z "$(findstring Rev2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200889 { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200890 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200891 @$(MKCONFIG) -a NC650 ppc mpc8xx nc650
wdenk7ca202f2004-08-28 22:45:57 +0000892
wdenk7ebf7442002-11-02 23:17:16 +0000893NX823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200894 @$(MKCONFIG) $(@:_config=) ppc mpc8xx nx823
wdenk7ebf7442002-11-02 23:17:16 +0000895
896pcu_e_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200897 @$(MKCONFIG) $(@:_config=) ppc mpc8xx pcu_e siemens
wdenk7ebf7442002-11-02 23:17:16 +0000898
wdenk3bbc8992003-12-07 22:27:15 +0000899QS850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200900 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000901
902QS823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200903 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000904
905QS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200906 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs860t snmc
wdenk3bbc8992003-12-07 22:27:15 +0000907
wdenkda93ed82004-09-29 11:02:56 +0000908quantum_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200909 @$(MKCONFIG) $(@:_config=) ppc mpc8xx quantum
wdenkda93ed82004-09-29 11:02:56 +0000910
wdenk7ebf7442002-11-02 23:17:16 +0000911R360MPI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200912 @$(MKCONFIG) $(@:_config=) ppc mpc8xx r360mpi
wdenk7ebf7442002-11-02 23:17:16 +0000913
wdenk682011f2003-06-03 23:54:09 +0000914RBC823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200915 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rbc823
wdenk682011f2003-06-03 23:54:09 +0000916
wdenk7ebf7442002-11-02 23:17:16 +0000917RPXClassic_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200918 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXClassic
wdenk7ebf7442002-11-02 23:17:16 +0000919
920RPXlite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200921 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXlite
wdenk7ebf7442002-11-02 23:17:16 +0000922
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100923RPXlite_DW_64_config \
924RPXlite_DW_LCD_config \
925RPXlite_DW_64_LCD_config \
wdenke63c8ee2004-06-09 21:04:48 +0000926RPXlite_DW_NVRAM_config \
927RPXlite_DW_NVRAM_64_config \
928RPXlite_DW_NVRAM_LCD_config \
929RPXlite_DW_NVRAM_64_LCD_config \
930RPXlite_DW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200931 @mkdir -p $(obj)include
932 @ >$(obj)include/config.h
wdenke63c8ee2004-06-09 21:04:48 +0000933 @[ -z "$(findstring _64,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200934 { echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000935 echo "... with 64MHz system clock ..."; \
936 }
937 @[ -z "$(findstring _LCD,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100938 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200939 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000940 echo "... with LCD display ..."; \
941 }
942 @[ -z "$(findstring _NVRAM,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100943 { echo "#define CFG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000944 echo "... with ENV in NVRAM ..."; \
945 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200946 @$(MKCONFIG) -a RPXlite_DW ppc mpc8xx RPXlite_dw
wdenke63c8ee2004-06-09 21:04:48 +0000947
wdenk73a8b272003-06-05 19:27:42 +0000948rmu_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200949 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rmu
wdenk73a8b272003-06-05 19:27:42 +0000950
wdenk7ebf7442002-11-02 23:17:16 +0000951RRvision_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200952 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000953
954RRvision_LCD_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200955 @mkdir -p $(obj)include
956 @echo "#define CONFIG_LCD" >$(obj)include/config.h
957 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
958 @$(MKCONFIG) -a RRvision ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000959
960SM850_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200961 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000962
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200963spc1920_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200964 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spc1920
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200965
wdenk7ebf7442002-11-02 23:17:16 +0000966SPD823TS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200967 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spd8xx
wdenk7ebf7442002-11-02 23:17:16 +0000968
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200969stxxtc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200970 @$(MKCONFIG) $(@:_config=) ppc mpc8xx stxxtc
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200971
wdenkdc7c9a12003-03-26 06:55:25 +0000972svm_sc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200973 @$(MKCONFIG) $(@:_config=) ppc mpc8xx svm_sc8xx
wdenkdc7c9a12003-03-26 06:55:25 +0000974
wdenk7ebf7442002-11-02 23:17:16 +0000975SXNI855T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200976 @$(MKCONFIG) $(@:_config=) ppc mpc8xx sixnet
wdenk7ebf7442002-11-02 23:17:16 +0000977
wdenkdb2f721f2003-03-06 00:58:30 +0000978# EMK MPC8xx based modules
979TOP860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200980 @$(MKCONFIG) $(@:_config=) ppc mpc8xx top860 emk
wdenkdb2f721f2003-03-06 00:58:30 +0000981
wdenk7ebf7442002-11-02 23:17:16 +0000982# Play some tricks for configuration selection
wdenke9132ea2004-04-24 23:23:30 +0000983# Only 855 and 860 boards may come with FEC
984# and only 823 boards may have LCD support
985xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +0000986
987FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000988FPS860L_config \
wdenkf12e5682003-07-07 20:07:54 +0000989NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +0000990TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000991TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +0000992TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000993TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000994TQM860L_config \
wdenkd126bfb2003-04-10 11:18:18 +0000995TQM862L_config \
wdenkae3af052003-08-07 22:18:11 +0000996TQM823M_config \
wdenkae3af052003-08-07 22:18:11 +0000997TQM850M_config \
wdenkf12e5682003-07-07 20:07:54 +0000998TQM855M_config \
wdenkf12e5682003-07-07 20:07:54 +0000999TQM860M_config \
wdenkf12e5682003-07-07 20:07:54 +00001000TQM862M_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +02001001TQM866M_config \
Markus Klotzbuecher090eb732006-07-12 15:26:01 +02001002TQM885D_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +02001003virtlab2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001004 @mkdir -p $(obj)include
1005 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +00001006 @[ -z "$(findstring _LCD,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001007 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
1008 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001009 echo "... with LCD display" ; \
1010 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001011 @$(MKCONFIG) -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +00001012
1013TTTech_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001014 @mkdir -p $(obj)include
1015 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1016 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
1017 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +00001018
wdenkec0aee72004-12-19 09:58:11 +00001019uc100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001020 @$(MKCONFIG) $(@:_config=) ppc mpc8xx uc100
wdenkf7d15722004-12-18 22:35:43 +00001021
wdenk608c9142003-01-13 23:54:46 +00001022v37_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001023 @mkdir -p $(obj)include
1024 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1025 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h
1026 @$(MKCONFIG) $(@:_config=) ppc mpc8xx v37
wdenk608c9142003-01-13 23:54:46 +00001027
dzu91e940d2003-09-25 22:32:40 +00001028wtk_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001029 @mkdir -p $(obj)include
1030 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1031 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h
1032 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
dzu91e940d2003-09-25 22:32:40 +00001033
wdenk7ebf7442002-11-02 23:17:16 +00001034#########################################################################
1035## PPC4xx Systems
1036#########################################################################
wdenke55ca7e2004-07-01 21:40:08 +00001037xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001038
Stefan Roese16c0cc12007-03-21 13:39:57 +01001039acadia_config: unconfig
1040 @$(MKCONFIG) $(@:_config=) ppc ppc4xx acadia amcc
1041
Stefan Roesec440bfe2007-06-06 11:42:13 +02001042acadia_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001043 @mkdir -p $(obj)include $(obj)board/amcc/acadia
1044 @mkdir -p $(obj)nand_spl/board/amcc/acadia
Stefan Roesec440bfe2007-06-06 11:42:13 +02001045 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
1046 @$(MKCONFIG) -n $@ -a acadia ppc ppc4xx acadia amcc
1047 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/acadia/config.tmp
1048 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1049
wdenk7ebf7442002-11-02 23:17:16 +00001050ADCIOP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001051 @$(MKCONFIG) $(@:_config=) ppc ppc4xx adciop esd
wdenk7ebf7442002-11-02 23:17:16 +00001052
Stefan Roese899620c2006-08-15 14:22:35 +02001053alpr_config: unconfig
Stefan Roese35d22f952007-08-10 10:42:25 +02001054 @$(MKCONFIG) $(@:_config=) ppc ppc4xx alpr prodrive
Stefan Roese899620c2006-08-15 14:22:35 +02001055
Wolfgang Denk7521af12005-10-09 01:04:33 +02001056AP1000_config:unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001057 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ap1000 amirix
Wolfgang Denk7521af12005-10-09 01:04:33 +02001058
stroesec419d1d2004-12-16 18:44:40 +00001059APC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001060 @$(MKCONFIG) $(@:_config=) ppc ppc4xx apc405 esd
stroesec419d1d2004-12-16 18:44:40 +00001061
wdenk7ebf7442002-11-02 23:17:16 +00001062AR405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001063 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ar405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001064
stroese549826e2003-05-23 11:41:44 +00001065ASH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001066 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ash405 esd
stroese549826e2003-05-23 11:41:44 +00001067
Stefan Roese8a316c92005-08-01 16:49:12 +02001068bamboo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001069 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bamboo amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001070
Stefan Roesecf959c72007-06-01 15:27:11 +02001071bamboo_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001072 @mkdir -p $(obj)include $(obj)board/amcc/bamboo
1073 @mkdir -p $(obj)nand_spl/board/amcc/bamboo
Stefan Roesecf959c72007-06-01 15:27:11 +02001074 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roesef3679aa2007-06-01 16:15:34 +02001075 @$(MKCONFIG) -n $@ -a bamboo ppc ppc4xx bamboo amcc
Stefan Roesecf959c72007-06-01 15:27:11 +02001076 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/bamboo/config.tmp
1077 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1078
Stefan Roese8a316c92005-08-01 16:49:12 +02001079bubinga_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001080 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bubinga amcc
stroese549826e2003-05-23 11:41:44 +00001081
wdenk7ebf7442002-11-02 23:17:16 +00001082CANBT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001083 @$(MKCONFIG) $(@:_config=) ppc ppc4xx canbt esd
wdenk7ebf7442002-11-02 23:17:16 +00001084
wdenk1d6f9722004-09-09 17:44:35 +00001085CATcenter_config \
1086CATcenter_25_config \
1087CATcenter_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001088 @mkdir -p $(obj)include
1089 @ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h
1090 @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001091 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001092 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001093 echo "SysClk = 25MHz" ; \
1094 }
1095 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001096 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001097 echo "SysClk = 33MHz" ; \
1098 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001099 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk10767cc2004-05-13 13:23:58 +00001100
Stefan Roese7644f162005-09-22 09:16:57 +02001101CPCI2DP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001102 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd
Stefan Roese7644f162005-09-22 09:16:57 +02001103
stroese549826e2003-05-23 11:41:44 +00001104CPCI405_config \
1105CPCI4052_config \
stroesec419d1d2004-12-16 18:44:40 +00001106CPCI405DT_config \
stroese549826e2003-05-23 11:41:44 +00001107CPCI405AB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001108 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci405 esd
1109 @echo "BOARD_REVISION = $(@:_config=)" >> $(obj)include/config.mk
wdenk7ebf7442002-11-02 23:17:16 +00001110
1111CPCI440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001112 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci440 esd
wdenk7ebf7442002-11-02 23:17:16 +00001113
1114CPCIISER4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001115 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpciiser4 esd
wdenk7ebf7442002-11-02 23:17:16 +00001116
wdenkdb01a2e2004-04-15 23:14:49 +00001117CRAYL1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001118 @$(MKCONFIG) $(@:_config=) ppc ppc4xx L1 cray
wdenk7ebf7442002-11-02 23:17:16 +00001119
wdenkcd0a9de2004-02-23 20:48:38 +00001120csb272_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001121 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb272
wdenkcd0a9de2004-02-23 20:48:38 +00001122
wdenkaa245092004-06-09 12:47:02 +00001123csb472_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001124 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb472
wdenkaa245092004-06-09 12:47:02 +00001125
wdenk7ebf7442002-11-02 23:17:16 +00001126DASA_SIM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001127 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dasa_sim esd
wdenk7ebf7442002-11-02 23:17:16 +00001128
stroese72cd5aa2003-09-12 08:57:15 +00001129DP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001130 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dp405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001131
wdenk7ebf7442002-11-02 23:17:16 +00001132DU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001133 @$(MKCONFIG) $(@:_config=) ppc ppc4xx du405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001134
Stefan Roese8a316c92005-08-01 16:49:12 +02001135ebony_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001136 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +00001137
wdenkdb01a2e2004-04-15 23:14:49 +00001138ERIC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001139 @$(MKCONFIG) $(@:_config=) ppc ppc4xx eric
wdenk7ebf7442002-11-02 23:17:16 +00001140
wdenkdb01a2e2004-04-15 23:14:49 +00001141EXBITGEN_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001142 @$(MKCONFIG) $(@:_config=) ppc ppc4xx exbitgen
wdenkd1cbe852003-06-28 17:24:46 +00001143
stroesec419d1d2004-12-16 18:44:40 +00001144G2000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001145 @$(MKCONFIG) $(@:_config=) ppc ppc4xx g2000
stroesec419d1d2004-12-16 18:44:40 +00001146
Niklaus Gigerac982ea2007-07-27 11:28:44 +02001147hcu4_config: unconfig
Stefan Roese35d22f952007-08-10 10:42:25 +02001148 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hcu4 netstal
Niklaus Gigerac982ea2007-07-27 11:28:44 +02001149
1150hcu5_config: unconfig
Stefan Roese35d22f952007-08-10 10:42:25 +02001151 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hcu5 netstal
Niklaus Gigerac982ea2007-07-27 11:28:44 +02001152
stroesec419d1d2004-12-16 18:44:40 +00001153HH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001154 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001155
stroese72cd5aa2003-09-12 08:57:15 +00001156HUB405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001157 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001158
wdenkdb01a2e2004-04-15 23:14:49 +00001159JSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001160 @$(MKCONFIG) $(@:_config=) ppc ppc4xx jse
wdenkdb01a2e2004-04-15 23:14:49 +00001161
Stefan Roeseb79316f2005-08-15 12:31:23 +02001162KAREF_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001163 @$(MKCONFIG) $(@:_config=) ppc ppc4xx karef sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001164
Stefan Roese4745aca2007-02-20 10:57:08 +01001165katmai_config: unconfig
1166 @$(MKCONFIG) $(@:_config=) ppc ppc4xx katmai amcc
1167
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001168luan_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001169 @$(MKCONFIG) $(@:_config=) ppc ppc4xx luan amcc
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001170
Stefan Roeseb765ffb2007-06-15 08:18:01 +02001171lwmon5_config: unconfig
1172 @$(MKCONFIG) $(@:_config=) ppc ppc4xx lwmon5
1173
Stefan Roeseb79316f2005-08-15 12:31:23 +02001174METROBOX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001175 @$(MKCONFIG) $(@:_config=) ppc ppc4xx metrobox sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001176
wdenkdb01a2e2004-04-15 23:14:49 +00001177MIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001178 @$(MKCONFIG) $(@:_config=) ppc ppc4xx mip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001179
wdenkdb01a2e2004-04-15 23:14:49 +00001180MIP405T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001181 @mkdir -p $(obj)include
1182 @echo "#define CONFIG_MIP405T" >$(obj)include/config.h
wdenkf3e0de62003-06-04 15:05:30 +00001183 @echo "Enable subset config for MIP405T"
Marian Balakowiczf9328632006-09-01 19:49:50 +02001184 @$(MKCONFIG) -a MIP405 ppc ppc4xx mip405 mpl
wdenkf3e0de62003-06-04 15:05:30 +00001185
wdenkdb01a2e2004-04-15 23:14:49 +00001186ML2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001187 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml2
wdenk7ebf7442002-11-02 23:17:16 +00001188
wdenkdb01a2e2004-04-15 23:14:49 +00001189ml300_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001190 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml300 xilinx
wdenk028ab6b2004-02-23 23:54:43 +00001191
Stefan Roese8a316c92005-08-01 16:49:12 +02001192ocotea_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001193 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocotea amcc
wdenk0e6d7982004-03-14 00:07:33 +00001194
wdenk7ebf7442002-11-02 23:17:16 +00001195OCRTC_config \
1196ORSG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001197 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocrtc esd
wdenk7ebf7442002-11-02 23:17:16 +00001198
Stefan Roese5568e612005-11-22 13:20:42 +01001199p3p440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001200 @$(MKCONFIG) $(@:_config=) ppc ppc4xx p3p440 prodrive
Stefan Roese5568e612005-11-22 13:20:42 +01001201
wdenk7ebf7442002-11-02 23:17:16 +00001202PCI405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001203 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pci405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001204
Stefan Roesea4c8d132006-06-02 16:18:04 +02001205pcs440ep_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001206 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pcs440ep
Stefan Roesea4c8d132006-06-02 16:18:04 +02001207
wdenkdb01a2e2004-04-15 23:14:49 +00001208PIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001209 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001210
stroese72cd5aa2003-09-12 08:57:15 +00001211PLU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001212 @$(MKCONFIG) $(@:_config=) ppc ppc4xx plu405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001213
stroese549826e2003-05-23 11:41:44 +00001214PMC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001215 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pmc405 esd
stroese549826e2003-05-23 11:41:44 +00001216
wdenk281e00a2004-08-01 22:48:16 +00001217PPChameleonEVB_config \
wdenke55ca7e2004-07-01 21:40:08 +00001218PPChameleonEVB_BA_25_config \
1219PPChameleonEVB_ME_25_config \
1220PPChameleonEVB_HI_25_config \
1221PPChameleonEVB_BA_33_config \
1222PPChameleonEVB_ME_33_config \
1223PPChameleonEVB_HI_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001224 @mkdir -p $(obj)include
1225 @ >$(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001226 @[ -z "$(findstring EVB_BA,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001227 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001228 echo "... BASIC model" ; \
1229 }
wdenk1d6f9722004-09-09 17:44:35 +00001230 @[ -z "$(findstring EVB_ME,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001231 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001232 echo "... MEDIUM model" ; \
1233 }
wdenk1d6f9722004-09-09 17:44:35 +00001234 @[ -z "$(findstring EVB_HI,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001235 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001236 echo "... HIGH-END model" ; \
1237 }
wdenke55ca7e2004-07-01 21:40:08 +00001238 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001239 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001240 echo "SysClk = 25MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001241 }
1242 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001243 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001244 echo "SysClk = 33MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001245 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001246 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk12f34242003-09-02 22:48:03 +00001247
wdenk652a10c2005-01-09 23:48:14 +00001248sbc405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001249 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sbc405
wdenk652a10c2005-01-09 23:48:14 +00001250
Stefan Roese430f1b02007-03-28 15:03:16 +02001251sequoia_config \
1252rainier_config: unconfig
1253 @mkdir -p $(obj)include
1254 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1255 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
1256 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Stefan Roese887e2ec2006-09-07 11:51:23 +02001257
Stefan Roese430f1b02007-03-28 15:03:16 +02001258sequoia_nand_config \
1259rainier_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001260 @mkdir -p $(obj)include $(obj)board/amcc/sequoia
1261 @mkdir -p $(obj)nand_spl/board/amcc/sequoia
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001262 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roese430f1b02007-03-28 15:03:16 +02001263 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1264 tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h
1265 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001266 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1267 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
stroese72cd5aa2003-09-12 08:57:15 +00001268
Wolfgang Denk6d3e0102007-01-16 18:30:50 +01001269sc3_config:unconfig
Stefan Roese35d22f952007-08-10 10:42:25 +02001270 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sc3
Heiko Schocherca43ba12007-01-11 15:44:44 +01001271
John Otkend4024bb2007-07-26 17:49:11 +02001272taihu_config: unconfig
1273 @$(MKCONFIG) $(@:_config=) ppc ppc4xx taihu amcc
1274
Stefan Roese5fb692c2007-01-18 10:25:34 +01001275taishan_config: unconfig
1276 @$(MKCONFIG) $(@:_config=) ppc ppc4xx taishan amcc
1277
wdenk7ebf7442002-11-02 23:17:16 +00001278VOH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001279 @$(MKCONFIG) $(@:_config=) ppc ppc4xx voh405 esd
wdenk3bac3512003-03-12 10:41:04 +00001280
stroesec419d1d2004-12-16 18:44:40 +00001281VOM405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001282 @$(MKCONFIG) $(@:_config=) ppc ppc4xx vom405 esd
stroesec419d1d2004-12-16 18:44:40 +00001283
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001284CMS700_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001285 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001286
wdenk7ebf7442002-11-02 23:17:16 +00001287W7OLMC_config \
1288W7OLMG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001289 @$(MKCONFIG) $(@:_config=) ppc ppc4xx w7o
wdenk7ebf7442002-11-02 23:17:16 +00001290
Stefan Roese430f1b02007-03-28 15:03:16 +02001291# Walnut & Sycamore images are identical (recognized via PVR)
1292walnut_config \
1293sycamore_config: unconfig
1294 @$(MKCONFIG) -n $@ -a walnut ppc ppc4xx walnut amcc
wdenk7ebf7442002-11-02 23:17:16 +00001295
stroesec419d1d2004-12-16 18:44:40 +00001296WUH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001297 @$(MKCONFIG) $(@:_config=) ppc ppc4xx wuh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001298
wdenkdb01a2e2004-04-15 23:14:49 +00001299XPEDITE1K_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001300 @$(MKCONFIG) $(@:_config=) ppc ppc4xx xpedite1k
wdenkba56f622004-02-06 23:19:44 +00001301
Stefan Roese430f1b02007-03-28 15:03:16 +02001302yosemite_config \
1303yellowstone_config: unconfig
Stefan Roese700200c2007-01-30 17:04:19 +01001304 @mkdir -p $(obj)include
Stefan Roese430f1b02007-03-28 15:03:16 +02001305 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1306 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
Stefan Roese2aa54f62007-02-02 12:42:08 +01001307 @$(MKCONFIG) -n $@ -a yosemite ppc ppc4xx yosemite amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001308
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001309yucca_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001310 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yucca amcc
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001311
Stefan Roese779e9752007-08-14 14:44:41 +02001312zeus_config: unconfig
1313 @$(MKCONFIG) $(@:_config=) ppc ppc4xx zeus
1314
wdenk7ebf7442002-11-02 23:17:16 +00001315#########################################################################
wdenk983fda82004-10-28 00:09:35 +00001316## MPC8220 Systems
1317#########################################################################
Wolfgang Denkdc17fb62005-08-03 22:32:02 +02001318
1319Alaska8220_config \
1320Yukon8220_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001321 @$(MKCONFIG) $(@:_config=) ppc mpc8220 alaska
wdenk983fda82004-10-28 00:09:35 +00001322
wdenk12b43d52005-04-05 21:57:18 +00001323sorcery_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001324 @$(MKCONFIG) $(@:_config=) ppc mpc8220 sorcery
wdenk12b43d52005-04-05 21:57:18 +00001325
wdenk983fda82004-10-28 00:09:35 +00001326#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001327## MPC824x Systems
1328#########################################################################
wdenkefa329c2004-03-23 20:18:25 +00001329xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001330
wdenk03329902003-06-20 22:36:30 +00001331A3000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001332 @$(MKCONFIG) $(@:_config=) ppc mpc824x a3000
wdenk03329902003-06-20 22:36:30 +00001333
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001334barco_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001335 @$(MKCONFIG) $(@:_config=) ppc mpc824x barco
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001336
wdenk7ebf7442002-11-02 23:17:16 +00001337BMW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001338 @$(MKCONFIG) $(@:_config=) ppc mpc824x bmw
wdenk7ebf7442002-11-02 23:17:16 +00001339
wdenk3bac3512003-03-12 10:41:04 +00001340CPC45_config \
1341CPC45_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001342 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc824x cpc45
1343 @cd $(obj)include ; \
wdenk3bac3512003-03-12 10:41:04 +00001344 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1345 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1346 echo "... booting from 8-bit flash" ; \
1347 else \
1348 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1349 echo "... booting from 64-bit flash" ; \
1350 fi; \
1351 echo "export CONFIG_BOOT_ROM" >> config.mk;
1352
wdenk7ebf7442002-11-02 23:17:16 +00001353CU824_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001354 @$(MKCONFIG) $(@:_config=) ppc mpc824x cu824
wdenk7ebf7442002-11-02 23:17:16 +00001355
wdenk7abf0c52004-04-18 21:45:42 +00001356debris_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001357 @$(MKCONFIG) $(@:_config=) ppc mpc824x debris etin
wdenk7abf0c52004-04-18 21:45:42 +00001358
wdenk80885a92004-02-26 23:46:20 +00001359eXalion_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001360 @$(MKCONFIG) $(@:_config=) ppc mpc824x eXalion
wdenk80885a92004-02-26 23:46:20 +00001361
wdenk756f5862005-04-03 15:51:42 +00001362HIDDEN_DRAGON_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001363 @$(MKCONFIG) $(@:_config=) ppc mpc824x hidden_dragon
wdenk756f5862005-04-03 15:51:42 +00001364
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001365kvme080_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001366 @$(MKCONFIG) $(@:_config=) ppc mpc824x kvme080 etin
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001367
wdenk7ebf7442002-11-02 23:17:16 +00001368MOUSSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001369 @$(MKCONFIG) $(@:_config=) ppc mpc824x mousse
wdenk7ebf7442002-11-02 23:17:16 +00001370
1371MUSENKI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001372 @$(MKCONFIG) $(@:_config=) ppc mpc824x musenki
wdenk7ebf7442002-11-02 23:17:16 +00001373
wdenkb4676a22003-12-07 19:24:00 +00001374MVBLUE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001375 @$(MKCONFIG) $(@:_config=) ppc mpc824x mvblue
wdenkb4676a22003-12-07 19:24:00 +00001376
wdenk7ebf7442002-11-02 23:17:16 +00001377OXC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001378 @$(MKCONFIG) $(@:_config=) ppc mpc824x oxc
wdenk7ebf7442002-11-02 23:17:16 +00001379
1380PN62_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001381 @$(MKCONFIG) $(@:_config=) ppc mpc824x pn62
wdenk7ebf7442002-11-02 23:17:16 +00001382
1383Sandpoint8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001384 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001385
1386Sandpoint8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001387 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001388
wdenk466b7412004-07-10 22:35:59 +00001389sbc8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001390 @$(MKCONFIG) $(@:_config=) ppc mpc824x sbc8240
wdenk466b7412004-07-10 22:35:59 +00001391
wdenkd1cbe852003-06-28 17:24:46 +00001392SL8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001393 @$(MKCONFIG) $(@:_config=) ppc mpc824x sl8245
wdenkd1cbe852003-06-28 17:24:46 +00001394
wdenk7ebf7442002-11-02 23:17:16 +00001395utx8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001396 @$(MKCONFIG) $(@:_config=) ppc mpc824x utx8245
wdenk7ebf7442002-11-02 23:17:16 +00001397
1398#########################################################################
1399## MPC8260 Systems
1400#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001401
wdenk54387ac2003-10-08 22:45:44 +00001402atc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001403 @$(MKCONFIG) $(@:_config=) ppc mpc8260 atc
wdenk54387ac2003-10-08 22:45:44 +00001404
wdenk7ebf7442002-11-02 23:17:16 +00001405cogent_mpc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001406 @$(MKCONFIG) $(@:_config=) ppc mpc8260 cogent
wdenk7ebf7442002-11-02 23:17:16 +00001407
1408CPU86_config \
1409CPU86_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001410 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu86
1411 @cd $(obj)include ; \
wdenk7ebf7442002-11-02 23:17:16 +00001412 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1413 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1414 echo "... booting from 8-bit flash" ; \
1415 else \
1416 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1417 echo "... booting from 64-bit flash" ; \
1418 fi; \
1419 echo "export CONFIG_BOOT_ROM" >> config.mk;
1420
wdenk384cc682005-04-03 22:35:21 +00001421CPU87_config \
1422CPU87_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001423 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu87
1424 @cd $(obj)include ; \
wdenk384cc682005-04-03 22:35:21 +00001425 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1426 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1427 echo "... booting from 8-bit flash" ; \
1428 else \
1429 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1430 echo "... booting from 64-bit flash" ; \
1431 fi; \
1432 echo "export CONFIG_BOOT_ROM" >> config.mk;
1433
Wolfgang Denkf901a832005-08-06 01:42:58 +02001434ep8248_config \
1435ep8248E_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001436 @$(MKCONFIG) ep8248 ppc mpc8260 ep8248
Wolfgang Denkf901a832005-08-06 01:42:58 +02001437
wdenk7ebf7442002-11-02 23:17:16 +00001438ep8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001439 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep8260
wdenk7ebf7442002-11-02 23:17:16 +00001440
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001441ep82xxm_config: unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -06001442 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep82xxm
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001443
wdenk7ebf7442002-11-02 23:17:16 +00001444gw8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001445 @$(MKCONFIG) $(@:_config=) ppc mpc8260 gw8260
wdenk7ebf7442002-11-02 23:17:16 +00001446
1447hymod_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001448 @$(MKCONFIG) $(@:_config=) ppc mpc8260 hymod
wdenk7ebf7442002-11-02 23:17:16 +00001449
wdenk9dd41a72005-05-12 22:48:09 +00001450IDS8247_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001451 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ids8247
wdenk9dd41a72005-05-12 22:48:09 +00001452
wdenk7ebf7442002-11-02 23:17:16 +00001453IPHASE4539_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001454 @$(MKCONFIG) $(@:_config=) ppc mpc8260 iphase4539
wdenk7ebf7442002-11-02 23:17:16 +00001455
wdenkc3c7f862004-06-09 14:47:54 +00001456ISPAN_config \
1457ISPAN_REVB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001458 @mkdir -p $(obj)include
wdenkc3c7f862004-06-09 14:47:54 +00001459 @if [ "$(findstring _REVB_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001460 echo "#define CFG_REV_B" > $(obj)include/config.h ; \
wdenkc3c7f862004-06-09 14:47:54 +00001461 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001462 @$(MKCONFIG) -a ISPAN ppc mpc8260 ispan
wdenkc3c7f862004-06-09 14:47:54 +00001463
wdenk04a85b32004-04-15 18:22:41 +00001464MPC8260ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001465MPC8260ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001466MPC8260ADS_33MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001467MPC8260ADS_33MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001468MPC8260ADS_40MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001469MPC8260ADS_40MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001470MPC8272ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001471MPC8272ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001472PQ2FADS_config \
wdenk901787d2005-04-03 23:22:21 +00001473PQ2FADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001474PQ2FADS-VR_config \
wdenk901787d2005-04-03 23:22:21 +00001475PQ2FADS-VR_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001476PQ2FADS-ZU_config \
wdenk901787d2005-04-03 23:22:21 +00001477PQ2FADS-ZU_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001478PQ2FADS-ZU_66MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001479PQ2FADS-ZU_66MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001480 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001481 @mkdir -p $(obj)include
1482 @mkdir -p $(obj)board/mpc8260ads
wdenk04a85b32004-04-15 18:22:41 +00001483 $(if $(findstring PQ2FADS,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001484 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > $(obj)include/config.h, \
1485 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h)
wdenk04a85b32004-04-15 18:22:41 +00001486 $(if $(findstring MHz,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001487 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \
wdenk04a85b32004-04-15 18:22:41 +00001488 $(if $(findstring VR,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001489 @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h))
wdenk901787d2005-04-03 23:22:21 +00001490 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001491 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/mpc8260ads/config.tmp ; \
wdenk901787d2005-04-03 23:22:21 +00001492 echo "... with lowboot configuration" ; \
1493 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001494 @$(MKCONFIG) -a MPC8260ADS ppc mpc8260 mpc8260ads
wdenk7ebf7442002-11-02 23:17:16 +00001495
wdenkdb2f721f2003-03-06 00:58:30 +00001496MPC8266ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001497 @$(MKCONFIG) $(@:_config=) ppc mpc8260 mpc8266ads
wdenkdb2f721f2003-03-06 00:58:30 +00001498
wdenkefa329c2004-03-23 20:18:25 +00001499# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk10f67012003-03-25 18:06:06 +00001500PM825_config \
wdenkefa329c2004-03-23 20:18:25 +00001501PM825_ROMBOOT_config \
1502PM825_BIGFLASH_config \
1503PM825_ROMBOOT_BIGFLASH_config \
wdenk7ebf7442002-11-02 23:17:16 +00001504PM826_config \
wdenkefa329c2004-03-23 20:18:25 +00001505PM826_ROMBOOT_config \
1506PM826_BIGFLASH_config \
1507PM826_ROMBOOT_BIGFLASH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001508 @mkdir -p $(obj)include
1509 @mkdir -p $(obj)board/pm826
wdenkefa329c2004-03-23 20:18:25 +00001510 @if [ "$(findstring PM825_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001511 echo "#define CONFIG_PCI" >$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001512 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001513 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001514 fi
1515 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1516 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001517 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1518 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001519 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1520 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001521 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001522 fi; \
1523 else \
wdenk7ebf7442002-11-02 23:17:16 +00001524 echo "... booting from 64-bit flash" ; \
wdenkefa329c2004-03-23 20:18:25 +00001525 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1526 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001527 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
1528 echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001529 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001530 echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001531 fi; \
1532 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001533 @$(MKCONFIG) -a PM826 ppc mpc8260 pm826
wdenkefa329c2004-03-23 20:18:25 +00001534
1535PM828_config \
1536PM828_PCI_config \
1537PM828_ROMBOOT_config \
1538PM828_ROMBOOT_PCI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001539 @mkdir -p $(obj)include
1540 @mkdir -p $(obj)board/pm826
Marian Balakowicz17076262006-04-05 20:37:11 +02001541 @if [ "$(findstring _PCI_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001542 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001543 echo "... with PCI enabled" ; \
1544 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001545 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001546 fi
1547 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1548 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001549 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1550 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001551 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001552 @$(MKCONFIG) -a PM828 ppc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +00001553
1554ppmc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001555 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ppmc8260
wdenk7ebf7442002-11-02 23:17:16 +00001556
wdenk8b0bfc62005-04-03 23:11:38 +00001557Rattler8248_config \
1558Rattler_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001559 @mkdir -p $(obj)include
wdenk8b0bfc62005-04-03 23:11:38 +00001560 $(if $(findstring 8248,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001561 @echo "#define CONFIG_MPC8248" > $(obj)include/config.h)
1562 @$(MKCONFIG) -a Rattler ppc mpc8260 rattler
wdenk8b0bfc62005-04-03 23:11:38 +00001563
wdenk7ebf7442002-11-02 23:17:16 +00001564RPXsuper_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001565 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rpxsuper
wdenk7ebf7442002-11-02 23:17:16 +00001566
1567rsdproto_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001568 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rsdproto
wdenk7ebf7442002-11-02 23:17:16 +00001569
1570sacsng_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001571 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sacsng
wdenk7ebf7442002-11-02 23:17:16 +00001572
1573sbc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001574 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sbc8260
wdenk7ebf7442002-11-02 23:17:16 +00001575
1576SCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001577 @$(MKCONFIG) $(@:_config=) ppc mpc8260 SCM siemens
wdenk7ebf7442002-11-02 23:17:16 +00001578
wdenk27b207f2003-07-24 23:38:38 +00001579TQM8255_AA_config \
1580TQM8260_AA_config \
1581TQM8260_AB_config \
1582TQM8260_AC_config \
1583TQM8260_AD_config \
1584TQM8260_AE_config \
1585TQM8260_AF_config \
1586TQM8260_AG_config \
1587TQM8260_AH_config \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001588TQM8260_AI_config \
wdenk27b207f2003-07-24 23:38:38 +00001589TQM8265_AA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001590 @mkdir -p $(obj)include
wdenk27b207f2003-07-24 23:38:38 +00001591 @case "$@" in \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001592 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
1593 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
1594 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1595 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1596 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1597 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
1598 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1599 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
1600 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
1601 TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1602 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
wdenk27b207f2003-07-24 23:38:38 +00001603 esac; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001604 >$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001605 if [ "$${CTYPE}" != "MPC8260" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001606 echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001607 fi; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001608 echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001609 echo "... with $${CFREQ}MHz system clock" ; \
1610 if [ "$${CACHE}" == "yes" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001611 echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001612 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001613 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001614 echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001615 echo "... without L2 Cache support" ; \
wdenk27b207f2003-07-24 23:38:38 +00001616 fi; \
1617 if [ "$${BMODE}" == "60x" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001618 echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001619 echo "... with 60x Bus Mode" ; \
1620 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001621 echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001622 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001623 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001624 @$(MKCONFIG) -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +00001625
Heiko Schocherfa230442006-12-21 17:17:02 +01001626TQM8272_config: unconfig
1627 @$(MKCONFIG) -a TQM8272 ppc mpc8260 tqm8272
1628
wdenkba91e262005-05-30 23:55:42 +00001629VoVPN-GW_66MHz_config \
1630VoVPN-GW_100MHz_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001631 @mkdir -p $(obj)include
1632 @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h
1633 @$(MKCONFIG) -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
wdenkba91e262005-05-30 23:55:42 +00001634
wdenk54387ac2003-10-08 22:45:44 +00001635ZPC1900_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001636 @$(MKCONFIG) $(@:_config=) ppc mpc8260 zpc1900
wdenk7aa78612003-05-03 15:50:43 +00001637
wdenk4e5ca3e2003-12-08 01:34:36 +00001638#########################################################################
1639## Coldfire
1640#########################################################################
1641
TsiChungLiewa605aac2007-08-16 05:04:31 -05001642M5249EVB_config : unconfig
1643 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5249evb freescale
1644
TsiChungLiewa1436a82007-08-16 13:20:50 -05001645M5253EVBE_config : unconfig
1646 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5253evbe freescale
1647
Wolfgang Denk74812662005-12-12 16:06:05 +01001648cobra5272_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001649 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272
Wolfgang Denk74812662005-12-12 16:06:05 +01001650
Wolfgang Denk4176c792006-06-10 19:27:47 +02001651EB+MCF-EV123_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001652 @mkdir -p $(obj)include
1653 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1654 @ >$(obj)include/config.h
1655 @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1656 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001657
1658EB+MCF-EV123_internal_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001659 @mkdir -p $(obj)include
1660 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1661 @ >$(obj)include/config.h
1662 @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1663 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001664
Bartlomiej Siekadaa6e412006-12-20 00:27:32 +01001665idmr_config : unconfig
1666 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 idmr
1667
Wolfgang Denk4176c792006-06-10 19:27:47 +02001668M5271EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001669 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb
Wolfgang Denk4176c792006-06-10 19:27:47 +02001670
wdenk4e5ca3e2003-12-08 01:34:36 +00001671M5272C3_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001672 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3
wdenk4e5ca3e2003-12-08 01:34:36 +00001673
1674M5282EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001675 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb
wdenk4e5ca3e2003-12-08 01:34:36 +00001676
stroesec419d1d2004-12-16 18:44:40 +00001677TASREG_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001678 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd
stroesec419d1d2004-12-16 18:44:40 +00001679
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001680r5200_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001681 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 r5200
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001682
TsiChung Liew8e585f02007-06-18 13:50:13 -05001683M5329AFEE_config \
1684M5329BFEE_config : unconfig
1685 @case "$@" in \
1686 M5329AFEE_config) NAND=0;; \
1687 M5329BFEE_config) NAND=16;; \
1688 esac; \
1689 >include/config.h ; \
1690 if [ "$${NAND}" != "0" ] ; then \
TsiChungLiewab77bc52007-08-15 15:39:17 -05001691 echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \
TsiChung Liew8e585f02007-06-18 13:50:13 -05001692 fi
1693 @$(MKCONFIG) -a M5329EVB m68k mcf532x m5329evb freescale
1694
TsiChungLiew8ae158c2007-08-16 15:05:11 -05001695M54455EVB_config \
1696M54455EVB_atmel_config \
1697M54455EVB_intel_config \
1698M54455EVB_a33_config \
1699M54455EVB_a66_config \
1700M54455EVB_i33_config \
1701M54455EVB_i66_config : unconfig
1702 @case "$@" in \
1703 M54455EVB_config) FLASH=ATMEL; FREQ=33333333;; \
1704 M54455EVB_atmel_config) FLASH=ATMEL; FREQ=33333333;; \
1705 M54455EVB_intel_config) FLASH=INTEL; FREQ=33333333;; \
1706 M54455EVB_a33_config) FLASH=ATMEL; FREQ=33333333;; \
1707 M54455EVB_a66_config) FLASH=ATMEL; FREQ=66666666;; \
1708 M54455EVB_i33_config) FLASH=INTEL; FREQ=33333333;; \
1709 M54455EVB_i66_config) FLASH=INTEL; FREQ=66666666;; \
1710 esac; \
1711 >include/config.h ; \
1712 if [ "$${FLASH}" == "INTEL" ] ; then \
1713 echo "#undef CFG_ATMEL_BOOT" >> include/config.h ; \
1714 echo "... with INTEL boot..." ; \
1715 else \
1716 echo "#define CFG_ATMEL_BOOT" >> include/config.h ; \
1717 echo "... with ATMEL boot..." ; \
1718 fi; \
1719 echo "#define CFG_INPUT_CLKSRC $${FREQ}" >>include/config.h ; \
1720 echo "... with $${FREQ}Hz input clock"
1721 @$(MKCONFIG) -a M54455EVB m68k mcf5445x m54455evb freescale
1722
wdenk7ebf7442002-11-02 23:17:16 +00001723#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -05001724## MPC83xx Systems
1725#########################################################################
1726
Kim Phillips5c5d3242007-04-25 12:34:38 -05001727MPC8313ERDB_33_config \
1728MPC8313ERDB_66_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001729 @mkdir -p $(obj)include
1730 @echo "" >$(obj)include/config.h ; \
Kim Phillips5c5d3242007-04-25 12:34:38 -05001731 if [ "$(findstring _33_,$@)" ] ; then \
1732 echo -n "...33M ..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001733 echo "#define CFG_33MHZ" >>$(obj)include/config.h ; \
Kim Phillips5c5d3242007-04-25 12:34:38 -05001734 fi ; \
1735 if [ "$(findstring _66_,$@)" ] ; then \
1736 echo -n "...66M..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001737 echo "#define CFG_66MHZ" >>$(obj)include/config.h ; \
Kim Phillips5c5d3242007-04-25 12:34:38 -05001738 fi ;
1739 @$(MKCONFIG) -a MPC8313ERDB ppc mpc83xx mpc8313erdb
1740
Kim Phillips1c274c42007-07-25 19:25:33 -05001741MPC8323ERDB_config: unconfig
1742 @$(MKCONFIG) -a MPC8323ERDB ppc mpc83xx mpc8323erdb freescale
1743
Kim Phillips4decd842007-01-24 17:18:37 -06001744MPC832XEMDS_config \
1745MPC832XEMDS_HOST_33_config \
1746MPC832XEMDS_HOST_66_config \
1747MPC832XEMDS_SLAVE_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001748 @mkdir -p $(obj)include
1749 @echo "" >$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001750 if [ "$(findstring _HOST_,$@)" ] ; then \
1751 echo -n "... PCI HOST " ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001752 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001753 fi ; \
1754 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1755 echo "...PCI SLAVE 66M" ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001756 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
1757 echo "#define CONFIG_PCISLAVE" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001758 fi ; \
1759 if [ "$(findstring _33_,$@)" ] ; then \
1760 echo -n "...33M ..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001761 echo "#define PCI_33M" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001762 fi ; \
1763 if [ "$(findstring _66_,$@)" ] ; then \
1764 echo -n "...66M..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001765 echo "#define PCI_66M" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001766 fi ;
1767 @$(MKCONFIG) -a MPC832XEMDS ppc mpc83xx mpc832xemds
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001768
Marian Balakowicz991425f2006-03-14 16:24:38 +01001769MPC8349EMDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001770 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349emds
Marian Balakowicz991425f2006-03-14 16:24:38 +01001771
Timur Tabi7a78f142007-01-31 15:54:29 -06001772MPC8349ITX_config \
1773MPC8349ITX_LOWBOOT_config \
1774MPC8349ITXGP_config: unconfig
1775 @mkdir -p $(obj)include
1776 @mkdir -p $(obj)board/mpc8349itx
1777 @echo "#define CONFIG_$(subst _LOWBOOT,,$(@:_config=))" >> $(obj)include/config.h
1778 @if [ "$(findstring GP,$@)" ] ; then \
1779 echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \
1780 fi
1781 @if [ "$(findstring LOWBOOT,$@)" ] ; then \
1782 echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \
1783 fi
1784 @$(MKCONFIG) -a -n $(@:_config=) MPC8349ITX ppc mpc83xx mpc8349itx
Kim Phillips4decd842007-01-24 17:18:37 -06001785
Dave Liu5f820432006-11-03 19:33:44 -06001786MPC8360EMDS_config \
1787MPC8360EMDS_HOST_33_config \
1788MPC8360EMDS_HOST_66_config \
1789MPC8360EMDS_SLAVE_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001790 @mkdir -p $(obj)include
1791 @echo "" >$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001792 if [ "$(findstring _HOST_,$@)" ] ; then \
1793 echo -n "... PCI HOST " ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001794 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001795 fi ; \
1796 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1797 echo "...PCI SLAVE 66M" ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001798 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
1799 echo "#define CONFIG_PCISLAVE" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001800 fi ; \
1801 if [ "$(findstring _33_,$@)" ] ; then \
1802 echo -n "...33M ..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001803 echo "#define PCI_33M" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001804 fi ; \
1805 if [ "$(findstring _66_,$@)" ] ; then \
1806 echo -n "...66M..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001807 echo "#define PCI_66M" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001808 fi ;
1809 @$(MKCONFIG) -a MPC8360EMDS ppc mpc83xx mpc8360emds
1810
Paul Gortmaker91e25762007-01-16 11:38:14 -05001811sbc8349_config: unconfig
1812 @$(MKCONFIG) $(@:_config=) ppc mpc83xx sbc8349
1813
Kim Phillips4decd842007-01-24 17:18:37 -06001814TQM834x_config: unconfig
1815 @$(MKCONFIG) $(@:_config=) ppc mpc83xx tqm834x
1816
Timur Tabi2ad6b512006-10-31 18:44:42 -06001817
Eran Libertyf046ccd2005-07-28 10:08:46 -05001818#########################################################################
wdenk42d1f032003-10-15 23:53:47 +00001819## MPC85xx Systems
1820#########################################################################
1821
wdenk0ac6f8b2004-07-09 23:27:13 +00001822MPC8540ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001823 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8540ads
wdenk42d1f032003-10-15 23:53:47 +00001824
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001825MPC8540EVAL_config \
1826MPC8540EVAL_33_config \
1827MPC8540EVAL_66_config \
1828MPC8540EVAL_33_slave_config \
1829MPC8540EVAL_66_slave_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001830 @mkdir -p $(obj)include
1831 @echo "" >$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001832 if [ "$(findstring _33_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001833 echo "... 33 MHz PCI" ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001834 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001835 echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001836 echo "... 66 MHz PCI" ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001837 fi ; \
1838 if [ "$(findstring _slave_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001839 echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001840 echo " slave" ; \
1841 else \
1842 echo " host" ; \
1843 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001844 @$(MKCONFIG) -a MPC8540EVAL ppc mpc85xx mpc8540eval
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001845
wdenk0ac6f8b2004-07-09 23:27:13 +00001846MPC8560ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001847 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8560ads
wdenk42d1f032003-10-15 23:53:47 +00001848
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07001849MPC8541CDS_legacy_config \
wdenk03f5c552004-10-10 21:21:55 +00001850MPC8541CDS_config: unconfig
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07001851 @mkdir -p $(obj)include
1852 @echo "" >$(obj)include/config.h ; \
1853 if [ "$(findstring _legacy_,$@)" ] ; then \
1854 echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \
1855 echo "... legacy" ; \
1856 fi
1857 @$(MKCONFIG) -a MPC8541CDS ppc mpc85xx mpc8541cds cds
wdenk03f5c552004-10-10 21:21:55 +00001858
Andy Fleming81f481c2007-04-23 02:24:28 -05001859MPC8544DS_config: unconfig
1860 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8544ds freescale
1861
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07001862MPC8548CDS_legacy_config \
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001863MPC8548CDS_config: unconfig
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07001864 @mkdir -p $(obj)include
1865 @echo "" >$(obj)include/config.h ; \
1866 if [ "$(findstring _legacy_,$@)" ] ; then \
1867 echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \
1868 echo "... legacy" ; \
1869 fi
1870 @$(MKCONFIG) -a MPC8548CDS ppc mpc85xx mpc8548cds cds
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001871
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07001872MPC8555CDS_legacy_config \
wdenk03f5c552004-10-10 21:21:55 +00001873MPC8555CDS_config: unconfig
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07001874 @mkdir -p $(obj)include
1875 @echo "" >$(obj)include/config.h ; \
1876 if [ "$(findstring _legacy_,$@)" ] ; then \
1877 echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \
1878 echo "... legacy" ; \
1879 fi
1880 @$(MKCONFIG) -a MPC8555CDS ppc mpc85xx mpc8555cds cds
wdenk7abf0c52004-04-18 21:45:42 +00001881
Andy Fleming67431052007-04-23 02:54:25 -05001882MPC8568MDS_config: unconfig
1883 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8568mds
1884
wdenk384cc682005-04-03 22:35:21 +00001885PM854_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001886 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm854
wdenk384cc682005-04-03 22:35:21 +00001887
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001888PM856_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001889 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm856
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001890
wdenkc15f3122004-10-10 22:44:24 +00001891sbc8540_config \
1892sbc8540_33_config \
1893sbc8540_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001894 @mkdir -p $(obj)include
wdenkc15f3122004-10-10 22:44:24 +00001895 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001896 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001897 echo "... 66 MHz PCI" ; \
1898 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001899 >$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001900 echo "... 33 MHz PCI" ; \
1901 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001902 @$(MKCONFIG) -a SBC8540 ppc mpc85xx sbc8560
wdenkc15f3122004-10-10 22:44:24 +00001903
wdenk466b7412004-07-10 22:35:59 +00001904sbc8560_config \
1905sbc8560_33_config \
1906sbc8560_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001907 @mkdir -p $(obj)include
wdenk8b07a112004-07-10 21:45:47 +00001908 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001909 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001910 echo "... 66 MHz PCI" ; \
1911 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001912 >$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001913 echo "... 33 MHz PCI" ; \
1914 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001915 @$(MKCONFIG) -a sbc8560 ppc mpc85xx sbc8560
wdenk8b07a112004-07-10 21:45:47 +00001916
wdenk03f5c552004-10-10 21:21:55 +00001917stxgp3_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001918 @$(MKCONFIG) $(@:_config=) ppc mpc85xx stxgp3
wdenk03f5c552004-10-10 21:21:55 +00001919
Wolfgang Denkee152982007-05-31 17:20:09 +02001920stxssa_config \
1921stxssa_4M_config: unconfig
1922 @mkdir -p $(obj)include
1923 @if [ "$(findstring _4M_,$@)" ] ; then \
1924 echo "#define CONFIG_STXSSA_4M" >>$(obj)include/config.h ; \
1925 echo "... with 4 MiB flash memory" ; \
1926 else \
1927 >$(obj)include/config.h ; \
1928 fi
1929 @$(MKCONFIG) -a stxssa ppc mpc85xx stxssa
Dan Malek35171dc2007-01-05 09:15:34 +01001930
Stefan Roesed96f41e2005-11-30 13:06:40 +01001931TQM8540_config \
1932TQM8541_config \
1933TQM8555_config \
1934TQM8560_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001935 @mkdir -p $(obj)include
Wolfgang Denka889bd22005-12-06 15:02:31 +01001936 @CTYPE=$(subst TQM,,$(@:_config=)); \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001937 >$(obj)include/config.h ; \
Stefan Roesed96f41e2005-11-30 13:06:40 +01001938 echo "... TQM"$${CTYPE}; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001939 echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \
1940 echo "#define CONFIG_TQM$${CTYPE}">>$(obj)include/config.h; \
1941 echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \
1942 echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>$(obj)include/config.h; \
1943 echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>$(obj)include/config.h
1944 @$(MKCONFIG) -a TQM85xx ppc mpc85xx tqm85xx
wdenkf5c5ef42005-04-05 16:26:47 +00001945
wdenk42d1f032003-10-15 23:53:47 +00001946#########################################################################
Jon Loeligerdebb7352006-04-26 17:58:56 -05001947## MPC86xx Systems
1948#########################################################################
1949
1950MPC8641HPCN_config: unconfig
Jon Loeliger4ce91772007-08-15 12:20:40 -05001951 @$(MKCONFIG) $(@:_config=) ppc mpc86xx mpc8641hpcn freescale
Jon Loeligerdebb7352006-04-26 17:58:56 -05001952
Joe Hammanc646bba2007-08-09 15:11:03 -05001953sbc8641d_config: unconfig
1954 @./mkconfig $(@:_config=) ppc mpc86xx sbc8641d
Jon Loeligerdebb7352006-04-26 17:58:56 -05001955
1956#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001957## 74xx/7xx Systems
1958#########################################################################
1959
wdenkc7de8292002-11-19 11:04:11 +00001960AmigaOneG3SE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001961 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
wdenkc7de8292002-11-19 11:04:11 +00001962
wdenk15647dc2003-10-09 19:00:25 +00001963BAB7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001964 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx bab7xx eltec
wdenk15647dc2003-10-09 19:00:25 +00001965
stroesec419d1d2004-12-16 18:44:40 +00001966CPCI750_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001967 @$(MKCONFIG) CPCI750 ppc 74xx_7xx cpci750 esd
stroesec419d1d2004-12-16 18:44:40 +00001968
wdenk3a473b22004-01-03 00:43:19 +00001969DB64360_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001970 @$(MKCONFIG) DB64360 ppc 74xx_7xx db64360 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001971
1972DB64460_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001973 @$(MKCONFIG) DB64460 ppc 74xx_7xx db64460 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001974
wdenk15647dc2003-10-09 19:00:25 +00001975ELPPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001976 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx elppc eltec
wdenk15647dc2003-10-09 19:00:25 +00001977
wdenk7ebf7442002-11-02 23:17:16 +00001978EVB64260_config \
1979EVB64260_750CX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001980 @$(MKCONFIG) EVB64260 ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001981
roy zang4c527832006-11-02 18:49:51 +08001982mpc7448hpc2_config: unconfig
roy zangee311212006-12-01 11:47:36 +08001983 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx mpc7448hpc2
roy zang4c527832006-11-02 18:49:51 +08001984
wdenk15647dc2003-10-09 19:00:25 +00001985P3G4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001986 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001987
Stefan Roese1eac2a72006-11-29 15:42:37 +01001988p3m750_config \
1989p3m7448_config: unconfig
1990 @mkdir -p $(obj)include
1991 @if [ "$(findstring 750_,$@)" ] ; then \
1992 echo "#define CONFIG_P3M750" >>$(obj)include/config.h ; \
1993 else \
1994 echo "#define CONFIG_P3M7448" >>$(obj)include/config.h ; \
1995 fi
1996 @$(MKCONFIG) -a p3mx ppc 74xx_7xx p3mx prodrive
1997
wdenk7ebf7442002-11-02 23:17:16 +00001998PCIPPC2_config \
1999PCIPPC6_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002000 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx pcippc2
wdenk7ebf7442002-11-02 23:17:16 +00002001
wdenk15647dc2003-10-09 19:00:25 +00002002ZUMA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002003 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk12f34242003-09-02 22:48:03 +00002004
Heiko Schocherf5e0d032006-06-19 11:02:41 +02002005ppmc7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002006 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx ppmc7xx
Wolfgang Denkb87dfd22006-07-19 13:50:38 +02002007
wdenk7ebf7442002-11-02 23:17:16 +00002008#========================================================================
2009# ARM
2010#========================================================================
2011#########################################################################
2012## StrongARM Systems
2013#########################################################################
2014
wdenkea66bc82004-04-15 23:23:39 +00002015assabet_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002016 @$(MKCONFIG) $(@:_config=) arm sa1100 assabet
wdenkea66bc82004-04-15 23:23:39 +00002017
wdenk7ebf7442002-11-02 23:17:16 +00002018dnp1110_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002019 @$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110
wdenk7ebf7442002-11-02 23:17:16 +00002020
wdenk855a4962004-03-14 18:23:55 +00002021gcplus_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002022 @$(MKCONFIG) $(@:_config=) arm sa1100 gcplus
wdenk855a4962004-03-14 18:23:55 +00002023
2024lart_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002025 @$(MKCONFIG) $(@:_config=) arm sa1100 lart
wdenk855a4962004-03-14 18:23:55 +00002026
wdenk7ebf7442002-11-02 23:17:16 +00002027shannon_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002028 @$(MKCONFIG) $(@:_config=) arm sa1100 shannon
wdenk7ebf7442002-11-02 23:17:16 +00002029
2030#########################################################################
wdenk2e5983d2003-07-15 20:04:06 +00002031## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00002032#########################################################################
2033
wdenkb0639ca2003-09-17 22:48:07 +00002034xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk43d96162003-03-06 00:02:04 +00002035
wdenk3ff02c22004-06-09 15:25:53 +00002036xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
wdenk63e73c92004-02-23 22:22:28 +00002037
wdenka56bd922004-06-06 23:13:55 +00002038xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
2039
wdenka85f9f22005-04-06 13:52:31 +00002040at91rm9200dk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002041 @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00002042
2043cmc_pu2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002044 @$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00002045
Wolfgang Denk645da512005-10-05 02:00:09 +02002046csb637_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002047 @$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200
Wolfgang Denk645da512005-10-05 02:00:09 +02002048
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02002049mp2usb_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002050 @$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02002051
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002052
Wolfgang Denk74f43042005-09-25 01:48:28 +02002053########################################################################
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002054## ARM Integrator boards - see doc/README-integrator for more info.
2055integratorap_config \
2056ap_config \
2057ap966_config \
2058ap922_config \
2059ap922_XA10_config \
2060ap7_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002061ap720t_config \
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002062ap920t_config \
2063ap926ejs_config \
2064ap946es_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02002065 @board/integratorap/split_by_variant.sh $@
wdenk3d3befa2004-03-14 15:06:13 +00002066
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002067integratorcp_config \
2068cp_config \
2069cp920t_config \
2070cp926ejs_config \
2071cp946es_config \
2072cp1136_config \
2073cp966_config \
2074cp922_config \
2075cp922_XA10_config \
2076cp1026_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02002077 @board/integratorcp/split_by_variant.sh $@
wdenk25d67122004-12-10 11:40:40 +00002078
Wolfgang Denk99b0d282005-10-05 00:19:34 +02002079kb9202_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002080 @$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200
Wolfgang Denk99b0d282005-10-05 00:19:34 +02002081
wdenkf832d8a2004-06-10 21:55:33 +00002082lpd7a400_config \
2083lpd7a404_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002084 @$(MKCONFIG) $(@:_config=) arm lh7a40x lpd7a40x
wdenk3d3befa2004-03-14 15:06:13 +00002085
wdenk281e00a2004-08-01 22:48:16 +00002086mx1ads_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002087 @$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002088
2089mx1fs2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002090 @$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002091
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002092netstar_32_config \
2093netstar_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002094 @mkdir -p $(obj)include
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002095 @if [ "$(findstring _32_,$@)" ] ; then \
2096 echo "... 32MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002097 echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002098 else \
2099 echo "... 64MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002100 echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002101 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02002102 @$(MKCONFIG) -a netstar arm arm925t netstar
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002103
wdenk2e5983d2003-07-15 20:04:06 +00002104omap1510inn_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002105 @$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn
wdenk2e5983d2003-07-15 20:04:06 +00002106
wdenk1eaeb582004-06-08 00:22:43 +00002107omap5912osk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002108 @$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk NULL omap
wdenk1eaeb582004-06-08 00:22:43 +00002109
Sergey Kubushync74b2102007-08-10 20:26:18 +02002110davinci_dvevm_config : unconfig
2111 @$(MKCONFIG) $(@:_config=) arm arm926ejs dv-evm davinci davinci
2112
2113davinci_schmoogie_config : unconfig
2114 @$(MKCONFIG) $(@:_config=) arm arm926ejs schmoogie davinci davinci
2115
2116davinci_sonata_config : unconfig
2117 @$(MKCONFIG) $(@:_config=) arm arm926ejs sonata davinci davinci
2118
wdenk63e73c92004-02-23 22:22:28 +00002119omap1610inn_config \
2120omap1610inn_cs0boot_config \
2121omap1610inn_cs3boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00002122omap1610inn_cs_autoboot_config \
wdenk63e73c92004-02-23 22:22:28 +00002123omap1610h2_config \
2124omap1610h2_cs0boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00002125omap1610h2_cs3boot_config \
2126omap1610h2_cs_autoboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002127 @mkdir -p $(obj)include
wdenk63e73c92004-02-23 22:22:28 +00002128 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002129 echo "#define CONFIG_CS0_BOOT" >> .$(obj)include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00002130 echo "... configured for CS0 boot"; \
wdenk3ff02c22004-06-09 15:25:53 +00002131 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002132 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)include/config.h ; \
wdenk3ff02c22004-06-09 15:25:53 +00002133 echo "... configured for CS_AUTO boot"; \
wdenk63e73c92004-02-23 22:22:28 +00002134 else \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002135 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00002136 echo "... configured for CS3 boot"; \
wdenk63e73c92004-02-23 22:22:28 +00002137 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02002138 @$(MKCONFIG) -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap
wdenk6f213472003-08-29 22:00:43 +00002139
wdenka56bd922004-06-06 23:13:55 +00002140omap730p2_config \
2141omap730p2_cs0boot_config \
2142omap730p2_cs3boot_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002143 @mkdir -p $(obj)include
wdenka56bd922004-06-06 23:13:55 +00002144 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002145 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00002146 echo "... configured for CS0 boot"; \
2147 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002148 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00002149 echo "... configured for CS3 boot"; \
2150 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02002151 @$(MKCONFIG) -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap
wdenka56bd922004-06-06 23:13:55 +00002152
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02002153sbc2410x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002154 @$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02002155
wdenk281e00a2004-08-01 22:48:16 +00002156scb9328_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002157 @$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002158
wdenk7ebf7442002-11-02 23:17:16 +00002159smdk2400_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002160 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002161
2162smdk2410_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002163 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002164
wdenk2d24a3a2004-06-09 21:50:45 +00002165SX1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002166 @$(MKCONFIG) $(@:_config=) arm arm925t sx1
wdenk2d24a3a2004-06-09 21:50:45 +00002167
wdenkb2001f22003-12-20 22:45:10 +00002168# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk43d96162003-03-06 00:02:04 +00002169trab_config \
wdenkb0639ca2003-09-17 22:48:07 +00002170trab_bigram_config \
2171trab_bigflash_config \
wdenkf54ebdf2003-09-17 15:10:32 +00002172trab_old_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002173 @mkdir -p $(obj)include
2174 @mkdir -p $(obj)board/trab
2175 @ >$(obj)include/config.h
wdenkb0639ca2003-09-17 22:48:07 +00002176 @[ -z "$(findstring _bigram,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002177 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2178 echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002179 echo "... with 8 MB Flash, 32 MB RAM" ; \
2180 }
2181 @[ -z "$(findstring _bigflash,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002182 { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \
2183 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002184 echo "... with 16 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002185 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenkb0639ca2003-09-17 22:48:07 +00002186 }
wdenkf54ebdf2003-09-17 15:10:32 +00002187 @[ -z "$(findstring _old,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002188 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2189 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +00002190 echo "... with 8 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002191 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenk43d96162003-03-06 00:02:04 +00002192 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002193 @$(MKCONFIG) -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002194
wdenk1cb8e982003-03-06 21:55:29 +00002195VCMA9_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002196 @$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0
wdenk1cb8e982003-03-06 21:55:29 +00002197
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002198#========================================================================
2199# ARM supplied Versatile development boards
2200#========================================================================
2201versatile_config \
2202versatileab_config \
2203versatilepb_config : unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02002204 @board/versatile/split_by_variant.sh $@
wdenk074cff02004-02-24 00:16:43 +00002205
wdenk3c2b3d42005-04-05 23:32:21 +00002206voiceblue_smallflash_config \
2207voiceblue_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002208 @mkdir -p $(obj)include
2209 @mkdir -p $(obj)board/voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002210 @if [ "$(findstring _smallflash_,$@)" ] ; then \
2211 echo "... boot from lower flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002212 echo "#define VOICEBLUE_SMALL_FLASH" >>$(obj)include/config.h ; \
2213 echo "VOICEBLUE_SMALL_FLASH=y" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00002214 else \
2215 echo "... boot from upper flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002216 >$(obj)include/config.h ; \
2217 echo "VOICEBLUE_SMALL_FLASH=n" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00002218 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02002219 @$(MKCONFIG) -a voiceblue arm arm925t voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002220
wdenk16b013e2005-05-19 22:46:33 +00002221cm4008_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002222 @$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002223
2224cm41xx_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002225 @$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002226
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002227gth2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002228 @mkdir -p $(obj)include
2229 @ >$(obj)include/config.h
2230 @echo "#define CONFIG_GTH2 1" >>$(obj)include/config.h
2231 @$(MKCONFIG) -a gth2 mips mips gth2
Wolfgang Denk0c32d962006-06-16 17:32:31 +02002232
wdenk074cff02004-02-24 00:16:43 +00002233#########################################################################
2234## S3C44B0 Systems
2235#########################################################################
2236
2237B2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002238 @$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave
wdenk074cff02004-02-24 00:16:43 +00002239
wdenk7ebf7442002-11-02 23:17:16 +00002240#########################################################################
2241## ARM720T Systems
2242#########################################################################
2243
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002244armadillo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002245 @$(MKCONFIG) $(@:_config=) arm arm720t armadillo
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002246
wdenk7ebf7442002-11-02 23:17:16 +00002247ep7312_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002248 @$(MKCONFIG) $(@:_config=) arm arm720t ep7312
wdenk7ebf7442002-11-02 23:17:16 +00002249
wdenk2d24a3a2004-06-09 21:50:45 +00002250impa7_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002251 @$(MKCONFIG) $(@:_config=) arm arm720t impa7
wdenk2d24a3a2004-06-09 21:50:45 +00002252
wdenk2d1a5372004-02-23 19:30:57 +00002253modnet50_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002254 @$(MKCONFIG) $(@:_config=) arm arm720t modnet50
wdenk2d1a5372004-02-23 19:30:57 +00002255
wdenk39539882004-07-01 16:30:44 +00002256evb4510_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002257 @$(MKCONFIG) $(@:_config=) arm arm720t evb4510
wdenk39539882004-07-01 16:30:44 +00002258
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002259lpc2292sodimm_config: unconfig
Peter Pearseb0d8f5b2007-05-09 11:37:56 +01002260 @$(MKCONFIG) $(@:_config=) arm arm720t lpc2292sodimm NULL lpc2292
2261
2262SMN42_config : unconfig
2263 @$(MKCONFIG) $(@:_config=) arm arm720t SMN42 siemens lpc2292
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002264
wdenk7ebf7442002-11-02 23:17:16 +00002265#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002266## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00002267#########################################################################
2268
wdenk20787e22005-04-06 00:04:16 +00002269adsvix_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002270 @$(MKCONFIG) $(@:_config=) arm pxa adsvix
wdenk20787e22005-04-06 00:04:16 +00002271
wdenkfabd46a2004-07-10 23:11:10 +00002272cerf250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002273 @$(MKCONFIG) $(@:_config=) arm pxa cerf250
wdenkfabd46a2004-07-10 23:11:10 +00002274
wdenk7ebf7442002-11-02 23:17:16 +00002275cradle_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002276 @$(MKCONFIG) $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00002277
2278csb226_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002279 @$(MKCONFIG) $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00002280
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002281delta_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002282 @$(MKCONFIG) $(@:_config=) arm pxa delta
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002283
wdenk43d96162003-03-06 00:02:04 +00002284innokom_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002285 @$(MKCONFIG) $(@:_config=) arm pxa innokom
wdenk43d96162003-03-06 00:02:04 +00002286
wdenk2d5b5612003-10-14 19:43:55 +00002287ixdp425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002288 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
wdenk2d5b5612003-10-14 19:43:55 +00002289
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002290ixdpg425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002291 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002292
wdenk43d96162003-03-06 00:02:04 +00002293lubbock_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002294 @$(MKCONFIG) $(@:_config=) arm pxa lubbock
wdenk43d96162003-03-06 00:02:04 +00002295
Heiko Schocher5720df72006-05-02 07:51:46 +02002296pleb2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002297 @$(MKCONFIG) $(@:_config=) arm pxa pleb2
Heiko Schocher5720df72006-05-02 07:51:46 +02002298
wdenk52f52c12003-06-19 23:04:19 +00002299logodl_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002300 @$(MKCONFIG) $(@:_config=) arm pxa logodl
wdenk52f52c12003-06-19 23:04:19 +00002301
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002302pdnb3_config \
2303scpu_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002304 @mkdir -p $(obj)include
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002305 @if [ "$(findstring scpu_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002306 echo "#define CONFIG_SCPU" >>$(obj)include/config.h ; \
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002307 echo "... on SCPU board variant" ; \
2308 else \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002309 >$(obj)include/config.h ; \
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002310 fi
2311 @$(MKCONFIG) -a pdnb3 arm ixp pdnb3 prodrive
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002312
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002313pxa255_idp_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002314 @$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002315
wdenk3e386912003-04-05 00:53:31 +00002316wepep250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002317 @$(MKCONFIG) $(@:_config=) arm pxa wepep250
wdenk3e386912003-04-05 00:53:31 +00002318
wdenk4ec3a7f2004-09-28 16:44:41 +00002319xaeniax_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002320 @$(MKCONFIG) $(@:_config=) arm pxa xaeniax
wdenk4ec3a7f2004-09-28 16:44:41 +00002321
wdenkefa329c2004-03-23 20:18:25 +00002322xm250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002323 @$(MKCONFIG) $(@:_config=) arm pxa xm250
wdenkefa329c2004-03-23 20:18:25 +00002324
wdenkca0e7742004-06-09 15:37:23 +00002325xsengine_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002326 @$(MKCONFIG) $(@:_config=) arm pxa xsengine
wdenkca0e7742004-06-09 15:37:23 +00002327
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002328zylonite_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002329 @$(MKCONFIG) $(@:_config=) arm pxa zylonite
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002330
wdenk8ed96042005-01-09 23:16:25 +00002331#########################################################################
2332## ARM1136 Systems
2333#########################################################################
2334omap2420h4_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002335 @$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4
wdenk8ed96042005-01-09 23:16:25 +00002336
wdenk2262cfe2002-11-18 00:14:45 +00002337#========================================================================
2338# i386
2339#========================================================================
2340#########################################################################
wdenk1cb8e982003-03-06 21:55:29 +00002341## AMD SC520 CDP
wdenk2262cfe2002-11-18 00:14:45 +00002342#########################################################################
2343sc520_cdp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002344 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp
wdenk2262cfe2002-11-18 00:14:45 +00002345
wdenk7a8e9bed2003-05-31 18:35:21 +00002346sc520_spunk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002347 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002348
2349sc520_spunk_rel_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002350 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002351
wdenk43d96162003-03-06 00:02:04 +00002352#========================================================================
2353# MIPS
2354#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00002355#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002356## MIPS32 4Kc
2357#########################################################################
2358
wdenke0ac62d2003-08-17 18:55:18 +00002359xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
2360
2361incaip_100MHz_config \
2362incaip_133MHz_config \
2363incaip_150MHz_config \
2364incaip_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002365 @mkdir -p $(obj)include
2366 @ >$(obj)include/config.h
wdenke0ac62d2003-08-17 18:55:18 +00002367 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002368 { echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002369 echo "... with 100MHz system clock" ; \
2370 }
2371 @[ -z "$(findstring _133MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002372 { echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002373 echo "... with 133MHz system clock" ; \
2374 }
2375 @[ -z "$(findstring _150MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002376 { echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002377 echo "... with 150MHz system clock" ; \
2378 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002379 @$(MKCONFIG) -a $(call xtract_incaip,$@) mips mips incaip
wdenke0ac62d2003-08-17 18:55:18 +00002380
wdenkf4863a72004-02-07 01:27:10 +00002381tb0229_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002382 @$(MKCONFIG) $(@:_config=) mips mips tb0229
wdenkf4863a72004-02-07 01:27:10 +00002383
wdenke0ac62d2003-08-17 18:55:18 +00002384#########################################################################
wdenk69459792004-05-29 16:53:29 +00002385## MIPS32 AU1X00
2386#########################################################################
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002387dbau1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002388 @mkdir -p $(obj)include
2389 @ >$(obj)include/config.h
2390 @echo "#define CONFIG_DBAU1000 1" >>$(obj)include/config.h
2391 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002392
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002393dbau1100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002394 @mkdir -p $(obj)include
2395 @ >$(obj)include/config.h
2396 @echo "#define CONFIG_DBAU1100 1" >>$(obj)include/config.h
2397 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002398
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002399dbau1500_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002400 @mkdir -p $(obj)include
2401 @ >$(obj)include/config.h
2402 @echo "#define CONFIG_DBAU1500 1" >>$(obj)include/config.h
2403 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002404
wdenkff36fd82005-01-09 22:28:56 +00002405dbau1550_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002406 @mkdir -p $(obj)include
2407 @ >$(obj)include/config.h
2408 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2409 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002410
2411dbau1550_el_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002412 @mkdir -p $(obj)include
2413 @ >$(obj)include/config.h
2414 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2415 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002416
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002417pb1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002418 @mkdir -p $(obj)include
2419 @ >$(obj)include/config.h
2420 @echo "#define CONFIG_PB1000 1" >>$(obj)include/config.h
2421 @$(MKCONFIG) -a pb1x00 mips mips pb1x00
Wolfgang Denk265817c2005-09-25 00:53:22 +02002422
wdenk69459792004-05-29 16:53:29 +00002423#########################################################################
wdenke0ac62d2003-08-17 18:55:18 +00002424## MIPS64 5Kc
2425#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002426
wdenk3e386912003-04-05 00:53:31 +00002427purple_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002428 @$(MKCONFIG) $(@:_config=) mips mips purple
wdenk43d96162003-03-06 00:02:04 +00002429
wdenk4a551702003-10-08 23:26:14 +00002430#========================================================================
2431# Nios
2432#========================================================================
2433#########################################################################
2434## Nios32
2435#########################################################################
2436
wdenkc935d3b2004-01-03 19:43:48 +00002437DK1C20_safe_32_config \
2438DK1C20_standard_32_config \
wdenk4a551702003-10-08 23:26:14 +00002439DK1C20_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002440 @mkdir -p $(obj)include
2441 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002442 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002443 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002444 echo "... NIOS 'safe_32' configuration" ; \
2445 }
2446 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002447 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002448 echo "... NIOS 'standard_32' configuration" ; \
2449 }
2450 @[ -z "$(findstring DK1C20_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002451 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002452 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2453 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002454 @$(MKCONFIG) -a DK1C20 nios nios dk1c20 altera
wdenkc935d3b2004-01-03 19:43:48 +00002455
2456DK1S10_safe_32_config \
2457DK1S10_standard_32_config \
wdenkec4c5442004-02-09 23:12:24 +00002458DK1S10_mtx_ldk_20_config \
wdenkc935d3b2004-01-03 19:43:48 +00002459DK1S10_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002460 @mkdir -p $(obj)include
2461 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002462 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002463 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002464 echo "... NIOS 'safe_32' configuration" ; \
2465 }
2466 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002467 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002468 echo "... NIOS 'standard_32' configuration" ; \
2469 }
wdenkec4c5442004-02-09 23:12:24 +00002470 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002471 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>$(obj)include/config.h ; \
wdenkec4c5442004-02-09 23:12:24 +00002472 echo "... NIOS 'mtx_ldk_20' configuration" ; \
2473 }
wdenkc935d3b2004-01-03 19:43:48 +00002474 @[ -z "$(findstring DK1S10_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002475 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002476 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2477 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002478 @$(MKCONFIG) -a DK1S10 nios nios dk1s10 altera
wdenk4a551702003-10-08 23:26:14 +00002479
wdenkaaf224a2004-03-14 15:20:55 +00002480ADNPESC1_DNPEVA2_base_32_config \
2481ADNPESC1_base_32_config \
2482ADNPESC1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002483 @mkdir -p $(obj)include
2484 @ >$(obj)include/config.h
wdenkaaf224a2004-03-14 15:20:55 +00002485 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002486 { echo "#define CONFIG_DNPEVA2 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002487 echo "... DNP/EVA2 configuration" ; \
2488 }
wdenkaaf224a2004-03-14 15:20:55 +00002489 @[ -z "$(findstring _base_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002490 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002491 echo "... NIOS 'base_32' configuration" ; \
2492 }
wdenkaaf224a2004-03-14 15:20:55 +00002493 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002494 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002495 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
2496 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002497 @$(MKCONFIG) -a ADNPESC1 nios nios adnpesc1 ssv
wdenkaaf224a2004-03-14 15:20:55 +00002498
wdenk5c952cf2004-10-10 21:27:30 +00002499#########################################################################
2500## Nios-II
2501#########################################################################
2502
Scott McNutt9cc83372006-06-08 13:37:39 -04002503EP1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002504 @$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002505
2506EP1S10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002507 @$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002508
2509EP1S40_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002510 @$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002511
wdenk5c952cf2004-10-10 21:27:30 +00002512PK1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002513 @$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent
wdenk5c952cf2004-10-10 21:27:30 +00002514
2515PCI5441_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002516 @$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent
wdenk4a551702003-10-08 23:26:14 +00002517
wdenk507bbe32004-04-18 21:13:41 +00002518#========================================================================
2519# MicroBlaze
2520#========================================================================
2521#########################################################################
2522## Microblaze
2523#########################################################################
2524suzaku_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002525 @mkdir -p $(obj)include
2526 @ >$(obj)include/config.h
2527 @echo "#define CONFIG_SUZAKU 1" >> $(obj)include/config.h
2528 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
wdenk507bbe32004-04-18 21:13:41 +00002529
Michal Simekcfc67112007-03-11 13:48:24 +01002530ml401_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002531 @mkdir -p $(obj)include
2532 @ >$(obj)include/config.h
2533 @echo "#define CONFIG_ML401 1" >> $(obj)include/config.h
Grant Likely90b1b2d2007-07-03 00:17:28 -06002534 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze ml401 xilinx
Michal Simekcfc67112007-03-11 13:48:24 +01002535
Michal Simek17980492007-03-26 01:39:07 +02002536xupv2p_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002537 @mkdir -p $(obj)include
2538 @ >$(obj)include/config.h
2539 @echo "#define CONFIG_XUPV2P 1" >> $(obj)include/config.h
Grant Likely90b1b2d2007-07-03 00:17:28 -06002540 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze xupv2p xilinx
Michal Simek17980492007-03-26 01:39:07 +02002541
wdenk3e386912003-04-05 00:53:31 +00002542#########################################################################
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002543## Blackfin
2544#########################################################################
Aubrey.Lief26a082007-03-09 13:40:56 +08002545bf533-ezkit_config: unconfig
2546 @$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-ezkit
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002547
Aubrey.Lief26a082007-03-09 13:40:56 +08002548bf533-stamp_config: unconfig
2549 @$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-stamp
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002550
Aubrey Li26bf7de2007-03-19 01:24:52 +08002551bf537-stamp_config: unconfig
2552 @$(MKCONFIG) $(@:_config=) blackfin bf537 bf537-stamp
2553
Aubrey Li65458982007-03-20 18:16:24 +08002554bf561-ezkit_config: unconfig
2555 @$(MKCONFIG) $(@:_config=) blackfin bf561 bf561-ezkit
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002556
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02002557#========================================================================
2558# AVR32
2559#========================================================================
2560#########################################################################
2561## AT32AP7xxx
2562#########################################################################
2563
2564atstk1002_config : unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -06002565 @$(MKCONFIG) $(@:_config=) avr32 at32ap atstk1000 atmel at32ap7000
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02002566
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002567#########################################################################
2568#########################################################################
wdenk3e386912003-04-05 00:53:31 +00002569#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00002570
2571clean:
Marian Balakowiczf9328632006-09-01 19:49:50 +02002572 find $(OBJTREE) -type f \
wdenk7ebf7442002-11-02 23:17:16 +00002573 \( -name 'core' -o -name '*.bak' -o -name '*~' \
2574 -o -name '*.o' -o -name '*.a' \) -print \
2575 | xargs rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002576 rm -f $(obj)examples/hello_world $(obj)examples/timer \
2577 $(obj)examples/eepro100_eeprom $(obj)examples/sched \
2578 $(obj)examples/mem_to_mem_idma2intr $(obj)examples/82559_eeprom \
Wolfgang Denkd214fbb2006-09-13 10:29:32 +02002579 $(obj)examples/smc91111_eeprom $(obj)examples/interrupt \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002580 $(obj)examples/test_burst
2581 rm -f $(obj)tools/img2srec $(obj)tools/mkimage $(obj)tools/envcrc \
Heiko Schocher566a4942007-06-22 19:11:54 +02002582 $(obj)tools/gen_eth_addr $(obj)tools/ubsha1
Marian Balakowiczf9328632006-09-01 19:49:50 +02002583 rm -f $(obj)tools/mpc86x_clk $(obj)tools/ncb
2584 rm -f $(obj)tools/easylogo/easylogo $(obj)tools/bmp_logo
2585 rm -f $(obj)tools/gdb/astest $(obj)tools/gdb/gdbcont $(obj)tools/gdb/gdbsend
2586 rm -f $(obj)tools/env/fw_printenv $(obj)tools/env/fw_setenv
2587 rm -f $(obj)board/cray/L1/bootscript.c $(obj)board/cray/L1/bootscript.image
2588 rm -f $(obj)board/netstar/eeprom $(obj)board/netstar/crcek $(obj)board/netstar/crcit
2589 rm -f $(obj)board/netstar/*.srec $(obj)board/netstar/*.bin
2590 rm -f $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom
2591 rm -f $(obj)board/integratorap/u-boot.lds $(obj)board/integratorcp/u-boot.lds
Aubrey Li8440bb12007-03-12 00:25:14 +08002592 rm -f $(obj)board/bf533-ezkit/u-boot.lds $(obj)board/bf533-stamp/u-boot.lds
Aubrey Li65458982007-03-20 18:16:24 +08002593 rm -f $(obj)board/bf537-stamp/u-boot.lds $(obj)board/bf561-ezkit/u-boot.lds
Marian Balakowiczf9328632006-09-01 19:49:50 +02002594 rm -f $(obj)include/bmp_logo.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002595 rm -f $(obj)nand_spl/u-boot-spl $(obj)nand_spl/u-boot-spl.map
wdenk7ebf7442002-11-02 23:17:16 +00002596
2597clobber: clean
Marian Balakowiczf9328632006-09-01 19:49:50 +02002598 find $(OBJTREE) -type f \( -name .depend \
wdenk4c0d4c32004-06-09 17:34:58 +00002599 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
2600 -print0 \
2601 | xargs -0 rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002602 rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS $(obj)include/version_autogenerated.h
2603 rm -fr $(obj)*.*~
2604 rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL)
Heiko Schocher566a4942007-06-22 19:11:54 +02002605 rm -f $(obj)tools/crc32.c $(obj)tools/environment.c $(obj)tools/env/crc32.c $(obj)tools/sha1.c
Marian Balakowiczf9328632006-09-01 19:49:50 +02002606 rm -f $(obj)tools/inca-swap-bytes $(obj)cpu/mpc824x/bedbug_603e.c
2607 rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002608 [ ! -d $(OBJTREE)/nand_spl ] || find $(obj)nand_spl -lname "*" -print | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +00002609
Marian Balakowiczf9328632006-09-01 19:49:50 +02002610ifeq ($(OBJTREE),$(SRCTREE))
wdenk7ebf7442002-11-02 23:17:16 +00002611mrproper \
2612distclean: clobber unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002613else
2614mrproper \
2615distclean: clobber unconfig
2616 rm -rf $(OBJTREE)/*
2617endif
wdenk7ebf7442002-11-02 23:17:16 +00002618
2619backup:
2620 F=`basename $(TOPDIR)` ; cd .. ; \
2621 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
2622
2623#########################################################################