blob: 15dec1749ce2aa18298df1a7ed63dfbf275e360a [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
Jon Loeligerdebb7352006-04-26 17:58:56 -0500176ifeq ($(CPU),mpc86xx)
177OBJS += cpu/$(CPU)/resetvec.o
178endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100179ifeq ($(CPU),bf533)
180OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
Aubrey.Lief26a082007-03-09 13:40:56 +0800181OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100182endif
Aubrey Li26bf7de2007-03-19 01:24:52 +0800183ifeq ($(CPU),bf537)
184OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
Aubrey Li65458982007-03-20 18:16:24 +0800185OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
186endif
187ifeq ($(CPU),bf561)
188OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
189OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
wdenk7ebf7442002-11-02 23:17:16 +0000190endif
191
Marian Balakowiczf9328632006-09-01 19:49:50 +0200192OBJS := $(addprefix $(obj),$(OBJS))
193
wdenk9fd5e312003-12-07 23:55:12 +0000194LIBS = lib_generic/libgeneric.a
195LIBS += board/$(BOARDDIR)/lib$(BOARD).a
wdenk7ebf7442002-11-02 23:17:16 +0000196LIBS += cpu/$(CPU)/lib$(CPU).a
wdenk1d9f4102004-10-09 22:21:29 +0000197ifdef SOC
198LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
199endif
Stefan Roese323bfa82007-04-23 12:00:22 +0200200ifeq ($(CPU),ixp)
201LIBS += cpu/ixp/npe/libnpe.a
202endif
wdenk7ebf7442002-11-02 23:17:16 +0000203LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk518e2e12004-03-25 14:59:05 +0000204LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
stroesec419d1d2004-12-16 18:44:40 +0000205 fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a
wdenk7ebf7442002-11-02 23:17:16 +0000206LIBS += net/libnet.a
207LIBS += disk/libdisk.a
208LIBS += rtc/librtc.a
209LIBS += dtt/libdtt.a
210LIBS += drivers/libdrivers.a
Marian Balakowicz6db39702006-04-08 19:08:06 +0200211LIBS += drivers/nand/libnand.a
212LIBS += drivers/nand_legacy/libnand_legacy.a
Dave Liu7737d5c2006-11-03 12:11:15 -0600213ifeq ($(CPU),mpc83xx)
214LIBS += drivers/qe/qe.a
215endif
wdenk7152b1d2003-09-05 23:19:14 +0000216LIBS += drivers/sk98lin/libsk98lin.a
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100217LIBS += post/libpost.a post/drivers/libpostdrivers.a
218LIBS += $(shell if [ -d post/lib_$(ARCH) ]; then echo \
219 "post/lib_$(ARCH)/libpost$(ARCH).a"; fi)
220LIBS += $(shell if [ -d post/cpu/$(CPU) ]; then echo \
221 "post/cpu/$(CPU)/libpost$(CPU).a"; fi)
222LIBS += $(shell if [ -d post/board/$(BOARDDIR) ]; then echo \
223 "post/board/$(BOARDDIR)/libpost$(BOARD).a"; fi)
wdenk7ebf7442002-11-02 23:17:16 +0000224LIBS += common/libcommon.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
Stefan Roese887e2ec2006-09-07 11:51:23 +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
Marian Balakowiczf9328632006-09-01 19:49:50 +0200270$(obj)u-boot.dis: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000271 $(OBJDUMP) -d $< > $@
272
Marian Balakowiczf9328632006-09-01 19:49:50 +0200273$(obj)u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
wdenk8bde7f72003-06-27 21:31:46 +0000274 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
Marian Balakowiczf9328632006-09-01 19:49:50 +0200275 cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
276 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000277 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000278
Marian Balakowiczf9328632006-09-01 19:49:50 +0200279$(OBJS):
280 $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@))
281
wdenka8c7c702003-12-06 19:49:23 +0000282$(LIBS):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200283 $(MAKE) -C $(dir $(subst $(obj),,$@))
wdenka8c7c702003-12-06 19:49:23 +0000284
285$(SUBDIRS):
wdenkb028f712003-12-07 21:39:28 +0000286 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000287
Stefan Roese887e2ec2006-09-07 11:51:23 +0200288$(NAND_SPL): version
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200289 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
Stefan Roese887e2ec2006-09-07 11:51:23 +0200290
291$(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200292 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 +0200293
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100294version:
295 @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \
296 echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \
297 echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \
298 $(TOPDIR)) >> $(VERSION_FILE); \
299 echo "\"" >> $(VERSION_FILE)
300
dzu8f713fd2003-08-07 14:20:31 +0000301gdbtools:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200302 $(MAKE) -C tools/gdb all || exit 1
303
304updater:
305 $(MAKE) -C tools/updater all || exit 1
306
307env:
308 $(MAKE) -C tools/env all || exit 1
dzu8f713fd2003-08-07 14:20:31 +0000309
wdenk7ebf7442002-11-02 23:17:16 +0000310depend dep:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200311 for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir _depend ; done
wdenk7ebf7442002-11-02 23:17:16 +0000312
Marian Balakowiczf9328632006-09-01 19:49:50 +0200313tags ctags:
314 ctags -w -o $(OBJTREE)/ctags `find $(SUBDIRS) include \
wdenkbda6c8a2004-04-15 21:58:11 +0000315 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
316 fs/cramfs fs/fat fs/fdos fs/jffs2 \
317 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000318 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
319
320etags:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200321 etags -a -o $(OBJTREE)/etags `find $(SUBDIRS) include \
wdenkeedcd072004-09-08 22:03:11 +0000322 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
323 fs/cramfs fs/fat fs/fdos fs/jffs2 \
324 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000325 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
326
Marian Balakowiczf9328632006-09-01 19:49:50 +0200327$(obj)System.map: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000328 @$(NM) $< | \
329 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200330 sort > $(obj)System.map
wdenk7ebf7442002-11-02 23:17:16 +0000331
332#########################################################################
333else
Marian Balakowiczf9328632006-09-01 19:49:50 +0200334all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
335$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
336$(SUBDIRS) version gdbtools updater env depend \
337dep tags ctags etags $(obj)System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000338 @echo "System not configured - see README" >&2
339 @ exit 1
340endif
341
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200342.PHONY : CHANGELOG
343CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -0400344 git log --no-merges U-Boot-1_1_5.. | \
345 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200346
wdenk7ebf7442002-11-02 23:17:16 +0000347#########################################################################
348
349unconfig:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200350 @rm -f $(obj)include/config.h $(obj)include/config.mk \
351 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp
wdenk7ebf7442002-11-02 23:17:16 +0000352
353#========================================================================
354# PowerPC
355#========================================================================
wdenk0db5bca2003-03-31 17:27:09 +0000356
357#########################################################################
358## MPC5xx Systems
359#########################################################################
360
wdenk5e5f9ed2005-04-13 23:15:10 +0000361canmb_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200362 @$(MKCONFIG) -a canmb ppc mpc5xxx canmb
wdenk5e5f9ed2005-04-13 23:15:10 +0000363
wdenk0db5bca2003-03-31 17:27:09 +0000364cmi_mpc5xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200365 @$(MKCONFIG) $(@:_config=) ppc mpc5xx cmi
wdenk0db5bca2003-03-31 17:27:09 +0000366
wdenkdb01a2e2004-04-15 23:14:49 +0000367PATI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200368 @$(MKCONFIG) $(@:_config=) ppc mpc5xx pati mpl
wdenkb6e4c402004-01-02 16:05:07 +0000369
wdenk7ebf7442002-11-02 23:17:16 +0000370#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000371## MPC5xxx Systems
372#########################################################################
wdenka87589d2005-06-10 10:00:19 +0000373
Wolfgang Denkdafba162005-08-12 00:22:49 +0200374aev_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200375 @$(MKCONFIG) -a aev ppc mpc5xxx tqm5200
Wolfgang Denkdafba162005-08-12 00:22:49 +0200376
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200377BC3450_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200378 @$(MKCONFIG) -a BC3450 ppc mpc5xxx bc3450
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200379
Stefan Roese5e4b3362005-08-22 17:51:53 +0200380cpci5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200381 @$(MKCONFIG) -a cpci5200 ppc mpc5xxx cpci5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200382
wdenka87589d2005-06-10 10:00:19 +0000383hmi1001_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200384 @$(MKCONFIG) hmi1001 ppc mpc5xxx hmi1001
wdenka87589d2005-06-10 10:00:19 +0000385
wdenke35745b2004-04-18 23:32:11 +0000386Lite5200_config \
387Lite5200_LOWBOOT_config \
388Lite5200_LOWBOOT08_config \
389icecube_5200_config \
390icecube_5200_LOWBOOT_config \
391icecube_5200_LOWBOOT08_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100392icecube_5200_DDR_config \
393icecube_5200_DDR_LOWBOOT_config \
wdenke35745b2004-04-18 23:32:11 +0000394icecube_5200_DDR_LOWBOOT08_config \
395icecube_5100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200396 @mkdir -p $(obj)include
397 @mkdir -p $(obj)board/icecube
398 @ >$(obj)include/config.h
wdenk17d704e2004-04-10 20:43:50 +0000399 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
400 { if [ "$(findstring DDR,$@)" ] ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200401 then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
402 else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
wdenk17d704e2004-04-10 20:43:50 +0000403 fi ; \
wdenk5cf9da42003-11-07 13:42:26 +0000404 echo "... with LOWBOOT configuration" ; \
405 }
406 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200407 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
wdenk5cf9da42003-11-07 13:42:26 +0000408 echo "... with 8 MB flash only" ; \
wdenk17d704e2004-04-10 20:43:50 +0000409 echo "... with LOWBOOT configuration" ; \
wdenk5cf9da42003-11-07 13:42:26 +0000410 }
wdenkb2001f22003-12-20 22:45:10 +0000411 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200412 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +0000413 echo "... DDR memory revision" ; \
414 }
wdenkd4ca31c2004-01-02 14:00:00 +0000415 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200416 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenkd4ca31c2004-01-02 14:00:00 +0000417 echo "... with MPC5200 processor" ; \
418 }
wdenka0f2fe52003-10-28 09:14:21 +0000419 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200420 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk945af8d2003-07-16 21:53:01 +0000421 echo "... with MGT5100 processor" ; \
422 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200423 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
wdenk945af8d2003-07-16 21:53:01 +0000424
Heiko Schocher2605e902007-02-16 07:57:42 +0100425jupiter_config: unconfig
426 @$(MKCONFIG) jupiter ppc mpc5xxx jupiter
427
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200428v38b_config: unconfig
Bartlomiej Sieka82d9c9e2006-11-01 01:34:29 +0100429 @./mkconfig -a v38b ppc mpc5xxx v38b
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200430
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100431inka4x0_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200432 @$(MKCONFIG) inka4x0 ppc mpc5xxx inka4x0
wdenk138ff602004-12-16 15:52:40 +0000433
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100434lite5200b_config \
Domen Puncerd3832e82007-04-16 14:00:13 +0200435lite5200b_PM_config \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100436lite5200b_LOWBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200437 @mkdir -p $(obj)include
438 @mkdir -p $(obj)board/icecube
439 @ >$(obj)include/config.h
440 @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100441 @ echo "... DDR memory revision"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200442 @ echo "#define CONFIG_MPC5200" >>$(obj)include/config.h
443 @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h
Domen Puncerd3832e82007-04-16 14:00:13 +0200444 @[ -z "$(findstring _PM_,$@)" ] || \
445 { echo "#define CONFIG_LITE5200B_PM" >>$(obj)include/config.h ; \
446 echo "... with power management (low-power mode) support" ; \
447 }
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100448 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200449 { echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100450 echo "... with LOWBOOT configuration" ; \
451 }
452 @ echo "... with MPC5200B processor"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200453 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100454
Stefan Roesef1ee9822006-03-04 14:57:03 +0100455mcc200_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200456mcc200_SDRAM_config \
457mcc200_highboot_config \
458mcc200_COM12_config \
459mcc200_COM12_SDRAM_config \
Wolfgang Denk113f64e2006-08-25 01:38:04 +0200460mcc200_COM12_highboot_config \
461mcc200_COM12_highboot_SDRAM_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200462mcc200_highboot_SDRAM_config \
463prs200_config \
464prs200_DDR_config \
465prs200_highboot_config \
466prs200_highboot_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200467 @mkdir -p $(obj)include
468 @mkdir -p $(obj)board/mcc200
469 @ >$(obj)include/config.h
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200470 @[ -n "$(findstring highboot,$@)" ] || \
471 { echo "... with lowboot configuration" ; \
Stefan Roesef1ee9822006-03-04 14:57:03 +0100472 }
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200473 @[ -z "$(findstring highboot,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200474 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200475 echo "... with highboot configuration" ; \
476 }
477 @[ -n "$(findstring _SDRAM,$@)" ] || \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200478 { if [ -n "$(findstring mcc200,$@)" ]; \
479 then \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100480 echo "... with DDR" ; \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200481 else \
482 if [ -n "$(findstring _DDR,$@)" ];\
483 then \
484 echo "... with DDR" ; \
485 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200486 echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200487 echo "... with SDRAM" ; \
488 fi; \
489 fi; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200490 }
491 @[ -z "$(findstring _SDRAM,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200492 { echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200493 echo "... with SDRAM" ; \
494 }
Wolfgang Denk463764c2006-08-17 00:36:51 +0200495 @[ -z "$(findstring COM12,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200496 { echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \
Wolfgang Denk463764c2006-08-17 00:36:51 +0200497 echo "... with console on COM12" ; \
498 }
Wolfgang Denked1cf842006-08-24 00:26:42 +0200499 @[ -z "$(findstring prs200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200500 { echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200501 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200502 @$(MKCONFIG) -n $@ -a mcc200 ppc mpc5xxx mcc200
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100503
Stefan Roese8b7d1f02007-01-31 16:37:34 +0100504mecp5200_config: unconfig
505 @$(MKCONFIG) -a mecp5200 ppc mpc5xxx mecp5200 esd
506
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200507o2dnt_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200508 @$(MKCONFIG) o2dnt ppc mpc5xxx o2dnt
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200509
Stefan Roese5e4b3362005-08-22 17:51:53 +0200510pf5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200511 @$(MKCONFIG) pf5200 ppc mpc5xxx pf5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200512
wdenk89394042004-08-04 21:56:49 +0000513PM520_config \
514PM520_DDR_config \
515PM520_ROMBOOT_config \
516PM520_ROMBOOT_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200517 @mkdir -p $(obj)include
518 @ >$(obj)include/config.h
wdenk89394042004-08-04 21:56:49 +0000519 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200520 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000521 echo "... DDR memory revision" ; \
522 }
523 @[ -z "$(findstring ROMBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200524 { echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000525 echo "... booting from 8-bit flash" ; \
526 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200527 @$(MKCONFIG) -a PM520 ppc mpc5xxx pm520
wdenk89394042004-08-04 21:56:49 +0000528
Wolfgang Denk6624b682006-02-22 10:25:39 +0100529smmaco4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200530 @$(MKCONFIG) -a smmaco4 ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100531
532spieval_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200533 @$(MKCONFIG) -a spieval ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100534
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200535TB5200_B_config \
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200536TB5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200537 @mkdir -p $(obj)include
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200538 @[ -z "$(findstring _B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200539 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200540 echo "... with MPC5200B processor" ; \
541 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200542 @$(MKCONFIG) -n $@ -a TB5200 ppc mpc5xxx tqm5200
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200543
wdenkd4ca31c2004-01-02 14:00:00 +0000544MINI5200_config \
545EVAL5200_config \
546TOP5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200547 @mkdir -p $(obj)include
548 @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
549 @$(MKCONFIG) -n $@ -a TOP5200 ppc mpc5xxx top5200 emk
wdenkd4ca31c2004-01-02 14:00:00 +0000550
wdenk6c7a1402004-07-11 19:17:20 +0000551Total5100_config \
552Total5200_config \
553Total5200_lowboot_config \
554Total5200_Rev2_config \
555Total5200_Rev2_lowboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200556 @mkdir -p $(obj)include
557 @mkdir -p $(obj)board/total5200
558 @ >$(obj)include/config.h
wdenk6c7a1402004-07-11 19:17:20 +0000559 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200560 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000561 echo "... with MGT5100 processor" ; \
562 }
563 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200564 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000565 echo "... with MPC5200 processor" ; \
566 }
567 @[ -n "$(findstring Rev,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200568 { echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000569 echo "... revision 1 board" ; \
570 }
571 @[ -z "$(findstring Rev2_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200572 { echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000573 echo "... revision 2 board" ; \
574 }
575 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200576 { echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp ; \
wdenk6c7a1402004-07-11 19:17:20 +0000577 echo "... with lowboot configuration" ; \
578 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200579 @$(MKCONFIG) -a Total5200 ppc mpc5xxx total5200
wdenk6c7a1402004-07-11 19:17:20 +0000580
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200581cam5200_config \
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100582cam5200_niosflash_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200583fo300_config \
584MiniFAP_config \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200585TQM5200S_config \
586TQM5200S_HIGHBOOT_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200587TQM5200_B_config \
588TQM5200_B_HIGHBOOT_config \
589TQM5200_config \
590TQM5200_STK100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200591 @mkdir -p $(obj)include
592 @mkdir -p $(obj)board/tqm5200
593 @ >$(obj)include/config.h
Wolfgang Denk135ae002006-07-22 01:20:03 +0200594 @[ -z "$(findstring cam5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200595 { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \
596 echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
597 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk135ae002006-07-22 01:20:03 +0200598 echo "... TQM5200S on Cam5200" ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200599 }
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100600 @[ -z "$(findstring niosflash,$@)" ] || \
601 { echo "#define CONFIG_CAM5200_NIOSFLASH" >>$(obj)include/config.h ; \
602 echo "... with NIOS flash driver" ; \
603 }
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200604 @[ -z "$(findstring fo300,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200605 { echo "#define CONFIG_FO300" >>$(obj)include/config.h ; \
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200606 echo "... TQM5200 on FO300" ; \
607 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200608 @[ -z "$(findstring MiniFAP,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200609 { echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200610 echo "... TQM5200_AC on MiniFAP" ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200611 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200612 @[ -z "$(findstring STK100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200613 { echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h ; \
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200614 echo "... on a STK52XX.100 base board" ; \
wdenk56523f12004-07-11 17:40:54 +0000615 }
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200616 @[ -z "$(findstring TQM5200_B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200617 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200618 }
619 @[ -z "$(findstring TQM5200S,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200620 { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
621 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200622 }
Wolfgang Denk978b1092006-07-19 18:01:38 +0200623 @[ -z "$(findstring HIGHBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200624 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200625 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200626 @$(MKCONFIG) -n $@ -a TQM5200 ppc mpc5xxx tqm5200
Heiko Schocher6dedf3d2006-12-21 16:14:48 +0100627uc101_config: unconfig
628 @$(MKCONFIG) uc101 ppc mpc5xxx uc101
Bartlomiej Sieka53d4a492007-02-09 10:45:42 +0100629motionpro_config: unconfig
630 @$(MKCONFIG) motionpro ppc mpc5xxx motionpro
631
wdenk56523f12004-07-11 17:40:54 +0000632
wdenk945af8d2003-07-16 21:53:01 +0000633#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000634## MPC8xx Systems
635#########################################################################
636
wdenk2d24a3a2004-06-09 21:50:45 +0000637Adder_config \
638Adder87x_config \
wdenk26238132004-07-09 22:51:01 +0000639AdderII_config \
wdenk2d24a3a2004-06-09 21:50:45 +0000640 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200641 @mkdir -p $(obj)include
wdenk26238132004-07-09 22:51:01 +0000642 $(if $(findstring AdderII,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200643 @echo "#define CONFIG_MPC852T" > $(obj)include/config.h)
644 @$(MKCONFIG) -a Adder ppc mpc8xx adder
wdenk2d24a3a2004-06-09 21:50:45 +0000645
wdenk180d3f72004-01-04 16:28:35 +0000646ADS860_config \
wdenk180d3f72004-01-04 16:28:35 +0000647FADS823_config \
648FADS850SAR_config \
649MPC86xADS_config \
wdenk11142572004-06-06 21:35:06 +0000650MPC885ADS_config \
wdenk180d3f72004-01-04 16:28:35 +0000651FADS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200652 @$(MKCONFIG) $(@:_config=) ppc mpc8xx fads
wdenk7ebf7442002-11-02 23:17:16 +0000653
654AMX860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200655 @$(MKCONFIG) $(@:_config=) ppc mpc8xx amx860 westel
wdenk7ebf7442002-11-02 23:17:16 +0000656
657c2mon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200658 @$(MKCONFIG) $(@:_config=) ppc mpc8xx c2mon
wdenk7ebf7442002-11-02 23:17:16 +0000659
660CCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200661 @$(MKCONFIG) $(@:_config=) ppc mpc8xx CCM siemens
wdenk7ebf7442002-11-02 23:17:16 +0000662
663cogent_mpc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200664 @$(MKCONFIG) $(@:_config=) ppc mpc8xx cogent
wdenk7ebf7442002-11-02 23:17:16 +0000665
wdenk3bac3512003-03-12 10:41:04 +0000666ELPT860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200667 @$(MKCONFIG) $(@:_config=) ppc mpc8xx elpt860 LEOX
wdenk3bac3512003-03-12 10:41:04 +0000668
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100669EP88x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200670 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ep88x
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100671
wdenk7ebf7442002-11-02 23:17:16 +0000672ESTEEM192E_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200673 @$(MKCONFIG) $(@:_config=) ppc mpc8xx esteem192e
wdenk7ebf7442002-11-02 23:17:16 +0000674
675ETX094_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200676 @$(MKCONFIG) $(@:_config=) ppc mpc8xx etx094
wdenk7ebf7442002-11-02 23:17:16 +0000677
wdenk7ebf7442002-11-02 23:17:16 +0000678FLAGADM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200679 @$(MKCONFIG) $(@:_config=) ppc mpc8xx flagadm
wdenk7ebf7442002-11-02 23:17:16 +0000680
wdenk7aa78612003-05-03 15:50:43 +0000681xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
682
683GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000684GEN860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200685 @mkdir -p $(obj)include
686 @ >$(obj)include/config.h
wdenk7aa78612003-05-03 15:50:43 +0000687 @[ -z "$(findstring _SC,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200688 { echo "#define CONFIG_SC" >>$(obj)include/config.h ; \
wdenk7aa78612003-05-03 15:50:43 +0000689 echo "With reduced H/W feature set (SC)..." ; \
690 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200691 @$(MKCONFIG) -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000692
693GENIETV_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200694 @$(MKCONFIG) $(@:_config=) ppc mpc8xx genietv
wdenk7ebf7442002-11-02 23:17:16 +0000695
696GTH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200697 @$(MKCONFIG) $(@:_config=) ppc mpc8xx gth
wdenk7ebf7442002-11-02 23:17:16 +0000698
699hermes_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200700 @$(MKCONFIG) $(@:_config=) ppc mpc8xx hermes
wdenk7ebf7442002-11-02 23:17:16 +0000701
wdenkc40b2952004-03-13 23:29:43 +0000702HMI10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200703 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenkc40b2952004-03-13 23:29:43 +0000704
wdenk7ebf7442002-11-02 23:17:16 +0000705IAD210_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200706 @$(MKCONFIG) $(@:_config=) ppc mpc8xx IAD210 siemens
wdenk7ebf7442002-11-02 23:17:16 +0000707
708xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
709
710ICU862_100MHz_config \
711ICU862_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200712 @mkdir -p $(obj)include
713 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000714 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200715 { echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000716 echo "... with 100MHz system clock" ; \
717 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200718 @$(MKCONFIG) -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
wdenk7ebf7442002-11-02 23:17:16 +0000719
720IP860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200721 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ip860
wdenk7ebf7442002-11-02 23:17:16 +0000722
723IVML24_256_config \
724IVML24_128_config \
725IVML24_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200726 @mkdir -p $(obj)include
727 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000728 @[ -z "$(findstring IVML24_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200729 { echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000730 }
731 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200732 { echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000733 }
734 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200735 { echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000736 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200737 @$(MKCONFIG) -a IVML24 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000738
739IVMS8_256_config \
740IVMS8_128_config \
741IVMS8_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200742 @mkdir -p $(obj)include
743 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000744 @[ -z "$(findstring IVMS8_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200745 { echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000746 }
747 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200748 { echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000749 }
750 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200751 { echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000752 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200753 @$(MKCONFIG) -a IVMS8 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000754
wdenk56f94be2002-11-05 16:35:14 +0000755KUP4K_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200756 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4k kup
wdenk0608e042004-03-25 19:29:38 +0000757
758KUP4X_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200759 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000760
wdenk7ebf7442002-11-02 23:17:16 +0000761LANTEC_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200762 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lantec
wdenk7ebf7442002-11-02 23:17:16 +0000763
764lwmon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200765 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lwmon
wdenk7ebf7442002-11-02 23:17:16 +0000766
767MBX_config \
768MBX860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200769 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mbx8xx
wdenk7ebf7442002-11-02 23:17:16 +0000770
771MHPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200772 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mhpc eltec
wdenk7ebf7442002-11-02 23:17:16 +0000773
774MVS1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200775 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mvs1
wdenk7ebf7442002-11-02 23:17:16 +0000776
wdenk993cad92003-06-26 22:04:09 +0000777xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
778
779NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000780NETVIA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200781 @mkdir -p $(obj)include
782 @ >$(obj)include/config.h
wdenk993cad92003-06-26 22:04:09 +0000783 @[ -z "$(findstring NETVIA_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200784 { echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000785 echo "... Version 1" ; \
786 }
787 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200788 { echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000789 echo "... Version 2" ; \
790 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200791 @$(MKCONFIG) -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000792
wdenkc26e4542004-04-18 10:13:26 +0000793xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
794
795NETPHONE_V2_config \
wdenk04a85b32004-04-15 18:22:41 +0000796NETPHONE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200797 @mkdir -p $(obj)include
798 @ >$(obj)include/config.h
wdenkc26e4542004-04-18 10:13:26 +0000799 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200800 { echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000801 }
802 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200803 { echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000804 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200805 @$(MKCONFIG) -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk04a85b32004-04-15 18:22:41 +0000806
wdenk79fa88f2004-06-07 23:46:25 +0000807xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk04a85b32004-04-15 18:22:41 +0000808
wdenk79fa88f2004-06-07 23:46:25 +0000809NETTA_ISDN_6412_SWAPHOOK_config \
810NETTA_ISDN_SWAPHOOK_config \
811NETTA_6412_SWAPHOOK_config \
812NETTA_SWAPHOOK_config \
813NETTA_ISDN_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000814NETTA_ISDN_config \
wdenk79fa88f2004-06-07 23:46:25 +0000815NETTA_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000816NETTA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200817 @mkdir -p $(obj)include
818 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000819 @[ -z "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200820 { echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \
wdenk04a85b32004-04-15 18:22:41 +0000821 }
wdenk79fa88f2004-06-07 23:46:25 +0000822 @[ -n "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200823 { echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000824 }
825 @[ -z "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200826 { echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000827 }
828 @[ -n "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200829 { echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000830 }
831 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200832 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000833 }
834 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200835 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000836 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200837 @$(MKCONFIG) -a $(call xtract_NETTA,$@) ppc mpc8xx netta
wdenk04a85b32004-04-15 18:22:41 +0000838
wdenk79fa88f2004-06-07 23:46:25 +0000839xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
840
841NETTA2_V2_config \
842NETTA2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200843 @mkdir -p $(obj)include
844 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000845 @[ -z "$(findstring NETTA2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200846 { echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000847 }
848 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200849 { echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000850 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200851 @$(MKCONFIG) -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
wdenk79fa88f2004-06-07 23:46:25 +0000852
dzu@denx.dea367d422006-04-19 11:52:46 +0200853NC650_Rev1_config \
854NC650_Rev2_config \
855CP850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200856 @mkdir -p $(obj)include
857 @ >$(obj)include/config.h
dzu@denx.dea367d422006-04-19 11:52:46 +0200858 @[ -z "$(findstring CP850,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200859 { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \
860 echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200861 }
862 @[ -z "$(findstring Rev1,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200863 { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200864 }
865 @[ -z "$(findstring Rev2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200866 { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200867 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200868 @$(MKCONFIG) -a NC650 ppc mpc8xx nc650
wdenk7ca202f2004-08-28 22:45:57 +0000869
wdenk7ebf7442002-11-02 23:17:16 +0000870NX823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200871 @$(MKCONFIG) $(@:_config=) ppc mpc8xx nx823
wdenk7ebf7442002-11-02 23:17:16 +0000872
873pcu_e_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200874 @$(MKCONFIG) $(@:_config=) ppc mpc8xx pcu_e siemens
wdenk7ebf7442002-11-02 23:17:16 +0000875
wdenk3bbc8992003-12-07 22:27:15 +0000876QS850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200877 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000878
879QS823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200880 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000881
882QS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200883 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs860t snmc
wdenk3bbc8992003-12-07 22:27:15 +0000884
wdenkda93ed82004-09-29 11:02:56 +0000885quantum_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200886 @$(MKCONFIG) $(@:_config=) ppc mpc8xx quantum
wdenkda93ed82004-09-29 11:02:56 +0000887
wdenk7ebf7442002-11-02 23:17:16 +0000888R360MPI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200889 @$(MKCONFIG) $(@:_config=) ppc mpc8xx r360mpi
wdenk7ebf7442002-11-02 23:17:16 +0000890
wdenk682011f2003-06-03 23:54:09 +0000891RBC823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200892 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rbc823
wdenk682011f2003-06-03 23:54:09 +0000893
wdenk7ebf7442002-11-02 23:17:16 +0000894RPXClassic_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200895 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXClassic
wdenk7ebf7442002-11-02 23:17:16 +0000896
897RPXlite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200898 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXlite
wdenk7ebf7442002-11-02 23:17:16 +0000899
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100900RPXlite_DW_64_config \
901RPXlite_DW_LCD_config \
902RPXlite_DW_64_LCD_config \
wdenke63c8ee2004-06-09 21:04:48 +0000903RPXlite_DW_NVRAM_config \
904RPXlite_DW_NVRAM_64_config \
905RPXlite_DW_NVRAM_LCD_config \
906RPXlite_DW_NVRAM_64_LCD_config \
907RPXlite_DW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200908 @mkdir -p $(obj)include
909 @ >$(obj)include/config.h
wdenke63c8ee2004-06-09 21:04:48 +0000910 @[ -z "$(findstring _64,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200911 { echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000912 echo "... with 64MHz system clock ..."; \
913 }
914 @[ -z "$(findstring _LCD,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100915 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200916 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000917 echo "... with LCD display ..."; \
918 }
919 @[ -z "$(findstring _NVRAM,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100920 { echo "#define CFG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000921 echo "... with ENV in NVRAM ..."; \
922 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200923 @$(MKCONFIG) -a RPXlite_DW ppc mpc8xx RPXlite_dw
wdenke63c8ee2004-06-09 21:04:48 +0000924
wdenk73a8b272003-06-05 19:27:42 +0000925rmu_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200926 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rmu
wdenk73a8b272003-06-05 19:27:42 +0000927
wdenk7ebf7442002-11-02 23:17:16 +0000928RRvision_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200929 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000930
931RRvision_LCD_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200932 @mkdir -p $(obj)include
933 @echo "#define CONFIG_LCD" >$(obj)include/config.h
934 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
935 @$(MKCONFIG) -a RRvision ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000936
937SM850_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200938 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000939
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200940spc1920_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200941 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spc1920
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200942
wdenk7ebf7442002-11-02 23:17:16 +0000943SPD823TS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200944 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spd8xx
wdenk7ebf7442002-11-02 23:17:16 +0000945
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200946stxxtc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200947 @$(MKCONFIG) $(@:_config=) ppc mpc8xx stxxtc
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200948
wdenkdc7c9a12003-03-26 06:55:25 +0000949svm_sc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200950 @$(MKCONFIG) $(@:_config=) ppc mpc8xx svm_sc8xx
wdenkdc7c9a12003-03-26 06:55:25 +0000951
wdenk7ebf7442002-11-02 23:17:16 +0000952SXNI855T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200953 @$(MKCONFIG) $(@:_config=) ppc mpc8xx sixnet
wdenk7ebf7442002-11-02 23:17:16 +0000954
wdenkdb2f721f2003-03-06 00:58:30 +0000955# EMK MPC8xx based modules
956TOP860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200957 @$(MKCONFIG) $(@:_config=) ppc mpc8xx top860 emk
wdenkdb2f721f2003-03-06 00:58:30 +0000958
wdenk7ebf7442002-11-02 23:17:16 +0000959# Play some tricks for configuration selection
wdenke9132ea2004-04-24 23:23:30 +0000960# Only 855 and 860 boards may come with FEC
961# and only 823 boards may have LCD support
962xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +0000963
964FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000965FPS860L_config \
wdenkf12e5682003-07-07 20:07:54 +0000966NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +0000967TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000968TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +0000969TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000970TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000971TQM860L_config \
wdenkd126bfb2003-04-10 11:18:18 +0000972TQM862L_config \
wdenkae3af052003-08-07 22:18:11 +0000973TQM823M_config \
wdenkae3af052003-08-07 22:18:11 +0000974TQM850M_config \
wdenkf12e5682003-07-07 20:07:54 +0000975TQM855M_config \
wdenkf12e5682003-07-07 20:07:54 +0000976TQM860M_config \
wdenkf12e5682003-07-07 20:07:54 +0000977TQM862M_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200978TQM866M_config \
Markus Klotzbuecher090eb732006-07-12 15:26:01 +0200979TQM885D_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200980virtlab2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200981 @mkdir -p $(obj)include
982 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000983 @[ -z "$(findstring _LCD,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200984 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
985 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000986 echo "... with LCD display" ; \
987 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200988 @$(MKCONFIG) -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000989
990TTTech_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200991 @mkdir -p $(obj)include
992 @echo "#define CONFIG_LCD" >$(obj)include/config.h
993 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
994 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000995
wdenkec0aee72004-12-19 09:58:11 +0000996uc100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200997 @$(MKCONFIG) $(@:_config=) ppc mpc8xx uc100
wdenkf7d15722004-12-18 22:35:43 +0000998
wdenk608c9142003-01-13 23:54:46 +0000999v37_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001000 @mkdir -p $(obj)include
1001 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1002 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h
1003 @$(MKCONFIG) $(@:_config=) ppc mpc8xx v37
wdenk608c9142003-01-13 23:54:46 +00001004
dzu91e940d2003-09-25 22:32:40 +00001005wtk_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001006 @mkdir -p $(obj)include
1007 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1008 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h
1009 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
dzu91e940d2003-09-25 22:32:40 +00001010
wdenk7ebf7442002-11-02 23:17:16 +00001011#########################################################################
1012## PPC4xx Systems
1013#########################################################################
wdenke55ca7e2004-07-01 21:40:08 +00001014xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001015
Stefan Roese16c0cc12007-03-21 13:39:57 +01001016acadia_config: unconfig
1017 @$(MKCONFIG) $(@:_config=) ppc ppc4xx acadia amcc
1018
wdenk7ebf7442002-11-02 23:17:16 +00001019ADCIOP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001020 @$(MKCONFIG) $(@:_config=) ppc ppc4xx adciop esd
wdenk7ebf7442002-11-02 23:17:16 +00001021
Stefan Roese899620c2006-08-15 14:22:35 +02001022alpr_config: unconfig
1023 @./mkconfig $(@:_config=) ppc ppc4xx alpr prodrive
1024
Wolfgang Denk7521af12005-10-09 01:04:33 +02001025AP1000_config:unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001026 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ap1000 amirix
Wolfgang Denk7521af12005-10-09 01:04:33 +02001027
stroesec419d1d2004-12-16 18:44:40 +00001028APC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001029 @$(MKCONFIG) $(@:_config=) ppc ppc4xx apc405 esd
stroesec419d1d2004-12-16 18:44:40 +00001030
wdenk7ebf7442002-11-02 23:17:16 +00001031AR405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001032 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ar405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001033
stroese549826e2003-05-23 11:41:44 +00001034ASH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001035 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ash405 esd
stroese549826e2003-05-23 11:41:44 +00001036
Stefan Roese8a316c92005-08-01 16:49:12 +02001037bamboo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001038 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bamboo amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001039
1040bubinga_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001041 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bubinga amcc
stroese549826e2003-05-23 11:41:44 +00001042
wdenk7ebf7442002-11-02 23:17:16 +00001043CANBT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001044 @$(MKCONFIG) $(@:_config=) ppc ppc4xx canbt esd
wdenk7ebf7442002-11-02 23:17:16 +00001045
wdenk1d6f9722004-09-09 17:44:35 +00001046CATcenter_config \
1047CATcenter_25_config \
1048CATcenter_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001049 @mkdir -p $(obj)include
1050 @ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h
1051 @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001052 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001053 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001054 echo "SysClk = 25MHz" ; \
1055 }
1056 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001057 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001058 echo "SysClk = 33MHz" ; \
1059 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001060 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk10767cc2004-05-13 13:23:58 +00001061
Stefan Roese7644f162005-09-22 09:16:57 +02001062CPCI2DP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001063 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd
Stefan Roese7644f162005-09-22 09:16:57 +02001064
stroese549826e2003-05-23 11:41:44 +00001065CPCI405_config \
1066CPCI4052_config \
stroesec419d1d2004-12-16 18:44:40 +00001067CPCI405DT_config \
stroese549826e2003-05-23 11:41:44 +00001068CPCI405AB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001069 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci405 esd
1070 @echo "BOARD_REVISION = $(@:_config=)" >> $(obj)include/config.mk
wdenk7ebf7442002-11-02 23:17:16 +00001071
1072CPCI440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001073 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci440 esd
wdenk7ebf7442002-11-02 23:17:16 +00001074
1075CPCIISER4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001076 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpciiser4 esd
wdenk7ebf7442002-11-02 23:17:16 +00001077
wdenkdb01a2e2004-04-15 23:14:49 +00001078CRAYL1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001079 @$(MKCONFIG) $(@:_config=) ppc ppc4xx L1 cray
wdenk7ebf7442002-11-02 23:17:16 +00001080
wdenkcd0a9de2004-02-23 20:48:38 +00001081csb272_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001082 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb272
wdenkcd0a9de2004-02-23 20:48:38 +00001083
wdenkaa245092004-06-09 12:47:02 +00001084csb472_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001085 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb472
wdenkaa245092004-06-09 12:47:02 +00001086
wdenk7ebf7442002-11-02 23:17:16 +00001087DASA_SIM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001088 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dasa_sim esd
wdenk7ebf7442002-11-02 23:17:16 +00001089
stroese72cd5aa2003-09-12 08:57:15 +00001090DP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001091 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dp405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001092
wdenk7ebf7442002-11-02 23:17:16 +00001093DU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001094 @$(MKCONFIG) $(@:_config=) ppc ppc4xx du405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001095
Stefan Roese8a316c92005-08-01 16:49:12 +02001096ebony_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001097 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +00001098
wdenkdb01a2e2004-04-15 23:14:49 +00001099ERIC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001100 @$(MKCONFIG) $(@:_config=) ppc ppc4xx eric
wdenk7ebf7442002-11-02 23:17:16 +00001101
wdenkdb01a2e2004-04-15 23:14:49 +00001102EXBITGEN_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001103 @$(MKCONFIG) $(@:_config=) ppc ppc4xx exbitgen
wdenkd1cbe852003-06-28 17:24:46 +00001104
stroesec419d1d2004-12-16 18:44:40 +00001105G2000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001106 @$(MKCONFIG) $(@:_config=) ppc ppc4xx g2000
stroesec419d1d2004-12-16 18:44:40 +00001107
1108HH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001109 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001110
stroese72cd5aa2003-09-12 08:57:15 +00001111HUB405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001112 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001113
wdenkdb01a2e2004-04-15 23:14:49 +00001114JSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001115 @$(MKCONFIG) $(@:_config=) ppc ppc4xx jse
wdenkdb01a2e2004-04-15 23:14:49 +00001116
Stefan Roeseb79316f2005-08-15 12:31:23 +02001117KAREF_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001118 @$(MKCONFIG) $(@:_config=) ppc ppc4xx karef sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001119
Stefan Roese4745aca2007-02-20 10:57:08 +01001120katmai_config: unconfig
1121 @$(MKCONFIG) $(@:_config=) ppc ppc4xx katmai amcc
1122
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001123luan_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001124 @$(MKCONFIG) $(@:_config=) ppc ppc4xx luan amcc
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001125
Stefan Roeseb79316f2005-08-15 12:31:23 +02001126METROBOX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001127 @$(MKCONFIG) $(@:_config=) ppc ppc4xx metrobox sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001128
wdenkdb01a2e2004-04-15 23:14:49 +00001129MIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001130 @$(MKCONFIG) $(@:_config=) ppc ppc4xx mip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001131
wdenkdb01a2e2004-04-15 23:14:49 +00001132MIP405T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001133 @mkdir -p $(obj)include
1134 @echo "#define CONFIG_MIP405T" >$(obj)include/config.h
wdenkf3e0de62003-06-04 15:05:30 +00001135 @echo "Enable subset config for MIP405T"
Marian Balakowiczf9328632006-09-01 19:49:50 +02001136 @$(MKCONFIG) -a MIP405 ppc ppc4xx mip405 mpl
wdenkf3e0de62003-06-04 15:05:30 +00001137
wdenkdb01a2e2004-04-15 23:14:49 +00001138ML2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001139 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml2
wdenk7ebf7442002-11-02 23:17:16 +00001140
wdenkdb01a2e2004-04-15 23:14:49 +00001141ml300_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001142 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml300 xilinx
wdenk028ab6b2004-02-23 23:54:43 +00001143
Stefan Roese8a316c92005-08-01 16:49:12 +02001144ocotea_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001145 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocotea amcc
wdenk0e6d7982004-03-14 00:07:33 +00001146
wdenk7ebf7442002-11-02 23:17:16 +00001147OCRTC_config \
1148ORSG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001149 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocrtc esd
wdenk7ebf7442002-11-02 23:17:16 +00001150
Stefan Roese5568e612005-11-22 13:20:42 +01001151p3p440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001152 @$(MKCONFIG) $(@:_config=) ppc ppc4xx p3p440 prodrive
Stefan Roese5568e612005-11-22 13:20:42 +01001153
wdenk7ebf7442002-11-02 23:17:16 +00001154PCI405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001155 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pci405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001156
Stefan Roesea4c8d132006-06-02 16:18:04 +02001157pcs440ep_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001158 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pcs440ep
Stefan Roesea4c8d132006-06-02 16:18:04 +02001159
wdenkdb01a2e2004-04-15 23:14:49 +00001160PIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001161 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001162
stroese72cd5aa2003-09-12 08:57:15 +00001163PLU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001164 @$(MKCONFIG) $(@:_config=) ppc ppc4xx plu405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001165
stroese549826e2003-05-23 11:41:44 +00001166PMC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001167 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pmc405 esd
stroese549826e2003-05-23 11:41:44 +00001168
wdenk281e00a2004-08-01 22:48:16 +00001169PPChameleonEVB_config \
wdenke55ca7e2004-07-01 21:40:08 +00001170PPChameleonEVB_BA_25_config \
1171PPChameleonEVB_ME_25_config \
1172PPChameleonEVB_HI_25_config \
1173PPChameleonEVB_BA_33_config \
1174PPChameleonEVB_ME_33_config \
1175PPChameleonEVB_HI_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001176 @mkdir -p $(obj)include
1177 @ >$(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001178 @[ -z "$(findstring EVB_BA,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001179 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001180 echo "... BASIC model" ; \
1181 }
wdenk1d6f9722004-09-09 17:44:35 +00001182 @[ -z "$(findstring EVB_ME,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001183 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001184 echo "... MEDIUM model" ; \
1185 }
wdenk1d6f9722004-09-09 17:44:35 +00001186 @[ -z "$(findstring EVB_HI,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001187 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001188 echo "... HIGH-END model" ; \
1189 }
wdenke55ca7e2004-07-01 21:40:08 +00001190 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001191 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001192 echo "SysClk = 25MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001193 }
1194 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001195 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001196 echo "SysClk = 33MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001197 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001198 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk12f34242003-09-02 22:48:03 +00001199
wdenk652a10c2005-01-09 23:48:14 +00001200sbc405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001201 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sbc405
wdenk652a10c2005-01-09 23:48:14 +00001202
Stefan Roese430f1b02007-03-28 15:03:16 +02001203sequoia_config \
1204rainier_config: unconfig
1205 @mkdir -p $(obj)include
1206 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1207 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
1208 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Stefan Roese887e2ec2006-09-07 11:51:23 +02001209
Stefan Roese430f1b02007-03-28 15:03:16 +02001210sequoia_nand_config \
1211rainier_nand_config: unconfig
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001212 @mkdir -p $(obj)include
1213 @mkdir -p $(obj)nand_spl
1214 @mkdir -p $(obj)board/amcc/sequoia
1215 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roese430f1b02007-03-28 15:03:16 +02001216 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1217 tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h
1218 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001219 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1220 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
stroese72cd5aa2003-09-12 08:57:15 +00001221
Wolfgang Denk6d3e0102007-01-16 18:30:50 +01001222sc3_config:unconfig
1223 @./mkconfig $(@:_config=) ppc ppc4xx sc3
Heiko Schocherca43ba12007-01-11 15:44:44 +01001224
Stefan Roese5fb692c2007-01-18 10:25:34 +01001225taishan_config: unconfig
1226 @$(MKCONFIG) $(@:_config=) ppc ppc4xx taishan amcc
1227
wdenk7ebf7442002-11-02 23:17:16 +00001228VOH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001229 @$(MKCONFIG) $(@:_config=) ppc ppc4xx voh405 esd
wdenk3bac3512003-03-12 10:41:04 +00001230
stroesec419d1d2004-12-16 18:44:40 +00001231VOM405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001232 @$(MKCONFIG) $(@:_config=) ppc ppc4xx vom405 esd
stroesec419d1d2004-12-16 18:44:40 +00001233
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001234CMS700_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001235 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001236
wdenk7ebf7442002-11-02 23:17:16 +00001237W7OLMC_config \
1238W7OLMG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001239 @$(MKCONFIG) $(@:_config=) ppc ppc4xx w7o
wdenk7ebf7442002-11-02 23:17:16 +00001240
Stefan Roese430f1b02007-03-28 15:03:16 +02001241# Walnut & Sycamore images are identical (recognized via PVR)
1242walnut_config \
1243sycamore_config: unconfig
1244 @$(MKCONFIG) -n $@ -a walnut ppc ppc4xx walnut amcc
wdenk7ebf7442002-11-02 23:17:16 +00001245
stroesec419d1d2004-12-16 18:44:40 +00001246WUH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001247 @$(MKCONFIG) $(@:_config=) ppc ppc4xx wuh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001248
wdenkdb01a2e2004-04-15 23:14:49 +00001249XPEDITE1K_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001250 @$(MKCONFIG) $(@:_config=) ppc ppc4xx xpedite1k
wdenkba56f622004-02-06 23:19:44 +00001251
Stefan Roese430f1b02007-03-28 15:03:16 +02001252yosemite_config \
1253yellowstone_config: unconfig
Stefan Roese700200c2007-01-30 17:04:19 +01001254 @mkdir -p $(obj)include
Stefan Roese430f1b02007-03-28 15:03:16 +02001255 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1256 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
Stefan Roese2aa54f62007-02-02 12:42:08 +01001257 @$(MKCONFIG) -n $@ -a yosemite ppc ppc4xx yosemite amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001258
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001259yucca_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001260 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yucca amcc
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001261
wdenk7ebf7442002-11-02 23:17:16 +00001262#########################################################################
wdenk983fda82004-10-28 00:09:35 +00001263## MPC8220 Systems
1264#########################################################################
Wolfgang Denkdc17fb62005-08-03 22:32:02 +02001265
1266Alaska8220_config \
1267Yukon8220_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001268 @$(MKCONFIG) $(@:_config=) ppc mpc8220 alaska
wdenk983fda82004-10-28 00:09:35 +00001269
wdenk12b43d52005-04-05 21:57:18 +00001270sorcery_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001271 @$(MKCONFIG) $(@:_config=) ppc mpc8220 sorcery
wdenk12b43d52005-04-05 21:57:18 +00001272
wdenk983fda82004-10-28 00:09:35 +00001273#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001274## MPC824x Systems
1275#########################################################################
wdenkefa329c2004-03-23 20:18:25 +00001276xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001277
wdenk03329902003-06-20 22:36:30 +00001278A3000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001279 @$(MKCONFIG) $(@:_config=) ppc mpc824x a3000
wdenk03329902003-06-20 22:36:30 +00001280
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001281barco_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001282 @$(MKCONFIG) $(@:_config=) ppc mpc824x barco
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001283
wdenk7ebf7442002-11-02 23:17:16 +00001284BMW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001285 @$(MKCONFIG) $(@:_config=) ppc mpc824x bmw
wdenk7ebf7442002-11-02 23:17:16 +00001286
wdenk3bac3512003-03-12 10:41:04 +00001287CPC45_config \
1288CPC45_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001289 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc824x cpc45
1290 @cd $(obj)include ; \
wdenk3bac3512003-03-12 10:41:04 +00001291 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1292 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1293 echo "... booting from 8-bit flash" ; \
1294 else \
1295 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1296 echo "... booting from 64-bit flash" ; \
1297 fi; \
1298 echo "export CONFIG_BOOT_ROM" >> config.mk;
1299
wdenk7ebf7442002-11-02 23:17:16 +00001300CU824_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001301 @$(MKCONFIG) $(@:_config=) ppc mpc824x cu824
wdenk7ebf7442002-11-02 23:17:16 +00001302
wdenk7abf0c52004-04-18 21:45:42 +00001303debris_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001304 @$(MKCONFIG) $(@:_config=) ppc mpc824x debris etin
wdenk7abf0c52004-04-18 21:45:42 +00001305
wdenk80885a92004-02-26 23:46:20 +00001306eXalion_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001307 @$(MKCONFIG) $(@:_config=) ppc mpc824x eXalion
wdenk80885a92004-02-26 23:46:20 +00001308
wdenk756f5862005-04-03 15:51:42 +00001309HIDDEN_DRAGON_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001310 @$(MKCONFIG) $(@:_config=) ppc mpc824x hidden_dragon
wdenk756f5862005-04-03 15:51:42 +00001311
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001312kvme080_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001313 @$(MKCONFIG) $(@:_config=) ppc mpc824x kvme080 etin
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001314
wdenk7ebf7442002-11-02 23:17:16 +00001315MOUSSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001316 @$(MKCONFIG) $(@:_config=) ppc mpc824x mousse
wdenk7ebf7442002-11-02 23:17:16 +00001317
1318MUSENKI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001319 @$(MKCONFIG) $(@:_config=) ppc mpc824x musenki
wdenk7ebf7442002-11-02 23:17:16 +00001320
wdenkb4676a22003-12-07 19:24:00 +00001321MVBLUE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001322 @$(MKCONFIG) $(@:_config=) ppc mpc824x mvblue
wdenkb4676a22003-12-07 19:24:00 +00001323
wdenk7ebf7442002-11-02 23:17:16 +00001324OXC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001325 @$(MKCONFIG) $(@:_config=) ppc mpc824x oxc
wdenk7ebf7442002-11-02 23:17:16 +00001326
1327PN62_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001328 @$(MKCONFIG) $(@:_config=) ppc mpc824x pn62
wdenk7ebf7442002-11-02 23:17:16 +00001329
1330Sandpoint8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001331 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001332
1333Sandpoint8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001334 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001335
wdenk466b7412004-07-10 22:35:59 +00001336sbc8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001337 @$(MKCONFIG) $(@:_config=) ppc mpc824x sbc8240
wdenk466b7412004-07-10 22:35:59 +00001338
wdenkd1cbe852003-06-28 17:24:46 +00001339SL8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001340 @$(MKCONFIG) $(@:_config=) ppc mpc824x sl8245
wdenkd1cbe852003-06-28 17:24:46 +00001341
wdenk7ebf7442002-11-02 23:17:16 +00001342utx8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001343 @$(MKCONFIG) $(@:_config=) ppc mpc824x utx8245
wdenk7ebf7442002-11-02 23:17:16 +00001344
1345#########################################################################
1346## MPC8260 Systems
1347#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001348
wdenk54387ac2003-10-08 22:45:44 +00001349atc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001350 @$(MKCONFIG) $(@:_config=) ppc mpc8260 atc
wdenk54387ac2003-10-08 22:45:44 +00001351
wdenk7ebf7442002-11-02 23:17:16 +00001352cogent_mpc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001353 @$(MKCONFIG) $(@:_config=) ppc mpc8260 cogent
wdenk7ebf7442002-11-02 23:17:16 +00001354
1355CPU86_config \
1356CPU86_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001357 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu86
1358 @cd $(obj)include ; \
wdenk7ebf7442002-11-02 23:17:16 +00001359 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1360 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1361 echo "... booting from 8-bit flash" ; \
1362 else \
1363 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1364 echo "... booting from 64-bit flash" ; \
1365 fi; \
1366 echo "export CONFIG_BOOT_ROM" >> config.mk;
1367
wdenk384cc682005-04-03 22:35:21 +00001368CPU87_config \
1369CPU87_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001370 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu87
1371 @cd $(obj)include ; \
wdenk384cc682005-04-03 22:35:21 +00001372 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1373 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1374 echo "... booting from 8-bit flash" ; \
1375 else \
1376 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1377 echo "... booting from 64-bit flash" ; \
1378 fi; \
1379 echo "export CONFIG_BOOT_ROM" >> config.mk;
1380
Wolfgang Denkf901a832005-08-06 01:42:58 +02001381ep8248_config \
1382ep8248E_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001383 @$(MKCONFIG) ep8248 ppc mpc8260 ep8248
Wolfgang Denkf901a832005-08-06 01:42:58 +02001384
wdenk7ebf7442002-11-02 23:17:16 +00001385ep8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001386 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep8260
wdenk7ebf7442002-11-02 23:17:16 +00001387
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001388ep82xxm_config: unconfig
1389 @./mkconfig $(@:_config=) ppc mpc8260 ep82xxm
1390
wdenk7ebf7442002-11-02 23:17:16 +00001391gw8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001392 @$(MKCONFIG) $(@:_config=) ppc mpc8260 gw8260
wdenk7ebf7442002-11-02 23:17:16 +00001393
1394hymod_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001395 @$(MKCONFIG) $(@:_config=) ppc mpc8260 hymod
wdenk7ebf7442002-11-02 23:17:16 +00001396
wdenk9dd41a72005-05-12 22:48:09 +00001397IDS8247_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001398 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ids8247
wdenk9dd41a72005-05-12 22:48:09 +00001399
wdenk7ebf7442002-11-02 23:17:16 +00001400IPHASE4539_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001401 @$(MKCONFIG) $(@:_config=) ppc mpc8260 iphase4539
wdenk7ebf7442002-11-02 23:17:16 +00001402
wdenkc3c7f862004-06-09 14:47:54 +00001403ISPAN_config \
1404ISPAN_REVB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001405 @mkdir -p $(obj)include
wdenkc3c7f862004-06-09 14:47:54 +00001406 @if [ "$(findstring _REVB_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001407 echo "#define CFG_REV_B" > $(obj)include/config.h ; \
wdenkc3c7f862004-06-09 14:47:54 +00001408 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001409 @$(MKCONFIG) -a ISPAN ppc mpc8260 ispan
wdenkc3c7f862004-06-09 14:47:54 +00001410
wdenk04a85b32004-04-15 18:22:41 +00001411MPC8260ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001412MPC8260ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001413MPC8260ADS_33MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001414MPC8260ADS_33MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001415MPC8260ADS_40MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001416MPC8260ADS_40MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001417MPC8272ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001418MPC8272ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001419PQ2FADS_config \
wdenk901787d2005-04-03 23:22:21 +00001420PQ2FADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001421PQ2FADS-VR_config \
wdenk901787d2005-04-03 23:22:21 +00001422PQ2FADS-VR_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001423PQ2FADS-ZU_config \
wdenk901787d2005-04-03 23:22:21 +00001424PQ2FADS-ZU_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001425PQ2FADS-ZU_66MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001426PQ2FADS-ZU_66MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001427 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001428 @mkdir -p $(obj)include
1429 @mkdir -p $(obj)board/mpc8260ads
wdenk04a85b32004-04-15 18:22:41 +00001430 $(if $(findstring PQ2FADS,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001431 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > $(obj)include/config.h, \
1432 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h)
wdenk04a85b32004-04-15 18:22:41 +00001433 $(if $(findstring MHz,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001434 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \
wdenk04a85b32004-04-15 18:22:41 +00001435 $(if $(findstring VR,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001436 @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h))
wdenk901787d2005-04-03 23:22:21 +00001437 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001438 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/mpc8260ads/config.tmp ; \
wdenk901787d2005-04-03 23:22:21 +00001439 echo "... with lowboot configuration" ; \
1440 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001441 @$(MKCONFIG) -a MPC8260ADS ppc mpc8260 mpc8260ads
wdenk7ebf7442002-11-02 23:17:16 +00001442
wdenkdb2f721f2003-03-06 00:58:30 +00001443MPC8266ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001444 @$(MKCONFIG) $(@:_config=) ppc mpc8260 mpc8266ads
wdenkdb2f721f2003-03-06 00:58:30 +00001445
wdenkefa329c2004-03-23 20:18:25 +00001446# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk10f67012003-03-25 18:06:06 +00001447PM825_config \
wdenkefa329c2004-03-23 20:18:25 +00001448PM825_ROMBOOT_config \
1449PM825_BIGFLASH_config \
1450PM825_ROMBOOT_BIGFLASH_config \
wdenk7ebf7442002-11-02 23:17:16 +00001451PM826_config \
wdenkefa329c2004-03-23 20:18:25 +00001452PM826_ROMBOOT_config \
1453PM826_BIGFLASH_config \
1454PM826_ROMBOOT_BIGFLASH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001455 @mkdir -p $(obj)include
1456 @mkdir -p $(obj)board/pm826
wdenkefa329c2004-03-23 20:18:25 +00001457 @if [ "$(findstring PM825_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001458 echo "#define CONFIG_PCI" >$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001459 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001460 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001461 fi
1462 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1463 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001464 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1465 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001466 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1467 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001468 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001469 fi; \
1470 else \
wdenk7ebf7442002-11-02 23:17:16 +00001471 echo "... booting from 64-bit flash" ; \
wdenkefa329c2004-03-23 20:18:25 +00001472 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1473 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001474 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
1475 echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001476 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001477 echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001478 fi; \
1479 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001480 @$(MKCONFIG) -a PM826 ppc mpc8260 pm826
wdenkefa329c2004-03-23 20:18:25 +00001481
1482PM828_config \
1483PM828_PCI_config \
1484PM828_ROMBOOT_config \
1485PM828_ROMBOOT_PCI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001486 @mkdir -p $(obj)include
1487 @mkdir -p $(obj)board/pm826
Marian Balakowicz17076262006-04-05 20:37:11 +02001488 @if [ "$(findstring _PCI_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001489 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001490 echo "... with PCI enabled" ; \
1491 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001492 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001493 fi
1494 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1495 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001496 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1497 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001498 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001499 @$(MKCONFIG) -a PM828 ppc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +00001500
1501ppmc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001502 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ppmc8260
wdenk7ebf7442002-11-02 23:17:16 +00001503
wdenk8b0bfc62005-04-03 23:11:38 +00001504Rattler8248_config \
1505Rattler_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001506 @mkdir -p $(obj)include
wdenk8b0bfc62005-04-03 23:11:38 +00001507 $(if $(findstring 8248,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001508 @echo "#define CONFIG_MPC8248" > $(obj)include/config.h)
1509 @$(MKCONFIG) -a Rattler ppc mpc8260 rattler
wdenk8b0bfc62005-04-03 23:11:38 +00001510
wdenk7ebf7442002-11-02 23:17:16 +00001511RPXsuper_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001512 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rpxsuper
wdenk7ebf7442002-11-02 23:17:16 +00001513
1514rsdproto_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001515 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rsdproto
wdenk7ebf7442002-11-02 23:17:16 +00001516
1517sacsng_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001518 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sacsng
wdenk7ebf7442002-11-02 23:17:16 +00001519
1520sbc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001521 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sbc8260
wdenk7ebf7442002-11-02 23:17:16 +00001522
1523SCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001524 @$(MKCONFIG) $(@:_config=) ppc mpc8260 SCM siemens
wdenk7ebf7442002-11-02 23:17:16 +00001525
wdenk27b207f2003-07-24 23:38:38 +00001526TQM8255_AA_config \
1527TQM8260_AA_config \
1528TQM8260_AB_config \
1529TQM8260_AC_config \
1530TQM8260_AD_config \
1531TQM8260_AE_config \
1532TQM8260_AF_config \
1533TQM8260_AG_config \
1534TQM8260_AH_config \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001535TQM8260_AI_config \
wdenk27b207f2003-07-24 23:38:38 +00001536TQM8265_AA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001537 @mkdir -p $(obj)include
wdenk27b207f2003-07-24 23:38:38 +00001538 @case "$@" in \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001539 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
1540 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
1541 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1542 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1543 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1544 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
1545 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1546 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
1547 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
1548 TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1549 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
wdenk27b207f2003-07-24 23:38:38 +00001550 esac; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001551 >$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001552 if [ "$${CTYPE}" != "MPC8260" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001553 echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001554 fi; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001555 echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001556 echo "... with $${CFREQ}MHz system clock" ; \
1557 if [ "$${CACHE}" == "yes" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001558 echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001559 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001560 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001561 echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001562 echo "... without L2 Cache support" ; \
wdenk27b207f2003-07-24 23:38:38 +00001563 fi; \
1564 if [ "$${BMODE}" == "60x" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001565 echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001566 echo "... with 60x Bus Mode" ; \
1567 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001568 echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001569 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001570 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001571 @$(MKCONFIG) -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +00001572
Heiko Schocherfa230442006-12-21 17:17:02 +01001573TQM8272_config: unconfig
1574 @$(MKCONFIG) -a TQM8272 ppc mpc8260 tqm8272
1575
wdenkba91e262005-05-30 23:55:42 +00001576VoVPN-GW_66MHz_config \
1577VoVPN-GW_100MHz_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001578 @mkdir -p $(obj)include
1579 @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h
1580 @$(MKCONFIG) -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
wdenkba91e262005-05-30 23:55:42 +00001581
wdenk54387ac2003-10-08 22:45:44 +00001582ZPC1900_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001583 @$(MKCONFIG) $(@:_config=) ppc mpc8260 zpc1900
wdenk7aa78612003-05-03 15:50:43 +00001584
wdenk4e5ca3e2003-12-08 01:34:36 +00001585#########################################################################
1586## Coldfire
1587#########################################################################
1588
Wolfgang Denk74812662005-12-12 16:06:05 +01001589cobra5272_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001590 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272
Wolfgang Denk74812662005-12-12 16:06:05 +01001591
Wolfgang Denk4176c792006-06-10 19:27:47 +02001592EB+MCF-EV123_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001593 @mkdir -p $(obj)include
1594 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1595 @ >$(obj)include/config.h
1596 @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1597 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001598
1599EB+MCF-EV123_internal_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001600 @mkdir -p $(obj)include
1601 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1602 @ >$(obj)include/config.h
1603 @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1604 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001605
Bartlomiej Siekadaa6e412006-12-20 00:27:32 +01001606idmr_config : unconfig
1607 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 idmr
1608
Wolfgang Denk4176c792006-06-10 19:27:47 +02001609M5271EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001610 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb
Wolfgang Denk4176c792006-06-10 19:27:47 +02001611
wdenk4e5ca3e2003-12-08 01:34:36 +00001612M5272C3_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001613 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3
wdenk4e5ca3e2003-12-08 01:34:36 +00001614
1615M5282EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001616 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb
wdenk4e5ca3e2003-12-08 01:34:36 +00001617
stroesec419d1d2004-12-16 18:44:40 +00001618TASREG_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001619 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd
stroesec419d1d2004-12-16 18:44:40 +00001620
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001621r5200_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001622 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 r5200
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001623
wdenk7ebf7442002-11-02 23:17:16 +00001624#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -05001625## MPC83xx Systems
1626#########################################################################
1627
Kim Phillips4decd842007-01-24 17:18:37 -06001628MPC832XEMDS_config \
1629MPC832XEMDS_HOST_33_config \
1630MPC832XEMDS_HOST_66_config \
1631MPC832XEMDS_SLAVE_config: unconfig
1632 @echo "" >include/config.h ; \
1633 if [ "$(findstring _HOST_,$@)" ] ; then \
1634 echo -n "... PCI HOST " ; \
1635 echo "#define CONFIG_PCI" >>include/config.h ; \
1636 fi ; \
1637 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1638 echo "...PCI SLAVE 66M" ; \
1639 echo "#define CONFIG_PCI" >>include/config.h ; \
1640 echo "#define CONFIG_PCISLAVE" >>include/config.h ; \
1641 fi ; \
1642 if [ "$(findstring _33_,$@)" ] ; then \
1643 echo -n "...33M ..." ; \
1644 echo "#define PCI_33M" >>include/config.h ; \
1645 fi ; \
1646 if [ "$(findstring _66_,$@)" ] ; then \
1647 echo -n "...66M..." ; \
1648 echo "#define PCI_66M" >>include/config.h ; \
1649 fi ;
1650 @$(MKCONFIG) -a MPC832XEMDS ppc mpc83xx mpc832xemds
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001651
Marian Balakowicz991425f2006-03-14 16:24:38 +01001652MPC8349EMDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001653 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349emds
Marian Balakowicz991425f2006-03-14 16:24:38 +01001654
Timur Tabi7a78f142007-01-31 15:54:29 -06001655MPC8349ITX_config \
1656MPC8349ITX_LOWBOOT_config \
1657MPC8349ITXGP_config: unconfig
1658 @mkdir -p $(obj)include
1659 @mkdir -p $(obj)board/mpc8349itx
1660 @echo "#define CONFIG_$(subst _LOWBOOT,,$(@:_config=))" >> $(obj)include/config.h
1661 @if [ "$(findstring GP,$@)" ] ; then \
1662 echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \
1663 fi
1664 @if [ "$(findstring LOWBOOT,$@)" ] ; then \
1665 echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \
1666 fi
1667 @$(MKCONFIG) -a -n $(@:_config=) MPC8349ITX ppc mpc83xx mpc8349itx
Kim Phillips4decd842007-01-24 17:18:37 -06001668
Dave Liu5f820432006-11-03 19:33:44 -06001669MPC8360EMDS_config \
1670MPC8360EMDS_HOST_33_config \
1671MPC8360EMDS_HOST_66_config \
1672MPC8360EMDS_SLAVE_config: unconfig
1673 @echo "" >include/config.h ; \
1674 if [ "$(findstring _HOST_,$@)" ] ; then \
1675 echo -n "... PCI HOST " ; \
1676 echo "#define CONFIG_PCI" >>include/config.h ; \
1677 fi ; \
1678 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1679 echo "...PCI SLAVE 66M" ; \
1680 echo "#define CONFIG_PCI" >>include/config.h ; \
1681 echo "#define CONFIG_PCISLAVE" >>include/config.h ; \
1682 fi ; \
1683 if [ "$(findstring _33_,$@)" ] ; then \
1684 echo -n "...33M ..." ; \
1685 echo "#define PCI_33M" >>include/config.h ; \
1686 fi ; \
1687 if [ "$(findstring _66_,$@)" ] ; then \
1688 echo -n "...66M..." ; \
1689 echo "#define PCI_66M" >>include/config.h ; \
1690 fi ;
1691 @$(MKCONFIG) -a MPC8360EMDS ppc mpc83xx mpc8360emds
1692
Paul Gortmaker91e25762007-01-16 11:38:14 -05001693sbc8349_config: unconfig
1694 @$(MKCONFIG) $(@:_config=) ppc mpc83xx sbc8349
1695
Kim Phillips4decd842007-01-24 17:18:37 -06001696TQM834x_config: unconfig
1697 @$(MKCONFIG) $(@:_config=) ppc mpc83xx tqm834x
1698
Timur Tabi2ad6b512006-10-31 18:44:42 -06001699
Eran Libertyf046ccd2005-07-28 10:08:46 -05001700#########################################################################
wdenk42d1f032003-10-15 23:53:47 +00001701## MPC85xx Systems
1702#########################################################################
1703
wdenk0ac6f8b2004-07-09 23:27:13 +00001704MPC8540ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001705 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8540ads
wdenk42d1f032003-10-15 23:53:47 +00001706
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001707MPC8540EVAL_config \
1708MPC8540EVAL_33_config \
1709MPC8540EVAL_66_config \
1710MPC8540EVAL_33_slave_config \
1711MPC8540EVAL_66_slave_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001712 @mkdir -p $(obj)include
1713 @echo "" >$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001714 if [ "$(findstring _33_,$@)" ] ; then \
1715 echo -n "... 33 MHz PCI" ; \
1716 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001717 echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001718 echo -n "... 66 MHz PCI" ; \
1719 fi ; \
1720 if [ "$(findstring _slave_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001721 echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001722 echo " slave" ; \
1723 else \
1724 echo " host" ; \
1725 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001726 @$(MKCONFIG) -a MPC8540EVAL ppc mpc85xx mpc8540eval
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001727
wdenk0ac6f8b2004-07-09 23:27:13 +00001728MPC8560ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001729 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8560ads
wdenk42d1f032003-10-15 23:53:47 +00001730
wdenk03f5c552004-10-10 21:21:55 +00001731MPC8541CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001732 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8541cds cds
wdenk03f5c552004-10-10 21:21:55 +00001733
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001734MPC8548CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001735 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8548cds cds
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001736
wdenk03f5c552004-10-10 21:21:55 +00001737MPC8555CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001738 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8555cds cds
wdenk7abf0c52004-04-18 21:45:42 +00001739
wdenk384cc682005-04-03 22:35:21 +00001740PM854_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001741 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm854
wdenk384cc682005-04-03 22:35:21 +00001742
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001743PM856_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001744 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm856
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001745
wdenkc15f3122004-10-10 22:44:24 +00001746sbc8540_config \
1747sbc8540_33_config \
1748sbc8540_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001749 @mkdir -p $(obj)include
wdenkc15f3122004-10-10 22:44:24 +00001750 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001751 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001752 echo "... 66 MHz PCI" ; \
1753 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001754 >$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001755 echo "... 33 MHz PCI" ; \
1756 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001757 @$(MKCONFIG) -a SBC8540 ppc mpc85xx sbc8560
wdenkc15f3122004-10-10 22:44:24 +00001758
wdenk466b7412004-07-10 22:35:59 +00001759sbc8560_config \
1760sbc8560_33_config \
1761sbc8560_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001762 @mkdir -p $(obj)include
wdenk8b07a112004-07-10 21:45:47 +00001763 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001764 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001765 echo "... 66 MHz PCI" ; \
1766 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001767 >$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001768 echo "... 33 MHz PCI" ; \
1769 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001770 @$(MKCONFIG) -a sbc8560 ppc mpc85xx sbc8560
wdenk8b07a112004-07-10 21:45:47 +00001771
wdenk03f5c552004-10-10 21:21:55 +00001772stxgp3_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001773 @$(MKCONFIG) $(@:_config=) ppc mpc85xx stxgp3
wdenk03f5c552004-10-10 21:21:55 +00001774
Stefan Roesed96f41e2005-11-30 13:06:40 +01001775TQM8540_config \
1776TQM8541_config \
1777TQM8555_config \
1778TQM8560_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001779 @mkdir -p $(obj)include
Wolfgang Denka889bd22005-12-06 15:02:31 +01001780 @CTYPE=$(subst TQM,,$(@:_config=)); \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001781 >$(obj)include/config.h ; \
Stefan Roesed96f41e2005-11-30 13:06:40 +01001782 echo "... TQM"$${CTYPE}; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001783 echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \
1784 echo "#define CONFIG_TQM$${CTYPE}">>$(obj)include/config.h; \
1785 echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \
1786 echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>$(obj)include/config.h; \
1787 echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>$(obj)include/config.h
1788 @$(MKCONFIG) -a TQM85xx ppc mpc85xx tqm85xx
wdenkf5c5ef42005-04-05 16:26:47 +00001789
wdenk42d1f032003-10-15 23:53:47 +00001790#########################################################################
Jon Loeligerdebb7352006-04-26 17:58:56 -05001791## MPC86xx Systems
1792#########################################################################
1793
1794MPC8641HPCN_config: unconfig
1795 @./mkconfig $(@:_config=) ppc mpc86xx mpc8641hpcn
1796
1797
1798#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001799## 74xx/7xx Systems
1800#########################################################################
1801
wdenkc7de8292002-11-19 11:04:11 +00001802AmigaOneG3SE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001803 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
wdenkc7de8292002-11-19 11:04:11 +00001804
wdenk15647dc2003-10-09 19:00:25 +00001805BAB7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001806 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx bab7xx eltec
wdenk15647dc2003-10-09 19:00:25 +00001807
stroesec419d1d2004-12-16 18:44:40 +00001808CPCI750_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001809 @$(MKCONFIG) CPCI750 ppc 74xx_7xx cpci750 esd
stroesec419d1d2004-12-16 18:44:40 +00001810
wdenk3a473b22004-01-03 00:43:19 +00001811DB64360_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001812 @$(MKCONFIG) DB64360 ppc 74xx_7xx db64360 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001813
1814DB64460_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001815 @$(MKCONFIG) DB64460 ppc 74xx_7xx db64460 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001816
wdenk15647dc2003-10-09 19:00:25 +00001817ELPPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001818 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx elppc eltec
wdenk15647dc2003-10-09 19:00:25 +00001819
wdenk7ebf7442002-11-02 23:17:16 +00001820EVB64260_config \
1821EVB64260_750CX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001822 @$(MKCONFIG) EVB64260 ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001823
roy zang4c527832006-11-02 18:49:51 +08001824mpc7448hpc2_config: unconfig
roy zangee311212006-12-01 11:47:36 +08001825 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx mpc7448hpc2
roy zang4c527832006-11-02 18:49:51 +08001826
wdenk15647dc2003-10-09 19:00:25 +00001827P3G4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001828 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001829
Stefan Roese1eac2a72006-11-29 15:42:37 +01001830p3m750_config \
1831p3m7448_config: unconfig
1832 @mkdir -p $(obj)include
1833 @if [ "$(findstring 750_,$@)" ] ; then \
1834 echo "#define CONFIG_P3M750" >>$(obj)include/config.h ; \
1835 else \
1836 echo "#define CONFIG_P3M7448" >>$(obj)include/config.h ; \
1837 fi
1838 @$(MKCONFIG) -a p3mx ppc 74xx_7xx p3mx prodrive
1839
wdenk7ebf7442002-11-02 23:17:16 +00001840PCIPPC2_config \
1841PCIPPC6_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001842 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx pcippc2
wdenk7ebf7442002-11-02 23:17:16 +00001843
wdenk15647dc2003-10-09 19:00:25 +00001844ZUMA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001845 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk12f34242003-09-02 22:48:03 +00001846
Heiko Schocherf5e0d032006-06-19 11:02:41 +02001847ppmc7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001848 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx ppmc7xx
Wolfgang Denkb87dfd22006-07-19 13:50:38 +02001849
wdenk7ebf7442002-11-02 23:17:16 +00001850#========================================================================
1851# ARM
1852#========================================================================
1853#########################################################################
1854## StrongARM Systems
1855#########################################################################
1856
wdenkea66bc82004-04-15 23:23:39 +00001857assabet_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001858 @$(MKCONFIG) $(@:_config=) arm sa1100 assabet
wdenkea66bc82004-04-15 23:23:39 +00001859
wdenk7ebf7442002-11-02 23:17:16 +00001860dnp1110_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001861 @$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110
wdenk7ebf7442002-11-02 23:17:16 +00001862
wdenk855a4962004-03-14 18:23:55 +00001863gcplus_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001864 @$(MKCONFIG) $(@:_config=) arm sa1100 gcplus
wdenk855a4962004-03-14 18:23:55 +00001865
1866lart_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001867 @$(MKCONFIG) $(@:_config=) arm sa1100 lart
wdenk855a4962004-03-14 18:23:55 +00001868
wdenk7ebf7442002-11-02 23:17:16 +00001869shannon_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001870 @$(MKCONFIG) $(@:_config=) arm sa1100 shannon
wdenk7ebf7442002-11-02 23:17:16 +00001871
1872#########################################################################
wdenk2e5983d2003-07-15 20:04:06 +00001873## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00001874#########################################################################
1875
wdenkb0639ca2003-09-17 22:48:07 +00001876xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk43d96162003-03-06 00:02:04 +00001877
wdenk3ff02c22004-06-09 15:25:53 +00001878xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
wdenk63e73c92004-02-23 22:22:28 +00001879
wdenka56bd922004-06-06 23:13:55 +00001880xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1881
wdenka85f9f22005-04-06 13:52:31 +00001882at91rm9200dk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001883 @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001884
1885cmc_pu2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001886 @$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001887
Wolfgang Denk645da512005-10-05 02:00:09 +02001888csb637_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001889 @$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200
Wolfgang Denk645da512005-10-05 02:00:09 +02001890
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001891mp2usb_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001892 @$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001893
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001894
Wolfgang Denk74f43042005-09-25 01:48:28 +02001895########################################################################
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001896## ARM Integrator boards - see doc/README-integrator for more info.
1897integratorap_config \
1898ap_config \
1899ap966_config \
1900ap922_config \
1901ap922_XA10_config \
1902ap7_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01001903ap720t_config \
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001904ap920t_config \
1905ap926ejs_config \
1906ap946es_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001907 @board/integratorap/split_by_variant.sh $@
wdenk3d3befa2004-03-14 15:06:13 +00001908
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001909integratorcp_config \
1910cp_config \
1911cp920t_config \
1912cp926ejs_config \
1913cp946es_config \
1914cp1136_config \
1915cp966_config \
1916cp922_config \
1917cp922_XA10_config \
1918cp1026_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001919 @board/integratorcp/split_by_variant.sh $@
wdenk25d67122004-12-10 11:40:40 +00001920
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001921kb9202_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001922 @$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001923
wdenkf832d8a2004-06-10 21:55:33 +00001924lpd7a400_config \
1925lpd7a404_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001926 @$(MKCONFIG) $(@:_config=) arm lh7a40x lpd7a40x
wdenk3d3befa2004-03-14 15:06:13 +00001927
wdenk281e00a2004-08-01 22:48:16 +00001928mx1ads_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001929 @$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001930
1931mx1fs2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001932 @$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001933
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001934netstar_32_config \
1935netstar_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001936 @mkdir -p $(obj)include
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001937 @if [ "$(findstring _32_,$@)" ] ; then \
1938 echo "... 32MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001939 echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001940 else \
1941 echo "... 64MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001942 echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001943 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001944 @$(MKCONFIG) -a netstar arm arm925t netstar
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001945
wdenk2e5983d2003-07-15 20:04:06 +00001946omap1510inn_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001947 @$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn
wdenk2e5983d2003-07-15 20:04:06 +00001948
wdenk1eaeb582004-06-08 00:22:43 +00001949omap5912osk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001950 @$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk NULL omap
wdenk1eaeb582004-06-08 00:22:43 +00001951
wdenk63e73c92004-02-23 22:22:28 +00001952omap1610inn_config \
1953omap1610inn_cs0boot_config \
1954omap1610inn_cs3boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00001955omap1610inn_cs_autoboot_config \
wdenk63e73c92004-02-23 22:22:28 +00001956omap1610h2_config \
1957omap1610h2_cs0boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00001958omap1610h2_cs3boot_config \
1959omap1610h2_cs_autoboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001960 @mkdir -p $(obj)include
wdenk63e73c92004-02-23 22:22:28 +00001961 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001962 echo "#define CONFIG_CS0_BOOT" >> .$(obj)/include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00001963 echo "... configured for CS0 boot"; \
wdenk3ff02c22004-06-09 15:25:53 +00001964 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001965 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)./include/config.h ; \
wdenk3ff02c22004-06-09 15:25:53 +00001966 echo "... configured for CS_AUTO boot"; \
wdenk63e73c92004-02-23 22:22:28 +00001967 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001968 echo "#define CONFIG_CS3_BOOT" >> $(obj)./include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00001969 echo "... configured for CS3 boot"; \
wdenk63e73c92004-02-23 22:22:28 +00001970 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02001971 @$(MKCONFIG) -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap
wdenk6f213472003-08-29 22:00:43 +00001972
wdenka56bd922004-06-06 23:13:55 +00001973omap730p2_config \
1974omap730p2_cs0boot_config \
1975omap730p2_cs3boot_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001976 @mkdir -p $(obj)include
wdenka56bd922004-06-06 23:13:55 +00001977 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001978 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00001979 echo "... configured for CS0 boot"; \
1980 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001981 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00001982 echo "... configured for CS3 boot"; \
1983 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02001984 @$(MKCONFIG) -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap
wdenka56bd922004-06-06 23:13:55 +00001985
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02001986sbc2410x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001987 @$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02001988
wdenk281e00a2004-08-01 22:48:16 +00001989scb9328_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001990 @$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001991
wdenk7ebf7442002-11-02 23:17:16 +00001992smdk2400_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001993 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001994
1995smdk2410_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001996 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001997
wdenk2d24a3a2004-06-09 21:50:45 +00001998SX1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001999 @$(MKCONFIG) $(@:_config=) arm arm925t sx1
wdenk2d24a3a2004-06-09 21:50:45 +00002000
wdenkb2001f22003-12-20 22:45:10 +00002001# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk43d96162003-03-06 00:02:04 +00002002trab_config \
wdenkb0639ca2003-09-17 22:48:07 +00002003trab_bigram_config \
2004trab_bigflash_config \
wdenkf54ebdf2003-09-17 15:10:32 +00002005trab_old_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002006 @mkdir -p $(obj)include
2007 @mkdir -p $(obj)board/trab
2008 @ >$(obj)include/config.h
wdenkb0639ca2003-09-17 22:48:07 +00002009 @[ -z "$(findstring _bigram,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002010 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2011 echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002012 echo "... with 8 MB Flash, 32 MB RAM" ; \
2013 }
2014 @[ -z "$(findstring _bigflash,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002015 { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \
2016 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002017 echo "... with 16 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002018 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenkb0639ca2003-09-17 22:48:07 +00002019 }
wdenkf54ebdf2003-09-17 15:10:32 +00002020 @[ -z "$(findstring _old,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002021 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2022 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +00002023 echo "... with 8 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002024 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenk43d96162003-03-06 00:02:04 +00002025 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002026 @$(MKCONFIG) -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002027
wdenk1cb8e982003-03-06 21:55:29 +00002028VCMA9_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002029 @$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0
wdenk1cb8e982003-03-06 21:55:29 +00002030
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002031#========================================================================
2032# ARM supplied Versatile development boards
2033#========================================================================
2034versatile_config \
2035versatileab_config \
2036versatilepb_config : unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02002037 @board/versatile/split_by_variant.sh $@
wdenk074cff02004-02-24 00:16:43 +00002038
wdenk3c2b3d42005-04-05 23:32:21 +00002039voiceblue_smallflash_config \
2040voiceblue_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002041 @mkdir -p $(obj)include
2042 @mkdir -p $(obj)board/voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002043 @if [ "$(findstring _smallflash_,$@)" ] ; then \
2044 echo "... boot from lower flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002045 echo "#define VOICEBLUE_SMALL_FLASH" >>$(obj)include/config.h ; \
2046 echo "VOICEBLUE_SMALL_FLASH=y" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00002047 else \
2048 echo "... boot from upper flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002049 >$(obj)include/config.h ; \
2050 echo "VOICEBLUE_SMALL_FLASH=n" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00002051 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02002052 @$(MKCONFIG) -a voiceblue arm arm925t voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002053
wdenk16b013e2005-05-19 22:46:33 +00002054cm4008_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002055 @$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002056
2057cm41xx_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002058 @$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002059
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002060gth2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002061 @mkdir -p $(obj)include
2062 @ >$(obj)include/config.h
2063 @echo "#define CONFIG_GTH2 1" >>$(obj)include/config.h
2064 @$(MKCONFIG) -a gth2 mips mips gth2
Wolfgang Denk0c32d962006-06-16 17:32:31 +02002065
wdenk074cff02004-02-24 00:16:43 +00002066#########################################################################
2067## S3C44B0 Systems
2068#########################################################################
2069
2070B2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002071 @$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave
wdenk074cff02004-02-24 00:16:43 +00002072
wdenk7ebf7442002-11-02 23:17:16 +00002073#########################################################################
2074## ARM720T Systems
2075#########################################################################
2076
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002077armadillo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002078 @$(MKCONFIG) $(@:_config=) arm arm720t armadillo
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002079
wdenk7ebf7442002-11-02 23:17:16 +00002080ep7312_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002081 @$(MKCONFIG) $(@:_config=) arm arm720t ep7312
wdenk7ebf7442002-11-02 23:17:16 +00002082
wdenk2d24a3a2004-06-09 21:50:45 +00002083impa7_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002084 @$(MKCONFIG) $(@:_config=) arm arm720t impa7
wdenk2d24a3a2004-06-09 21:50:45 +00002085
wdenk2d1a5372004-02-23 19:30:57 +00002086modnet50_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002087 @$(MKCONFIG) $(@:_config=) arm arm720t modnet50
wdenk2d1a5372004-02-23 19:30:57 +00002088
wdenk39539882004-07-01 16:30:44 +00002089evb4510_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002090 @$(MKCONFIG) $(@:_config=) arm arm720t evb4510
wdenk39539882004-07-01 16:30:44 +00002091
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002092lpc2292sodimm_config: unconfig
2093 @$(MKCONFIG) $(@:_config=) arm arm720t lpc2292sodimm
2094
wdenk7ebf7442002-11-02 23:17:16 +00002095#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002096## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00002097#########################################################################
2098
wdenk20787e22005-04-06 00:04:16 +00002099adsvix_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002100 @$(MKCONFIG) $(@:_config=) arm pxa adsvix
wdenk20787e22005-04-06 00:04:16 +00002101
wdenkfabd46a2004-07-10 23:11:10 +00002102cerf250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002103 @$(MKCONFIG) $(@:_config=) arm pxa cerf250
wdenkfabd46a2004-07-10 23:11:10 +00002104
wdenk7ebf7442002-11-02 23:17:16 +00002105cradle_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002106 @$(MKCONFIG) $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00002107
2108csb226_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002109 @$(MKCONFIG) $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00002110
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002111delta_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002112 @$(MKCONFIG) $(@:_config=) arm pxa delta
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002113
wdenk43d96162003-03-06 00:02:04 +00002114innokom_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002115 @$(MKCONFIG) $(@:_config=) arm pxa innokom
wdenk43d96162003-03-06 00:02:04 +00002116
wdenk2d5b5612003-10-14 19:43:55 +00002117ixdp425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002118 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
wdenk2d5b5612003-10-14 19:43:55 +00002119
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002120ixdpg425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002121 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002122
wdenk43d96162003-03-06 00:02:04 +00002123lubbock_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002124 @$(MKCONFIG) $(@:_config=) arm pxa lubbock
wdenk43d96162003-03-06 00:02:04 +00002125
Heiko Schocher5720df72006-05-02 07:51:46 +02002126pleb2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002127 @$(MKCONFIG) $(@:_config=) arm pxa pleb2
Heiko Schocher5720df72006-05-02 07:51:46 +02002128
wdenk52f52c12003-06-19 23:04:19 +00002129logodl_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002130 @$(MKCONFIG) $(@:_config=) arm pxa logodl
wdenk52f52c12003-06-19 23:04:19 +00002131
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002132pdnb3_config \
2133scpu_config: unconfig
2134 @if [ "$(findstring scpu_,$@)" ] ; then \
2135 echo "#define CONFIG_SCPU" >>include/config.h ; \
2136 echo "... on SCPU board variant" ; \
2137 else \
2138 >include/config.h ; \
2139 fi
2140 @$(MKCONFIG) -a pdnb3 arm ixp pdnb3 prodrive
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002141
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002142pxa255_idp_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002143 @$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002144
wdenk3e386912003-04-05 00:53:31 +00002145wepep250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002146 @$(MKCONFIG) $(@:_config=) arm pxa wepep250
wdenk3e386912003-04-05 00:53:31 +00002147
wdenk4ec3a7f2004-09-28 16:44:41 +00002148xaeniax_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002149 @$(MKCONFIG) $(@:_config=) arm pxa xaeniax
wdenk4ec3a7f2004-09-28 16:44:41 +00002150
wdenkefa329c2004-03-23 20:18:25 +00002151xm250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002152 @$(MKCONFIG) $(@:_config=) arm pxa xm250
wdenkefa329c2004-03-23 20:18:25 +00002153
wdenkca0e7742004-06-09 15:37:23 +00002154xsengine_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002155 @$(MKCONFIG) $(@:_config=) arm pxa xsengine
wdenkca0e7742004-06-09 15:37:23 +00002156
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002157zylonite_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002158 @$(MKCONFIG) $(@:_config=) arm pxa zylonite
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002159
wdenk8ed96042005-01-09 23:16:25 +00002160#########################################################################
2161## ARM1136 Systems
2162#########################################################################
2163omap2420h4_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002164 @$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4
wdenk8ed96042005-01-09 23:16:25 +00002165
wdenk2262cfe2002-11-18 00:14:45 +00002166#========================================================================
2167# i386
2168#========================================================================
2169#########################################################################
wdenk1cb8e982003-03-06 21:55:29 +00002170## AMD SC520 CDP
wdenk2262cfe2002-11-18 00:14:45 +00002171#########################################################################
2172sc520_cdp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002173 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp
wdenk2262cfe2002-11-18 00:14:45 +00002174
wdenk7a8e9bed2003-05-31 18:35:21 +00002175sc520_spunk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002176 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002177
2178sc520_spunk_rel_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002179 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002180
wdenk43d96162003-03-06 00:02:04 +00002181#========================================================================
2182# MIPS
2183#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00002184#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002185## MIPS32 4Kc
2186#########################################################################
2187
wdenke0ac62d2003-08-17 18:55:18 +00002188xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
2189
2190incaip_100MHz_config \
2191incaip_133MHz_config \
2192incaip_150MHz_config \
2193incaip_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002194 @mkdir -p $(obj)include
2195 @ >$(obj)include/config.h
wdenke0ac62d2003-08-17 18:55:18 +00002196 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002197 { echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002198 echo "... with 100MHz system clock" ; \
2199 }
2200 @[ -z "$(findstring _133MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002201 { echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002202 echo "... with 133MHz system clock" ; \
2203 }
2204 @[ -z "$(findstring _150MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002205 { echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002206 echo "... with 150MHz system clock" ; \
2207 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002208 @$(MKCONFIG) -a $(call xtract_incaip,$@) mips mips incaip
wdenke0ac62d2003-08-17 18:55:18 +00002209
wdenkf4863a72004-02-07 01:27:10 +00002210tb0229_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002211 @$(MKCONFIG) $(@:_config=) mips mips tb0229
wdenkf4863a72004-02-07 01:27:10 +00002212
wdenke0ac62d2003-08-17 18:55:18 +00002213#########################################################################
wdenk69459792004-05-29 16:53:29 +00002214## MIPS32 AU1X00
2215#########################################################################
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002216dbau1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002217 @mkdir -p $(obj)include
2218 @ >$(obj)include/config.h
2219 @echo "#define CONFIG_DBAU1000 1" >>$(obj)include/config.h
2220 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002221
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002222dbau1100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002223 @mkdir -p $(obj)include
2224 @ >$(obj)include/config.h
2225 @echo "#define CONFIG_DBAU1100 1" >>$(obj)include/config.h
2226 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002227
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002228dbau1500_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002229 @mkdir -p $(obj)include
2230 @ >$(obj)include/config.h
2231 @echo "#define CONFIG_DBAU1500 1" >>$(obj)include/config.h
2232 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002233
wdenkff36fd82005-01-09 22:28:56 +00002234dbau1550_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002235 @mkdir -p $(obj)include
2236 @ >$(obj)include/config.h
2237 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2238 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002239
2240dbau1550_el_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002241 @mkdir -p $(obj)include
2242 @ >$(obj)include/config.h
2243 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2244 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002245
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002246pb1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002247 @mkdir -p $(obj)include
2248 @ >$(obj)include/config.h
2249 @echo "#define CONFIG_PB1000 1" >>$(obj)include/config.h
2250 @$(MKCONFIG) -a pb1x00 mips mips pb1x00
Wolfgang Denk265817c2005-09-25 00:53:22 +02002251
wdenk69459792004-05-29 16:53:29 +00002252#########################################################################
wdenke0ac62d2003-08-17 18:55:18 +00002253## MIPS64 5Kc
2254#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002255
wdenk3e386912003-04-05 00:53:31 +00002256purple_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002257 @$(MKCONFIG) $(@:_config=) mips mips purple
wdenk43d96162003-03-06 00:02:04 +00002258
wdenk4a551702003-10-08 23:26:14 +00002259#========================================================================
2260# Nios
2261#========================================================================
2262#########################################################################
2263## Nios32
2264#########################################################################
2265
wdenkc935d3b2004-01-03 19:43:48 +00002266DK1C20_safe_32_config \
2267DK1C20_standard_32_config \
wdenk4a551702003-10-08 23:26:14 +00002268DK1C20_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002269 @mkdir -p $(obj)include
2270 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002271 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002272 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002273 echo "... NIOS 'safe_32' configuration" ; \
2274 }
2275 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002276 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002277 echo "... NIOS 'standard_32' configuration" ; \
2278 }
2279 @[ -z "$(findstring DK1C20_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002280 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002281 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2282 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002283 @$(MKCONFIG) -a DK1C20 nios nios dk1c20 altera
wdenkc935d3b2004-01-03 19:43:48 +00002284
2285DK1S10_safe_32_config \
2286DK1S10_standard_32_config \
wdenkec4c5442004-02-09 23:12:24 +00002287DK1S10_mtx_ldk_20_config \
wdenkc935d3b2004-01-03 19:43:48 +00002288DK1S10_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002289 @mkdir -p $(obj)include
2290 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002291 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002292 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002293 echo "... NIOS 'safe_32' configuration" ; \
2294 }
2295 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002296 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002297 echo "... NIOS 'standard_32' configuration" ; \
2298 }
wdenkec4c5442004-02-09 23:12:24 +00002299 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002300 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>$(obj)include/config.h ; \
wdenkec4c5442004-02-09 23:12:24 +00002301 echo "... NIOS 'mtx_ldk_20' configuration" ; \
2302 }
wdenkc935d3b2004-01-03 19:43:48 +00002303 @[ -z "$(findstring DK1S10_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002304 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002305 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2306 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002307 @$(MKCONFIG) -a DK1S10 nios nios dk1s10 altera
wdenk4a551702003-10-08 23:26:14 +00002308
wdenkaaf224a2004-03-14 15:20:55 +00002309ADNPESC1_DNPEVA2_base_32_config \
2310ADNPESC1_base_32_config \
2311ADNPESC1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002312 @mkdir -p $(obj)include
2313 @ >$(obj)include/config.h
wdenkaaf224a2004-03-14 15:20:55 +00002314 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002315 { echo "#define CONFIG_DNPEVA2 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002316 echo "... DNP/EVA2 configuration" ; \
2317 }
wdenkaaf224a2004-03-14 15:20:55 +00002318 @[ -z "$(findstring _base_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002319 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002320 echo "... NIOS 'base_32' configuration" ; \
2321 }
wdenkaaf224a2004-03-14 15:20:55 +00002322 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002323 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002324 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
2325 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002326 @$(MKCONFIG) -a ADNPESC1 nios nios adnpesc1 ssv
wdenkaaf224a2004-03-14 15:20:55 +00002327
wdenk5c952cf2004-10-10 21:27:30 +00002328#########################################################################
2329## Nios-II
2330#########################################################################
2331
Scott McNutt9cc83372006-06-08 13:37:39 -04002332EP1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002333 @$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002334
2335EP1S10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002336 @$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002337
2338EP1S40_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002339 @$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002340
wdenk5c952cf2004-10-10 21:27:30 +00002341PK1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002342 @$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent
wdenk5c952cf2004-10-10 21:27:30 +00002343
2344PCI5441_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002345 @$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent
wdenk4a551702003-10-08 23:26:14 +00002346
wdenk507bbe32004-04-18 21:13:41 +00002347#========================================================================
2348# MicroBlaze
2349#========================================================================
2350#########################################################################
2351## Microblaze
2352#########################################################################
2353suzaku_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002354 @mkdir -p $(obj)include
2355 @ >$(obj)include/config.h
2356 @echo "#define CONFIG_SUZAKU 1" >> $(obj)include/config.h
2357 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
wdenk507bbe32004-04-18 21:13:41 +00002358
Michal Simekcfc67112007-03-11 13:48:24 +01002359ml401_config: unconfig
2360 @ >include/config.h
2361 @echo "#define CONFIG_ML401 1" >> include/config.h
2362 @./mkconfig -a $(@:_config=) microblaze microblaze ml401 xilinx
2363
Michal Simek17980492007-03-26 01:39:07 +02002364xupv2p_config: unconfig
2365 @ >include/config.h
2366 @echo "#define CONFIG_XUPV2P 1" >> include/config.h
2367 @./mkconfig -a $(@:_config=) microblaze microblaze xupv2p xilinx
2368
wdenk3e386912003-04-05 00:53:31 +00002369#########################################################################
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002370## Blackfin
2371#########################################################################
Aubrey.Lief26a082007-03-09 13:40:56 +08002372bf533-ezkit_config: unconfig
2373 @$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-ezkit
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002374
Aubrey.Lief26a082007-03-09 13:40:56 +08002375bf533-stamp_config: unconfig
2376 @$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-stamp
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002377
Aubrey Li26bf7de2007-03-19 01:24:52 +08002378bf537-stamp_config: unconfig
2379 @$(MKCONFIG) $(@:_config=) blackfin bf537 bf537-stamp
2380
Aubrey Li65458982007-03-20 18:16:24 +08002381bf561-ezkit_config: unconfig
2382 @$(MKCONFIG) $(@:_config=) blackfin bf561 bf561-ezkit
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002383
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02002384#========================================================================
2385# AVR32
2386#========================================================================
2387#########################################################################
2388## AT32AP7xxx
2389#########################################################################
2390
2391atstk1002_config : unconfig
2392 @./mkconfig $(@:_config=) avr32 at32ap atstk1000 atmel at32ap7000
2393
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002394#########################################################################
2395#########################################################################
wdenk3e386912003-04-05 00:53:31 +00002396#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00002397
2398clean:
Marian Balakowiczf9328632006-09-01 19:49:50 +02002399 find $(OBJTREE) -type f \
wdenk7ebf7442002-11-02 23:17:16 +00002400 \( -name 'core' -o -name '*.bak' -o -name '*~' \
2401 -o -name '*.o' -o -name '*.a' \) -print \
2402 | xargs rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002403 rm -f $(obj)examples/hello_world $(obj)examples/timer \
2404 $(obj)examples/eepro100_eeprom $(obj)examples/sched \
2405 $(obj)examples/mem_to_mem_idma2intr $(obj)examples/82559_eeprom \
Wolfgang Denkd214fbb2006-09-13 10:29:32 +02002406 $(obj)examples/smc91111_eeprom $(obj)examples/interrupt \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002407 $(obj)examples/test_burst
2408 rm -f $(obj)tools/img2srec $(obj)tools/mkimage $(obj)tools/envcrc \
2409 $(obj)tools/gen_eth_addr
2410 rm -f $(obj)tools/mpc86x_clk $(obj)tools/ncb
2411 rm -f $(obj)tools/easylogo/easylogo $(obj)tools/bmp_logo
2412 rm -f $(obj)tools/gdb/astest $(obj)tools/gdb/gdbcont $(obj)tools/gdb/gdbsend
2413 rm -f $(obj)tools/env/fw_printenv $(obj)tools/env/fw_setenv
2414 rm -f $(obj)board/cray/L1/bootscript.c $(obj)board/cray/L1/bootscript.image
2415 rm -f $(obj)board/netstar/eeprom $(obj)board/netstar/crcek $(obj)board/netstar/crcit
2416 rm -f $(obj)board/netstar/*.srec $(obj)board/netstar/*.bin
2417 rm -f $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom
2418 rm -f $(obj)board/integratorap/u-boot.lds $(obj)board/integratorcp/u-boot.lds
Aubrey Li8440bb12007-03-12 00:25:14 +08002419 rm -f $(obj)board/bf533-ezkit/u-boot.lds $(obj)board/bf533-stamp/u-boot.lds
Aubrey Li65458982007-03-20 18:16:24 +08002420 rm -f $(obj)board/bf537-stamp/u-boot.lds $(obj)board/bf561-ezkit/u-boot.lds
Marian Balakowiczf9328632006-09-01 19:49:50 +02002421 rm -f $(obj)include/bmp_logo.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002422 rm -f $(obj)nand_spl/u-boot-spl $(obj)nand_spl/u-boot-spl.map
wdenk7ebf7442002-11-02 23:17:16 +00002423
2424clobber: clean
Marian Balakowiczf9328632006-09-01 19:49:50 +02002425 find $(OBJTREE) -type f \( -name .depend \
wdenk4c0d4c32004-06-09 17:34:58 +00002426 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
2427 -print0 \
2428 | xargs -0 rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002429 rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS $(obj)include/version_autogenerated.h
2430 rm -fr $(obj)*.*~
2431 rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL)
2432 rm -f $(obj)tools/crc32.c $(obj)tools/environment.c $(obj)tools/env/crc32.c
2433 rm -f $(obj)tools/inca-swap-bytes $(obj)cpu/mpc824x/bedbug_603e.c
2434 rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002435 [ ! -d $(OBJTREE)/nand_spl ] || find $(obj)nand_spl -lname "*" -print | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +00002436
Marian Balakowiczf9328632006-09-01 19:49:50 +02002437ifeq ($(OBJTREE),$(SRCTREE))
wdenk7ebf7442002-11-02 23:17:16 +00002438mrproper \
2439distclean: clobber unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002440else
2441mrproper \
2442distclean: clobber unconfig
2443 rm -rf $(OBJTREE)/*
2444endif
wdenk7ebf7442002-11-02 23:17:16 +00002445
2446backup:
2447 F=`basename $(TOPDIR)` ; cd .. ; \
2448 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
2449
2450#########################################################################