blob: 69e7a6d57a7aab6d3613726579db79c167957d20 [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/ \
37 -e s/macppc/ppc/)
38
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020039HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
wdenk7ebf7442002-11-02 23:17:16 +000040 sed -e 's/\(cygwin\).*/cygwin/')
41
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020042export HOSTARCH HOSTOS
wdenk7ebf7442002-11-02 23:17:16 +000043
44# Deal with colliding definitions from tcsh etc.
45VENDOR=
46
47#########################################################################
Marian Balakowiczf9328632006-09-01 19:49:50 +020048#
49# U-boot build supports producing a object files to the separate external
50# directory. Two use cases are supported:
Stefan Roese887e2ec2006-09-07 11:51:23 +020051#
Marian Balakowiczf9328632006-09-01 19:49:50 +020052# 1) Add O= to the make command line
53# 'make O=/tmp/build all'
54#
55# 2) Set environement variable BUILD_DIR to point to the desired location
56# 'export BUILD_DIR=/tmp/build'
57# 'make'
58#
59# The second approach can also be used with a MAKEALL script
60# 'export BUILD_DIR=/tmp/build'
61# './MAKEALL'
Stefan Roese887e2ec2006-09-07 11:51:23 +020062#
Marian Balakowiczf9328632006-09-01 19:49:50 +020063# Command line 'O=' setting overrides BUILD_DIR environent variable.
Stefan Roese887e2ec2006-09-07 11:51:23 +020064#
Marian Balakowiczf9328632006-09-01 19:49:50 +020065# When none of the above methods is used the local build is performed and
66# the object files are placed in the source directory.
Stefan Roese887e2ec2006-09-07 11:51:23 +020067#
wdenk7ebf7442002-11-02 23:17:16 +000068
Marian Balakowiczf9328632006-09-01 19:49:50 +020069ifdef O
70ifeq ("$(origin O)", "command line")
71BUILD_DIR := $(O)
72endif
73endif
wdenk7ebf7442002-11-02 23:17:16 +000074
Marian Balakowiczf9328632006-09-01 19:49:50 +020075ifneq ($(BUILD_DIR),)
76saved-output := $(BUILD_DIR)
Marian Balakowicz4f0645e2006-09-07 12:05:53 +020077
78# Attempt to create a output directory.
79$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
80
Stefan Roesea73c8db2006-09-12 08:49:07 +020081# Verify if it was successful.
Marian Balakowiczf9328632006-09-01 19:49:50 +020082BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
83$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
84endif # ifneq ($(BUILD_DIR),)
85
86OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
87SRCTREE := $(CURDIR)
88TOPDIR := $(SRCTREE)
89LNDIR := $(OBJTREE)
90export TOPDIR SRCTREE OBJTREE
91
92MKCONFIG := $(SRCTREE)/mkconfig
93export MKCONFIG
94
95ifneq ($(OBJTREE),$(SRCTREE))
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010096REMOTE_BUILD := 1
Marian Balakowiczf9328632006-09-01 19:49:50 +020097export REMOTE_BUILD
98endif
99
100# $(obj) and (src) are defined in config.mk but here in main Makefile
101# we also need them before config.mk is included which is the case for
102# some targets like unconfig, clean, clobber, distclean, etc.
103ifneq ($(OBJTREE),$(SRCTREE))
104obj := $(OBJTREE)/
105src := $(SRCTREE)/
106else
107obj :=
108src :=
Stefan Roese887e2ec2006-09-07 11:51:23 +0200109endif
Marian Balakowiczf9328632006-09-01 19:49:50 +0200110export obj src
111
112#########################################################################
113
114ifeq ($(OBJTREE)/include/config.mk,$(wildcard $(OBJTREE)/include/config.mk))
115
wdenk7ebf7442002-11-02 23:17:16 +0000116# load ARCH, BOARD, and CPU configuration
Marian Balakowiczf9328632006-09-01 19:49:50 +0200117include $(OBJTREE)/include/config.mk
wdenk1d9f4102004-10-09 22:21:29 +0000118export ARCH CPU BOARD VENDOR SOC
Marian Balakowiczf9328632006-09-01 19:49:50 +0200119
wdenk7ebf7442002-11-02 23:17:16 +0000120ifndef CROSS_COMPILE
Wolfgang Denka5284ef2007-03-06 18:01:47 +0100121ifeq ($(HOSTARCH),$(ARCH))
wdenk7ebf7442002-11-02 23:17:16 +0000122CROSS_COMPILE =
123else
wdenk7ebf7442002-11-02 23:17:16 +0000124ifeq ($(ARCH),ppc)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500125CROSS_COMPILE = powerpc-linux-
wdenk7ebf7442002-11-02 23:17:16 +0000126endif
127ifeq ($(ARCH),arm)
wdenkdc7c9a12003-03-26 06:55:25 +0000128CROSS_COMPILE = arm-linux-
wdenk7ebf7442002-11-02 23:17:16 +0000129endif
wdenk2262cfe2002-11-18 00:14:45 +0000130ifeq ($(ARCH),i386)
wdenk7a8e9bed2003-05-31 18:35:21 +0000131CROSS_COMPILE = i386-linux-
132endif
wdenk43d96162003-03-06 00:02:04 +0000133ifeq ($(ARCH),mips)
134CROSS_COMPILE = mips_4KC-
135endif
wdenk4a551702003-10-08 23:26:14 +0000136ifeq ($(ARCH),nios)
137CROSS_COMPILE = nios-elf-
138endif
wdenk5c952cf2004-10-10 21:27:30 +0000139ifeq ($(ARCH),nios2)
140CROSS_COMPILE = nios2-elf-
141endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000142ifeq ($(ARCH),m68k)
143CROSS_COMPILE = m68k-elf-
144endif
wdenk507bbe32004-04-18 21:13:41 +0000145ifeq ($(ARCH),microblaze)
146CROSS_COMPILE = mb-
147endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100148ifeq ($(ARCH),blackfin)
Aubrey.Lief26a082007-03-09 13:40:56 +0800149CROSS_COMPILE = bfin-uclinux-
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100150endif
Wolfgang Denk7b64fef2006-10-24 14:21:16 +0200151ifeq ($(ARCH),avr32)
Haavard Skinnemoen5374b362006-11-18 17:24:31 +0100152CROSS_COMPILE = avr32-linux-
Wolfgang Denk7b64fef2006-10-24 14:21:16 +0200153endif
wdenk7ebf7442002-11-02 23:17:16 +0000154endif
155endif
156
157export CROSS_COMPILE
158
Wolfgang Denk92b197f2006-03-12 01:37:50 +0100159# load other configuration
160include $(TOPDIR)/config.mk
161
wdenk7ebf7442002-11-02 23:17:16 +0000162#########################################################################
163# U-Boot objects....order is important (i.e. start must be first)
164
wdenk9fd5e312003-12-07 23:55:12 +0000165OBJS = cpu/$(CPU)/start.o
wdenk2262cfe2002-11-18 00:14:45 +0000166ifeq ($(CPU),i386)
wdenk9fd5e312003-12-07 23:55:12 +0000167OBJS += cpu/$(CPU)/start16.o
168OBJS += cpu/$(CPU)/reset.o
wdenk2262cfe2002-11-18 00:14:45 +0000169endif
wdenk7ebf7442002-11-02 23:17:16 +0000170ifeq ($(CPU),ppc4xx)
wdenk9fd5e312003-12-07 23:55:12 +0000171OBJS += cpu/$(CPU)/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +0000172endif
wdenk42d1f032003-10-15 23:53:47 +0000173ifeq ($(CPU),mpc85xx)
174OBJS += cpu/$(CPU)/resetvec.o
175endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100176ifeq ($(CPU),bf533)
177OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
Aubrey.Lief26a082007-03-09 13:40:56 +0800178OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100179endif
Aubrey Li26bf7de2007-03-19 01:24:52 +0800180ifeq ($(CPU),bf537)
181OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
Aubrey Li65458982007-03-20 18:16:24 +0800182OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
183endif
184ifeq ($(CPU),bf561)
185OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
186OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
wdenk7ebf7442002-11-02 23:17:16 +0000187endif
188
Marian Balakowiczf9328632006-09-01 19:49:50 +0200189OBJS := $(addprefix $(obj),$(OBJS))
190
wdenk9fd5e312003-12-07 23:55:12 +0000191LIBS = lib_generic/libgeneric.a
192LIBS += board/$(BOARDDIR)/lib$(BOARD).a
wdenk7ebf7442002-11-02 23:17:16 +0000193LIBS += cpu/$(CPU)/lib$(CPU).a
wdenk1d9f4102004-10-09 22:21:29 +0000194ifdef SOC
195LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
196endif
Stefan Roese323bfa82007-04-23 12:00:22 +0200197ifeq ($(CPU),ixp)
198LIBS += cpu/ixp/npe/libnpe.a
199endif
wdenk7ebf7442002-11-02 23:17:16 +0000200LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk518e2e12004-03-25 14:59:05 +0000201LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
stroesec419d1d2004-12-16 18:44:40 +0000202 fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a
wdenk7ebf7442002-11-02 23:17:16 +0000203LIBS += net/libnet.a
204LIBS += disk/libdisk.a
205LIBS += rtc/librtc.a
206LIBS += dtt/libdtt.a
207LIBS += drivers/libdrivers.a
Marian Balakowicz6db39702006-04-08 19:08:06 +0200208LIBS += drivers/nand/libnand.a
209LIBS += drivers/nand_legacy/libnand_legacy.a
TsiChung Liew8e585f02007-06-18 13:50:13 -0500210LIBS += drivers/net/libnet.a
Dave Liu7737d5c2006-11-03 12:11:15 -0600211ifeq ($(CPU),mpc83xx)
212LIBS += drivers/qe/qe.a
213endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500214LIBS += drivers/serial/libserial.a
wdenk7152b1d2003-09-05 23:19:14 +0000215LIBS += drivers/sk98lin/libsk98lin.a
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100216LIBS += post/libpost.a post/drivers/libpostdrivers.a
217LIBS += $(shell if [ -d post/lib_$(ARCH) ]; then echo \
218 "post/lib_$(ARCH)/libpost$(ARCH).a"; fi)
Sergei Poselenovb4489622007-07-05 08:17:37 +0200219LIBS += $(shell if [ -d post/lib_$(ARCH)/fpu ]; then echo \
220 "post/lib_$(ARCH)/fpu/libpost$(ARCH)fpu.a"; fi)
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100221LIBS += $(shell if [ -d post/cpu/$(CPU) ]; then echo \
222 "post/cpu/$(CPU)/libpost$(CPU).a"; fi)
223LIBS += $(shell if [ -d post/board/$(BOARDDIR) ]; then echo \
224 "post/board/$(BOARDDIR)/libpost$(BOARD).a"; fi)
wdenk7ebf7442002-11-02 23:17:16 +0000225LIBS += common/libcommon.a
Gerald Van Baren7651f8b2007-04-19 23:14:39 -0400226LIBS += libfdt/libfdt.a
Marian Balakowiczf9328632006-09-01 19:49:50 +0200227
228LIBS := $(addprefix $(obj),$(LIBS))
wdenk9fd5e312003-12-07 23:55:12 +0000229.PHONY : $(LIBS)
wdenka8c7c702003-12-06 19:49:23 +0000230
wdenk4f7cb082003-09-11 23:06:34 +0000231# Add GCC lib
wdenk1a344f22005-02-03 23:00:49 +0000232PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
wdenk3d3befa2004-03-14 15:06:13 +0000233
wdenka8c7c702003-12-06 19:49:23 +0000234# The "tools" are needed early, so put this first
235# Don't include stuff already done in $(LIBS)
236SUBDIRS = tools \
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100237 examples
238
wdenkb028f712003-12-07 21:39:28 +0000239.PHONY : $(SUBDIRS)
wdenka8c7c702003-12-06 19:49:23 +0000240
Stefan Roese887e2ec2006-09-07 11:51:23 +0200241ifeq ($(CONFIG_NAND_U_BOOT),y)
242NAND_SPL = nand_spl
243U_BOOT_NAND = $(obj)u-boot-nand.bin
244endif
245
Marian Balakowiczf9328632006-09-01 19:49:50 +0200246__OBJS := $(subst $(obj),,$(OBJS))
247__LIBS := $(subst $(obj),,$(LIBS))
248
wdenk7ebf7442002-11-02 23:17:16 +0000249#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000250#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000251
Heiko Schocher566a4942007-06-22 19:11:54 +0200252ALL += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND)
wdenk7ebf7442002-11-02 23:17:16 +0000253
wdenkbdccc4f2003-08-05 17:43:17 +0000254all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000255
Marian Balakowiczf9328632006-09-01 19:49:50 +0200256$(obj)u-boot.hex: $(obj)u-boot
wdenk6310eb92005-01-09 21:28:15 +0000257 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
258
Marian Balakowiczf9328632006-09-01 19:49:50 +0200259$(obj)u-boot.srec: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000260 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
261
Marian Balakowiczf9328632006-09-01 19:49:50 +0200262$(obj)u-boot.bin: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000263 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
264
Marian Balakowiczf9328632006-09-01 19:49:50 +0200265$(obj)u-boot.img: $(obj)u-boot.bin
wdenkbdccc4f2003-08-05 17:43:17 +0000266 ./tools/mkimage -A $(ARCH) -T firmware -C none \
267 -a $(TEXT_BASE) -e 0 \
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100268 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenkbdccc4f2003-08-05 17:43:17 +0000269 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
270 -d $< $@
271
Heiko Schocher566a4942007-06-22 19:11:54 +0200272$(obj)u-boot.sha1: $(obj)u-boot.bin
Heiko Schocher01159532007-07-14 01:06:58 +0200273 $(obj)tools/ubsha1 $(obj)u-boot.bin
Heiko Schocher566a4942007-06-22 19:11:54 +0200274
Marian Balakowiczf9328632006-09-01 19:49:50 +0200275$(obj)u-boot.dis: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000276 $(OBJDUMP) -d $< > $@
277
Marian Balakowiczf9328632006-09-01 19:49:50 +0200278$(obj)u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
wdenk8bde7f72003-06-27 21:31:46 +0000279 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
Marian Balakowiczf9328632006-09-01 19:49:50 +0200280 cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
281 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000282 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000283
Marian Balakowiczf9328632006-09-01 19:49:50 +0200284$(OBJS):
285 $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@))
286
wdenka8c7c702003-12-06 19:49:23 +0000287$(LIBS):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200288 $(MAKE) -C $(dir $(subst $(obj),,$@))
wdenka8c7c702003-12-06 19:49:23 +0000289
290$(SUBDIRS):
wdenkb028f712003-12-07 21:39:28 +0000291 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000292
Stefan Roese887e2ec2006-09-07 11:51:23 +0200293$(NAND_SPL): version
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200294 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
Stefan Roese887e2ec2006-09-07 11:51:23 +0200295
296$(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200297 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 +0200298
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100299version:
300 @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \
301 echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \
302 echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \
303 $(TOPDIR)) >> $(VERSION_FILE); \
304 echo "\"" >> $(VERSION_FILE)
305
dzu8f713fd2003-08-07 14:20:31 +0000306gdbtools:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200307 $(MAKE) -C tools/gdb all || exit 1
308
309updater:
310 $(MAKE) -C tools/updater all || exit 1
311
312env:
313 $(MAKE) -C tools/env all || exit 1
dzu8f713fd2003-08-07 14:20:31 +0000314
wdenk7ebf7442002-11-02 23:17:16 +0000315depend dep:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200316 for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir _depend ; done
wdenk7ebf7442002-11-02 23:17:16 +0000317
Marian Balakowiczf9328632006-09-01 19:49:50 +0200318tags ctags:
319 ctags -w -o $(OBJTREE)/ctags `find $(SUBDIRS) include \
wdenkbda6c8a2004-04-15 21:58:11 +0000320 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
321 fs/cramfs fs/fat fs/fdos fs/jffs2 \
322 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000323 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
324
325etags:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200326 etags -a -o $(OBJTREE)/etags `find $(SUBDIRS) include \
wdenkeedcd072004-09-08 22:03:11 +0000327 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
328 fs/cramfs fs/fat fs/fdos fs/jffs2 \
329 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000330 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
331
Marian Balakowiczf9328632006-09-01 19:49:50 +0200332$(obj)System.map: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000333 @$(NM) $< | \
334 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200335 sort > $(obj)System.map
wdenk7ebf7442002-11-02 23:17:16 +0000336
337#########################################################################
338else
Marian Balakowiczf9328632006-09-01 19:49:50 +0200339all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
340$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
341$(SUBDIRS) version gdbtools updater env depend \
342dep tags ctags etags $(obj)System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000343 @echo "System not configured - see README" >&2
344 @ exit 1
345endif
346
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200347.PHONY : CHANGELOG
348CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -0400349 git log --no-merges U-Boot-1_1_5.. | \
350 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200351
wdenk7ebf7442002-11-02 23:17:16 +0000352#########################################################################
353
354unconfig:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200355 @rm -f $(obj)include/config.h $(obj)include/config.mk \
356 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp
wdenk7ebf7442002-11-02 23:17:16 +0000357
358#========================================================================
359# PowerPC
360#========================================================================
wdenk0db5bca2003-03-31 17:27:09 +0000361
362#########################################################################
363## MPC5xx Systems
364#########################################################################
365
wdenk5e5f9ed2005-04-13 23:15:10 +0000366canmb_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200367 @$(MKCONFIG) -a canmb ppc mpc5xxx canmb
wdenk5e5f9ed2005-04-13 23:15:10 +0000368
wdenk0db5bca2003-03-31 17:27:09 +0000369cmi_mpc5xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200370 @$(MKCONFIG) $(@:_config=) ppc mpc5xx cmi
wdenk0db5bca2003-03-31 17:27:09 +0000371
wdenkdb01a2e2004-04-15 23:14:49 +0000372PATI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200373 @$(MKCONFIG) $(@:_config=) ppc mpc5xx pati mpl
wdenkb6e4c402004-01-02 16:05:07 +0000374
wdenk7ebf7442002-11-02 23:17:16 +0000375#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000376## MPC5xxx Systems
377#########################################################################
wdenka87589d2005-06-10 10:00:19 +0000378
Wolfgang Denkdafba162005-08-12 00:22:49 +0200379aev_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200380 @$(MKCONFIG) -a aev ppc mpc5xxx tqm5200
Wolfgang Denkdafba162005-08-12 00:22:49 +0200381
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200382BC3450_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200383 @$(MKCONFIG) -a BC3450 ppc mpc5xxx bc3450
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200384
Stefan Roese5e4b3362005-08-22 17:51:53 +0200385cpci5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200386 @$(MKCONFIG) -a cpci5200 ppc mpc5xxx cpci5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200387
wdenka87589d2005-06-10 10:00:19 +0000388hmi1001_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200389 @$(MKCONFIG) hmi1001 ppc mpc5xxx hmi1001
wdenka87589d2005-06-10 10:00:19 +0000390
wdenke35745b2004-04-18 23:32:11 +0000391Lite5200_config \
392Lite5200_LOWBOOT_config \
393Lite5200_LOWBOOT08_config \
394icecube_5200_config \
395icecube_5200_LOWBOOT_config \
396icecube_5200_LOWBOOT08_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100397icecube_5200_DDR_config \
398icecube_5200_DDR_LOWBOOT_config \
wdenke35745b2004-04-18 23:32:11 +0000399icecube_5200_DDR_LOWBOOT08_config \
400icecube_5100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200401 @mkdir -p $(obj)include
402 @mkdir -p $(obj)board/icecube
403 @ >$(obj)include/config.h
wdenk17d704e2004-04-10 20:43:50 +0000404 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
405 { if [ "$(findstring DDR,$@)" ] ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200406 then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
407 else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
wdenk17d704e2004-04-10 20:43:50 +0000408 fi ; \
wdenk5cf9da42003-11-07 13:42:26 +0000409 echo "... with LOWBOOT configuration" ; \
410 }
411 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200412 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
wdenk5cf9da42003-11-07 13:42:26 +0000413 echo "... with 8 MB flash only" ; \
wdenk17d704e2004-04-10 20:43:50 +0000414 echo "... with LOWBOOT configuration" ; \
wdenk5cf9da42003-11-07 13:42:26 +0000415 }
wdenkb2001f22003-12-20 22:45:10 +0000416 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200417 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +0000418 echo "... DDR memory revision" ; \
419 }
wdenkd4ca31c2004-01-02 14:00:00 +0000420 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200421 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenkd4ca31c2004-01-02 14:00:00 +0000422 echo "... with MPC5200 processor" ; \
423 }
wdenka0f2fe52003-10-28 09:14:21 +0000424 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200425 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk945af8d2003-07-16 21:53:01 +0000426 echo "... with MGT5100 processor" ; \
427 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200428 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
wdenk945af8d2003-07-16 21:53:01 +0000429
Heiko Schocher2605e902007-02-16 07:57:42 +0100430jupiter_config: unconfig
431 @$(MKCONFIG) jupiter ppc mpc5xxx jupiter
432
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200433v38b_config: unconfig
Bartlomiej Sieka82d9c9e2006-11-01 01:34:29 +0100434 @./mkconfig -a v38b ppc mpc5xxx v38b
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200435
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100436inka4x0_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200437 @$(MKCONFIG) inka4x0 ppc mpc5xxx inka4x0
wdenk138ff602004-12-16 15:52:40 +0000438
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100439lite5200b_config \
Domen Puncerd3832e82007-04-16 14:00:13 +0200440lite5200b_PM_config \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100441lite5200b_LOWBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200442 @mkdir -p $(obj)include
443 @mkdir -p $(obj)board/icecube
444 @ >$(obj)include/config.h
445 @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100446 @ echo "... DDR memory revision"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200447 @ echo "#define CONFIG_MPC5200" >>$(obj)include/config.h
448 @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h
Domen Puncerd3832e82007-04-16 14:00:13 +0200449 @[ -z "$(findstring _PM_,$@)" ] || \
450 { echo "#define CONFIG_LITE5200B_PM" >>$(obj)include/config.h ; \
451 echo "... with power management (low-power mode) support" ; \
452 }
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100453 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200454 { echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100455 echo "... with LOWBOOT configuration" ; \
456 }
457 @ echo "... with MPC5200B processor"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200458 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100459
Stefan Roesef1ee9822006-03-04 14:57:03 +0100460mcc200_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200461mcc200_SDRAM_config \
462mcc200_highboot_config \
463mcc200_COM12_config \
464mcc200_COM12_SDRAM_config \
Wolfgang Denk113f64e2006-08-25 01:38:04 +0200465mcc200_COM12_highboot_config \
466mcc200_COM12_highboot_SDRAM_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200467mcc200_highboot_SDRAM_config \
468prs200_config \
469prs200_DDR_config \
470prs200_highboot_config \
471prs200_highboot_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200472 @mkdir -p $(obj)include
473 @mkdir -p $(obj)board/mcc200
474 @ >$(obj)include/config.h
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200475 @[ -n "$(findstring highboot,$@)" ] || \
476 { echo "... with lowboot configuration" ; \
Stefan Roesef1ee9822006-03-04 14:57:03 +0100477 }
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200478 @[ -z "$(findstring highboot,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200479 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200480 echo "... with highboot configuration" ; \
481 }
482 @[ -n "$(findstring _SDRAM,$@)" ] || \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200483 { if [ -n "$(findstring mcc200,$@)" ]; \
484 then \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100485 echo "... with DDR" ; \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200486 else \
487 if [ -n "$(findstring _DDR,$@)" ];\
488 then \
489 echo "... with DDR" ; \
490 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200491 echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200492 echo "... with SDRAM" ; \
493 fi; \
494 fi; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200495 }
496 @[ -z "$(findstring _SDRAM,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200497 { echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200498 echo "... with SDRAM" ; \
499 }
Wolfgang Denk463764c2006-08-17 00:36:51 +0200500 @[ -z "$(findstring COM12,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200501 { echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \
Wolfgang Denk463764c2006-08-17 00:36:51 +0200502 echo "... with console on COM12" ; \
503 }
Wolfgang Denked1cf842006-08-24 00:26:42 +0200504 @[ -z "$(findstring prs200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200505 { echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200506 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200507 @$(MKCONFIG) -n $@ -a mcc200 ppc mpc5xxx mcc200
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100508
Stefan Roese8b7d1f02007-01-31 16:37:34 +0100509mecp5200_config: unconfig
510 @$(MKCONFIG) -a mecp5200 ppc mpc5xxx mecp5200 esd
511
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200512o2dnt_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200513 @$(MKCONFIG) o2dnt ppc mpc5xxx o2dnt
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200514
Stefan Roese5e4b3362005-08-22 17:51:53 +0200515pf5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200516 @$(MKCONFIG) pf5200 ppc mpc5xxx pf5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200517
wdenk89394042004-08-04 21:56:49 +0000518PM520_config \
519PM520_DDR_config \
520PM520_ROMBOOT_config \
521PM520_ROMBOOT_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200522 @mkdir -p $(obj)include
523 @ >$(obj)include/config.h
wdenk89394042004-08-04 21:56:49 +0000524 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200525 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000526 echo "... DDR memory revision" ; \
527 }
528 @[ -z "$(findstring ROMBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200529 { echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000530 echo "... booting from 8-bit flash" ; \
531 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200532 @$(MKCONFIG) -a PM520 ppc mpc5xxx pm520
wdenk89394042004-08-04 21:56:49 +0000533
Wolfgang Denk6624b682006-02-22 10:25:39 +0100534smmaco4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200535 @$(MKCONFIG) -a smmaco4 ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100536
Bartlomiej Siekafa1df302007-07-11 20:11:07 +0200537cm1_qp1_config: unconfig
538 @ >include/config.h
539 @[ -z "$(findstring cm1_qp1,$@)" ] || \
540 { echo "... with 64 MByte SDRAM" ; \
541 echo "... with 32 MByte Flash" ; \
542 }
543 @./mkconfig -a cm1_qp1 ppc mpc5xxx cm1_qp1
544
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#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000647## MPC8xx Systems
648#########################################################################
649
wdenk2d24a3a2004-06-09 21:50:45 +0000650Adder_config \
651Adder87x_config \
wdenk26238132004-07-09 22:51:01 +0000652AdderII_config \
wdenk2d24a3a2004-06-09 21:50:45 +0000653 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200654 @mkdir -p $(obj)include
wdenk26238132004-07-09 22:51:01 +0000655 $(if $(findstring AdderII,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200656 @echo "#define CONFIG_MPC852T" > $(obj)include/config.h)
657 @$(MKCONFIG) -a Adder ppc mpc8xx adder
wdenk2d24a3a2004-06-09 21:50:45 +0000658
wdenk180d3f72004-01-04 16:28:35 +0000659ADS860_config \
wdenk180d3f72004-01-04 16:28:35 +0000660FADS823_config \
661FADS850SAR_config \
662MPC86xADS_config \
wdenk11142572004-06-06 21:35:06 +0000663MPC885ADS_config \
wdenk180d3f72004-01-04 16:28:35 +0000664FADS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200665 @$(MKCONFIG) $(@:_config=) ppc mpc8xx fads
wdenk7ebf7442002-11-02 23:17:16 +0000666
667AMX860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200668 @$(MKCONFIG) $(@:_config=) ppc mpc8xx amx860 westel
wdenk7ebf7442002-11-02 23:17:16 +0000669
670c2mon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200671 @$(MKCONFIG) $(@:_config=) ppc mpc8xx c2mon
wdenk7ebf7442002-11-02 23:17:16 +0000672
673CCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200674 @$(MKCONFIG) $(@:_config=) ppc mpc8xx CCM siemens
wdenk7ebf7442002-11-02 23:17:16 +0000675
676cogent_mpc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200677 @$(MKCONFIG) $(@:_config=) ppc mpc8xx cogent
wdenk7ebf7442002-11-02 23:17:16 +0000678
wdenk3bac3512003-03-12 10:41:04 +0000679ELPT860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200680 @$(MKCONFIG) $(@:_config=) ppc mpc8xx elpt860 LEOX
wdenk3bac3512003-03-12 10:41:04 +0000681
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100682EP88x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200683 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ep88x
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100684
wdenk7ebf7442002-11-02 23:17:16 +0000685ESTEEM192E_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200686 @$(MKCONFIG) $(@:_config=) ppc mpc8xx esteem192e
wdenk7ebf7442002-11-02 23:17:16 +0000687
688ETX094_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200689 @$(MKCONFIG) $(@:_config=) ppc mpc8xx etx094
wdenk7ebf7442002-11-02 23:17:16 +0000690
wdenk7ebf7442002-11-02 23:17:16 +0000691FLAGADM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200692 @$(MKCONFIG) $(@:_config=) ppc mpc8xx flagadm
wdenk7ebf7442002-11-02 23:17:16 +0000693
wdenk7aa78612003-05-03 15:50:43 +0000694xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
695
696GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000697GEN860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200698 @mkdir -p $(obj)include
699 @ >$(obj)include/config.h
wdenk7aa78612003-05-03 15:50:43 +0000700 @[ -z "$(findstring _SC,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200701 { echo "#define CONFIG_SC" >>$(obj)include/config.h ; \
wdenk7aa78612003-05-03 15:50:43 +0000702 echo "With reduced H/W feature set (SC)..." ; \
703 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200704 @$(MKCONFIG) -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000705
706GENIETV_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200707 @$(MKCONFIG) $(@:_config=) ppc mpc8xx genietv
wdenk7ebf7442002-11-02 23:17:16 +0000708
709GTH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200710 @$(MKCONFIG) $(@:_config=) ppc mpc8xx gth
wdenk7ebf7442002-11-02 23:17:16 +0000711
712hermes_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200713 @$(MKCONFIG) $(@:_config=) ppc mpc8xx hermes
wdenk7ebf7442002-11-02 23:17:16 +0000714
wdenkc40b2952004-03-13 23:29:43 +0000715HMI10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200716 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenkc40b2952004-03-13 23:29:43 +0000717
wdenk7ebf7442002-11-02 23:17:16 +0000718IAD210_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200719 @$(MKCONFIG) $(@:_config=) ppc mpc8xx IAD210 siemens
wdenk7ebf7442002-11-02 23:17:16 +0000720
721xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
722
723ICU862_100MHz_config \
724ICU862_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200725 @mkdir -p $(obj)include
726 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000727 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200728 { echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000729 echo "... with 100MHz system clock" ; \
730 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200731 @$(MKCONFIG) -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
wdenk7ebf7442002-11-02 23:17:16 +0000732
733IP860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200734 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ip860
wdenk7ebf7442002-11-02 23:17:16 +0000735
736IVML24_256_config \
737IVML24_128_config \
738IVML24_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200739 @mkdir -p $(obj)include
740 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000741 @[ -z "$(findstring IVML24_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200742 { echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000743 }
744 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200745 { echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000746 }
747 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200748 { echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000749 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200750 @$(MKCONFIG) -a IVML24 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000751
752IVMS8_256_config \
753IVMS8_128_config \
754IVMS8_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200755 @mkdir -p $(obj)include
756 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000757 @[ -z "$(findstring IVMS8_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200758 { echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000759 }
760 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200761 { echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000762 }
763 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200764 { echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000765 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200766 @$(MKCONFIG) -a IVMS8 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000767
wdenk56f94be2002-11-05 16:35:14 +0000768KUP4K_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200769 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4k kup
wdenk0608e042004-03-25 19:29:38 +0000770
771KUP4X_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200772 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000773
wdenk7ebf7442002-11-02 23:17:16 +0000774LANTEC_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200775 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lantec
wdenk7ebf7442002-11-02 23:17:16 +0000776
777lwmon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200778 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lwmon
wdenk7ebf7442002-11-02 23:17:16 +0000779
780MBX_config \
781MBX860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200782 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mbx8xx
wdenk7ebf7442002-11-02 23:17:16 +0000783
784MHPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200785 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mhpc eltec
wdenk7ebf7442002-11-02 23:17:16 +0000786
787MVS1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200788 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mvs1
wdenk7ebf7442002-11-02 23:17:16 +0000789
wdenk993cad92003-06-26 22:04:09 +0000790xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
791
792NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000793NETVIA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200794 @mkdir -p $(obj)include
795 @ >$(obj)include/config.h
wdenk993cad92003-06-26 22:04:09 +0000796 @[ -z "$(findstring NETVIA_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200797 { echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000798 echo "... Version 1" ; \
799 }
800 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200801 { echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000802 echo "... Version 2" ; \
803 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200804 @$(MKCONFIG) -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000805
wdenkc26e4542004-04-18 10:13:26 +0000806xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
807
808NETPHONE_V2_config \
wdenk04a85b32004-04-15 18:22:41 +0000809NETPHONE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200810 @mkdir -p $(obj)include
811 @ >$(obj)include/config.h
wdenkc26e4542004-04-18 10:13:26 +0000812 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200813 { echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000814 }
815 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200816 { echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000817 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200818 @$(MKCONFIG) -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk04a85b32004-04-15 18:22:41 +0000819
wdenk79fa88f2004-06-07 23:46:25 +0000820xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk04a85b32004-04-15 18:22:41 +0000821
wdenk79fa88f2004-06-07 23:46:25 +0000822NETTA_ISDN_6412_SWAPHOOK_config \
823NETTA_ISDN_SWAPHOOK_config \
824NETTA_6412_SWAPHOOK_config \
825NETTA_SWAPHOOK_config \
826NETTA_ISDN_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000827NETTA_ISDN_config \
wdenk79fa88f2004-06-07 23:46:25 +0000828NETTA_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000829NETTA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200830 @mkdir -p $(obj)include
831 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000832 @[ -z "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200833 { echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \
wdenk04a85b32004-04-15 18:22:41 +0000834 }
wdenk79fa88f2004-06-07 23:46:25 +0000835 @[ -n "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200836 { echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000837 }
838 @[ -z "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200839 { echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000840 }
841 @[ -n "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200842 { echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000843 }
844 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200845 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000846 }
847 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200848 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000849 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200850 @$(MKCONFIG) -a $(call xtract_NETTA,$@) ppc mpc8xx netta
wdenk04a85b32004-04-15 18:22:41 +0000851
wdenk79fa88f2004-06-07 23:46:25 +0000852xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
853
854NETTA2_V2_config \
855NETTA2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200856 @mkdir -p $(obj)include
857 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000858 @[ -z "$(findstring NETTA2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200859 { echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000860 }
861 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200862 { echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000863 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200864 @$(MKCONFIG) -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
wdenk79fa88f2004-06-07 23:46:25 +0000865
dzu@denx.dea367d422006-04-19 11:52:46 +0200866NC650_Rev1_config \
867NC650_Rev2_config \
868CP850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200869 @mkdir -p $(obj)include
870 @ >$(obj)include/config.h
dzu@denx.dea367d422006-04-19 11:52:46 +0200871 @[ -z "$(findstring CP850,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200872 { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \
873 echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200874 }
875 @[ -z "$(findstring Rev1,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200876 { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200877 }
878 @[ -z "$(findstring Rev2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200879 { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200880 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200881 @$(MKCONFIG) -a NC650 ppc mpc8xx nc650
wdenk7ca202f2004-08-28 22:45:57 +0000882
wdenk7ebf7442002-11-02 23:17:16 +0000883NX823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200884 @$(MKCONFIG) $(@:_config=) ppc mpc8xx nx823
wdenk7ebf7442002-11-02 23:17:16 +0000885
886pcu_e_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200887 @$(MKCONFIG) $(@:_config=) ppc mpc8xx pcu_e siemens
wdenk7ebf7442002-11-02 23:17:16 +0000888
wdenk3bbc8992003-12-07 22:27:15 +0000889QS850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200890 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000891
892QS823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200893 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000894
895QS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200896 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs860t snmc
wdenk3bbc8992003-12-07 22:27:15 +0000897
wdenkda93ed82004-09-29 11:02:56 +0000898quantum_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200899 @$(MKCONFIG) $(@:_config=) ppc mpc8xx quantum
wdenkda93ed82004-09-29 11:02:56 +0000900
wdenk7ebf7442002-11-02 23:17:16 +0000901R360MPI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200902 @$(MKCONFIG) $(@:_config=) ppc mpc8xx r360mpi
wdenk7ebf7442002-11-02 23:17:16 +0000903
wdenk682011f2003-06-03 23:54:09 +0000904RBC823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200905 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rbc823
wdenk682011f2003-06-03 23:54:09 +0000906
wdenk7ebf7442002-11-02 23:17:16 +0000907RPXClassic_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200908 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXClassic
wdenk7ebf7442002-11-02 23:17:16 +0000909
910RPXlite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200911 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXlite
wdenk7ebf7442002-11-02 23:17:16 +0000912
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100913RPXlite_DW_64_config \
914RPXlite_DW_LCD_config \
915RPXlite_DW_64_LCD_config \
wdenke63c8ee2004-06-09 21:04:48 +0000916RPXlite_DW_NVRAM_config \
917RPXlite_DW_NVRAM_64_config \
918RPXlite_DW_NVRAM_LCD_config \
919RPXlite_DW_NVRAM_64_LCD_config \
920RPXlite_DW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200921 @mkdir -p $(obj)include
922 @ >$(obj)include/config.h
wdenke63c8ee2004-06-09 21:04:48 +0000923 @[ -z "$(findstring _64,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200924 { echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000925 echo "... with 64MHz system clock ..."; \
926 }
927 @[ -z "$(findstring _LCD,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100928 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200929 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000930 echo "... with LCD display ..."; \
931 }
932 @[ -z "$(findstring _NVRAM,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100933 { echo "#define CFG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000934 echo "... with ENV in NVRAM ..."; \
935 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200936 @$(MKCONFIG) -a RPXlite_DW ppc mpc8xx RPXlite_dw
wdenke63c8ee2004-06-09 21:04:48 +0000937
wdenk73a8b272003-06-05 19:27:42 +0000938rmu_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200939 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rmu
wdenk73a8b272003-06-05 19:27:42 +0000940
wdenk7ebf7442002-11-02 23:17:16 +0000941RRvision_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200942 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000943
944RRvision_LCD_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200945 @mkdir -p $(obj)include
946 @echo "#define CONFIG_LCD" >$(obj)include/config.h
947 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
948 @$(MKCONFIG) -a RRvision ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000949
950SM850_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200951 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000952
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200953spc1920_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200954 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spc1920
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200955
wdenk7ebf7442002-11-02 23:17:16 +0000956SPD823TS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200957 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spd8xx
wdenk7ebf7442002-11-02 23:17:16 +0000958
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200959stxxtc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200960 @$(MKCONFIG) $(@:_config=) ppc mpc8xx stxxtc
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200961
wdenkdc7c9a12003-03-26 06:55:25 +0000962svm_sc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200963 @$(MKCONFIG) $(@:_config=) ppc mpc8xx svm_sc8xx
wdenkdc7c9a12003-03-26 06:55:25 +0000964
wdenk7ebf7442002-11-02 23:17:16 +0000965SXNI855T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200966 @$(MKCONFIG) $(@:_config=) ppc mpc8xx sixnet
wdenk7ebf7442002-11-02 23:17:16 +0000967
wdenkdb2f721f2003-03-06 00:58:30 +0000968# EMK MPC8xx based modules
969TOP860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200970 @$(MKCONFIG) $(@:_config=) ppc mpc8xx top860 emk
wdenkdb2f721f2003-03-06 00:58:30 +0000971
wdenk7ebf7442002-11-02 23:17:16 +0000972# Play some tricks for configuration selection
wdenke9132ea2004-04-24 23:23:30 +0000973# Only 855 and 860 boards may come with FEC
974# and only 823 boards may have LCD support
975xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +0000976
977FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000978FPS860L_config \
wdenkf12e5682003-07-07 20:07:54 +0000979NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +0000980TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000981TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +0000982TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000983TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000984TQM860L_config \
wdenkd126bfb2003-04-10 11:18:18 +0000985TQM862L_config \
wdenkae3af052003-08-07 22:18:11 +0000986TQM823M_config \
wdenkae3af052003-08-07 22:18:11 +0000987TQM850M_config \
wdenkf12e5682003-07-07 20:07:54 +0000988TQM855M_config \
wdenkf12e5682003-07-07 20:07:54 +0000989TQM860M_config \
wdenkf12e5682003-07-07 20:07:54 +0000990TQM862M_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200991TQM866M_config \
Markus Klotzbuecher090eb732006-07-12 15:26:01 +0200992TQM885D_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200993virtlab2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200994 @mkdir -p $(obj)include
995 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000996 @[ -z "$(findstring _LCD,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200997 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
998 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000999 echo "... with LCD display" ; \
1000 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001001 @$(MKCONFIG) -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +00001002
1003TTTech_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001004 @mkdir -p $(obj)include
1005 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1006 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
1007 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +00001008
wdenkec0aee72004-12-19 09:58:11 +00001009uc100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001010 @$(MKCONFIG) $(@:_config=) ppc mpc8xx uc100
wdenkf7d15722004-12-18 22:35:43 +00001011
wdenk608c9142003-01-13 23:54:46 +00001012v37_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001013 @mkdir -p $(obj)include
1014 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1015 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h
1016 @$(MKCONFIG) $(@:_config=) ppc mpc8xx v37
wdenk608c9142003-01-13 23:54:46 +00001017
dzu91e940d2003-09-25 22:32:40 +00001018wtk_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001019 @mkdir -p $(obj)include
1020 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1021 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h
1022 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
dzu91e940d2003-09-25 22:32:40 +00001023
wdenk7ebf7442002-11-02 23:17:16 +00001024#########################################################################
1025## PPC4xx Systems
1026#########################################################################
wdenke55ca7e2004-07-01 21:40:08 +00001027xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001028
Stefan Roese16c0cc12007-03-21 13:39:57 +01001029acadia_config: unconfig
1030 @$(MKCONFIG) $(@:_config=) ppc ppc4xx acadia amcc
1031
Stefan Roesec440bfe2007-06-06 11:42:13 +02001032acadia_nand_config: unconfig
1033 @mkdir -p $(obj)include
1034 @mkdir -p $(obj)nand_spl
1035 @mkdir -p $(obj)board/amcc/acadia
1036 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
1037 @$(MKCONFIG) -n $@ -a acadia ppc ppc4xx acadia amcc
1038 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/acadia/config.tmp
1039 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1040
wdenk7ebf7442002-11-02 23:17:16 +00001041ADCIOP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001042 @$(MKCONFIG) $(@:_config=) ppc ppc4xx adciop esd
wdenk7ebf7442002-11-02 23:17:16 +00001043
Stefan Roese899620c2006-08-15 14:22:35 +02001044alpr_config: unconfig
1045 @./mkconfig $(@:_config=) ppc ppc4xx alpr prodrive
1046
Wolfgang Denk7521af12005-10-09 01:04:33 +02001047AP1000_config:unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001048 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ap1000 amirix
Wolfgang Denk7521af12005-10-09 01:04:33 +02001049
stroesec419d1d2004-12-16 18:44:40 +00001050APC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001051 @$(MKCONFIG) $(@:_config=) ppc ppc4xx apc405 esd
stroesec419d1d2004-12-16 18:44:40 +00001052
wdenk7ebf7442002-11-02 23:17:16 +00001053AR405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001054 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ar405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001055
stroese549826e2003-05-23 11:41:44 +00001056ASH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001057 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ash405 esd
stroese549826e2003-05-23 11:41:44 +00001058
Stefan Roese8a316c92005-08-01 16:49:12 +02001059bamboo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001060 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bamboo amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001061
Stefan Roesecf959c72007-06-01 15:27:11 +02001062bamboo_nand_config: unconfig
1063 @mkdir -p $(obj)include
1064 @mkdir -p $(obj)nand_spl
1065 @mkdir -p $(obj)board/amcc/bamboo
1066 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roesef3679aa2007-06-01 16:15:34 +02001067 @$(MKCONFIG) -n $@ -a bamboo ppc ppc4xx bamboo amcc
Stefan Roesecf959c72007-06-01 15:27:11 +02001068 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/bamboo/config.tmp
1069 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1070
Stefan Roese8a316c92005-08-01 16:49:12 +02001071bubinga_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001072 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bubinga amcc
stroese549826e2003-05-23 11:41:44 +00001073
wdenk7ebf7442002-11-02 23:17:16 +00001074CANBT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001075 @$(MKCONFIG) $(@:_config=) ppc ppc4xx canbt esd
wdenk7ebf7442002-11-02 23:17:16 +00001076
wdenk1d6f9722004-09-09 17:44:35 +00001077CATcenter_config \
1078CATcenter_25_config \
1079CATcenter_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001080 @mkdir -p $(obj)include
1081 @ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h
1082 @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001083 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001084 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001085 echo "SysClk = 25MHz" ; \
1086 }
1087 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001088 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001089 echo "SysClk = 33MHz" ; \
1090 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001091 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk10767cc2004-05-13 13:23:58 +00001092
Stefan Roese7644f162005-09-22 09:16:57 +02001093CPCI2DP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001094 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd
Stefan Roese7644f162005-09-22 09:16:57 +02001095
stroese549826e2003-05-23 11:41:44 +00001096CPCI405_config \
1097CPCI4052_config \
stroesec419d1d2004-12-16 18:44:40 +00001098CPCI405DT_config \
stroese549826e2003-05-23 11:41:44 +00001099CPCI405AB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001100 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci405 esd
1101 @echo "BOARD_REVISION = $(@:_config=)" >> $(obj)include/config.mk
wdenk7ebf7442002-11-02 23:17:16 +00001102
1103CPCI440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001104 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci440 esd
wdenk7ebf7442002-11-02 23:17:16 +00001105
1106CPCIISER4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001107 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpciiser4 esd
wdenk7ebf7442002-11-02 23:17:16 +00001108
wdenkdb01a2e2004-04-15 23:14:49 +00001109CRAYL1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001110 @$(MKCONFIG) $(@:_config=) ppc ppc4xx L1 cray
wdenk7ebf7442002-11-02 23:17:16 +00001111
wdenkcd0a9de2004-02-23 20:48:38 +00001112csb272_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001113 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb272
wdenkcd0a9de2004-02-23 20:48:38 +00001114
wdenkaa245092004-06-09 12:47:02 +00001115csb472_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001116 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb472
wdenkaa245092004-06-09 12:47:02 +00001117
wdenk7ebf7442002-11-02 23:17:16 +00001118DASA_SIM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001119 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dasa_sim esd
wdenk7ebf7442002-11-02 23:17:16 +00001120
stroese72cd5aa2003-09-12 08:57:15 +00001121DP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001122 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dp405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001123
wdenk7ebf7442002-11-02 23:17:16 +00001124DU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001125 @$(MKCONFIG) $(@:_config=) ppc ppc4xx du405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001126
Stefan Roese8a316c92005-08-01 16:49:12 +02001127ebony_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001128 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +00001129
wdenkdb01a2e2004-04-15 23:14:49 +00001130ERIC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001131 @$(MKCONFIG) $(@:_config=) ppc ppc4xx eric
wdenk7ebf7442002-11-02 23:17:16 +00001132
wdenkdb01a2e2004-04-15 23:14:49 +00001133EXBITGEN_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001134 @$(MKCONFIG) $(@:_config=) ppc ppc4xx exbitgen
wdenkd1cbe852003-06-28 17:24:46 +00001135
stroesec419d1d2004-12-16 18:44:40 +00001136G2000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001137 @$(MKCONFIG) $(@:_config=) ppc ppc4xx g2000
stroesec419d1d2004-12-16 18:44:40 +00001138
1139HH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001140 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001141
stroese72cd5aa2003-09-12 08:57:15 +00001142HUB405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001143 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001144
wdenkdb01a2e2004-04-15 23:14:49 +00001145JSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001146 @$(MKCONFIG) $(@:_config=) ppc ppc4xx jse
wdenkdb01a2e2004-04-15 23:14:49 +00001147
Stefan Roeseb79316f2005-08-15 12:31:23 +02001148KAREF_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001149 @$(MKCONFIG) $(@:_config=) ppc ppc4xx karef sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001150
Stefan Roese4745aca2007-02-20 10:57:08 +01001151katmai_config: unconfig
1152 @$(MKCONFIG) $(@:_config=) ppc ppc4xx katmai amcc
1153
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001154luan_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001155 @$(MKCONFIG) $(@:_config=) ppc ppc4xx luan amcc
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001156
Stefan Roeseb765ffb2007-06-15 08:18:01 +02001157lwmon5_config: unconfig
1158 @$(MKCONFIG) $(@:_config=) ppc ppc4xx lwmon5
1159
Stefan Roeseb79316f2005-08-15 12:31:23 +02001160METROBOX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001161 @$(MKCONFIG) $(@:_config=) ppc ppc4xx metrobox sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001162
wdenkdb01a2e2004-04-15 23:14:49 +00001163MIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001164 @$(MKCONFIG) $(@:_config=) ppc ppc4xx mip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001165
wdenkdb01a2e2004-04-15 23:14:49 +00001166MIP405T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001167 @mkdir -p $(obj)include
1168 @echo "#define CONFIG_MIP405T" >$(obj)include/config.h
wdenkf3e0de62003-06-04 15:05:30 +00001169 @echo "Enable subset config for MIP405T"
Marian Balakowiczf9328632006-09-01 19:49:50 +02001170 @$(MKCONFIG) -a MIP405 ppc ppc4xx mip405 mpl
wdenkf3e0de62003-06-04 15:05:30 +00001171
wdenkdb01a2e2004-04-15 23:14:49 +00001172ML2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001173 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml2
wdenk7ebf7442002-11-02 23:17:16 +00001174
wdenkdb01a2e2004-04-15 23:14:49 +00001175ml300_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001176 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml300 xilinx
wdenk028ab6b2004-02-23 23:54:43 +00001177
Stefan Roese8a316c92005-08-01 16:49:12 +02001178ocotea_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001179 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocotea amcc
wdenk0e6d7982004-03-14 00:07:33 +00001180
wdenk7ebf7442002-11-02 23:17:16 +00001181OCRTC_config \
1182ORSG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001183 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocrtc esd
wdenk7ebf7442002-11-02 23:17:16 +00001184
Stefan Roese5568e612005-11-22 13:20:42 +01001185p3p440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001186 @$(MKCONFIG) $(@:_config=) ppc ppc4xx p3p440 prodrive
Stefan Roese5568e612005-11-22 13:20:42 +01001187
wdenk7ebf7442002-11-02 23:17:16 +00001188PCI405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001189 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pci405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001190
Stefan Roesea4c8d132006-06-02 16:18:04 +02001191pcs440ep_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001192 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pcs440ep
Stefan Roesea4c8d132006-06-02 16:18:04 +02001193
wdenkdb01a2e2004-04-15 23:14:49 +00001194PIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001195 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001196
stroese72cd5aa2003-09-12 08:57:15 +00001197PLU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001198 @$(MKCONFIG) $(@:_config=) ppc ppc4xx plu405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001199
stroese549826e2003-05-23 11:41:44 +00001200PMC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001201 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pmc405 esd
stroese549826e2003-05-23 11:41:44 +00001202
wdenk281e00a2004-08-01 22:48:16 +00001203PPChameleonEVB_config \
wdenke55ca7e2004-07-01 21:40:08 +00001204PPChameleonEVB_BA_25_config \
1205PPChameleonEVB_ME_25_config \
1206PPChameleonEVB_HI_25_config \
1207PPChameleonEVB_BA_33_config \
1208PPChameleonEVB_ME_33_config \
1209PPChameleonEVB_HI_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001210 @mkdir -p $(obj)include
1211 @ >$(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001212 @[ -z "$(findstring EVB_BA,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001213 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001214 echo "... BASIC model" ; \
1215 }
wdenk1d6f9722004-09-09 17:44:35 +00001216 @[ -z "$(findstring EVB_ME,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001217 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001218 echo "... MEDIUM model" ; \
1219 }
wdenk1d6f9722004-09-09 17:44:35 +00001220 @[ -z "$(findstring EVB_HI,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001221 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001222 echo "... HIGH-END model" ; \
1223 }
wdenke55ca7e2004-07-01 21:40:08 +00001224 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001225 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001226 echo "SysClk = 25MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001227 }
1228 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001229 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001230 echo "SysClk = 33MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001231 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001232 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk12f34242003-09-02 22:48:03 +00001233
wdenk652a10c2005-01-09 23:48:14 +00001234sbc405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001235 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sbc405
wdenk652a10c2005-01-09 23:48:14 +00001236
Stefan Roese430f1b02007-03-28 15:03:16 +02001237sequoia_config \
1238rainier_config: unconfig
1239 @mkdir -p $(obj)include
1240 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1241 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
1242 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Stefan Roese887e2ec2006-09-07 11:51:23 +02001243
Stefan Roese430f1b02007-03-28 15:03:16 +02001244sequoia_nand_config \
1245rainier_nand_config: unconfig
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001246 @mkdir -p $(obj)include
1247 @mkdir -p $(obj)nand_spl
1248 @mkdir -p $(obj)board/amcc/sequoia
1249 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roese430f1b02007-03-28 15:03:16 +02001250 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1251 tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h
1252 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001253 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1254 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
stroese72cd5aa2003-09-12 08:57:15 +00001255
Wolfgang Denk6d3e0102007-01-16 18:30:50 +01001256sc3_config:unconfig
1257 @./mkconfig $(@:_config=) ppc ppc4xx sc3
Heiko Schocherca43ba12007-01-11 15:44:44 +01001258
Stefan Roese5fb692c2007-01-18 10:25:34 +01001259taishan_config: unconfig
1260 @$(MKCONFIG) $(@:_config=) ppc ppc4xx taishan amcc
1261
wdenk7ebf7442002-11-02 23:17:16 +00001262VOH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001263 @$(MKCONFIG) $(@:_config=) ppc ppc4xx voh405 esd
wdenk3bac3512003-03-12 10:41:04 +00001264
stroesec419d1d2004-12-16 18:44:40 +00001265VOM405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001266 @$(MKCONFIG) $(@:_config=) ppc ppc4xx vom405 esd
stroesec419d1d2004-12-16 18:44:40 +00001267
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001268CMS700_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001269 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001270
wdenk7ebf7442002-11-02 23:17:16 +00001271W7OLMC_config \
1272W7OLMG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001273 @$(MKCONFIG) $(@:_config=) ppc ppc4xx w7o
wdenk7ebf7442002-11-02 23:17:16 +00001274
Stefan Roese430f1b02007-03-28 15:03:16 +02001275# Walnut & Sycamore images are identical (recognized via PVR)
1276walnut_config \
1277sycamore_config: unconfig
1278 @$(MKCONFIG) -n $@ -a walnut ppc ppc4xx walnut amcc
wdenk7ebf7442002-11-02 23:17:16 +00001279
stroesec419d1d2004-12-16 18:44:40 +00001280WUH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001281 @$(MKCONFIG) $(@:_config=) ppc ppc4xx wuh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001282
wdenkdb01a2e2004-04-15 23:14:49 +00001283XPEDITE1K_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001284 @$(MKCONFIG) $(@:_config=) ppc ppc4xx xpedite1k
wdenkba56f622004-02-06 23:19:44 +00001285
Stefan Roese430f1b02007-03-28 15:03:16 +02001286yosemite_config \
1287yellowstone_config: unconfig
Stefan Roese700200c2007-01-30 17:04:19 +01001288 @mkdir -p $(obj)include
Stefan Roese430f1b02007-03-28 15:03:16 +02001289 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1290 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
Stefan Roese2aa54f62007-02-02 12:42:08 +01001291 @$(MKCONFIG) -n $@ -a yosemite ppc ppc4xx yosemite amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001292
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001293yucca_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001294 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yucca amcc
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001295
wdenk7ebf7442002-11-02 23:17:16 +00001296#########################################################################
wdenk983fda82004-10-28 00:09:35 +00001297## MPC8220 Systems
1298#########################################################################
Wolfgang Denkdc17fb62005-08-03 22:32:02 +02001299
1300Alaska8220_config \
1301Yukon8220_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001302 @$(MKCONFIG) $(@:_config=) ppc mpc8220 alaska
wdenk983fda82004-10-28 00:09:35 +00001303
wdenk12b43d52005-04-05 21:57:18 +00001304sorcery_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001305 @$(MKCONFIG) $(@:_config=) ppc mpc8220 sorcery
wdenk12b43d52005-04-05 21:57:18 +00001306
wdenk983fda82004-10-28 00:09:35 +00001307#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001308## MPC824x Systems
1309#########################################################################
wdenkefa329c2004-03-23 20:18:25 +00001310xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001311
wdenk03329902003-06-20 22:36:30 +00001312A3000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001313 @$(MKCONFIG) $(@:_config=) ppc mpc824x a3000
wdenk03329902003-06-20 22:36:30 +00001314
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001315barco_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001316 @$(MKCONFIG) $(@:_config=) ppc mpc824x barco
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001317
wdenk7ebf7442002-11-02 23:17:16 +00001318BMW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001319 @$(MKCONFIG) $(@:_config=) ppc mpc824x bmw
wdenk7ebf7442002-11-02 23:17:16 +00001320
wdenk3bac3512003-03-12 10:41:04 +00001321CPC45_config \
1322CPC45_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001323 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc824x cpc45
1324 @cd $(obj)include ; \
wdenk3bac3512003-03-12 10:41:04 +00001325 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1326 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1327 echo "... booting from 8-bit flash" ; \
1328 else \
1329 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1330 echo "... booting from 64-bit flash" ; \
1331 fi; \
1332 echo "export CONFIG_BOOT_ROM" >> config.mk;
1333
wdenk7ebf7442002-11-02 23:17:16 +00001334CU824_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001335 @$(MKCONFIG) $(@:_config=) ppc mpc824x cu824
wdenk7ebf7442002-11-02 23:17:16 +00001336
wdenk7abf0c52004-04-18 21:45:42 +00001337debris_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001338 @$(MKCONFIG) $(@:_config=) ppc mpc824x debris etin
wdenk7abf0c52004-04-18 21:45:42 +00001339
wdenk80885a92004-02-26 23:46:20 +00001340eXalion_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001341 @$(MKCONFIG) $(@:_config=) ppc mpc824x eXalion
wdenk80885a92004-02-26 23:46:20 +00001342
wdenk756f5862005-04-03 15:51:42 +00001343HIDDEN_DRAGON_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001344 @$(MKCONFIG) $(@:_config=) ppc mpc824x hidden_dragon
wdenk756f5862005-04-03 15:51:42 +00001345
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001346kvme080_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001347 @$(MKCONFIG) $(@:_config=) ppc mpc824x kvme080 etin
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001348
wdenk7ebf7442002-11-02 23:17:16 +00001349MOUSSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001350 @$(MKCONFIG) $(@:_config=) ppc mpc824x mousse
wdenk7ebf7442002-11-02 23:17:16 +00001351
1352MUSENKI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001353 @$(MKCONFIG) $(@:_config=) ppc mpc824x musenki
wdenk7ebf7442002-11-02 23:17:16 +00001354
wdenkb4676a22003-12-07 19:24:00 +00001355MVBLUE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001356 @$(MKCONFIG) $(@:_config=) ppc mpc824x mvblue
wdenkb4676a22003-12-07 19:24:00 +00001357
wdenk7ebf7442002-11-02 23:17:16 +00001358OXC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001359 @$(MKCONFIG) $(@:_config=) ppc mpc824x oxc
wdenk7ebf7442002-11-02 23:17:16 +00001360
1361PN62_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001362 @$(MKCONFIG) $(@:_config=) ppc mpc824x pn62
wdenk7ebf7442002-11-02 23:17:16 +00001363
1364Sandpoint8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001365 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001366
1367Sandpoint8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001368 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001369
wdenk466b7412004-07-10 22:35:59 +00001370sbc8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001371 @$(MKCONFIG) $(@:_config=) ppc mpc824x sbc8240
wdenk466b7412004-07-10 22:35:59 +00001372
wdenkd1cbe852003-06-28 17:24:46 +00001373SL8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001374 @$(MKCONFIG) $(@:_config=) ppc mpc824x sl8245
wdenkd1cbe852003-06-28 17:24:46 +00001375
wdenk7ebf7442002-11-02 23:17:16 +00001376utx8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001377 @$(MKCONFIG) $(@:_config=) ppc mpc824x utx8245
wdenk7ebf7442002-11-02 23:17:16 +00001378
1379#########################################################################
1380## MPC8260 Systems
1381#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001382
wdenk54387ac2003-10-08 22:45:44 +00001383atc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001384 @$(MKCONFIG) $(@:_config=) ppc mpc8260 atc
wdenk54387ac2003-10-08 22:45:44 +00001385
wdenk7ebf7442002-11-02 23:17:16 +00001386cogent_mpc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001387 @$(MKCONFIG) $(@:_config=) ppc mpc8260 cogent
wdenk7ebf7442002-11-02 23:17:16 +00001388
1389CPU86_config \
1390CPU86_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001391 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu86
1392 @cd $(obj)include ; \
wdenk7ebf7442002-11-02 23:17:16 +00001393 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1394 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1395 echo "... booting from 8-bit flash" ; \
1396 else \
1397 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1398 echo "... booting from 64-bit flash" ; \
1399 fi; \
1400 echo "export CONFIG_BOOT_ROM" >> config.mk;
1401
wdenk384cc682005-04-03 22:35:21 +00001402CPU87_config \
1403CPU87_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001404 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu87
1405 @cd $(obj)include ; \
wdenk384cc682005-04-03 22:35:21 +00001406 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1407 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1408 echo "... booting from 8-bit flash" ; \
1409 else \
1410 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1411 echo "... booting from 64-bit flash" ; \
1412 fi; \
1413 echo "export CONFIG_BOOT_ROM" >> config.mk;
1414
Wolfgang Denkf901a832005-08-06 01:42:58 +02001415ep8248_config \
1416ep8248E_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001417 @$(MKCONFIG) ep8248 ppc mpc8260 ep8248
Wolfgang Denkf901a832005-08-06 01:42:58 +02001418
wdenk7ebf7442002-11-02 23:17:16 +00001419ep8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001420 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep8260
wdenk7ebf7442002-11-02 23:17:16 +00001421
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001422ep82xxm_config: unconfig
1423 @./mkconfig $(@:_config=) ppc mpc8260 ep82xxm
1424
wdenk7ebf7442002-11-02 23:17:16 +00001425gw8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001426 @$(MKCONFIG) $(@:_config=) ppc mpc8260 gw8260
wdenk7ebf7442002-11-02 23:17:16 +00001427
1428hymod_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001429 @$(MKCONFIG) $(@:_config=) ppc mpc8260 hymod
wdenk7ebf7442002-11-02 23:17:16 +00001430
wdenk9dd41a72005-05-12 22:48:09 +00001431IDS8247_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001432 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ids8247
wdenk9dd41a72005-05-12 22:48:09 +00001433
wdenk7ebf7442002-11-02 23:17:16 +00001434IPHASE4539_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001435 @$(MKCONFIG) $(@:_config=) ppc mpc8260 iphase4539
wdenk7ebf7442002-11-02 23:17:16 +00001436
wdenkc3c7f862004-06-09 14:47:54 +00001437ISPAN_config \
1438ISPAN_REVB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001439 @mkdir -p $(obj)include
wdenkc3c7f862004-06-09 14:47:54 +00001440 @if [ "$(findstring _REVB_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001441 echo "#define CFG_REV_B" > $(obj)include/config.h ; \
wdenkc3c7f862004-06-09 14:47:54 +00001442 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001443 @$(MKCONFIG) -a ISPAN ppc mpc8260 ispan
wdenkc3c7f862004-06-09 14:47:54 +00001444
wdenk04a85b32004-04-15 18:22:41 +00001445MPC8260ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001446MPC8260ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001447MPC8260ADS_33MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001448MPC8260ADS_33MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001449MPC8260ADS_40MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001450MPC8260ADS_40MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001451MPC8272ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001452MPC8272ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001453PQ2FADS_config \
wdenk901787d2005-04-03 23:22:21 +00001454PQ2FADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001455PQ2FADS-VR_config \
wdenk901787d2005-04-03 23:22:21 +00001456PQ2FADS-VR_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001457PQ2FADS-ZU_config \
wdenk901787d2005-04-03 23:22:21 +00001458PQ2FADS-ZU_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001459PQ2FADS-ZU_66MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001460PQ2FADS-ZU_66MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001461 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001462 @mkdir -p $(obj)include
1463 @mkdir -p $(obj)board/mpc8260ads
wdenk04a85b32004-04-15 18:22:41 +00001464 $(if $(findstring PQ2FADS,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001465 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > $(obj)include/config.h, \
1466 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h)
wdenk04a85b32004-04-15 18:22:41 +00001467 $(if $(findstring MHz,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001468 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \
wdenk04a85b32004-04-15 18:22:41 +00001469 $(if $(findstring VR,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001470 @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h))
wdenk901787d2005-04-03 23:22:21 +00001471 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001472 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/mpc8260ads/config.tmp ; \
wdenk901787d2005-04-03 23:22:21 +00001473 echo "... with lowboot configuration" ; \
1474 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001475 @$(MKCONFIG) -a MPC8260ADS ppc mpc8260 mpc8260ads
wdenk7ebf7442002-11-02 23:17:16 +00001476
wdenkdb2f721f2003-03-06 00:58:30 +00001477MPC8266ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001478 @$(MKCONFIG) $(@:_config=) ppc mpc8260 mpc8266ads
wdenkdb2f721f2003-03-06 00:58:30 +00001479
wdenkefa329c2004-03-23 20:18:25 +00001480# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk10f67012003-03-25 18:06:06 +00001481PM825_config \
wdenkefa329c2004-03-23 20:18:25 +00001482PM825_ROMBOOT_config \
1483PM825_BIGFLASH_config \
1484PM825_ROMBOOT_BIGFLASH_config \
wdenk7ebf7442002-11-02 23:17:16 +00001485PM826_config \
wdenkefa329c2004-03-23 20:18:25 +00001486PM826_ROMBOOT_config \
1487PM826_BIGFLASH_config \
1488PM826_ROMBOOT_BIGFLASH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001489 @mkdir -p $(obj)include
1490 @mkdir -p $(obj)board/pm826
wdenkefa329c2004-03-23 20:18:25 +00001491 @if [ "$(findstring PM825_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001492 echo "#define CONFIG_PCI" >$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001493 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001494 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001495 fi
1496 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1497 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001498 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1499 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001500 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1501 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001502 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001503 fi; \
1504 else \
wdenk7ebf7442002-11-02 23:17:16 +00001505 echo "... booting from 64-bit flash" ; \
wdenkefa329c2004-03-23 20:18:25 +00001506 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1507 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001508 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
1509 echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001510 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001511 echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001512 fi; \
1513 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001514 @$(MKCONFIG) -a PM826 ppc mpc8260 pm826
wdenkefa329c2004-03-23 20:18:25 +00001515
1516PM828_config \
1517PM828_PCI_config \
1518PM828_ROMBOOT_config \
1519PM828_ROMBOOT_PCI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001520 @mkdir -p $(obj)include
1521 @mkdir -p $(obj)board/pm826
Marian Balakowicz17076262006-04-05 20:37:11 +02001522 @if [ "$(findstring _PCI_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001523 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001524 echo "... with PCI enabled" ; \
1525 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001526 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001527 fi
1528 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1529 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001530 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1531 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001532 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001533 @$(MKCONFIG) -a PM828 ppc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +00001534
1535ppmc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001536 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ppmc8260
wdenk7ebf7442002-11-02 23:17:16 +00001537
wdenk8b0bfc62005-04-03 23:11:38 +00001538Rattler8248_config \
1539Rattler_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001540 @mkdir -p $(obj)include
wdenk8b0bfc62005-04-03 23:11:38 +00001541 $(if $(findstring 8248,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001542 @echo "#define CONFIG_MPC8248" > $(obj)include/config.h)
1543 @$(MKCONFIG) -a Rattler ppc mpc8260 rattler
wdenk8b0bfc62005-04-03 23:11:38 +00001544
wdenk7ebf7442002-11-02 23:17:16 +00001545RPXsuper_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001546 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rpxsuper
wdenk7ebf7442002-11-02 23:17:16 +00001547
1548rsdproto_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001549 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rsdproto
wdenk7ebf7442002-11-02 23:17:16 +00001550
1551sacsng_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001552 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sacsng
wdenk7ebf7442002-11-02 23:17:16 +00001553
1554sbc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001555 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sbc8260
wdenk7ebf7442002-11-02 23:17:16 +00001556
1557SCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001558 @$(MKCONFIG) $(@:_config=) ppc mpc8260 SCM siemens
wdenk7ebf7442002-11-02 23:17:16 +00001559
wdenk27b207f2003-07-24 23:38:38 +00001560TQM8255_AA_config \
1561TQM8260_AA_config \
1562TQM8260_AB_config \
1563TQM8260_AC_config \
1564TQM8260_AD_config \
1565TQM8260_AE_config \
1566TQM8260_AF_config \
1567TQM8260_AG_config \
1568TQM8260_AH_config \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001569TQM8260_AI_config \
wdenk27b207f2003-07-24 23:38:38 +00001570TQM8265_AA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001571 @mkdir -p $(obj)include
wdenk27b207f2003-07-24 23:38:38 +00001572 @case "$@" in \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001573 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
1574 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
1575 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1576 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1577 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1578 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
1579 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1580 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
1581 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
1582 TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1583 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
wdenk27b207f2003-07-24 23:38:38 +00001584 esac; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001585 >$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001586 if [ "$${CTYPE}" != "MPC8260" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001587 echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001588 fi; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001589 echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001590 echo "... with $${CFREQ}MHz system clock" ; \
1591 if [ "$${CACHE}" == "yes" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001592 echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001593 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001594 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001595 echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001596 echo "... without L2 Cache support" ; \
wdenk27b207f2003-07-24 23:38:38 +00001597 fi; \
1598 if [ "$${BMODE}" == "60x" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001599 echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001600 echo "... with 60x Bus Mode" ; \
1601 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001602 echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001603 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001604 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001605 @$(MKCONFIG) -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +00001606
Heiko Schocherfa230442006-12-21 17:17:02 +01001607TQM8272_config: unconfig
1608 @$(MKCONFIG) -a TQM8272 ppc mpc8260 tqm8272
1609
wdenkba91e262005-05-30 23:55:42 +00001610VoVPN-GW_66MHz_config \
1611VoVPN-GW_100MHz_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001612 @mkdir -p $(obj)include
1613 @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h
1614 @$(MKCONFIG) -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
wdenkba91e262005-05-30 23:55:42 +00001615
wdenk54387ac2003-10-08 22:45:44 +00001616ZPC1900_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001617 @$(MKCONFIG) $(@:_config=) ppc mpc8260 zpc1900
wdenk7aa78612003-05-03 15:50:43 +00001618
wdenk4e5ca3e2003-12-08 01:34:36 +00001619#########################################################################
1620## Coldfire
1621#########################################################################
1622
Wolfgang Denk74812662005-12-12 16:06:05 +01001623cobra5272_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001624 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272
Wolfgang Denk74812662005-12-12 16:06:05 +01001625
Wolfgang Denk4176c792006-06-10 19:27:47 +02001626EB+MCF-EV123_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001627 @mkdir -p $(obj)include
1628 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1629 @ >$(obj)include/config.h
1630 @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1631 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001632
1633EB+MCF-EV123_internal_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001634 @mkdir -p $(obj)include
1635 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1636 @ >$(obj)include/config.h
1637 @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1638 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001639
Bartlomiej Siekadaa6e412006-12-20 00:27:32 +01001640idmr_config : unconfig
1641 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 idmr
1642
Wolfgang Denk4176c792006-06-10 19:27:47 +02001643M5271EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001644 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb
Wolfgang Denk4176c792006-06-10 19:27:47 +02001645
wdenk4e5ca3e2003-12-08 01:34:36 +00001646M5272C3_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001647 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3
wdenk4e5ca3e2003-12-08 01:34:36 +00001648
1649M5282EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001650 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb
wdenk4e5ca3e2003-12-08 01:34:36 +00001651
stroesec419d1d2004-12-16 18:44:40 +00001652TASREG_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001653 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd
stroesec419d1d2004-12-16 18:44:40 +00001654
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001655r5200_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001656 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 r5200
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001657
TsiChung Liew8e585f02007-06-18 13:50:13 -05001658M5329AFEE_config \
1659M5329BFEE_config : unconfig
1660 @case "$@" in \
1661 M5329AFEE_config) NAND=0;; \
1662 M5329BFEE_config) NAND=16;; \
1663 esac; \
1664 >include/config.h ; \
1665 if [ "$${NAND}" != "0" ] ; then \
1666 echo "#define NANDFLASH_SIZE $${NAND}" >> include/config.h ; \
1667 fi
1668 @$(MKCONFIG) -a M5329EVB m68k mcf532x m5329evb freescale
1669
wdenk7ebf7442002-11-02 23:17:16 +00001670#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -05001671## MPC83xx Systems
1672#########################################################################
1673
Kim Phillips5c5d3242007-04-25 12:34:38 -05001674MPC8313ERDB_33_config \
1675MPC8313ERDB_66_config: unconfig
1676 @echo "" >include/config.h ; \
1677 if [ "$(findstring _33_,$@)" ] ; then \
1678 echo -n "...33M ..." ; \
1679 echo "#define CFG_33MHZ" >>include/config.h ; \
1680 fi ; \
1681 if [ "$(findstring _66_,$@)" ] ; then \
1682 echo -n "...66M..." ; \
1683 echo "#define CFG_66MHZ" >>include/config.h ; \
1684 fi ;
1685 @$(MKCONFIG) -a MPC8313ERDB ppc mpc83xx mpc8313erdb
1686
Kim Phillips4decd842007-01-24 17:18:37 -06001687MPC832XEMDS_config \
1688MPC832XEMDS_HOST_33_config \
1689MPC832XEMDS_HOST_66_config \
1690MPC832XEMDS_SLAVE_config: unconfig
1691 @echo "" >include/config.h ; \
1692 if [ "$(findstring _HOST_,$@)" ] ; then \
1693 echo -n "... PCI HOST " ; \
1694 echo "#define CONFIG_PCI" >>include/config.h ; \
1695 fi ; \
1696 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1697 echo "...PCI SLAVE 66M" ; \
1698 echo "#define CONFIG_PCI" >>include/config.h ; \
1699 echo "#define CONFIG_PCISLAVE" >>include/config.h ; \
1700 fi ; \
1701 if [ "$(findstring _33_,$@)" ] ; then \
1702 echo -n "...33M ..." ; \
1703 echo "#define PCI_33M" >>include/config.h ; \
1704 fi ; \
1705 if [ "$(findstring _66_,$@)" ] ; then \
1706 echo -n "...66M..." ; \
1707 echo "#define PCI_66M" >>include/config.h ; \
1708 fi ;
1709 @$(MKCONFIG) -a MPC832XEMDS ppc mpc83xx mpc832xemds
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001710
Marian Balakowicz991425f2006-03-14 16:24:38 +01001711MPC8349EMDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001712 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349emds
Marian Balakowicz991425f2006-03-14 16:24:38 +01001713
Timur Tabi7a78f142007-01-31 15:54:29 -06001714MPC8349ITX_config \
1715MPC8349ITX_LOWBOOT_config \
1716MPC8349ITXGP_config: unconfig
1717 @mkdir -p $(obj)include
1718 @mkdir -p $(obj)board/mpc8349itx
1719 @echo "#define CONFIG_$(subst _LOWBOOT,,$(@:_config=))" >> $(obj)include/config.h
1720 @if [ "$(findstring GP,$@)" ] ; then \
1721 echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \
1722 fi
1723 @if [ "$(findstring LOWBOOT,$@)" ] ; then \
1724 echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \
1725 fi
1726 @$(MKCONFIG) -a -n $(@:_config=) MPC8349ITX ppc mpc83xx mpc8349itx
Kim Phillips4decd842007-01-24 17:18:37 -06001727
Dave Liu5f820432006-11-03 19:33:44 -06001728MPC8360EMDS_config \
1729MPC8360EMDS_HOST_33_config \
1730MPC8360EMDS_HOST_66_config \
1731MPC8360EMDS_SLAVE_config: unconfig
1732 @echo "" >include/config.h ; \
1733 if [ "$(findstring _HOST_,$@)" ] ; then \
1734 echo -n "... PCI HOST " ; \
1735 echo "#define CONFIG_PCI" >>include/config.h ; \
1736 fi ; \
1737 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1738 echo "...PCI SLAVE 66M" ; \
1739 echo "#define CONFIG_PCI" >>include/config.h ; \
1740 echo "#define CONFIG_PCISLAVE" >>include/config.h ; \
1741 fi ; \
1742 if [ "$(findstring _33_,$@)" ] ; then \
1743 echo -n "...33M ..." ; \
1744 echo "#define PCI_33M" >>include/config.h ; \
1745 fi ; \
1746 if [ "$(findstring _66_,$@)" ] ; then \
1747 echo -n "...66M..." ; \
1748 echo "#define PCI_66M" >>include/config.h ; \
1749 fi ;
1750 @$(MKCONFIG) -a MPC8360EMDS ppc mpc83xx mpc8360emds
1751
Paul Gortmaker91e25762007-01-16 11:38:14 -05001752sbc8349_config: unconfig
1753 @$(MKCONFIG) $(@:_config=) ppc mpc83xx sbc8349
1754
Kim Phillips4decd842007-01-24 17:18:37 -06001755TQM834x_config: unconfig
1756 @$(MKCONFIG) $(@:_config=) ppc mpc83xx tqm834x
1757
Timur Tabi2ad6b512006-10-31 18:44:42 -06001758
Eran Libertyf046ccd2005-07-28 10:08:46 -05001759#########################################################################
wdenk42d1f032003-10-15 23:53:47 +00001760## MPC85xx Systems
1761#########################################################################
1762
wdenk0ac6f8b2004-07-09 23:27:13 +00001763MPC8540ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001764 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8540ads
wdenk42d1f032003-10-15 23:53:47 +00001765
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001766MPC8540EVAL_config \
1767MPC8540EVAL_33_config \
1768MPC8540EVAL_66_config \
1769MPC8540EVAL_33_slave_config \
1770MPC8540EVAL_66_slave_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001771 @mkdir -p $(obj)include
1772 @echo "" >$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001773 if [ "$(findstring _33_,$@)" ] ; then \
1774 echo -n "... 33 MHz PCI" ; \
1775 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001776 echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001777 echo -n "... 66 MHz PCI" ; \
1778 fi ; \
1779 if [ "$(findstring _slave_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001780 echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001781 echo " slave" ; \
1782 else \
1783 echo " host" ; \
1784 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001785 @$(MKCONFIG) -a MPC8540EVAL ppc mpc85xx mpc8540eval
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001786
wdenk0ac6f8b2004-07-09 23:27:13 +00001787MPC8560ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001788 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8560ads
wdenk42d1f032003-10-15 23:53:47 +00001789
wdenk03f5c552004-10-10 21:21:55 +00001790MPC8541CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001791 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8541cds cds
wdenk03f5c552004-10-10 21:21:55 +00001792
Andy Fleming81f481c2007-04-23 02:24:28 -05001793MPC8544DS_config: unconfig
1794 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8544ds freescale
1795
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001796MPC8548CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001797 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8548cds cds
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001798
wdenk03f5c552004-10-10 21:21:55 +00001799MPC8555CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001800 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8555cds cds
wdenk7abf0c52004-04-18 21:45:42 +00001801
Andy Fleming67431052007-04-23 02:54:25 -05001802MPC8568MDS_config: unconfig
1803 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8568mds
1804
wdenk384cc682005-04-03 22:35:21 +00001805PM854_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001806 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm854
wdenk384cc682005-04-03 22:35:21 +00001807
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001808PM856_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001809 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm856
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001810
wdenkc15f3122004-10-10 22:44:24 +00001811sbc8540_config \
1812sbc8540_33_config \
1813sbc8540_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001814 @mkdir -p $(obj)include
wdenkc15f3122004-10-10 22:44:24 +00001815 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001816 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001817 echo "... 66 MHz PCI" ; \
1818 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001819 >$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001820 echo "... 33 MHz PCI" ; \
1821 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001822 @$(MKCONFIG) -a SBC8540 ppc mpc85xx sbc8560
wdenkc15f3122004-10-10 22:44:24 +00001823
wdenk466b7412004-07-10 22:35:59 +00001824sbc8560_config \
1825sbc8560_33_config \
1826sbc8560_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001827 @mkdir -p $(obj)include
wdenk8b07a112004-07-10 21:45:47 +00001828 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001829 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001830 echo "... 66 MHz PCI" ; \
1831 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001832 >$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001833 echo "... 33 MHz PCI" ; \
1834 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001835 @$(MKCONFIG) -a sbc8560 ppc mpc85xx sbc8560
wdenk8b07a112004-07-10 21:45:47 +00001836
wdenk03f5c552004-10-10 21:21:55 +00001837stxgp3_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001838 @$(MKCONFIG) $(@:_config=) ppc mpc85xx stxgp3
wdenk03f5c552004-10-10 21:21:55 +00001839
Wolfgang Denkee152982007-05-31 17:20:09 +02001840stxssa_config \
1841stxssa_4M_config: unconfig
1842 @mkdir -p $(obj)include
1843 @if [ "$(findstring _4M_,$@)" ] ; then \
1844 echo "#define CONFIG_STXSSA_4M" >>$(obj)include/config.h ; \
1845 echo "... with 4 MiB flash memory" ; \
1846 else \
1847 >$(obj)include/config.h ; \
1848 fi
1849 @$(MKCONFIG) -a stxssa ppc mpc85xx stxssa
Dan Malek35171dc2007-01-05 09:15:34 +01001850
Stefan Roesed96f41e2005-11-30 13:06:40 +01001851TQM8540_config \
1852TQM8541_config \
1853TQM8555_config \
1854TQM8560_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001855 @mkdir -p $(obj)include
Wolfgang Denka889bd22005-12-06 15:02:31 +01001856 @CTYPE=$(subst TQM,,$(@:_config=)); \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001857 >$(obj)include/config.h ; \
Stefan Roesed96f41e2005-11-30 13:06:40 +01001858 echo "... TQM"$${CTYPE}; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001859 echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \
1860 echo "#define CONFIG_TQM$${CTYPE}">>$(obj)include/config.h; \
1861 echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \
1862 echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>$(obj)include/config.h; \
1863 echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>$(obj)include/config.h
1864 @$(MKCONFIG) -a TQM85xx ppc mpc85xx tqm85xx
wdenkf5c5ef42005-04-05 16:26:47 +00001865
wdenk42d1f032003-10-15 23:53:47 +00001866#########################################################################
Jon Loeligerdebb7352006-04-26 17:58:56 -05001867## MPC86xx Systems
1868#########################################################################
1869
1870MPC8641HPCN_config: unconfig
1871 @./mkconfig $(@:_config=) ppc mpc86xx mpc8641hpcn
1872
1873
1874#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001875## 74xx/7xx Systems
1876#########################################################################
1877
wdenkc7de8292002-11-19 11:04:11 +00001878AmigaOneG3SE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001879 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
wdenkc7de8292002-11-19 11:04:11 +00001880
wdenk15647dc2003-10-09 19:00:25 +00001881BAB7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001882 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx bab7xx eltec
wdenk15647dc2003-10-09 19:00:25 +00001883
stroesec419d1d2004-12-16 18:44:40 +00001884CPCI750_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001885 @$(MKCONFIG) CPCI750 ppc 74xx_7xx cpci750 esd
stroesec419d1d2004-12-16 18:44:40 +00001886
wdenk3a473b22004-01-03 00:43:19 +00001887DB64360_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001888 @$(MKCONFIG) DB64360 ppc 74xx_7xx db64360 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001889
1890DB64460_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001891 @$(MKCONFIG) DB64460 ppc 74xx_7xx db64460 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001892
wdenk15647dc2003-10-09 19:00:25 +00001893ELPPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001894 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx elppc eltec
wdenk15647dc2003-10-09 19:00:25 +00001895
wdenk7ebf7442002-11-02 23:17:16 +00001896EVB64260_config \
1897EVB64260_750CX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001898 @$(MKCONFIG) EVB64260 ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001899
roy zang4c527832006-11-02 18:49:51 +08001900mpc7448hpc2_config: unconfig
roy zangee311212006-12-01 11:47:36 +08001901 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx mpc7448hpc2
roy zang4c527832006-11-02 18:49:51 +08001902
wdenk15647dc2003-10-09 19:00:25 +00001903P3G4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001904 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001905
Stefan Roese1eac2a72006-11-29 15:42:37 +01001906p3m750_config \
1907p3m7448_config: unconfig
1908 @mkdir -p $(obj)include
1909 @if [ "$(findstring 750_,$@)" ] ; then \
1910 echo "#define CONFIG_P3M750" >>$(obj)include/config.h ; \
1911 else \
1912 echo "#define CONFIG_P3M7448" >>$(obj)include/config.h ; \
1913 fi
1914 @$(MKCONFIG) -a p3mx ppc 74xx_7xx p3mx prodrive
1915
wdenk7ebf7442002-11-02 23:17:16 +00001916PCIPPC2_config \
1917PCIPPC6_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001918 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx pcippc2
wdenk7ebf7442002-11-02 23:17:16 +00001919
wdenk15647dc2003-10-09 19:00:25 +00001920ZUMA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001921 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk12f34242003-09-02 22:48:03 +00001922
Heiko Schocherf5e0d032006-06-19 11:02:41 +02001923ppmc7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001924 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx ppmc7xx
Wolfgang Denkb87dfd22006-07-19 13:50:38 +02001925
wdenk7ebf7442002-11-02 23:17:16 +00001926#========================================================================
1927# ARM
1928#========================================================================
1929#########################################################################
1930## StrongARM Systems
1931#########################################################################
1932
wdenkea66bc82004-04-15 23:23:39 +00001933assabet_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001934 @$(MKCONFIG) $(@:_config=) arm sa1100 assabet
wdenkea66bc82004-04-15 23:23:39 +00001935
wdenk7ebf7442002-11-02 23:17:16 +00001936dnp1110_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001937 @$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110
wdenk7ebf7442002-11-02 23:17:16 +00001938
wdenk855a4962004-03-14 18:23:55 +00001939gcplus_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001940 @$(MKCONFIG) $(@:_config=) arm sa1100 gcplus
wdenk855a4962004-03-14 18:23:55 +00001941
1942lart_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001943 @$(MKCONFIG) $(@:_config=) arm sa1100 lart
wdenk855a4962004-03-14 18:23:55 +00001944
wdenk7ebf7442002-11-02 23:17:16 +00001945shannon_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001946 @$(MKCONFIG) $(@:_config=) arm sa1100 shannon
wdenk7ebf7442002-11-02 23:17:16 +00001947
1948#########################################################################
wdenk2e5983d2003-07-15 20:04:06 +00001949## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00001950#########################################################################
1951
wdenkb0639ca2003-09-17 22:48:07 +00001952xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk43d96162003-03-06 00:02:04 +00001953
wdenk3ff02c22004-06-09 15:25:53 +00001954xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
wdenk63e73c92004-02-23 22:22:28 +00001955
wdenka56bd922004-06-06 23:13:55 +00001956xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1957
wdenka85f9f22005-04-06 13:52:31 +00001958at91rm9200dk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001959 @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001960
1961cmc_pu2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001962 @$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001963
Wolfgang Denk645da512005-10-05 02:00:09 +02001964csb637_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001965 @$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200
Wolfgang Denk645da512005-10-05 02:00:09 +02001966
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001967mp2usb_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001968 @$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001969
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001970
Wolfgang Denk74f43042005-09-25 01:48:28 +02001971########################################################################
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001972## ARM Integrator boards - see doc/README-integrator for more info.
1973integratorap_config \
1974ap_config \
1975ap966_config \
1976ap922_config \
1977ap922_XA10_config \
1978ap7_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01001979ap720t_config \
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001980ap920t_config \
1981ap926ejs_config \
1982ap946es_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001983 @board/integratorap/split_by_variant.sh $@
wdenk3d3befa2004-03-14 15:06:13 +00001984
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001985integratorcp_config \
1986cp_config \
1987cp920t_config \
1988cp926ejs_config \
1989cp946es_config \
1990cp1136_config \
1991cp966_config \
1992cp922_config \
1993cp922_XA10_config \
1994cp1026_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001995 @board/integratorcp/split_by_variant.sh $@
wdenk25d67122004-12-10 11:40:40 +00001996
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001997kb9202_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001998 @$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001999
wdenkf832d8a2004-06-10 21:55:33 +00002000lpd7a400_config \
2001lpd7a404_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002002 @$(MKCONFIG) $(@:_config=) arm lh7a40x lpd7a40x
wdenk3d3befa2004-03-14 15:06:13 +00002003
wdenk281e00a2004-08-01 22:48:16 +00002004mx1ads_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002005 @$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002006
2007mx1fs2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002008 @$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002009
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002010netstar_32_config \
2011netstar_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002012 @mkdir -p $(obj)include
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002013 @if [ "$(findstring _32_,$@)" ] ; then \
2014 echo "... 32MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002015 echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002016 else \
2017 echo "... 64MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002018 echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002019 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02002020 @$(MKCONFIG) -a netstar arm arm925t netstar
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002021
wdenk2e5983d2003-07-15 20:04:06 +00002022omap1510inn_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002023 @$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn
wdenk2e5983d2003-07-15 20:04:06 +00002024
wdenk1eaeb582004-06-08 00:22:43 +00002025omap5912osk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002026 @$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk NULL omap
wdenk1eaeb582004-06-08 00:22:43 +00002027
wdenk63e73c92004-02-23 22:22:28 +00002028omap1610inn_config \
2029omap1610inn_cs0boot_config \
2030omap1610inn_cs3boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00002031omap1610inn_cs_autoboot_config \
wdenk63e73c92004-02-23 22:22:28 +00002032omap1610h2_config \
2033omap1610h2_cs0boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00002034omap1610h2_cs3boot_config \
2035omap1610h2_cs_autoboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002036 @mkdir -p $(obj)include
wdenk63e73c92004-02-23 22:22:28 +00002037 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002038 echo "#define CONFIG_CS0_BOOT" >> .$(obj)/include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00002039 echo "... configured for CS0 boot"; \
wdenk3ff02c22004-06-09 15:25:53 +00002040 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002041 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)./include/config.h ; \
wdenk3ff02c22004-06-09 15:25:53 +00002042 echo "... configured for CS_AUTO boot"; \
wdenk63e73c92004-02-23 22:22:28 +00002043 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002044 echo "#define CONFIG_CS3_BOOT" >> $(obj)./include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00002045 echo "... configured for CS3 boot"; \
wdenk63e73c92004-02-23 22:22:28 +00002046 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02002047 @$(MKCONFIG) -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap
wdenk6f213472003-08-29 22:00:43 +00002048
wdenka56bd922004-06-06 23:13:55 +00002049omap730p2_config \
2050omap730p2_cs0boot_config \
2051omap730p2_cs3boot_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002052 @mkdir -p $(obj)include
wdenka56bd922004-06-06 23:13:55 +00002053 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002054 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00002055 echo "... configured for CS0 boot"; \
2056 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002057 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00002058 echo "... configured for CS3 boot"; \
2059 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02002060 @$(MKCONFIG) -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap
wdenka56bd922004-06-06 23:13:55 +00002061
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02002062sbc2410x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002063 @$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02002064
wdenk281e00a2004-08-01 22:48:16 +00002065scb9328_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002066 @$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002067
wdenk7ebf7442002-11-02 23:17:16 +00002068smdk2400_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002069 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002070
2071smdk2410_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002072 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002073
wdenk2d24a3a2004-06-09 21:50:45 +00002074SX1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002075 @$(MKCONFIG) $(@:_config=) arm arm925t sx1
wdenk2d24a3a2004-06-09 21:50:45 +00002076
wdenkb2001f22003-12-20 22:45:10 +00002077# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk43d96162003-03-06 00:02:04 +00002078trab_config \
wdenkb0639ca2003-09-17 22:48:07 +00002079trab_bigram_config \
2080trab_bigflash_config \
wdenkf54ebdf2003-09-17 15:10:32 +00002081trab_old_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002082 @mkdir -p $(obj)include
2083 @mkdir -p $(obj)board/trab
2084 @ >$(obj)include/config.h
wdenkb0639ca2003-09-17 22:48:07 +00002085 @[ -z "$(findstring _bigram,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002086 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2087 echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002088 echo "... with 8 MB Flash, 32 MB RAM" ; \
2089 }
2090 @[ -z "$(findstring _bigflash,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002091 { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \
2092 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002093 echo "... with 16 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002094 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenkb0639ca2003-09-17 22:48:07 +00002095 }
wdenkf54ebdf2003-09-17 15:10:32 +00002096 @[ -z "$(findstring _old,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002097 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2098 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +00002099 echo "... with 8 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002100 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenk43d96162003-03-06 00:02:04 +00002101 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002102 @$(MKCONFIG) -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002103
wdenk1cb8e982003-03-06 21:55:29 +00002104VCMA9_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002105 @$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0
wdenk1cb8e982003-03-06 21:55:29 +00002106
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002107#========================================================================
2108# ARM supplied Versatile development boards
2109#========================================================================
2110versatile_config \
2111versatileab_config \
2112versatilepb_config : unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02002113 @board/versatile/split_by_variant.sh $@
wdenk074cff02004-02-24 00:16:43 +00002114
wdenk3c2b3d42005-04-05 23:32:21 +00002115voiceblue_smallflash_config \
2116voiceblue_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002117 @mkdir -p $(obj)include
2118 @mkdir -p $(obj)board/voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002119 @if [ "$(findstring _smallflash_,$@)" ] ; then \
2120 echo "... boot from lower flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002121 echo "#define VOICEBLUE_SMALL_FLASH" >>$(obj)include/config.h ; \
2122 echo "VOICEBLUE_SMALL_FLASH=y" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00002123 else \
2124 echo "... boot from upper flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002125 >$(obj)include/config.h ; \
2126 echo "VOICEBLUE_SMALL_FLASH=n" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00002127 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02002128 @$(MKCONFIG) -a voiceblue arm arm925t voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002129
wdenk16b013e2005-05-19 22:46:33 +00002130cm4008_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002131 @$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002132
2133cm41xx_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002134 @$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002135
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002136gth2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002137 @mkdir -p $(obj)include
2138 @ >$(obj)include/config.h
2139 @echo "#define CONFIG_GTH2 1" >>$(obj)include/config.h
2140 @$(MKCONFIG) -a gth2 mips mips gth2
Wolfgang Denk0c32d962006-06-16 17:32:31 +02002141
wdenk074cff02004-02-24 00:16:43 +00002142#########################################################################
2143## S3C44B0 Systems
2144#########################################################################
2145
2146B2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002147 @$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave
wdenk074cff02004-02-24 00:16:43 +00002148
wdenk7ebf7442002-11-02 23:17:16 +00002149#########################################################################
2150## ARM720T Systems
2151#########################################################################
2152
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002153armadillo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002154 @$(MKCONFIG) $(@:_config=) arm arm720t armadillo
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002155
wdenk7ebf7442002-11-02 23:17:16 +00002156ep7312_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002157 @$(MKCONFIG) $(@:_config=) arm arm720t ep7312
wdenk7ebf7442002-11-02 23:17:16 +00002158
wdenk2d24a3a2004-06-09 21:50:45 +00002159impa7_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002160 @$(MKCONFIG) $(@:_config=) arm arm720t impa7
wdenk2d24a3a2004-06-09 21:50:45 +00002161
wdenk2d1a5372004-02-23 19:30:57 +00002162modnet50_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002163 @$(MKCONFIG) $(@:_config=) arm arm720t modnet50
wdenk2d1a5372004-02-23 19:30:57 +00002164
wdenk39539882004-07-01 16:30:44 +00002165evb4510_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002166 @$(MKCONFIG) $(@:_config=) arm arm720t evb4510
wdenk39539882004-07-01 16:30:44 +00002167
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002168lpc2292sodimm_config: unconfig
Peter Pearseb0d8f5b2007-05-09 11:37:56 +01002169 @$(MKCONFIG) $(@:_config=) arm arm720t lpc2292sodimm NULL lpc2292
2170
2171SMN42_config : unconfig
2172 @$(MKCONFIG) $(@:_config=) arm arm720t SMN42 siemens lpc2292
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002173
wdenk7ebf7442002-11-02 23:17:16 +00002174#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002175## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00002176#########################################################################
2177
wdenk20787e22005-04-06 00:04:16 +00002178adsvix_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002179 @$(MKCONFIG) $(@:_config=) arm pxa adsvix
wdenk20787e22005-04-06 00:04:16 +00002180
wdenkfabd46a2004-07-10 23:11:10 +00002181cerf250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002182 @$(MKCONFIG) $(@:_config=) arm pxa cerf250
wdenkfabd46a2004-07-10 23:11:10 +00002183
wdenk7ebf7442002-11-02 23:17:16 +00002184cradle_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002185 @$(MKCONFIG) $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00002186
2187csb226_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002188 @$(MKCONFIG) $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00002189
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002190delta_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002191 @$(MKCONFIG) $(@:_config=) arm pxa delta
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002192
wdenk43d96162003-03-06 00:02:04 +00002193innokom_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002194 @$(MKCONFIG) $(@:_config=) arm pxa innokom
wdenk43d96162003-03-06 00:02:04 +00002195
wdenk2d5b5612003-10-14 19:43:55 +00002196ixdp425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002197 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
wdenk2d5b5612003-10-14 19:43:55 +00002198
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002199ixdpg425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002200 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002201
wdenk43d96162003-03-06 00:02:04 +00002202lubbock_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002203 @$(MKCONFIG) $(@:_config=) arm pxa lubbock
wdenk43d96162003-03-06 00:02:04 +00002204
Heiko Schocher5720df72006-05-02 07:51:46 +02002205pleb2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002206 @$(MKCONFIG) $(@:_config=) arm pxa pleb2
Heiko Schocher5720df72006-05-02 07:51:46 +02002207
wdenk52f52c12003-06-19 23:04:19 +00002208logodl_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002209 @$(MKCONFIG) $(@:_config=) arm pxa logodl
wdenk52f52c12003-06-19 23:04:19 +00002210
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002211pdnb3_config \
2212scpu_config: unconfig
2213 @if [ "$(findstring scpu_,$@)" ] ; then \
2214 echo "#define CONFIG_SCPU" >>include/config.h ; \
2215 echo "... on SCPU board variant" ; \
2216 else \
2217 >include/config.h ; \
2218 fi
2219 @$(MKCONFIG) -a pdnb3 arm ixp pdnb3 prodrive
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002220
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002221pxa255_idp_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002222 @$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002223
wdenk3e386912003-04-05 00:53:31 +00002224wepep250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002225 @$(MKCONFIG) $(@:_config=) arm pxa wepep250
wdenk3e386912003-04-05 00:53:31 +00002226
wdenk4ec3a7f2004-09-28 16:44:41 +00002227xaeniax_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002228 @$(MKCONFIG) $(@:_config=) arm pxa xaeniax
wdenk4ec3a7f2004-09-28 16:44:41 +00002229
wdenkefa329c2004-03-23 20:18:25 +00002230xm250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002231 @$(MKCONFIG) $(@:_config=) arm pxa xm250
wdenkefa329c2004-03-23 20:18:25 +00002232
wdenkca0e7742004-06-09 15:37:23 +00002233xsengine_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002234 @$(MKCONFIG) $(@:_config=) arm pxa xsengine
wdenkca0e7742004-06-09 15:37:23 +00002235
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002236zylonite_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002237 @$(MKCONFIG) $(@:_config=) arm pxa zylonite
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002238
wdenk8ed96042005-01-09 23:16:25 +00002239#########################################################################
2240## ARM1136 Systems
2241#########################################################################
2242omap2420h4_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002243 @$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4
wdenk8ed96042005-01-09 23:16:25 +00002244
wdenk2262cfe2002-11-18 00:14:45 +00002245#========================================================================
2246# i386
2247#========================================================================
2248#########################################################################
wdenk1cb8e982003-03-06 21:55:29 +00002249## AMD SC520 CDP
wdenk2262cfe2002-11-18 00:14:45 +00002250#########################################################################
2251sc520_cdp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002252 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp
wdenk2262cfe2002-11-18 00:14:45 +00002253
wdenk7a8e9bed2003-05-31 18:35:21 +00002254sc520_spunk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002255 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002256
2257sc520_spunk_rel_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002258 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002259
wdenk43d96162003-03-06 00:02:04 +00002260#========================================================================
2261# MIPS
2262#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00002263#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002264## MIPS32 4Kc
2265#########################################################################
2266
wdenke0ac62d2003-08-17 18:55:18 +00002267xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
2268
2269incaip_100MHz_config \
2270incaip_133MHz_config \
2271incaip_150MHz_config \
2272incaip_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002273 @mkdir -p $(obj)include
2274 @ >$(obj)include/config.h
wdenke0ac62d2003-08-17 18:55:18 +00002275 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002276 { echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002277 echo "... with 100MHz system clock" ; \
2278 }
2279 @[ -z "$(findstring _133MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002280 { echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002281 echo "... with 133MHz system clock" ; \
2282 }
2283 @[ -z "$(findstring _150MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002284 { echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002285 echo "... with 150MHz system clock" ; \
2286 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002287 @$(MKCONFIG) -a $(call xtract_incaip,$@) mips mips incaip
wdenke0ac62d2003-08-17 18:55:18 +00002288
wdenkf4863a72004-02-07 01:27:10 +00002289tb0229_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002290 @$(MKCONFIG) $(@:_config=) mips mips tb0229
wdenkf4863a72004-02-07 01:27:10 +00002291
wdenke0ac62d2003-08-17 18:55:18 +00002292#########################################################################
wdenk69459792004-05-29 16:53:29 +00002293## MIPS32 AU1X00
2294#########################################################################
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002295dbau1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002296 @mkdir -p $(obj)include
2297 @ >$(obj)include/config.h
2298 @echo "#define CONFIG_DBAU1000 1" >>$(obj)include/config.h
2299 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002300
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002301dbau1100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002302 @mkdir -p $(obj)include
2303 @ >$(obj)include/config.h
2304 @echo "#define CONFIG_DBAU1100 1" >>$(obj)include/config.h
2305 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002306
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002307dbau1500_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002308 @mkdir -p $(obj)include
2309 @ >$(obj)include/config.h
2310 @echo "#define CONFIG_DBAU1500 1" >>$(obj)include/config.h
2311 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002312
wdenkff36fd82005-01-09 22:28:56 +00002313dbau1550_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002314 @mkdir -p $(obj)include
2315 @ >$(obj)include/config.h
2316 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2317 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002318
2319dbau1550_el_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002320 @mkdir -p $(obj)include
2321 @ >$(obj)include/config.h
2322 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2323 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002324
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002325pb1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002326 @mkdir -p $(obj)include
2327 @ >$(obj)include/config.h
2328 @echo "#define CONFIG_PB1000 1" >>$(obj)include/config.h
2329 @$(MKCONFIG) -a pb1x00 mips mips pb1x00
Wolfgang Denk265817c2005-09-25 00:53:22 +02002330
wdenk69459792004-05-29 16:53:29 +00002331#########################################################################
wdenke0ac62d2003-08-17 18:55:18 +00002332## MIPS64 5Kc
2333#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002334
wdenk3e386912003-04-05 00:53:31 +00002335purple_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002336 @$(MKCONFIG) $(@:_config=) mips mips purple
wdenk43d96162003-03-06 00:02:04 +00002337
wdenk4a551702003-10-08 23:26:14 +00002338#========================================================================
2339# Nios
2340#========================================================================
2341#########################################################################
2342## Nios32
2343#########################################################################
2344
wdenkc935d3b2004-01-03 19:43:48 +00002345DK1C20_safe_32_config \
2346DK1C20_standard_32_config \
wdenk4a551702003-10-08 23:26:14 +00002347DK1C20_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002348 @mkdir -p $(obj)include
2349 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002350 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002351 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002352 echo "... NIOS 'safe_32' configuration" ; \
2353 }
2354 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002355 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002356 echo "... NIOS 'standard_32' configuration" ; \
2357 }
2358 @[ -z "$(findstring DK1C20_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002359 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002360 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2361 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002362 @$(MKCONFIG) -a DK1C20 nios nios dk1c20 altera
wdenkc935d3b2004-01-03 19:43:48 +00002363
2364DK1S10_safe_32_config \
2365DK1S10_standard_32_config \
wdenkec4c5442004-02-09 23:12:24 +00002366DK1S10_mtx_ldk_20_config \
wdenkc935d3b2004-01-03 19:43:48 +00002367DK1S10_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002368 @mkdir -p $(obj)include
2369 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002370 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002371 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002372 echo "... NIOS 'safe_32' configuration" ; \
2373 }
2374 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002375 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002376 echo "... NIOS 'standard_32' configuration" ; \
2377 }
wdenkec4c5442004-02-09 23:12:24 +00002378 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002379 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>$(obj)include/config.h ; \
wdenkec4c5442004-02-09 23:12:24 +00002380 echo "... NIOS 'mtx_ldk_20' configuration" ; \
2381 }
wdenkc935d3b2004-01-03 19:43:48 +00002382 @[ -z "$(findstring DK1S10_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002383 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002384 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2385 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002386 @$(MKCONFIG) -a DK1S10 nios nios dk1s10 altera
wdenk4a551702003-10-08 23:26:14 +00002387
wdenkaaf224a2004-03-14 15:20:55 +00002388ADNPESC1_DNPEVA2_base_32_config \
2389ADNPESC1_base_32_config \
2390ADNPESC1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002391 @mkdir -p $(obj)include
2392 @ >$(obj)include/config.h
wdenkaaf224a2004-03-14 15:20:55 +00002393 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002394 { echo "#define CONFIG_DNPEVA2 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002395 echo "... DNP/EVA2 configuration" ; \
2396 }
wdenkaaf224a2004-03-14 15:20:55 +00002397 @[ -z "$(findstring _base_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002398 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002399 echo "... NIOS 'base_32' configuration" ; \
2400 }
wdenkaaf224a2004-03-14 15:20:55 +00002401 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002402 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002403 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
2404 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002405 @$(MKCONFIG) -a ADNPESC1 nios nios adnpesc1 ssv
wdenkaaf224a2004-03-14 15:20:55 +00002406
wdenk5c952cf2004-10-10 21:27:30 +00002407#########################################################################
2408## Nios-II
2409#########################################################################
2410
Scott McNutt9cc83372006-06-08 13:37:39 -04002411EP1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002412 @$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002413
2414EP1S10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002415 @$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002416
2417EP1S40_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002418 @$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002419
wdenk5c952cf2004-10-10 21:27:30 +00002420PK1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002421 @$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent
wdenk5c952cf2004-10-10 21:27:30 +00002422
2423PCI5441_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002424 @$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent
wdenk4a551702003-10-08 23:26:14 +00002425
wdenk507bbe32004-04-18 21:13:41 +00002426#========================================================================
2427# MicroBlaze
2428#========================================================================
2429#########################################################################
2430## Microblaze
2431#########################################################################
2432suzaku_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002433 @mkdir -p $(obj)include
2434 @ >$(obj)include/config.h
2435 @echo "#define CONFIG_SUZAKU 1" >> $(obj)include/config.h
2436 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
wdenk507bbe32004-04-18 21:13:41 +00002437
Michal Simekcfc67112007-03-11 13:48:24 +01002438ml401_config: unconfig
2439 @ >include/config.h
2440 @echo "#define CONFIG_ML401 1" >> include/config.h
2441 @./mkconfig -a $(@:_config=) microblaze microblaze ml401 xilinx
2442
Michal Simek17980492007-03-26 01:39:07 +02002443xupv2p_config: unconfig
2444 @ >include/config.h
2445 @echo "#define CONFIG_XUPV2P 1" >> include/config.h
2446 @./mkconfig -a $(@:_config=) microblaze microblaze xupv2p xilinx
2447
wdenk3e386912003-04-05 00:53:31 +00002448#########################################################################
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002449## Blackfin
2450#########################################################################
Aubrey.Lief26a082007-03-09 13:40:56 +08002451bf533-ezkit_config: unconfig
2452 @$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-ezkit
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002453
Aubrey.Lief26a082007-03-09 13:40:56 +08002454bf533-stamp_config: unconfig
2455 @$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-stamp
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002456
Aubrey Li26bf7de2007-03-19 01:24:52 +08002457bf537-stamp_config: unconfig
2458 @$(MKCONFIG) $(@:_config=) blackfin bf537 bf537-stamp
2459
Aubrey Li65458982007-03-20 18:16:24 +08002460bf561-ezkit_config: unconfig
2461 @$(MKCONFIG) $(@:_config=) blackfin bf561 bf561-ezkit
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002462
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02002463#========================================================================
2464# AVR32
2465#========================================================================
2466#########################################################################
2467## AT32AP7xxx
2468#########################################################################
2469
2470atstk1002_config : unconfig
2471 @./mkconfig $(@:_config=) avr32 at32ap atstk1000 atmel at32ap7000
2472
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002473#########################################################################
2474#########################################################################
wdenk3e386912003-04-05 00:53:31 +00002475#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00002476
2477clean:
Marian Balakowiczf9328632006-09-01 19:49:50 +02002478 find $(OBJTREE) -type f \
wdenk7ebf7442002-11-02 23:17:16 +00002479 \( -name 'core' -o -name '*.bak' -o -name '*~' \
2480 -o -name '*.o' -o -name '*.a' \) -print \
2481 | xargs rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002482 rm -f $(obj)examples/hello_world $(obj)examples/timer \
2483 $(obj)examples/eepro100_eeprom $(obj)examples/sched \
2484 $(obj)examples/mem_to_mem_idma2intr $(obj)examples/82559_eeprom \
Wolfgang Denkd214fbb2006-09-13 10:29:32 +02002485 $(obj)examples/smc91111_eeprom $(obj)examples/interrupt \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002486 $(obj)examples/test_burst
2487 rm -f $(obj)tools/img2srec $(obj)tools/mkimage $(obj)tools/envcrc \
Heiko Schocher566a4942007-06-22 19:11:54 +02002488 $(obj)tools/gen_eth_addr $(obj)tools/ubsha1
Marian Balakowiczf9328632006-09-01 19:49:50 +02002489 rm -f $(obj)tools/mpc86x_clk $(obj)tools/ncb
2490 rm -f $(obj)tools/easylogo/easylogo $(obj)tools/bmp_logo
2491 rm -f $(obj)tools/gdb/astest $(obj)tools/gdb/gdbcont $(obj)tools/gdb/gdbsend
2492 rm -f $(obj)tools/env/fw_printenv $(obj)tools/env/fw_setenv
2493 rm -f $(obj)board/cray/L1/bootscript.c $(obj)board/cray/L1/bootscript.image
2494 rm -f $(obj)board/netstar/eeprom $(obj)board/netstar/crcek $(obj)board/netstar/crcit
2495 rm -f $(obj)board/netstar/*.srec $(obj)board/netstar/*.bin
2496 rm -f $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom
2497 rm -f $(obj)board/integratorap/u-boot.lds $(obj)board/integratorcp/u-boot.lds
Aubrey Li8440bb12007-03-12 00:25:14 +08002498 rm -f $(obj)board/bf533-ezkit/u-boot.lds $(obj)board/bf533-stamp/u-boot.lds
Aubrey Li65458982007-03-20 18:16:24 +08002499 rm -f $(obj)board/bf537-stamp/u-boot.lds $(obj)board/bf561-ezkit/u-boot.lds
Marian Balakowiczf9328632006-09-01 19:49:50 +02002500 rm -f $(obj)include/bmp_logo.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002501 rm -f $(obj)nand_spl/u-boot-spl $(obj)nand_spl/u-boot-spl.map
wdenk7ebf7442002-11-02 23:17:16 +00002502
2503clobber: clean
Marian Balakowiczf9328632006-09-01 19:49:50 +02002504 find $(OBJTREE) -type f \( -name .depend \
wdenk4c0d4c32004-06-09 17:34:58 +00002505 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
2506 -print0 \
2507 | xargs -0 rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002508 rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS $(obj)include/version_autogenerated.h
2509 rm -fr $(obj)*.*~
2510 rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL)
Heiko Schocher566a4942007-06-22 19:11:54 +02002511 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 +02002512 rm -f $(obj)tools/inca-swap-bytes $(obj)cpu/mpc824x/bedbug_603e.c
2513 rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002514 [ ! -d $(OBJTREE)/nand_spl ] || find $(obj)nand_spl -lname "*" -print | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +00002515
Marian Balakowiczf9328632006-09-01 19:49:50 +02002516ifeq ($(OBJTREE),$(SRCTREE))
wdenk7ebf7442002-11-02 23:17:16 +00002517mrproper \
2518distclean: clobber unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002519else
2520mrproper \
2521distclean: clobber unconfig
2522 rm -rf $(OBJTREE)/*
2523endif
wdenk7ebf7442002-11-02 23:17:16 +00002524
2525backup:
2526 F=`basename $(TOPDIR)` ; cd .. ; \
2527 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
2528
2529#########################################################################