blob: 37cdf20a38d753e84183f7f13cd7bcac24bf66f2 [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)
152CROSS_COMPILE = avr32-
153endif
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
Jon Loeligerdebb7352006-04-26 17:58:56 -0500176ifeq ($(CPU),mpc86xx)
177OBJS += cpu/$(CPU)/resetvec.o
178endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100179ifeq ($(CPU),bf533)
180OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
Aubrey.Lief26a082007-03-09 13:40:56 +0800181OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100182endif
Aubrey Li26bf7de2007-03-19 01:24:52 +0800183ifeq ($(CPU),bf537)
184OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
Aubrey Li65458982007-03-20 18:16:24 +0800185OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
186endif
187ifeq ($(CPU),bf561)
188OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
189OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
Aubrey Li26bf7de2007-03-19 01:24:52 +0800190endif
wdenk7ebf7442002-11-02 23:17:16 +0000191
Marian Balakowiczf9328632006-09-01 19:49:50 +0200192OBJS := $(addprefix $(obj),$(OBJS))
193
wdenk9fd5e312003-12-07 23:55:12 +0000194LIBS = lib_generic/libgeneric.a
195LIBS += board/$(BOARDDIR)/lib$(BOARD).a
wdenk7ebf7442002-11-02 23:17:16 +0000196LIBS += cpu/$(CPU)/lib$(CPU).a
wdenk1d9f4102004-10-09 22:21:29 +0000197ifdef SOC
198LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).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
Dave Liu7737d5c2006-11-03 12:11:15 -0600210ifeq ($(CPU),mpc83xx)
211LIBS += drivers/qe/qe.a
212endif
wdenk7152b1d2003-09-05 23:19:14 +0000213LIBS += drivers/sk98lin/libsk98lin.a
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100214LIBS += post/libpost.a post/drivers/libpostdrivers.a
215LIBS += $(shell if [ -d post/lib_$(ARCH) ]; then echo \
216 "post/lib_$(ARCH)/libpost$(ARCH).a"; fi)
217LIBS += $(shell if [ -d post/cpu/$(CPU) ]; then echo \
218 "post/cpu/$(CPU)/libpost$(CPU).a"; fi)
219LIBS += $(shell if [ -d post/board/$(BOARDDIR) ]; then echo \
220 "post/board/$(BOARDDIR)/libpost$(BOARD).a"; fi)
wdenk7ebf7442002-11-02 23:17:16 +0000221LIBS += common/libcommon.a
Bartlomiej Sieka038ccac2006-02-24 09:37:22 +0100222LIBS += $(BOARDLIBS)
Marian Balakowiczf9328632006-09-01 19:49:50 +0200223
224LIBS := $(addprefix $(obj),$(LIBS))
wdenk9fd5e312003-12-07 23:55:12 +0000225.PHONY : $(LIBS)
wdenka8c7c702003-12-06 19:49:23 +0000226
wdenk4f7cb082003-09-11 23:06:34 +0000227# Add GCC lib
wdenk1a344f22005-02-03 23:00:49 +0000228PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
wdenk3d3befa2004-03-14 15:06:13 +0000229
wdenka8c7c702003-12-06 19:49:23 +0000230# The "tools" are needed early, so put this first
231# Don't include stuff already done in $(LIBS)
232SUBDIRS = tools \
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100233 examples
234
wdenkb028f712003-12-07 21:39:28 +0000235.PHONY : $(SUBDIRS)
wdenka8c7c702003-12-06 19:49:23 +0000236
Stefan Roese887e2ec2006-09-07 11:51:23 +0200237ifeq ($(CONFIG_NAND_U_BOOT),y)
238NAND_SPL = nand_spl
239U_BOOT_NAND = $(obj)u-boot-nand.bin
240endif
241
Marian Balakowiczf9328632006-09-01 19:49:50 +0200242__OBJS := $(subst $(obj),,$(OBJS))
243__LIBS := $(subst $(obj),,$(LIBS))
244
wdenk7ebf7442002-11-02 23:17:16 +0000245#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000246#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000247
Stefan Roese887e2ec2006-09-07 11:51:23 +0200248ALL = $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND)
wdenk7ebf7442002-11-02 23:17:16 +0000249
wdenkbdccc4f2003-08-05 17:43:17 +0000250all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000251
Marian Balakowiczf9328632006-09-01 19:49:50 +0200252$(obj)u-boot.hex: $(obj)u-boot
wdenk6310eb92005-01-09 21:28:15 +0000253 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
254
Marian Balakowiczf9328632006-09-01 19:49:50 +0200255$(obj)u-boot.srec: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000256 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
257
Marian Balakowiczf9328632006-09-01 19:49:50 +0200258$(obj)u-boot.bin: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000259 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
260
Marian Balakowiczf9328632006-09-01 19:49:50 +0200261$(obj)u-boot.img: $(obj)u-boot.bin
wdenkbdccc4f2003-08-05 17:43:17 +0000262 ./tools/mkimage -A $(ARCH) -T firmware -C none \
263 -a $(TEXT_BASE) -e 0 \
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100264 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenkbdccc4f2003-08-05 17:43:17 +0000265 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
266 -d $< $@
267
Marian Balakowiczf9328632006-09-01 19:49:50 +0200268$(obj)u-boot.dis: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000269 $(OBJDUMP) -d $< > $@
270
Marian Balakowiczf9328632006-09-01 19:49:50 +0200271$(obj)u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
wdenk8bde7f72003-06-27 21:31:46 +0000272 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
Marian Balakowiczf9328632006-09-01 19:49:50 +0200273 cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
274 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000275 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000276
Marian Balakowiczf9328632006-09-01 19:49:50 +0200277$(OBJS):
278 $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@))
279
wdenka8c7c702003-12-06 19:49:23 +0000280$(LIBS):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200281 $(MAKE) -C $(dir $(subst $(obj),,$@))
wdenka8c7c702003-12-06 19:49:23 +0000282
283$(SUBDIRS):
wdenkb028f712003-12-07 21:39:28 +0000284 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000285
Stefan Roese887e2ec2006-09-07 11:51:23 +0200286$(NAND_SPL): version
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200287 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
Stefan Roese887e2ec2006-09-07 11:51:23 +0200288
289$(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200290 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 +0200291
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100292version:
293 @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \
294 echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \
295 echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \
296 $(TOPDIR)) >> $(VERSION_FILE); \
297 echo "\"" >> $(VERSION_FILE)
298
dzu8f713fd2003-08-07 14:20:31 +0000299gdbtools:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200300 $(MAKE) -C tools/gdb all || exit 1
301
302updater:
303 $(MAKE) -C tools/updater all || exit 1
304
305env:
306 $(MAKE) -C tools/env all || exit 1
dzu8f713fd2003-08-07 14:20:31 +0000307
wdenk7ebf7442002-11-02 23:17:16 +0000308depend dep:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200309 for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir _depend ; done
wdenk7ebf7442002-11-02 23:17:16 +0000310
Marian Balakowiczf9328632006-09-01 19:49:50 +0200311tags ctags:
312 ctags -w -o $(OBJTREE)/ctags `find $(SUBDIRS) include \
wdenkbda6c8a2004-04-15 21:58:11 +0000313 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
314 fs/cramfs fs/fat fs/fdos fs/jffs2 \
315 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000316 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
317
318etags:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200319 etags -a -o $(OBJTREE)/etags `find $(SUBDIRS) include \
wdenkeedcd072004-09-08 22:03: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
Marian Balakowiczf9328632006-09-01 19:49:50 +0200325$(obj)System.map: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000326 @$(NM) $< | \
327 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200328 sort > $(obj)System.map
wdenk7ebf7442002-11-02 23:17:16 +0000329
330#########################################################################
331else
Marian Balakowiczf9328632006-09-01 19:49:50 +0200332all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
333$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
334$(SUBDIRS) version gdbtools updater env depend \
335dep tags ctags etags $(obj)System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000336 @echo "System not configured - see README" >&2
337 @ exit 1
338endif
339
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200340.PHONY : CHANGELOG
341CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -0400342 git log --no-merges U-Boot-1_1_5.. | \
343 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200344
wdenk7ebf7442002-11-02 23:17:16 +0000345#########################################################################
346
347unconfig:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200348 @rm -f $(obj)include/config.h $(obj)include/config.mk \
349 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp
wdenk7ebf7442002-11-02 23:17:16 +0000350
351#========================================================================
352# PowerPC
353#========================================================================
wdenk0db5bca2003-03-31 17:27:09 +0000354
355#########################################################################
356## MPC5xx Systems
357#########################################################################
358
wdenk5e5f9ed2005-04-13 23:15:10 +0000359canmb_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200360 @$(MKCONFIG) -a canmb ppc mpc5xxx canmb
wdenk5e5f9ed2005-04-13 23:15:10 +0000361
wdenk0db5bca2003-03-31 17:27:09 +0000362cmi_mpc5xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200363 @$(MKCONFIG) $(@:_config=) ppc mpc5xx cmi
wdenk0db5bca2003-03-31 17:27:09 +0000364
wdenkdb01a2e2004-04-15 23:14:49 +0000365PATI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200366 @$(MKCONFIG) $(@:_config=) ppc mpc5xx pati mpl
wdenkb6e4c402004-01-02 16:05:07 +0000367
wdenk7ebf7442002-11-02 23:17:16 +0000368#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000369## MPC5xxx Systems
370#########################################################################
wdenka87589d2005-06-10 10:00:19 +0000371
Wolfgang Denkdafba162005-08-12 00:22:49 +0200372aev_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200373 @$(MKCONFIG) -a aev ppc mpc5xxx tqm5200
Wolfgang Denkdafba162005-08-12 00:22:49 +0200374
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200375BC3450_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200376 @$(MKCONFIG) -a BC3450 ppc mpc5xxx bc3450
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200377
Stefan Roese5e4b3362005-08-22 17:51:53 +0200378cpci5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200379 @$(MKCONFIG) -a cpci5200 ppc mpc5xxx cpci5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200380
wdenka87589d2005-06-10 10:00:19 +0000381hmi1001_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200382 @$(MKCONFIG) hmi1001 ppc mpc5xxx hmi1001
wdenka87589d2005-06-10 10:00:19 +0000383
wdenke35745b2004-04-18 23:32:11 +0000384Lite5200_config \
385Lite5200_LOWBOOT_config \
386Lite5200_LOWBOOT08_config \
387icecube_5200_config \
388icecube_5200_LOWBOOT_config \
389icecube_5200_LOWBOOT08_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100390icecube_5200_DDR_config \
391icecube_5200_DDR_LOWBOOT_config \
wdenke35745b2004-04-18 23:32:11 +0000392icecube_5200_DDR_LOWBOOT08_config \
393icecube_5100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200394 @mkdir -p $(obj)include
395 @mkdir -p $(obj)board/icecube
396 @ >$(obj)include/config.h
wdenk17d704e2004-04-10 20:43:50 +0000397 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
398 { if [ "$(findstring DDR,$@)" ] ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200399 then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
400 else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
wdenk17d704e2004-04-10 20:43:50 +0000401 fi ; \
wdenk5cf9da42003-11-07 13:42:26 +0000402 echo "... with LOWBOOT configuration" ; \
403 }
404 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200405 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
wdenk5cf9da42003-11-07 13:42:26 +0000406 echo "... with 8 MB flash only" ; \
wdenk17d704e2004-04-10 20:43:50 +0000407 echo "... with LOWBOOT configuration" ; \
wdenk5cf9da42003-11-07 13:42:26 +0000408 }
wdenkb2001f22003-12-20 22:45:10 +0000409 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200410 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +0000411 echo "... DDR memory revision" ; \
412 }
wdenkd4ca31c2004-01-02 14:00:00 +0000413 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200414 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenkd4ca31c2004-01-02 14:00:00 +0000415 echo "... with MPC5200 processor" ; \
416 }
wdenka0f2fe52003-10-28 09:14:21 +0000417 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200418 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk945af8d2003-07-16 21:53:01 +0000419 echo "... with MGT5100 processor" ; \
420 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200421 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
wdenk945af8d2003-07-16 21:53:01 +0000422
Heiko Schocher2605e902007-02-16 07:57:42 +0100423jupiter_config: unconfig
424 @$(MKCONFIG) jupiter ppc mpc5xxx jupiter
425
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200426v38b_config: unconfig
Bartlomiej Sieka82d9c9e2006-11-01 01:34:29 +0100427 @./mkconfig -a v38b ppc mpc5xxx v38b
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200428
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100429inka4x0_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200430 @$(MKCONFIG) inka4x0 ppc mpc5xxx inka4x0
wdenk138ff602004-12-16 15:52:40 +0000431
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100432lite5200b_config \
433lite5200b_LOWBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200434 @mkdir -p $(obj)include
435 @mkdir -p $(obj)board/icecube
436 @ >$(obj)include/config.h
437 @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100438 @ echo "... DDR memory revision"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200439 @ echo "#define CONFIG_MPC5200" >>$(obj)include/config.h
440 @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100441 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200442 { echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100443 echo "... with LOWBOOT configuration" ; \
444 }
445 @ echo "... with MPC5200B processor"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200446 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100447
Stefan Roesef1ee9822006-03-04 14:57:03 +0100448mcc200_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200449mcc200_SDRAM_config \
450mcc200_highboot_config \
451mcc200_COM12_config \
452mcc200_COM12_SDRAM_config \
Wolfgang Denk113f64e2006-08-25 01:38:04 +0200453mcc200_COM12_highboot_config \
454mcc200_COM12_highboot_SDRAM_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200455mcc200_highboot_SDRAM_config \
456prs200_config \
457prs200_DDR_config \
458prs200_highboot_config \
459prs200_highboot_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200460 @mkdir -p $(obj)include
461 @mkdir -p $(obj)board/mcc200
462 @ >$(obj)include/config.h
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200463 @[ -n "$(findstring highboot,$@)" ] || \
464 { echo "... with lowboot configuration" ; \
Stefan Roesef1ee9822006-03-04 14:57:03 +0100465 }
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200466 @[ -z "$(findstring highboot,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200467 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200468 echo "... with highboot configuration" ; \
469 }
470 @[ -n "$(findstring _SDRAM,$@)" ] || \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200471 { if [ -n "$(findstring mcc200,$@)" ]; \
472 then \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100473 echo "... with DDR" ; \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200474 else \
475 if [ -n "$(findstring _DDR,$@)" ];\
476 then \
477 echo "... with DDR" ; \
478 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200479 echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200480 echo "... with SDRAM" ; \
481 fi; \
482 fi; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200483 }
484 @[ -z "$(findstring _SDRAM,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200485 { echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200486 echo "... with SDRAM" ; \
487 }
Wolfgang Denk463764c2006-08-17 00:36:51 +0200488 @[ -z "$(findstring COM12,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200489 { echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \
Wolfgang Denk463764c2006-08-17 00:36:51 +0200490 echo "... with console on COM12" ; \
491 }
Wolfgang Denked1cf842006-08-24 00:26:42 +0200492 @[ -z "$(findstring prs200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200493 { echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200494 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200495 @$(MKCONFIG) -n $@ -a mcc200 ppc mpc5xxx mcc200
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100496
Stefan Roese8b7d1f02007-01-31 16:37:34 +0100497mecp5200_config: unconfig
498 @$(MKCONFIG) -a mecp5200 ppc mpc5xxx mecp5200 esd
499
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200500o2dnt_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200501 @$(MKCONFIG) o2dnt ppc mpc5xxx o2dnt
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200502
Stefan Roese5e4b3362005-08-22 17:51:53 +0200503pf5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200504 @$(MKCONFIG) pf5200 ppc mpc5xxx pf5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200505
wdenk89394042004-08-04 21:56:49 +0000506PM520_config \
507PM520_DDR_config \
508PM520_ROMBOOT_config \
509PM520_ROMBOOT_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200510 @mkdir -p $(obj)include
511 @ >$(obj)include/config.h
wdenk89394042004-08-04 21:56:49 +0000512 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200513 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000514 echo "... DDR memory revision" ; \
515 }
516 @[ -z "$(findstring ROMBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200517 { echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000518 echo "... booting from 8-bit flash" ; \
519 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200520 @$(MKCONFIG) -a PM520 ppc mpc5xxx pm520
wdenk89394042004-08-04 21:56:49 +0000521
Wolfgang Denk6624b682006-02-22 10:25:39 +0100522smmaco4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200523 @$(MKCONFIG) -a smmaco4 ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100524
525spieval_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200526 @$(MKCONFIG) -a spieval ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100527
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200528TB5200_B_config \
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200529TB5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200530 @mkdir -p $(obj)include
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200531 @[ -z "$(findstring _B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200532 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200533 echo "... with MPC5200B processor" ; \
534 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200535 @$(MKCONFIG) -n $@ -a TB5200 ppc mpc5xxx tqm5200
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200536
wdenkd4ca31c2004-01-02 14:00:00 +0000537MINI5200_config \
538EVAL5200_config \
539TOP5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200540 @mkdir -p $(obj)include
541 @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
542 @$(MKCONFIG) -n $@ -a TOP5200 ppc mpc5xxx top5200 emk
wdenkd4ca31c2004-01-02 14:00:00 +0000543
wdenk6c7a1402004-07-11 19:17:20 +0000544Total5100_config \
545Total5200_config \
546Total5200_lowboot_config \
547Total5200_Rev2_config \
548Total5200_Rev2_lowboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200549 @mkdir -p $(obj)include
550 @mkdir -p $(obj)board/total5200
551 @ >$(obj)include/config.h
wdenk6c7a1402004-07-11 19:17:20 +0000552 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200553 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000554 echo "... with MGT5100 processor" ; \
555 }
556 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200557 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000558 echo "... with MPC5200 processor" ; \
559 }
560 @[ -n "$(findstring Rev,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200561 { echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000562 echo "... revision 1 board" ; \
563 }
564 @[ -z "$(findstring Rev2_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200565 { echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000566 echo "... revision 2 board" ; \
567 }
568 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200569 { echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp ; \
wdenk6c7a1402004-07-11 19:17:20 +0000570 echo "... with lowboot configuration" ; \
571 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200572 @$(MKCONFIG) -a Total5200 ppc mpc5xxx total5200
wdenk6c7a1402004-07-11 19:17:20 +0000573
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200574cam5200_config \
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100575cam5200_niosflash_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200576fo300_config \
577MiniFAP_config \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200578TQM5200S_config \
579TQM5200S_HIGHBOOT_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200580TQM5200_B_config \
581TQM5200_B_HIGHBOOT_config \
582TQM5200_config \
583TQM5200_STK100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200584 @mkdir -p $(obj)include
585 @mkdir -p $(obj)board/tqm5200
586 @ >$(obj)include/config.h
Wolfgang Denk135ae002006-07-22 01:20:03 +0200587 @[ -z "$(findstring cam5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200588 { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \
589 echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
590 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk135ae002006-07-22 01:20:03 +0200591 echo "... TQM5200S on Cam5200" ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200592 }
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100593 @[ -z "$(findstring niosflash,$@)" ] || \
594 { echo "#define CONFIG_CAM5200_NIOSFLASH" >>$(obj)include/config.h ; \
595 echo "... with NIOS flash driver" ; \
596 }
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200597 @[ -z "$(findstring fo300,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200598 { echo "#define CONFIG_FO300" >>$(obj)include/config.h ; \
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200599 echo "... TQM5200 on FO300" ; \
600 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200601 @[ -z "$(findstring MiniFAP,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200602 { echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200603 echo "... TQM5200_AC on MiniFAP" ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200604 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200605 @[ -z "$(findstring STK100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200606 { echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h ; \
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200607 echo "... on a STK52XX.100 base board" ; \
wdenk56523f12004-07-11 17:40:54 +0000608 }
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200609 @[ -z "$(findstring TQM5200_B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200610 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200611 }
612 @[ -z "$(findstring TQM5200S,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200613 { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
614 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200615 }
Wolfgang Denk978b1092006-07-19 18:01:38 +0200616 @[ -z "$(findstring HIGHBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200617 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200618 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200619 @$(MKCONFIG) -n $@ -a TQM5200 ppc mpc5xxx tqm5200
Heiko Schocher6dedf3d2006-12-21 16:14:48 +0100620uc101_config: unconfig
621 @$(MKCONFIG) uc101 ppc mpc5xxx uc101
Bartlomiej Sieka53d4a492007-02-09 10:45:42 +0100622motionpro_config: unconfig
623 @$(MKCONFIG) motionpro ppc mpc5xxx motionpro
624
wdenk56523f12004-07-11 17:40:54 +0000625
wdenk945af8d2003-07-16 21:53:01 +0000626#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000627## MPC8xx Systems
628#########################################################################
629
wdenk2d24a3a2004-06-09 21:50:45 +0000630Adder_config \
631Adder87x_config \
wdenk26238132004-07-09 22:51:01 +0000632AdderII_config \
wdenk2d24a3a2004-06-09 21:50:45 +0000633 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200634 @mkdir -p $(obj)include
wdenk26238132004-07-09 22:51:01 +0000635 $(if $(findstring AdderII,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200636 @echo "#define CONFIG_MPC852T" > $(obj)include/config.h)
637 @$(MKCONFIG) -a Adder ppc mpc8xx adder
wdenk2d24a3a2004-06-09 21:50:45 +0000638
wdenk180d3f72004-01-04 16:28:35 +0000639ADS860_config \
wdenk180d3f72004-01-04 16:28:35 +0000640FADS823_config \
641FADS850SAR_config \
642MPC86xADS_config \
wdenk11142572004-06-06 21:35:06 +0000643MPC885ADS_config \
wdenk180d3f72004-01-04 16:28:35 +0000644FADS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200645 @$(MKCONFIG) $(@:_config=) ppc mpc8xx fads
wdenk7ebf7442002-11-02 23:17:16 +0000646
647AMX860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200648 @$(MKCONFIG) $(@:_config=) ppc mpc8xx amx860 westel
wdenk7ebf7442002-11-02 23:17:16 +0000649
650c2mon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200651 @$(MKCONFIG) $(@:_config=) ppc mpc8xx c2mon
wdenk7ebf7442002-11-02 23:17:16 +0000652
653CCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200654 @$(MKCONFIG) $(@:_config=) ppc mpc8xx CCM siemens
wdenk7ebf7442002-11-02 23:17:16 +0000655
656cogent_mpc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200657 @$(MKCONFIG) $(@:_config=) ppc mpc8xx cogent
wdenk7ebf7442002-11-02 23:17:16 +0000658
wdenk3bac3512003-03-12 10:41:04 +0000659ELPT860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200660 @$(MKCONFIG) $(@:_config=) ppc mpc8xx elpt860 LEOX
wdenk3bac3512003-03-12 10:41:04 +0000661
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100662EP88x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200663 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ep88x
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100664
wdenk7ebf7442002-11-02 23:17:16 +0000665ESTEEM192E_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200666 @$(MKCONFIG) $(@:_config=) ppc mpc8xx esteem192e
wdenk7ebf7442002-11-02 23:17:16 +0000667
668ETX094_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200669 @$(MKCONFIG) $(@:_config=) ppc mpc8xx etx094
wdenk7ebf7442002-11-02 23:17:16 +0000670
wdenk7ebf7442002-11-02 23:17:16 +0000671FLAGADM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200672 @$(MKCONFIG) $(@:_config=) ppc mpc8xx flagadm
wdenk7ebf7442002-11-02 23:17:16 +0000673
wdenk7aa78612003-05-03 15:50:43 +0000674xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
675
676GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000677GEN860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200678 @mkdir -p $(obj)include
679 @ >$(obj)include/config.h
wdenk7aa78612003-05-03 15:50:43 +0000680 @[ -z "$(findstring _SC,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200681 { echo "#define CONFIG_SC" >>$(obj)include/config.h ; \
wdenk7aa78612003-05-03 15:50:43 +0000682 echo "With reduced H/W feature set (SC)..." ; \
683 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200684 @$(MKCONFIG) -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000685
686GENIETV_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200687 @$(MKCONFIG) $(@:_config=) ppc mpc8xx genietv
wdenk7ebf7442002-11-02 23:17:16 +0000688
689GTH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200690 @$(MKCONFIG) $(@:_config=) ppc mpc8xx gth
wdenk7ebf7442002-11-02 23:17:16 +0000691
692hermes_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200693 @$(MKCONFIG) $(@:_config=) ppc mpc8xx hermes
wdenk7ebf7442002-11-02 23:17:16 +0000694
wdenkc40b2952004-03-13 23:29:43 +0000695HMI10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200696 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenkc40b2952004-03-13 23:29:43 +0000697
wdenk7ebf7442002-11-02 23:17:16 +0000698IAD210_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200699 @$(MKCONFIG) $(@:_config=) ppc mpc8xx IAD210 siemens
wdenk7ebf7442002-11-02 23:17:16 +0000700
701xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
702
703ICU862_100MHz_config \
704ICU862_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200705 @mkdir -p $(obj)include
706 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000707 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200708 { echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000709 echo "... with 100MHz system clock" ; \
710 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200711 @$(MKCONFIG) -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
wdenk7ebf7442002-11-02 23:17:16 +0000712
713IP860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200714 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ip860
wdenk7ebf7442002-11-02 23:17:16 +0000715
716IVML24_256_config \
717IVML24_128_config \
718IVML24_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200719 @mkdir -p $(obj)include
720 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000721 @[ -z "$(findstring IVML24_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200722 { echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000723 }
724 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200725 { echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000726 }
727 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200728 { echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000729 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200730 @$(MKCONFIG) -a IVML24 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000731
732IVMS8_256_config \
733IVMS8_128_config \
734IVMS8_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200735 @mkdir -p $(obj)include
736 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000737 @[ -z "$(findstring IVMS8_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200738 { echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000739 }
740 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200741 { echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000742 }
743 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200744 { echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000745 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200746 @$(MKCONFIG) -a IVMS8 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000747
wdenk56f94be2002-11-05 16:35:14 +0000748KUP4K_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200749 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4k kup
wdenk0608e042004-03-25 19:29:38 +0000750
751KUP4X_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200752 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000753
wdenk7ebf7442002-11-02 23:17:16 +0000754LANTEC_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200755 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lantec
wdenk7ebf7442002-11-02 23:17:16 +0000756
757lwmon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200758 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lwmon
wdenk7ebf7442002-11-02 23:17:16 +0000759
760MBX_config \
761MBX860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200762 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mbx8xx
wdenk7ebf7442002-11-02 23:17:16 +0000763
764MHPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200765 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mhpc eltec
wdenk7ebf7442002-11-02 23:17:16 +0000766
767MVS1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200768 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mvs1
wdenk7ebf7442002-11-02 23:17:16 +0000769
wdenk993cad92003-06-26 22:04:09 +0000770xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
771
772NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000773NETVIA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200774 @mkdir -p $(obj)include
775 @ >$(obj)include/config.h
wdenk993cad92003-06-26 22:04:09 +0000776 @[ -z "$(findstring NETVIA_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200777 { echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000778 echo "... Version 1" ; \
779 }
780 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200781 { echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000782 echo "... Version 2" ; \
783 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200784 @$(MKCONFIG) -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000785
wdenkc26e4542004-04-18 10:13:26 +0000786xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
787
788NETPHONE_V2_config \
wdenk04a85b32004-04-15 18:22:41 +0000789NETPHONE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200790 @mkdir -p $(obj)include
791 @ >$(obj)include/config.h
wdenkc26e4542004-04-18 10:13:26 +0000792 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200793 { echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000794 }
795 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200796 { echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000797 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200798 @$(MKCONFIG) -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk04a85b32004-04-15 18:22:41 +0000799
wdenk79fa88f2004-06-07 23:46:25 +0000800xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk04a85b32004-04-15 18:22:41 +0000801
wdenk79fa88f2004-06-07 23:46:25 +0000802NETTA_ISDN_6412_SWAPHOOK_config \
803NETTA_ISDN_SWAPHOOK_config \
804NETTA_6412_SWAPHOOK_config \
805NETTA_SWAPHOOK_config \
806NETTA_ISDN_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000807NETTA_ISDN_config \
wdenk79fa88f2004-06-07 23:46:25 +0000808NETTA_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000809NETTA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200810 @mkdir -p $(obj)include
811 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000812 @[ -z "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200813 { echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \
wdenk04a85b32004-04-15 18:22:41 +0000814 }
wdenk79fa88f2004-06-07 23:46:25 +0000815 @[ -n "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200816 { echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000817 }
818 @[ -z "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200819 { echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000820 }
821 @[ -n "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200822 { echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000823 }
824 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200825 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000826 }
827 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200828 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000829 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200830 @$(MKCONFIG) -a $(call xtract_NETTA,$@) ppc mpc8xx netta
wdenk04a85b32004-04-15 18:22:41 +0000831
wdenk79fa88f2004-06-07 23:46:25 +0000832xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
833
834NETTA2_V2_config \
835NETTA2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200836 @mkdir -p $(obj)include
837 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000838 @[ -z "$(findstring NETTA2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200839 { echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000840 }
841 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200842 { echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000843 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200844 @$(MKCONFIG) -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
wdenk79fa88f2004-06-07 23:46:25 +0000845
dzu@denx.dea367d422006-04-19 11:52:46 +0200846NC650_Rev1_config \
847NC650_Rev2_config \
848CP850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200849 @mkdir -p $(obj)include
850 @ >$(obj)include/config.h
dzu@denx.dea367d422006-04-19 11:52:46 +0200851 @[ -z "$(findstring CP850,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200852 { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \
853 echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200854 }
855 @[ -z "$(findstring Rev1,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200856 { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200857 }
858 @[ -z "$(findstring Rev2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200859 { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200860 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200861 @$(MKCONFIG) -a NC650 ppc mpc8xx nc650
wdenk7ca202f2004-08-28 22:45:57 +0000862
wdenk7ebf7442002-11-02 23:17:16 +0000863NX823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200864 @$(MKCONFIG) $(@:_config=) ppc mpc8xx nx823
wdenk7ebf7442002-11-02 23:17:16 +0000865
866pcu_e_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200867 @$(MKCONFIG) $(@:_config=) ppc mpc8xx pcu_e siemens
wdenk7ebf7442002-11-02 23:17:16 +0000868
wdenk3bbc8992003-12-07 22:27:15 +0000869QS850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200870 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000871
872QS823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200873 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000874
875QS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200876 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs860t snmc
wdenk3bbc8992003-12-07 22:27:15 +0000877
wdenkda93ed82004-09-29 11:02:56 +0000878quantum_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200879 @$(MKCONFIG) $(@:_config=) ppc mpc8xx quantum
wdenkda93ed82004-09-29 11:02:56 +0000880
wdenk7ebf7442002-11-02 23:17:16 +0000881R360MPI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200882 @$(MKCONFIG) $(@:_config=) ppc mpc8xx r360mpi
wdenk7ebf7442002-11-02 23:17:16 +0000883
wdenk682011f2003-06-03 23:54:09 +0000884RBC823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200885 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rbc823
wdenk682011f2003-06-03 23:54:09 +0000886
wdenk7ebf7442002-11-02 23:17:16 +0000887RPXClassic_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200888 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXClassic
wdenk7ebf7442002-11-02 23:17:16 +0000889
890RPXlite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200891 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXlite
wdenk7ebf7442002-11-02 23:17:16 +0000892
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100893RPXlite_DW_64_config \
894RPXlite_DW_LCD_config \
895RPXlite_DW_64_LCD_config \
wdenke63c8ee2004-06-09 21:04:48 +0000896RPXlite_DW_NVRAM_config \
897RPXlite_DW_NVRAM_64_config \
898RPXlite_DW_NVRAM_LCD_config \
899RPXlite_DW_NVRAM_64_LCD_config \
900RPXlite_DW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200901 @mkdir -p $(obj)include
902 @ >$(obj)include/config.h
wdenke63c8ee2004-06-09 21:04:48 +0000903 @[ -z "$(findstring _64,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200904 { echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000905 echo "... with 64MHz system clock ..."; \
906 }
907 @[ -z "$(findstring _LCD,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100908 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200909 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000910 echo "... with LCD display ..."; \
911 }
912 @[ -z "$(findstring _NVRAM,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100913 { echo "#define CFG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000914 echo "... with ENV in NVRAM ..."; \
915 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200916 @$(MKCONFIG) -a RPXlite_DW ppc mpc8xx RPXlite_dw
wdenke63c8ee2004-06-09 21:04:48 +0000917
wdenk73a8b272003-06-05 19:27:42 +0000918rmu_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200919 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rmu
wdenk73a8b272003-06-05 19:27:42 +0000920
wdenk7ebf7442002-11-02 23:17:16 +0000921RRvision_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200922 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000923
924RRvision_LCD_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200925 @mkdir -p $(obj)include
926 @echo "#define CONFIG_LCD" >$(obj)include/config.h
927 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
928 @$(MKCONFIG) -a RRvision ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000929
930SM850_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200931 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000932
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200933spc1920_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200934 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spc1920
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200935
wdenk7ebf7442002-11-02 23:17:16 +0000936SPD823TS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200937 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spd8xx
wdenk7ebf7442002-11-02 23:17:16 +0000938
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200939stxxtc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200940 @$(MKCONFIG) $(@:_config=) ppc mpc8xx stxxtc
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200941
wdenkdc7c9a12003-03-26 06:55:25 +0000942svm_sc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200943 @$(MKCONFIG) $(@:_config=) ppc mpc8xx svm_sc8xx
wdenkdc7c9a12003-03-26 06:55:25 +0000944
wdenk7ebf7442002-11-02 23:17:16 +0000945SXNI855T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200946 @$(MKCONFIG) $(@:_config=) ppc mpc8xx sixnet
wdenk7ebf7442002-11-02 23:17:16 +0000947
wdenkdb2f721f2003-03-06 00:58:30 +0000948# EMK MPC8xx based modules
949TOP860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200950 @$(MKCONFIG) $(@:_config=) ppc mpc8xx top860 emk
wdenkdb2f721f2003-03-06 00:58:30 +0000951
wdenk7ebf7442002-11-02 23:17:16 +0000952# Play some tricks for configuration selection
wdenke9132ea2004-04-24 23:23:30 +0000953# Only 855 and 860 boards may come with FEC
954# and only 823 boards may have LCD support
955xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +0000956
957FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000958FPS860L_config \
wdenkf12e5682003-07-07 20:07:54 +0000959NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +0000960TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000961TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +0000962TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000963TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000964TQM860L_config \
wdenkd126bfb2003-04-10 11:18:18 +0000965TQM862L_config \
wdenkae3af052003-08-07 22:18:11 +0000966TQM823M_config \
wdenkae3af052003-08-07 22:18:11 +0000967TQM850M_config \
wdenkf12e5682003-07-07 20:07:54 +0000968TQM855M_config \
wdenkf12e5682003-07-07 20:07:54 +0000969TQM860M_config \
wdenkf12e5682003-07-07 20:07:54 +0000970TQM862M_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200971TQM866M_config \
Markus Klotzbuecher090eb732006-07-12 15:26:01 +0200972TQM885D_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200973virtlab2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200974 @mkdir -p $(obj)include
975 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000976 @[ -z "$(findstring _LCD,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200977 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
978 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000979 echo "... with LCD display" ; \
980 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200981 @$(MKCONFIG) -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000982
983TTTech_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200984 @mkdir -p $(obj)include
985 @echo "#define CONFIG_LCD" >$(obj)include/config.h
986 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
987 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000988
wdenkec0aee72004-12-19 09:58:11 +0000989uc100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200990 @$(MKCONFIG) $(@:_config=) ppc mpc8xx uc100
wdenkf7d15722004-12-18 22:35:43 +0000991
wdenk608c9142003-01-13 23:54:46 +0000992v37_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200993 @mkdir -p $(obj)include
994 @echo "#define CONFIG_LCD" >$(obj)include/config.h
995 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h
996 @$(MKCONFIG) $(@:_config=) ppc mpc8xx v37
wdenk608c9142003-01-13 23:54:46 +0000997
dzu91e940d2003-09-25 22:32:40 +0000998wtk_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200999 @mkdir -p $(obj)include
1000 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1001 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h
1002 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
dzu91e940d2003-09-25 22:32:40 +00001003
wdenk7ebf7442002-11-02 23:17:16 +00001004#########################################################################
1005## PPC4xx Systems
1006#########################################################################
wdenke55ca7e2004-07-01 21:40:08 +00001007xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001008
1009ADCIOP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001010 @$(MKCONFIG) $(@:_config=) ppc ppc4xx adciop esd
wdenk7ebf7442002-11-02 23:17:16 +00001011
Stefan Roese899620c2006-08-15 14:22:35 +02001012alpr_config: unconfig
1013 @./mkconfig $(@:_config=) ppc ppc4xx alpr prodrive
1014
Wolfgang Denk7521af12005-10-09 01:04:33 +02001015AP1000_config:unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001016 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ap1000 amirix
Wolfgang Denk7521af12005-10-09 01:04:33 +02001017
stroesec419d1d2004-12-16 18:44:40 +00001018APC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001019 @$(MKCONFIG) $(@:_config=) ppc ppc4xx apc405 esd
stroesec419d1d2004-12-16 18:44:40 +00001020
wdenk7ebf7442002-11-02 23:17:16 +00001021AR405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001022 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ar405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001023
stroese549826e2003-05-23 11:41:44 +00001024ASH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001025 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ash405 esd
stroese549826e2003-05-23 11:41:44 +00001026
Stefan Roese8a316c92005-08-01 16:49:12 +02001027bamboo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001028 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bamboo amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001029
1030bubinga_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001031 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bubinga amcc
stroese549826e2003-05-23 11:41:44 +00001032
wdenk7ebf7442002-11-02 23:17:16 +00001033CANBT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001034 @$(MKCONFIG) $(@:_config=) ppc ppc4xx canbt esd
wdenk7ebf7442002-11-02 23:17:16 +00001035
wdenk1d6f9722004-09-09 17:44:35 +00001036CATcenter_config \
1037CATcenter_25_config \
1038CATcenter_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001039 @mkdir -p $(obj)include
1040 @ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h
1041 @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001042 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001043 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001044 echo "SysClk = 25MHz" ; \
1045 }
1046 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001047 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001048 echo "SysClk = 33MHz" ; \
1049 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001050 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk10767cc2004-05-13 13:23:58 +00001051
Stefan Roese7644f162005-09-22 09:16:57 +02001052CPCI2DP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001053 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd
Stefan Roese7644f162005-09-22 09:16:57 +02001054
stroese549826e2003-05-23 11:41:44 +00001055CPCI405_config \
1056CPCI4052_config \
stroesec419d1d2004-12-16 18:44:40 +00001057CPCI405DT_config \
stroese549826e2003-05-23 11:41:44 +00001058CPCI405AB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001059 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci405 esd
1060 @echo "BOARD_REVISION = $(@:_config=)" >> $(obj)include/config.mk
wdenk7ebf7442002-11-02 23:17:16 +00001061
1062CPCI440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001063 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci440 esd
wdenk7ebf7442002-11-02 23:17:16 +00001064
1065CPCIISER4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001066 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpciiser4 esd
wdenk7ebf7442002-11-02 23:17:16 +00001067
wdenkdb01a2e2004-04-15 23:14:49 +00001068CRAYL1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001069 @$(MKCONFIG) $(@:_config=) ppc ppc4xx L1 cray
wdenk7ebf7442002-11-02 23:17:16 +00001070
wdenkcd0a9de2004-02-23 20:48:38 +00001071csb272_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001072 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb272
wdenkcd0a9de2004-02-23 20:48:38 +00001073
wdenkaa245092004-06-09 12:47:02 +00001074csb472_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001075 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb472
wdenkaa245092004-06-09 12:47:02 +00001076
wdenk7ebf7442002-11-02 23:17:16 +00001077DASA_SIM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001078 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dasa_sim esd
wdenk7ebf7442002-11-02 23:17:16 +00001079
stroese72cd5aa2003-09-12 08:57:15 +00001080DP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001081 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dp405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001082
wdenk7ebf7442002-11-02 23:17:16 +00001083DU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001084 @$(MKCONFIG) $(@:_config=) ppc ppc4xx du405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001085
Stefan Roese8a316c92005-08-01 16:49:12 +02001086ebony_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001087 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +00001088
wdenkdb01a2e2004-04-15 23:14:49 +00001089ERIC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001090 @$(MKCONFIG) $(@:_config=) ppc ppc4xx eric
wdenk7ebf7442002-11-02 23:17:16 +00001091
wdenkdb01a2e2004-04-15 23:14:49 +00001092EXBITGEN_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001093 @$(MKCONFIG) $(@:_config=) ppc ppc4xx exbitgen
wdenkd1cbe852003-06-28 17:24:46 +00001094
stroesec419d1d2004-12-16 18:44:40 +00001095G2000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001096 @$(MKCONFIG) $(@:_config=) ppc ppc4xx g2000
stroesec419d1d2004-12-16 18:44:40 +00001097
1098HH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001099 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001100
stroese72cd5aa2003-09-12 08:57:15 +00001101HUB405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001102 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001103
wdenkdb01a2e2004-04-15 23:14:49 +00001104JSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001105 @$(MKCONFIG) $(@:_config=) ppc ppc4xx jse
wdenkdb01a2e2004-04-15 23:14:49 +00001106
Stefan Roeseb79316f2005-08-15 12:31:23 +02001107KAREF_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001108 @$(MKCONFIG) $(@:_config=) ppc ppc4xx karef sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001109
Stefan Roese4745aca2007-02-20 10:57:08 +01001110katmai_config: unconfig
1111 @$(MKCONFIG) $(@:_config=) ppc ppc4xx katmai amcc
1112
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001113luan_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001114 @$(MKCONFIG) $(@:_config=) ppc ppc4xx luan amcc
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001115
Stefan Roeseb79316f2005-08-15 12:31:23 +02001116METROBOX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001117 @$(MKCONFIG) $(@:_config=) ppc ppc4xx metrobox sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001118
wdenkdb01a2e2004-04-15 23:14:49 +00001119MIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001120 @$(MKCONFIG) $(@:_config=) ppc ppc4xx mip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001121
wdenkdb01a2e2004-04-15 23:14:49 +00001122MIP405T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001123 @mkdir -p $(obj)include
1124 @echo "#define CONFIG_MIP405T" >$(obj)include/config.h
wdenkf3e0de62003-06-04 15:05:30 +00001125 @echo "Enable subset config for MIP405T"
Marian Balakowiczf9328632006-09-01 19:49:50 +02001126 @$(MKCONFIG) -a MIP405 ppc ppc4xx mip405 mpl
wdenkf3e0de62003-06-04 15:05:30 +00001127
wdenkdb01a2e2004-04-15 23:14:49 +00001128ML2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001129 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml2
wdenk7ebf7442002-11-02 23:17:16 +00001130
wdenkdb01a2e2004-04-15 23:14:49 +00001131ml300_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001132 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml300 xilinx
wdenk028ab6b2004-02-23 23:54:43 +00001133
Stefan Roese8a316c92005-08-01 16:49:12 +02001134ocotea_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001135 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocotea amcc
wdenk0e6d7982004-03-14 00:07:33 +00001136
wdenk7ebf7442002-11-02 23:17:16 +00001137OCRTC_config \
1138ORSG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001139 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocrtc esd
wdenk7ebf7442002-11-02 23:17:16 +00001140
Stefan Roese5568e612005-11-22 13:20:42 +01001141p3p440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001142 @$(MKCONFIG) $(@:_config=) ppc ppc4xx p3p440 prodrive
Stefan Roese5568e612005-11-22 13:20:42 +01001143
wdenk7ebf7442002-11-02 23:17:16 +00001144PCI405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001145 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pci405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001146
Stefan Roesea4c8d132006-06-02 16:18:04 +02001147pcs440ep_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001148 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pcs440ep
Stefan Roesea4c8d132006-06-02 16:18:04 +02001149
wdenkdb01a2e2004-04-15 23:14:49 +00001150PIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001151 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001152
stroese72cd5aa2003-09-12 08:57:15 +00001153PLU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001154 @$(MKCONFIG) $(@:_config=) ppc ppc4xx plu405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001155
stroese549826e2003-05-23 11:41:44 +00001156PMC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001157 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pmc405 esd
stroese549826e2003-05-23 11:41:44 +00001158
wdenk281e00a2004-08-01 22:48:16 +00001159PPChameleonEVB_config \
wdenke55ca7e2004-07-01 21:40:08 +00001160PPChameleonEVB_BA_25_config \
1161PPChameleonEVB_ME_25_config \
1162PPChameleonEVB_HI_25_config \
1163PPChameleonEVB_BA_33_config \
1164PPChameleonEVB_ME_33_config \
1165PPChameleonEVB_HI_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001166 @mkdir -p $(obj)include
1167 @ >$(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001168 @[ -z "$(findstring EVB_BA,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001169 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001170 echo "... BASIC model" ; \
1171 }
wdenk1d6f9722004-09-09 17:44:35 +00001172 @[ -z "$(findstring EVB_ME,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001173 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001174 echo "... MEDIUM model" ; \
1175 }
wdenk1d6f9722004-09-09 17:44:35 +00001176 @[ -z "$(findstring EVB_HI,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001177 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001178 echo "... HIGH-END model" ; \
1179 }
wdenke55ca7e2004-07-01 21:40:08 +00001180 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001181 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001182 echo "SysClk = 25MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001183 }
1184 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001185 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001186 echo "SysClk = 33MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001187 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001188 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk12f34242003-09-02 22:48:03 +00001189
Stefan Roese854bc8d2006-09-13 13:51:58 +02001190rainier_config: unconfig
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001191 @mkdir -p $(obj)include
1192 @echo "#define CONFIG_RAINIER" > $(obj)include/config.h
Stefan Roese2aa54f62007-02-02 12:42:08 +01001193 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Stefan Roese854bc8d2006-09-13 13:51:58 +02001194
1195rainier_nand_config: unconfig
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001196 @mkdir -p $(obj)include
1197 @mkdir -p $(obj)nand_spl
1198 @mkdir -p $(obj)board/amcc/sequoia
1199 @echo "#define CONFIG_RAINIER" > $(obj)include/config.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001200 @echo "#define CONFIG_NAND_U_BOOT" >> $(obj)include/config.h
Stefan Roese854bc8d2006-09-13 13:51:58 +02001201 @echo "Compile NAND boot image for sequoia"
Stefan Roese2aa54f62007-02-02 12:42:08 +01001202 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001203 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1204 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
wdenk7ebf7442002-11-02 23:17:16 +00001205
wdenk652a10c2005-01-09 23:48:14 +00001206sbc405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001207 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sbc405
wdenk652a10c2005-01-09 23:48:14 +00001208
Stefan Roese887e2ec2006-09-07 11:51:23 +02001209sequoia_config: unconfig
1210 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sequoia amcc
1211
1212sequoia_nand_config: unconfig
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001213 @mkdir -p $(obj)include
1214 @mkdir -p $(obj)nand_spl
1215 @mkdir -p $(obj)board/amcc/sequoia
1216 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roese887e2ec2006-09-07 11:51:23 +02001217 @echo "Compile NAND boot image for sequoia"
1218 @$(MKCONFIG) -a sequoia ppc ppc4xx sequoia amcc
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001219 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1220 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
stroese72cd5aa2003-09-12 08:57:15 +00001221
Wolfgang Denk6d3e0102007-01-16 18:30:50 +01001222sc3_config:unconfig
1223 @./mkconfig $(@:_config=) ppc ppc4xx sc3
Heiko Schocherca43ba12007-01-11 15:44:44 +01001224
Stefan Roese8a316c92005-08-01 16:49:12 +02001225sycamore_config: unconfig
Stefan Roese2aa54f62007-02-02 12:42:08 +01001226 @$(MKCONFIG) -n $@ -a walnut ppc ppc4xx walnut amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001227
Stefan Roese5fb692c2007-01-18 10:25:34 +01001228taishan_config: unconfig
1229 @$(MKCONFIG) $(@:_config=) ppc ppc4xx taishan amcc
1230
wdenk7ebf7442002-11-02 23:17:16 +00001231VOH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001232 @$(MKCONFIG) $(@:_config=) ppc ppc4xx voh405 esd
wdenk3bac3512003-03-12 10:41:04 +00001233
stroesec419d1d2004-12-16 18:44:40 +00001234VOM405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001235 @$(MKCONFIG) $(@:_config=) ppc ppc4xx vom405 esd
stroesec419d1d2004-12-16 18:44:40 +00001236
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001237CMS700_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001238 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001239
wdenk7ebf7442002-11-02 23:17:16 +00001240W7OLMC_config \
1241W7OLMG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001242 @$(MKCONFIG) $(@:_config=) ppc ppc4xx w7o
wdenk7ebf7442002-11-02 23:17:16 +00001243
Stefan Roese8a316c92005-08-01 16:49:12 +02001244walnut_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001245 @$(MKCONFIG) $(@:_config=) ppc ppc4xx walnut amcc
wdenk7ebf7442002-11-02 23:17:16 +00001246
stroesec419d1d2004-12-16 18:44:40 +00001247WUH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001248 @$(MKCONFIG) $(@:_config=) ppc ppc4xx wuh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001249
wdenkdb01a2e2004-04-15 23:14:49 +00001250XPEDITE1K_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001251 @$(MKCONFIG) $(@:_config=) ppc ppc4xx xpedite1k
wdenkba56f622004-02-06 23:19:44 +00001252
Stefan Roese8a316c92005-08-01 16:49:12 +02001253yosemite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001254 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yosemite amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001255
1256yellowstone_config: unconfig
Stefan Roese700200c2007-01-30 17:04:19 +01001257 @mkdir -p $(obj)include
1258 @echo "#define CONFIG_YELLOWSTONE" > $(obj)include/config.h
Stefan Roese2aa54f62007-02-02 12:42:08 +01001259 @$(MKCONFIG) -n $@ -a yosemite ppc ppc4xx yosemite amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001260
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001261yucca_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001262 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yucca amcc
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001263
wdenk7ebf7442002-11-02 23:17:16 +00001264#########################################################################
wdenk983fda82004-10-28 00:09:35 +00001265## MPC8220 Systems
1266#########################################################################
Wolfgang Denkdc17fb62005-08-03 22:32:02 +02001267
1268Alaska8220_config \
1269Yukon8220_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001270 @$(MKCONFIG) $(@:_config=) ppc mpc8220 alaska
wdenk983fda82004-10-28 00:09:35 +00001271
wdenk12b43d52005-04-05 21:57:18 +00001272sorcery_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001273 @$(MKCONFIG) $(@:_config=) ppc mpc8220 sorcery
wdenk12b43d52005-04-05 21:57:18 +00001274
wdenk983fda82004-10-28 00:09:35 +00001275#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001276## MPC824x Systems
1277#########################################################################
wdenkefa329c2004-03-23 20:18:25 +00001278xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001279
wdenk03329902003-06-20 22:36:30 +00001280A3000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001281 @$(MKCONFIG) $(@:_config=) ppc mpc824x a3000
wdenk03329902003-06-20 22:36:30 +00001282
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001283barco_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001284 @$(MKCONFIG) $(@:_config=) ppc mpc824x barco
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001285
wdenk7ebf7442002-11-02 23:17:16 +00001286BMW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001287 @$(MKCONFIG) $(@:_config=) ppc mpc824x bmw
wdenk7ebf7442002-11-02 23:17:16 +00001288
wdenk3bac3512003-03-12 10:41:04 +00001289CPC45_config \
1290CPC45_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001291 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc824x cpc45
1292 @cd $(obj)include ; \
wdenk3bac3512003-03-12 10:41:04 +00001293 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1294 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1295 echo "... booting from 8-bit flash" ; \
1296 else \
1297 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1298 echo "... booting from 64-bit flash" ; \
1299 fi; \
1300 echo "export CONFIG_BOOT_ROM" >> config.mk;
1301
wdenk7ebf7442002-11-02 23:17:16 +00001302CU824_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001303 @$(MKCONFIG) $(@:_config=) ppc mpc824x cu824
wdenk7ebf7442002-11-02 23:17:16 +00001304
wdenk7abf0c52004-04-18 21:45:42 +00001305debris_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001306 @$(MKCONFIG) $(@:_config=) ppc mpc824x debris etin
wdenk7abf0c52004-04-18 21:45:42 +00001307
wdenk80885a92004-02-26 23:46:20 +00001308eXalion_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001309 @$(MKCONFIG) $(@:_config=) ppc mpc824x eXalion
wdenk80885a92004-02-26 23:46:20 +00001310
wdenk756f5862005-04-03 15:51:42 +00001311HIDDEN_DRAGON_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001312 @$(MKCONFIG) $(@:_config=) ppc mpc824x hidden_dragon
wdenk756f5862005-04-03 15:51:42 +00001313
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001314kvme080_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001315 @$(MKCONFIG) $(@:_config=) ppc mpc824x kvme080 etin
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001316
wdenk7ebf7442002-11-02 23:17:16 +00001317MOUSSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001318 @$(MKCONFIG) $(@:_config=) ppc mpc824x mousse
wdenk7ebf7442002-11-02 23:17:16 +00001319
1320MUSENKI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001321 @$(MKCONFIG) $(@:_config=) ppc mpc824x musenki
wdenk7ebf7442002-11-02 23:17:16 +00001322
wdenkb4676a22003-12-07 19:24:00 +00001323MVBLUE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001324 @$(MKCONFIG) $(@:_config=) ppc mpc824x mvblue
wdenkb4676a22003-12-07 19:24:00 +00001325
wdenk7ebf7442002-11-02 23:17:16 +00001326OXC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001327 @$(MKCONFIG) $(@:_config=) ppc mpc824x oxc
wdenk7ebf7442002-11-02 23:17:16 +00001328
1329PN62_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001330 @$(MKCONFIG) $(@:_config=) ppc mpc824x pn62
wdenk7ebf7442002-11-02 23:17:16 +00001331
1332Sandpoint8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001333 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001334
1335Sandpoint8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001336 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001337
wdenk466b7412004-07-10 22:35:59 +00001338sbc8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001339 @$(MKCONFIG) $(@:_config=) ppc mpc824x sbc8240
wdenk466b7412004-07-10 22:35:59 +00001340
wdenkd1cbe852003-06-28 17:24:46 +00001341SL8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001342 @$(MKCONFIG) $(@:_config=) ppc mpc824x sl8245
wdenkd1cbe852003-06-28 17:24:46 +00001343
wdenk7ebf7442002-11-02 23:17:16 +00001344utx8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001345 @$(MKCONFIG) $(@:_config=) ppc mpc824x utx8245
wdenk7ebf7442002-11-02 23:17:16 +00001346
1347#########################################################################
1348## MPC8260 Systems
1349#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001350
wdenk54387ac2003-10-08 22:45:44 +00001351atc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001352 @$(MKCONFIG) $(@:_config=) ppc mpc8260 atc
wdenk54387ac2003-10-08 22:45:44 +00001353
wdenk7ebf7442002-11-02 23:17:16 +00001354cogent_mpc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001355 @$(MKCONFIG) $(@:_config=) ppc mpc8260 cogent
wdenk7ebf7442002-11-02 23:17:16 +00001356
1357CPU86_config \
1358CPU86_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001359 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu86
1360 @cd $(obj)include ; \
wdenk7ebf7442002-11-02 23:17:16 +00001361 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1362 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1363 echo "... booting from 8-bit flash" ; \
1364 else \
1365 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1366 echo "... booting from 64-bit flash" ; \
1367 fi; \
1368 echo "export CONFIG_BOOT_ROM" >> config.mk;
1369
wdenk384cc682005-04-03 22:35:21 +00001370CPU87_config \
1371CPU87_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001372 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu87
1373 @cd $(obj)include ; \
wdenk384cc682005-04-03 22:35:21 +00001374 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1375 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1376 echo "... booting from 8-bit flash" ; \
1377 else \
1378 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1379 echo "... booting from 64-bit flash" ; \
1380 fi; \
1381 echo "export CONFIG_BOOT_ROM" >> config.mk;
1382
Wolfgang Denkf901a832005-08-06 01:42:58 +02001383ep8248_config \
1384ep8248E_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001385 @$(MKCONFIG) ep8248 ppc mpc8260 ep8248
Wolfgang Denkf901a832005-08-06 01:42:58 +02001386
wdenk7ebf7442002-11-02 23:17:16 +00001387ep8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001388 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep8260
wdenk7ebf7442002-11-02 23:17:16 +00001389
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001390ep82xxm_config: unconfig
1391 @./mkconfig $(@:_config=) ppc mpc8260 ep82xxm
1392
wdenk7ebf7442002-11-02 23:17:16 +00001393gw8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001394 @$(MKCONFIG) $(@:_config=) ppc mpc8260 gw8260
wdenk7ebf7442002-11-02 23:17:16 +00001395
1396hymod_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001397 @$(MKCONFIG) $(@:_config=) ppc mpc8260 hymod
wdenk7ebf7442002-11-02 23:17:16 +00001398
wdenk9dd41a72005-05-12 22:48:09 +00001399IDS8247_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001400 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ids8247
wdenk9dd41a72005-05-12 22:48:09 +00001401
wdenk7ebf7442002-11-02 23:17:16 +00001402IPHASE4539_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001403 @$(MKCONFIG) $(@:_config=) ppc mpc8260 iphase4539
wdenk7ebf7442002-11-02 23:17:16 +00001404
wdenkc3c7f862004-06-09 14:47:54 +00001405ISPAN_config \
1406ISPAN_REVB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001407 @mkdir -p $(obj)include
wdenkc3c7f862004-06-09 14:47:54 +00001408 @if [ "$(findstring _REVB_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001409 echo "#define CFG_REV_B" > $(obj)include/config.h ; \
wdenkc3c7f862004-06-09 14:47:54 +00001410 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001411 @$(MKCONFIG) -a ISPAN ppc mpc8260 ispan
wdenkc3c7f862004-06-09 14:47:54 +00001412
wdenk04a85b32004-04-15 18:22:41 +00001413MPC8260ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001414MPC8260ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001415MPC8260ADS_33MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001416MPC8260ADS_33MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001417MPC8260ADS_40MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001418MPC8260ADS_40MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001419MPC8272ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001420MPC8272ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001421PQ2FADS_config \
wdenk901787d2005-04-03 23:22:21 +00001422PQ2FADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001423PQ2FADS-VR_config \
wdenk901787d2005-04-03 23:22:21 +00001424PQ2FADS-VR_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001425PQ2FADS-ZU_config \
wdenk901787d2005-04-03 23:22:21 +00001426PQ2FADS-ZU_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001427PQ2FADS-ZU_66MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001428PQ2FADS-ZU_66MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001429 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001430 @mkdir -p $(obj)include
1431 @mkdir -p $(obj)board/mpc8260ads
wdenk04a85b32004-04-15 18:22:41 +00001432 $(if $(findstring PQ2FADS,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001433 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > $(obj)include/config.h, \
1434 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h)
wdenk04a85b32004-04-15 18:22:41 +00001435 $(if $(findstring MHz,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001436 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \
wdenk04a85b32004-04-15 18:22:41 +00001437 $(if $(findstring VR,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001438 @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h))
wdenk901787d2005-04-03 23:22:21 +00001439 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001440 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/mpc8260ads/config.tmp ; \
wdenk901787d2005-04-03 23:22:21 +00001441 echo "... with lowboot configuration" ; \
1442 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001443 @$(MKCONFIG) -a MPC8260ADS ppc mpc8260 mpc8260ads
wdenk7ebf7442002-11-02 23:17:16 +00001444
wdenkdb2f721f2003-03-06 00:58:30 +00001445MPC8266ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001446 @$(MKCONFIG) $(@:_config=) ppc mpc8260 mpc8266ads
wdenkdb2f721f2003-03-06 00:58:30 +00001447
wdenkefa329c2004-03-23 20:18:25 +00001448# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk10f67012003-03-25 18:06:06 +00001449PM825_config \
wdenkefa329c2004-03-23 20:18:25 +00001450PM825_ROMBOOT_config \
1451PM825_BIGFLASH_config \
1452PM825_ROMBOOT_BIGFLASH_config \
wdenk7ebf7442002-11-02 23:17:16 +00001453PM826_config \
wdenkefa329c2004-03-23 20:18:25 +00001454PM826_ROMBOOT_config \
1455PM826_BIGFLASH_config \
1456PM826_ROMBOOT_BIGFLASH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001457 @mkdir -p $(obj)include
1458 @mkdir -p $(obj)board/pm826
wdenkefa329c2004-03-23 20:18:25 +00001459 @if [ "$(findstring PM825_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001460 echo "#define CONFIG_PCI" >$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001461 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001462 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001463 fi
1464 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1465 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001466 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1467 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001468 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1469 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001470 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001471 fi; \
1472 else \
wdenk7ebf7442002-11-02 23:17:16 +00001473 echo "... booting from 64-bit flash" ; \
wdenkefa329c2004-03-23 20:18:25 +00001474 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1475 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001476 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
1477 echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001478 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001479 echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001480 fi; \
1481 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001482 @$(MKCONFIG) -a PM826 ppc mpc8260 pm826
wdenkefa329c2004-03-23 20:18:25 +00001483
1484PM828_config \
1485PM828_PCI_config \
1486PM828_ROMBOOT_config \
1487PM828_ROMBOOT_PCI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001488 @mkdir -p $(obj)include
1489 @mkdir -p $(obj)board/pm826
Marian Balakowicz17076262006-04-05 20:37:11 +02001490 @if [ "$(findstring _PCI_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001491 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001492 echo "... with PCI enabled" ; \
1493 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 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001501 @$(MKCONFIG) -a PM828 ppc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +00001502
1503ppmc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001504 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ppmc8260
wdenk7ebf7442002-11-02 23:17:16 +00001505
wdenk8b0bfc62005-04-03 23:11:38 +00001506Rattler8248_config \
1507Rattler_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001508 @mkdir -p $(obj)include
wdenk8b0bfc62005-04-03 23:11:38 +00001509 $(if $(findstring 8248,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001510 @echo "#define CONFIG_MPC8248" > $(obj)include/config.h)
1511 @$(MKCONFIG) -a Rattler ppc mpc8260 rattler
wdenk8b0bfc62005-04-03 23:11:38 +00001512
wdenk7ebf7442002-11-02 23:17:16 +00001513RPXsuper_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001514 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rpxsuper
wdenk7ebf7442002-11-02 23:17:16 +00001515
1516rsdproto_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001517 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rsdproto
wdenk7ebf7442002-11-02 23:17:16 +00001518
1519sacsng_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001520 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sacsng
wdenk7ebf7442002-11-02 23:17:16 +00001521
1522sbc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001523 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sbc8260
wdenk7ebf7442002-11-02 23:17:16 +00001524
1525SCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001526 @$(MKCONFIG) $(@:_config=) ppc mpc8260 SCM siemens
wdenk7ebf7442002-11-02 23:17:16 +00001527
wdenk27b207f2003-07-24 23:38:38 +00001528TQM8255_AA_config \
1529TQM8260_AA_config \
1530TQM8260_AB_config \
1531TQM8260_AC_config \
1532TQM8260_AD_config \
1533TQM8260_AE_config \
1534TQM8260_AF_config \
1535TQM8260_AG_config \
1536TQM8260_AH_config \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001537TQM8260_AI_config \
wdenk27b207f2003-07-24 23:38:38 +00001538TQM8265_AA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001539 @mkdir -p $(obj)include
wdenk27b207f2003-07-24 23:38:38 +00001540 @case "$@" in \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001541 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
1542 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
1543 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1544 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1545 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1546 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
1547 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1548 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
1549 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
1550 TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1551 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
wdenk27b207f2003-07-24 23:38:38 +00001552 esac; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001553 >$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001554 if [ "$${CTYPE}" != "MPC8260" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001555 echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001556 fi; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001557 echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001558 echo "... with $${CFREQ}MHz system clock" ; \
1559 if [ "$${CACHE}" == "yes" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001560 echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001561 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001562 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001563 echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001564 echo "... without L2 Cache support" ; \
wdenk27b207f2003-07-24 23:38:38 +00001565 fi; \
1566 if [ "$${BMODE}" == "60x" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001567 echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001568 echo "... with 60x Bus Mode" ; \
1569 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001570 echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001571 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001572 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001573 @$(MKCONFIG) -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +00001574
Heiko Schocherfa230442006-12-21 17:17:02 +01001575TQM8272_config: unconfig
1576 @$(MKCONFIG) -a TQM8272 ppc mpc8260 tqm8272
1577
wdenkba91e262005-05-30 23:55:42 +00001578VoVPN-GW_66MHz_config \
1579VoVPN-GW_100MHz_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001580 @mkdir -p $(obj)include
1581 @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h
1582 @$(MKCONFIG) -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
wdenkba91e262005-05-30 23:55:42 +00001583
wdenk54387ac2003-10-08 22:45:44 +00001584ZPC1900_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001585 @$(MKCONFIG) $(@:_config=) ppc mpc8260 zpc1900
wdenk7aa78612003-05-03 15:50:43 +00001586
wdenk4e5ca3e2003-12-08 01:34:36 +00001587#########################################################################
1588## Coldfire
1589#########################################################################
1590
Wolfgang Denk74812662005-12-12 16:06:05 +01001591cobra5272_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001592 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272
Wolfgang Denk74812662005-12-12 16:06:05 +01001593
Wolfgang Denk4176c792006-06-10 19:27:47 +02001594EB+MCF-EV123_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001595 @mkdir -p $(obj)include
1596 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1597 @ >$(obj)include/config.h
1598 @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1599 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001600
1601EB+MCF-EV123_internal_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001602 @mkdir -p $(obj)include
1603 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1604 @ >$(obj)include/config.h
1605 @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1606 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001607
Bartlomiej Siekadaa6e412006-12-20 00:27:32 +01001608idmr_config : unconfig
1609 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 idmr
1610
Wolfgang Denk4176c792006-06-10 19:27:47 +02001611M5271EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001612 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb
Wolfgang Denk4176c792006-06-10 19:27:47 +02001613
wdenk4e5ca3e2003-12-08 01:34:36 +00001614M5272C3_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001615 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3
wdenk4e5ca3e2003-12-08 01:34:36 +00001616
1617M5282EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001618 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb
wdenk4e5ca3e2003-12-08 01:34:36 +00001619
stroesec419d1d2004-12-16 18:44:40 +00001620TASREG_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001621 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd
stroesec419d1d2004-12-16 18:44:40 +00001622
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001623r5200_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001624 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 r5200
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001625
wdenk7ebf7442002-11-02 23:17:16 +00001626#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -05001627## MPC83xx Systems
1628#########################################################################
1629
Kim Phillips4decd842007-01-24 17:18:37 -06001630MPC832XEMDS_config \
1631MPC832XEMDS_HOST_33_config \
1632MPC832XEMDS_HOST_66_config \
1633MPC832XEMDS_SLAVE_config: unconfig
1634 @echo "" >include/config.h ; \
1635 if [ "$(findstring _HOST_,$@)" ] ; then \
1636 echo -n "... PCI HOST " ; \
1637 echo "#define CONFIG_PCI" >>include/config.h ; \
1638 fi ; \
1639 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1640 echo "...PCI SLAVE 66M" ; \
1641 echo "#define CONFIG_PCI" >>include/config.h ; \
1642 echo "#define CONFIG_PCISLAVE" >>include/config.h ; \
1643 fi ; \
1644 if [ "$(findstring _33_,$@)" ] ; then \
1645 echo -n "...33M ..." ; \
1646 echo "#define PCI_33M" >>include/config.h ; \
1647 fi ; \
1648 if [ "$(findstring _66_,$@)" ] ; then \
1649 echo -n "...66M..." ; \
1650 echo "#define PCI_66M" >>include/config.h ; \
1651 fi ;
1652 @$(MKCONFIG) -a MPC832XEMDS ppc mpc83xx mpc832xemds
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001653
Marian Balakowicz991425f2006-03-14 16:24:38 +01001654MPC8349EMDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001655 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349emds
Marian Balakowicz991425f2006-03-14 16:24:38 +01001656
Timur Tabi7a78f142007-01-31 15:54:29 -06001657MPC8349ITX_config \
1658MPC8349ITX_LOWBOOT_config \
1659MPC8349ITXGP_config: unconfig
1660 @mkdir -p $(obj)include
1661 @mkdir -p $(obj)board/mpc8349itx
1662 @echo "#define CONFIG_$(subst _LOWBOOT,,$(@:_config=))" >> $(obj)include/config.h
1663 @if [ "$(findstring GP,$@)" ] ; then \
1664 echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \
1665 fi
1666 @if [ "$(findstring LOWBOOT,$@)" ] ; then \
1667 echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \
1668 fi
1669 @$(MKCONFIG) -a -n $(@:_config=) MPC8349ITX ppc mpc83xx mpc8349itx
Kim Phillips4decd842007-01-24 17:18:37 -06001670
Dave Liu5f820432006-11-03 19:33:44 -06001671MPC8360EMDS_config \
1672MPC8360EMDS_HOST_33_config \
1673MPC8360EMDS_HOST_66_config \
1674MPC8360EMDS_SLAVE_config: unconfig
1675 @echo "" >include/config.h ; \
1676 if [ "$(findstring _HOST_,$@)" ] ; then \
1677 echo -n "... PCI HOST " ; \
1678 echo "#define CONFIG_PCI" >>include/config.h ; \
1679 fi ; \
1680 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1681 echo "...PCI SLAVE 66M" ; \
1682 echo "#define CONFIG_PCI" >>include/config.h ; \
1683 echo "#define CONFIG_PCISLAVE" >>include/config.h ; \
1684 fi ; \
1685 if [ "$(findstring _33_,$@)" ] ; then \
1686 echo -n "...33M ..." ; \
1687 echo "#define PCI_33M" >>include/config.h ; \
1688 fi ; \
1689 if [ "$(findstring _66_,$@)" ] ; then \
1690 echo -n "...66M..." ; \
1691 echo "#define PCI_66M" >>include/config.h ; \
1692 fi ;
1693 @$(MKCONFIG) -a MPC8360EMDS ppc mpc83xx mpc8360emds
1694
Paul Gortmaker91e25762007-01-16 11:38:14 -05001695sbc8349_config: unconfig
1696 @$(MKCONFIG) $(@:_config=) ppc mpc83xx sbc8349
1697
Kim Phillips4decd842007-01-24 17:18:37 -06001698TQM834x_config: unconfig
1699 @$(MKCONFIG) $(@:_config=) ppc mpc83xx tqm834x
1700
Timur Tabi2ad6b512006-10-31 18:44:42 -06001701
Eran Libertyf046ccd2005-07-28 10:08:46 -05001702#########################################################################
wdenk42d1f032003-10-15 23:53:47 +00001703## MPC85xx Systems
1704#########################################################################
1705
wdenk0ac6f8b2004-07-09 23:27:13 +00001706MPC8540ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001707 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8540ads
wdenk42d1f032003-10-15 23:53:47 +00001708
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001709MPC8540EVAL_config \
1710MPC8540EVAL_33_config \
1711MPC8540EVAL_66_config \
1712MPC8540EVAL_33_slave_config \
1713MPC8540EVAL_66_slave_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001714 @mkdir -p $(obj)include
1715 @echo "" >$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001716 if [ "$(findstring _33_,$@)" ] ; then \
1717 echo -n "... 33 MHz PCI" ; \
1718 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001719 echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001720 echo -n "... 66 MHz PCI" ; \
1721 fi ; \
1722 if [ "$(findstring _slave_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001723 echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001724 echo " slave" ; \
1725 else \
1726 echo " host" ; \
1727 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001728 @$(MKCONFIG) -a MPC8540EVAL ppc mpc85xx mpc8540eval
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001729
wdenk0ac6f8b2004-07-09 23:27:13 +00001730MPC8560ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001731 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8560ads
wdenk42d1f032003-10-15 23:53:47 +00001732
wdenk03f5c552004-10-10 21:21:55 +00001733MPC8541CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001734 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8541cds cds
wdenk03f5c552004-10-10 21:21:55 +00001735
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001736MPC8548CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001737 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8548cds cds
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001738
wdenk03f5c552004-10-10 21:21:55 +00001739MPC8555CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001740 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8555cds cds
wdenk7abf0c52004-04-18 21:45:42 +00001741
wdenk384cc682005-04-03 22:35:21 +00001742PM854_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001743 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm854
wdenk384cc682005-04-03 22:35:21 +00001744
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001745PM856_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001746 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm856
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001747
wdenkc15f3122004-10-10 22:44:24 +00001748sbc8540_config \
1749sbc8540_33_config \
1750sbc8540_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001751 @mkdir -p $(obj)include
wdenkc15f3122004-10-10 22:44:24 +00001752 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001753 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001754 echo "... 66 MHz PCI" ; \
1755 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001756 >$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001757 echo "... 33 MHz PCI" ; \
1758 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001759 @$(MKCONFIG) -a SBC8540 ppc mpc85xx sbc8560
wdenkc15f3122004-10-10 22:44:24 +00001760
wdenk466b7412004-07-10 22:35:59 +00001761sbc8560_config \
1762sbc8560_33_config \
1763sbc8560_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001764 @mkdir -p $(obj)include
wdenk8b07a112004-07-10 21:45:47 +00001765 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001766 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001767 echo "... 66 MHz PCI" ; \
1768 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001769 >$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001770 echo "... 33 MHz PCI" ; \
1771 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001772 @$(MKCONFIG) -a sbc8560 ppc mpc85xx sbc8560
wdenk8b07a112004-07-10 21:45:47 +00001773
wdenk03f5c552004-10-10 21:21:55 +00001774stxgp3_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001775 @$(MKCONFIG) $(@:_config=) ppc mpc85xx stxgp3
wdenk03f5c552004-10-10 21:21:55 +00001776
Stefan Roesed96f41e2005-11-30 13:06:40 +01001777TQM8540_config \
1778TQM8541_config \
1779TQM8555_config \
1780TQM8560_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001781 @mkdir -p $(obj)include
Wolfgang Denka889bd22005-12-06 15:02:31 +01001782 @CTYPE=$(subst TQM,,$(@:_config=)); \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001783 >$(obj)include/config.h ; \
Stefan Roesed96f41e2005-11-30 13:06:40 +01001784 echo "... TQM"$${CTYPE}; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001785 echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \
1786 echo "#define CONFIG_TQM$${CTYPE}">>$(obj)include/config.h; \
1787 echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \
1788 echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>$(obj)include/config.h; \
1789 echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>$(obj)include/config.h
1790 @$(MKCONFIG) -a TQM85xx ppc mpc85xx tqm85xx
wdenkf5c5ef42005-04-05 16:26:47 +00001791
wdenk42d1f032003-10-15 23:53:47 +00001792#########################################################################
Jon Loeligerdebb7352006-04-26 17:58:56 -05001793## MPC86xx Systems
1794#########################################################################
1795
1796MPC8641HPCN_config: unconfig
1797 @./mkconfig $(@:_config=) ppc mpc86xx mpc8641hpcn
1798
1799
1800#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001801## 74xx/7xx Systems
1802#########################################################################
1803
wdenkc7de8292002-11-19 11:04:11 +00001804AmigaOneG3SE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001805 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
wdenkc7de8292002-11-19 11:04:11 +00001806
wdenk15647dc2003-10-09 19:00:25 +00001807BAB7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001808 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx bab7xx eltec
wdenk15647dc2003-10-09 19:00:25 +00001809
stroesec419d1d2004-12-16 18:44:40 +00001810CPCI750_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001811 @$(MKCONFIG) CPCI750 ppc 74xx_7xx cpci750 esd
stroesec419d1d2004-12-16 18:44:40 +00001812
wdenk3a473b22004-01-03 00:43:19 +00001813DB64360_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001814 @$(MKCONFIG) DB64360 ppc 74xx_7xx db64360 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001815
1816DB64460_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001817 @$(MKCONFIG) DB64460 ppc 74xx_7xx db64460 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001818
wdenk15647dc2003-10-09 19:00:25 +00001819ELPPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001820 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx elppc eltec
wdenk15647dc2003-10-09 19:00:25 +00001821
wdenk7ebf7442002-11-02 23:17:16 +00001822EVB64260_config \
1823EVB64260_750CX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001824 @$(MKCONFIG) EVB64260 ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001825
wdenk15647dc2003-10-09 19:00:25 +00001826P3G4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001827 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001828
Stefan Roese1eac2a72006-11-29 15:42:37 +01001829p3m750_config \
1830p3m7448_config: unconfig
1831 @mkdir -p $(obj)include
1832 @if [ "$(findstring 750_,$@)" ] ; then \
1833 echo "#define CONFIG_P3M750" >>$(obj)include/config.h ; \
1834 else \
1835 echo "#define CONFIG_P3M7448" >>$(obj)include/config.h ; \
1836 fi
1837 @$(MKCONFIG) -a p3mx ppc 74xx_7xx p3mx prodrive
1838
wdenk7ebf7442002-11-02 23:17:16 +00001839PCIPPC2_config \
1840PCIPPC6_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001841 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx pcippc2
wdenk7ebf7442002-11-02 23:17:16 +00001842
wdenk15647dc2003-10-09 19:00:25 +00001843ZUMA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001844 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk12f34242003-09-02 22:48:03 +00001845
Heiko Schocherf5e0d032006-06-19 11:02:41 +02001846ppmc7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001847 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx ppmc7xx
Wolfgang Denkb87dfd22006-07-19 13:50:38 +02001848
wdenk7ebf7442002-11-02 23:17:16 +00001849#========================================================================
1850# ARM
1851#========================================================================
1852#########################################################################
1853## StrongARM Systems
1854#########################################################################
1855
wdenkea66bc82004-04-15 23:23:39 +00001856assabet_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001857 @$(MKCONFIG) $(@:_config=) arm sa1100 assabet
wdenkea66bc82004-04-15 23:23:39 +00001858
wdenk7ebf7442002-11-02 23:17:16 +00001859dnp1110_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001860 @$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110
wdenk7ebf7442002-11-02 23:17:16 +00001861
wdenk855a4962004-03-14 18:23:55 +00001862gcplus_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001863 @$(MKCONFIG) $(@:_config=) arm sa1100 gcplus
wdenk855a4962004-03-14 18:23:55 +00001864
1865lart_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001866 @$(MKCONFIG) $(@:_config=) arm sa1100 lart
wdenk855a4962004-03-14 18:23:55 +00001867
wdenk7ebf7442002-11-02 23:17:16 +00001868shannon_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001869 @$(MKCONFIG) $(@:_config=) arm sa1100 shannon
wdenk7ebf7442002-11-02 23:17:16 +00001870
1871#########################################################################
wdenk2e5983d2003-07-15 20:04:06 +00001872## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00001873#########################################################################
1874
wdenkb0639ca2003-09-17 22:48:07 +00001875xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk43d96162003-03-06 00:02:04 +00001876
wdenk3ff02c22004-06-09 15:25:53 +00001877xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
wdenk63e73c92004-02-23 22:22:28 +00001878
wdenka56bd922004-06-06 23:13:55 +00001879xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1880
wdenka85f9f22005-04-06 13:52:31 +00001881at91rm9200dk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001882 @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001883
1884cmc_pu2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001885 @$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001886
Wolfgang Denk645da512005-10-05 02:00:09 +02001887csb637_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001888 @$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200
Wolfgang Denk645da512005-10-05 02:00:09 +02001889
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001890mp2usb_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001891 @$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001892
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001893
Wolfgang Denk74f43042005-09-25 01:48:28 +02001894########################################################################
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001895## ARM Integrator boards - see doc/README-integrator for more info.
1896integratorap_config \
1897ap_config \
1898ap966_config \
1899ap922_config \
1900ap922_XA10_config \
1901ap7_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01001902ap720t_config \
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001903ap920t_config \
1904ap926ejs_config \
1905ap946es_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001906 @board/integratorap/split_by_variant.sh $@
wdenk3d3befa2004-03-14 15:06:13 +00001907
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001908integratorcp_config \
1909cp_config \
1910cp920t_config \
1911cp926ejs_config \
1912cp946es_config \
1913cp1136_config \
1914cp966_config \
1915cp922_config \
1916cp922_XA10_config \
1917cp1026_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001918 @board/integratorcp/split_by_variant.sh $@
wdenk25d67122004-12-10 11:40:40 +00001919
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001920kb9202_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001921 @$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001922
wdenkf832d8a2004-06-10 21:55:33 +00001923lpd7a400_config \
1924lpd7a404_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001925 @$(MKCONFIG) $(@:_config=) arm lh7a40x lpd7a40x
wdenk3d3befa2004-03-14 15:06:13 +00001926
wdenk281e00a2004-08-01 22:48:16 +00001927mx1ads_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001928 @$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001929
1930mx1fs2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001931 @$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001932
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001933netstar_32_config \
1934netstar_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001935 @mkdir -p $(obj)include
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001936 @if [ "$(findstring _32_,$@)" ] ; then \
1937 echo "... 32MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001938 echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001939 else \
1940 echo "... 64MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001941 echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001942 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001943 @$(MKCONFIG) -a netstar arm arm925t netstar
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001944
wdenk2e5983d2003-07-15 20:04:06 +00001945omap1510inn_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001946 @$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn
wdenk2e5983d2003-07-15 20:04:06 +00001947
wdenk1eaeb582004-06-08 00:22:43 +00001948omap5912osk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001949 @$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk NULL omap
wdenk1eaeb582004-06-08 00:22:43 +00001950
wdenk63e73c92004-02-23 22:22:28 +00001951omap1610inn_config \
1952omap1610inn_cs0boot_config \
1953omap1610inn_cs3boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00001954omap1610inn_cs_autoboot_config \
wdenk63e73c92004-02-23 22:22:28 +00001955omap1610h2_config \
1956omap1610h2_cs0boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00001957omap1610h2_cs3boot_config \
1958omap1610h2_cs_autoboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001959 @mkdir -p $(obj)include
wdenk63e73c92004-02-23 22:22:28 +00001960 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001961 echo "#define CONFIG_CS0_BOOT" >> .$(obj)/include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00001962 echo "... configured for CS0 boot"; \
wdenk3ff02c22004-06-09 15:25:53 +00001963 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001964 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)./include/config.h ; \
wdenk3ff02c22004-06-09 15:25:53 +00001965 echo "... configured for CS_AUTO boot"; \
wdenk63e73c92004-02-23 22:22:28 +00001966 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001967 echo "#define CONFIG_CS3_BOOT" >> $(obj)./include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00001968 echo "... configured for CS3 boot"; \
wdenk63e73c92004-02-23 22:22:28 +00001969 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02001970 @$(MKCONFIG) -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap
wdenk6f213472003-08-29 22:00:43 +00001971
wdenka56bd922004-06-06 23:13:55 +00001972omap730p2_config \
1973omap730p2_cs0boot_config \
1974omap730p2_cs3boot_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001975 @mkdir -p $(obj)include
wdenka56bd922004-06-06 23:13:55 +00001976 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001977 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00001978 echo "... configured for CS0 boot"; \
1979 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001980 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00001981 echo "... configured for CS3 boot"; \
1982 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02001983 @$(MKCONFIG) -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap
wdenka56bd922004-06-06 23:13:55 +00001984
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02001985sbc2410x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001986 @$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02001987
wdenk281e00a2004-08-01 22:48:16 +00001988scb9328_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001989 @$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001990
wdenk7ebf7442002-11-02 23:17:16 +00001991smdk2400_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001992 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001993
1994smdk2410_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001995 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001996
wdenk2d24a3a2004-06-09 21:50:45 +00001997SX1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001998 @$(MKCONFIG) $(@:_config=) arm arm925t sx1
wdenk2d24a3a2004-06-09 21:50:45 +00001999
wdenkb2001f22003-12-20 22:45:10 +00002000# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk43d96162003-03-06 00:02:04 +00002001trab_config \
wdenkb0639ca2003-09-17 22:48:07 +00002002trab_bigram_config \
2003trab_bigflash_config \
wdenkf54ebdf2003-09-17 15:10:32 +00002004trab_old_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002005 @mkdir -p $(obj)include
2006 @mkdir -p $(obj)board/trab
2007 @ >$(obj)include/config.h
wdenkb0639ca2003-09-17 22:48:07 +00002008 @[ -z "$(findstring _bigram,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002009 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2010 echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002011 echo "... with 8 MB Flash, 32 MB RAM" ; \
2012 }
2013 @[ -z "$(findstring _bigflash,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002014 { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \
2015 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002016 echo "... with 16 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002017 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenkb0639ca2003-09-17 22:48:07 +00002018 }
wdenkf54ebdf2003-09-17 15:10:32 +00002019 @[ -z "$(findstring _old,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002020 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2021 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +00002022 echo "... with 8 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002023 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenk43d96162003-03-06 00:02:04 +00002024 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002025 @$(MKCONFIG) -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002026
wdenk1cb8e982003-03-06 21:55:29 +00002027VCMA9_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002028 @$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0
wdenk1cb8e982003-03-06 21:55:29 +00002029
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002030#========================================================================
2031# ARM supplied Versatile development boards
2032#========================================================================
2033versatile_config \
2034versatileab_config \
2035versatilepb_config : unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02002036 @board/versatile/split_by_variant.sh $@
wdenk074cff02004-02-24 00:16:43 +00002037
wdenk3c2b3d42005-04-05 23:32:21 +00002038voiceblue_smallflash_config \
2039voiceblue_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002040 @mkdir -p $(obj)include
2041 @mkdir -p $(obj)board/voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002042 @if [ "$(findstring _smallflash_,$@)" ] ; then \
2043 echo "... boot from lower flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002044 echo "#define VOICEBLUE_SMALL_FLASH" >>$(obj)include/config.h ; \
2045 echo "VOICEBLUE_SMALL_FLASH=y" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00002046 else \
2047 echo "... boot from upper flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002048 >$(obj)include/config.h ; \
2049 echo "VOICEBLUE_SMALL_FLASH=n" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00002050 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02002051 @$(MKCONFIG) -a voiceblue arm arm925t voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002052
wdenk16b013e2005-05-19 22:46:33 +00002053cm4008_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002054 @$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002055
2056cm41xx_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002057 @$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002058
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002059gth2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002060 @mkdir -p $(obj)include
2061 @ >$(obj)include/config.h
2062 @echo "#define CONFIG_GTH2 1" >>$(obj)include/config.h
2063 @$(MKCONFIG) -a gth2 mips mips gth2
Wolfgang Denk0c32d962006-06-16 17:32:31 +02002064
wdenk074cff02004-02-24 00:16:43 +00002065#########################################################################
2066## S3C44B0 Systems
2067#########################################################################
2068
2069B2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002070 @$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave
wdenk074cff02004-02-24 00:16:43 +00002071
wdenk7ebf7442002-11-02 23:17:16 +00002072#########################################################################
2073## ARM720T Systems
2074#########################################################################
2075
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002076armadillo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002077 @$(MKCONFIG) $(@:_config=) arm arm720t armadillo
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002078
wdenk7ebf7442002-11-02 23:17:16 +00002079ep7312_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002080 @$(MKCONFIG) $(@:_config=) arm arm720t ep7312
wdenk7ebf7442002-11-02 23:17:16 +00002081
wdenk2d24a3a2004-06-09 21:50:45 +00002082impa7_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002083 @$(MKCONFIG) $(@:_config=) arm arm720t impa7
wdenk2d24a3a2004-06-09 21:50:45 +00002084
wdenk2d1a5372004-02-23 19:30:57 +00002085modnet50_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002086 @$(MKCONFIG) $(@:_config=) arm arm720t modnet50
wdenk2d1a5372004-02-23 19:30:57 +00002087
wdenk39539882004-07-01 16:30:44 +00002088evb4510_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002089 @$(MKCONFIG) $(@:_config=) arm arm720t evb4510
wdenk39539882004-07-01 16:30:44 +00002090
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002091lpc2292sodimm_config: unconfig
2092 @$(MKCONFIG) $(@:_config=) arm arm720t lpc2292sodimm
2093
wdenk7ebf7442002-11-02 23:17:16 +00002094#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002095## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00002096#########################################################################
2097
wdenk20787e22005-04-06 00:04:16 +00002098adsvix_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002099 @$(MKCONFIG) $(@:_config=) arm pxa adsvix
wdenk20787e22005-04-06 00:04:16 +00002100
wdenkfabd46a2004-07-10 23:11:10 +00002101cerf250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002102 @$(MKCONFIG) $(@:_config=) arm pxa cerf250
wdenkfabd46a2004-07-10 23:11:10 +00002103
wdenk7ebf7442002-11-02 23:17:16 +00002104cradle_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002105 @$(MKCONFIG) $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00002106
2107csb226_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002108 @$(MKCONFIG) $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00002109
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002110delta_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002111 @$(MKCONFIG) $(@:_config=) arm pxa delta
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002112
wdenk43d96162003-03-06 00:02:04 +00002113innokom_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002114 @$(MKCONFIG) $(@:_config=) arm pxa innokom
wdenk43d96162003-03-06 00:02:04 +00002115
wdenk2d5b5612003-10-14 19:43:55 +00002116ixdp425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002117 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
wdenk2d5b5612003-10-14 19:43:55 +00002118
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002119ixdpg425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002120 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002121
wdenk43d96162003-03-06 00:02:04 +00002122lubbock_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002123 @$(MKCONFIG) $(@:_config=) arm pxa lubbock
wdenk43d96162003-03-06 00:02:04 +00002124
Heiko Schocher5720df72006-05-02 07:51:46 +02002125pleb2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002126 @$(MKCONFIG) $(@:_config=) arm pxa pleb2
Heiko Schocher5720df72006-05-02 07:51:46 +02002127
wdenk52f52c12003-06-19 23:04:19 +00002128logodl_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002129 @$(MKCONFIG) $(@:_config=) arm pxa logodl
wdenk52f52c12003-06-19 23:04:19 +00002130
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002131pdnb3_config \
2132scpu_config: unconfig
2133 @if [ "$(findstring scpu_,$@)" ] ; then \
2134 echo "#define CONFIG_SCPU" >>include/config.h ; \
2135 echo "... on SCPU board variant" ; \
2136 else \
2137 >include/config.h ; \
2138 fi
2139 @$(MKCONFIG) -a pdnb3 arm ixp pdnb3 prodrive
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002140
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002141pxa255_idp_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002142 @$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002143
wdenk3e386912003-04-05 00:53:31 +00002144wepep250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002145 @$(MKCONFIG) $(@:_config=) arm pxa wepep250
wdenk3e386912003-04-05 00:53:31 +00002146
wdenk4ec3a7f2004-09-28 16:44:41 +00002147xaeniax_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002148 @$(MKCONFIG) $(@:_config=) arm pxa xaeniax
wdenk4ec3a7f2004-09-28 16:44:41 +00002149
wdenkefa329c2004-03-23 20:18:25 +00002150xm250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002151 @$(MKCONFIG) $(@:_config=) arm pxa xm250
wdenkefa329c2004-03-23 20:18:25 +00002152
wdenkca0e7742004-06-09 15:37:23 +00002153xsengine_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002154 @$(MKCONFIG) $(@:_config=) arm pxa xsengine
wdenkca0e7742004-06-09 15:37:23 +00002155
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002156zylonite_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002157 @$(MKCONFIG) $(@:_config=) arm pxa zylonite
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002158
wdenk8ed96042005-01-09 23:16:25 +00002159#########################################################################
2160## ARM1136 Systems
2161#########################################################################
2162omap2420h4_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002163 @$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4
wdenk8ed96042005-01-09 23:16:25 +00002164
wdenk2262cfe2002-11-18 00:14:45 +00002165#========================================================================
2166# i386
2167#========================================================================
2168#########################################################################
wdenk1cb8e982003-03-06 21:55:29 +00002169## AMD SC520 CDP
wdenk2262cfe2002-11-18 00:14:45 +00002170#########################################################################
2171sc520_cdp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002172 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp
wdenk2262cfe2002-11-18 00:14:45 +00002173
wdenk7a8e9bed2003-05-31 18:35:21 +00002174sc520_spunk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002175 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002176
2177sc520_spunk_rel_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002178 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002179
wdenk43d96162003-03-06 00:02:04 +00002180#========================================================================
2181# MIPS
2182#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00002183#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002184## MIPS32 4Kc
2185#########################################################################
2186
wdenke0ac62d2003-08-17 18:55:18 +00002187xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
2188
2189incaip_100MHz_config \
2190incaip_133MHz_config \
2191incaip_150MHz_config \
2192incaip_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002193 @mkdir -p $(obj)include
2194 @ >$(obj)include/config.h
wdenke0ac62d2003-08-17 18:55:18 +00002195 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002196 { echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002197 echo "... with 100MHz system clock" ; \
2198 }
2199 @[ -z "$(findstring _133MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002200 { echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002201 echo "... with 133MHz system clock" ; \
2202 }
2203 @[ -z "$(findstring _150MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002204 { echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002205 echo "... with 150MHz system clock" ; \
2206 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002207 @$(MKCONFIG) -a $(call xtract_incaip,$@) mips mips incaip
wdenke0ac62d2003-08-17 18:55:18 +00002208
wdenkf4863a72004-02-07 01:27:10 +00002209tb0229_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002210 @$(MKCONFIG) $(@:_config=) mips mips tb0229
wdenkf4863a72004-02-07 01:27:10 +00002211
wdenke0ac62d2003-08-17 18:55:18 +00002212#########################################################################
wdenk69459792004-05-29 16:53:29 +00002213## MIPS32 AU1X00
2214#########################################################################
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002215dbau1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002216 @mkdir -p $(obj)include
2217 @ >$(obj)include/config.h
2218 @echo "#define CONFIG_DBAU1000 1" >>$(obj)include/config.h
2219 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002220
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002221dbau1100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002222 @mkdir -p $(obj)include
2223 @ >$(obj)include/config.h
2224 @echo "#define CONFIG_DBAU1100 1" >>$(obj)include/config.h
2225 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002226
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002227dbau1500_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002228 @mkdir -p $(obj)include
2229 @ >$(obj)include/config.h
2230 @echo "#define CONFIG_DBAU1500 1" >>$(obj)include/config.h
2231 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002232
wdenkff36fd82005-01-09 22:28:56 +00002233dbau1550_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002234 @mkdir -p $(obj)include
2235 @ >$(obj)include/config.h
2236 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2237 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002238
2239dbau1550_el_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002240 @mkdir -p $(obj)include
2241 @ >$(obj)include/config.h
2242 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2243 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002244
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002245pb1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002246 @mkdir -p $(obj)include
2247 @ >$(obj)include/config.h
2248 @echo "#define CONFIG_PB1000 1" >>$(obj)include/config.h
2249 @$(MKCONFIG) -a pb1x00 mips mips pb1x00
Wolfgang Denk265817c2005-09-25 00:53:22 +02002250
wdenk69459792004-05-29 16:53:29 +00002251#########################################################################
wdenke0ac62d2003-08-17 18:55:18 +00002252## MIPS64 5Kc
2253#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002254
wdenk3e386912003-04-05 00:53:31 +00002255purple_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002256 @$(MKCONFIG) $(@:_config=) mips mips purple
wdenk43d96162003-03-06 00:02:04 +00002257
wdenk4a551702003-10-08 23:26:14 +00002258#========================================================================
2259# Nios
2260#========================================================================
2261#########################################################################
2262## Nios32
2263#########################################################################
2264
wdenkc935d3b2004-01-03 19:43:48 +00002265DK1C20_safe_32_config \
2266DK1C20_standard_32_config \
wdenk4a551702003-10-08 23:26:14 +00002267DK1C20_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002268 @mkdir -p $(obj)include
2269 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002270 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002271 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002272 echo "... NIOS 'safe_32' configuration" ; \
2273 }
2274 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002275 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002276 echo "... NIOS 'standard_32' configuration" ; \
2277 }
2278 @[ -z "$(findstring DK1C20_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002279 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002280 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2281 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002282 @$(MKCONFIG) -a DK1C20 nios nios dk1c20 altera
wdenkc935d3b2004-01-03 19:43:48 +00002283
2284DK1S10_safe_32_config \
2285DK1S10_standard_32_config \
wdenkec4c5442004-02-09 23:12:24 +00002286DK1S10_mtx_ldk_20_config \
wdenkc935d3b2004-01-03 19:43:48 +00002287DK1S10_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002288 @mkdir -p $(obj)include
2289 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002290 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002291 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002292 echo "... NIOS 'safe_32' configuration" ; \
2293 }
2294 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002295 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002296 echo "... NIOS 'standard_32' configuration" ; \
2297 }
wdenkec4c5442004-02-09 23:12:24 +00002298 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002299 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>$(obj)include/config.h ; \
wdenkec4c5442004-02-09 23:12:24 +00002300 echo "... NIOS 'mtx_ldk_20' configuration" ; \
2301 }
wdenkc935d3b2004-01-03 19:43:48 +00002302 @[ -z "$(findstring DK1S10_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002303 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002304 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2305 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002306 @$(MKCONFIG) -a DK1S10 nios nios dk1s10 altera
wdenk4a551702003-10-08 23:26:14 +00002307
wdenkaaf224a2004-03-14 15:20:55 +00002308ADNPESC1_DNPEVA2_base_32_config \
2309ADNPESC1_base_32_config \
2310ADNPESC1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002311 @mkdir -p $(obj)include
2312 @ >$(obj)include/config.h
wdenkaaf224a2004-03-14 15:20:55 +00002313 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002314 { echo "#define CONFIG_DNPEVA2 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002315 echo "... DNP/EVA2 configuration" ; \
2316 }
wdenkaaf224a2004-03-14 15:20:55 +00002317 @[ -z "$(findstring _base_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002318 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002319 echo "... NIOS 'base_32' configuration" ; \
2320 }
wdenkaaf224a2004-03-14 15:20:55 +00002321 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002322 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002323 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
2324 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002325 @$(MKCONFIG) -a ADNPESC1 nios nios adnpesc1 ssv
wdenkaaf224a2004-03-14 15:20:55 +00002326
wdenk5c952cf2004-10-10 21:27:30 +00002327#########################################################################
2328## Nios-II
2329#########################################################################
2330
Scott McNutt9cc83372006-06-08 13:37:39 -04002331EP1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002332 @$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002333
2334EP1S10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002335 @$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002336
2337EP1S40_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002338 @$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002339
wdenk5c952cf2004-10-10 21:27:30 +00002340PK1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002341 @$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent
wdenk5c952cf2004-10-10 21:27:30 +00002342
2343PCI5441_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002344 @$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent
wdenk4a551702003-10-08 23:26:14 +00002345
wdenk507bbe32004-04-18 21:13:41 +00002346#========================================================================
2347# MicroBlaze
2348#========================================================================
2349#########################################################################
2350## Microblaze
2351#########################################################################
2352suzaku_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002353 @mkdir -p $(obj)include
2354 @ >$(obj)include/config.h
2355 @echo "#define CONFIG_SUZAKU 1" >> $(obj)include/config.h
2356 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
wdenk507bbe32004-04-18 21:13:41 +00002357
wdenk3e386912003-04-05 00:53:31 +00002358#########################################################################
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002359## Blackfin
2360#########################################################################
Aubrey.Lief26a082007-03-09 13:40:56 +08002361bf533-ezkit_config: unconfig
2362 @$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-ezkit
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002363
Aubrey.Lief26a082007-03-09 13:40:56 +08002364bf533-stamp_config: unconfig
2365 @$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-stamp
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002366
Aubrey Li26bf7de2007-03-19 01:24:52 +08002367bf537-stamp_config: unconfig
2368 @$(MKCONFIG) $(@:_config=) blackfin bf537 bf537-stamp
2369
Aubrey Li65458982007-03-20 18:16:24 +08002370bf561-ezkit_config: unconfig
2371 @$(MKCONFIG) $(@:_config=) blackfin bf561 bf561-ezkit
2372
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02002373#========================================================================
2374# AVR32
2375#========================================================================
2376#########################################################################
2377## AT32AP7xxx
2378#########################################################################
2379
2380atstk1002_config : unconfig
2381 @./mkconfig $(@:_config=) avr32 at32ap atstk1000 atmel at32ap7000
2382
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002383#########################################################################
2384#########################################################################
wdenk3e386912003-04-05 00:53:31 +00002385#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00002386
2387clean:
Marian Balakowiczf9328632006-09-01 19:49:50 +02002388 find $(OBJTREE) -type f \
wdenk7ebf7442002-11-02 23:17:16 +00002389 \( -name 'core' -o -name '*.bak' -o -name '*~' \
2390 -o -name '*.o' -o -name '*.a' \) -print \
2391 | xargs rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002392 rm -f $(obj)examples/hello_world $(obj)examples/timer \
2393 $(obj)examples/eepro100_eeprom $(obj)examples/sched \
2394 $(obj)examples/mem_to_mem_idma2intr $(obj)examples/82559_eeprom \
Wolfgang Denkd214fbb2006-09-13 10:29:32 +02002395 $(obj)examples/smc91111_eeprom $(obj)examples/interrupt \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002396 $(obj)examples/test_burst
2397 rm -f $(obj)tools/img2srec $(obj)tools/mkimage $(obj)tools/envcrc \
2398 $(obj)tools/gen_eth_addr
2399 rm -f $(obj)tools/mpc86x_clk $(obj)tools/ncb
2400 rm -f $(obj)tools/easylogo/easylogo $(obj)tools/bmp_logo
2401 rm -f $(obj)tools/gdb/astest $(obj)tools/gdb/gdbcont $(obj)tools/gdb/gdbsend
2402 rm -f $(obj)tools/env/fw_printenv $(obj)tools/env/fw_setenv
2403 rm -f $(obj)board/cray/L1/bootscript.c $(obj)board/cray/L1/bootscript.image
2404 rm -f $(obj)board/netstar/eeprom $(obj)board/netstar/crcek $(obj)board/netstar/crcit
2405 rm -f $(obj)board/netstar/*.srec $(obj)board/netstar/*.bin
2406 rm -f $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom
2407 rm -f $(obj)board/integratorap/u-boot.lds $(obj)board/integratorcp/u-boot.lds
Aubrey Li8440bb12007-03-12 00:25:14 +08002408 rm -f $(obj)board/bf533-ezkit/u-boot.lds $(obj)board/bf533-stamp/u-boot.lds
Aubrey Li65458982007-03-20 18:16:24 +08002409 rm -f $(obj)board/bf537-stamp/u-boot.lds $(obj)board/bf561-ezkit/u-boot.lds
Marian Balakowiczf9328632006-09-01 19:49:50 +02002410 rm -f $(obj)include/bmp_logo.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002411 rm -f $(obj)nand_spl/u-boot-spl $(obj)nand_spl/u-boot-spl.map
wdenk7ebf7442002-11-02 23:17:16 +00002412
2413clobber: clean
Marian Balakowiczf9328632006-09-01 19:49:50 +02002414 find $(OBJTREE) -type f \( -name .depend \
wdenk4c0d4c32004-06-09 17:34:58 +00002415 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
2416 -print0 \
2417 | xargs -0 rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002418 rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS $(obj)include/version_autogenerated.h
2419 rm -fr $(obj)*.*~
2420 rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL)
2421 rm -f $(obj)tools/crc32.c $(obj)tools/environment.c $(obj)tools/env/crc32.c
2422 rm -f $(obj)tools/inca-swap-bytes $(obj)cpu/mpc824x/bedbug_603e.c
2423 rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002424 [ ! -d $(OBJTREE)/nand_spl ] || find $(obj)nand_spl -lname "*" -print | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +00002425
Marian Balakowiczf9328632006-09-01 19:49:50 +02002426ifeq ($(OBJTREE),$(SRCTREE))
wdenk7ebf7442002-11-02 23:17:16 +00002427mrproper \
2428distclean: clobber unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002429else
2430mrproper \
2431distclean: clobber unconfig
2432 rm -rf $(OBJTREE)/*
2433endif
wdenk7ebf7442002-11-02 23:17:16 +00002434
2435backup:
2436 F=`basename $(TOPDIR)` ; cd .. ; \
2437 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
2438
2439#########################################################################