blob: 8282c71d1540a0fa0171855332866c1b60ffcec3 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
Wolfgang Denk881a87e2006-02-21 17:33:04 +01002# (C) Copyright 2000-2006
wdenk7ebf7442002-11-02 23:17:16 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
Wolfgang Denk45a212c2006-07-19 17:52:30 +020010# published by the Free Software Foundatio; either version 2 of
wdenk7ebf7442002-11-02 23:17:16 +000011# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
Wolfgang Denk881a87e2006-02-21 17:33:04 +010024VERSION = 1
Wolfgang Denkf4eb5452007-01-07 00:13:11 +010025PATCHLEVEL = 2
26SUBLEVEL = 0
Wolfgang Denk881a87e2006-02-21 17:33:04 +010027EXTRAVERSION =
28U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
Marian Balakowiczf9328632006-09-01 19:49:50 +020029VERSION_FILE = $(obj)include/version_autogenerated.h
Wolfgang Denk881a87e2006-02-21 17:33:04 +010030
wdenk7ebf7442002-11-02 23:17:16 +000031HOSTARCH := $(shell uname -m | \
32 sed -e s/i.86/i386/ \
33 -e s/sun4u/sparc64/ \
34 -e s/arm.*/arm/ \
35 -e s/sa110/arm/ \
36 -e s/powerpc/ppc/ \
37 -e s/macppc/ppc/)
38
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020039HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
wdenk7ebf7442002-11-02 23:17:16 +000040 sed -e 's/\(cygwin\).*/cygwin/')
41
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020042export HOSTARCH HOSTOS
wdenk7ebf7442002-11-02 23:17:16 +000043
44# Deal with colliding definitions from tcsh etc.
45VENDOR=
46
47#########################################################################
Marian Balakowiczf9328632006-09-01 19:49:50 +020048#
49# U-boot build supports producing a object files to the separate external
50# directory. Two use cases are supported:
Stefan Roese887e2ec2006-09-07 11:51:23 +020051#
Marian Balakowiczf9328632006-09-01 19:49:50 +020052# 1) Add O= to the make command line
53# 'make O=/tmp/build all'
54#
55# 2) Set environement variable BUILD_DIR to point to the desired location
56# 'export BUILD_DIR=/tmp/build'
57# 'make'
58#
59# The second approach can also be used with a MAKEALL script
60# 'export BUILD_DIR=/tmp/build'
61# './MAKEALL'
Stefan Roese887e2ec2006-09-07 11:51:23 +020062#
Marian Balakowiczf9328632006-09-01 19:49:50 +020063# Command line 'O=' setting overrides BUILD_DIR environent variable.
Stefan Roese887e2ec2006-09-07 11:51:23 +020064#
Marian Balakowiczf9328632006-09-01 19:49:50 +020065# When none of the above methods is used the local build is performed and
66# the object files are placed in the source directory.
Stefan Roese887e2ec2006-09-07 11:51:23 +020067#
wdenk7ebf7442002-11-02 23:17:16 +000068
Marian Balakowiczf9328632006-09-01 19:49:50 +020069ifdef O
70ifeq ("$(origin O)", "command line")
71BUILD_DIR := $(O)
72endif
73endif
wdenk7ebf7442002-11-02 23:17:16 +000074
Marian Balakowiczf9328632006-09-01 19:49:50 +020075ifneq ($(BUILD_DIR),)
76saved-output := $(BUILD_DIR)
Marian Balakowicz4f0645e2006-09-07 12:05:53 +020077
78# Attempt to create a output directory.
79$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
80
Stefan Roesea73c8db2006-09-12 08:49:07 +020081# Verify if it was successful.
Marian Balakowiczf9328632006-09-01 19:49:50 +020082BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
83$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
84endif # ifneq ($(BUILD_DIR),)
85
86OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
87SRCTREE := $(CURDIR)
88TOPDIR := $(SRCTREE)
89LNDIR := $(OBJTREE)
90export TOPDIR SRCTREE OBJTREE
91
92MKCONFIG := $(SRCTREE)/mkconfig
93export MKCONFIG
94
95ifneq ($(OBJTREE),$(SRCTREE))
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010096REMOTE_BUILD := 1
Marian Balakowiczf9328632006-09-01 19:49:50 +020097export REMOTE_BUILD
98endif
99
100# $(obj) and (src) are defined in config.mk but here in main Makefile
101# we also need them before config.mk is included which is the case for
102# some targets like unconfig, clean, clobber, distclean, etc.
103ifneq ($(OBJTREE),$(SRCTREE))
104obj := $(OBJTREE)/
105src := $(SRCTREE)/
106else
107obj :=
108src :=
Stefan Roese887e2ec2006-09-07 11:51:23 +0200109endif
Marian Balakowiczf9328632006-09-01 19:49:50 +0200110export obj src
111
112#########################################################################
113
114ifeq ($(OBJTREE)/include/config.mk,$(wildcard $(OBJTREE)/include/config.mk))
115
wdenk7ebf7442002-11-02 23:17:16 +0000116# load ARCH, BOARD, and CPU configuration
Marian Balakowiczf9328632006-09-01 19:49:50 +0200117include $(OBJTREE)/include/config.mk
wdenk1d9f4102004-10-09 22:21:29 +0000118export ARCH CPU BOARD VENDOR SOC
Marian Balakowiczf9328632006-09-01 19:49:50 +0200119
wdenk7ebf7442002-11-02 23:17:16 +0000120ifndef CROSS_COMPILE
Wolfgang Denka5284ef2007-03-06 18:01:47 +0100121ifeq ($(HOSTARCH),$(ARCH))
wdenk7ebf7442002-11-02 23:17:16 +0000122CROSS_COMPILE =
123else
wdenk7ebf7442002-11-02 23:17:16 +0000124ifeq ($(ARCH),ppc)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500125CROSS_COMPILE = powerpc-linux-
wdenk7ebf7442002-11-02 23:17:16 +0000126endif
127ifeq ($(ARCH),arm)
wdenkdc7c9a12003-03-26 06:55:25 +0000128CROSS_COMPILE = arm-linux-
wdenk7ebf7442002-11-02 23:17:16 +0000129endif
wdenk2262cfe2002-11-18 00:14:45 +0000130ifeq ($(ARCH),i386)
wdenk7a8e9bed2003-05-31 18:35:21 +0000131CROSS_COMPILE = i386-linux-
132endif
wdenk43d96162003-03-06 00:02:04 +0000133ifeq ($(ARCH),mips)
134CROSS_COMPILE = mips_4KC-
135endif
wdenk4a551702003-10-08 23:26:14 +0000136ifeq ($(ARCH),nios)
137CROSS_COMPILE = nios-elf-
138endif
wdenk5c952cf2004-10-10 21:27:30 +0000139ifeq ($(ARCH),nios2)
140CROSS_COMPILE = nios2-elf-
141endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000142ifeq ($(ARCH),m68k)
143CROSS_COMPILE = m68k-elf-
144endif
wdenk507bbe32004-04-18 21:13:41 +0000145ifeq ($(ARCH),microblaze)
146CROSS_COMPILE = mb-
147endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100148ifeq ($(ARCH),blackfin)
Aubrey.Lief26a082007-03-09 13:40:56 +0800149CROSS_COMPILE = bfin-uclinux-
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100150endif
Wolfgang Denk7b64fef2006-10-24 14:21:16 +0200151ifeq ($(ARCH),avr32)
Haavard Skinnemoen5374b362006-11-18 17:24:31 +0100152CROSS_COMPILE = avr32-linux-
Wolfgang Denk7b64fef2006-10-24 14:21:16 +0200153endif
wdenk7ebf7442002-11-02 23:17:16 +0000154endif
155endif
156
157export CROSS_COMPILE
158
Wolfgang Denk92b197f2006-03-12 01:37:50 +0100159# load other configuration
160include $(TOPDIR)/config.mk
161
wdenk7ebf7442002-11-02 23:17:16 +0000162#########################################################################
163# U-Boot objects....order is important (i.e. start must be first)
164
wdenk9fd5e312003-12-07 23:55:12 +0000165OBJS = cpu/$(CPU)/start.o
wdenk2262cfe2002-11-18 00:14:45 +0000166ifeq ($(CPU),i386)
wdenk9fd5e312003-12-07 23:55:12 +0000167OBJS += cpu/$(CPU)/start16.o
168OBJS += cpu/$(CPU)/reset.o
wdenk2262cfe2002-11-18 00:14:45 +0000169endif
wdenk7ebf7442002-11-02 23:17:16 +0000170ifeq ($(CPU),ppc4xx)
wdenk9fd5e312003-12-07 23:55:12 +0000171OBJS += cpu/$(CPU)/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +0000172endif
wdenk42d1f032003-10-15 23:53:47 +0000173ifeq ($(CPU),mpc85xx)
174OBJS += cpu/$(CPU)/resetvec.o
175endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100176ifeq ($(CPU),bf533)
177OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
Aubrey.Lief26a082007-03-09 13:40:56 +0800178OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100179endif
Aubrey Li26bf7de2007-03-19 01:24:52 +0800180ifeq ($(CPU),bf537)
181OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
Aubrey Li65458982007-03-20 18:16:24 +0800182OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
183endif
184ifeq ($(CPU),bf561)
185OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
186OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
wdenk7ebf7442002-11-02 23:17:16 +0000187endif
188
Marian Balakowiczf9328632006-09-01 19:49:50 +0200189OBJS := $(addprefix $(obj),$(OBJS))
190
wdenk9fd5e312003-12-07 23:55:12 +0000191LIBS = lib_generic/libgeneric.a
192LIBS += board/$(BOARDDIR)/lib$(BOARD).a
wdenk7ebf7442002-11-02 23:17:16 +0000193LIBS += cpu/$(CPU)/lib$(CPU).a
wdenk1d9f4102004-10-09 22:21:29 +0000194ifdef SOC
195LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
196endif
Stefan Roese323bfa82007-04-23 12:00:22 +0200197ifeq ($(CPU),ixp)
198LIBS += cpu/ixp/npe/libnpe.a
199endif
wdenk7ebf7442002-11-02 23:17:16 +0000200LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk518e2e12004-03-25 14:59:05 +0000201LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
stroesec419d1d2004-12-16 18:44:40 +0000202 fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a
wdenk7ebf7442002-11-02 23:17:16 +0000203LIBS += net/libnet.a
204LIBS += disk/libdisk.a
205LIBS += rtc/librtc.a
206LIBS += dtt/libdtt.a
207LIBS += drivers/libdrivers.a
Marian Balakowicz6db39702006-04-08 19:08:06 +0200208LIBS += drivers/nand/libnand.a
209LIBS += drivers/nand_legacy/libnand_legacy.a
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)
Sergei Poselenovb4489622007-07-05 08:17:37 +0200217LIBS += $(shell if [ -d post/lib_$(ARCH)/fpu ]; then echo \
218 "post/lib_$(ARCH)/fpu/libpost$(ARCH)fpu.a"; fi)
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100219LIBS += $(shell if [ -d post/cpu/$(CPU) ]; then echo \
220 "post/cpu/$(CPU)/libpost$(CPU).a"; fi)
221LIBS += $(shell if [ -d post/board/$(BOARDDIR) ]; then echo \
222 "post/board/$(BOARDDIR)/libpost$(BOARD).a"; fi)
wdenk7ebf7442002-11-02 23:17:16 +0000223LIBS += common/libcommon.a
Gerald Van Baren7651f8b2007-04-19 23:14:39 -0400224LIBS += libfdt/libfdt.a
Marian Balakowiczf9328632006-09-01 19:49:50 +0200225
226LIBS := $(addprefix $(obj),$(LIBS))
wdenk9fd5e312003-12-07 23:55:12 +0000227.PHONY : $(LIBS)
wdenka8c7c702003-12-06 19:49:23 +0000228
wdenk4f7cb082003-09-11 23:06:34 +0000229# Add GCC lib
wdenk1a344f22005-02-03 23:00:49 +0000230PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
wdenk3d3befa2004-03-14 15:06:13 +0000231
wdenka8c7c702003-12-06 19:49:23 +0000232# The "tools" are needed early, so put this first
233# Don't include stuff already done in $(LIBS)
234SUBDIRS = tools \
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100235 examples
236
wdenkb028f712003-12-07 21:39:28 +0000237.PHONY : $(SUBDIRS)
wdenka8c7c702003-12-06 19:49:23 +0000238
Stefan Roese887e2ec2006-09-07 11:51:23 +0200239ifeq ($(CONFIG_NAND_U_BOOT),y)
240NAND_SPL = nand_spl
241U_BOOT_NAND = $(obj)u-boot-nand.bin
242endif
243
Marian Balakowiczf9328632006-09-01 19:49:50 +0200244__OBJS := $(subst $(obj),,$(OBJS))
245__LIBS := $(subst $(obj),,$(LIBS))
246
wdenk7ebf7442002-11-02 23:17:16 +0000247#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000248#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000249
Heiko Schocher566a4942007-06-22 19:11:54 +0200250ALL += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND)
wdenk7ebf7442002-11-02 23:17:16 +0000251
wdenkbdccc4f2003-08-05 17:43:17 +0000252all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000253
Marian Balakowiczf9328632006-09-01 19:49:50 +0200254$(obj)u-boot.hex: $(obj)u-boot
wdenk6310eb92005-01-09 21:28:15 +0000255 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
256
Marian Balakowiczf9328632006-09-01 19:49:50 +0200257$(obj)u-boot.srec: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000258 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
259
Marian Balakowiczf9328632006-09-01 19:49:50 +0200260$(obj)u-boot.bin: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000261 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
262
Marian Balakowiczf9328632006-09-01 19:49:50 +0200263$(obj)u-boot.img: $(obj)u-boot.bin
wdenkbdccc4f2003-08-05 17:43:17 +0000264 ./tools/mkimage -A $(ARCH) -T firmware -C none \
265 -a $(TEXT_BASE) -e 0 \
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100266 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenkbdccc4f2003-08-05 17:43:17 +0000267 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
268 -d $< $@
269
Heiko Schocher566a4942007-06-22 19:11:54 +0200270$(obj)u-boot.sha1: $(obj)u-boot.bin
Heiko Schocher01159532007-07-14 01:06:58 +0200271 $(obj)tools/ubsha1 $(obj)u-boot.bin
Heiko Schocher566a4942007-06-22 19:11:54 +0200272
Marian Balakowiczf9328632006-09-01 19:49:50 +0200273$(obj)u-boot.dis: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000274 $(OBJDUMP) -d $< > $@
275
Marian Balakowiczf9328632006-09-01 19:49:50 +0200276$(obj)u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
wdenk8bde7f72003-06-27 21:31:46 +0000277 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
Marian Balakowiczf9328632006-09-01 19:49:50 +0200278 cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
279 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000280 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000281
Marian Balakowiczf9328632006-09-01 19:49:50 +0200282$(OBJS):
283 $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@))
284
wdenka8c7c702003-12-06 19:49:23 +0000285$(LIBS):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200286 $(MAKE) -C $(dir $(subst $(obj),,$@))
wdenka8c7c702003-12-06 19:49:23 +0000287
288$(SUBDIRS):
wdenkb028f712003-12-07 21:39:28 +0000289 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000290
Stefan Roese887e2ec2006-09-07 11:51:23 +0200291$(NAND_SPL): version
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200292 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
Stefan Roese887e2ec2006-09-07 11:51:23 +0200293
294$(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200295 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 +0200296
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100297version:
298 @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \
299 echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \
300 echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \
301 $(TOPDIR)) >> $(VERSION_FILE); \
302 echo "\"" >> $(VERSION_FILE)
303
dzu8f713fd2003-08-07 14:20:31 +0000304gdbtools:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200305 $(MAKE) -C tools/gdb all || exit 1
306
307updater:
308 $(MAKE) -C tools/updater all || exit 1
309
310env:
311 $(MAKE) -C tools/env all || exit 1
dzu8f713fd2003-08-07 14:20:31 +0000312
wdenk7ebf7442002-11-02 23:17:16 +0000313depend dep:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200314 for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir _depend ; done
wdenk7ebf7442002-11-02 23:17:16 +0000315
Marian Balakowiczf9328632006-09-01 19:49:50 +0200316tags ctags:
317 ctags -w -o $(OBJTREE)/ctags `find $(SUBDIRS) include \
wdenkbda6c8a2004-04-15 21:58:11 +0000318 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
319 fs/cramfs fs/fat fs/fdos fs/jffs2 \
320 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000321 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
322
323etags:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200324 etags -a -o $(OBJTREE)/etags `find $(SUBDIRS) include \
wdenkeedcd072004-09-08 22:03:11 +0000325 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
326 fs/cramfs fs/fat fs/fdos fs/jffs2 \
327 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000328 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
329
Marian Balakowiczf9328632006-09-01 19:49:50 +0200330$(obj)System.map: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000331 @$(NM) $< | \
332 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200333 sort > $(obj)System.map
wdenk7ebf7442002-11-02 23:17:16 +0000334
335#########################################################################
336else
Marian Balakowiczf9328632006-09-01 19:49:50 +0200337all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
338$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
339$(SUBDIRS) version gdbtools updater env depend \
340dep tags ctags etags $(obj)System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000341 @echo "System not configured - see README" >&2
342 @ exit 1
343endif
344
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200345.PHONY : CHANGELOG
346CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -0400347 git log --no-merges U-Boot-1_1_5.. | \
348 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200349
wdenk7ebf7442002-11-02 23:17:16 +0000350#########################################################################
351
352unconfig:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200353 @rm -f $(obj)include/config.h $(obj)include/config.mk \
354 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp
wdenk7ebf7442002-11-02 23:17:16 +0000355
356#========================================================================
357# PowerPC
358#========================================================================
wdenk0db5bca2003-03-31 17:27:09 +0000359
360#########################################################################
361## MPC5xx Systems
362#########################################################################
363
wdenk5e5f9ed2005-04-13 23:15:10 +0000364canmb_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200365 @$(MKCONFIG) -a canmb ppc mpc5xxx canmb
wdenk5e5f9ed2005-04-13 23:15:10 +0000366
wdenk0db5bca2003-03-31 17:27:09 +0000367cmi_mpc5xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200368 @$(MKCONFIG) $(@:_config=) ppc mpc5xx cmi
wdenk0db5bca2003-03-31 17:27:09 +0000369
wdenkdb01a2e2004-04-15 23:14:49 +0000370PATI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200371 @$(MKCONFIG) $(@:_config=) ppc mpc5xx pati mpl
wdenkb6e4c402004-01-02 16:05:07 +0000372
wdenk7ebf7442002-11-02 23:17:16 +0000373#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000374## MPC5xxx Systems
375#########################################################################
wdenka87589d2005-06-10 10:00:19 +0000376
Wolfgang Denkdafba162005-08-12 00:22:49 +0200377aev_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200378 @$(MKCONFIG) -a aev ppc mpc5xxx tqm5200
Wolfgang Denkdafba162005-08-12 00:22:49 +0200379
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200380BC3450_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200381 @$(MKCONFIG) -a BC3450 ppc mpc5xxx bc3450
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200382
Stefan Roese5e4b3362005-08-22 17:51:53 +0200383cpci5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200384 @$(MKCONFIG) -a cpci5200 ppc mpc5xxx cpci5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200385
wdenka87589d2005-06-10 10:00:19 +0000386hmi1001_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200387 @$(MKCONFIG) hmi1001 ppc mpc5xxx hmi1001
wdenka87589d2005-06-10 10:00:19 +0000388
wdenke35745b2004-04-18 23:32:11 +0000389Lite5200_config \
390Lite5200_LOWBOOT_config \
391Lite5200_LOWBOOT08_config \
392icecube_5200_config \
393icecube_5200_LOWBOOT_config \
394icecube_5200_LOWBOOT08_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100395icecube_5200_DDR_config \
396icecube_5200_DDR_LOWBOOT_config \
wdenke35745b2004-04-18 23:32:11 +0000397icecube_5200_DDR_LOWBOOT08_config \
398icecube_5100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200399 @mkdir -p $(obj)include
400 @mkdir -p $(obj)board/icecube
401 @ >$(obj)include/config.h
wdenk17d704e2004-04-10 20:43:50 +0000402 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
403 { if [ "$(findstring DDR,$@)" ] ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200404 then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
405 else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
wdenk17d704e2004-04-10 20:43:50 +0000406 fi ; \
wdenk5cf9da42003-11-07 13:42:26 +0000407 echo "... with LOWBOOT configuration" ; \
408 }
409 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200410 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
wdenk5cf9da42003-11-07 13:42:26 +0000411 echo "... with 8 MB flash only" ; \
wdenk17d704e2004-04-10 20:43:50 +0000412 echo "... with LOWBOOT configuration" ; \
wdenk5cf9da42003-11-07 13:42:26 +0000413 }
wdenkb2001f22003-12-20 22:45:10 +0000414 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200415 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +0000416 echo "... DDR memory revision" ; \
417 }
wdenkd4ca31c2004-01-02 14:00:00 +0000418 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200419 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenkd4ca31c2004-01-02 14:00:00 +0000420 echo "... with MPC5200 processor" ; \
421 }
wdenka0f2fe52003-10-28 09:14:21 +0000422 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200423 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk945af8d2003-07-16 21:53:01 +0000424 echo "... with MGT5100 processor" ; \
425 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200426 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
wdenk945af8d2003-07-16 21:53:01 +0000427
Heiko Schocher2605e902007-02-16 07:57:42 +0100428jupiter_config: unconfig
429 @$(MKCONFIG) jupiter ppc mpc5xxx jupiter
430
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200431v38b_config: unconfig
Bartlomiej Sieka82d9c9e2006-11-01 01:34:29 +0100432 @./mkconfig -a v38b ppc mpc5xxx v38b
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200433
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100434inka4x0_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200435 @$(MKCONFIG) inka4x0 ppc mpc5xxx inka4x0
wdenk138ff602004-12-16 15:52:40 +0000436
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100437lite5200b_config \
Domen Puncerd3832e82007-04-16 14:00:13 +0200438lite5200b_PM_config \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100439lite5200b_LOWBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200440 @mkdir -p $(obj)include
441 @mkdir -p $(obj)board/icecube
442 @ >$(obj)include/config.h
443 @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100444 @ echo "... DDR memory revision"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200445 @ echo "#define CONFIG_MPC5200" >>$(obj)include/config.h
446 @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h
Domen Puncerd3832e82007-04-16 14:00:13 +0200447 @[ -z "$(findstring _PM_,$@)" ] || \
448 { echo "#define CONFIG_LITE5200B_PM" >>$(obj)include/config.h ; \
449 echo "... with power management (low-power mode) support" ; \
450 }
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100451 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200452 { echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100453 echo "... with LOWBOOT configuration" ; \
454 }
455 @ echo "... with MPC5200B processor"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200456 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100457
Stefan Roesef1ee9822006-03-04 14:57:03 +0100458mcc200_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200459mcc200_SDRAM_config \
460mcc200_highboot_config \
461mcc200_COM12_config \
462mcc200_COM12_SDRAM_config \
Wolfgang Denk113f64e2006-08-25 01:38:04 +0200463mcc200_COM12_highboot_config \
464mcc200_COM12_highboot_SDRAM_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200465mcc200_highboot_SDRAM_config \
466prs200_config \
467prs200_DDR_config \
468prs200_highboot_config \
469prs200_highboot_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200470 @mkdir -p $(obj)include
471 @mkdir -p $(obj)board/mcc200
472 @ >$(obj)include/config.h
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200473 @[ -n "$(findstring highboot,$@)" ] || \
474 { echo "... with lowboot configuration" ; \
Stefan Roesef1ee9822006-03-04 14:57:03 +0100475 }
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200476 @[ -z "$(findstring highboot,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200477 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200478 echo "... with highboot configuration" ; \
479 }
480 @[ -n "$(findstring _SDRAM,$@)" ] || \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200481 { if [ -n "$(findstring mcc200,$@)" ]; \
482 then \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100483 echo "... with DDR" ; \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200484 else \
485 if [ -n "$(findstring _DDR,$@)" ];\
486 then \
487 echo "... with DDR" ; \
488 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200489 echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200490 echo "... with SDRAM" ; \
491 fi; \
492 fi; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200493 }
494 @[ -z "$(findstring _SDRAM,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200495 { echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200496 echo "... with SDRAM" ; \
497 }
Wolfgang Denk463764c2006-08-17 00:36:51 +0200498 @[ -z "$(findstring COM12,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200499 { echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \
Wolfgang Denk463764c2006-08-17 00:36:51 +0200500 echo "... with console on COM12" ; \
501 }
Wolfgang Denked1cf842006-08-24 00:26:42 +0200502 @[ -z "$(findstring prs200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200503 { echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200504 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200505 @$(MKCONFIG) -n $@ -a mcc200 ppc mpc5xxx mcc200
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100506
Stefan Roese8b7d1f02007-01-31 16:37:34 +0100507mecp5200_config: unconfig
508 @$(MKCONFIG) -a mecp5200 ppc mpc5xxx mecp5200 esd
509
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200510o2dnt_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200511 @$(MKCONFIG) o2dnt ppc mpc5xxx o2dnt
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200512
Stefan Roese5e4b3362005-08-22 17:51:53 +0200513pf5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200514 @$(MKCONFIG) pf5200 ppc mpc5xxx pf5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200515
wdenk89394042004-08-04 21:56:49 +0000516PM520_config \
517PM520_DDR_config \
518PM520_ROMBOOT_config \
519PM520_ROMBOOT_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200520 @mkdir -p $(obj)include
521 @ >$(obj)include/config.h
wdenk89394042004-08-04 21:56:49 +0000522 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200523 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000524 echo "... DDR memory revision" ; \
525 }
526 @[ -z "$(findstring ROMBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200527 { echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000528 echo "... booting from 8-bit flash" ; \
529 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200530 @$(MKCONFIG) -a PM520 ppc mpc5xxx pm520
wdenk89394042004-08-04 21:56:49 +0000531
Wolfgang Denk6624b682006-02-22 10:25:39 +0100532smmaco4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200533 @$(MKCONFIG) -a smmaco4 ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100534
Bartlomiej Siekafa1df302007-07-11 20:11:07 +0200535cm1_qp1_config: unconfig
536 @ >include/config.h
537 @[ -z "$(findstring cm1_qp1,$@)" ] || \
538 { echo "... with 64 MByte SDRAM" ; \
539 echo "... with 32 MByte Flash" ; \
540 }
541 @./mkconfig -a cm1_qp1 ppc mpc5xxx cm1_qp1
542
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100543spieval_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200544 @$(MKCONFIG) -a spieval ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100545
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200546TB5200_B_config \
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200547TB5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200548 @mkdir -p $(obj)include
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200549 @[ -z "$(findstring _B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200550 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200551 echo "... with MPC5200B processor" ; \
552 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200553 @$(MKCONFIG) -n $@ -a TB5200 ppc mpc5xxx tqm5200
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200554
wdenkd4ca31c2004-01-02 14:00:00 +0000555MINI5200_config \
556EVAL5200_config \
557TOP5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200558 @mkdir -p $(obj)include
559 @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
560 @$(MKCONFIG) -n $@ -a TOP5200 ppc mpc5xxx top5200 emk
wdenkd4ca31c2004-01-02 14:00:00 +0000561
wdenk6c7a1402004-07-11 19:17:20 +0000562Total5100_config \
563Total5200_config \
564Total5200_lowboot_config \
565Total5200_Rev2_config \
566Total5200_Rev2_lowboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200567 @mkdir -p $(obj)include
568 @mkdir -p $(obj)board/total5200
569 @ >$(obj)include/config.h
wdenk6c7a1402004-07-11 19:17:20 +0000570 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200571 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000572 echo "... with MGT5100 processor" ; \
573 }
574 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200575 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000576 echo "... with MPC5200 processor" ; \
577 }
578 @[ -n "$(findstring Rev,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200579 { echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000580 echo "... revision 1 board" ; \
581 }
582 @[ -z "$(findstring Rev2_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200583 { echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000584 echo "... revision 2 board" ; \
585 }
586 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200587 { echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp ; \
wdenk6c7a1402004-07-11 19:17:20 +0000588 echo "... with lowboot configuration" ; \
589 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200590 @$(MKCONFIG) -a Total5200 ppc mpc5xxx total5200
wdenk6c7a1402004-07-11 19:17:20 +0000591
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200592cam5200_config \
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100593cam5200_niosflash_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200594fo300_config \
595MiniFAP_config \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200596TQM5200S_config \
597TQM5200S_HIGHBOOT_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200598TQM5200_B_config \
599TQM5200_B_HIGHBOOT_config \
600TQM5200_config \
601TQM5200_STK100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200602 @mkdir -p $(obj)include
603 @mkdir -p $(obj)board/tqm5200
604 @ >$(obj)include/config.h
Wolfgang Denk135ae002006-07-22 01:20:03 +0200605 @[ -z "$(findstring cam5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200606 { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \
607 echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
608 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk135ae002006-07-22 01:20:03 +0200609 echo "... TQM5200S on Cam5200" ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200610 }
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100611 @[ -z "$(findstring niosflash,$@)" ] || \
612 { echo "#define CONFIG_CAM5200_NIOSFLASH" >>$(obj)include/config.h ; \
613 echo "... with NIOS flash driver" ; \
614 }
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200615 @[ -z "$(findstring fo300,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200616 { echo "#define CONFIG_FO300" >>$(obj)include/config.h ; \
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200617 echo "... TQM5200 on FO300" ; \
618 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200619 @[ -z "$(findstring MiniFAP,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200620 { echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200621 echo "... TQM5200_AC on MiniFAP" ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200622 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200623 @[ -z "$(findstring STK100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200624 { echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h ; \
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200625 echo "... on a STK52XX.100 base board" ; \
wdenk56523f12004-07-11 17:40:54 +0000626 }
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200627 @[ -z "$(findstring TQM5200_B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200628 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200629 }
630 @[ -z "$(findstring TQM5200S,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200631 { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
632 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200633 }
Wolfgang Denk978b1092006-07-19 18:01:38 +0200634 @[ -z "$(findstring HIGHBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200635 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200636 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200637 @$(MKCONFIG) -n $@ -a TQM5200 ppc mpc5xxx tqm5200
Heiko Schocher6dedf3d2006-12-21 16:14:48 +0100638uc101_config: unconfig
639 @$(MKCONFIG) uc101 ppc mpc5xxx uc101
Bartlomiej Sieka53d4a492007-02-09 10:45:42 +0100640motionpro_config: unconfig
641 @$(MKCONFIG) motionpro ppc mpc5xxx motionpro
642
wdenk56523f12004-07-11 17:40:54 +0000643
wdenk945af8d2003-07-16 21:53:01 +0000644#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000645## MPC8xx Systems
646#########################################################################
647
wdenk2d24a3a2004-06-09 21:50:45 +0000648Adder_config \
649Adder87x_config \
wdenk26238132004-07-09 22:51:01 +0000650AdderII_config \
wdenk2d24a3a2004-06-09 21:50:45 +0000651 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200652 @mkdir -p $(obj)include
wdenk26238132004-07-09 22:51:01 +0000653 $(if $(findstring AdderII,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200654 @echo "#define CONFIG_MPC852T" > $(obj)include/config.h)
655 @$(MKCONFIG) -a Adder ppc mpc8xx adder
wdenk2d24a3a2004-06-09 21:50:45 +0000656
wdenk180d3f72004-01-04 16:28:35 +0000657ADS860_config \
wdenk180d3f72004-01-04 16:28:35 +0000658FADS823_config \
659FADS850SAR_config \
660MPC86xADS_config \
wdenk11142572004-06-06 21:35:06 +0000661MPC885ADS_config \
wdenk180d3f72004-01-04 16:28:35 +0000662FADS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200663 @$(MKCONFIG) $(@:_config=) ppc mpc8xx fads
wdenk7ebf7442002-11-02 23:17:16 +0000664
665AMX860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200666 @$(MKCONFIG) $(@:_config=) ppc mpc8xx amx860 westel
wdenk7ebf7442002-11-02 23:17:16 +0000667
668c2mon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200669 @$(MKCONFIG) $(@:_config=) ppc mpc8xx c2mon
wdenk7ebf7442002-11-02 23:17:16 +0000670
671CCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200672 @$(MKCONFIG) $(@:_config=) ppc mpc8xx CCM siemens
wdenk7ebf7442002-11-02 23:17:16 +0000673
674cogent_mpc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200675 @$(MKCONFIG) $(@:_config=) ppc mpc8xx cogent
wdenk7ebf7442002-11-02 23:17:16 +0000676
wdenk3bac3512003-03-12 10:41:04 +0000677ELPT860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200678 @$(MKCONFIG) $(@:_config=) ppc mpc8xx elpt860 LEOX
wdenk3bac3512003-03-12 10:41:04 +0000679
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100680EP88x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200681 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ep88x
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100682
wdenk7ebf7442002-11-02 23:17:16 +0000683ESTEEM192E_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200684 @$(MKCONFIG) $(@:_config=) ppc mpc8xx esteem192e
wdenk7ebf7442002-11-02 23:17:16 +0000685
686ETX094_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200687 @$(MKCONFIG) $(@:_config=) ppc mpc8xx etx094
wdenk7ebf7442002-11-02 23:17:16 +0000688
wdenk7ebf7442002-11-02 23:17:16 +0000689FLAGADM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200690 @$(MKCONFIG) $(@:_config=) ppc mpc8xx flagadm
wdenk7ebf7442002-11-02 23:17:16 +0000691
wdenk7aa78612003-05-03 15:50:43 +0000692xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
693
694GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000695GEN860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200696 @mkdir -p $(obj)include
697 @ >$(obj)include/config.h
wdenk7aa78612003-05-03 15:50:43 +0000698 @[ -z "$(findstring _SC,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200699 { echo "#define CONFIG_SC" >>$(obj)include/config.h ; \
wdenk7aa78612003-05-03 15:50:43 +0000700 echo "With reduced H/W feature set (SC)..." ; \
701 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200702 @$(MKCONFIG) -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000703
704GENIETV_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200705 @$(MKCONFIG) $(@:_config=) ppc mpc8xx genietv
wdenk7ebf7442002-11-02 23:17:16 +0000706
707GTH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200708 @$(MKCONFIG) $(@:_config=) ppc mpc8xx gth
wdenk7ebf7442002-11-02 23:17:16 +0000709
710hermes_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200711 @$(MKCONFIG) $(@:_config=) ppc mpc8xx hermes
wdenk7ebf7442002-11-02 23:17:16 +0000712
wdenkc40b2952004-03-13 23:29:43 +0000713HMI10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200714 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenkc40b2952004-03-13 23:29:43 +0000715
wdenk7ebf7442002-11-02 23:17:16 +0000716IAD210_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200717 @$(MKCONFIG) $(@:_config=) ppc mpc8xx IAD210 siemens
wdenk7ebf7442002-11-02 23:17:16 +0000718
719xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
720
721ICU862_100MHz_config \
722ICU862_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200723 @mkdir -p $(obj)include
724 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000725 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200726 { echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000727 echo "... with 100MHz system clock" ; \
728 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200729 @$(MKCONFIG) -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
wdenk7ebf7442002-11-02 23:17:16 +0000730
731IP860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200732 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ip860
wdenk7ebf7442002-11-02 23:17:16 +0000733
734IVML24_256_config \
735IVML24_128_config \
736IVML24_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200737 @mkdir -p $(obj)include
738 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000739 @[ -z "$(findstring IVML24_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200740 { echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000741 }
742 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200743 { echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000744 }
745 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200746 { echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000747 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200748 @$(MKCONFIG) -a IVML24 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000749
750IVMS8_256_config \
751IVMS8_128_config \
752IVMS8_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200753 @mkdir -p $(obj)include
754 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000755 @[ -z "$(findstring IVMS8_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200756 { echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000757 }
758 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200759 { echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000760 }
761 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200762 { echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000763 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200764 @$(MKCONFIG) -a IVMS8 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000765
wdenk56f94be2002-11-05 16:35:14 +0000766KUP4K_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200767 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4k kup
wdenk0608e042004-03-25 19:29:38 +0000768
769KUP4X_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200770 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000771
wdenk7ebf7442002-11-02 23:17:16 +0000772LANTEC_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200773 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lantec
wdenk7ebf7442002-11-02 23:17:16 +0000774
775lwmon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200776 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lwmon
wdenk7ebf7442002-11-02 23:17:16 +0000777
778MBX_config \
779MBX860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200780 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mbx8xx
wdenk7ebf7442002-11-02 23:17:16 +0000781
782MHPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200783 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mhpc eltec
wdenk7ebf7442002-11-02 23:17:16 +0000784
785MVS1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200786 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mvs1
wdenk7ebf7442002-11-02 23:17:16 +0000787
wdenk993cad92003-06-26 22:04:09 +0000788xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
789
790NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000791NETVIA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200792 @mkdir -p $(obj)include
793 @ >$(obj)include/config.h
wdenk993cad92003-06-26 22:04:09 +0000794 @[ -z "$(findstring NETVIA_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200795 { echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000796 echo "... Version 1" ; \
797 }
798 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200799 { echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000800 echo "... Version 2" ; \
801 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200802 @$(MKCONFIG) -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000803
wdenkc26e4542004-04-18 10:13:26 +0000804xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
805
806NETPHONE_V2_config \
wdenk04a85b32004-04-15 18:22:41 +0000807NETPHONE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200808 @mkdir -p $(obj)include
809 @ >$(obj)include/config.h
wdenkc26e4542004-04-18 10:13:26 +0000810 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200811 { echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000812 }
813 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200814 { echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000815 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200816 @$(MKCONFIG) -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk04a85b32004-04-15 18:22:41 +0000817
wdenk79fa88f2004-06-07 23:46:25 +0000818xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk04a85b32004-04-15 18:22:41 +0000819
wdenk79fa88f2004-06-07 23:46:25 +0000820NETTA_ISDN_6412_SWAPHOOK_config \
821NETTA_ISDN_SWAPHOOK_config \
822NETTA_6412_SWAPHOOK_config \
823NETTA_SWAPHOOK_config \
824NETTA_ISDN_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000825NETTA_ISDN_config \
wdenk79fa88f2004-06-07 23:46:25 +0000826NETTA_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000827NETTA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200828 @mkdir -p $(obj)include
829 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000830 @[ -z "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200831 { echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \
wdenk04a85b32004-04-15 18:22:41 +0000832 }
wdenk79fa88f2004-06-07 23:46:25 +0000833 @[ -n "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200834 { echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000835 }
836 @[ -z "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200837 { echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000838 }
839 @[ -n "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200840 { echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000841 }
842 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200843 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000844 }
845 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200846 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000847 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200848 @$(MKCONFIG) -a $(call xtract_NETTA,$@) ppc mpc8xx netta
wdenk04a85b32004-04-15 18:22:41 +0000849
wdenk79fa88f2004-06-07 23:46:25 +0000850xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
851
852NETTA2_V2_config \
853NETTA2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200854 @mkdir -p $(obj)include
855 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000856 @[ -z "$(findstring NETTA2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200857 { echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000858 }
859 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200860 { echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000861 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200862 @$(MKCONFIG) -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
wdenk79fa88f2004-06-07 23:46:25 +0000863
dzu@denx.dea367d422006-04-19 11:52:46 +0200864NC650_Rev1_config \
865NC650_Rev2_config \
866CP850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200867 @mkdir -p $(obj)include
868 @ >$(obj)include/config.h
dzu@denx.dea367d422006-04-19 11:52:46 +0200869 @[ -z "$(findstring CP850,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200870 { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \
871 echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200872 }
873 @[ -z "$(findstring Rev1,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200874 { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200875 }
876 @[ -z "$(findstring Rev2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200877 { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200878 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200879 @$(MKCONFIG) -a NC650 ppc mpc8xx nc650
wdenk7ca202f2004-08-28 22:45:57 +0000880
wdenk7ebf7442002-11-02 23:17:16 +0000881NX823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200882 @$(MKCONFIG) $(@:_config=) ppc mpc8xx nx823
wdenk7ebf7442002-11-02 23:17:16 +0000883
884pcu_e_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200885 @$(MKCONFIG) $(@:_config=) ppc mpc8xx pcu_e siemens
wdenk7ebf7442002-11-02 23:17:16 +0000886
wdenk3bbc8992003-12-07 22:27:15 +0000887QS850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200888 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000889
890QS823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200891 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000892
893QS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200894 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs860t snmc
wdenk3bbc8992003-12-07 22:27:15 +0000895
wdenkda93ed82004-09-29 11:02:56 +0000896quantum_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200897 @$(MKCONFIG) $(@:_config=) ppc mpc8xx quantum
wdenkda93ed82004-09-29 11:02:56 +0000898
wdenk7ebf7442002-11-02 23:17:16 +0000899R360MPI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200900 @$(MKCONFIG) $(@:_config=) ppc mpc8xx r360mpi
wdenk7ebf7442002-11-02 23:17:16 +0000901
wdenk682011f2003-06-03 23:54:09 +0000902RBC823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200903 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rbc823
wdenk682011f2003-06-03 23:54:09 +0000904
wdenk7ebf7442002-11-02 23:17:16 +0000905RPXClassic_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200906 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXClassic
wdenk7ebf7442002-11-02 23:17:16 +0000907
908RPXlite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200909 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXlite
wdenk7ebf7442002-11-02 23:17:16 +0000910
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100911RPXlite_DW_64_config \
912RPXlite_DW_LCD_config \
913RPXlite_DW_64_LCD_config \
wdenke63c8ee2004-06-09 21:04:48 +0000914RPXlite_DW_NVRAM_config \
915RPXlite_DW_NVRAM_64_config \
916RPXlite_DW_NVRAM_LCD_config \
917RPXlite_DW_NVRAM_64_LCD_config \
918RPXlite_DW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200919 @mkdir -p $(obj)include
920 @ >$(obj)include/config.h
wdenke63c8ee2004-06-09 21:04:48 +0000921 @[ -z "$(findstring _64,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200922 { echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000923 echo "... with 64MHz system clock ..."; \
924 }
925 @[ -z "$(findstring _LCD,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100926 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200927 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000928 echo "... with LCD display ..."; \
929 }
930 @[ -z "$(findstring _NVRAM,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100931 { echo "#define CFG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000932 echo "... with ENV in NVRAM ..."; \
933 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200934 @$(MKCONFIG) -a RPXlite_DW ppc mpc8xx RPXlite_dw
wdenke63c8ee2004-06-09 21:04:48 +0000935
wdenk73a8b272003-06-05 19:27:42 +0000936rmu_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200937 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rmu
wdenk73a8b272003-06-05 19:27:42 +0000938
wdenk7ebf7442002-11-02 23:17:16 +0000939RRvision_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200940 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000941
942RRvision_LCD_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200943 @mkdir -p $(obj)include
944 @echo "#define CONFIG_LCD" >$(obj)include/config.h
945 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
946 @$(MKCONFIG) -a RRvision ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000947
948SM850_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200949 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000950
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200951spc1920_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200952 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spc1920
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200953
wdenk7ebf7442002-11-02 23:17:16 +0000954SPD823TS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200955 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spd8xx
wdenk7ebf7442002-11-02 23:17:16 +0000956
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200957stxxtc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200958 @$(MKCONFIG) $(@:_config=) ppc mpc8xx stxxtc
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200959
wdenkdc7c9a12003-03-26 06:55:25 +0000960svm_sc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200961 @$(MKCONFIG) $(@:_config=) ppc mpc8xx svm_sc8xx
wdenkdc7c9a12003-03-26 06:55:25 +0000962
wdenk7ebf7442002-11-02 23:17:16 +0000963SXNI855T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200964 @$(MKCONFIG) $(@:_config=) ppc mpc8xx sixnet
wdenk7ebf7442002-11-02 23:17:16 +0000965
wdenkdb2f721f2003-03-06 00:58:30 +0000966# EMK MPC8xx based modules
967TOP860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200968 @$(MKCONFIG) $(@:_config=) ppc mpc8xx top860 emk
wdenkdb2f721f2003-03-06 00:58:30 +0000969
wdenk7ebf7442002-11-02 23:17:16 +0000970# Play some tricks for configuration selection
wdenke9132ea2004-04-24 23:23:30 +0000971# Only 855 and 860 boards may come with FEC
972# and only 823 boards may have LCD support
973xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +0000974
975FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000976FPS860L_config \
wdenkf12e5682003-07-07 20:07:54 +0000977NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +0000978TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000979TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +0000980TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000981TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000982TQM860L_config \
wdenkd126bfb2003-04-10 11:18:18 +0000983TQM862L_config \
wdenkae3af052003-08-07 22:18:11 +0000984TQM823M_config \
wdenkae3af052003-08-07 22:18:11 +0000985TQM850M_config \
wdenkf12e5682003-07-07 20:07:54 +0000986TQM855M_config \
wdenkf12e5682003-07-07 20:07:54 +0000987TQM860M_config \
wdenkf12e5682003-07-07 20:07:54 +0000988TQM862M_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200989TQM866M_config \
Markus Klotzbuecher090eb732006-07-12 15:26:01 +0200990TQM885D_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200991virtlab2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200992 @mkdir -p $(obj)include
993 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000994 @[ -z "$(findstring _LCD,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200995 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
996 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000997 echo "... with LCD display" ; \
998 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200999 @$(MKCONFIG) -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +00001000
1001TTTech_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001002 @mkdir -p $(obj)include
1003 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1004 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
1005 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +00001006
wdenkec0aee72004-12-19 09:58:11 +00001007uc100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001008 @$(MKCONFIG) $(@:_config=) ppc mpc8xx uc100
wdenkf7d15722004-12-18 22:35:43 +00001009
wdenk608c9142003-01-13 23:54:46 +00001010v37_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001011 @mkdir -p $(obj)include
1012 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1013 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h
1014 @$(MKCONFIG) $(@:_config=) ppc mpc8xx v37
wdenk608c9142003-01-13 23:54:46 +00001015
dzu91e940d2003-09-25 22:32:40 +00001016wtk_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001017 @mkdir -p $(obj)include
1018 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1019 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h
1020 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
dzu91e940d2003-09-25 22:32:40 +00001021
wdenk7ebf7442002-11-02 23:17:16 +00001022#########################################################################
1023## PPC4xx Systems
1024#########################################################################
wdenke55ca7e2004-07-01 21:40:08 +00001025xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001026
Stefan Roese16c0cc12007-03-21 13:39:57 +01001027acadia_config: unconfig
1028 @$(MKCONFIG) $(@:_config=) ppc ppc4xx acadia amcc
1029
Stefan Roesec440bfe2007-06-06 11:42:13 +02001030acadia_nand_config: unconfig
1031 @mkdir -p $(obj)include
1032 @mkdir -p $(obj)nand_spl
1033 @mkdir -p $(obj)board/amcc/acadia
1034 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
1035 @$(MKCONFIG) -n $@ -a acadia ppc ppc4xx acadia amcc
1036 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/acadia/config.tmp
1037 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1038
wdenk7ebf7442002-11-02 23:17:16 +00001039ADCIOP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001040 @$(MKCONFIG) $(@:_config=) ppc ppc4xx adciop esd
wdenk7ebf7442002-11-02 23:17:16 +00001041
Stefan Roese899620c2006-08-15 14:22:35 +02001042alpr_config: unconfig
Stefan Roese35d22f952007-08-10 10:42:25 +02001043 @$(MKCONFIG) $(@:_config=) ppc ppc4xx alpr prodrive
Stefan Roese899620c2006-08-15 14:22:35 +02001044
Wolfgang Denk7521af12005-10-09 01:04:33 +02001045AP1000_config:unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001046 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ap1000 amirix
Wolfgang Denk7521af12005-10-09 01:04:33 +02001047
stroesec419d1d2004-12-16 18:44:40 +00001048APC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001049 @$(MKCONFIG) $(@:_config=) ppc ppc4xx apc405 esd
stroesec419d1d2004-12-16 18:44:40 +00001050
wdenk7ebf7442002-11-02 23:17:16 +00001051AR405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001052 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ar405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001053
stroese549826e2003-05-23 11:41:44 +00001054ASH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001055 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ash405 esd
stroese549826e2003-05-23 11:41:44 +00001056
Stefan Roese8a316c92005-08-01 16:49:12 +02001057bamboo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001058 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bamboo amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001059
Stefan Roesecf959c72007-06-01 15:27:11 +02001060bamboo_nand_config: unconfig
1061 @mkdir -p $(obj)include
1062 @mkdir -p $(obj)nand_spl
1063 @mkdir -p $(obj)board/amcc/bamboo
1064 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roesef3679aa2007-06-01 16:15:34 +02001065 @$(MKCONFIG) -n $@ -a bamboo ppc ppc4xx bamboo amcc
Stefan Roesecf959c72007-06-01 15:27:11 +02001066 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/bamboo/config.tmp
1067 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1068
Stefan Roese8a316c92005-08-01 16:49:12 +02001069bubinga_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001070 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bubinga amcc
stroese549826e2003-05-23 11:41:44 +00001071
wdenk7ebf7442002-11-02 23:17:16 +00001072CANBT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001073 @$(MKCONFIG) $(@:_config=) ppc ppc4xx canbt esd
wdenk7ebf7442002-11-02 23:17:16 +00001074
wdenk1d6f9722004-09-09 17:44:35 +00001075CATcenter_config \
1076CATcenter_25_config \
1077CATcenter_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001078 @mkdir -p $(obj)include
1079 @ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h
1080 @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001081 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001082 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001083 echo "SysClk = 25MHz" ; \
1084 }
1085 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001086 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001087 echo "SysClk = 33MHz" ; \
1088 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001089 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk10767cc2004-05-13 13:23:58 +00001090
Stefan Roese7644f162005-09-22 09:16:57 +02001091CPCI2DP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001092 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd
Stefan Roese7644f162005-09-22 09:16:57 +02001093
stroese549826e2003-05-23 11:41:44 +00001094CPCI405_config \
1095CPCI4052_config \
stroesec419d1d2004-12-16 18:44:40 +00001096CPCI405DT_config \
stroese549826e2003-05-23 11:41:44 +00001097CPCI405AB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001098 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci405 esd
1099 @echo "BOARD_REVISION = $(@:_config=)" >> $(obj)include/config.mk
wdenk7ebf7442002-11-02 23:17:16 +00001100
1101CPCI440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001102 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci440 esd
wdenk7ebf7442002-11-02 23:17:16 +00001103
1104CPCIISER4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001105 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpciiser4 esd
wdenk7ebf7442002-11-02 23:17:16 +00001106
wdenkdb01a2e2004-04-15 23:14:49 +00001107CRAYL1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001108 @$(MKCONFIG) $(@:_config=) ppc ppc4xx L1 cray
wdenk7ebf7442002-11-02 23:17:16 +00001109
wdenkcd0a9de2004-02-23 20:48:38 +00001110csb272_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001111 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb272
wdenkcd0a9de2004-02-23 20:48:38 +00001112
wdenkaa245092004-06-09 12:47:02 +00001113csb472_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001114 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb472
wdenkaa245092004-06-09 12:47:02 +00001115
wdenk7ebf7442002-11-02 23:17:16 +00001116DASA_SIM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001117 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dasa_sim esd
wdenk7ebf7442002-11-02 23:17:16 +00001118
stroese72cd5aa2003-09-12 08:57:15 +00001119DP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001120 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dp405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001121
wdenk7ebf7442002-11-02 23:17:16 +00001122DU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001123 @$(MKCONFIG) $(@:_config=) ppc ppc4xx du405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001124
Stefan Roese8a316c92005-08-01 16:49:12 +02001125ebony_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001126 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +00001127
wdenkdb01a2e2004-04-15 23:14:49 +00001128ERIC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001129 @$(MKCONFIG) $(@:_config=) ppc ppc4xx eric
wdenk7ebf7442002-11-02 23:17:16 +00001130
wdenkdb01a2e2004-04-15 23:14:49 +00001131EXBITGEN_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001132 @$(MKCONFIG) $(@:_config=) ppc ppc4xx exbitgen
wdenkd1cbe852003-06-28 17:24:46 +00001133
stroesec419d1d2004-12-16 18:44:40 +00001134G2000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001135 @$(MKCONFIG) $(@:_config=) ppc ppc4xx g2000
stroesec419d1d2004-12-16 18:44:40 +00001136
Niklaus Gigerac982ea2007-07-27 11:28:44 +02001137hcu4_config: unconfig
Stefan Roese35d22f952007-08-10 10:42:25 +02001138 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hcu4 netstal
Niklaus Gigerac982ea2007-07-27 11:28:44 +02001139
1140hcu5_config: unconfig
Stefan Roese35d22f952007-08-10 10:42:25 +02001141 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hcu5 netstal
Niklaus Gigerac982ea2007-07-27 11:28:44 +02001142
stroesec419d1d2004-12-16 18:44:40 +00001143HH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001144 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001145
stroese72cd5aa2003-09-12 08:57:15 +00001146HUB405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001147 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001148
wdenkdb01a2e2004-04-15 23:14:49 +00001149JSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001150 @$(MKCONFIG) $(@:_config=) ppc ppc4xx jse
wdenkdb01a2e2004-04-15 23:14:49 +00001151
Stefan Roeseb79316f2005-08-15 12:31:23 +02001152KAREF_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001153 @$(MKCONFIG) $(@:_config=) ppc ppc4xx karef sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001154
Stefan Roese4745aca2007-02-20 10:57:08 +01001155katmai_config: unconfig
1156 @$(MKCONFIG) $(@:_config=) ppc ppc4xx katmai amcc
1157
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001158luan_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001159 @$(MKCONFIG) $(@:_config=) ppc ppc4xx luan amcc
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001160
Stefan Roeseb765ffb2007-06-15 08:18:01 +02001161lwmon5_config: unconfig
1162 @$(MKCONFIG) $(@:_config=) ppc ppc4xx lwmon5
1163
Stefan Roeseb79316f2005-08-15 12:31:23 +02001164METROBOX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001165 @$(MKCONFIG) $(@:_config=) ppc ppc4xx metrobox sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001166
wdenkdb01a2e2004-04-15 23:14:49 +00001167MIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001168 @$(MKCONFIG) $(@:_config=) ppc ppc4xx mip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001169
wdenkdb01a2e2004-04-15 23:14:49 +00001170MIP405T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001171 @mkdir -p $(obj)include
1172 @echo "#define CONFIG_MIP405T" >$(obj)include/config.h
wdenkf3e0de62003-06-04 15:05:30 +00001173 @echo "Enable subset config for MIP405T"
Marian Balakowiczf9328632006-09-01 19:49:50 +02001174 @$(MKCONFIG) -a MIP405 ppc ppc4xx mip405 mpl
wdenkf3e0de62003-06-04 15:05:30 +00001175
wdenkdb01a2e2004-04-15 23:14:49 +00001176ML2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001177 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml2
wdenk7ebf7442002-11-02 23:17:16 +00001178
wdenkdb01a2e2004-04-15 23:14:49 +00001179ml300_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001180 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml300 xilinx
wdenk028ab6b2004-02-23 23:54:43 +00001181
Stefan Roese8a316c92005-08-01 16:49:12 +02001182ocotea_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001183 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocotea amcc
wdenk0e6d7982004-03-14 00:07:33 +00001184
wdenk7ebf7442002-11-02 23:17:16 +00001185OCRTC_config \
1186ORSG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001187 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocrtc esd
wdenk7ebf7442002-11-02 23:17:16 +00001188
Stefan Roese5568e612005-11-22 13:20:42 +01001189p3p440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001190 @$(MKCONFIG) $(@:_config=) ppc ppc4xx p3p440 prodrive
Stefan Roese5568e612005-11-22 13:20:42 +01001191
wdenk7ebf7442002-11-02 23:17:16 +00001192PCI405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001193 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pci405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001194
Stefan Roesea4c8d132006-06-02 16:18:04 +02001195pcs440ep_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001196 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pcs440ep
Stefan Roesea4c8d132006-06-02 16:18:04 +02001197
wdenkdb01a2e2004-04-15 23:14:49 +00001198PIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001199 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001200
stroese72cd5aa2003-09-12 08:57:15 +00001201PLU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001202 @$(MKCONFIG) $(@:_config=) ppc ppc4xx plu405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001203
stroese549826e2003-05-23 11:41:44 +00001204PMC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001205 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pmc405 esd
stroese549826e2003-05-23 11:41:44 +00001206
wdenk281e00a2004-08-01 22:48:16 +00001207PPChameleonEVB_config \
wdenke55ca7e2004-07-01 21:40:08 +00001208PPChameleonEVB_BA_25_config \
1209PPChameleonEVB_ME_25_config \
1210PPChameleonEVB_HI_25_config \
1211PPChameleonEVB_BA_33_config \
1212PPChameleonEVB_ME_33_config \
1213PPChameleonEVB_HI_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001214 @mkdir -p $(obj)include
1215 @ >$(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001216 @[ -z "$(findstring EVB_BA,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001217 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001218 echo "... BASIC model" ; \
1219 }
wdenk1d6f9722004-09-09 17:44:35 +00001220 @[ -z "$(findstring EVB_ME,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001221 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001222 echo "... MEDIUM model" ; \
1223 }
wdenk1d6f9722004-09-09 17:44:35 +00001224 @[ -z "$(findstring EVB_HI,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001225 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001226 echo "... HIGH-END model" ; \
1227 }
wdenke55ca7e2004-07-01 21:40:08 +00001228 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001229 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001230 echo "SysClk = 25MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001231 }
1232 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001233 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001234 echo "SysClk = 33MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001235 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001236 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk12f34242003-09-02 22:48:03 +00001237
wdenk652a10c2005-01-09 23:48:14 +00001238sbc405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001239 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sbc405
wdenk652a10c2005-01-09 23:48:14 +00001240
Stefan Roese430f1b02007-03-28 15:03:16 +02001241sequoia_config \
1242rainier_config: unconfig
1243 @mkdir -p $(obj)include
1244 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1245 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
1246 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Stefan Roese887e2ec2006-09-07 11:51:23 +02001247
Stefan Roese430f1b02007-03-28 15:03:16 +02001248sequoia_nand_config \
1249rainier_nand_config: unconfig
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001250 @mkdir -p $(obj)include
1251 @mkdir -p $(obj)nand_spl
1252 @mkdir -p $(obj)board/amcc/sequoia
1253 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roese430f1b02007-03-28 15:03:16 +02001254 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1255 tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h
1256 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001257 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1258 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
stroese72cd5aa2003-09-12 08:57:15 +00001259
Wolfgang Denk6d3e0102007-01-16 18:30:50 +01001260sc3_config:unconfig
Stefan Roese35d22f952007-08-10 10:42:25 +02001261 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sc3
Heiko Schocherca43ba12007-01-11 15:44:44 +01001262
Stefan Roese5fb692c2007-01-18 10:25:34 +01001263taishan_config: unconfig
1264 @$(MKCONFIG) $(@:_config=) ppc ppc4xx taishan amcc
1265
wdenk7ebf7442002-11-02 23:17:16 +00001266VOH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001267 @$(MKCONFIG) $(@:_config=) ppc ppc4xx voh405 esd
wdenk3bac3512003-03-12 10:41:04 +00001268
stroesec419d1d2004-12-16 18:44:40 +00001269VOM405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001270 @$(MKCONFIG) $(@:_config=) ppc ppc4xx vom405 esd
stroesec419d1d2004-12-16 18:44:40 +00001271
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001272CMS700_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001273 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001274
wdenk7ebf7442002-11-02 23:17:16 +00001275W7OLMC_config \
1276W7OLMG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001277 @$(MKCONFIG) $(@:_config=) ppc ppc4xx w7o
wdenk7ebf7442002-11-02 23:17:16 +00001278
Stefan Roese430f1b02007-03-28 15:03:16 +02001279# Walnut & Sycamore images are identical (recognized via PVR)
1280walnut_config \
1281sycamore_config: unconfig
1282 @$(MKCONFIG) -n $@ -a walnut ppc ppc4xx walnut amcc
wdenk7ebf7442002-11-02 23:17:16 +00001283
stroesec419d1d2004-12-16 18:44:40 +00001284WUH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001285 @$(MKCONFIG) $(@:_config=) ppc ppc4xx wuh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001286
wdenkdb01a2e2004-04-15 23:14:49 +00001287XPEDITE1K_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001288 @$(MKCONFIG) $(@:_config=) ppc ppc4xx xpedite1k
wdenkba56f622004-02-06 23:19:44 +00001289
Stefan Roese430f1b02007-03-28 15:03:16 +02001290yosemite_config \
1291yellowstone_config: unconfig
Stefan Roese700200c2007-01-30 17:04:19 +01001292 @mkdir -p $(obj)include
Stefan Roese430f1b02007-03-28 15:03:16 +02001293 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1294 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
Stefan Roese2aa54f62007-02-02 12:42:08 +01001295 @$(MKCONFIG) -n $@ -a yosemite ppc ppc4xx yosemite amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001296
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001297yucca_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001298 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yucca amcc
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001299
wdenk7ebf7442002-11-02 23:17:16 +00001300#########################################################################
wdenk983fda82004-10-28 00:09:35 +00001301## MPC8220 Systems
1302#########################################################################
Wolfgang Denkdc17fb62005-08-03 22:32:02 +02001303
1304Alaska8220_config \
1305Yukon8220_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001306 @$(MKCONFIG) $(@:_config=) ppc mpc8220 alaska
wdenk983fda82004-10-28 00:09:35 +00001307
wdenk12b43d52005-04-05 21:57:18 +00001308sorcery_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001309 @$(MKCONFIG) $(@:_config=) ppc mpc8220 sorcery
wdenk12b43d52005-04-05 21:57:18 +00001310
wdenk983fda82004-10-28 00:09:35 +00001311#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001312## MPC824x Systems
1313#########################################################################
wdenkefa329c2004-03-23 20:18:25 +00001314xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001315
wdenk03329902003-06-20 22:36:30 +00001316A3000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001317 @$(MKCONFIG) $(@:_config=) ppc mpc824x a3000
wdenk03329902003-06-20 22:36:30 +00001318
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001319barco_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001320 @$(MKCONFIG) $(@:_config=) ppc mpc824x barco
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001321
wdenk7ebf7442002-11-02 23:17:16 +00001322BMW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001323 @$(MKCONFIG) $(@:_config=) ppc mpc824x bmw
wdenk7ebf7442002-11-02 23:17:16 +00001324
wdenk3bac3512003-03-12 10:41:04 +00001325CPC45_config \
1326CPC45_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001327 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc824x cpc45
1328 @cd $(obj)include ; \
wdenk3bac3512003-03-12 10:41:04 +00001329 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1330 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1331 echo "... booting from 8-bit flash" ; \
1332 else \
1333 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1334 echo "... booting from 64-bit flash" ; \
1335 fi; \
1336 echo "export CONFIG_BOOT_ROM" >> config.mk;
1337
wdenk7ebf7442002-11-02 23:17:16 +00001338CU824_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001339 @$(MKCONFIG) $(@:_config=) ppc mpc824x cu824
wdenk7ebf7442002-11-02 23:17:16 +00001340
wdenk7abf0c52004-04-18 21:45:42 +00001341debris_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001342 @$(MKCONFIG) $(@:_config=) ppc mpc824x debris etin
wdenk7abf0c52004-04-18 21:45:42 +00001343
wdenk80885a92004-02-26 23:46:20 +00001344eXalion_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001345 @$(MKCONFIG) $(@:_config=) ppc mpc824x eXalion
wdenk80885a92004-02-26 23:46:20 +00001346
wdenk756f5862005-04-03 15:51:42 +00001347HIDDEN_DRAGON_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001348 @$(MKCONFIG) $(@:_config=) ppc mpc824x hidden_dragon
wdenk756f5862005-04-03 15:51:42 +00001349
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001350kvme080_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001351 @$(MKCONFIG) $(@:_config=) ppc mpc824x kvme080 etin
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001352
wdenk7ebf7442002-11-02 23:17:16 +00001353MOUSSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001354 @$(MKCONFIG) $(@:_config=) ppc mpc824x mousse
wdenk7ebf7442002-11-02 23:17:16 +00001355
1356MUSENKI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001357 @$(MKCONFIG) $(@:_config=) ppc mpc824x musenki
wdenk7ebf7442002-11-02 23:17:16 +00001358
wdenkb4676a22003-12-07 19:24:00 +00001359MVBLUE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001360 @$(MKCONFIG) $(@:_config=) ppc mpc824x mvblue
wdenkb4676a22003-12-07 19:24:00 +00001361
wdenk7ebf7442002-11-02 23:17:16 +00001362OXC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001363 @$(MKCONFIG) $(@:_config=) ppc mpc824x oxc
wdenk7ebf7442002-11-02 23:17:16 +00001364
1365PN62_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001366 @$(MKCONFIG) $(@:_config=) ppc mpc824x pn62
wdenk7ebf7442002-11-02 23:17:16 +00001367
1368Sandpoint8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001369 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001370
1371Sandpoint8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001372 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001373
wdenk466b7412004-07-10 22:35:59 +00001374sbc8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001375 @$(MKCONFIG) $(@:_config=) ppc mpc824x sbc8240
wdenk466b7412004-07-10 22:35:59 +00001376
wdenkd1cbe852003-06-28 17:24:46 +00001377SL8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001378 @$(MKCONFIG) $(@:_config=) ppc mpc824x sl8245
wdenkd1cbe852003-06-28 17:24:46 +00001379
wdenk7ebf7442002-11-02 23:17:16 +00001380utx8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001381 @$(MKCONFIG) $(@:_config=) ppc mpc824x utx8245
wdenk7ebf7442002-11-02 23:17:16 +00001382
1383#########################################################################
1384## MPC8260 Systems
1385#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001386
wdenk54387ac2003-10-08 22:45:44 +00001387atc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001388 @$(MKCONFIG) $(@:_config=) ppc mpc8260 atc
wdenk54387ac2003-10-08 22:45:44 +00001389
wdenk7ebf7442002-11-02 23:17:16 +00001390cogent_mpc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001391 @$(MKCONFIG) $(@:_config=) ppc mpc8260 cogent
wdenk7ebf7442002-11-02 23:17:16 +00001392
1393CPU86_config \
1394CPU86_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001395 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu86
1396 @cd $(obj)include ; \
wdenk7ebf7442002-11-02 23:17:16 +00001397 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1398 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1399 echo "... booting from 8-bit flash" ; \
1400 else \
1401 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1402 echo "... booting from 64-bit flash" ; \
1403 fi; \
1404 echo "export CONFIG_BOOT_ROM" >> config.mk;
1405
wdenk384cc682005-04-03 22:35:21 +00001406CPU87_config \
1407CPU87_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001408 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu87
1409 @cd $(obj)include ; \
wdenk384cc682005-04-03 22:35:21 +00001410 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1411 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1412 echo "... booting from 8-bit flash" ; \
1413 else \
1414 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1415 echo "... booting from 64-bit flash" ; \
1416 fi; \
1417 echo "export CONFIG_BOOT_ROM" >> config.mk;
1418
Wolfgang Denkf901a832005-08-06 01:42:58 +02001419ep8248_config \
1420ep8248E_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001421 @$(MKCONFIG) ep8248 ppc mpc8260 ep8248
Wolfgang Denkf901a832005-08-06 01:42:58 +02001422
wdenk7ebf7442002-11-02 23:17:16 +00001423ep8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001424 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep8260
wdenk7ebf7442002-11-02 23:17:16 +00001425
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001426ep82xxm_config: unconfig
1427 @./mkconfig $(@:_config=) ppc mpc8260 ep82xxm
1428
wdenk7ebf7442002-11-02 23:17:16 +00001429gw8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001430 @$(MKCONFIG) $(@:_config=) ppc mpc8260 gw8260
wdenk7ebf7442002-11-02 23:17:16 +00001431
1432hymod_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001433 @$(MKCONFIG) $(@:_config=) ppc mpc8260 hymod
wdenk7ebf7442002-11-02 23:17:16 +00001434
wdenk9dd41a72005-05-12 22:48:09 +00001435IDS8247_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001436 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ids8247
wdenk9dd41a72005-05-12 22:48:09 +00001437
wdenk7ebf7442002-11-02 23:17:16 +00001438IPHASE4539_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001439 @$(MKCONFIG) $(@:_config=) ppc mpc8260 iphase4539
wdenk7ebf7442002-11-02 23:17:16 +00001440
wdenkc3c7f862004-06-09 14:47:54 +00001441ISPAN_config \
1442ISPAN_REVB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001443 @mkdir -p $(obj)include
wdenkc3c7f862004-06-09 14:47:54 +00001444 @if [ "$(findstring _REVB_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001445 echo "#define CFG_REV_B" > $(obj)include/config.h ; \
wdenkc3c7f862004-06-09 14:47:54 +00001446 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001447 @$(MKCONFIG) -a ISPAN ppc mpc8260 ispan
wdenkc3c7f862004-06-09 14:47:54 +00001448
wdenk04a85b32004-04-15 18:22:41 +00001449MPC8260ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001450MPC8260ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001451MPC8260ADS_33MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001452MPC8260ADS_33MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001453MPC8260ADS_40MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001454MPC8260ADS_40MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001455MPC8272ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001456MPC8272ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001457PQ2FADS_config \
wdenk901787d2005-04-03 23:22:21 +00001458PQ2FADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001459PQ2FADS-VR_config \
wdenk901787d2005-04-03 23:22:21 +00001460PQ2FADS-VR_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001461PQ2FADS-ZU_config \
wdenk901787d2005-04-03 23:22:21 +00001462PQ2FADS-ZU_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001463PQ2FADS-ZU_66MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001464PQ2FADS-ZU_66MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001465 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001466 @mkdir -p $(obj)include
1467 @mkdir -p $(obj)board/mpc8260ads
wdenk04a85b32004-04-15 18:22:41 +00001468 $(if $(findstring PQ2FADS,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001469 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > $(obj)include/config.h, \
1470 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h)
wdenk04a85b32004-04-15 18:22:41 +00001471 $(if $(findstring MHz,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001472 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \
wdenk04a85b32004-04-15 18:22:41 +00001473 $(if $(findstring VR,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001474 @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h))
wdenk901787d2005-04-03 23:22:21 +00001475 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001476 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/mpc8260ads/config.tmp ; \
wdenk901787d2005-04-03 23:22:21 +00001477 echo "... with lowboot configuration" ; \
1478 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001479 @$(MKCONFIG) -a MPC8260ADS ppc mpc8260 mpc8260ads
wdenk7ebf7442002-11-02 23:17:16 +00001480
wdenkdb2f721f2003-03-06 00:58:30 +00001481MPC8266ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001482 @$(MKCONFIG) $(@:_config=) ppc mpc8260 mpc8266ads
wdenkdb2f721f2003-03-06 00:58:30 +00001483
wdenkefa329c2004-03-23 20:18:25 +00001484# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk10f67012003-03-25 18:06:06 +00001485PM825_config \
wdenkefa329c2004-03-23 20:18:25 +00001486PM825_ROMBOOT_config \
1487PM825_BIGFLASH_config \
1488PM825_ROMBOOT_BIGFLASH_config \
wdenk7ebf7442002-11-02 23:17:16 +00001489PM826_config \
wdenkefa329c2004-03-23 20:18:25 +00001490PM826_ROMBOOT_config \
1491PM826_BIGFLASH_config \
1492PM826_ROMBOOT_BIGFLASH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001493 @mkdir -p $(obj)include
1494 @mkdir -p $(obj)board/pm826
wdenkefa329c2004-03-23 20:18:25 +00001495 @if [ "$(findstring PM825_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001496 echo "#define CONFIG_PCI" >$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001497 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001498 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001499 fi
1500 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1501 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001502 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1503 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001504 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1505 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001506 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001507 fi; \
1508 else \
wdenk7ebf7442002-11-02 23:17:16 +00001509 echo "... booting from 64-bit flash" ; \
wdenkefa329c2004-03-23 20:18:25 +00001510 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1511 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001512 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
1513 echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001514 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001515 echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001516 fi; \
1517 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001518 @$(MKCONFIG) -a PM826 ppc mpc8260 pm826
wdenkefa329c2004-03-23 20:18:25 +00001519
1520PM828_config \
1521PM828_PCI_config \
1522PM828_ROMBOOT_config \
1523PM828_ROMBOOT_PCI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001524 @mkdir -p $(obj)include
1525 @mkdir -p $(obj)board/pm826
Marian Balakowicz17076262006-04-05 20:37:11 +02001526 @if [ "$(findstring _PCI_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001527 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001528 echo "... with PCI enabled" ; \
1529 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001530 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001531 fi
1532 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1533 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001534 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1535 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001536 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001537 @$(MKCONFIG) -a PM828 ppc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +00001538
1539ppmc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001540 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ppmc8260
wdenk7ebf7442002-11-02 23:17:16 +00001541
wdenk8b0bfc62005-04-03 23:11:38 +00001542Rattler8248_config \
1543Rattler_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001544 @mkdir -p $(obj)include
wdenk8b0bfc62005-04-03 23:11:38 +00001545 $(if $(findstring 8248,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001546 @echo "#define CONFIG_MPC8248" > $(obj)include/config.h)
1547 @$(MKCONFIG) -a Rattler ppc mpc8260 rattler
wdenk8b0bfc62005-04-03 23:11:38 +00001548
wdenk7ebf7442002-11-02 23:17:16 +00001549RPXsuper_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001550 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rpxsuper
wdenk7ebf7442002-11-02 23:17:16 +00001551
1552rsdproto_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001553 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rsdproto
wdenk7ebf7442002-11-02 23:17:16 +00001554
1555sacsng_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001556 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sacsng
wdenk7ebf7442002-11-02 23:17:16 +00001557
1558sbc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001559 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sbc8260
wdenk7ebf7442002-11-02 23:17:16 +00001560
1561SCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001562 @$(MKCONFIG) $(@:_config=) ppc mpc8260 SCM siemens
wdenk7ebf7442002-11-02 23:17:16 +00001563
wdenk27b207f2003-07-24 23:38:38 +00001564TQM8255_AA_config \
1565TQM8260_AA_config \
1566TQM8260_AB_config \
1567TQM8260_AC_config \
1568TQM8260_AD_config \
1569TQM8260_AE_config \
1570TQM8260_AF_config \
1571TQM8260_AG_config \
1572TQM8260_AH_config \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001573TQM8260_AI_config \
wdenk27b207f2003-07-24 23:38:38 +00001574TQM8265_AA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001575 @mkdir -p $(obj)include
wdenk27b207f2003-07-24 23:38:38 +00001576 @case "$@" in \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001577 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
1578 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
1579 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1580 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1581 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1582 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
1583 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1584 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
1585 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
1586 TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1587 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
wdenk27b207f2003-07-24 23:38:38 +00001588 esac; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001589 >$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001590 if [ "$${CTYPE}" != "MPC8260" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001591 echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001592 fi; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001593 echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001594 echo "... with $${CFREQ}MHz system clock" ; \
1595 if [ "$${CACHE}" == "yes" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001596 echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001597 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001598 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001599 echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001600 echo "... without L2 Cache support" ; \
wdenk27b207f2003-07-24 23:38:38 +00001601 fi; \
1602 if [ "$${BMODE}" == "60x" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001603 echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001604 echo "... with 60x Bus Mode" ; \
1605 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001606 echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001607 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001608 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001609 @$(MKCONFIG) -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +00001610
Heiko Schocherfa230442006-12-21 17:17:02 +01001611TQM8272_config: unconfig
1612 @$(MKCONFIG) -a TQM8272 ppc mpc8260 tqm8272
1613
wdenkba91e262005-05-30 23:55:42 +00001614VoVPN-GW_66MHz_config \
1615VoVPN-GW_100MHz_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001616 @mkdir -p $(obj)include
1617 @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h
1618 @$(MKCONFIG) -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
wdenkba91e262005-05-30 23:55:42 +00001619
wdenk54387ac2003-10-08 22:45:44 +00001620ZPC1900_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001621 @$(MKCONFIG) $(@:_config=) ppc mpc8260 zpc1900
wdenk7aa78612003-05-03 15:50:43 +00001622
wdenk4e5ca3e2003-12-08 01:34:36 +00001623#########################################################################
1624## Coldfire
1625#########################################################################
1626
Wolfgang Denk74812662005-12-12 16:06:05 +01001627cobra5272_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001628 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272
Wolfgang Denk74812662005-12-12 16:06:05 +01001629
Wolfgang Denk4176c792006-06-10 19:27:47 +02001630EB+MCF-EV123_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001631 @mkdir -p $(obj)include
1632 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1633 @ >$(obj)include/config.h
1634 @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1635 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001636
1637EB+MCF-EV123_internal_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001638 @mkdir -p $(obj)include
1639 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1640 @ >$(obj)include/config.h
1641 @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1642 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001643
Bartlomiej Siekadaa6e412006-12-20 00:27:32 +01001644idmr_config : unconfig
1645 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 idmr
1646
Wolfgang Denk4176c792006-06-10 19:27:47 +02001647M5271EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001648 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb
Wolfgang Denk4176c792006-06-10 19:27:47 +02001649
wdenk4e5ca3e2003-12-08 01:34:36 +00001650M5272C3_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001651 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3
wdenk4e5ca3e2003-12-08 01:34:36 +00001652
1653M5282EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001654 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb
wdenk4e5ca3e2003-12-08 01:34:36 +00001655
stroesec419d1d2004-12-16 18:44:40 +00001656TASREG_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001657 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd
stroesec419d1d2004-12-16 18:44:40 +00001658
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001659r5200_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001660 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 r5200
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001661
wdenk7ebf7442002-11-02 23:17:16 +00001662#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -05001663## MPC83xx Systems
1664#########################################################################
1665
Kim Phillips5c5d3242007-04-25 12:34:38 -05001666MPC8313ERDB_33_config \
1667MPC8313ERDB_66_config: unconfig
1668 @echo "" >include/config.h ; \
1669 if [ "$(findstring _33_,$@)" ] ; then \
1670 echo -n "...33M ..." ; \
1671 echo "#define CFG_33MHZ" >>include/config.h ; \
1672 fi ; \
1673 if [ "$(findstring _66_,$@)" ] ; then \
1674 echo -n "...66M..." ; \
1675 echo "#define CFG_66MHZ" >>include/config.h ; \
1676 fi ;
1677 @$(MKCONFIG) -a MPC8313ERDB ppc mpc83xx mpc8313erdb
1678
Kim Phillips4decd842007-01-24 17:18:37 -06001679MPC832XEMDS_config \
1680MPC832XEMDS_HOST_33_config \
1681MPC832XEMDS_HOST_66_config \
1682MPC832XEMDS_SLAVE_config: unconfig
1683 @echo "" >include/config.h ; \
1684 if [ "$(findstring _HOST_,$@)" ] ; then \
1685 echo -n "... PCI HOST " ; \
1686 echo "#define CONFIG_PCI" >>include/config.h ; \
1687 fi ; \
1688 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1689 echo "...PCI SLAVE 66M" ; \
1690 echo "#define CONFIG_PCI" >>include/config.h ; \
1691 echo "#define CONFIG_PCISLAVE" >>include/config.h ; \
1692 fi ; \
1693 if [ "$(findstring _33_,$@)" ] ; then \
1694 echo -n "...33M ..." ; \
1695 echo "#define PCI_33M" >>include/config.h ; \
1696 fi ; \
1697 if [ "$(findstring _66_,$@)" ] ; then \
1698 echo -n "...66M..." ; \
1699 echo "#define PCI_66M" >>include/config.h ; \
1700 fi ;
1701 @$(MKCONFIG) -a MPC832XEMDS ppc mpc83xx mpc832xemds
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001702
Marian Balakowicz991425f2006-03-14 16:24:38 +01001703MPC8349EMDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001704 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349emds
Marian Balakowicz991425f2006-03-14 16:24:38 +01001705
Timur Tabi7a78f142007-01-31 15:54:29 -06001706MPC8349ITX_config \
1707MPC8349ITX_LOWBOOT_config \
1708MPC8349ITXGP_config: unconfig
1709 @mkdir -p $(obj)include
1710 @mkdir -p $(obj)board/mpc8349itx
1711 @echo "#define CONFIG_$(subst _LOWBOOT,,$(@:_config=))" >> $(obj)include/config.h
1712 @if [ "$(findstring GP,$@)" ] ; then \
1713 echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \
1714 fi
1715 @if [ "$(findstring LOWBOOT,$@)" ] ; then \
1716 echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \
1717 fi
1718 @$(MKCONFIG) -a -n $(@:_config=) MPC8349ITX ppc mpc83xx mpc8349itx
Kim Phillips4decd842007-01-24 17:18:37 -06001719
Dave Liu5f820432006-11-03 19:33:44 -06001720MPC8360EMDS_config \
1721MPC8360EMDS_HOST_33_config \
1722MPC8360EMDS_HOST_66_config \
1723MPC8360EMDS_SLAVE_config: unconfig
1724 @echo "" >include/config.h ; \
1725 if [ "$(findstring _HOST_,$@)" ] ; then \
1726 echo -n "... PCI HOST " ; \
1727 echo "#define CONFIG_PCI" >>include/config.h ; \
1728 fi ; \
1729 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1730 echo "...PCI SLAVE 66M" ; \
1731 echo "#define CONFIG_PCI" >>include/config.h ; \
1732 echo "#define CONFIG_PCISLAVE" >>include/config.h ; \
1733 fi ; \
1734 if [ "$(findstring _33_,$@)" ] ; then \
1735 echo -n "...33M ..." ; \
1736 echo "#define PCI_33M" >>include/config.h ; \
1737 fi ; \
1738 if [ "$(findstring _66_,$@)" ] ; then \
1739 echo -n "...66M..." ; \
1740 echo "#define PCI_66M" >>include/config.h ; \
1741 fi ;
1742 @$(MKCONFIG) -a MPC8360EMDS ppc mpc83xx mpc8360emds
1743
Paul Gortmaker91e25762007-01-16 11:38:14 -05001744sbc8349_config: unconfig
1745 @$(MKCONFIG) $(@:_config=) ppc mpc83xx sbc8349
1746
Kim Phillips4decd842007-01-24 17:18:37 -06001747TQM834x_config: unconfig
1748 @$(MKCONFIG) $(@:_config=) ppc mpc83xx tqm834x
1749
Timur Tabi2ad6b512006-10-31 18:44:42 -06001750
Eran Libertyf046ccd2005-07-28 10:08:46 -05001751#########################################################################
wdenk42d1f032003-10-15 23:53:47 +00001752## MPC85xx Systems
1753#########################################################################
1754
wdenk0ac6f8b2004-07-09 23:27:13 +00001755MPC8540ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001756 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8540ads
wdenk42d1f032003-10-15 23:53:47 +00001757
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001758MPC8540EVAL_config \
1759MPC8540EVAL_33_config \
1760MPC8540EVAL_66_config \
1761MPC8540EVAL_33_slave_config \
1762MPC8540EVAL_66_slave_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001763 @mkdir -p $(obj)include
1764 @echo "" >$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001765 if [ "$(findstring _33_,$@)" ] ; then \
1766 echo -n "... 33 MHz PCI" ; \
1767 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001768 echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001769 echo -n "... 66 MHz PCI" ; \
1770 fi ; \
1771 if [ "$(findstring _slave_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001772 echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001773 echo " slave" ; \
1774 else \
1775 echo " host" ; \
1776 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001777 @$(MKCONFIG) -a MPC8540EVAL ppc mpc85xx mpc8540eval
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001778
wdenk0ac6f8b2004-07-09 23:27:13 +00001779MPC8560ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001780 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8560ads
wdenk42d1f032003-10-15 23:53:47 +00001781
wdenk03f5c552004-10-10 21:21:55 +00001782MPC8541CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001783 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8541cds cds
wdenk03f5c552004-10-10 21:21:55 +00001784
Andy Fleming81f481c2007-04-23 02:24:28 -05001785MPC8544DS_config: unconfig
1786 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8544ds freescale
1787
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001788MPC8548CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001789 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8548cds cds
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001790
wdenk03f5c552004-10-10 21:21:55 +00001791MPC8555CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001792 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8555cds cds
wdenk7abf0c52004-04-18 21:45:42 +00001793
Andy Fleming67431052007-04-23 02:54:25 -05001794MPC8568MDS_config: unconfig
1795 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8568mds
1796
wdenk384cc682005-04-03 22:35:21 +00001797PM854_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001798 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm854
wdenk384cc682005-04-03 22:35:21 +00001799
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001800PM856_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001801 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm856
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001802
wdenkc15f3122004-10-10 22:44:24 +00001803sbc8540_config \
1804sbc8540_33_config \
1805sbc8540_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001806 @mkdir -p $(obj)include
wdenkc15f3122004-10-10 22:44:24 +00001807 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001808 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001809 echo "... 66 MHz PCI" ; \
1810 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001811 >$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001812 echo "... 33 MHz PCI" ; \
1813 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001814 @$(MKCONFIG) -a SBC8540 ppc mpc85xx sbc8560
wdenkc15f3122004-10-10 22:44:24 +00001815
wdenk466b7412004-07-10 22:35:59 +00001816sbc8560_config \
1817sbc8560_33_config \
1818sbc8560_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001819 @mkdir -p $(obj)include
wdenk8b07a112004-07-10 21:45:47 +00001820 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001821 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001822 echo "... 66 MHz PCI" ; \
1823 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001824 >$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001825 echo "... 33 MHz PCI" ; \
1826 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001827 @$(MKCONFIG) -a sbc8560 ppc mpc85xx sbc8560
wdenk8b07a112004-07-10 21:45:47 +00001828
wdenk03f5c552004-10-10 21:21:55 +00001829stxgp3_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001830 @$(MKCONFIG) $(@:_config=) ppc mpc85xx stxgp3
wdenk03f5c552004-10-10 21:21:55 +00001831
Wolfgang Denkee152982007-05-31 17:20:09 +02001832stxssa_config \
1833stxssa_4M_config: unconfig
1834 @mkdir -p $(obj)include
1835 @if [ "$(findstring _4M_,$@)" ] ; then \
1836 echo "#define CONFIG_STXSSA_4M" >>$(obj)include/config.h ; \
1837 echo "... with 4 MiB flash memory" ; \
1838 else \
1839 >$(obj)include/config.h ; \
1840 fi
1841 @$(MKCONFIG) -a stxssa ppc mpc85xx stxssa
Dan Malek35171dc2007-01-05 09:15:34 +01001842
Stefan Roesed96f41e2005-11-30 13:06:40 +01001843TQM8540_config \
1844TQM8541_config \
1845TQM8555_config \
1846TQM8560_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001847 @mkdir -p $(obj)include
Wolfgang Denka889bd22005-12-06 15:02:31 +01001848 @CTYPE=$(subst TQM,,$(@:_config=)); \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001849 >$(obj)include/config.h ; \
Stefan Roesed96f41e2005-11-30 13:06:40 +01001850 echo "... TQM"$${CTYPE}; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001851 echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \
1852 echo "#define CONFIG_TQM$${CTYPE}">>$(obj)include/config.h; \
1853 echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \
1854 echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>$(obj)include/config.h; \
1855 echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>$(obj)include/config.h
1856 @$(MKCONFIG) -a TQM85xx ppc mpc85xx tqm85xx
wdenkf5c5ef42005-04-05 16:26:47 +00001857
wdenk42d1f032003-10-15 23:53:47 +00001858#########################################################################
Jon Loeligerdebb7352006-04-26 17:58:56 -05001859## MPC86xx Systems
1860#########################################################################
1861
1862MPC8641HPCN_config: unconfig
1863 @./mkconfig $(@:_config=) ppc mpc86xx mpc8641hpcn
1864
1865
1866#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001867## 74xx/7xx Systems
1868#########################################################################
1869
wdenkc7de8292002-11-19 11:04:11 +00001870AmigaOneG3SE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001871 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
wdenkc7de8292002-11-19 11:04:11 +00001872
wdenk15647dc2003-10-09 19:00:25 +00001873BAB7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001874 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx bab7xx eltec
wdenk15647dc2003-10-09 19:00:25 +00001875
stroesec419d1d2004-12-16 18:44:40 +00001876CPCI750_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001877 @$(MKCONFIG) CPCI750 ppc 74xx_7xx cpci750 esd
stroesec419d1d2004-12-16 18:44:40 +00001878
wdenk3a473b22004-01-03 00:43:19 +00001879DB64360_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001880 @$(MKCONFIG) DB64360 ppc 74xx_7xx db64360 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001881
1882DB64460_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001883 @$(MKCONFIG) DB64460 ppc 74xx_7xx db64460 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001884
wdenk15647dc2003-10-09 19:00:25 +00001885ELPPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001886 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx elppc eltec
wdenk15647dc2003-10-09 19:00:25 +00001887
wdenk7ebf7442002-11-02 23:17:16 +00001888EVB64260_config \
1889EVB64260_750CX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001890 @$(MKCONFIG) EVB64260 ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001891
roy zang4c527832006-11-02 18:49:51 +08001892mpc7448hpc2_config: unconfig
roy zangee311212006-12-01 11:47:36 +08001893 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx mpc7448hpc2
roy zang4c527832006-11-02 18:49:51 +08001894
wdenk15647dc2003-10-09 19:00:25 +00001895P3G4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001896 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001897
Stefan Roese1eac2a72006-11-29 15:42:37 +01001898p3m750_config \
1899p3m7448_config: unconfig
1900 @mkdir -p $(obj)include
1901 @if [ "$(findstring 750_,$@)" ] ; then \
1902 echo "#define CONFIG_P3M750" >>$(obj)include/config.h ; \
1903 else \
1904 echo "#define CONFIG_P3M7448" >>$(obj)include/config.h ; \
1905 fi
1906 @$(MKCONFIG) -a p3mx ppc 74xx_7xx p3mx prodrive
1907
wdenk7ebf7442002-11-02 23:17:16 +00001908PCIPPC2_config \
1909PCIPPC6_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001910 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx pcippc2
wdenk7ebf7442002-11-02 23:17:16 +00001911
wdenk15647dc2003-10-09 19:00:25 +00001912ZUMA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001913 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk12f34242003-09-02 22:48:03 +00001914
Heiko Schocherf5e0d032006-06-19 11:02:41 +02001915ppmc7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001916 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx ppmc7xx
Wolfgang Denkb87dfd22006-07-19 13:50:38 +02001917
wdenk7ebf7442002-11-02 23:17:16 +00001918#========================================================================
1919# ARM
1920#========================================================================
1921#########################################################################
1922## StrongARM Systems
1923#########################################################################
1924
wdenkea66bc82004-04-15 23:23:39 +00001925assabet_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001926 @$(MKCONFIG) $(@:_config=) arm sa1100 assabet
wdenkea66bc82004-04-15 23:23:39 +00001927
wdenk7ebf7442002-11-02 23:17:16 +00001928dnp1110_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001929 @$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110
wdenk7ebf7442002-11-02 23:17:16 +00001930
wdenk855a4962004-03-14 18:23:55 +00001931gcplus_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001932 @$(MKCONFIG) $(@:_config=) arm sa1100 gcplus
wdenk855a4962004-03-14 18:23:55 +00001933
1934lart_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001935 @$(MKCONFIG) $(@:_config=) arm sa1100 lart
wdenk855a4962004-03-14 18:23:55 +00001936
wdenk7ebf7442002-11-02 23:17:16 +00001937shannon_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001938 @$(MKCONFIG) $(@:_config=) arm sa1100 shannon
wdenk7ebf7442002-11-02 23:17:16 +00001939
1940#########################################################################
wdenk2e5983d2003-07-15 20:04:06 +00001941## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00001942#########################################################################
1943
wdenkb0639ca2003-09-17 22:48:07 +00001944xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk43d96162003-03-06 00:02:04 +00001945
wdenk3ff02c22004-06-09 15:25:53 +00001946xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
wdenk63e73c92004-02-23 22:22:28 +00001947
wdenka56bd922004-06-06 23:13:55 +00001948xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1949
wdenka85f9f22005-04-06 13:52:31 +00001950at91rm9200dk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001951 @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001952
1953cmc_pu2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001954 @$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001955
Wolfgang Denk645da512005-10-05 02:00:09 +02001956csb637_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001957 @$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200
Wolfgang Denk645da512005-10-05 02:00:09 +02001958
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001959mp2usb_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001960 @$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001961
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001962
Wolfgang Denk74f43042005-09-25 01:48:28 +02001963########################################################################
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001964## ARM Integrator boards - see doc/README-integrator for more info.
1965integratorap_config \
1966ap_config \
1967ap966_config \
1968ap922_config \
1969ap922_XA10_config \
1970ap7_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01001971ap720t_config \
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001972ap920t_config \
1973ap926ejs_config \
1974ap946es_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001975 @board/integratorap/split_by_variant.sh $@
wdenk3d3befa2004-03-14 15:06:13 +00001976
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001977integratorcp_config \
1978cp_config \
1979cp920t_config \
1980cp926ejs_config \
1981cp946es_config \
1982cp1136_config \
1983cp966_config \
1984cp922_config \
1985cp922_XA10_config \
1986cp1026_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001987 @board/integratorcp/split_by_variant.sh $@
wdenk25d67122004-12-10 11:40:40 +00001988
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001989kb9202_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001990 @$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001991
wdenkf832d8a2004-06-10 21:55:33 +00001992lpd7a400_config \
1993lpd7a404_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001994 @$(MKCONFIG) $(@:_config=) arm lh7a40x lpd7a40x
wdenk3d3befa2004-03-14 15:06:13 +00001995
wdenk281e00a2004-08-01 22:48:16 +00001996mx1ads_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001997 @$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001998
1999mx1fs2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002000 @$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002001
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002002netstar_32_config \
2003netstar_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002004 @mkdir -p $(obj)include
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002005 @if [ "$(findstring _32_,$@)" ] ; then \
2006 echo "... 32MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002007 echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002008 else \
2009 echo "... 64MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002010 echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002011 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02002012 @$(MKCONFIG) -a netstar arm arm925t netstar
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002013
wdenk2e5983d2003-07-15 20:04:06 +00002014omap1510inn_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002015 @$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn
wdenk2e5983d2003-07-15 20:04:06 +00002016
wdenk1eaeb582004-06-08 00:22:43 +00002017omap5912osk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002018 @$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk NULL omap
wdenk1eaeb582004-06-08 00:22:43 +00002019
wdenk63e73c92004-02-23 22:22:28 +00002020omap1610inn_config \
2021omap1610inn_cs0boot_config \
2022omap1610inn_cs3boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00002023omap1610inn_cs_autoboot_config \
wdenk63e73c92004-02-23 22:22:28 +00002024omap1610h2_config \
2025omap1610h2_cs0boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00002026omap1610h2_cs3boot_config \
2027omap1610h2_cs_autoboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002028 @mkdir -p $(obj)include
wdenk63e73c92004-02-23 22:22:28 +00002029 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002030 echo "#define CONFIG_CS0_BOOT" >> .$(obj)/include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00002031 echo "... configured for CS0 boot"; \
wdenk3ff02c22004-06-09 15:25:53 +00002032 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002033 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)./include/config.h ; \
wdenk3ff02c22004-06-09 15:25:53 +00002034 echo "... configured for CS_AUTO boot"; \
wdenk63e73c92004-02-23 22:22:28 +00002035 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002036 echo "#define CONFIG_CS3_BOOT" >> $(obj)./include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00002037 echo "... configured for CS3 boot"; \
wdenk63e73c92004-02-23 22:22:28 +00002038 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02002039 @$(MKCONFIG) -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap
wdenk6f213472003-08-29 22:00:43 +00002040
wdenka56bd922004-06-06 23:13:55 +00002041omap730p2_config \
2042omap730p2_cs0boot_config \
2043omap730p2_cs3boot_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002044 @mkdir -p $(obj)include
wdenka56bd922004-06-06 23:13:55 +00002045 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002046 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00002047 echo "... configured for CS0 boot"; \
2048 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002049 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00002050 echo "... configured for CS3 boot"; \
2051 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02002052 @$(MKCONFIG) -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap
wdenka56bd922004-06-06 23:13:55 +00002053
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02002054sbc2410x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002055 @$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02002056
wdenk281e00a2004-08-01 22:48:16 +00002057scb9328_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002058 @$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002059
wdenk7ebf7442002-11-02 23:17:16 +00002060smdk2400_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002061 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002062
2063smdk2410_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002064 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002065
wdenk2d24a3a2004-06-09 21:50:45 +00002066SX1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002067 @$(MKCONFIG) $(@:_config=) arm arm925t sx1
wdenk2d24a3a2004-06-09 21:50:45 +00002068
wdenkb2001f22003-12-20 22:45:10 +00002069# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk43d96162003-03-06 00:02:04 +00002070trab_config \
wdenkb0639ca2003-09-17 22:48:07 +00002071trab_bigram_config \
2072trab_bigflash_config \
wdenkf54ebdf2003-09-17 15:10:32 +00002073trab_old_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002074 @mkdir -p $(obj)include
2075 @mkdir -p $(obj)board/trab
2076 @ >$(obj)include/config.h
wdenkb0639ca2003-09-17 22:48:07 +00002077 @[ -z "$(findstring _bigram,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002078 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2079 echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002080 echo "... with 8 MB Flash, 32 MB RAM" ; \
2081 }
2082 @[ -z "$(findstring _bigflash,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002083 { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \
2084 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002085 echo "... with 16 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002086 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenkb0639ca2003-09-17 22:48:07 +00002087 }
wdenkf54ebdf2003-09-17 15:10:32 +00002088 @[ -z "$(findstring _old,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002089 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2090 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +00002091 echo "... with 8 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002092 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenk43d96162003-03-06 00:02:04 +00002093 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002094 @$(MKCONFIG) -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002095
wdenk1cb8e982003-03-06 21:55:29 +00002096VCMA9_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002097 @$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0
wdenk1cb8e982003-03-06 21:55:29 +00002098
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002099#========================================================================
2100# ARM supplied Versatile development boards
2101#========================================================================
2102versatile_config \
2103versatileab_config \
2104versatilepb_config : unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02002105 @board/versatile/split_by_variant.sh $@
wdenk074cff02004-02-24 00:16:43 +00002106
wdenk3c2b3d42005-04-05 23:32:21 +00002107voiceblue_smallflash_config \
2108voiceblue_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002109 @mkdir -p $(obj)include
2110 @mkdir -p $(obj)board/voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002111 @if [ "$(findstring _smallflash_,$@)" ] ; then \
2112 echo "... boot from lower flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002113 echo "#define VOICEBLUE_SMALL_FLASH" >>$(obj)include/config.h ; \
2114 echo "VOICEBLUE_SMALL_FLASH=y" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00002115 else \
2116 echo "... boot from upper flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002117 >$(obj)include/config.h ; \
2118 echo "VOICEBLUE_SMALL_FLASH=n" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00002119 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02002120 @$(MKCONFIG) -a voiceblue arm arm925t voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002121
wdenk16b013e2005-05-19 22:46:33 +00002122cm4008_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002123 @$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002124
2125cm41xx_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002126 @$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002127
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002128gth2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002129 @mkdir -p $(obj)include
2130 @ >$(obj)include/config.h
2131 @echo "#define CONFIG_GTH2 1" >>$(obj)include/config.h
2132 @$(MKCONFIG) -a gth2 mips mips gth2
Wolfgang Denk0c32d962006-06-16 17:32:31 +02002133
wdenk074cff02004-02-24 00:16:43 +00002134#########################################################################
2135## S3C44B0 Systems
2136#########################################################################
2137
2138B2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002139 @$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave
wdenk074cff02004-02-24 00:16:43 +00002140
wdenk7ebf7442002-11-02 23:17:16 +00002141#########################################################################
2142## ARM720T Systems
2143#########################################################################
2144
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002145armadillo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002146 @$(MKCONFIG) $(@:_config=) arm arm720t armadillo
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002147
wdenk7ebf7442002-11-02 23:17:16 +00002148ep7312_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002149 @$(MKCONFIG) $(@:_config=) arm arm720t ep7312
wdenk7ebf7442002-11-02 23:17:16 +00002150
wdenk2d24a3a2004-06-09 21:50:45 +00002151impa7_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002152 @$(MKCONFIG) $(@:_config=) arm arm720t impa7
wdenk2d24a3a2004-06-09 21:50:45 +00002153
wdenk2d1a5372004-02-23 19:30:57 +00002154modnet50_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002155 @$(MKCONFIG) $(@:_config=) arm arm720t modnet50
wdenk2d1a5372004-02-23 19:30:57 +00002156
wdenk39539882004-07-01 16:30:44 +00002157evb4510_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002158 @$(MKCONFIG) $(@:_config=) arm arm720t evb4510
wdenk39539882004-07-01 16:30:44 +00002159
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002160lpc2292sodimm_config: unconfig
Peter Pearseb0d8f5b2007-05-09 11:37:56 +01002161 @$(MKCONFIG) $(@:_config=) arm arm720t lpc2292sodimm NULL lpc2292
2162
2163SMN42_config : unconfig
2164 @$(MKCONFIG) $(@:_config=) arm arm720t SMN42 siemens lpc2292
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002165
wdenk7ebf7442002-11-02 23:17:16 +00002166#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002167## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00002168#########################################################################
2169
wdenk20787e22005-04-06 00:04:16 +00002170adsvix_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002171 @$(MKCONFIG) $(@:_config=) arm pxa adsvix
wdenk20787e22005-04-06 00:04:16 +00002172
wdenkfabd46a2004-07-10 23:11:10 +00002173cerf250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002174 @$(MKCONFIG) $(@:_config=) arm pxa cerf250
wdenkfabd46a2004-07-10 23:11:10 +00002175
wdenk7ebf7442002-11-02 23:17:16 +00002176cradle_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002177 @$(MKCONFIG) $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00002178
2179csb226_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002180 @$(MKCONFIG) $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00002181
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002182delta_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002183 @$(MKCONFIG) $(@:_config=) arm pxa delta
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002184
wdenk43d96162003-03-06 00:02:04 +00002185innokom_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002186 @$(MKCONFIG) $(@:_config=) arm pxa innokom
wdenk43d96162003-03-06 00:02:04 +00002187
wdenk2d5b5612003-10-14 19:43:55 +00002188ixdp425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002189 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
wdenk2d5b5612003-10-14 19:43:55 +00002190
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002191ixdpg425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002192 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002193
wdenk43d96162003-03-06 00:02:04 +00002194lubbock_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002195 @$(MKCONFIG) $(@:_config=) arm pxa lubbock
wdenk43d96162003-03-06 00:02:04 +00002196
Heiko Schocher5720df72006-05-02 07:51:46 +02002197pleb2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002198 @$(MKCONFIG) $(@:_config=) arm pxa pleb2
Heiko Schocher5720df72006-05-02 07:51:46 +02002199
wdenk52f52c12003-06-19 23:04:19 +00002200logodl_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002201 @$(MKCONFIG) $(@:_config=) arm pxa logodl
wdenk52f52c12003-06-19 23:04:19 +00002202
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002203pdnb3_config \
2204scpu_config: unconfig
2205 @if [ "$(findstring scpu_,$@)" ] ; then \
2206 echo "#define CONFIG_SCPU" >>include/config.h ; \
2207 echo "... on SCPU board variant" ; \
2208 else \
2209 >include/config.h ; \
2210 fi
2211 @$(MKCONFIG) -a pdnb3 arm ixp pdnb3 prodrive
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002212
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002213pxa255_idp_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002214 @$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002215
wdenk3e386912003-04-05 00:53:31 +00002216wepep250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002217 @$(MKCONFIG) $(@:_config=) arm pxa wepep250
wdenk3e386912003-04-05 00:53:31 +00002218
wdenk4ec3a7f2004-09-28 16:44:41 +00002219xaeniax_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002220 @$(MKCONFIG) $(@:_config=) arm pxa xaeniax
wdenk4ec3a7f2004-09-28 16:44:41 +00002221
wdenkefa329c2004-03-23 20:18:25 +00002222xm250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002223 @$(MKCONFIG) $(@:_config=) arm pxa xm250
wdenkefa329c2004-03-23 20:18:25 +00002224
wdenkca0e7742004-06-09 15:37:23 +00002225xsengine_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002226 @$(MKCONFIG) $(@:_config=) arm pxa xsengine
wdenkca0e7742004-06-09 15:37:23 +00002227
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002228zylonite_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002229 @$(MKCONFIG) $(@:_config=) arm pxa zylonite
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002230
wdenk8ed96042005-01-09 23:16:25 +00002231#########################################################################
2232## ARM1136 Systems
2233#########################################################################
2234omap2420h4_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002235 @$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4
wdenk8ed96042005-01-09 23:16:25 +00002236
wdenk2262cfe2002-11-18 00:14:45 +00002237#========================================================================
2238# i386
2239#========================================================================
2240#########################################################################
wdenk1cb8e982003-03-06 21:55:29 +00002241## AMD SC520 CDP
wdenk2262cfe2002-11-18 00:14:45 +00002242#########################################################################
2243sc520_cdp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002244 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp
wdenk2262cfe2002-11-18 00:14:45 +00002245
wdenk7a8e9bed2003-05-31 18:35:21 +00002246sc520_spunk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002247 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002248
2249sc520_spunk_rel_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002250 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002251
wdenk43d96162003-03-06 00:02:04 +00002252#========================================================================
2253# MIPS
2254#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00002255#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002256## MIPS32 4Kc
2257#########################################################################
2258
wdenke0ac62d2003-08-17 18:55:18 +00002259xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
2260
2261incaip_100MHz_config \
2262incaip_133MHz_config \
2263incaip_150MHz_config \
2264incaip_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002265 @mkdir -p $(obj)include
2266 @ >$(obj)include/config.h
wdenke0ac62d2003-08-17 18:55:18 +00002267 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002268 { echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002269 echo "... with 100MHz system clock" ; \
2270 }
2271 @[ -z "$(findstring _133MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002272 { echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002273 echo "... with 133MHz system clock" ; \
2274 }
2275 @[ -z "$(findstring _150MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002276 { echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002277 echo "... with 150MHz system clock" ; \
2278 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002279 @$(MKCONFIG) -a $(call xtract_incaip,$@) mips mips incaip
wdenke0ac62d2003-08-17 18:55:18 +00002280
wdenkf4863a72004-02-07 01:27:10 +00002281tb0229_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002282 @$(MKCONFIG) $(@:_config=) mips mips tb0229
wdenkf4863a72004-02-07 01:27:10 +00002283
wdenke0ac62d2003-08-17 18:55:18 +00002284#########################################################################
wdenk69459792004-05-29 16:53:29 +00002285## MIPS32 AU1X00
2286#########################################################################
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002287dbau1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002288 @mkdir -p $(obj)include
2289 @ >$(obj)include/config.h
2290 @echo "#define CONFIG_DBAU1000 1" >>$(obj)include/config.h
2291 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002292
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002293dbau1100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002294 @mkdir -p $(obj)include
2295 @ >$(obj)include/config.h
2296 @echo "#define CONFIG_DBAU1100 1" >>$(obj)include/config.h
2297 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002298
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002299dbau1500_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002300 @mkdir -p $(obj)include
2301 @ >$(obj)include/config.h
2302 @echo "#define CONFIG_DBAU1500 1" >>$(obj)include/config.h
2303 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002304
wdenkff36fd82005-01-09 22:28:56 +00002305dbau1550_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002306 @mkdir -p $(obj)include
2307 @ >$(obj)include/config.h
2308 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2309 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002310
2311dbau1550_el_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002312 @mkdir -p $(obj)include
2313 @ >$(obj)include/config.h
2314 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2315 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002316
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002317pb1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002318 @mkdir -p $(obj)include
2319 @ >$(obj)include/config.h
2320 @echo "#define CONFIG_PB1000 1" >>$(obj)include/config.h
2321 @$(MKCONFIG) -a pb1x00 mips mips pb1x00
Wolfgang Denk265817c2005-09-25 00:53:22 +02002322
wdenk69459792004-05-29 16:53:29 +00002323#########################################################################
wdenke0ac62d2003-08-17 18:55:18 +00002324## MIPS64 5Kc
2325#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002326
wdenk3e386912003-04-05 00:53:31 +00002327purple_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002328 @$(MKCONFIG) $(@:_config=) mips mips purple
wdenk43d96162003-03-06 00:02:04 +00002329
wdenk4a551702003-10-08 23:26:14 +00002330#========================================================================
2331# Nios
2332#========================================================================
2333#########################################################################
2334## Nios32
2335#########################################################################
2336
wdenkc935d3b2004-01-03 19:43:48 +00002337DK1C20_safe_32_config \
2338DK1C20_standard_32_config \
wdenk4a551702003-10-08 23:26:14 +00002339DK1C20_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002340 @mkdir -p $(obj)include
2341 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002342 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002343 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002344 echo "... NIOS 'safe_32' configuration" ; \
2345 }
2346 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002347 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002348 echo "... NIOS 'standard_32' configuration" ; \
2349 }
2350 @[ -z "$(findstring DK1C20_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002351 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002352 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2353 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002354 @$(MKCONFIG) -a DK1C20 nios nios dk1c20 altera
wdenkc935d3b2004-01-03 19:43:48 +00002355
2356DK1S10_safe_32_config \
2357DK1S10_standard_32_config \
wdenkec4c5442004-02-09 23:12:24 +00002358DK1S10_mtx_ldk_20_config \
wdenkc935d3b2004-01-03 19:43:48 +00002359DK1S10_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002360 @mkdir -p $(obj)include
2361 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002362 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002363 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002364 echo "... NIOS 'safe_32' configuration" ; \
2365 }
2366 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002367 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002368 echo "... NIOS 'standard_32' configuration" ; \
2369 }
wdenkec4c5442004-02-09 23:12:24 +00002370 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002371 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>$(obj)include/config.h ; \
wdenkec4c5442004-02-09 23:12:24 +00002372 echo "... NIOS 'mtx_ldk_20' configuration" ; \
2373 }
wdenkc935d3b2004-01-03 19:43:48 +00002374 @[ -z "$(findstring DK1S10_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002375 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002376 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2377 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002378 @$(MKCONFIG) -a DK1S10 nios nios dk1s10 altera
wdenk4a551702003-10-08 23:26:14 +00002379
wdenkaaf224a2004-03-14 15:20:55 +00002380ADNPESC1_DNPEVA2_base_32_config \
2381ADNPESC1_base_32_config \
2382ADNPESC1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002383 @mkdir -p $(obj)include
2384 @ >$(obj)include/config.h
wdenkaaf224a2004-03-14 15:20:55 +00002385 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002386 { echo "#define CONFIG_DNPEVA2 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002387 echo "... DNP/EVA2 configuration" ; \
2388 }
wdenkaaf224a2004-03-14 15:20:55 +00002389 @[ -z "$(findstring _base_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002390 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002391 echo "... NIOS 'base_32' configuration" ; \
2392 }
wdenkaaf224a2004-03-14 15:20:55 +00002393 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002394 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002395 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
2396 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002397 @$(MKCONFIG) -a ADNPESC1 nios nios adnpesc1 ssv
wdenkaaf224a2004-03-14 15:20:55 +00002398
wdenk5c952cf2004-10-10 21:27:30 +00002399#########################################################################
2400## Nios-II
2401#########################################################################
2402
Scott McNutt9cc83372006-06-08 13:37:39 -04002403EP1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002404 @$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002405
2406EP1S10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002407 @$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002408
2409EP1S40_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002410 @$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002411
wdenk5c952cf2004-10-10 21:27:30 +00002412PK1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002413 @$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent
wdenk5c952cf2004-10-10 21:27:30 +00002414
2415PCI5441_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002416 @$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent
wdenk4a551702003-10-08 23:26:14 +00002417
wdenk507bbe32004-04-18 21:13:41 +00002418#========================================================================
2419# MicroBlaze
2420#========================================================================
2421#########################################################################
2422## Microblaze
2423#########################################################################
2424suzaku_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002425 @mkdir -p $(obj)include
2426 @ >$(obj)include/config.h
2427 @echo "#define CONFIG_SUZAKU 1" >> $(obj)include/config.h
2428 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
wdenk507bbe32004-04-18 21:13:41 +00002429
Michal Simekcfc67112007-03-11 13:48:24 +01002430ml401_config: unconfig
2431 @ >include/config.h
2432 @echo "#define CONFIG_ML401 1" >> include/config.h
2433 @./mkconfig -a $(@:_config=) microblaze microblaze ml401 xilinx
2434
Michal Simek17980492007-03-26 01:39:07 +02002435xupv2p_config: unconfig
2436 @ >include/config.h
2437 @echo "#define CONFIG_XUPV2P 1" >> include/config.h
2438 @./mkconfig -a $(@:_config=) microblaze microblaze xupv2p xilinx
2439
wdenk3e386912003-04-05 00:53:31 +00002440#########################################################################
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002441## Blackfin
2442#########################################################################
Aubrey.Lief26a082007-03-09 13:40:56 +08002443bf533-ezkit_config: unconfig
2444 @$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-ezkit
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002445
Aubrey.Lief26a082007-03-09 13:40:56 +08002446bf533-stamp_config: unconfig
2447 @$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-stamp
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002448
Aubrey Li26bf7de2007-03-19 01:24:52 +08002449bf537-stamp_config: unconfig
2450 @$(MKCONFIG) $(@:_config=) blackfin bf537 bf537-stamp
2451
Aubrey Li65458982007-03-20 18:16:24 +08002452bf561-ezkit_config: unconfig
2453 @$(MKCONFIG) $(@:_config=) blackfin bf561 bf561-ezkit
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002454
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02002455#========================================================================
2456# AVR32
2457#========================================================================
2458#########################################################################
2459## AT32AP7xxx
2460#########################################################################
2461
2462atstk1002_config : unconfig
2463 @./mkconfig $(@:_config=) avr32 at32ap atstk1000 atmel at32ap7000
2464
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002465#########################################################################
2466#########################################################################
wdenk3e386912003-04-05 00:53:31 +00002467#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00002468
2469clean:
Marian Balakowiczf9328632006-09-01 19:49:50 +02002470 find $(OBJTREE) -type f \
wdenk7ebf7442002-11-02 23:17:16 +00002471 \( -name 'core' -o -name '*.bak' -o -name '*~' \
2472 -o -name '*.o' -o -name '*.a' \) -print \
2473 | xargs rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002474 rm -f $(obj)examples/hello_world $(obj)examples/timer \
2475 $(obj)examples/eepro100_eeprom $(obj)examples/sched \
2476 $(obj)examples/mem_to_mem_idma2intr $(obj)examples/82559_eeprom \
Wolfgang Denkd214fbb2006-09-13 10:29:32 +02002477 $(obj)examples/smc91111_eeprom $(obj)examples/interrupt \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002478 $(obj)examples/test_burst
2479 rm -f $(obj)tools/img2srec $(obj)tools/mkimage $(obj)tools/envcrc \
Heiko Schocher566a4942007-06-22 19:11:54 +02002480 $(obj)tools/gen_eth_addr $(obj)tools/ubsha1
Marian Balakowiczf9328632006-09-01 19:49:50 +02002481 rm -f $(obj)tools/mpc86x_clk $(obj)tools/ncb
2482 rm -f $(obj)tools/easylogo/easylogo $(obj)tools/bmp_logo
2483 rm -f $(obj)tools/gdb/astest $(obj)tools/gdb/gdbcont $(obj)tools/gdb/gdbsend
2484 rm -f $(obj)tools/env/fw_printenv $(obj)tools/env/fw_setenv
2485 rm -f $(obj)board/cray/L1/bootscript.c $(obj)board/cray/L1/bootscript.image
2486 rm -f $(obj)board/netstar/eeprom $(obj)board/netstar/crcek $(obj)board/netstar/crcit
2487 rm -f $(obj)board/netstar/*.srec $(obj)board/netstar/*.bin
2488 rm -f $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom
2489 rm -f $(obj)board/integratorap/u-boot.lds $(obj)board/integratorcp/u-boot.lds
Aubrey Li8440bb12007-03-12 00:25:14 +08002490 rm -f $(obj)board/bf533-ezkit/u-boot.lds $(obj)board/bf533-stamp/u-boot.lds
Aubrey Li65458982007-03-20 18:16:24 +08002491 rm -f $(obj)board/bf537-stamp/u-boot.lds $(obj)board/bf561-ezkit/u-boot.lds
Marian Balakowiczf9328632006-09-01 19:49:50 +02002492 rm -f $(obj)include/bmp_logo.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002493 rm -f $(obj)nand_spl/u-boot-spl $(obj)nand_spl/u-boot-spl.map
wdenk7ebf7442002-11-02 23:17:16 +00002494
2495clobber: clean
Marian Balakowiczf9328632006-09-01 19:49:50 +02002496 find $(OBJTREE) -type f \( -name .depend \
wdenk4c0d4c32004-06-09 17:34:58 +00002497 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
2498 -print0 \
2499 | xargs -0 rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002500 rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS $(obj)include/version_autogenerated.h
2501 rm -fr $(obj)*.*~
2502 rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL)
Heiko Schocher566a4942007-06-22 19:11:54 +02002503 rm -f $(obj)tools/crc32.c $(obj)tools/environment.c $(obj)tools/env/crc32.c $(obj)tools/sha1.c
Marian Balakowiczf9328632006-09-01 19:49:50 +02002504 rm -f $(obj)tools/inca-swap-bytes $(obj)cpu/mpc824x/bedbug_603e.c
2505 rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002506 [ ! -d $(OBJTREE)/nand_spl ] || find $(obj)nand_spl -lname "*" -print | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +00002507
Marian Balakowiczf9328632006-09-01 19:49:50 +02002508ifeq ($(OBJTREE),$(SRCTREE))
wdenk7ebf7442002-11-02 23:17:16 +00002509mrproper \
2510distclean: clobber unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002511else
2512mrproper \
2513distclean: clobber unconfig
2514 rm -rf $(OBJTREE)/*
2515endif
wdenk7ebf7442002-11-02 23:17:16 +00002516
2517backup:
2518 F=`basename $(TOPDIR)` ; cd .. ; \
2519 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
2520
2521#########################################################################