blob: cf3fbcbf20b69c93218a282695a51b720559e183 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
Wolfgang Denk881a87e2006-02-21 17:33:04 +01002# (C) Copyright 2000-2006
wdenk7ebf7442002-11-02 23:17:16 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
Wolfgang Denk45a212c2006-07-19 17:52:30 +020010# published by the Free Software Foundatio; either version 2 of
wdenk7ebf7442002-11-02 23:17:16 +000011# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
Wolfgang Denk881a87e2006-02-21 17:33:04 +010024VERSION = 1
Wolfgang Denkf4eb5452007-01-07 00:13:11 +010025PATCHLEVEL = 2
26SUBLEVEL = 0
Wolfgang Denk881a87e2006-02-21 17:33:04 +010027EXTRAVERSION =
28U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
Marian Balakowiczf9328632006-09-01 19:49:50 +020029VERSION_FILE = $(obj)include/version_autogenerated.h
Wolfgang Denk881a87e2006-02-21 17:33:04 +010030
wdenk7ebf7442002-11-02 23:17:16 +000031HOSTARCH := $(shell uname -m | \
32 sed -e s/i.86/i386/ \
33 -e s/sun4u/sparc64/ \
34 -e s/arm.*/arm/ \
35 -e s/sa110/arm/ \
36 -e s/powerpc/ppc/ \
37 -e s/macppc/ppc/)
38
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020039HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
wdenk7ebf7442002-11-02 23:17:16 +000040 sed -e 's/\(cygwin\).*/cygwin/')
41
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020042export HOSTARCH HOSTOS
wdenk7ebf7442002-11-02 23:17:16 +000043
44# Deal with colliding definitions from tcsh etc.
45VENDOR=
46
47#########################################################################
Marian Balakowiczf9328632006-09-01 19:49:50 +020048#
49# U-boot build supports producing a object files to the separate external
50# directory. Two use cases are supported:
Stefan Roese887e2ec2006-09-07 11:51:23 +020051#
Marian Balakowiczf9328632006-09-01 19:49:50 +020052# 1) Add O= to the make command line
53# 'make O=/tmp/build all'
54#
55# 2) Set environement variable BUILD_DIR to point to the desired location
56# 'export BUILD_DIR=/tmp/build'
57# 'make'
58#
59# The second approach can also be used with a MAKEALL script
60# 'export BUILD_DIR=/tmp/build'
61# './MAKEALL'
Stefan Roese887e2ec2006-09-07 11:51:23 +020062#
Marian Balakowiczf9328632006-09-01 19:49:50 +020063# Command line 'O=' setting overrides BUILD_DIR environent variable.
Stefan Roese887e2ec2006-09-07 11:51:23 +020064#
Marian Balakowiczf9328632006-09-01 19:49:50 +020065# When none of the above methods is used the local build is performed and
66# the object files are placed in the source directory.
Stefan Roese887e2ec2006-09-07 11:51:23 +020067#
wdenk7ebf7442002-11-02 23:17:16 +000068
Marian Balakowiczf9328632006-09-01 19:49:50 +020069ifdef O
70ifeq ("$(origin O)", "command line")
71BUILD_DIR := $(O)
72endif
73endif
wdenk7ebf7442002-11-02 23:17:16 +000074
Marian Balakowiczf9328632006-09-01 19:49:50 +020075ifneq ($(BUILD_DIR),)
76saved-output := $(BUILD_DIR)
Marian Balakowicz4f0645e2006-09-07 12:05:53 +020077
78# Attempt to create a output directory.
79$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
80
Stefan Roesea73c8db2006-09-12 08:49:07 +020081# Verify if it was successful.
Marian Balakowiczf9328632006-09-01 19:49:50 +020082BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
83$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
84endif # ifneq ($(BUILD_DIR),)
85
86OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
87SRCTREE := $(CURDIR)
88TOPDIR := $(SRCTREE)
89LNDIR := $(OBJTREE)
90export TOPDIR SRCTREE OBJTREE
91
92MKCONFIG := $(SRCTREE)/mkconfig
93export MKCONFIG
94
95ifneq ($(OBJTREE),$(SRCTREE))
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010096REMOTE_BUILD := 1
Marian Balakowiczf9328632006-09-01 19:49:50 +020097export REMOTE_BUILD
98endif
99
100# $(obj) and (src) are defined in config.mk but here in main Makefile
101# we also need them before config.mk is included which is the case for
102# some targets like unconfig, clean, clobber, distclean, etc.
103ifneq ($(OBJTREE),$(SRCTREE))
104obj := $(OBJTREE)/
105src := $(SRCTREE)/
106else
107obj :=
108src :=
Stefan Roese887e2ec2006-09-07 11:51:23 +0200109endif
Marian Balakowiczf9328632006-09-01 19:49:50 +0200110export obj src
111
112#########################################################################
113
114ifeq ($(OBJTREE)/include/config.mk,$(wildcard $(OBJTREE)/include/config.mk))
115
wdenk7ebf7442002-11-02 23:17:16 +0000116# load ARCH, BOARD, and CPU configuration
Marian Balakowiczf9328632006-09-01 19:49:50 +0200117include $(OBJTREE)/include/config.mk
wdenk1d9f4102004-10-09 22:21:29 +0000118export ARCH CPU BOARD VENDOR SOC
Marian Balakowiczf9328632006-09-01 19:49:50 +0200119
wdenk7ebf7442002-11-02 23:17:16 +0000120ifndef CROSS_COMPILE
Wolfgang Denka5284ef2007-03-06 18:01:47 +0100121ifeq ($(HOSTARCH),$(ARCH))
wdenk7ebf7442002-11-02 23:17:16 +0000122CROSS_COMPILE =
123else
wdenk7ebf7442002-11-02 23:17:16 +0000124ifeq ($(ARCH),ppc)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500125CROSS_COMPILE = powerpc-linux-
wdenk7ebf7442002-11-02 23:17:16 +0000126endif
127ifeq ($(ARCH),arm)
wdenkdc7c9a12003-03-26 06:55:25 +0000128CROSS_COMPILE = arm-linux-
wdenk7ebf7442002-11-02 23:17:16 +0000129endif
wdenk2262cfe2002-11-18 00:14:45 +0000130ifeq ($(ARCH),i386)
wdenk7a8e9bed2003-05-31 18:35:21 +0000131CROSS_COMPILE = i386-linux-
132endif
wdenk43d96162003-03-06 00:02:04 +0000133ifeq ($(ARCH),mips)
134CROSS_COMPILE = mips_4KC-
135endif
wdenk4a551702003-10-08 23:26:14 +0000136ifeq ($(ARCH),nios)
137CROSS_COMPILE = nios-elf-
138endif
wdenk5c952cf2004-10-10 21:27:30 +0000139ifeq ($(ARCH),nios2)
140CROSS_COMPILE = nios2-elf-
141endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000142ifeq ($(ARCH),m68k)
143CROSS_COMPILE = m68k-elf-
144endif
wdenk507bbe32004-04-18 21:13:41 +0000145ifeq ($(ARCH),microblaze)
146CROSS_COMPILE = mb-
147endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100148ifeq ($(ARCH),blackfin)
Aubrey.Lief26a082007-03-09 13:40:56 +0800149CROSS_COMPILE = bfin-uclinux-
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100150endif
Wolfgang Denk7b64fef2006-10-24 14:21:16 +0200151ifeq ($(ARCH),avr32)
Haavard Skinnemoen5374b362006-11-18 17:24:31 +0100152CROSS_COMPILE = avr32-linux-
Wolfgang Denk7b64fef2006-10-24 14:21:16 +0200153endif
wdenk7ebf7442002-11-02 23:17:16 +0000154endif
155endif
156
157export CROSS_COMPILE
158
Wolfgang Denk92b197f2006-03-12 01:37:50 +0100159# load other configuration
160include $(TOPDIR)/config.mk
161
wdenk7ebf7442002-11-02 23:17:16 +0000162#########################################################################
163# U-Boot objects....order is important (i.e. start must be first)
164
wdenk9fd5e312003-12-07 23:55:12 +0000165OBJS = cpu/$(CPU)/start.o
wdenk2262cfe2002-11-18 00:14:45 +0000166ifeq ($(CPU),i386)
wdenk9fd5e312003-12-07 23:55:12 +0000167OBJS += cpu/$(CPU)/start16.o
168OBJS += cpu/$(CPU)/reset.o
wdenk2262cfe2002-11-18 00:14:45 +0000169endif
wdenk7ebf7442002-11-02 23:17:16 +0000170ifeq ($(CPU),ppc4xx)
wdenk9fd5e312003-12-07 23:55:12 +0000171OBJS += cpu/$(CPU)/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +0000172endif
wdenk42d1f032003-10-15 23:53:47 +0000173ifeq ($(CPU),mpc85xx)
174OBJS += cpu/$(CPU)/resetvec.o
175endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100176ifeq ($(CPU),bf533)
177OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
Aubrey.Lief26a082007-03-09 13:40:56 +0800178OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100179endif
Aubrey Li26bf7de2007-03-19 01:24:52 +0800180ifeq ($(CPU),bf537)
181OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
Aubrey Li65458982007-03-20 18:16:24 +0800182OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
183endif
184ifeq ($(CPU),bf561)
185OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
186OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
wdenk7ebf7442002-11-02 23:17:16 +0000187endif
188
Marian Balakowiczf9328632006-09-01 19:49:50 +0200189OBJS := $(addprefix $(obj),$(OBJS))
190
wdenk9fd5e312003-12-07 23:55:12 +0000191LIBS = lib_generic/libgeneric.a
192LIBS += board/$(BOARDDIR)/lib$(BOARD).a
wdenk7ebf7442002-11-02 23:17:16 +0000193LIBS += cpu/$(CPU)/lib$(CPU).a
wdenk1d9f4102004-10-09 22:21:29 +0000194ifdef SOC
195LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
196endif
Stefan Roese323bfa82007-04-23 12:00:22 +0200197ifeq ($(CPU),ixp)
198LIBS += cpu/ixp/npe/libnpe.a
199endif
wdenk7ebf7442002-11-02 23:17:16 +0000200LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk518e2e12004-03-25 14:59:05 +0000201LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
stroesec419d1d2004-12-16 18:44:40 +0000202 fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a
wdenk7ebf7442002-11-02 23:17:16 +0000203LIBS += net/libnet.a
204LIBS += disk/libdisk.a
205LIBS += rtc/librtc.a
206LIBS += dtt/libdtt.a
207LIBS += drivers/libdrivers.a
Jason Jin0f460a12007-07-13 12:14:58 +0800208LIBS += drivers/bios_emulator/libatibiosemu.a
Marian Balakowicz6db39702006-04-08 19:08:06 +0200209LIBS += drivers/nand/libnand.a
210LIBS += drivers/nand_legacy/libnand_legacy.a
Dave Liu7737d5c2006-11-03 12:11:15 -0600211ifeq ($(CPU),mpc83xx)
212LIBS += drivers/qe/qe.a
213endif
wdenk7152b1d2003-09-05 23:19:14 +0000214LIBS += drivers/sk98lin/libsk98lin.a
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100215LIBS += post/libpost.a post/drivers/libpostdrivers.a
216LIBS += $(shell if [ -d post/lib_$(ARCH) ]; then echo \
217 "post/lib_$(ARCH)/libpost$(ARCH).a"; fi)
Sergei Poselenovb4489622007-07-05 08:17:37 +0200218LIBS += $(shell if [ -d post/lib_$(ARCH)/fpu ]; then echo \
219 "post/lib_$(ARCH)/fpu/libpost$(ARCH)fpu.a"; fi)
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100220LIBS += $(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
Gerald Van Baren7651f8b2007-04-19 23:14:39 -0400225LIBS += libfdt/libfdt.a
Marian Balakowiczf9328632006-09-01 19:49:50 +0200226
227LIBS := $(addprefix $(obj),$(LIBS))
wdenk9fd5e312003-12-07 23:55:12 +0000228.PHONY : $(LIBS)
wdenka8c7c702003-12-06 19:49:23 +0000229
wdenk4f7cb082003-09-11 23:06:34 +0000230# Add GCC lib
wdenk1a344f22005-02-03 23:00:49 +0000231PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
wdenk3d3befa2004-03-14 15:06:13 +0000232
wdenka8c7c702003-12-06 19:49:23 +0000233# The "tools" are needed early, so put this first
234# Don't include stuff already done in $(LIBS)
235SUBDIRS = tools \
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100236 examples
237
wdenkb028f712003-12-07 21:39:28 +0000238.PHONY : $(SUBDIRS)
wdenka8c7c702003-12-06 19:49:23 +0000239
Stefan Roese887e2ec2006-09-07 11:51:23 +0200240ifeq ($(CONFIG_NAND_U_BOOT),y)
241NAND_SPL = nand_spl
242U_BOOT_NAND = $(obj)u-boot-nand.bin
243endif
244
Marian Balakowiczf9328632006-09-01 19:49:50 +0200245__OBJS := $(subst $(obj),,$(OBJS))
246__LIBS := $(subst $(obj),,$(LIBS))
247
wdenk7ebf7442002-11-02 23:17:16 +0000248#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000249#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000250
Heiko Schocher566a4942007-06-22 19:11:54 +0200251ALL += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND)
wdenk7ebf7442002-11-02 23:17:16 +0000252
wdenkbdccc4f2003-08-05 17:43:17 +0000253all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000254
Marian Balakowiczf9328632006-09-01 19:49:50 +0200255$(obj)u-boot.hex: $(obj)u-boot
wdenk6310eb92005-01-09 21:28:15 +0000256 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
257
Marian Balakowiczf9328632006-09-01 19:49:50 +0200258$(obj)u-boot.srec: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000259 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
260
Marian Balakowiczf9328632006-09-01 19:49:50 +0200261$(obj)u-boot.bin: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000262 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
263
Marian Balakowiczf9328632006-09-01 19:49:50 +0200264$(obj)u-boot.img: $(obj)u-boot.bin
wdenkbdccc4f2003-08-05 17:43:17 +0000265 ./tools/mkimage -A $(ARCH) -T firmware -C none \
266 -a $(TEXT_BASE) -e 0 \
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100267 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenkbdccc4f2003-08-05 17:43:17 +0000268 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
269 -d $< $@
270
Heiko Schocher566a4942007-06-22 19:11:54 +0200271$(obj)u-boot.sha1: $(obj)u-boot.bin
Heiko Schocher01159532007-07-14 01:06:58 +0200272 $(obj)tools/ubsha1 $(obj)u-boot.bin
Heiko Schocher566a4942007-06-22 19:11:54 +0200273
Marian Balakowiczf9328632006-09-01 19:49:50 +0200274$(obj)u-boot.dis: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000275 $(OBJDUMP) -d $< > $@
276
Marian Balakowiczf9328632006-09-01 19:49:50 +0200277$(obj)u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
wdenk8bde7f72003-06-27 21:31:46 +0000278 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
Marian Balakowiczf9328632006-09-01 19:49:50 +0200279 cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
280 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000281 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000282
Marian Balakowiczf9328632006-09-01 19:49:50 +0200283$(OBJS):
284 $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@))
285
wdenka8c7c702003-12-06 19:49:23 +0000286$(LIBS):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200287 $(MAKE) -C $(dir $(subst $(obj),,$@))
wdenka8c7c702003-12-06 19:49:23 +0000288
289$(SUBDIRS):
wdenkb028f712003-12-07 21:39:28 +0000290 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000291
Stefan Roese887e2ec2006-09-07 11:51:23 +0200292$(NAND_SPL): version
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200293 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
Stefan Roese887e2ec2006-09-07 11:51:23 +0200294
295$(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200296 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 +0200297
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100298version:
299 @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \
300 echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \
301 echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \
302 $(TOPDIR)) >> $(VERSION_FILE); \
303 echo "\"" >> $(VERSION_FILE)
304
dzu8f713fd2003-08-07 14:20:31 +0000305gdbtools:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200306 $(MAKE) -C tools/gdb all || exit 1
307
308updater:
309 $(MAKE) -C tools/updater all || exit 1
310
311env:
312 $(MAKE) -C tools/env all || exit 1
dzu8f713fd2003-08-07 14:20:31 +0000313
wdenk7ebf7442002-11-02 23:17:16 +0000314depend dep:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200315 for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir _depend ; done
wdenk7ebf7442002-11-02 23:17:16 +0000316
Marian Balakowiczf9328632006-09-01 19:49:50 +0200317tags ctags:
318 ctags -w -o $(OBJTREE)/ctags `find $(SUBDIRS) include \
wdenkbda6c8a2004-04-15 21:58:11 +0000319 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
320 fs/cramfs fs/fat fs/fdos fs/jffs2 \
321 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000322 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
323
324etags:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200325 etags -a -o $(OBJTREE)/etags `find $(SUBDIRS) include \
wdenkeedcd072004-09-08 22:03:11 +0000326 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
327 fs/cramfs fs/fat fs/fdos fs/jffs2 \
328 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000329 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
330
Marian Balakowiczf9328632006-09-01 19:49:50 +0200331$(obj)System.map: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000332 @$(NM) $< | \
333 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200334 sort > $(obj)System.map
wdenk7ebf7442002-11-02 23:17:16 +0000335
336#########################################################################
337else
Marian Balakowiczf9328632006-09-01 19:49:50 +0200338all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
339$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
340$(SUBDIRS) version gdbtools updater env depend \
341dep tags ctags etags $(obj)System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000342 @echo "System not configured - see README" >&2
343 @ exit 1
344endif
345
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200346.PHONY : CHANGELOG
347CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -0400348 git log --no-merges U-Boot-1_1_5.. | \
349 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200350
wdenk7ebf7442002-11-02 23:17:16 +0000351#########################################################################
352
353unconfig:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200354 @rm -f $(obj)include/config.h $(obj)include/config.mk \
355 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp
wdenk7ebf7442002-11-02 23:17:16 +0000356
357#========================================================================
358# PowerPC
359#========================================================================
wdenk0db5bca2003-03-31 17:27:09 +0000360
361#########################################################################
362## MPC5xx Systems
363#########################################################################
364
wdenk5e5f9ed2005-04-13 23:15:10 +0000365canmb_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200366 @$(MKCONFIG) -a canmb ppc mpc5xxx canmb
wdenk5e5f9ed2005-04-13 23:15:10 +0000367
wdenk0db5bca2003-03-31 17:27:09 +0000368cmi_mpc5xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200369 @$(MKCONFIG) $(@:_config=) ppc mpc5xx cmi
wdenk0db5bca2003-03-31 17:27:09 +0000370
wdenkdb01a2e2004-04-15 23:14:49 +0000371PATI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200372 @$(MKCONFIG) $(@:_config=) ppc mpc5xx pati mpl
wdenkb6e4c402004-01-02 16:05:07 +0000373
wdenk7ebf7442002-11-02 23:17:16 +0000374#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000375## MPC5xxx Systems
376#########################################################################
wdenka87589d2005-06-10 10:00:19 +0000377
Wolfgang Denkdafba162005-08-12 00:22:49 +0200378aev_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200379 @$(MKCONFIG) -a aev ppc mpc5xxx tqm5200
Wolfgang Denkdafba162005-08-12 00:22:49 +0200380
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200381BC3450_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200382 @$(MKCONFIG) -a BC3450 ppc mpc5xxx bc3450
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200383
Stefan Roese5e4b3362005-08-22 17:51:53 +0200384cpci5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200385 @$(MKCONFIG) -a cpci5200 ppc mpc5xxx cpci5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200386
wdenka87589d2005-06-10 10:00:19 +0000387hmi1001_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200388 @$(MKCONFIG) hmi1001 ppc mpc5xxx hmi1001
wdenka87589d2005-06-10 10:00:19 +0000389
wdenke35745b2004-04-18 23:32:11 +0000390Lite5200_config \
391Lite5200_LOWBOOT_config \
392Lite5200_LOWBOOT08_config \
393icecube_5200_config \
394icecube_5200_LOWBOOT_config \
395icecube_5200_LOWBOOT08_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100396icecube_5200_DDR_config \
397icecube_5200_DDR_LOWBOOT_config \
wdenke35745b2004-04-18 23:32:11 +0000398icecube_5200_DDR_LOWBOOT08_config \
399icecube_5100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200400 @mkdir -p $(obj)include
401 @mkdir -p $(obj)board/icecube
402 @ >$(obj)include/config.h
wdenk17d704e2004-04-10 20:43:50 +0000403 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
404 { if [ "$(findstring DDR,$@)" ] ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200405 then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
406 else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
wdenk17d704e2004-04-10 20:43:50 +0000407 fi ; \
wdenk5cf9da42003-11-07 13:42:26 +0000408 echo "... with LOWBOOT configuration" ; \
409 }
410 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200411 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
wdenk5cf9da42003-11-07 13:42:26 +0000412 echo "... with 8 MB flash only" ; \
wdenk17d704e2004-04-10 20:43:50 +0000413 echo "... with LOWBOOT configuration" ; \
wdenk5cf9da42003-11-07 13:42:26 +0000414 }
wdenkb2001f22003-12-20 22:45:10 +0000415 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200416 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +0000417 echo "... DDR memory revision" ; \
418 }
wdenkd4ca31c2004-01-02 14:00:00 +0000419 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200420 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenkd4ca31c2004-01-02 14:00:00 +0000421 echo "... with MPC5200 processor" ; \
422 }
wdenka0f2fe52003-10-28 09:14:21 +0000423 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200424 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk945af8d2003-07-16 21:53:01 +0000425 echo "... with MGT5100 processor" ; \
426 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200427 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
wdenk945af8d2003-07-16 21:53:01 +0000428
Heiko Schocher2605e902007-02-16 07:57:42 +0100429jupiter_config: unconfig
430 @$(MKCONFIG) jupiter ppc mpc5xxx jupiter
431
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200432v38b_config: unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -0600433 @$(MKCONFIG) -a v38b ppc mpc5xxx v38b
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200434
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100435inka4x0_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200436 @$(MKCONFIG) inka4x0 ppc mpc5xxx inka4x0
wdenk138ff602004-12-16 15:52:40 +0000437
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100438lite5200b_config \
Domen Puncerd3832e82007-04-16 14:00:13 +0200439lite5200b_PM_config \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100440lite5200b_LOWBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200441 @mkdir -p $(obj)include
442 @mkdir -p $(obj)board/icecube
443 @ >$(obj)include/config.h
444 @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100445 @ echo "... DDR memory revision"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200446 @ echo "#define CONFIG_MPC5200" >>$(obj)include/config.h
447 @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h
Domen Puncerd3832e82007-04-16 14:00:13 +0200448 @[ -z "$(findstring _PM_,$@)" ] || \
449 { echo "#define CONFIG_LITE5200B_PM" >>$(obj)include/config.h ; \
450 echo "... with power management (low-power mode) support" ; \
451 }
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100452 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200453 { echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100454 echo "... with LOWBOOT configuration" ; \
455 }
456 @ echo "... with MPC5200B processor"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200457 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100458
Stefan Roesef1ee9822006-03-04 14:57:03 +0100459mcc200_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200460mcc200_SDRAM_config \
461mcc200_highboot_config \
462mcc200_COM12_config \
463mcc200_COM12_SDRAM_config \
Wolfgang Denk113f64e2006-08-25 01:38:04 +0200464mcc200_COM12_highboot_config \
465mcc200_COM12_highboot_SDRAM_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200466mcc200_highboot_SDRAM_config \
467prs200_config \
468prs200_DDR_config \
469prs200_highboot_config \
470prs200_highboot_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200471 @mkdir -p $(obj)include
472 @mkdir -p $(obj)board/mcc200
473 @ >$(obj)include/config.h
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200474 @[ -n "$(findstring highboot,$@)" ] || \
475 { echo "... with lowboot configuration" ; \
Stefan Roesef1ee9822006-03-04 14:57:03 +0100476 }
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200477 @[ -z "$(findstring highboot,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200478 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200479 echo "... with highboot configuration" ; \
480 }
481 @[ -n "$(findstring _SDRAM,$@)" ] || \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200482 { if [ -n "$(findstring mcc200,$@)" ]; \
483 then \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100484 echo "... with DDR" ; \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200485 else \
486 if [ -n "$(findstring _DDR,$@)" ];\
487 then \
488 echo "... with DDR" ; \
489 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200490 echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200491 echo "... with SDRAM" ; \
492 fi; \
493 fi; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200494 }
495 @[ -z "$(findstring _SDRAM,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200496 { echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200497 echo "... with SDRAM" ; \
498 }
Wolfgang Denk463764c2006-08-17 00:36:51 +0200499 @[ -z "$(findstring COM12,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200500 { echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \
Wolfgang Denk463764c2006-08-17 00:36:51 +0200501 echo "... with console on COM12" ; \
502 }
Wolfgang Denked1cf842006-08-24 00:26:42 +0200503 @[ -z "$(findstring prs200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200504 { echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200505 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200506 @$(MKCONFIG) -n $@ -a mcc200 ppc mpc5xxx mcc200
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100507
Stefan Roese8b7d1f02007-01-31 16:37:34 +0100508mecp5200_config: unconfig
509 @$(MKCONFIG) -a mecp5200 ppc mpc5xxx mecp5200 esd
510
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200511o2dnt_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200512 @$(MKCONFIG) o2dnt ppc mpc5xxx o2dnt
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200513
Stefan Roese5e4b3362005-08-22 17:51:53 +0200514pf5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200515 @$(MKCONFIG) pf5200 ppc mpc5xxx pf5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200516
wdenk89394042004-08-04 21:56:49 +0000517PM520_config \
518PM520_DDR_config \
519PM520_ROMBOOT_config \
520PM520_ROMBOOT_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200521 @mkdir -p $(obj)include
522 @ >$(obj)include/config.h
wdenk89394042004-08-04 21:56:49 +0000523 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200524 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000525 echo "... DDR memory revision" ; \
526 }
527 @[ -z "$(findstring ROMBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200528 { echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000529 echo "... booting from 8-bit flash" ; \
530 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200531 @$(MKCONFIG) -a PM520 ppc mpc5xxx pm520
wdenk89394042004-08-04 21:56:49 +0000532
Wolfgang Denk6624b682006-02-22 10:25:39 +0100533smmaco4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200534 @$(MKCONFIG) -a smmaco4 ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100535
Bartlomiej Sieka86b116b2007-08-03 12:08:16 +0200536cm5200_config: unconfig
537 @./mkconfig -a cm5200 ppc mpc5xxx cm5200
Bartlomiej Siekafa1df302007-07-11 20:11:07 +0200538
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100539spieval_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200540 @$(MKCONFIG) -a spieval ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100541
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200542TB5200_B_config \
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200543TB5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200544 @mkdir -p $(obj)include
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200545 @[ -z "$(findstring _B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200546 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200547 echo "... with MPC5200B processor" ; \
548 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200549 @$(MKCONFIG) -n $@ -a TB5200 ppc mpc5xxx tqm5200
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200550
wdenkd4ca31c2004-01-02 14:00:00 +0000551MINI5200_config \
552EVAL5200_config \
553TOP5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200554 @mkdir -p $(obj)include
555 @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
556 @$(MKCONFIG) -n $@ -a TOP5200 ppc mpc5xxx top5200 emk
wdenkd4ca31c2004-01-02 14:00:00 +0000557
wdenk6c7a1402004-07-11 19:17:20 +0000558Total5100_config \
559Total5200_config \
560Total5200_lowboot_config \
561Total5200_Rev2_config \
562Total5200_Rev2_lowboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200563 @mkdir -p $(obj)include
564 @mkdir -p $(obj)board/total5200
565 @ >$(obj)include/config.h
wdenk6c7a1402004-07-11 19:17:20 +0000566 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200567 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000568 echo "... with MGT5100 processor" ; \
569 }
570 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200571 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000572 echo "... with MPC5200 processor" ; \
573 }
574 @[ -n "$(findstring Rev,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200575 { echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000576 echo "... revision 1 board" ; \
577 }
578 @[ -z "$(findstring Rev2_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200579 { echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000580 echo "... revision 2 board" ; \
581 }
582 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200583 { echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp ; \
wdenk6c7a1402004-07-11 19:17:20 +0000584 echo "... with lowboot configuration" ; \
585 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200586 @$(MKCONFIG) -a Total5200 ppc mpc5xxx total5200
wdenk6c7a1402004-07-11 19:17:20 +0000587
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200588cam5200_config \
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100589cam5200_niosflash_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200590fo300_config \
591MiniFAP_config \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200592TQM5200S_config \
593TQM5200S_HIGHBOOT_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200594TQM5200_B_config \
595TQM5200_B_HIGHBOOT_config \
596TQM5200_config \
597TQM5200_STK100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200598 @mkdir -p $(obj)include
599 @mkdir -p $(obj)board/tqm5200
600 @ >$(obj)include/config.h
Wolfgang Denk135ae002006-07-22 01:20:03 +0200601 @[ -z "$(findstring cam5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200602 { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \
603 echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
604 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk135ae002006-07-22 01:20:03 +0200605 echo "... TQM5200S on Cam5200" ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200606 }
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100607 @[ -z "$(findstring niosflash,$@)" ] || \
608 { echo "#define CONFIG_CAM5200_NIOSFLASH" >>$(obj)include/config.h ; \
609 echo "... with NIOS flash driver" ; \
610 }
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200611 @[ -z "$(findstring fo300,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200612 { echo "#define CONFIG_FO300" >>$(obj)include/config.h ; \
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200613 echo "... TQM5200 on FO300" ; \
614 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200615 @[ -z "$(findstring MiniFAP,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200616 { echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200617 echo "... TQM5200_AC on MiniFAP" ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200618 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200619 @[ -z "$(findstring STK100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200620 { echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h ; \
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200621 echo "... on a STK52XX.100 base board" ; \
wdenk56523f12004-07-11 17:40:54 +0000622 }
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200623 @[ -z "$(findstring TQM5200_B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200624 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200625 }
626 @[ -z "$(findstring TQM5200S,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200627 { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
628 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200629 }
Wolfgang Denk978b1092006-07-19 18:01:38 +0200630 @[ -z "$(findstring HIGHBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200631 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200632 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200633 @$(MKCONFIG) -n $@ -a TQM5200 ppc mpc5xxx tqm5200
Heiko Schocher6dedf3d2006-12-21 16:14:48 +0100634uc101_config: unconfig
635 @$(MKCONFIG) uc101 ppc mpc5xxx uc101
Bartlomiej Sieka53d4a492007-02-09 10:45:42 +0100636motionpro_config: unconfig
637 @$(MKCONFIG) motionpro ppc mpc5xxx motionpro
638
wdenk56523f12004-07-11 17:40:54 +0000639
wdenk945af8d2003-07-16 21:53:01 +0000640#########################################################################
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200641## MPC512x Systems
642#########################################################################
643ads5121_config: unconfig
644 @$(MKCONFIG) ads5121 ppc mpc512x ads5121
645
646
647#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000648## MPC8xx Systems
649#########################################################################
650
wdenk2d24a3a2004-06-09 21:50:45 +0000651Adder_config \
652Adder87x_config \
wdenk26238132004-07-09 22:51:01 +0000653AdderII_config \
wdenk2d24a3a2004-06-09 21:50:45 +0000654 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200655 @mkdir -p $(obj)include
wdenk26238132004-07-09 22:51:01 +0000656 $(if $(findstring AdderII,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200657 @echo "#define CONFIG_MPC852T" > $(obj)include/config.h)
658 @$(MKCONFIG) -a Adder ppc mpc8xx adder
wdenk2d24a3a2004-06-09 21:50:45 +0000659
wdenk180d3f72004-01-04 16:28:35 +0000660ADS860_config \
wdenk180d3f72004-01-04 16:28:35 +0000661FADS823_config \
662FADS850SAR_config \
663MPC86xADS_config \
wdenk11142572004-06-06 21:35:06 +0000664MPC885ADS_config \
wdenk180d3f72004-01-04 16:28:35 +0000665FADS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200666 @$(MKCONFIG) $(@:_config=) ppc mpc8xx fads
wdenk7ebf7442002-11-02 23:17:16 +0000667
668AMX860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200669 @$(MKCONFIG) $(@:_config=) ppc mpc8xx amx860 westel
wdenk7ebf7442002-11-02 23:17:16 +0000670
671c2mon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200672 @$(MKCONFIG) $(@:_config=) ppc mpc8xx c2mon
wdenk7ebf7442002-11-02 23:17:16 +0000673
674CCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200675 @$(MKCONFIG) $(@:_config=) ppc mpc8xx CCM siemens
wdenk7ebf7442002-11-02 23:17:16 +0000676
677cogent_mpc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200678 @$(MKCONFIG) $(@:_config=) ppc mpc8xx cogent
wdenk7ebf7442002-11-02 23:17:16 +0000679
wdenk3bac3512003-03-12 10:41:04 +0000680ELPT860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200681 @$(MKCONFIG) $(@:_config=) ppc mpc8xx elpt860 LEOX
wdenk3bac3512003-03-12 10:41:04 +0000682
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100683EP88x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200684 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ep88x
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100685
wdenk7ebf7442002-11-02 23:17:16 +0000686ESTEEM192E_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200687 @$(MKCONFIG) $(@:_config=) ppc mpc8xx esteem192e
wdenk7ebf7442002-11-02 23:17:16 +0000688
689ETX094_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200690 @$(MKCONFIG) $(@:_config=) ppc mpc8xx etx094
wdenk7ebf7442002-11-02 23:17:16 +0000691
wdenk7ebf7442002-11-02 23:17:16 +0000692FLAGADM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200693 @$(MKCONFIG) $(@:_config=) ppc mpc8xx flagadm
wdenk7ebf7442002-11-02 23:17:16 +0000694
wdenk7aa78612003-05-03 15:50:43 +0000695xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
696
697GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000698GEN860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200699 @mkdir -p $(obj)include
700 @ >$(obj)include/config.h
wdenk7aa78612003-05-03 15:50:43 +0000701 @[ -z "$(findstring _SC,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200702 { echo "#define CONFIG_SC" >>$(obj)include/config.h ; \
wdenk7aa78612003-05-03 15:50:43 +0000703 echo "With reduced H/W feature set (SC)..." ; \
704 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200705 @$(MKCONFIG) -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000706
707GENIETV_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200708 @$(MKCONFIG) $(@:_config=) ppc mpc8xx genietv
wdenk7ebf7442002-11-02 23:17:16 +0000709
710GTH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200711 @$(MKCONFIG) $(@:_config=) ppc mpc8xx gth
wdenk7ebf7442002-11-02 23:17:16 +0000712
713hermes_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200714 @$(MKCONFIG) $(@:_config=) ppc mpc8xx hermes
wdenk7ebf7442002-11-02 23:17:16 +0000715
wdenkc40b2952004-03-13 23:29:43 +0000716HMI10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200717 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenkc40b2952004-03-13 23:29:43 +0000718
wdenk7ebf7442002-11-02 23:17:16 +0000719IAD210_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200720 @$(MKCONFIG) $(@:_config=) ppc mpc8xx IAD210 siemens
wdenk7ebf7442002-11-02 23:17:16 +0000721
722xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
723
724ICU862_100MHz_config \
725ICU862_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 _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200729 { echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000730 echo "... with 100MHz system clock" ; \
731 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200732 @$(MKCONFIG) -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
wdenk7ebf7442002-11-02 23:17:16 +0000733
734IP860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200735 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ip860
wdenk7ebf7442002-11-02 23:17:16 +0000736
737IVML24_256_config \
738IVML24_128_config \
739IVML24_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200740 @mkdir -p $(obj)include
741 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000742 @[ -z "$(findstring IVML24_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200743 { echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000744 }
745 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200746 { echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000747 }
748 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200749 { echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000750 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200751 @$(MKCONFIG) -a IVML24 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000752
753IVMS8_256_config \
754IVMS8_128_config \
755IVMS8_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200756 @mkdir -p $(obj)include
757 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000758 @[ -z "$(findstring IVMS8_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200759 { echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000760 }
761 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200762 { echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000763 }
764 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200765 { echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000766 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200767 @$(MKCONFIG) -a IVMS8 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000768
wdenk56f94be2002-11-05 16:35:14 +0000769KUP4K_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200770 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4k kup
wdenk0608e042004-03-25 19:29:38 +0000771
772KUP4X_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200773 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000774
wdenk7ebf7442002-11-02 23:17:16 +0000775LANTEC_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200776 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lantec
wdenk7ebf7442002-11-02 23:17:16 +0000777
778lwmon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200779 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lwmon
wdenk7ebf7442002-11-02 23:17:16 +0000780
781MBX_config \
782MBX860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200783 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mbx8xx
wdenk7ebf7442002-11-02 23:17:16 +0000784
785MHPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200786 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mhpc eltec
wdenk7ebf7442002-11-02 23:17:16 +0000787
788MVS1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200789 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mvs1
wdenk7ebf7442002-11-02 23:17:16 +0000790
wdenk993cad92003-06-26 22:04:09 +0000791xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
792
793NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000794NETVIA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200795 @mkdir -p $(obj)include
796 @ >$(obj)include/config.h
wdenk993cad92003-06-26 22:04:09 +0000797 @[ -z "$(findstring NETVIA_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200798 { echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000799 echo "... Version 1" ; \
800 }
801 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200802 { echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000803 echo "... Version 2" ; \
804 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200805 @$(MKCONFIG) -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000806
wdenkc26e4542004-04-18 10:13:26 +0000807xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
808
809NETPHONE_V2_config \
wdenk04a85b32004-04-15 18:22:41 +0000810NETPHONE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200811 @mkdir -p $(obj)include
812 @ >$(obj)include/config.h
wdenkc26e4542004-04-18 10:13:26 +0000813 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200814 { echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000815 }
816 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200817 { echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000818 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200819 @$(MKCONFIG) -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk04a85b32004-04-15 18:22:41 +0000820
wdenk79fa88f2004-06-07 23:46:25 +0000821xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk04a85b32004-04-15 18:22:41 +0000822
wdenk79fa88f2004-06-07 23:46:25 +0000823NETTA_ISDN_6412_SWAPHOOK_config \
824NETTA_ISDN_SWAPHOOK_config \
825NETTA_6412_SWAPHOOK_config \
826NETTA_SWAPHOOK_config \
827NETTA_ISDN_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000828NETTA_ISDN_config \
wdenk79fa88f2004-06-07 23:46:25 +0000829NETTA_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000830NETTA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200831 @mkdir -p $(obj)include
832 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000833 @[ -z "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200834 { echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \
wdenk04a85b32004-04-15 18:22:41 +0000835 }
wdenk79fa88f2004-06-07 23:46:25 +0000836 @[ -n "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200837 { echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000838 }
839 @[ -z "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200840 { echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000841 }
842 @[ -n "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200843 { echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000844 }
845 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200846 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000847 }
848 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200849 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000850 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200851 @$(MKCONFIG) -a $(call xtract_NETTA,$@) ppc mpc8xx netta
wdenk04a85b32004-04-15 18:22:41 +0000852
wdenk79fa88f2004-06-07 23:46:25 +0000853xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
854
855NETTA2_V2_config \
856NETTA2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200857 @mkdir -p $(obj)include
858 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000859 @[ -z "$(findstring NETTA2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200860 { echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000861 }
862 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200863 { echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000864 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200865 @$(MKCONFIG) -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
wdenk79fa88f2004-06-07 23:46:25 +0000866
dzu@denx.dea367d422006-04-19 11:52:46 +0200867NC650_Rev1_config \
868NC650_Rev2_config \
869CP850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200870 @mkdir -p $(obj)include
871 @ >$(obj)include/config.h
dzu@denx.dea367d422006-04-19 11:52:46 +0200872 @[ -z "$(findstring CP850,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200873 { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \
874 echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200875 }
876 @[ -z "$(findstring Rev1,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200877 { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200878 }
879 @[ -z "$(findstring Rev2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200880 { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200881 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200882 @$(MKCONFIG) -a NC650 ppc mpc8xx nc650
wdenk7ca202f2004-08-28 22:45:57 +0000883
wdenk7ebf7442002-11-02 23:17:16 +0000884NX823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200885 @$(MKCONFIG) $(@:_config=) ppc mpc8xx nx823
wdenk7ebf7442002-11-02 23:17:16 +0000886
887pcu_e_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200888 @$(MKCONFIG) $(@:_config=) ppc mpc8xx pcu_e siemens
wdenk7ebf7442002-11-02 23:17:16 +0000889
wdenk3bbc8992003-12-07 22:27:15 +0000890QS850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200891 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000892
893QS823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200894 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000895
896QS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200897 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs860t snmc
wdenk3bbc8992003-12-07 22:27:15 +0000898
wdenkda93ed82004-09-29 11:02:56 +0000899quantum_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200900 @$(MKCONFIG) $(@:_config=) ppc mpc8xx quantum
wdenkda93ed82004-09-29 11:02:56 +0000901
wdenk7ebf7442002-11-02 23:17:16 +0000902R360MPI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200903 @$(MKCONFIG) $(@:_config=) ppc mpc8xx r360mpi
wdenk7ebf7442002-11-02 23:17:16 +0000904
wdenk682011f2003-06-03 23:54:09 +0000905RBC823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200906 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rbc823
wdenk682011f2003-06-03 23:54:09 +0000907
wdenk7ebf7442002-11-02 23:17:16 +0000908RPXClassic_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200909 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXClassic
wdenk7ebf7442002-11-02 23:17:16 +0000910
911RPXlite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200912 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXlite
wdenk7ebf7442002-11-02 23:17:16 +0000913
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100914RPXlite_DW_64_config \
915RPXlite_DW_LCD_config \
916RPXlite_DW_64_LCD_config \
wdenke63c8ee2004-06-09 21:04:48 +0000917RPXlite_DW_NVRAM_config \
918RPXlite_DW_NVRAM_64_config \
919RPXlite_DW_NVRAM_LCD_config \
920RPXlite_DW_NVRAM_64_LCD_config \
921RPXlite_DW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200922 @mkdir -p $(obj)include
923 @ >$(obj)include/config.h
wdenke63c8ee2004-06-09 21:04:48 +0000924 @[ -z "$(findstring _64,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200925 { echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000926 echo "... with 64MHz system clock ..."; \
927 }
928 @[ -z "$(findstring _LCD,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100929 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200930 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000931 echo "... with LCD display ..."; \
932 }
933 @[ -z "$(findstring _NVRAM,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100934 { echo "#define CFG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000935 echo "... with ENV in NVRAM ..."; \
936 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200937 @$(MKCONFIG) -a RPXlite_DW ppc mpc8xx RPXlite_dw
wdenke63c8ee2004-06-09 21:04:48 +0000938
wdenk73a8b272003-06-05 19:27:42 +0000939rmu_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200940 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rmu
wdenk73a8b272003-06-05 19:27:42 +0000941
wdenk7ebf7442002-11-02 23:17:16 +0000942RRvision_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200943 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000944
945RRvision_LCD_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200946 @mkdir -p $(obj)include
947 @echo "#define CONFIG_LCD" >$(obj)include/config.h
948 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
949 @$(MKCONFIG) -a RRvision ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000950
951SM850_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200952 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000953
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200954spc1920_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200955 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spc1920
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200956
wdenk7ebf7442002-11-02 23:17:16 +0000957SPD823TS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200958 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spd8xx
wdenk7ebf7442002-11-02 23:17:16 +0000959
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200960stxxtc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200961 @$(MKCONFIG) $(@:_config=) ppc mpc8xx stxxtc
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200962
wdenkdc7c9a12003-03-26 06:55:25 +0000963svm_sc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200964 @$(MKCONFIG) $(@:_config=) ppc mpc8xx svm_sc8xx
wdenkdc7c9a12003-03-26 06:55:25 +0000965
wdenk7ebf7442002-11-02 23:17:16 +0000966SXNI855T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200967 @$(MKCONFIG) $(@:_config=) ppc mpc8xx sixnet
wdenk7ebf7442002-11-02 23:17:16 +0000968
wdenkdb2f721f2003-03-06 00:58:30 +0000969# EMK MPC8xx based modules
970TOP860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200971 @$(MKCONFIG) $(@:_config=) ppc mpc8xx top860 emk
wdenkdb2f721f2003-03-06 00:58:30 +0000972
wdenk7ebf7442002-11-02 23:17:16 +0000973# Play some tricks for configuration selection
wdenke9132ea2004-04-24 23:23:30 +0000974# Only 855 and 860 boards may come with FEC
975# and only 823 boards may have LCD support
976xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +0000977
978FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000979FPS860L_config \
wdenkf12e5682003-07-07 20:07:54 +0000980NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +0000981TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000982TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +0000983TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000984TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000985TQM860L_config \
wdenkd126bfb2003-04-10 11:18:18 +0000986TQM862L_config \
wdenkae3af052003-08-07 22:18:11 +0000987TQM823M_config \
wdenkae3af052003-08-07 22:18:11 +0000988TQM850M_config \
wdenkf12e5682003-07-07 20:07:54 +0000989TQM855M_config \
wdenkf12e5682003-07-07 20:07:54 +0000990TQM860M_config \
wdenkf12e5682003-07-07 20:07:54 +0000991TQM862M_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200992TQM866M_config \
Markus Klotzbuecher090eb732006-07-12 15:26:01 +0200993TQM885D_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200994virtlab2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200995 @mkdir -p $(obj)include
996 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000997 @[ -z "$(findstring _LCD,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200998 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
999 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001000 echo "... with LCD display" ; \
1001 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001002 @$(MKCONFIG) -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +00001003
1004TTTech_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001005 @mkdir -p $(obj)include
1006 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1007 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
1008 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +00001009
wdenkec0aee72004-12-19 09:58:11 +00001010uc100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001011 @$(MKCONFIG) $(@:_config=) ppc mpc8xx uc100
wdenkf7d15722004-12-18 22:35:43 +00001012
wdenk608c9142003-01-13 23:54:46 +00001013v37_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001014 @mkdir -p $(obj)include
1015 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1016 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h
1017 @$(MKCONFIG) $(@:_config=) ppc mpc8xx v37
wdenk608c9142003-01-13 23:54:46 +00001018
dzu91e940d2003-09-25 22:32:40 +00001019wtk_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001020 @mkdir -p $(obj)include
1021 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1022 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h
1023 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
dzu91e940d2003-09-25 22:32:40 +00001024
wdenk7ebf7442002-11-02 23:17:16 +00001025#########################################################################
1026## PPC4xx Systems
1027#########################################################################
wdenke55ca7e2004-07-01 21:40:08 +00001028xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001029
Stefan Roese16c0cc12007-03-21 13:39:57 +01001030acadia_config: unconfig
1031 @$(MKCONFIG) $(@:_config=) ppc ppc4xx acadia amcc
1032
Stefan Roesec440bfe2007-06-06 11:42:13 +02001033acadia_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001034 @mkdir -p $(obj)include $(obj)board/amcc/acadia
1035 @mkdir -p $(obj)nand_spl/board/amcc/acadia
Stefan Roesec440bfe2007-06-06 11:42:13 +02001036 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
1037 @$(MKCONFIG) -n $@ -a acadia ppc ppc4xx acadia amcc
1038 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/acadia/config.tmp
1039 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1040
wdenk7ebf7442002-11-02 23:17:16 +00001041ADCIOP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001042 @$(MKCONFIG) $(@:_config=) ppc ppc4xx adciop esd
wdenk7ebf7442002-11-02 23:17:16 +00001043
Stefan Roese899620c2006-08-15 14:22:35 +02001044alpr_config: unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -06001045 @$(MKCONFIG) $(@:_config=) ppc ppc4xx alpr prodrive
Stefan Roese899620c2006-08-15 14:22:35 +02001046
Wolfgang Denk7521af12005-10-09 01:04:33 +02001047AP1000_config:unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001048 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ap1000 amirix
Wolfgang Denk7521af12005-10-09 01:04:33 +02001049
stroesec419d1d2004-12-16 18:44:40 +00001050APC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001051 @$(MKCONFIG) $(@:_config=) ppc ppc4xx apc405 esd
stroesec419d1d2004-12-16 18:44:40 +00001052
wdenk7ebf7442002-11-02 23:17:16 +00001053AR405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001054 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ar405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001055
stroese549826e2003-05-23 11:41:44 +00001056ASH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001057 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ash405 esd
stroese549826e2003-05-23 11:41:44 +00001058
Stefan Roese8a316c92005-08-01 16:49:12 +02001059bamboo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001060 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bamboo amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001061
Stefan Roesecf959c72007-06-01 15:27:11 +02001062bamboo_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001063 @mkdir -p $(obj)include $(obj)board/amcc/bamboo
1064 @mkdir -p $(obj)nand_spl/board/amcc/bamboo
Stefan Roesecf959c72007-06-01 15:27:11 +02001065 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roesef3679aa2007-06-01 16:15:34 +02001066 @$(MKCONFIG) -n $@ -a bamboo ppc ppc4xx bamboo amcc
Stefan Roesecf959c72007-06-01 15:27:11 +02001067 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/bamboo/config.tmp
1068 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1069
Stefan Roese8a316c92005-08-01 16:49:12 +02001070bubinga_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001071 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bubinga amcc
stroese549826e2003-05-23 11:41:44 +00001072
wdenk7ebf7442002-11-02 23:17:16 +00001073CANBT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001074 @$(MKCONFIG) $(@:_config=) ppc ppc4xx canbt esd
wdenk7ebf7442002-11-02 23:17:16 +00001075
wdenk1d6f9722004-09-09 17:44:35 +00001076CATcenter_config \
1077CATcenter_25_config \
1078CATcenter_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001079 @mkdir -p $(obj)include
1080 @ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h
1081 @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001082 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001083 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001084 echo "SysClk = 25MHz" ; \
1085 }
1086 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001087 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001088 echo "SysClk = 33MHz" ; \
1089 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001090 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk10767cc2004-05-13 13:23:58 +00001091
Stefan Roese7644f162005-09-22 09:16:57 +02001092CPCI2DP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001093 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd
Stefan Roese7644f162005-09-22 09:16:57 +02001094
stroese549826e2003-05-23 11:41:44 +00001095CPCI405_config \
1096CPCI4052_config \
stroesec419d1d2004-12-16 18:44:40 +00001097CPCI405DT_config \
stroese549826e2003-05-23 11:41:44 +00001098CPCI405AB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001099 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci405 esd
1100 @echo "BOARD_REVISION = $(@:_config=)" >> $(obj)include/config.mk
wdenk7ebf7442002-11-02 23:17:16 +00001101
1102CPCI440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001103 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci440 esd
wdenk7ebf7442002-11-02 23:17:16 +00001104
1105CPCIISER4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001106 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpciiser4 esd
wdenk7ebf7442002-11-02 23:17:16 +00001107
wdenkdb01a2e2004-04-15 23:14:49 +00001108CRAYL1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001109 @$(MKCONFIG) $(@:_config=) ppc ppc4xx L1 cray
wdenk7ebf7442002-11-02 23:17:16 +00001110
wdenkcd0a9de2004-02-23 20:48:38 +00001111csb272_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001112 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb272
wdenkcd0a9de2004-02-23 20:48:38 +00001113
wdenkaa245092004-06-09 12:47:02 +00001114csb472_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001115 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb472
wdenkaa245092004-06-09 12:47:02 +00001116
wdenk7ebf7442002-11-02 23:17:16 +00001117DASA_SIM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001118 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dasa_sim esd
wdenk7ebf7442002-11-02 23:17:16 +00001119
stroese72cd5aa2003-09-12 08:57:15 +00001120DP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001121 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dp405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001122
wdenk7ebf7442002-11-02 23:17:16 +00001123DU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001124 @$(MKCONFIG) $(@:_config=) ppc ppc4xx du405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001125
Stefan Roese8a316c92005-08-01 16:49:12 +02001126ebony_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001127 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +00001128
wdenkdb01a2e2004-04-15 23:14:49 +00001129ERIC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001130 @$(MKCONFIG) $(@:_config=) ppc ppc4xx eric
wdenk7ebf7442002-11-02 23:17:16 +00001131
wdenkdb01a2e2004-04-15 23:14:49 +00001132EXBITGEN_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001133 @$(MKCONFIG) $(@:_config=) ppc ppc4xx exbitgen
wdenkd1cbe852003-06-28 17:24:46 +00001134
stroesec419d1d2004-12-16 18:44:40 +00001135G2000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001136 @$(MKCONFIG) $(@:_config=) ppc ppc4xx g2000
stroesec419d1d2004-12-16 18:44:40 +00001137
1138HH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001139 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001140
stroese72cd5aa2003-09-12 08:57:15 +00001141HUB405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001142 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001143
wdenkdb01a2e2004-04-15 23:14:49 +00001144JSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001145 @$(MKCONFIG) $(@:_config=) ppc ppc4xx jse
wdenkdb01a2e2004-04-15 23:14:49 +00001146
Stefan Roeseb79316f2005-08-15 12:31:23 +02001147KAREF_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001148 @$(MKCONFIG) $(@:_config=) ppc ppc4xx karef sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001149
Stefan Roese4745aca2007-02-20 10:57:08 +01001150katmai_config: unconfig
1151 @$(MKCONFIG) $(@:_config=) ppc ppc4xx katmai amcc
1152
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001153luan_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001154 @$(MKCONFIG) $(@:_config=) ppc ppc4xx luan amcc
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001155
Stefan Roeseb765ffb2007-06-15 08:18:01 +02001156lwmon5_config: unconfig
1157 @$(MKCONFIG) $(@:_config=) ppc ppc4xx lwmon5
1158
Stefan Roeseb79316f2005-08-15 12:31:23 +02001159METROBOX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001160 @$(MKCONFIG) $(@:_config=) ppc ppc4xx metrobox sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001161
wdenkdb01a2e2004-04-15 23:14:49 +00001162MIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001163 @$(MKCONFIG) $(@:_config=) ppc ppc4xx mip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001164
wdenkdb01a2e2004-04-15 23:14:49 +00001165MIP405T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001166 @mkdir -p $(obj)include
1167 @echo "#define CONFIG_MIP405T" >$(obj)include/config.h
wdenkf3e0de62003-06-04 15:05:30 +00001168 @echo "Enable subset config for MIP405T"
Marian Balakowiczf9328632006-09-01 19:49:50 +02001169 @$(MKCONFIG) -a MIP405 ppc ppc4xx mip405 mpl
wdenkf3e0de62003-06-04 15:05:30 +00001170
wdenkdb01a2e2004-04-15 23:14:49 +00001171ML2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001172 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml2
wdenk7ebf7442002-11-02 23:17:16 +00001173
wdenkdb01a2e2004-04-15 23:14:49 +00001174ml300_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001175 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml300 xilinx
wdenk028ab6b2004-02-23 23:54:43 +00001176
Stefan Roese8a316c92005-08-01 16:49:12 +02001177ocotea_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001178 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocotea amcc
wdenk0e6d7982004-03-14 00:07:33 +00001179
wdenk7ebf7442002-11-02 23:17:16 +00001180OCRTC_config \
1181ORSG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001182 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocrtc esd
wdenk7ebf7442002-11-02 23:17:16 +00001183
Stefan Roese5568e612005-11-22 13:20:42 +01001184p3p440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001185 @$(MKCONFIG) $(@:_config=) ppc ppc4xx p3p440 prodrive
Stefan Roese5568e612005-11-22 13:20:42 +01001186
wdenk7ebf7442002-11-02 23:17:16 +00001187PCI405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001188 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pci405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001189
Stefan Roesea4c8d132006-06-02 16:18:04 +02001190pcs440ep_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001191 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pcs440ep
Stefan Roesea4c8d132006-06-02 16:18:04 +02001192
wdenkdb01a2e2004-04-15 23:14:49 +00001193PIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001194 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001195
stroese72cd5aa2003-09-12 08:57:15 +00001196PLU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001197 @$(MKCONFIG) $(@:_config=) ppc ppc4xx plu405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001198
stroese549826e2003-05-23 11:41:44 +00001199PMC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001200 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pmc405 esd
stroese549826e2003-05-23 11:41:44 +00001201
wdenk281e00a2004-08-01 22:48:16 +00001202PPChameleonEVB_config \
wdenke55ca7e2004-07-01 21:40:08 +00001203PPChameleonEVB_BA_25_config \
1204PPChameleonEVB_ME_25_config \
1205PPChameleonEVB_HI_25_config \
1206PPChameleonEVB_BA_33_config \
1207PPChameleonEVB_ME_33_config \
1208PPChameleonEVB_HI_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001209 @mkdir -p $(obj)include
1210 @ >$(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001211 @[ -z "$(findstring EVB_BA,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001212 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001213 echo "... BASIC model" ; \
1214 }
wdenk1d6f9722004-09-09 17:44:35 +00001215 @[ -z "$(findstring EVB_ME,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001216 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001217 echo "... MEDIUM model" ; \
1218 }
wdenk1d6f9722004-09-09 17:44:35 +00001219 @[ -z "$(findstring EVB_HI,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001220 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001221 echo "... HIGH-END model" ; \
1222 }
wdenke55ca7e2004-07-01 21:40:08 +00001223 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001224 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001225 echo "SysClk = 25MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001226 }
1227 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001228 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001229 echo "SysClk = 33MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001230 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001231 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk12f34242003-09-02 22:48:03 +00001232
wdenk652a10c2005-01-09 23:48:14 +00001233sbc405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001234 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sbc405
wdenk652a10c2005-01-09 23:48:14 +00001235
Stefan Roese430f1b02007-03-28 15:03:16 +02001236sequoia_config \
1237rainier_config: unconfig
1238 @mkdir -p $(obj)include
1239 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1240 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
1241 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Stefan Roese887e2ec2006-09-07 11:51:23 +02001242
Stefan Roese430f1b02007-03-28 15:03:16 +02001243sequoia_nand_config \
1244rainier_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001245 @mkdir -p $(obj)include $(obj)board/amcc/sequoia
1246 @mkdir -p $(obj)nand_spl/board/amcc/sequoia
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001247 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roese430f1b02007-03-28 15:03:16 +02001248 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1249 tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h
1250 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001251 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1252 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
stroese72cd5aa2003-09-12 08:57:15 +00001253
Wolfgang Denk6d3e0102007-01-16 18:30:50 +01001254sc3_config:unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -06001255 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sc3
Heiko Schocherca43ba12007-01-11 15:44:44 +01001256
Stefan Roese5fb692c2007-01-18 10:25:34 +01001257taishan_config: unconfig
1258 @$(MKCONFIG) $(@:_config=) ppc ppc4xx taishan amcc
1259
wdenk7ebf7442002-11-02 23:17:16 +00001260VOH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001261 @$(MKCONFIG) $(@:_config=) ppc ppc4xx voh405 esd
wdenk3bac3512003-03-12 10:41:04 +00001262
stroesec419d1d2004-12-16 18:44:40 +00001263VOM405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001264 @$(MKCONFIG) $(@:_config=) ppc ppc4xx vom405 esd
stroesec419d1d2004-12-16 18:44:40 +00001265
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001266CMS700_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001267 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001268
wdenk7ebf7442002-11-02 23:17:16 +00001269W7OLMC_config \
1270W7OLMG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001271 @$(MKCONFIG) $(@:_config=) ppc ppc4xx w7o
wdenk7ebf7442002-11-02 23:17:16 +00001272
Stefan Roese430f1b02007-03-28 15:03:16 +02001273# Walnut & Sycamore images are identical (recognized via PVR)
1274walnut_config \
1275sycamore_config: unconfig
1276 @$(MKCONFIG) -n $@ -a walnut ppc ppc4xx walnut amcc
wdenk7ebf7442002-11-02 23:17:16 +00001277
stroesec419d1d2004-12-16 18:44:40 +00001278WUH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001279 @$(MKCONFIG) $(@:_config=) ppc ppc4xx wuh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001280
wdenkdb01a2e2004-04-15 23:14:49 +00001281XPEDITE1K_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001282 @$(MKCONFIG) $(@:_config=) ppc ppc4xx xpedite1k
wdenkba56f622004-02-06 23:19:44 +00001283
Stefan Roese430f1b02007-03-28 15:03:16 +02001284yosemite_config \
1285yellowstone_config: unconfig
Stefan Roese700200c2007-01-30 17:04:19 +01001286 @mkdir -p $(obj)include
Stefan Roese430f1b02007-03-28 15:03:16 +02001287 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1288 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
Stefan Roese2aa54f62007-02-02 12:42:08 +01001289 @$(MKCONFIG) -n $@ -a yosemite ppc ppc4xx yosemite amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001290
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001291yucca_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001292 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yucca amcc
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001293
wdenk7ebf7442002-11-02 23:17:16 +00001294#########################################################################
wdenk983fda82004-10-28 00:09:35 +00001295## MPC8220 Systems
1296#########################################################################
Wolfgang Denkdc17fb62005-08-03 22:32:02 +02001297
1298Alaska8220_config \
1299Yukon8220_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001300 @$(MKCONFIG) $(@:_config=) ppc mpc8220 alaska
wdenk983fda82004-10-28 00:09:35 +00001301
wdenk12b43d52005-04-05 21:57:18 +00001302sorcery_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001303 @$(MKCONFIG) $(@:_config=) ppc mpc8220 sorcery
wdenk12b43d52005-04-05 21:57:18 +00001304
wdenk983fda82004-10-28 00:09:35 +00001305#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001306## MPC824x Systems
1307#########################################################################
wdenkefa329c2004-03-23 20:18:25 +00001308xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001309
wdenk03329902003-06-20 22:36:30 +00001310A3000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001311 @$(MKCONFIG) $(@:_config=) ppc mpc824x a3000
wdenk03329902003-06-20 22:36:30 +00001312
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001313barco_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001314 @$(MKCONFIG) $(@:_config=) ppc mpc824x barco
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001315
wdenk7ebf7442002-11-02 23:17:16 +00001316BMW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001317 @$(MKCONFIG) $(@:_config=) ppc mpc824x bmw
wdenk7ebf7442002-11-02 23:17:16 +00001318
wdenk3bac3512003-03-12 10:41:04 +00001319CPC45_config \
1320CPC45_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001321 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc824x cpc45
1322 @cd $(obj)include ; \
wdenk3bac3512003-03-12 10:41:04 +00001323 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1324 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1325 echo "... booting from 8-bit flash" ; \
1326 else \
1327 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1328 echo "... booting from 64-bit flash" ; \
1329 fi; \
1330 echo "export CONFIG_BOOT_ROM" >> config.mk;
1331
wdenk7ebf7442002-11-02 23:17:16 +00001332CU824_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001333 @$(MKCONFIG) $(@:_config=) ppc mpc824x cu824
wdenk7ebf7442002-11-02 23:17:16 +00001334
wdenk7abf0c52004-04-18 21:45:42 +00001335debris_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001336 @$(MKCONFIG) $(@:_config=) ppc mpc824x debris etin
wdenk7abf0c52004-04-18 21:45:42 +00001337
wdenk80885a92004-02-26 23:46:20 +00001338eXalion_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001339 @$(MKCONFIG) $(@:_config=) ppc mpc824x eXalion
wdenk80885a92004-02-26 23:46:20 +00001340
wdenk756f5862005-04-03 15:51:42 +00001341HIDDEN_DRAGON_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001342 @$(MKCONFIG) $(@:_config=) ppc mpc824x hidden_dragon
wdenk756f5862005-04-03 15:51:42 +00001343
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001344kvme080_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001345 @$(MKCONFIG) $(@:_config=) ppc mpc824x kvme080 etin
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001346
wdenk7ebf7442002-11-02 23:17:16 +00001347MOUSSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001348 @$(MKCONFIG) $(@:_config=) ppc mpc824x mousse
wdenk7ebf7442002-11-02 23:17:16 +00001349
1350MUSENKI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001351 @$(MKCONFIG) $(@:_config=) ppc mpc824x musenki
wdenk7ebf7442002-11-02 23:17:16 +00001352
wdenkb4676a22003-12-07 19:24:00 +00001353MVBLUE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001354 @$(MKCONFIG) $(@:_config=) ppc mpc824x mvblue
wdenkb4676a22003-12-07 19:24:00 +00001355
wdenk7ebf7442002-11-02 23:17:16 +00001356OXC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001357 @$(MKCONFIG) $(@:_config=) ppc mpc824x oxc
wdenk7ebf7442002-11-02 23:17:16 +00001358
1359PN62_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001360 @$(MKCONFIG) $(@:_config=) ppc mpc824x pn62
wdenk7ebf7442002-11-02 23:17:16 +00001361
1362Sandpoint8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001363 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001364
1365Sandpoint8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001366 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001367
wdenk466b7412004-07-10 22:35:59 +00001368sbc8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001369 @$(MKCONFIG) $(@:_config=) ppc mpc824x sbc8240
wdenk466b7412004-07-10 22:35:59 +00001370
wdenkd1cbe852003-06-28 17:24:46 +00001371SL8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001372 @$(MKCONFIG) $(@:_config=) ppc mpc824x sl8245
wdenkd1cbe852003-06-28 17:24:46 +00001373
wdenk7ebf7442002-11-02 23:17:16 +00001374utx8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001375 @$(MKCONFIG) $(@:_config=) ppc mpc824x utx8245
wdenk7ebf7442002-11-02 23:17:16 +00001376
1377#########################################################################
1378## MPC8260 Systems
1379#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001380
wdenk54387ac2003-10-08 22:45:44 +00001381atc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001382 @$(MKCONFIG) $(@:_config=) ppc mpc8260 atc
wdenk54387ac2003-10-08 22:45:44 +00001383
wdenk7ebf7442002-11-02 23:17:16 +00001384cogent_mpc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001385 @$(MKCONFIG) $(@:_config=) ppc mpc8260 cogent
wdenk7ebf7442002-11-02 23:17:16 +00001386
1387CPU86_config \
1388CPU86_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001389 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu86
1390 @cd $(obj)include ; \
wdenk7ebf7442002-11-02 23:17:16 +00001391 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1392 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1393 echo "... booting from 8-bit flash" ; \
1394 else \
1395 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1396 echo "... booting from 64-bit flash" ; \
1397 fi; \
1398 echo "export CONFIG_BOOT_ROM" >> config.mk;
1399
wdenk384cc682005-04-03 22:35:21 +00001400CPU87_config \
1401CPU87_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001402 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu87
1403 @cd $(obj)include ; \
wdenk384cc682005-04-03 22:35:21 +00001404 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1405 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1406 echo "... booting from 8-bit flash" ; \
1407 else \
1408 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1409 echo "... booting from 64-bit flash" ; \
1410 fi; \
1411 echo "export CONFIG_BOOT_ROM" >> config.mk;
1412
Wolfgang Denkf901a832005-08-06 01:42:58 +02001413ep8248_config \
1414ep8248E_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001415 @$(MKCONFIG) ep8248 ppc mpc8260 ep8248
Wolfgang Denkf901a832005-08-06 01:42:58 +02001416
wdenk7ebf7442002-11-02 23:17:16 +00001417ep8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001418 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep8260
wdenk7ebf7442002-11-02 23:17:16 +00001419
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001420ep82xxm_config: unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -06001421 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep82xxm
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001422
wdenk7ebf7442002-11-02 23:17:16 +00001423gw8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001424 @$(MKCONFIG) $(@:_config=) ppc mpc8260 gw8260
wdenk7ebf7442002-11-02 23:17:16 +00001425
1426hymod_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001427 @$(MKCONFIG) $(@:_config=) ppc mpc8260 hymod
wdenk7ebf7442002-11-02 23:17:16 +00001428
wdenk9dd41a72005-05-12 22:48:09 +00001429IDS8247_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001430 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ids8247
wdenk9dd41a72005-05-12 22:48:09 +00001431
wdenk7ebf7442002-11-02 23:17:16 +00001432IPHASE4539_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001433 @$(MKCONFIG) $(@:_config=) ppc mpc8260 iphase4539
wdenk7ebf7442002-11-02 23:17:16 +00001434
wdenkc3c7f862004-06-09 14:47:54 +00001435ISPAN_config \
1436ISPAN_REVB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001437 @mkdir -p $(obj)include
wdenkc3c7f862004-06-09 14:47:54 +00001438 @if [ "$(findstring _REVB_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001439 echo "#define CFG_REV_B" > $(obj)include/config.h ; \
wdenkc3c7f862004-06-09 14:47:54 +00001440 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001441 @$(MKCONFIG) -a ISPAN ppc mpc8260 ispan
wdenkc3c7f862004-06-09 14:47:54 +00001442
wdenk04a85b32004-04-15 18:22:41 +00001443MPC8260ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001444MPC8260ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001445MPC8260ADS_33MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001446MPC8260ADS_33MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001447MPC8260ADS_40MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001448MPC8260ADS_40MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001449MPC8272ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001450MPC8272ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001451PQ2FADS_config \
wdenk901787d2005-04-03 23:22:21 +00001452PQ2FADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001453PQ2FADS-VR_config \
wdenk901787d2005-04-03 23:22:21 +00001454PQ2FADS-VR_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001455PQ2FADS-ZU_config \
wdenk901787d2005-04-03 23:22:21 +00001456PQ2FADS-ZU_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001457PQ2FADS-ZU_66MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001458PQ2FADS-ZU_66MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001459 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001460 @mkdir -p $(obj)include
1461 @mkdir -p $(obj)board/mpc8260ads
wdenk04a85b32004-04-15 18:22:41 +00001462 $(if $(findstring PQ2FADS,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001463 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > $(obj)include/config.h, \
1464 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h)
wdenk04a85b32004-04-15 18:22:41 +00001465 $(if $(findstring MHz,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001466 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \
wdenk04a85b32004-04-15 18:22:41 +00001467 $(if $(findstring VR,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001468 @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h))
wdenk901787d2005-04-03 23:22:21 +00001469 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001470 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/mpc8260ads/config.tmp ; \
wdenk901787d2005-04-03 23:22:21 +00001471 echo "... with lowboot configuration" ; \
1472 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001473 @$(MKCONFIG) -a MPC8260ADS ppc mpc8260 mpc8260ads
wdenk7ebf7442002-11-02 23:17:16 +00001474
wdenkdb2f721f2003-03-06 00:58:30 +00001475MPC8266ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001476 @$(MKCONFIG) $(@:_config=) ppc mpc8260 mpc8266ads
wdenkdb2f721f2003-03-06 00:58:30 +00001477
wdenkefa329c2004-03-23 20:18:25 +00001478# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk10f67012003-03-25 18:06:06 +00001479PM825_config \
wdenkefa329c2004-03-23 20:18:25 +00001480PM825_ROMBOOT_config \
1481PM825_BIGFLASH_config \
1482PM825_ROMBOOT_BIGFLASH_config \
wdenk7ebf7442002-11-02 23:17:16 +00001483PM826_config \
wdenkefa329c2004-03-23 20:18:25 +00001484PM826_ROMBOOT_config \
1485PM826_BIGFLASH_config \
1486PM826_ROMBOOT_BIGFLASH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001487 @mkdir -p $(obj)include
1488 @mkdir -p $(obj)board/pm826
wdenkefa329c2004-03-23 20:18:25 +00001489 @if [ "$(findstring PM825_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001490 echo "#define CONFIG_PCI" >$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001491 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 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1499 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001500 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001501 fi; \
1502 else \
wdenk7ebf7442002-11-02 23:17:16 +00001503 echo "... booting from 64-bit flash" ; \
wdenkefa329c2004-03-23 20:18:25 +00001504 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1505 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001506 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
1507 echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001508 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001509 echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001510 fi; \
1511 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001512 @$(MKCONFIG) -a PM826 ppc mpc8260 pm826
wdenkefa329c2004-03-23 20:18:25 +00001513
1514PM828_config \
1515PM828_PCI_config \
1516PM828_ROMBOOT_config \
1517PM828_ROMBOOT_PCI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001518 @mkdir -p $(obj)include
1519 @mkdir -p $(obj)board/pm826
Marian Balakowicz17076262006-04-05 20:37:11 +02001520 @if [ "$(findstring _PCI_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001521 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001522 echo "... with PCI enabled" ; \
1523 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001524 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001525 fi
1526 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1527 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001528 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1529 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001530 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001531 @$(MKCONFIG) -a PM828 ppc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +00001532
1533ppmc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001534 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ppmc8260
wdenk7ebf7442002-11-02 23:17:16 +00001535
wdenk8b0bfc62005-04-03 23:11:38 +00001536Rattler8248_config \
1537Rattler_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001538 @mkdir -p $(obj)include
wdenk8b0bfc62005-04-03 23:11:38 +00001539 $(if $(findstring 8248,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001540 @echo "#define CONFIG_MPC8248" > $(obj)include/config.h)
1541 @$(MKCONFIG) -a Rattler ppc mpc8260 rattler
wdenk8b0bfc62005-04-03 23:11:38 +00001542
wdenk7ebf7442002-11-02 23:17:16 +00001543RPXsuper_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001544 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rpxsuper
wdenk7ebf7442002-11-02 23:17:16 +00001545
1546rsdproto_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001547 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rsdproto
wdenk7ebf7442002-11-02 23:17:16 +00001548
1549sacsng_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001550 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sacsng
wdenk7ebf7442002-11-02 23:17:16 +00001551
1552sbc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001553 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sbc8260
wdenk7ebf7442002-11-02 23:17:16 +00001554
1555SCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001556 @$(MKCONFIG) $(@:_config=) ppc mpc8260 SCM siemens
wdenk7ebf7442002-11-02 23:17:16 +00001557
wdenk27b207f2003-07-24 23:38:38 +00001558TQM8255_AA_config \
1559TQM8260_AA_config \
1560TQM8260_AB_config \
1561TQM8260_AC_config \
1562TQM8260_AD_config \
1563TQM8260_AE_config \
1564TQM8260_AF_config \
1565TQM8260_AG_config \
1566TQM8260_AH_config \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001567TQM8260_AI_config \
wdenk27b207f2003-07-24 23:38:38 +00001568TQM8265_AA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001569 @mkdir -p $(obj)include
wdenk27b207f2003-07-24 23:38:38 +00001570 @case "$@" in \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001571 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
1572 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
1573 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1574 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1575 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1576 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
1577 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1578 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
1579 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
1580 TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1581 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
wdenk27b207f2003-07-24 23:38:38 +00001582 esac; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001583 >$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001584 if [ "$${CTYPE}" != "MPC8260" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001585 echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001586 fi; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001587 echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001588 echo "... with $${CFREQ}MHz system clock" ; \
1589 if [ "$${CACHE}" == "yes" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001590 echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001591 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001592 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001593 echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001594 echo "... without L2 Cache support" ; \
wdenk27b207f2003-07-24 23:38:38 +00001595 fi; \
1596 if [ "$${BMODE}" == "60x" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001597 echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001598 echo "... with 60x Bus Mode" ; \
1599 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001600 echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001601 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001602 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001603 @$(MKCONFIG) -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +00001604
Heiko Schocherfa230442006-12-21 17:17:02 +01001605TQM8272_config: unconfig
1606 @$(MKCONFIG) -a TQM8272 ppc mpc8260 tqm8272
1607
wdenkba91e262005-05-30 23:55:42 +00001608VoVPN-GW_66MHz_config \
1609VoVPN-GW_100MHz_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001610 @mkdir -p $(obj)include
1611 @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h
1612 @$(MKCONFIG) -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
wdenkba91e262005-05-30 23:55:42 +00001613
wdenk54387ac2003-10-08 22:45:44 +00001614ZPC1900_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001615 @$(MKCONFIG) $(@:_config=) ppc mpc8260 zpc1900
wdenk7aa78612003-05-03 15:50:43 +00001616
wdenk4e5ca3e2003-12-08 01:34:36 +00001617#########################################################################
1618## Coldfire
1619#########################################################################
1620
Wolfgang Denk74812662005-12-12 16:06:05 +01001621cobra5272_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001622 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272
Wolfgang Denk74812662005-12-12 16:06:05 +01001623
Wolfgang Denk4176c792006-06-10 19:27:47 +02001624EB+MCF-EV123_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001625 @mkdir -p $(obj)include
1626 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1627 @ >$(obj)include/config.h
1628 @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1629 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001630
1631EB+MCF-EV123_internal_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001632 @mkdir -p $(obj)include
1633 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1634 @ >$(obj)include/config.h
1635 @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1636 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001637
Bartlomiej Siekadaa6e412006-12-20 00:27:32 +01001638idmr_config : unconfig
1639 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 idmr
1640
Wolfgang Denk4176c792006-06-10 19:27:47 +02001641M5271EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001642 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb
Wolfgang Denk4176c792006-06-10 19:27:47 +02001643
wdenk4e5ca3e2003-12-08 01:34:36 +00001644M5272C3_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001645 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3
wdenk4e5ca3e2003-12-08 01:34:36 +00001646
1647M5282EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001648 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb
wdenk4e5ca3e2003-12-08 01:34:36 +00001649
stroesec419d1d2004-12-16 18:44:40 +00001650TASREG_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001651 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd
stroesec419d1d2004-12-16 18:44:40 +00001652
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001653r5200_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001654 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 r5200
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001655
wdenk7ebf7442002-11-02 23:17:16 +00001656#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -05001657## MPC83xx Systems
1658#########################################################################
1659
Kim Phillips5c5d3242007-04-25 12:34:38 -05001660MPC8313ERDB_33_config \
1661MPC8313ERDB_66_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001662 @mkdir -p $(obj)include
1663 @echo "" >$(obj)include/config.h ; \
Kim Phillips5c5d3242007-04-25 12:34:38 -05001664 if [ "$(findstring _33_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001665 echo "...33M ..." ; \
1666 echo "#define CFG_33MHZ" >>$(obj)include/config.h ; \
Kim Phillips5c5d3242007-04-25 12:34:38 -05001667 fi ; \
1668 if [ "$(findstring _66_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001669 echo "...66M..." ; \
1670 echo "#define CFG_66MHZ" >>$(obj)include/config.h ; \
Kim Phillips5c5d3242007-04-25 12:34:38 -05001671 fi ;
1672 @$(MKCONFIG) -a MPC8313ERDB ppc mpc83xx mpc8313erdb
1673
Kim Phillips4decd842007-01-24 17:18:37 -06001674MPC832XEMDS_config \
1675MPC832XEMDS_HOST_33_config \
1676MPC832XEMDS_HOST_66_config \
1677MPC832XEMDS_SLAVE_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001678 @mkdir -p $(obj)include
1679 @echo "" >$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001680 if [ "$(findstring _HOST_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001681 echo "... PCI HOST " ; \
1682 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001683 fi ; \
1684 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1685 echo "...PCI SLAVE 66M" ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001686 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
1687 echo "#define CONFIG_PCISLAVE" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001688 fi ; \
1689 if [ "$(findstring _33_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001690 echo "...33M ..." ; \
1691 echo "#define PCI_33M" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001692 fi ; \
1693 if [ "$(findstring _66_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001694 echo "...66M..." ; \
1695 echo "#define PCI_66M" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001696 fi ;
1697 @$(MKCONFIG) -a MPC832XEMDS ppc mpc83xx mpc832xemds
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001698
Marian Balakowicz991425f2006-03-14 16:24:38 +01001699MPC8349EMDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001700 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349emds
Marian Balakowicz991425f2006-03-14 16:24:38 +01001701
Timur Tabi7a78f142007-01-31 15:54:29 -06001702MPC8349ITX_config \
1703MPC8349ITX_LOWBOOT_config \
1704MPC8349ITXGP_config: unconfig
1705 @mkdir -p $(obj)include
1706 @mkdir -p $(obj)board/mpc8349itx
1707 @echo "#define CONFIG_$(subst _LOWBOOT,,$(@:_config=))" >> $(obj)include/config.h
1708 @if [ "$(findstring GP,$@)" ] ; then \
1709 echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \
1710 fi
1711 @if [ "$(findstring LOWBOOT,$@)" ] ; then \
1712 echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \
1713 fi
1714 @$(MKCONFIG) -a -n $(@:_config=) MPC8349ITX ppc mpc83xx mpc8349itx
Kim Phillips4decd842007-01-24 17:18:37 -06001715
Dave Liu5f820432006-11-03 19:33:44 -06001716MPC8360EMDS_config \
1717MPC8360EMDS_HOST_33_config \
1718MPC8360EMDS_HOST_66_config \
1719MPC8360EMDS_SLAVE_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001720 @mkdir -p $(obj)include
1721 @echo "" >$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001722 if [ "$(findstring _HOST_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001723 echo "... PCI HOST " ; \
1724 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001725 fi ; \
1726 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1727 echo "...PCI SLAVE 66M" ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001728 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
1729 echo "#define CONFIG_PCISLAVE" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001730 fi ; \
1731 if [ "$(findstring _33_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001732 echo "...33M ..." ; \
1733 echo "#define PCI_33M" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001734 fi ; \
1735 if [ "$(findstring _66_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001736 echo "...66M..." ; \
1737 echo "#define PCI_66M" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001738 fi ;
1739 @$(MKCONFIG) -a MPC8360EMDS ppc mpc83xx mpc8360emds
1740
Paul Gortmaker91e25762007-01-16 11:38:14 -05001741sbc8349_config: unconfig
1742 @$(MKCONFIG) $(@:_config=) ppc mpc83xx sbc8349
1743
Kim Phillips4decd842007-01-24 17:18:37 -06001744TQM834x_config: unconfig
1745 @$(MKCONFIG) $(@:_config=) ppc mpc83xx tqm834x
1746
Timur Tabi2ad6b512006-10-31 18:44:42 -06001747
Eran Libertyf046ccd2005-07-28 10:08:46 -05001748#########################################################################
wdenk42d1f032003-10-15 23:53:47 +00001749## MPC85xx Systems
1750#########################################################################
1751
wdenk0ac6f8b2004-07-09 23:27:13 +00001752MPC8540ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001753 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8540ads
wdenk42d1f032003-10-15 23:53:47 +00001754
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001755MPC8540EVAL_config \
1756MPC8540EVAL_33_config \
1757MPC8540EVAL_66_config \
1758MPC8540EVAL_33_slave_config \
1759MPC8540EVAL_66_slave_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001760 @mkdir -p $(obj)include
1761 @echo "" >$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001762 if [ "$(findstring _33_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001763 echo "... 33 MHz PCI" ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001764 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001765 echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001766 echo "... 66 MHz PCI" ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001767 fi ; \
1768 if [ "$(findstring _slave_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001769 echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001770 echo " slave" ; \
1771 else \
1772 echo " host" ; \
1773 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001774 @$(MKCONFIG) -a MPC8540EVAL ppc mpc85xx mpc8540eval
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001775
wdenk0ac6f8b2004-07-09 23:27:13 +00001776MPC8560ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001777 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8560ads
wdenk42d1f032003-10-15 23:53:47 +00001778
wdenk03f5c552004-10-10 21:21:55 +00001779MPC8541CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001780 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8541cds cds
wdenk03f5c552004-10-10 21:21:55 +00001781
Andy Fleming81f481c2007-04-23 02:24:28 -05001782MPC8544DS_config: unconfig
1783 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8544ds freescale
1784
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001785MPC8548CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001786 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8548cds cds
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001787
wdenk03f5c552004-10-10 21:21:55 +00001788MPC8555CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001789 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8555cds cds
wdenk7abf0c52004-04-18 21:45:42 +00001790
Andy Fleming67431052007-04-23 02:54:25 -05001791MPC8568MDS_config: unconfig
1792 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8568mds
1793
wdenk384cc682005-04-03 22:35:21 +00001794PM854_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001795 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm854
wdenk384cc682005-04-03 22:35:21 +00001796
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001797PM856_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001798 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm856
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001799
wdenkc15f3122004-10-10 22:44:24 +00001800sbc8540_config \
1801sbc8540_33_config \
1802sbc8540_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001803 @mkdir -p $(obj)include
wdenkc15f3122004-10-10 22:44:24 +00001804 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001805 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001806 echo "... 66 MHz PCI" ; \
1807 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001808 >$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001809 echo "... 33 MHz PCI" ; \
1810 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001811 @$(MKCONFIG) -a SBC8540 ppc mpc85xx sbc8560
wdenkc15f3122004-10-10 22:44:24 +00001812
wdenk466b7412004-07-10 22:35:59 +00001813sbc8560_config \
1814sbc8560_33_config \
1815sbc8560_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001816 @mkdir -p $(obj)include
wdenk8b07a112004-07-10 21:45:47 +00001817 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001818 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001819 echo "... 66 MHz PCI" ; \
1820 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001821 >$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001822 echo "... 33 MHz PCI" ; \
1823 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001824 @$(MKCONFIG) -a sbc8560 ppc mpc85xx sbc8560
wdenk8b07a112004-07-10 21:45:47 +00001825
wdenk03f5c552004-10-10 21:21:55 +00001826stxgp3_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001827 @$(MKCONFIG) $(@:_config=) ppc mpc85xx stxgp3
wdenk03f5c552004-10-10 21:21:55 +00001828
Wolfgang Denkee152982007-05-31 17:20:09 +02001829stxssa_config \
1830stxssa_4M_config: unconfig
1831 @mkdir -p $(obj)include
1832 @if [ "$(findstring _4M_,$@)" ] ; then \
1833 echo "#define CONFIG_STXSSA_4M" >>$(obj)include/config.h ; \
1834 echo "... with 4 MiB flash memory" ; \
1835 else \
1836 >$(obj)include/config.h ; \
1837 fi
1838 @$(MKCONFIG) -a stxssa ppc mpc85xx stxssa
Dan Malek35171dc2007-01-05 09:15:34 +01001839
Stefan Roesed96f41e2005-11-30 13:06:40 +01001840TQM8540_config \
1841TQM8541_config \
1842TQM8555_config \
1843TQM8560_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001844 @mkdir -p $(obj)include
Wolfgang Denka889bd22005-12-06 15:02:31 +01001845 @CTYPE=$(subst TQM,,$(@:_config=)); \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001846 >$(obj)include/config.h ; \
Stefan Roesed96f41e2005-11-30 13:06:40 +01001847 echo "... TQM"$${CTYPE}; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001848 echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \
1849 echo "#define CONFIG_TQM$${CTYPE}">>$(obj)include/config.h; \
1850 echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \
1851 echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>$(obj)include/config.h; \
1852 echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>$(obj)include/config.h
1853 @$(MKCONFIG) -a TQM85xx ppc mpc85xx tqm85xx
wdenkf5c5ef42005-04-05 16:26:47 +00001854
wdenk42d1f032003-10-15 23:53:47 +00001855#########################################################################
Jon Loeligerdebb7352006-04-26 17:58:56 -05001856## MPC86xx Systems
1857#########################################################################
1858
1859MPC8641HPCN_config: unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -06001860 @$(MKCONFIG) $(@:_config=) ppc mpc86xx mpc8641hpcn
Jon Loeligerdebb7352006-04-26 17:58:56 -05001861
1862
1863#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001864## 74xx/7xx Systems
1865#########################################################################
1866
wdenkc7de8292002-11-19 11:04:11 +00001867AmigaOneG3SE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001868 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
wdenkc7de8292002-11-19 11:04:11 +00001869
wdenk15647dc2003-10-09 19:00:25 +00001870BAB7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001871 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx bab7xx eltec
wdenk15647dc2003-10-09 19:00:25 +00001872
stroesec419d1d2004-12-16 18:44:40 +00001873CPCI750_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001874 @$(MKCONFIG) CPCI750 ppc 74xx_7xx cpci750 esd
stroesec419d1d2004-12-16 18:44:40 +00001875
wdenk3a473b22004-01-03 00:43:19 +00001876DB64360_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001877 @$(MKCONFIG) DB64360 ppc 74xx_7xx db64360 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001878
1879DB64460_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001880 @$(MKCONFIG) DB64460 ppc 74xx_7xx db64460 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001881
wdenk15647dc2003-10-09 19:00:25 +00001882ELPPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001883 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx elppc eltec
wdenk15647dc2003-10-09 19:00:25 +00001884
wdenk7ebf7442002-11-02 23:17:16 +00001885EVB64260_config \
1886EVB64260_750CX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001887 @$(MKCONFIG) EVB64260 ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001888
roy zang4c527832006-11-02 18:49:51 +08001889mpc7448hpc2_config: unconfig
roy zangee311212006-12-01 11:47:36 +08001890 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx mpc7448hpc2
roy zang4c527832006-11-02 18:49:51 +08001891
wdenk15647dc2003-10-09 19:00:25 +00001892P3G4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001893 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001894
Stefan Roese1eac2a72006-11-29 15:42:37 +01001895p3m750_config \
1896p3m7448_config: unconfig
1897 @mkdir -p $(obj)include
1898 @if [ "$(findstring 750_,$@)" ] ; then \
1899 echo "#define CONFIG_P3M750" >>$(obj)include/config.h ; \
1900 else \
1901 echo "#define CONFIG_P3M7448" >>$(obj)include/config.h ; \
1902 fi
1903 @$(MKCONFIG) -a p3mx ppc 74xx_7xx p3mx prodrive
1904
wdenk7ebf7442002-11-02 23:17:16 +00001905PCIPPC2_config \
1906PCIPPC6_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001907 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx pcippc2
wdenk7ebf7442002-11-02 23:17:16 +00001908
wdenk15647dc2003-10-09 19:00:25 +00001909ZUMA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001910 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk12f34242003-09-02 22:48:03 +00001911
Heiko Schocherf5e0d032006-06-19 11:02:41 +02001912ppmc7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001913 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx ppmc7xx
Wolfgang Denkb87dfd22006-07-19 13:50:38 +02001914
wdenk7ebf7442002-11-02 23:17:16 +00001915#========================================================================
1916# ARM
1917#========================================================================
1918#########################################################################
1919## StrongARM Systems
1920#########################################################################
1921
wdenkea66bc82004-04-15 23:23:39 +00001922assabet_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001923 @$(MKCONFIG) $(@:_config=) arm sa1100 assabet
wdenkea66bc82004-04-15 23:23:39 +00001924
wdenk7ebf7442002-11-02 23:17:16 +00001925dnp1110_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001926 @$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110
wdenk7ebf7442002-11-02 23:17:16 +00001927
wdenk855a4962004-03-14 18:23:55 +00001928gcplus_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001929 @$(MKCONFIG) $(@:_config=) arm sa1100 gcplus
wdenk855a4962004-03-14 18:23:55 +00001930
1931lart_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001932 @$(MKCONFIG) $(@:_config=) arm sa1100 lart
wdenk855a4962004-03-14 18:23:55 +00001933
wdenk7ebf7442002-11-02 23:17:16 +00001934shannon_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001935 @$(MKCONFIG) $(@:_config=) arm sa1100 shannon
wdenk7ebf7442002-11-02 23:17:16 +00001936
1937#########################################################################
wdenk2e5983d2003-07-15 20:04:06 +00001938## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00001939#########################################################################
1940
wdenkb0639ca2003-09-17 22:48:07 +00001941xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk43d96162003-03-06 00:02:04 +00001942
wdenk3ff02c22004-06-09 15:25:53 +00001943xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
wdenk63e73c92004-02-23 22:22:28 +00001944
wdenka56bd922004-06-06 23:13:55 +00001945xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1946
wdenka85f9f22005-04-06 13:52:31 +00001947at91rm9200dk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001948 @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001949
1950cmc_pu2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001951 @$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001952
Wolfgang Denk645da512005-10-05 02:00:09 +02001953csb637_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001954 @$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200
Wolfgang Denk645da512005-10-05 02:00:09 +02001955
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001956mp2usb_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001957 @$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001958
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001959
Wolfgang Denk74f43042005-09-25 01:48:28 +02001960########################################################################
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001961## ARM Integrator boards - see doc/README-integrator for more info.
1962integratorap_config \
1963ap_config \
1964ap966_config \
1965ap922_config \
1966ap922_XA10_config \
1967ap7_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01001968ap720t_config \
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001969ap920t_config \
1970ap926ejs_config \
1971ap946es_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001972 @board/integratorap/split_by_variant.sh $@
wdenk3d3befa2004-03-14 15:06:13 +00001973
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001974integratorcp_config \
1975cp_config \
1976cp920t_config \
1977cp926ejs_config \
1978cp946es_config \
1979cp1136_config \
1980cp966_config \
1981cp922_config \
1982cp922_XA10_config \
1983cp1026_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001984 @board/integratorcp/split_by_variant.sh $@
wdenk25d67122004-12-10 11:40:40 +00001985
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001986kb9202_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001987 @$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001988
wdenkf832d8a2004-06-10 21:55:33 +00001989lpd7a400_config \
1990lpd7a404_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001991 @$(MKCONFIG) $(@:_config=) arm lh7a40x lpd7a40x
wdenk3d3befa2004-03-14 15:06:13 +00001992
wdenk281e00a2004-08-01 22:48:16 +00001993mx1ads_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001994 @$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001995
1996mx1fs2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001997 @$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001998
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001999netstar_32_config \
2000netstar_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002001 @mkdir -p $(obj)include
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002002 @if [ "$(findstring _32_,$@)" ] ; then \
2003 echo "... 32MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002004 echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002005 else \
2006 echo "... 64MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002007 echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002008 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02002009 @$(MKCONFIG) -a netstar arm arm925t netstar
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002010
wdenk2e5983d2003-07-15 20:04:06 +00002011omap1510inn_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002012 @$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn
wdenk2e5983d2003-07-15 20:04:06 +00002013
wdenk1eaeb582004-06-08 00:22:43 +00002014omap5912osk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002015 @$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk NULL omap
wdenk1eaeb582004-06-08 00:22:43 +00002016
wdenk63e73c92004-02-23 22:22:28 +00002017omap1610inn_config \
2018omap1610inn_cs0boot_config \
2019omap1610inn_cs3boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00002020omap1610inn_cs_autoboot_config \
wdenk63e73c92004-02-23 22:22:28 +00002021omap1610h2_config \
2022omap1610h2_cs0boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00002023omap1610h2_cs3boot_config \
2024omap1610h2_cs_autoboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002025 @mkdir -p $(obj)include
wdenk63e73c92004-02-23 22:22:28 +00002026 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002027 echo "#define CONFIG_CS0_BOOT" >> .$(obj)include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00002028 echo "... configured for CS0 boot"; \
wdenk3ff02c22004-06-09 15:25:53 +00002029 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002030 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)include/config.h ; \
wdenk3ff02c22004-06-09 15:25:53 +00002031 echo "... configured for CS_AUTO boot"; \
wdenk63e73c92004-02-23 22:22:28 +00002032 else \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002033 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00002034 echo "... configured for CS3 boot"; \
wdenk63e73c92004-02-23 22:22:28 +00002035 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02002036 @$(MKCONFIG) -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap
wdenk6f213472003-08-29 22:00:43 +00002037
wdenka56bd922004-06-06 23:13:55 +00002038omap730p2_config \
2039omap730p2_cs0boot_config \
2040omap730p2_cs3boot_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002041 @mkdir -p $(obj)include
wdenka56bd922004-06-06 23:13:55 +00002042 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002043 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00002044 echo "... configured for CS0 boot"; \
2045 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002046 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00002047 echo "... configured for CS3 boot"; \
2048 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02002049 @$(MKCONFIG) -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap
wdenka56bd922004-06-06 23:13:55 +00002050
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02002051sbc2410x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002052 @$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02002053
wdenk281e00a2004-08-01 22:48:16 +00002054scb9328_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002055 @$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002056
wdenk7ebf7442002-11-02 23:17:16 +00002057smdk2400_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002058 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002059
2060smdk2410_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002061 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002062
wdenk2d24a3a2004-06-09 21:50:45 +00002063SX1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002064 @$(MKCONFIG) $(@:_config=) arm arm925t sx1
wdenk2d24a3a2004-06-09 21:50:45 +00002065
wdenkb2001f22003-12-20 22:45:10 +00002066# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk43d96162003-03-06 00:02:04 +00002067trab_config \
wdenkb0639ca2003-09-17 22:48:07 +00002068trab_bigram_config \
2069trab_bigflash_config \
wdenkf54ebdf2003-09-17 15:10:32 +00002070trab_old_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002071 @mkdir -p $(obj)include
2072 @mkdir -p $(obj)board/trab
2073 @ >$(obj)include/config.h
wdenkb0639ca2003-09-17 22:48:07 +00002074 @[ -z "$(findstring _bigram,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002075 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2076 echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002077 echo "... with 8 MB Flash, 32 MB RAM" ; \
2078 }
2079 @[ -z "$(findstring _bigflash,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002080 { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \
2081 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002082 echo "... with 16 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002083 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenkb0639ca2003-09-17 22:48:07 +00002084 }
wdenkf54ebdf2003-09-17 15:10:32 +00002085 @[ -z "$(findstring _old,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002086 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2087 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +00002088 echo "... with 8 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002089 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenk43d96162003-03-06 00:02:04 +00002090 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002091 @$(MKCONFIG) -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002092
wdenk1cb8e982003-03-06 21:55:29 +00002093VCMA9_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002094 @$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0
wdenk1cb8e982003-03-06 21:55:29 +00002095
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002096#========================================================================
2097# ARM supplied Versatile development boards
2098#========================================================================
2099versatile_config \
2100versatileab_config \
2101versatilepb_config : unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02002102 @board/versatile/split_by_variant.sh $@
wdenk074cff02004-02-24 00:16:43 +00002103
wdenk3c2b3d42005-04-05 23:32:21 +00002104voiceblue_smallflash_config \
2105voiceblue_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002106 @mkdir -p $(obj)include
2107 @mkdir -p $(obj)board/voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002108 @if [ "$(findstring _smallflash_,$@)" ] ; then \
2109 echo "... boot from lower flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002110 echo "#define VOICEBLUE_SMALL_FLASH" >>$(obj)include/config.h ; \
2111 echo "VOICEBLUE_SMALL_FLASH=y" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00002112 else \
2113 echo "... boot from upper flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002114 >$(obj)include/config.h ; \
2115 echo "VOICEBLUE_SMALL_FLASH=n" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00002116 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02002117 @$(MKCONFIG) -a voiceblue arm arm925t voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002118
wdenk16b013e2005-05-19 22:46:33 +00002119cm4008_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002120 @$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002121
2122cm41xx_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002123 @$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002124
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002125gth2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002126 @mkdir -p $(obj)include
2127 @ >$(obj)include/config.h
2128 @echo "#define CONFIG_GTH2 1" >>$(obj)include/config.h
2129 @$(MKCONFIG) -a gth2 mips mips gth2
Wolfgang Denk0c32d962006-06-16 17:32:31 +02002130
wdenk074cff02004-02-24 00:16:43 +00002131#########################################################################
2132## S3C44B0 Systems
2133#########################################################################
2134
2135B2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002136 @$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave
wdenk074cff02004-02-24 00:16:43 +00002137
wdenk7ebf7442002-11-02 23:17:16 +00002138#########################################################################
2139## ARM720T Systems
2140#########################################################################
2141
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002142armadillo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002143 @$(MKCONFIG) $(@:_config=) arm arm720t armadillo
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002144
wdenk7ebf7442002-11-02 23:17:16 +00002145ep7312_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002146 @$(MKCONFIG) $(@:_config=) arm arm720t ep7312
wdenk7ebf7442002-11-02 23:17:16 +00002147
wdenk2d24a3a2004-06-09 21:50:45 +00002148impa7_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002149 @$(MKCONFIG) $(@:_config=) arm arm720t impa7
wdenk2d24a3a2004-06-09 21:50:45 +00002150
wdenk2d1a5372004-02-23 19:30:57 +00002151modnet50_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002152 @$(MKCONFIG) $(@:_config=) arm arm720t modnet50
wdenk2d1a5372004-02-23 19:30:57 +00002153
wdenk39539882004-07-01 16:30:44 +00002154evb4510_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002155 @$(MKCONFIG) $(@:_config=) arm arm720t evb4510
wdenk39539882004-07-01 16:30:44 +00002156
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002157lpc2292sodimm_config: unconfig
Peter Pearseb0d8f5b2007-05-09 11:37:56 +01002158 @$(MKCONFIG) $(@:_config=) arm arm720t lpc2292sodimm NULL lpc2292
2159
2160SMN42_config : unconfig
2161 @$(MKCONFIG) $(@:_config=) arm arm720t SMN42 siemens lpc2292
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002162
wdenk7ebf7442002-11-02 23:17:16 +00002163#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002164## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00002165#########################################################################
2166
wdenk20787e22005-04-06 00:04:16 +00002167adsvix_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002168 @$(MKCONFIG) $(@:_config=) arm pxa adsvix
wdenk20787e22005-04-06 00:04:16 +00002169
wdenkfabd46a2004-07-10 23:11:10 +00002170cerf250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002171 @$(MKCONFIG) $(@:_config=) arm pxa cerf250
wdenkfabd46a2004-07-10 23:11:10 +00002172
wdenk7ebf7442002-11-02 23:17:16 +00002173cradle_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002174 @$(MKCONFIG) $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00002175
2176csb226_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002177 @$(MKCONFIG) $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00002178
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002179delta_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002180 @$(MKCONFIG) $(@:_config=) arm pxa delta
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002181
wdenk43d96162003-03-06 00:02:04 +00002182innokom_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002183 @$(MKCONFIG) $(@:_config=) arm pxa innokom
wdenk43d96162003-03-06 00:02:04 +00002184
wdenk2d5b5612003-10-14 19:43:55 +00002185ixdp425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002186 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
wdenk2d5b5612003-10-14 19:43:55 +00002187
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002188ixdpg425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002189 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002190
wdenk43d96162003-03-06 00:02:04 +00002191lubbock_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002192 @$(MKCONFIG) $(@:_config=) arm pxa lubbock
wdenk43d96162003-03-06 00:02:04 +00002193
Heiko Schocher5720df72006-05-02 07:51:46 +02002194pleb2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002195 @$(MKCONFIG) $(@:_config=) arm pxa pleb2
Heiko Schocher5720df72006-05-02 07:51:46 +02002196
wdenk52f52c12003-06-19 23:04:19 +00002197logodl_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002198 @$(MKCONFIG) $(@:_config=) arm pxa logodl
wdenk52f52c12003-06-19 23:04:19 +00002199
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002200pdnb3_config \
2201scpu_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002202 @mkdir -p $(obj)include
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002203 @if [ "$(findstring scpu_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002204 echo "#define CONFIG_SCPU" >>$(obj)include/config.h ; \
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002205 echo "... on SCPU board variant" ; \
2206 else \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002207 >$(obj)include/config.h ; \
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002208 fi
2209 @$(MKCONFIG) -a pdnb3 arm ixp pdnb3 prodrive
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002210
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002211pxa255_idp_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002212 @$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002213
wdenk3e386912003-04-05 00:53:31 +00002214wepep250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002215 @$(MKCONFIG) $(@:_config=) arm pxa wepep250
wdenk3e386912003-04-05 00:53:31 +00002216
wdenk4ec3a7f2004-09-28 16:44:41 +00002217xaeniax_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002218 @$(MKCONFIG) $(@:_config=) arm pxa xaeniax
wdenk4ec3a7f2004-09-28 16:44:41 +00002219
wdenkefa329c2004-03-23 20:18:25 +00002220xm250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002221 @$(MKCONFIG) $(@:_config=) arm pxa xm250
wdenkefa329c2004-03-23 20:18:25 +00002222
wdenkca0e7742004-06-09 15:37:23 +00002223xsengine_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002224 @$(MKCONFIG) $(@:_config=) arm pxa xsengine
wdenkca0e7742004-06-09 15:37:23 +00002225
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002226zylonite_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002227 @$(MKCONFIG) $(@:_config=) arm pxa zylonite
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002228
wdenk8ed96042005-01-09 23:16:25 +00002229#########################################################################
2230## ARM1136 Systems
2231#########################################################################
2232omap2420h4_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002233 @$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4
wdenk8ed96042005-01-09 23:16:25 +00002234
wdenk2262cfe2002-11-18 00:14:45 +00002235#========================================================================
2236# i386
2237#========================================================================
2238#########################################################################
wdenk1cb8e982003-03-06 21:55:29 +00002239## AMD SC520 CDP
wdenk2262cfe2002-11-18 00:14:45 +00002240#########################################################################
2241sc520_cdp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002242 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp
wdenk2262cfe2002-11-18 00:14:45 +00002243
wdenk7a8e9bed2003-05-31 18:35:21 +00002244sc520_spunk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002245 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002246
2247sc520_spunk_rel_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002248 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002249
wdenk43d96162003-03-06 00:02:04 +00002250#========================================================================
2251# MIPS
2252#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00002253#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002254## MIPS32 4Kc
2255#########################################################################
2256
wdenke0ac62d2003-08-17 18:55:18 +00002257xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
2258
2259incaip_100MHz_config \
2260incaip_133MHz_config \
2261incaip_150MHz_config \
2262incaip_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002263 @mkdir -p $(obj)include
2264 @ >$(obj)include/config.h
wdenke0ac62d2003-08-17 18:55:18 +00002265 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002266 { echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002267 echo "... with 100MHz system clock" ; \
2268 }
2269 @[ -z "$(findstring _133MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002270 { echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002271 echo "... with 133MHz system clock" ; \
2272 }
2273 @[ -z "$(findstring _150MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002274 { echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002275 echo "... with 150MHz system clock" ; \
2276 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002277 @$(MKCONFIG) -a $(call xtract_incaip,$@) mips mips incaip
wdenke0ac62d2003-08-17 18:55:18 +00002278
wdenkf4863a72004-02-07 01:27:10 +00002279tb0229_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002280 @$(MKCONFIG) $(@:_config=) mips mips tb0229
wdenkf4863a72004-02-07 01:27:10 +00002281
wdenke0ac62d2003-08-17 18:55:18 +00002282#########################################################################
wdenk69459792004-05-29 16:53:29 +00002283## MIPS32 AU1X00
2284#########################################################################
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002285dbau1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002286 @mkdir -p $(obj)include
2287 @ >$(obj)include/config.h
2288 @echo "#define CONFIG_DBAU1000 1" >>$(obj)include/config.h
2289 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002290
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002291dbau1100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002292 @mkdir -p $(obj)include
2293 @ >$(obj)include/config.h
2294 @echo "#define CONFIG_DBAU1100 1" >>$(obj)include/config.h
2295 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002296
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002297dbau1500_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002298 @mkdir -p $(obj)include
2299 @ >$(obj)include/config.h
2300 @echo "#define CONFIG_DBAU1500 1" >>$(obj)include/config.h
2301 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002302
wdenkff36fd82005-01-09 22:28:56 +00002303dbau1550_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002304 @mkdir -p $(obj)include
2305 @ >$(obj)include/config.h
2306 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2307 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002308
2309dbau1550_el_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002310 @mkdir -p $(obj)include
2311 @ >$(obj)include/config.h
2312 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2313 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002314
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002315pb1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002316 @mkdir -p $(obj)include
2317 @ >$(obj)include/config.h
2318 @echo "#define CONFIG_PB1000 1" >>$(obj)include/config.h
2319 @$(MKCONFIG) -a pb1x00 mips mips pb1x00
Wolfgang Denk265817c2005-09-25 00:53:22 +02002320
wdenk69459792004-05-29 16:53:29 +00002321#########################################################################
wdenke0ac62d2003-08-17 18:55:18 +00002322## MIPS64 5Kc
2323#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002324
wdenk3e386912003-04-05 00:53:31 +00002325purple_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002326 @$(MKCONFIG) $(@:_config=) mips mips purple
wdenk43d96162003-03-06 00:02:04 +00002327
wdenk4a551702003-10-08 23:26:14 +00002328#========================================================================
2329# Nios
2330#========================================================================
2331#########################################################################
2332## Nios32
2333#########################################################################
2334
wdenkc935d3b2004-01-03 19:43:48 +00002335DK1C20_safe_32_config \
2336DK1C20_standard_32_config \
wdenk4a551702003-10-08 23:26:14 +00002337DK1C20_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002338 @mkdir -p $(obj)include
2339 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002340 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002341 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002342 echo "... NIOS 'safe_32' configuration" ; \
2343 }
2344 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002345 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002346 echo "... NIOS 'standard_32' configuration" ; \
2347 }
2348 @[ -z "$(findstring DK1C20_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002349 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002350 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2351 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002352 @$(MKCONFIG) -a DK1C20 nios nios dk1c20 altera
wdenkc935d3b2004-01-03 19:43:48 +00002353
2354DK1S10_safe_32_config \
2355DK1S10_standard_32_config \
wdenkec4c5442004-02-09 23:12:24 +00002356DK1S10_mtx_ldk_20_config \
wdenkc935d3b2004-01-03 19:43:48 +00002357DK1S10_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002358 @mkdir -p $(obj)include
2359 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002360 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002361 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002362 echo "... NIOS 'safe_32' configuration" ; \
2363 }
2364 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002365 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002366 echo "... NIOS 'standard_32' configuration" ; \
2367 }
wdenkec4c5442004-02-09 23:12:24 +00002368 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002369 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>$(obj)include/config.h ; \
wdenkec4c5442004-02-09 23:12:24 +00002370 echo "... NIOS 'mtx_ldk_20' configuration" ; \
2371 }
wdenkc935d3b2004-01-03 19:43:48 +00002372 @[ -z "$(findstring DK1S10_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002373 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002374 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2375 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002376 @$(MKCONFIG) -a DK1S10 nios nios dk1s10 altera
wdenk4a551702003-10-08 23:26:14 +00002377
wdenkaaf224a2004-03-14 15:20:55 +00002378ADNPESC1_DNPEVA2_base_32_config \
2379ADNPESC1_base_32_config \
2380ADNPESC1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002381 @mkdir -p $(obj)include
2382 @ >$(obj)include/config.h
wdenkaaf224a2004-03-14 15:20:55 +00002383 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002384 { echo "#define CONFIG_DNPEVA2 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002385 echo "... DNP/EVA2 configuration" ; \
2386 }
wdenkaaf224a2004-03-14 15:20:55 +00002387 @[ -z "$(findstring _base_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002388 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002389 echo "... NIOS 'base_32' configuration" ; \
2390 }
wdenkaaf224a2004-03-14 15:20:55 +00002391 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002392 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002393 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
2394 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002395 @$(MKCONFIG) -a ADNPESC1 nios nios adnpesc1 ssv
wdenkaaf224a2004-03-14 15:20:55 +00002396
wdenk5c952cf2004-10-10 21:27:30 +00002397#########################################################################
2398## Nios-II
2399#########################################################################
2400
Scott McNutt9cc83372006-06-08 13:37:39 -04002401EP1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002402 @$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002403
2404EP1S10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002405 @$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002406
2407EP1S40_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002408 @$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002409
wdenk5c952cf2004-10-10 21:27:30 +00002410PK1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002411 @$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent
wdenk5c952cf2004-10-10 21:27:30 +00002412
2413PCI5441_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002414 @$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent
wdenk4a551702003-10-08 23:26:14 +00002415
wdenk507bbe32004-04-18 21:13:41 +00002416#========================================================================
2417# MicroBlaze
2418#========================================================================
2419#########################################################################
2420## Microblaze
2421#########################################################################
2422suzaku_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002423 @mkdir -p $(obj)include
2424 @ >$(obj)include/config.h
2425 @echo "#define CONFIG_SUZAKU 1" >> $(obj)include/config.h
2426 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
wdenk507bbe32004-04-18 21:13:41 +00002427
Michal Simekcfc67112007-03-11 13:48:24 +01002428ml401_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002429 @mkdir -p $(obj)include
2430 @ >$(obj)include/config.h
2431 @echo "#define CONFIG_ML401 1" >> $(obj)include/config.h
Grant Likely90b1b2d2007-07-03 00:17:28 -06002432 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze ml401 xilinx
Michal Simekcfc67112007-03-11 13:48:24 +01002433
Michal Simek17980492007-03-26 01:39:07 +02002434xupv2p_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002435 @mkdir -p $(obj)include
2436 @ >$(obj)include/config.h
2437 @echo "#define CONFIG_XUPV2P 1" >> $(obj)include/config.h
Grant Likely90b1b2d2007-07-03 00:17:28 -06002438 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze xupv2p xilinx
Michal Simek17980492007-03-26 01:39:07 +02002439
wdenk3e386912003-04-05 00:53:31 +00002440#########################################################################
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002441## Blackfin
2442#########################################################################
Aubrey.Lief26a082007-03-09 13:40:56 +08002443bf533-ezkit_config: unconfig
2444 @$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-ezkit
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002445
Aubrey.Lief26a082007-03-09 13:40:56 +08002446bf533-stamp_config: unconfig
2447 @$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-stamp
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002448
Aubrey Li26bf7de2007-03-19 01:24:52 +08002449bf537-stamp_config: unconfig
2450 @$(MKCONFIG) $(@:_config=) blackfin bf537 bf537-stamp
2451
Aubrey Li65458982007-03-20 18:16:24 +08002452bf561-ezkit_config: unconfig
2453 @$(MKCONFIG) $(@:_config=) blackfin bf561 bf561-ezkit
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002454
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02002455#========================================================================
2456# AVR32
2457#========================================================================
2458#########################################################################
2459## AT32AP7xxx
2460#########################################################################
2461
2462atstk1002_config : unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -06002463 @$(MKCONFIG) $(@:_config=) avr32 at32ap atstk1000 atmel at32ap7000
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02002464
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002465#########################################################################
2466#########################################################################
wdenk3e386912003-04-05 00:53:31 +00002467#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00002468
2469clean:
Marian Balakowiczf9328632006-09-01 19:49:50 +02002470 find $(OBJTREE) -type f \
wdenk7ebf7442002-11-02 23:17:16 +00002471 \( -name 'core' -o -name '*.bak' -o -name '*~' \
2472 -o -name '*.o' -o -name '*.a' \) -print \
2473 | xargs rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002474 rm -f $(obj)examples/hello_world $(obj)examples/timer \
2475 $(obj)examples/eepro100_eeprom $(obj)examples/sched \
2476 $(obj)examples/mem_to_mem_idma2intr $(obj)examples/82559_eeprom \
Wolfgang Denkd214fbb2006-09-13 10:29:32 +02002477 $(obj)examples/smc91111_eeprom $(obj)examples/interrupt \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002478 $(obj)examples/test_burst
2479 rm -f $(obj)tools/img2srec $(obj)tools/mkimage $(obj)tools/envcrc \
Heiko Schocher566a4942007-06-22 19:11:54 +02002480 $(obj)tools/gen_eth_addr $(obj)tools/ubsha1
Marian Balakowiczf9328632006-09-01 19:49:50 +02002481 rm -f $(obj)tools/mpc86x_clk $(obj)tools/ncb
2482 rm -f $(obj)tools/easylogo/easylogo $(obj)tools/bmp_logo
2483 rm -f $(obj)tools/gdb/astest $(obj)tools/gdb/gdbcont $(obj)tools/gdb/gdbsend
2484 rm -f $(obj)tools/env/fw_printenv $(obj)tools/env/fw_setenv
2485 rm -f $(obj)board/cray/L1/bootscript.c $(obj)board/cray/L1/bootscript.image
2486 rm -f $(obj)board/netstar/eeprom $(obj)board/netstar/crcek $(obj)board/netstar/crcit
2487 rm -f $(obj)board/netstar/*.srec $(obj)board/netstar/*.bin
2488 rm -f $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom
2489 rm -f $(obj)board/integratorap/u-boot.lds $(obj)board/integratorcp/u-boot.lds
Aubrey Li8440bb12007-03-12 00:25:14 +08002490 rm -f $(obj)board/bf533-ezkit/u-boot.lds $(obj)board/bf533-stamp/u-boot.lds
Aubrey Li65458982007-03-20 18:16:24 +08002491 rm -f $(obj)board/bf537-stamp/u-boot.lds $(obj)board/bf561-ezkit/u-boot.lds
Marian Balakowiczf9328632006-09-01 19:49:50 +02002492 rm -f $(obj)include/bmp_logo.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002493 rm -f $(obj)nand_spl/u-boot-spl $(obj)nand_spl/u-boot-spl.map
wdenk7ebf7442002-11-02 23:17:16 +00002494
2495clobber: clean
Marian Balakowiczf9328632006-09-01 19:49:50 +02002496 find $(OBJTREE) -type f \( -name .depend \
wdenk4c0d4c32004-06-09 17:34:58 +00002497 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
2498 -print0 \
2499 | xargs -0 rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002500 rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS $(obj)include/version_autogenerated.h
2501 rm -fr $(obj)*.*~
2502 rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL)
Heiko Schocher566a4942007-06-22 19:11:54 +02002503 rm -f $(obj)tools/crc32.c $(obj)tools/environment.c $(obj)tools/env/crc32.c $(obj)tools/sha1.c
Marian Balakowiczf9328632006-09-01 19:49:50 +02002504 rm -f $(obj)tools/inca-swap-bytes $(obj)cpu/mpc824x/bedbug_603e.c
2505 rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002506 [ ! -d $(OBJTREE)/nand_spl ] || find $(obj)nand_spl -lname "*" -print | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +00002507
Marian Balakowiczf9328632006-09-01 19:49:50 +02002508ifeq ($(OBJTREE),$(SRCTREE))
wdenk7ebf7442002-11-02 23:17:16 +00002509mrproper \
2510distclean: clobber unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002511else
2512mrproper \
2513distclean: clobber unconfig
2514 rm -rf $(OBJTREE)/*
2515endif
wdenk7ebf7442002-11-02 23:17:16 +00002516
2517backup:
2518 F=`basename $(TOPDIR)` ; cd .. ; \
2519 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
2520
2521#########################################################################