blob: f39ff652f5576c2667e4525e4e42eff69b047e55 [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
121ifeq ($(HOSTARCH),ppc)
122CROSS_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 +0000131ifeq ($(HOSTARCH),i386)
132CROSS_COMPILE =
133else
134CROSS_COMPILE = i386-linux-
135endif
wdenk2262cfe2002-11-18 00:14:45 +0000136endif
wdenk43d96162003-03-06 00:02:04 +0000137ifeq ($(ARCH),mips)
138CROSS_COMPILE = mips_4KC-
139endif
wdenk4a551702003-10-08 23:26:14 +0000140ifeq ($(ARCH),nios)
141CROSS_COMPILE = nios-elf-
142endif
wdenk5c952cf2004-10-10 21:27:30 +0000143ifeq ($(ARCH),nios2)
144CROSS_COMPILE = nios2-elf-
145endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000146ifeq ($(ARCH),m68k)
147CROSS_COMPILE = m68k-elf-
148endif
wdenk507bbe32004-04-18 21:13:41 +0000149ifeq ($(ARCH),microblaze)
150CROSS_COMPILE = mb-
151endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100152ifeq ($(ARCH),blackfin)
153CROSS_COMPILE = bfin-elf-
154endif
Wolfgang Denk7b64fef2006-10-24 14:21:16 +0200155ifeq ($(ARCH),avr32)
156CROSS_COMPILE = avr32-
157endif
wdenk7ebf7442002-11-02 23:17:16 +0000158endif
159endif
160
161export CROSS_COMPILE
162
Wolfgang Denk92b197f2006-03-12 01:37:50 +0100163# load other configuration
164include $(TOPDIR)/config.mk
165
wdenk7ebf7442002-11-02 23:17:16 +0000166#########################################################################
167# U-Boot objects....order is important (i.e. start must be first)
168
wdenk9fd5e312003-12-07 23:55:12 +0000169OBJS = cpu/$(CPU)/start.o
wdenk2262cfe2002-11-18 00:14:45 +0000170ifeq ($(CPU),i386)
wdenk9fd5e312003-12-07 23:55:12 +0000171OBJS += cpu/$(CPU)/start16.o
172OBJS += cpu/$(CPU)/reset.o
wdenk2262cfe2002-11-18 00:14:45 +0000173endif
wdenk7ebf7442002-11-02 23:17:16 +0000174ifeq ($(CPU),ppc4xx)
wdenk9fd5e312003-12-07 23:55:12 +0000175OBJS += cpu/$(CPU)/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +0000176endif
wdenk42d1f032003-10-15 23:53:47 +0000177ifeq ($(CPU),mpc85xx)
178OBJS += cpu/$(CPU)/resetvec.o
179endif
Jon Loeligerdebb7352006-04-26 17:58:56 -0500180ifeq ($(CPU),mpc86xx)
181OBJS += cpu/$(CPU)/resetvec.o
182endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100183ifeq ($(CPU),bf533)
184OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
185OBJS += cpu/$(CPU)/cplbhdlr.o cpu/$(CPU)/cplbmgr.o cpu/$(CPU)/flush.o
186endif
wdenk7ebf7442002-11-02 23:17:16 +0000187
Marian Balakowiczf9328632006-09-01 19:49:50 +0200188OBJS := $(addprefix $(obj),$(OBJS))
189
wdenk9fd5e312003-12-07 23:55:12 +0000190LIBS = lib_generic/libgeneric.a
191LIBS += board/$(BOARDDIR)/lib$(BOARD).a
wdenk7ebf7442002-11-02 23:17:16 +0000192LIBS += cpu/$(CPU)/lib$(CPU).a
wdenk1d9f4102004-10-09 22:21:29 +0000193ifdef SOC
194LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
195endif
wdenk7ebf7442002-11-02 23:17:16 +0000196LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk518e2e12004-03-25 14:59:05 +0000197LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
stroesec419d1d2004-12-16 18:44:40 +0000198 fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a
wdenk7ebf7442002-11-02 23:17:16 +0000199LIBS += net/libnet.a
200LIBS += disk/libdisk.a
201LIBS += rtc/librtc.a
202LIBS += dtt/libdtt.a
203LIBS += drivers/libdrivers.a
Marian Balakowicz6db39702006-04-08 19:08:06 +0200204LIBS += drivers/nand/libnand.a
205LIBS += drivers/nand_legacy/libnand_legacy.a
Dave Liu7737d5c2006-11-03 12:11:15 -0600206ifeq ($(CPU),mpc83xx)
207LIBS += drivers/qe/qe.a
208endif
wdenk7152b1d2003-09-05 23:19:14 +0000209LIBS += drivers/sk98lin/libsk98lin.a
wdenk7ebf7442002-11-02 23:17:16 +0000210LIBS += post/libpost.a post/cpu/libcpu.a
211LIBS += common/libcommon.a
Bartlomiej Sieka038ccac2006-02-24 09:37:22 +0100212LIBS += $(BOARDLIBS)
Marian Balakowiczf9328632006-09-01 19:49:50 +0200213
214LIBS := $(addprefix $(obj),$(LIBS))
wdenk9fd5e312003-12-07 23:55:12 +0000215.PHONY : $(LIBS)
wdenka8c7c702003-12-06 19:49:23 +0000216
wdenk4f7cb082003-09-11 23:06:34 +0000217# Add GCC lib
wdenk1a344f22005-02-03 23:00:49 +0000218PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
wdenk3d3befa2004-03-14 15:06:13 +0000219
wdenka8c7c702003-12-06 19:49:23 +0000220# The "tools" are needed early, so put this first
221# Don't include stuff already done in $(LIBS)
222SUBDIRS = tools \
223 examples \
224 post \
225 post/cpu
wdenkb028f712003-12-07 21:39:28 +0000226.PHONY : $(SUBDIRS)
wdenka8c7c702003-12-06 19:49:23 +0000227
Stefan Roese887e2ec2006-09-07 11:51:23 +0200228ifeq ($(CONFIG_NAND_U_BOOT),y)
229NAND_SPL = nand_spl
230U_BOOT_NAND = $(obj)u-boot-nand.bin
231endif
232
Marian Balakowiczf9328632006-09-01 19:49:50 +0200233__OBJS := $(subst $(obj),,$(OBJS))
234__LIBS := $(subst $(obj),,$(LIBS))
235
wdenk7ebf7442002-11-02 23:17:16 +0000236#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000237#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000238
Stefan Roese887e2ec2006-09-07 11:51:23 +0200239ALL = $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND)
wdenk7ebf7442002-11-02 23:17:16 +0000240
wdenkbdccc4f2003-08-05 17:43:17 +0000241all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000242
Marian Balakowiczf9328632006-09-01 19:49:50 +0200243$(obj)u-boot.hex: $(obj)u-boot
wdenk6310eb92005-01-09 21:28:15 +0000244 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
245
Marian Balakowiczf9328632006-09-01 19:49:50 +0200246$(obj)u-boot.srec: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000247 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
248
Marian Balakowiczf9328632006-09-01 19:49:50 +0200249$(obj)u-boot.bin: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000250 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
251
Marian Balakowiczf9328632006-09-01 19:49:50 +0200252$(obj)u-boot.img: $(obj)u-boot.bin
wdenkbdccc4f2003-08-05 17:43:17 +0000253 ./tools/mkimage -A $(ARCH) -T firmware -C none \
254 -a $(TEXT_BASE) -e 0 \
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100255 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenkbdccc4f2003-08-05 17:43:17 +0000256 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
257 -d $< $@
258
Marian Balakowiczf9328632006-09-01 19:49:50 +0200259$(obj)u-boot.dis: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000260 $(OBJDUMP) -d $< > $@
261
Marian Balakowiczf9328632006-09-01 19:49:50 +0200262$(obj)u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
wdenk8bde7f72003-06-27 21:31:46 +0000263 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
Marian Balakowiczf9328632006-09-01 19:49:50 +0200264 cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
265 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000266 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000267
Marian Balakowiczf9328632006-09-01 19:49:50 +0200268$(OBJS):
269 $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@))
270
wdenka8c7c702003-12-06 19:49:23 +0000271$(LIBS):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200272 $(MAKE) -C $(dir $(subst $(obj),,$@))
wdenka8c7c702003-12-06 19:49:23 +0000273
274$(SUBDIRS):
wdenkb028f712003-12-07 21:39:28 +0000275 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000276
Stefan Roese887e2ec2006-09-07 11:51:23 +0200277$(NAND_SPL): version
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200278 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
Stefan Roese887e2ec2006-09-07 11:51:23 +0200279
280$(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200281 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 +0200282
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100283version:
284 @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \
285 echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \
286 echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \
287 $(TOPDIR)) >> $(VERSION_FILE); \
288 echo "\"" >> $(VERSION_FILE)
289
dzu8f713fd2003-08-07 14:20:31 +0000290gdbtools:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200291 $(MAKE) -C tools/gdb all || exit 1
292
293updater:
294 $(MAKE) -C tools/updater all || exit 1
295
296env:
297 $(MAKE) -C tools/env all || exit 1
dzu8f713fd2003-08-07 14:20:31 +0000298
wdenk7ebf7442002-11-02 23:17:16 +0000299depend dep:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200300 for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir _depend ; done
wdenk7ebf7442002-11-02 23:17:16 +0000301
Marian Balakowiczf9328632006-09-01 19:49:50 +0200302tags ctags:
303 ctags -w -o $(OBJTREE)/ctags `find $(SUBDIRS) include \
wdenkbda6c8a2004-04-15 21:58:11 +0000304 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
305 fs/cramfs fs/fat fs/fdos fs/jffs2 \
306 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000307 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
308
309etags:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200310 etags -a -o $(OBJTREE)/etags `find $(SUBDIRS) include \
wdenkeedcd072004-09-08 22:03:11 +0000311 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
312 fs/cramfs fs/fat fs/fdos fs/jffs2 \
313 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000314 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
315
Marian Balakowiczf9328632006-09-01 19:49:50 +0200316$(obj)System.map: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000317 @$(NM) $< | \
318 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200319 sort > $(obj)System.map
wdenk7ebf7442002-11-02 23:17:16 +0000320
321#########################################################################
322else
Marian Balakowiczf9328632006-09-01 19:49:50 +0200323all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
324$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
325$(SUBDIRS) version gdbtools updater env depend \
326dep tags ctags etags $(obj)System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000327 @echo "System not configured - see README" >&2
328 @ exit 1
329endif
330
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200331.PHONY : CHANGELOG
332CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -0400333 git log --no-merges U-Boot-1_1_5.. | \
334 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200335
wdenk7ebf7442002-11-02 23:17:16 +0000336#########################################################################
337
338unconfig:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200339 @rm -f $(obj)include/config.h $(obj)include/config.mk \
340 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp
wdenk7ebf7442002-11-02 23:17:16 +0000341
342#========================================================================
343# PowerPC
344#========================================================================
wdenk0db5bca2003-03-31 17:27:09 +0000345
346#########################################################################
347## MPC5xx Systems
348#########################################################################
349
wdenk5e5f9ed2005-04-13 23:15:10 +0000350canmb_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200351 @$(MKCONFIG) -a canmb ppc mpc5xxx canmb
wdenk5e5f9ed2005-04-13 23:15:10 +0000352
wdenk0db5bca2003-03-31 17:27:09 +0000353cmi_mpc5xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200354 @$(MKCONFIG) $(@:_config=) ppc mpc5xx cmi
wdenk0db5bca2003-03-31 17:27:09 +0000355
wdenkdb01a2e2004-04-15 23:14:49 +0000356PATI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200357 @$(MKCONFIG) $(@:_config=) ppc mpc5xx pati mpl
wdenkb6e4c402004-01-02 16:05:07 +0000358
wdenk7ebf7442002-11-02 23:17:16 +0000359#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000360## MPC5xxx Systems
361#########################################################################
wdenka87589d2005-06-10 10:00:19 +0000362
Wolfgang Denkdafba162005-08-12 00:22:49 +0200363aev_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200364 @$(MKCONFIG) -a aev ppc mpc5xxx tqm5200
Wolfgang Denkdafba162005-08-12 00:22:49 +0200365
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200366BC3450_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200367 @$(MKCONFIG) -a BC3450 ppc mpc5xxx bc3450
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200368
Stefan Roese5e4b3362005-08-22 17:51:53 +0200369cpci5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200370 @$(MKCONFIG) -a cpci5200 ppc mpc5xxx cpci5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200371
wdenka87589d2005-06-10 10:00:19 +0000372hmi1001_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200373 @$(MKCONFIG) hmi1001 ppc mpc5xxx hmi1001
wdenka87589d2005-06-10 10:00:19 +0000374
wdenke35745b2004-04-18 23:32:11 +0000375Lite5200_config \
376Lite5200_LOWBOOT_config \
377Lite5200_LOWBOOT08_config \
378icecube_5200_config \
379icecube_5200_LOWBOOT_config \
380icecube_5200_LOWBOOT08_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100381icecube_5200_DDR_config \
382icecube_5200_DDR_LOWBOOT_config \
wdenke35745b2004-04-18 23:32:11 +0000383icecube_5200_DDR_LOWBOOT08_config \
384icecube_5100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200385 @mkdir -p $(obj)include
386 @mkdir -p $(obj)board/icecube
387 @ >$(obj)include/config.h
wdenk17d704e2004-04-10 20:43:50 +0000388 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
389 { if [ "$(findstring DDR,$@)" ] ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200390 then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
391 else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
wdenk17d704e2004-04-10 20:43:50 +0000392 fi ; \
wdenk5cf9da42003-11-07 13:42:26 +0000393 echo "... with LOWBOOT configuration" ; \
394 }
395 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200396 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
wdenk5cf9da42003-11-07 13:42:26 +0000397 echo "... with 8 MB flash only" ; \
wdenk17d704e2004-04-10 20:43:50 +0000398 echo "... with LOWBOOT configuration" ; \
wdenk5cf9da42003-11-07 13:42:26 +0000399 }
wdenkb2001f22003-12-20 22:45:10 +0000400 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200401 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +0000402 echo "... DDR memory revision" ; \
403 }
wdenkd4ca31c2004-01-02 14:00:00 +0000404 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200405 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenkd4ca31c2004-01-02 14:00:00 +0000406 echo "... with MPC5200 processor" ; \
407 }
wdenka0f2fe52003-10-28 09:14:21 +0000408 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200409 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk945af8d2003-07-16 21:53:01 +0000410 echo "... with MGT5100 processor" ; \
411 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200412 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
wdenk945af8d2003-07-16 21:53:01 +0000413
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200414v38b_config: unconfig
Bartlomiej Sieka82d9c9e2006-11-01 01:34:29 +0100415 @./mkconfig -a v38b ppc mpc5xxx v38b
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200416
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100417inka4x0_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200418 @$(MKCONFIG) inka4x0 ppc mpc5xxx inka4x0
wdenk138ff602004-12-16 15:52:40 +0000419
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100420lite5200b_config \
421lite5200b_LOWBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200422 @mkdir -p $(obj)include
423 @mkdir -p $(obj)board/icecube
424 @ >$(obj)include/config.h
425 @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100426 @ echo "... DDR memory revision"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200427 @ echo "#define CONFIG_MPC5200" >>$(obj)include/config.h
428 @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100429 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200430 { echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100431 echo "... with LOWBOOT configuration" ; \
432 }
433 @ echo "... with MPC5200B processor"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200434 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100435
Stefan Roesef1ee9822006-03-04 14:57:03 +0100436mcc200_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200437mcc200_SDRAM_config \
438mcc200_highboot_config \
439mcc200_COM12_config \
440mcc200_COM12_SDRAM_config \
Wolfgang Denk113f64e2006-08-25 01:38:04 +0200441mcc200_COM12_highboot_config \
442mcc200_COM12_highboot_SDRAM_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200443mcc200_highboot_SDRAM_config \
444prs200_config \
445prs200_DDR_config \
446prs200_highboot_config \
447prs200_highboot_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200448 @mkdir -p $(obj)include
449 @mkdir -p $(obj)board/mcc200
450 @ >$(obj)include/config.h
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200451 @[ -n "$(findstring highboot,$@)" ] || \
452 { echo "... with lowboot configuration" ; \
Stefan Roesef1ee9822006-03-04 14:57:03 +0100453 }
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200454 @[ -z "$(findstring highboot,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200455 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200456 echo "... with highboot configuration" ; \
457 }
458 @[ -n "$(findstring _SDRAM,$@)" ] || \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200459 { if [ -n "$(findstring mcc200,$@)" ]; \
460 then \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100461 echo "... with DDR" ; \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200462 else \
463 if [ -n "$(findstring _DDR,$@)" ];\
464 then \
465 echo "... with DDR" ; \
466 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200467 echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200468 echo "... with SDRAM" ; \
469 fi; \
470 fi; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200471 }
472 @[ -z "$(findstring _SDRAM,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200473 { echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200474 echo "... with SDRAM" ; \
475 }
Wolfgang Denk463764c2006-08-17 00:36:51 +0200476 @[ -z "$(findstring COM12,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200477 { echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \
Wolfgang Denk463764c2006-08-17 00:36:51 +0200478 echo "... with console on COM12" ; \
479 }
Wolfgang Denked1cf842006-08-24 00:26:42 +0200480 @[ -z "$(findstring prs200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200481 { echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200482 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200483 @$(MKCONFIG) -n $@ -a mcc200 ppc mpc5xxx mcc200
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100484
Stefan Roese8b7d1f02007-01-31 16:37:34 +0100485mecp5200_config: unconfig
486 @$(MKCONFIG) -a mecp5200 ppc mpc5xxx mecp5200 esd
487
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200488o2dnt_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200489 @$(MKCONFIG) o2dnt ppc mpc5xxx o2dnt
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200490
Stefan Roese5e4b3362005-08-22 17:51:53 +0200491pf5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200492 @$(MKCONFIG) pf5200 ppc mpc5xxx pf5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200493
wdenk89394042004-08-04 21:56:49 +0000494PM520_config \
495PM520_DDR_config \
496PM520_ROMBOOT_config \
497PM520_ROMBOOT_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200498 @mkdir -p $(obj)include
499 @ >$(obj)include/config.h
wdenk89394042004-08-04 21:56:49 +0000500 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200501 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000502 echo "... DDR memory revision" ; \
503 }
504 @[ -z "$(findstring ROMBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200505 { echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000506 echo "... booting from 8-bit flash" ; \
507 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200508 @$(MKCONFIG) -a PM520 ppc mpc5xxx pm520
wdenk89394042004-08-04 21:56:49 +0000509
Wolfgang Denk6624b682006-02-22 10:25:39 +0100510smmaco4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200511 @$(MKCONFIG) -a smmaco4 ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100512
513spieval_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200514 @$(MKCONFIG) -a spieval ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100515
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200516TB5200_B_config \
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200517TB5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200518 @mkdir -p $(obj)include
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200519 @[ -z "$(findstring _B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200520 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200521 echo "... with MPC5200B processor" ; \
522 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200523 @$(MKCONFIG) -n $@ -a TB5200 ppc mpc5xxx tqm5200
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200524
wdenkd4ca31c2004-01-02 14:00:00 +0000525MINI5200_config \
526EVAL5200_config \
527TOP5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200528 @mkdir -p $(obj)include
529 @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
530 @$(MKCONFIG) -n $@ -a TOP5200 ppc mpc5xxx top5200 emk
wdenkd4ca31c2004-01-02 14:00:00 +0000531
wdenk6c7a1402004-07-11 19:17:20 +0000532Total5100_config \
533Total5200_config \
534Total5200_lowboot_config \
535Total5200_Rev2_config \
536Total5200_Rev2_lowboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200537 @mkdir -p $(obj)include
538 @mkdir -p $(obj)board/total5200
539 @ >$(obj)include/config.h
wdenk6c7a1402004-07-11 19:17:20 +0000540 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200541 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000542 echo "... with MGT5100 processor" ; \
543 }
544 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200545 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000546 echo "... with MPC5200 processor" ; \
547 }
548 @[ -n "$(findstring Rev,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200549 { echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000550 echo "... revision 1 board" ; \
551 }
552 @[ -z "$(findstring Rev2_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200553 { echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000554 echo "... revision 2 board" ; \
555 }
556 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200557 { echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp ; \
wdenk6c7a1402004-07-11 19:17:20 +0000558 echo "... with lowboot configuration" ; \
559 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200560 @$(MKCONFIG) -a Total5200 ppc mpc5xxx total5200
wdenk6c7a1402004-07-11 19:17:20 +0000561
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200562cam5200_config \
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100563cam5200_niosflash_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200564fo300_config \
565MiniFAP_config \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200566TQM5200S_config \
567TQM5200S_HIGHBOOT_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200568TQM5200_B_config \
569TQM5200_B_HIGHBOOT_config \
570TQM5200_config \
571TQM5200_STK100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200572 @mkdir -p $(obj)include
573 @mkdir -p $(obj)board/tqm5200
574 @ >$(obj)include/config.h
Wolfgang Denk135ae002006-07-22 01:20:03 +0200575 @[ -z "$(findstring cam5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200576 { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \
577 echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
578 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk135ae002006-07-22 01:20:03 +0200579 echo "... TQM5200S on Cam5200" ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200580 }
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100581 @[ -z "$(findstring niosflash,$@)" ] || \
582 { echo "#define CONFIG_CAM5200_NIOSFLASH" >>$(obj)include/config.h ; \
583 echo "... with NIOS flash driver" ; \
584 }
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200585 @[ -z "$(findstring fo300,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200586 { echo "#define CONFIG_FO300" >>$(obj)include/config.h ; \
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200587 echo "... TQM5200 on FO300" ; \
588 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200589 @[ -z "$(findstring MiniFAP,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200590 { echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200591 echo "... TQM5200_AC on MiniFAP" ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200592 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200593 @[ -z "$(findstring STK100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200594 { echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h ; \
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200595 echo "... on a STK52XX.100 base board" ; \
wdenk56523f12004-07-11 17:40:54 +0000596 }
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200597 @[ -z "$(findstring TQM5200_B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200598 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200599 }
600 @[ -z "$(findstring TQM5200S,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200601 { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
602 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200603 }
Wolfgang Denk978b1092006-07-19 18:01:38 +0200604 @[ -z "$(findstring HIGHBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200605 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200606 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200607 @$(MKCONFIG) -n $@ -a TQM5200 ppc mpc5xxx tqm5200
Heiko Schocher6dedf3d2006-12-21 16:14:48 +0100608uc101_config: unconfig
609 @$(MKCONFIG) uc101 ppc mpc5xxx uc101
wdenk56523f12004-07-11 17:40:54 +0000610
wdenk945af8d2003-07-16 21:53:01 +0000611#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000612## MPC8xx Systems
613#########################################################################
614
wdenk2d24a3a2004-06-09 21:50:45 +0000615Adder_config \
616Adder87x_config \
wdenk26238132004-07-09 22:51:01 +0000617AdderII_config \
wdenk2d24a3a2004-06-09 21:50:45 +0000618 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200619 @mkdir -p $(obj)include
wdenk26238132004-07-09 22:51:01 +0000620 $(if $(findstring AdderII,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200621 @echo "#define CONFIG_MPC852T" > $(obj)include/config.h)
622 @$(MKCONFIG) -a Adder ppc mpc8xx adder
wdenk2d24a3a2004-06-09 21:50:45 +0000623
wdenk180d3f72004-01-04 16:28:35 +0000624ADS860_config \
wdenk180d3f72004-01-04 16:28:35 +0000625FADS823_config \
626FADS850SAR_config \
627MPC86xADS_config \
wdenk11142572004-06-06 21:35:06 +0000628MPC885ADS_config \
wdenk180d3f72004-01-04 16:28:35 +0000629FADS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200630 @$(MKCONFIG) $(@:_config=) ppc mpc8xx fads
wdenk7ebf7442002-11-02 23:17:16 +0000631
632AMX860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200633 @$(MKCONFIG) $(@:_config=) ppc mpc8xx amx860 westel
wdenk7ebf7442002-11-02 23:17:16 +0000634
635c2mon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200636 @$(MKCONFIG) $(@:_config=) ppc mpc8xx c2mon
wdenk7ebf7442002-11-02 23:17:16 +0000637
638CCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200639 @$(MKCONFIG) $(@:_config=) ppc mpc8xx CCM siemens
wdenk7ebf7442002-11-02 23:17:16 +0000640
641cogent_mpc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200642 @$(MKCONFIG) $(@:_config=) ppc mpc8xx cogent
wdenk7ebf7442002-11-02 23:17:16 +0000643
wdenk3bac3512003-03-12 10:41:04 +0000644ELPT860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200645 @$(MKCONFIG) $(@:_config=) ppc mpc8xx elpt860 LEOX
wdenk3bac3512003-03-12 10:41:04 +0000646
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100647EP88x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200648 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ep88x
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100649
wdenk7ebf7442002-11-02 23:17:16 +0000650ESTEEM192E_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200651 @$(MKCONFIG) $(@:_config=) ppc mpc8xx esteem192e
wdenk7ebf7442002-11-02 23:17:16 +0000652
653ETX094_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200654 @$(MKCONFIG) $(@:_config=) ppc mpc8xx etx094
wdenk7ebf7442002-11-02 23:17:16 +0000655
wdenk7ebf7442002-11-02 23:17:16 +0000656FLAGADM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200657 @$(MKCONFIG) $(@:_config=) ppc mpc8xx flagadm
wdenk7ebf7442002-11-02 23:17:16 +0000658
wdenk7aa78612003-05-03 15:50:43 +0000659xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
660
661GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000662GEN860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200663 @mkdir -p $(obj)include
664 @ >$(obj)include/config.h
wdenk7aa78612003-05-03 15:50:43 +0000665 @[ -z "$(findstring _SC,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200666 { echo "#define CONFIG_SC" >>$(obj)include/config.h ; \
wdenk7aa78612003-05-03 15:50:43 +0000667 echo "With reduced H/W feature set (SC)..." ; \
668 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200669 @$(MKCONFIG) -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000670
671GENIETV_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200672 @$(MKCONFIG) $(@:_config=) ppc mpc8xx genietv
wdenk7ebf7442002-11-02 23:17:16 +0000673
674GTH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200675 @$(MKCONFIG) $(@:_config=) ppc mpc8xx gth
wdenk7ebf7442002-11-02 23:17:16 +0000676
677hermes_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200678 @$(MKCONFIG) $(@:_config=) ppc mpc8xx hermes
wdenk7ebf7442002-11-02 23:17:16 +0000679
wdenkc40b2952004-03-13 23:29:43 +0000680HMI10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200681 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenkc40b2952004-03-13 23:29:43 +0000682
wdenk7ebf7442002-11-02 23:17:16 +0000683IAD210_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200684 @$(MKCONFIG) $(@:_config=) ppc mpc8xx IAD210 siemens
wdenk7ebf7442002-11-02 23:17:16 +0000685
686xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
687
688ICU862_100MHz_config \
689ICU862_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200690 @mkdir -p $(obj)include
691 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000692 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200693 { echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000694 echo "... with 100MHz system clock" ; \
695 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200696 @$(MKCONFIG) -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
wdenk7ebf7442002-11-02 23:17:16 +0000697
698IP860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200699 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ip860
wdenk7ebf7442002-11-02 23:17:16 +0000700
701IVML24_256_config \
702IVML24_128_config \
703IVML24_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200704 @mkdir -p $(obj)include
705 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000706 @[ -z "$(findstring IVML24_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200707 { echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000708 }
709 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200710 { echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000711 }
712 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200713 { echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000714 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200715 @$(MKCONFIG) -a IVML24 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000716
717IVMS8_256_config \
718IVMS8_128_config \
719IVMS8_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200720 @mkdir -p $(obj)include
721 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000722 @[ -z "$(findstring IVMS8_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200723 { echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000724 }
725 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200726 { echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000727 }
728 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200729 { echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000730 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200731 @$(MKCONFIG) -a IVMS8 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000732
wdenk56f94be2002-11-05 16:35:14 +0000733KUP4K_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200734 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4k kup
wdenk0608e042004-03-25 19:29:38 +0000735
736KUP4X_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200737 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000738
wdenk7ebf7442002-11-02 23:17:16 +0000739LANTEC_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200740 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lantec
wdenk7ebf7442002-11-02 23:17:16 +0000741
742lwmon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200743 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lwmon
wdenk7ebf7442002-11-02 23:17:16 +0000744
745MBX_config \
746MBX860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200747 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mbx8xx
wdenk7ebf7442002-11-02 23:17:16 +0000748
749MHPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200750 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mhpc eltec
wdenk7ebf7442002-11-02 23:17:16 +0000751
752MVS1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200753 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mvs1
wdenk7ebf7442002-11-02 23:17:16 +0000754
wdenk993cad92003-06-26 22:04:09 +0000755xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
756
757NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000758NETVIA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200759 @mkdir -p $(obj)include
760 @ >$(obj)include/config.h
wdenk993cad92003-06-26 22:04:09 +0000761 @[ -z "$(findstring NETVIA_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200762 { echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000763 echo "... Version 1" ; \
764 }
765 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200766 { echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000767 echo "... Version 2" ; \
768 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200769 @$(MKCONFIG) -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000770
wdenkc26e4542004-04-18 10:13:26 +0000771xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
772
773NETPHONE_V2_config \
wdenk04a85b32004-04-15 18:22:41 +0000774NETPHONE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200775 @mkdir -p $(obj)include
776 @ >$(obj)include/config.h
wdenkc26e4542004-04-18 10:13:26 +0000777 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200778 { echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000779 }
780 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200781 { echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000782 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200783 @$(MKCONFIG) -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk04a85b32004-04-15 18:22:41 +0000784
wdenk79fa88f2004-06-07 23:46:25 +0000785xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk04a85b32004-04-15 18:22:41 +0000786
wdenk79fa88f2004-06-07 23:46:25 +0000787NETTA_ISDN_6412_SWAPHOOK_config \
788NETTA_ISDN_SWAPHOOK_config \
789NETTA_6412_SWAPHOOK_config \
790NETTA_SWAPHOOK_config \
791NETTA_ISDN_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000792NETTA_ISDN_config \
wdenk79fa88f2004-06-07 23:46:25 +0000793NETTA_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000794NETTA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200795 @mkdir -p $(obj)include
796 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000797 @[ -z "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200798 { echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \
wdenk04a85b32004-04-15 18:22:41 +0000799 }
wdenk79fa88f2004-06-07 23:46:25 +0000800 @[ -n "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200801 { echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000802 }
803 @[ -z "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200804 { echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000805 }
806 @[ -n "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200807 { echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000808 }
809 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200810 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000811 }
812 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200813 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000814 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200815 @$(MKCONFIG) -a $(call xtract_NETTA,$@) ppc mpc8xx netta
wdenk04a85b32004-04-15 18:22:41 +0000816
wdenk79fa88f2004-06-07 23:46:25 +0000817xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
818
819NETTA2_V2_config \
820NETTA2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200821 @mkdir -p $(obj)include
822 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000823 @[ -z "$(findstring NETTA2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200824 { echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000825 }
826 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200827 { echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000828 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200829 @$(MKCONFIG) -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
wdenk79fa88f2004-06-07 23:46:25 +0000830
dzu@denx.dea367d422006-04-19 11:52:46 +0200831NC650_Rev1_config \
832NC650_Rev2_config \
833CP850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200834 @mkdir -p $(obj)include
835 @ >$(obj)include/config.h
dzu@denx.dea367d422006-04-19 11:52:46 +0200836 @[ -z "$(findstring CP850,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200837 { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \
838 echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200839 }
840 @[ -z "$(findstring Rev1,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200841 { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200842 }
843 @[ -z "$(findstring Rev2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200844 { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200845 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200846 @$(MKCONFIG) -a NC650 ppc mpc8xx nc650
wdenk7ca202f2004-08-28 22:45:57 +0000847
wdenk7ebf7442002-11-02 23:17:16 +0000848NX823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200849 @$(MKCONFIG) $(@:_config=) ppc mpc8xx nx823
wdenk7ebf7442002-11-02 23:17:16 +0000850
851pcu_e_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200852 @$(MKCONFIG) $(@:_config=) ppc mpc8xx pcu_e siemens
wdenk7ebf7442002-11-02 23:17:16 +0000853
wdenk3bbc8992003-12-07 22:27:15 +0000854QS850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200855 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000856
857QS823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200858 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000859
860QS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200861 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs860t snmc
wdenk3bbc8992003-12-07 22:27:15 +0000862
wdenkda93ed82004-09-29 11:02:56 +0000863quantum_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200864 @$(MKCONFIG) $(@:_config=) ppc mpc8xx quantum
wdenkda93ed82004-09-29 11:02:56 +0000865
wdenk7ebf7442002-11-02 23:17:16 +0000866R360MPI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200867 @$(MKCONFIG) $(@:_config=) ppc mpc8xx r360mpi
wdenk7ebf7442002-11-02 23:17:16 +0000868
wdenk682011f2003-06-03 23:54:09 +0000869RBC823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200870 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rbc823
wdenk682011f2003-06-03 23:54:09 +0000871
wdenk7ebf7442002-11-02 23:17:16 +0000872RPXClassic_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200873 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXClassic
wdenk7ebf7442002-11-02 23:17:16 +0000874
875RPXlite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200876 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXlite
wdenk7ebf7442002-11-02 23:17:16 +0000877
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100878RPXlite_DW_64_config \
879RPXlite_DW_LCD_config \
880RPXlite_DW_64_LCD_config \
wdenke63c8ee2004-06-09 21:04:48 +0000881RPXlite_DW_NVRAM_config \
882RPXlite_DW_NVRAM_64_config \
883RPXlite_DW_NVRAM_LCD_config \
884RPXlite_DW_NVRAM_64_LCD_config \
885RPXlite_DW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200886 @mkdir -p $(obj)include
887 @ >$(obj)include/config.h
wdenke63c8ee2004-06-09 21:04:48 +0000888 @[ -z "$(findstring _64,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200889 { echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000890 echo "... with 64MHz system clock ..."; \
891 }
892 @[ -z "$(findstring _LCD,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100893 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200894 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000895 echo "... with LCD display ..."; \
896 }
897 @[ -z "$(findstring _NVRAM,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100898 { echo "#define CFG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000899 echo "... with ENV in NVRAM ..."; \
900 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200901 @$(MKCONFIG) -a RPXlite_DW ppc mpc8xx RPXlite_dw
wdenke63c8ee2004-06-09 21:04:48 +0000902
wdenk73a8b272003-06-05 19:27:42 +0000903rmu_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200904 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rmu
wdenk73a8b272003-06-05 19:27:42 +0000905
wdenk7ebf7442002-11-02 23:17:16 +0000906RRvision_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200907 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000908
909RRvision_LCD_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200910 @mkdir -p $(obj)include
911 @echo "#define CONFIG_LCD" >$(obj)include/config.h
912 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
913 @$(MKCONFIG) -a RRvision ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000914
915SM850_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200916 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000917
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200918spc1920_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200919 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spc1920
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200920
wdenk7ebf7442002-11-02 23:17:16 +0000921SPD823TS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200922 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spd8xx
wdenk7ebf7442002-11-02 23:17:16 +0000923
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200924stxxtc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200925 @$(MKCONFIG) $(@:_config=) ppc mpc8xx stxxtc
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200926
wdenkdc7c9a12003-03-26 06:55:25 +0000927svm_sc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200928 @$(MKCONFIG) $(@:_config=) ppc mpc8xx svm_sc8xx
wdenkdc7c9a12003-03-26 06:55:25 +0000929
wdenk7ebf7442002-11-02 23:17:16 +0000930SXNI855T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200931 @$(MKCONFIG) $(@:_config=) ppc mpc8xx sixnet
wdenk7ebf7442002-11-02 23:17:16 +0000932
wdenkdb2f721f2003-03-06 00:58:30 +0000933# EMK MPC8xx based modules
934TOP860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200935 @$(MKCONFIG) $(@:_config=) ppc mpc8xx top860 emk
wdenkdb2f721f2003-03-06 00:58:30 +0000936
wdenk7ebf7442002-11-02 23:17:16 +0000937# Play some tricks for configuration selection
wdenke9132ea2004-04-24 23:23:30 +0000938# Only 855 and 860 boards may come with FEC
939# and only 823 boards may have LCD support
940xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +0000941
942FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000943FPS860L_config \
wdenkf12e5682003-07-07 20:07:54 +0000944NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +0000945TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000946TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +0000947TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000948TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000949TQM860L_config \
wdenkd126bfb2003-04-10 11:18:18 +0000950TQM862L_config \
wdenkae3af052003-08-07 22:18:11 +0000951TQM823M_config \
wdenkae3af052003-08-07 22:18:11 +0000952TQM850M_config \
wdenkf12e5682003-07-07 20:07:54 +0000953TQM855M_config \
wdenkf12e5682003-07-07 20:07:54 +0000954TQM860M_config \
wdenkf12e5682003-07-07 20:07:54 +0000955TQM862M_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200956TQM866M_config \
Markus Klotzbuecher090eb732006-07-12 15:26:01 +0200957TQM885D_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200958virtlab2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200959 @mkdir -p $(obj)include
960 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000961 @[ -z "$(findstring _LCD,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200962 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
963 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000964 echo "... with LCD display" ; \
965 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200966 @$(MKCONFIG) -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000967
968TTTech_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200969 @mkdir -p $(obj)include
970 @echo "#define CONFIG_LCD" >$(obj)include/config.h
971 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
972 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000973
wdenkec0aee72004-12-19 09:58:11 +0000974uc100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200975 @$(MKCONFIG) $(@:_config=) ppc mpc8xx uc100
wdenkf7d15722004-12-18 22:35:43 +0000976
wdenk608c9142003-01-13 23:54:46 +0000977v37_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200978 @mkdir -p $(obj)include
979 @echo "#define CONFIG_LCD" >$(obj)include/config.h
980 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h
981 @$(MKCONFIG) $(@:_config=) ppc mpc8xx v37
wdenk608c9142003-01-13 23:54:46 +0000982
dzu91e940d2003-09-25 22:32:40 +0000983wtk_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200984 @mkdir -p $(obj)include
985 @echo "#define CONFIG_LCD" >$(obj)include/config.h
986 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h
987 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
dzu91e940d2003-09-25 22:32:40 +0000988
wdenk7ebf7442002-11-02 23:17:16 +0000989#########################################################################
990## PPC4xx Systems
991#########################################################################
wdenke55ca7e2004-07-01 21:40:08 +0000992xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +0000993
994ADCIOP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200995 @$(MKCONFIG) $(@:_config=) ppc ppc4xx adciop esd
wdenk7ebf7442002-11-02 23:17:16 +0000996
Stefan Roese899620c2006-08-15 14:22:35 +0200997alpr_config: unconfig
998 @./mkconfig $(@:_config=) ppc ppc4xx alpr prodrive
999
Wolfgang Denk7521af12005-10-09 01:04:33 +02001000AP1000_config:unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001001 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ap1000 amirix
Wolfgang Denk7521af12005-10-09 01:04:33 +02001002
stroesec419d1d2004-12-16 18:44:40 +00001003APC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001004 @$(MKCONFIG) $(@:_config=) ppc ppc4xx apc405 esd
stroesec419d1d2004-12-16 18:44:40 +00001005
wdenk7ebf7442002-11-02 23:17:16 +00001006AR405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001007 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ar405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001008
stroese549826e2003-05-23 11:41:44 +00001009ASH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001010 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ash405 esd
stroese549826e2003-05-23 11:41:44 +00001011
Stefan Roese8a316c92005-08-01 16:49:12 +02001012bamboo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001013 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bamboo amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001014
1015bubinga_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001016 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bubinga amcc
stroese549826e2003-05-23 11:41:44 +00001017
wdenk7ebf7442002-11-02 23:17:16 +00001018CANBT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001019 @$(MKCONFIG) $(@:_config=) ppc ppc4xx canbt esd
wdenk7ebf7442002-11-02 23:17:16 +00001020
wdenk1d6f9722004-09-09 17:44:35 +00001021CATcenter_config \
1022CATcenter_25_config \
1023CATcenter_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001024 @mkdir -p $(obj)include
1025 @ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h
1026 @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001027 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001028 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001029 echo "SysClk = 25MHz" ; \
1030 }
1031 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001032 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001033 echo "SysClk = 33MHz" ; \
1034 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001035 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk10767cc2004-05-13 13:23:58 +00001036
Stefan Roese7644f162005-09-22 09:16:57 +02001037CPCI2DP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001038 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd
Stefan Roese7644f162005-09-22 09:16:57 +02001039
stroese549826e2003-05-23 11:41:44 +00001040CPCI405_config \
1041CPCI4052_config \
stroesec419d1d2004-12-16 18:44:40 +00001042CPCI405DT_config \
stroese549826e2003-05-23 11:41:44 +00001043CPCI405AB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001044 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci405 esd
1045 @echo "BOARD_REVISION = $(@:_config=)" >> $(obj)include/config.mk
wdenk7ebf7442002-11-02 23:17:16 +00001046
1047CPCI440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001048 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci440 esd
wdenk7ebf7442002-11-02 23:17:16 +00001049
1050CPCIISER4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001051 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpciiser4 esd
wdenk7ebf7442002-11-02 23:17:16 +00001052
wdenkdb01a2e2004-04-15 23:14:49 +00001053CRAYL1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001054 @$(MKCONFIG) $(@:_config=) ppc ppc4xx L1 cray
wdenk7ebf7442002-11-02 23:17:16 +00001055
wdenkcd0a9de2004-02-23 20:48:38 +00001056csb272_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001057 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb272
wdenkcd0a9de2004-02-23 20:48:38 +00001058
wdenkaa245092004-06-09 12:47:02 +00001059csb472_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001060 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb472
wdenkaa245092004-06-09 12:47:02 +00001061
wdenk7ebf7442002-11-02 23:17:16 +00001062DASA_SIM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001063 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dasa_sim esd
wdenk7ebf7442002-11-02 23:17:16 +00001064
stroese72cd5aa2003-09-12 08:57:15 +00001065DP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001066 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dp405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001067
wdenk7ebf7442002-11-02 23:17:16 +00001068DU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001069 @$(MKCONFIG) $(@:_config=) ppc ppc4xx du405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001070
Stefan Roese8a316c92005-08-01 16:49:12 +02001071ebony_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001072 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +00001073
wdenkdb01a2e2004-04-15 23:14:49 +00001074ERIC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001075 @$(MKCONFIG) $(@:_config=) ppc ppc4xx eric
wdenk7ebf7442002-11-02 23:17:16 +00001076
wdenkdb01a2e2004-04-15 23:14:49 +00001077EXBITGEN_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001078 @$(MKCONFIG) $(@:_config=) ppc ppc4xx exbitgen
wdenkd1cbe852003-06-28 17:24:46 +00001079
stroesec419d1d2004-12-16 18:44:40 +00001080G2000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001081 @$(MKCONFIG) $(@:_config=) ppc ppc4xx g2000
stroesec419d1d2004-12-16 18:44:40 +00001082
1083HH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001084 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001085
stroese72cd5aa2003-09-12 08:57:15 +00001086HUB405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001087 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001088
wdenkdb01a2e2004-04-15 23:14:49 +00001089JSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001090 @$(MKCONFIG) $(@:_config=) ppc ppc4xx jse
wdenkdb01a2e2004-04-15 23:14:49 +00001091
Stefan Roeseb79316f2005-08-15 12:31:23 +02001092KAREF_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001093 @$(MKCONFIG) $(@:_config=) ppc ppc4xx karef sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001094
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001095luan_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001096 @$(MKCONFIG) $(@:_config=) ppc ppc4xx luan amcc
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001097
Stefan Roeseb79316f2005-08-15 12:31:23 +02001098METROBOX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001099 @$(MKCONFIG) $(@:_config=) ppc ppc4xx metrobox sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001100
wdenkdb01a2e2004-04-15 23:14:49 +00001101MIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001102 @$(MKCONFIG) $(@:_config=) ppc ppc4xx mip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001103
wdenkdb01a2e2004-04-15 23:14:49 +00001104MIP405T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001105 @mkdir -p $(obj)include
1106 @echo "#define CONFIG_MIP405T" >$(obj)include/config.h
wdenkf3e0de62003-06-04 15:05:30 +00001107 @echo "Enable subset config for MIP405T"
Marian Balakowiczf9328632006-09-01 19:49:50 +02001108 @$(MKCONFIG) -a MIP405 ppc ppc4xx mip405 mpl
wdenkf3e0de62003-06-04 15:05:30 +00001109
wdenkdb01a2e2004-04-15 23:14:49 +00001110ML2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001111 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml2
wdenk7ebf7442002-11-02 23:17:16 +00001112
wdenkdb01a2e2004-04-15 23:14:49 +00001113ml300_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001114 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml300 xilinx
wdenk028ab6b2004-02-23 23:54:43 +00001115
Stefan Roese8a316c92005-08-01 16:49:12 +02001116ocotea_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001117 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocotea amcc
wdenk0e6d7982004-03-14 00:07:33 +00001118
wdenk7ebf7442002-11-02 23:17:16 +00001119OCRTC_config \
1120ORSG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001121 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocrtc esd
wdenk7ebf7442002-11-02 23:17:16 +00001122
Stefan Roese5568e612005-11-22 13:20:42 +01001123p3p440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001124 @$(MKCONFIG) $(@:_config=) ppc ppc4xx p3p440 prodrive
Stefan Roese5568e612005-11-22 13:20:42 +01001125
wdenk7ebf7442002-11-02 23:17:16 +00001126PCI405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001127 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pci405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001128
Stefan Roesea4c8d132006-06-02 16:18:04 +02001129pcs440ep_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001130 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pcs440ep
Stefan Roesea4c8d132006-06-02 16:18:04 +02001131
wdenkdb01a2e2004-04-15 23:14:49 +00001132PIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001133 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001134
stroese72cd5aa2003-09-12 08:57:15 +00001135PLU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001136 @$(MKCONFIG) $(@:_config=) ppc ppc4xx plu405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001137
stroese549826e2003-05-23 11:41:44 +00001138PMC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001139 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pmc405 esd
stroese549826e2003-05-23 11:41:44 +00001140
wdenk281e00a2004-08-01 22:48:16 +00001141PPChameleonEVB_config \
wdenke55ca7e2004-07-01 21:40:08 +00001142PPChameleonEVB_BA_25_config \
1143PPChameleonEVB_ME_25_config \
1144PPChameleonEVB_HI_25_config \
1145PPChameleonEVB_BA_33_config \
1146PPChameleonEVB_ME_33_config \
1147PPChameleonEVB_HI_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001148 @mkdir -p $(obj)include
1149 @ >$(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001150 @[ -z "$(findstring EVB_BA,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001151 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001152 echo "... BASIC model" ; \
1153 }
wdenk1d6f9722004-09-09 17:44:35 +00001154 @[ -z "$(findstring EVB_ME,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001155 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001156 echo "... MEDIUM model" ; \
1157 }
wdenk1d6f9722004-09-09 17:44:35 +00001158 @[ -z "$(findstring EVB_HI,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001159 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001160 echo "... HIGH-END model" ; \
1161 }
wdenke55ca7e2004-07-01 21:40:08 +00001162 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001163 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001164 echo "SysClk = 25MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001165 }
1166 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001167 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001168 echo "SysClk = 33MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001169 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001170 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk12f34242003-09-02 22:48:03 +00001171
Stefan Roese854bc8d2006-09-13 13:51:58 +02001172rainier_config: unconfig
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001173 @mkdir -p $(obj)include
1174 @echo "#define CONFIG_RAINIER" > $(obj)include/config.h
Stefan Roese2aa54f62007-02-02 12:42:08 +01001175 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Stefan Roese854bc8d2006-09-13 13:51:58 +02001176
1177rainier_nand_config: unconfig
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001178 @mkdir -p $(obj)include
1179 @mkdir -p $(obj)nand_spl
1180 @mkdir -p $(obj)board/amcc/sequoia
1181 @echo "#define CONFIG_RAINIER" > $(obj)include/config.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001182 @echo "#define CONFIG_NAND_U_BOOT" >> $(obj)include/config.h
Stefan Roese854bc8d2006-09-13 13:51:58 +02001183 @echo "Compile NAND boot image for sequoia"
Stefan Roese2aa54f62007-02-02 12:42:08 +01001184 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001185 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1186 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
wdenk7ebf7442002-11-02 23:17:16 +00001187
wdenk652a10c2005-01-09 23:48:14 +00001188sbc405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001189 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sbc405
wdenk652a10c2005-01-09 23:48:14 +00001190
Stefan Roese887e2ec2006-09-07 11:51:23 +02001191sequoia_config: unconfig
1192 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sequoia amcc
1193
1194sequoia_nand_config: unconfig
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001195 @mkdir -p $(obj)include
1196 @mkdir -p $(obj)nand_spl
1197 @mkdir -p $(obj)board/amcc/sequoia
1198 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roese887e2ec2006-09-07 11:51:23 +02001199 @echo "Compile NAND boot image for sequoia"
1200 @$(MKCONFIG) -a sequoia ppc ppc4xx sequoia amcc
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001201 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1202 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
stroese72cd5aa2003-09-12 08:57:15 +00001203
Wolfgang Denk6d3e0102007-01-16 18:30:50 +01001204sc3_config:unconfig
1205 @./mkconfig $(@:_config=) ppc ppc4xx sc3
Heiko Schocherca43ba12007-01-11 15:44:44 +01001206
Stefan Roese8a316c92005-08-01 16:49:12 +02001207sycamore_config: unconfig
Stefan Roese2aa54f62007-02-02 12:42:08 +01001208 @$(MKCONFIG) -n $@ -a walnut ppc ppc4xx walnut amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001209
Stefan Roese5fb692c2007-01-18 10:25:34 +01001210taishan_config: unconfig
1211 @$(MKCONFIG) $(@:_config=) ppc ppc4xx taishan amcc
1212
wdenk7ebf7442002-11-02 23:17:16 +00001213VOH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001214 @$(MKCONFIG) $(@:_config=) ppc ppc4xx voh405 esd
wdenk3bac3512003-03-12 10:41:04 +00001215
stroesec419d1d2004-12-16 18:44:40 +00001216VOM405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001217 @$(MKCONFIG) $(@:_config=) ppc ppc4xx vom405 esd
stroesec419d1d2004-12-16 18:44:40 +00001218
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001219CMS700_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001220 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001221
wdenk7ebf7442002-11-02 23:17:16 +00001222W7OLMC_config \
1223W7OLMG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001224 @$(MKCONFIG) $(@:_config=) ppc ppc4xx w7o
wdenk7ebf7442002-11-02 23:17:16 +00001225
Stefan Roese8a316c92005-08-01 16:49:12 +02001226walnut_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001227 @$(MKCONFIG) $(@:_config=) ppc ppc4xx walnut amcc
wdenk7ebf7442002-11-02 23:17:16 +00001228
stroesec419d1d2004-12-16 18:44:40 +00001229WUH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001230 @$(MKCONFIG) $(@:_config=) ppc ppc4xx wuh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001231
wdenkdb01a2e2004-04-15 23:14:49 +00001232XPEDITE1K_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001233 @$(MKCONFIG) $(@:_config=) ppc ppc4xx xpedite1k
wdenkba56f622004-02-06 23:19:44 +00001234
Stefan Roese8a316c92005-08-01 16:49:12 +02001235yosemite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001236 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yosemite amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001237
1238yellowstone_config: unconfig
Stefan Roese700200c2007-01-30 17:04:19 +01001239 @mkdir -p $(obj)include
1240 @echo "#define CONFIG_YELLOWSTONE" > $(obj)include/config.h
Stefan Roese2aa54f62007-02-02 12:42:08 +01001241 @$(MKCONFIG) -n $@ -a yosemite ppc ppc4xx yosemite amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001242
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001243yucca_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001244 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yucca amcc
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001245
wdenk7ebf7442002-11-02 23:17:16 +00001246#########################################################################
wdenk983fda82004-10-28 00:09:35 +00001247## MPC8220 Systems
1248#########################################################################
Wolfgang Denkdc17fb62005-08-03 22:32:02 +02001249
1250Alaska8220_config \
1251Yukon8220_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001252 @$(MKCONFIG) $(@:_config=) ppc mpc8220 alaska
wdenk983fda82004-10-28 00:09:35 +00001253
wdenk12b43d52005-04-05 21:57:18 +00001254sorcery_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001255 @$(MKCONFIG) $(@:_config=) ppc mpc8220 sorcery
wdenk12b43d52005-04-05 21:57:18 +00001256
wdenk983fda82004-10-28 00:09:35 +00001257#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001258## MPC824x Systems
1259#########################################################################
wdenkefa329c2004-03-23 20:18:25 +00001260xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001261
wdenk03329902003-06-20 22:36:30 +00001262A3000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001263 @$(MKCONFIG) $(@:_config=) ppc mpc824x a3000
wdenk03329902003-06-20 22:36:30 +00001264
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001265barco_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001266 @$(MKCONFIG) $(@:_config=) ppc mpc824x barco
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001267
wdenk7ebf7442002-11-02 23:17:16 +00001268BMW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001269 @$(MKCONFIG) $(@:_config=) ppc mpc824x bmw
wdenk7ebf7442002-11-02 23:17:16 +00001270
wdenk3bac3512003-03-12 10:41:04 +00001271CPC45_config \
1272CPC45_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001273 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc824x cpc45
1274 @cd $(obj)include ; \
wdenk3bac3512003-03-12 10:41:04 +00001275 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1276 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1277 echo "... booting from 8-bit flash" ; \
1278 else \
1279 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1280 echo "... booting from 64-bit flash" ; \
1281 fi; \
1282 echo "export CONFIG_BOOT_ROM" >> config.mk;
1283
wdenk7ebf7442002-11-02 23:17:16 +00001284CU824_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001285 @$(MKCONFIG) $(@:_config=) ppc mpc824x cu824
wdenk7ebf7442002-11-02 23:17:16 +00001286
wdenk7abf0c52004-04-18 21:45:42 +00001287debris_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001288 @$(MKCONFIG) $(@:_config=) ppc mpc824x debris etin
wdenk7abf0c52004-04-18 21:45:42 +00001289
wdenk80885a92004-02-26 23:46:20 +00001290eXalion_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001291 @$(MKCONFIG) $(@:_config=) ppc mpc824x eXalion
wdenk80885a92004-02-26 23:46:20 +00001292
wdenk756f5862005-04-03 15:51:42 +00001293HIDDEN_DRAGON_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001294 @$(MKCONFIG) $(@:_config=) ppc mpc824x hidden_dragon
wdenk756f5862005-04-03 15:51:42 +00001295
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001296kvme080_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001297 @$(MKCONFIG) $(@:_config=) ppc mpc824x kvme080 etin
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001298
wdenk7ebf7442002-11-02 23:17:16 +00001299MOUSSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001300 @$(MKCONFIG) $(@:_config=) ppc mpc824x mousse
wdenk7ebf7442002-11-02 23:17:16 +00001301
1302MUSENKI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001303 @$(MKCONFIG) $(@:_config=) ppc mpc824x musenki
wdenk7ebf7442002-11-02 23:17:16 +00001304
wdenkb4676a22003-12-07 19:24:00 +00001305MVBLUE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001306 @$(MKCONFIG) $(@:_config=) ppc mpc824x mvblue
wdenkb4676a22003-12-07 19:24:00 +00001307
wdenk7ebf7442002-11-02 23:17:16 +00001308OXC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001309 @$(MKCONFIG) $(@:_config=) ppc mpc824x oxc
wdenk7ebf7442002-11-02 23:17:16 +00001310
1311PN62_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001312 @$(MKCONFIG) $(@:_config=) ppc mpc824x pn62
wdenk7ebf7442002-11-02 23:17:16 +00001313
1314Sandpoint8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001315 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001316
1317Sandpoint8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001318 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001319
wdenk466b7412004-07-10 22:35:59 +00001320sbc8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001321 @$(MKCONFIG) $(@:_config=) ppc mpc824x sbc8240
wdenk466b7412004-07-10 22:35:59 +00001322
wdenkd1cbe852003-06-28 17:24:46 +00001323SL8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001324 @$(MKCONFIG) $(@:_config=) ppc mpc824x sl8245
wdenkd1cbe852003-06-28 17:24:46 +00001325
wdenk7ebf7442002-11-02 23:17:16 +00001326utx8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001327 @$(MKCONFIG) $(@:_config=) ppc mpc824x utx8245
wdenk7ebf7442002-11-02 23:17:16 +00001328
1329#########################################################################
1330## MPC8260 Systems
1331#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001332
wdenk54387ac2003-10-08 22:45:44 +00001333atc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001334 @$(MKCONFIG) $(@:_config=) ppc mpc8260 atc
wdenk54387ac2003-10-08 22:45:44 +00001335
wdenk7ebf7442002-11-02 23:17:16 +00001336cogent_mpc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001337 @$(MKCONFIG) $(@:_config=) ppc mpc8260 cogent
wdenk7ebf7442002-11-02 23:17:16 +00001338
1339CPU86_config \
1340CPU86_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001341 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu86
1342 @cd $(obj)include ; \
wdenk7ebf7442002-11-02 23:17:16 +00001343 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1344 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1345 echo "... booting from 8-bit flash" ; \
1346 else \
1347 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1348 echo "... booting from 64-bit flash" ; \
1349 fi; \
1350 echo "export CONFIG_BOOT_ROM" >> config.mk;
1351
wdenk384cc682005-04-03 22:35:21 +00001352CPU87_config \
1353CPU87_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001354 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu87
1355 @cd $(obj)include ; \
wdenk384cc682005-04-03 22:35:21 +00001356 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1357 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1358 echo "... booting from 8-bit flash" ; \
1359 else \
1360 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1361 echo "... booting from 64-bit flash" ; \
1362 fi; \
1363 echo "export CONFIG_BOOT_ROM" >> config.mk;
1364
Wolfgang Denkf901a832005-08-06 01:42:58 +02001365ep8248_config \
1366ep8248E_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001367 @$(MKCONFIG) ep8248 ppc mpc8260 ep8248
Wolfgang Denkf901a832005-08-06 01:42:58 +02001368
wdenk7ebf7442002-11-02 23:17:16 +00001369ep8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001370 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep8260
wdenk7ebf7442002-11-02 23:17:16 +00001371
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001372ep82xxm_config: unconfig
1373 @./mkconfig $(@:_config=) ppc mpc8260 ep82xxm
1374
wdenk7ebf7442002-11-02 23:17:16 +00001375gw8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001376 @$(MKCONFIG) $(@:_config=) ppc mpc8260 gw8260
wdenk7ebf7442002-11-02 23:17:16 +00001377
1378hymod_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001379 @$(MKCONFIG) $(@:_config=) ppc mpc8260 hymod
wdenk7ebf7442002-11-02 23:17:16 +00001380
wdenk9dd41a72005-05-12 22:48:09 +00001381IDS8247_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001382 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ids8247
wdenk9dd41a72005-05-12 22:48:09 +00001383
wdenk7ebf7442002-11-02 23:17:16 +00001384IPHASE4539_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001385 @$(MKCONFIG) $(@:_config=) ppc mpc8260 iphase4539
wdenk7ebf7442002-11-02 23:17:16 +00001386
wdenkc3c7f862004-06-09 14:47:54 +00001387ISPAN_config \
1388ISPAN_REVB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001389 @mkdir -p $(obj)include
wdenkc3c7f862004-06-09 14:47:54 +00001390 @if [ "$(findstring _REVB_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001391 echo "#define CFG_REV_B" > $(obj)include/config.h ; \
wdenkc3c7f862004-06-09 14:47:54 +00001392 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001393 @$(MKCONFIG) -a ISPAN ppc mpc8260 ispan
wdenkc3c7f862004-06-09 14:47:54 +00001394
wdenk04a85b32004-04-15 18:22:41 +00001395MPC8260ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001396MPC8260ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001397MPC8260ADS_33MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001398MPC8260ADS_33MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001399MPC8260ADS_40MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001400MPC8260ADS_40MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001401MPC8272ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001402MPC8272ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001403PQ2FADS_config \
wdenk901787d2005-04-03 23:22:21 +00001404PQ2FADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001405PQ2FADS-VR_config \
wdenk901787d2005-04-03 23:22:21 +00001406PQ2FADS-VR_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001407PQ2FADS-ZU_config \
wdenk901787d2005-04-03 23:22:21 +00001408PQ2FADS-ZU_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001409PQ2FADS-ZU_66MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001410PQ2FADS-ZU_66MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001411 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001412 @mkdir -p $(obj)include
1413 @mkdir -p $(obj)board/mpc8260ads
wdenk04a85b32004-04-15 18:22:41 +00001414 $(if $(findstring PQ2FADS,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001415 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > $(obj)include/config.h, \
1416 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h)
wdenk04a85b32004-04-15 18:22:41 +00001417 $(if $(findstring MHz,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001418 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \
wdenk04a85b32004-04-15 18:22:41 +00001419 $(if $(findstring VR,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001420 @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h))
wdenk901787d2005-04-03 23:22:21 +00001421 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001422 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/mpc8260ads/config.tmp ; \
wdenk901787d2005-04-03 23:22:21 +00001423 echo "... with lowboot configuration" ; \
1424 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001425 @$(MKCONFIG) -a MPC8260ADS ppc mpc8260 mpc8260ads
wdenk7ebf7442002-11-02 23:17:16 +00001426
wdenkdb2f721f2003-03-06 00:58:30 +00001427MPC8266ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001428 @$(MKCONFIG) $(@:_config=) ppc mpc8260 mpc8266ads
wdenkdb2f721f2003-03-06 00:58:30 +00001429
wdenkefa329c2004-03-23 20:18:25 +00001430# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk10f67012003-03-25 18:06:06 +00001431PM825_config \
wdenkefa329c2004-03-23 20:18:25 +00001432PM825_ROMBOOT_config \
1433PM825_BIGFLASH_config \
1434PM825_ROMBOOT_BIGFLASH_config \
wdenk7ebf7442002-11-02 23:17:16 +00001435PM826_config \
wdenkefa329c2004-03-23 20:18:25 +00001436PM826_ROMBOOT_config \
1437PM826_BIGFLASH_config \
1438PM826_ROMBOOT_BIGFLASH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001439 @mkdir -p $(obj)include
1440 @mkdir -p $(obj)board/pm826
wdenkefa329c2004-03-23 20:18:25 +00001441 @if [ "$(findstring PM825_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001442 echo "#define CONFIG_PCI" >$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001443 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001444 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001445 fi
1446 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1447 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001448 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1449 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001450 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1451 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001452 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001453 fi; \
1454 else \
wdenk7ebf7442002-11-02 23:17:16 +00001455 echo "... booting from 64-bit flash" ; \
wdenkefa329c2004-03-23 20:18:25 +00001456 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1457 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001458 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
1459 echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001460 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001461 echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001462 fi; \
1463 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001464 @$(MKCONFIG) -a PM826 ppc mpc8260 pm826
wdenkefa329c2004-03-23 20:18:25 +00001465
1466PM828_config \
1467PM828_PCI_config \
1468PM828_ROMBOOT_config \
1469PM828_ROMBOOT_PCI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001470 @mkdir -p $(obj)include
1471 @mkdir -p $(obj)board/pm826
Marian Balakowicz17076262006-04-05 20:37:11 +02001472 @if [ "$(findstring _PCI_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001473 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001474 echo "... with PCI enabled" ; \
1475 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001476 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001477 fi
1478 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1479 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001480 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1481 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001482 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001483 @$(MKCONFIG) -a PM828 ppc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +00001484
1485ppmc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001486 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ppmc8260
wdenk7ebf7442002-11-02 23:17:16 +00001487
wdenk8b0bfc62005-04-03 23:11:38 +00001488Rattler8248_config \
1489Rattler_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001490 @mkdir -p $(obj)include
wdenk8b0bfc62005-04-03 23:11:38 +00001491 $(if $(findstring 8248,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001492 @echo "#define CONFIG_MPC8248" > $(obj)include/config.h)
1493 @$(MKCONFIG) -a Rattler ppc mpc8260 rattler
wdenk8b0bfc62005-04-03 23:11:38 +00001494
wdenk7ebf7442002-11-02 23:17:16 +00001495RPXsuper_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001496 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rpxsuper
wdenk7ebf7442002-11-02 23:17:16 +00001497
1498rsdproto_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001499 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rsdproto
wdenk7ebf7442002-11-02 23:17:16 +00001500
1501sacsng_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001502 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sacsng
wdenk7ebf7442002-11-02 23:17:16 +00001503
1504sbc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001505 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sbc8260
wdenk7ebf7442002-11-02 23:17:16 +00001506
1507SCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001508 @$(MKCONFIG) $(@:_config=) ppc mpc8260 SCM siemens
wdenk7ebf7442002-11-02 23:17:16 +00001509
wdenk27b207f2003-07-24 23:38:38 +00001510TQM8255_AA_config \
1511TQM8260_AA_config \
1512TQM8260_AB_config \
1513TQM8260_AC_config \
1514TQM8260_AD_config \
1515TQM8260_AE_config \
1516TQM8260_AF_config \
1517TQM8260_AG_config \
1518TQM8260_AH_config \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001519TQM8260_AI_config \
wdenk27b207f2003-07-24 23:38:38 +00001520TQM8265_AA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001521 @mkdir -p $(obj)include
wdenk27b207f2003-07-24 23:38:38 +00001522 @case "$@" in \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001523 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
1524 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
1525 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1526 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1527 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1528 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
1529 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1530 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
1531 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
1532 TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1533 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
wdenk27b207f2003-07-24 23:38:38 +00001534 esac; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001535 >$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001536 if [ "$${CTYPE}" != "MPC8260" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001537 echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001538 fi; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001539 echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001540 echo "... with $${CFREQ}MHz system clock" ; \
1541 if [ "$${CACHE}" == "yes" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001542 echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001543 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001544 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001545 echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001546 echo "... without L2 Cache support" ; \
wdenk27b207f2003-07-24 23:38:38 +00001547 fi; \
1548 if [ "$${BMODE}" == "60x" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001549 echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001550 echo "... with 60x Bus Mode" ; \
1551 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001552 echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001553 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001554 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001555 @$(MKCONFIG) -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +00001556
Heiko Schocherfa230442006-12-21 17:17:02 +01001557TQM8272_config: unconfig
1558 @$(MKCONFIG) -a TQM8272 ppc mpc8260 tqm8272
1559
wdenkba91e262005-05-30 23:55:42 +00001560VoVPN-GW_66MHz_config \
1561VoVPN-GW_100MHz_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001562 @mkdir -p $(obj)include
1563 @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h
1564 @$(MKCONFIG) -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
wdenkba91e262005-05-30 23:55:42 +00001565
wdenk54387ac2003-10-08 22:45:44 +00001566ZPC1900_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001567 @$(MKCONFIG) $(@:_config=) ppc mpc8260 zpc1900
wdenk7aa78612003-05-03 15:50:43 +00001568
wdenk4e5ca3e2003-12-08 01:34:36 +00001569#########################################################################
1570## Coldfire
1571#########################################################################
1572
Wolfgang Denk74812662005-12-12 16:06:05 +01001573cobra5272_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001574 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272
Wolfgang Denk74812662005-12-12 16:06:05 +01001575
Wolfgang Denk4176c792006-06-10 19:27:47 +02001576EB+MCF-EV123_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001577 @mkdir -p $(obj)include
1578 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1579 @ >$(obj)include/config.h
1580 @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1581 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001582
1583EB+MCF-EV123_internal_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001584 @mkdir -p $(obj)include
1585 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1586 @ >$(obj)include/config.h
1587 @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1588 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001589
Bartlomiej Siekadaa6e412006-12-20 00:27:32 +01001590idmr_config : unconfig
1591 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 idmr
1592
Wolfgang Denk4176c792006-06-10 19:27:47 +02001593M5271EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001594 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb
Wolfgang Denk4176c792006-06-10 19:27:47 +02001595
wdenk4e5ca3e2003-12-08 01:34:36 +00001596M5272C3_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001597 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3
wdenk4e5ca3e2003-12-08 01:34:36 +00001598
1599M5282EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001600 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb
wdenk4e5ca3e2003-12-08 01:34:36 +00001601
stroesec419d1d2004-12-16 18:44:40 +00001602TASREG_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001603 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd
stroesec419d1d2004-12-16 18:44:40 +00001604
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001605r5200_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001606 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 r5200
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001607
wdenk7ebf7442002-11-02 23:17:16 +00001608#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -05001609## MPC83xx Systems
1610#########################################################################
1611
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001612TQM834x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001613 @$(MKCONFIG) $(@:_config=) ppc mpc83xx tqm834x
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001614
Marian Balakowicz991425f2006-03-14 16:24:38 +01001615MPC8349EMDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001616 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349emds
Marian Balakowicz991425f2006-03-14 16:24:38 +01001617
Dave Liu5f820432006-11-03 19:33:44 -06001618MPC8360EMDS_config \
1619MPC8360EMDS_HOST_33_config \
1620MPC8360EMDS_HOST_66_config \
1621MPC8360EMDS_SLAVE_config: unconfig
1622 @echo "" >include/config.h ; \
1623 if [ "$(findstring _HOST_,$@)" ] ; then \
1624 echo -n "... PCI HOST " ; \
1625 echo "#define CONFIG_PCI" >>include/config.h ; \
1626 fi ; \
1627 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1628 echo "...PCI SLAVE 66M" ; \
1629 echo "#define CONFIG_PCI" >>include/config.h ; \
1630 echo "#define CONFIG_PCISLAVE" >>include/config.h ; \
1631 fi ; \
1632 if [ "$(findstring _33_,$@)" ] ; then \
1633 echo -n "...33M ..." ; \
1634 echo "#define PCI_33M" >>include/config.h ; \
1635 fi ; \
1636 if [ "$(findstring _66_,$@)" ] ; then \
1637 echo -n "...66M..." ; \
1638 echo "#define PCI_66M" >>include/config.h ; \
1639 fi ;
1640 @$(MKCONFIG) -a MPC8360EMDS ppc mpc83xx mpc8360emds
1641
Timur Tabi2ad6b512006-10-31 18:44:42 -06001642MPC8349ITX_config: unconfig
1643 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349itx
1644
Eran Libertyf046ccd2005-07-28 10:08:46 -05001645#########################################################################
wdenk42d1f032003-10-15 23:53:47 +00001646## MPC85xx Systems
1647#########################################################################
1648
wdenk0ac6f8b2004-07-09 23:27:13 +00001649MPC8540ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001650 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8540ads
wdenk42d1f032003-10-15 23:53:47 +00001651
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001652MPC8540EVAL_config \
1653MPC8540EVAL_33_config \
1654MPC8540EVAL_66_config \
1655MPC8540EVAL_33_slave_config \
1656MPC8540EVAL_66_slave_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001657 @mkdir -p $(obj)include
1658 @echo "" >$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001659 if [ "$(findstring _33_,$@)" ] ; then \
1660 echo -n "... 33 MHz PCI" ; \
1661 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001662 echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001663 echo -n "... 66 MHz PCI" ; \
1664 fi ; \
1665 if [ "$(findstring _slave_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001666 echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001667 echo " slave" ; \
1668 else \
1669 echo " host" ; \
1670 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001671 @$(MKCONFIG) -a MPC8540EVAL ppc mpc85xx mpc8540eval
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001672
wdenk0ac6f8b2004-07-09 23:27:13 +00001673MPC8560ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001674 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8560ads
wdenk42d1f032003-10-15 23:53:47 +00001675
wdenk03f5c552004-10-10 21:21:55 +00001676MPC8541CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001677 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8541cds cds
wdenk03f5c552004-10-10 21:21:55 +00001678
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001679MPC8548CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001680 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8548cds cds
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001681
wdenk03f5c552004-10-10 21:21:55 +00001682MPC8555CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001683 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8555cds cds
wdenk7abf0c52004-04-18 21:45:42 +00001684
wdenk384cc682005-04-03 22:35:21 +00001685PM854_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001686 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm854
wdenk384cc682005-04-03 22:35:21 +00001687
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001688PM856_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001689 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm856
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001690
wdenkc15f3122004-10-10 22:44:24 +00001691sbc8540_config \
1692sbc8540_33_config \
1693sbc8540_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001694 @mkdir -p $(obj)include
wdenkc15f3122004-10-10 22:44:24 +00001695 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001696 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001697 echo "... 66 MHz PCI" ; \
1698 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001699 >$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001700 echo "... 33 MHz PCI" ; \
1701 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001702 @$(MKCONFIG) -a SBC8540 ppc mpc85xx sbc8560
wdenkc15f3122004-10-10 22:44:24 +00001703
wdenk466b7412004-07-10 22:35:59 +00001704sbc8560_config \
1705sbc8560_33_config \
1706sbc8560_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001707 @mkdir -p $(obj)include
wdenk8b07a112004-07-10 21:45:47 +00001708 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001709 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001710 echo "... 66 MHz PCI" ; \
1711 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001712 >$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001713 echo "... 33 MHz PCI" ; \
1714 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001715 @$(MKCONFIG) -a sbc8560 ppc mpc85xx sbc8560
wdenk8b07a112004-07-10 21:45:47 +00001716
wdenk03f5c552004-10-10 21:21:55 +00001717stxgp3_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001718 @$(MKCONFIG) $(@:_config=) ppc mpc85xx stxgp3
wdenk03f5c552004-10-10 21:21:55 +00001719
Stefan Roesed96f41e2005-11-30 13:06:40 +01001720TQM8540_config \
1721TQM8541_config \
1722TQM8555_config \
1723TQM8560_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001724 @mkdir -p $(obj)include
Wolfgang Denka889bd22005-12-06 15:02:31 +01001725 @CTYPE=$(subst TQM,,$(@:_config=)); \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001726 >$(obj)include/config.h ; \
Stefan Roesed96f41e2005-11-30 13:06:40 +01001727 echo "... TQM"$${CTYPE}; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001728 echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \
1729 echo "#define CONFIG_TQM$${CTYPE}">>$(obj)include/config.h; \
1730 echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \
1731 echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>$(obj)include/config.h; \
1732 echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>$(obj)include/config.h
1733 @$(MKCONFIG) -a TQM85xx ppc mpc85xx tqm85xx
wdenkf5c5ef42005-04-05 16:26:47 +00001734
wdenk42d1f032003-10-15 23:53:47 +00001735#########################################################################
Jon Loeligerdebb7352006-04-26 17:58:56 -05001736## MPC86xx Systems
1737#########################################################################
1738
1739MPC8641HPCN_config: unconfig
1740 @./mkconfig $(@:_config=) ppc mpc86xx mpc8641hpcn
1741
1742
1743#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001744## 74xx/7xx Systems
1745#########################################################################
1746
wdenkc7de8292002-11-19 11:04:11 +00001747AmigaOneG3SE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001748 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
wdenkc7de8292002-11-19 11:04:11 +00001749
wdenk15647dc2003-10-09 19:00:25 +00001750BAB7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001751 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx bab7xx eltec
wdenk15647dc2003-10-09 19:00:25 +00001752
stroesec419d1d2004-12-16 18:44:40 +00001753CPCI750_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001754 @$(MKCONFIG) CPCI750 ppc 74xx_7xx cpci750 esd
stroesec419d1d2004-12-16 18:44:40 +00001755
wdenk3a473b22004-01-03 00:43:19 +00001756DB64360_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001757 @$(MKCONFIG) DB64360 ppc 74xx_7xx db64360 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001758
1759DB64460_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001760 @$(MKCONFIG) DB64460 ppc 74xx_7xx db64460 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001761
wdenk15647dc2003-10-09 19:00:25 +00001762ELPPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001763 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx elppc eltec
wdenk15647dc2003-10-09 19:00:25 +00001764
wdenk7ebf7442002-11-02 23:17:16 +00001765EVB64260_config \
1766EVB64260_750CX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001767 @$(MKCONFIG) EVB64260 ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001768
wdenk15647dc2003-10-09 19:00:25 +00001769P3G4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001770 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001771
Stefan Roese1eac2a72006-11-29 15:42:37 +01001772p3m750_config \
1773p3m7448_config: unconfig
1774 @mkdir -p $(obj)include
1775 @if [ "$(findstring 750_,$@)" ] ; then \
1776 echo "#define CONFIG_P3M750" >>$(obj)include/config.h ; \
1777 else \
1778 echo "#define CONFIG_P3M7448" >>$(obj)include/config.h ; \
1779 fi
1780 @$(MKCONFIG) -a p3mx ppc 74xx_7xx p3mx prodrive
1781
wdenk7ebf7442002-11-02 23:17:16 +00001782PCIPPC2_config \
1783PCIPPC6_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001784 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx pcippc2
wdenk7ebf7442002-11-02 23:17:16 +00001785
wdenk15647dc2003-10-09 19:00:25 +00001786ZUMA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001787 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk12f34242003-09-02 22:48:03 +00001788
Heiko Schocherf5e0d032006-06-19 11:02:41 +02001789ppmc7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001790 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx ppmc7xx
Wolfgang Denkb87dfd22006-07-19 13:50:38 +02001791
wdenk7ebf7442002-11-02 23:17:16 +00001792#========================================================================
1793# ARM
1794#========================================================================
1795#########################################################################
1796## StrongARM Systems
1797#########################################################################
1798
wdenkea66bc82004-04-15 23:23:39 +00001799assabet_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001800 @$(MKCONFIG) $(@:_config=) arm sa1100 assabet
wdenkea66bc82004-04-15 23:23:39 +00001801
wdenk7ebf7442002-11-02 23:17:16 +00001802dnp1110_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001803 @$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110
wdenk7ebf7442002-11-02 23:17:16 +00001804
wdenk855a4962004-03-14 18:23:55 +00001805gcplus_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001806 @$(MKCONFIG) $(@:_config=) arm sa1100 gcplus
wdenk855a4962004-03-14 18:23:55 +00001807
1808lart_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001809 @$(MKCONFIG) $(@:_config=) arm sa1100 lart
wdenk855a4962004-03-14 18:23:55 +00001810
wdenk7ebf7442002-11-02 23:17:16 +00001811shannon_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001812 @$(MKCONFIG) $(@:_config=) arm sa1100 shannon
wdenk7ebf7442002-11-02 23:17:16 +00001813
1814#########################################################################
wdenk2e5983d2003-07-15 20:04:06 +00001815## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00001816#########################################################################
1817
wdenkb0639ca2003-09-17 22:48:07 +00001818xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk43d96162003-03-06 00:02:04 +00001819
wdenk3ff02c22004-06-09 15:25:53 +00001820xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
wdenk63e73c92004-02-23 22:22:28 +00001821
wdenka56bd922004-06-06 23:13:55 +00001822xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1823
wdenka85f9f22005-04-06 13:52:31 +00001824at91rm9200dk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001825 @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001826
1827cmc_pu2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001828 @$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001829
Wolfgang Denk645da512005-10-05 02:00:09 +02001830csb637_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001831 @$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200
Wolfgang Denk645da512005-10-05 02:00:09 +02001832
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001833mp2usb_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001834 @$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001835
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001836
Wolfgang Denk74f43042005-09-25 01:48:28 +02001837########################################################################
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001838## ARM Integrator boards - see doc/README-integrator for more info.
1839integratorap_config \
1840ap_config \
1841ap966_config \
1842ap922_config \
1843ap922_XA10_config \
1844ap7_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01001845ap720t_config \
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001846ap920t_config \
1847ap926ejs_config \
1848ap946es_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001849 @board/integratorap/split_by_variant.sh $@
wdenk3d3befa2004-03-14 15:06:13 +00001850
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001851integratorcp_config \
1852cp_config \
1853cp920t_config \
1854cp926ejs_config \
1855cp946es_config \
1856cp1136_config \
1857cp966_config \
1858cp922_config \
1859cp922_XA10_config \
1860cp1026_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001861 @board/integratorcp/split_by_variant.sh $@
wdenk25d67122004-12-10 11:40:40 +00001862
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001863kb9202_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001864 @$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001865
wdenkf832d8a2004-06-10 21:55:33 +00001866lpd7a400_config \
1867lpd7a404_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001868 @$(MKCONFIG) $(@:_config=) arm lh7a40x lpd7a40x
wdenk3d3befa2004-03-14 15:06:13 +00001869
wdenk281e00a2004-08-01 22:48:16 +00001870mx1ads_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001871 @$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001872
1873mx1fs2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001874 @$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001875
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001876netstar_32_config \
1877netstar_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001878 @mkdir -p $(obj)include
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001879 @if [ "$(findstring _32_,$@)" ] ; then \
1880 echo "... 32MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001881 echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001882 else \
1883 echo "... 64MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001884 echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001885 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001886 @$(MKCONFIG) -a netstar arm arm925t netstar
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001887
wdenk2e5983d2003-07-15 20:04:06 +00001888omap1510inn_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001889 @$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn
wdenk2e5983d2003-07-15 20:04:06 +00001890
wdenk1eaeb582004-06-08 00:22:43 +00001891omap5912osk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001892 @$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk NULL omap
wdenk1eaeb582004-06-08 00:22:43 +00001893
wdenk63e73c92004-02-23 22:22:28 +00001894omap1610inn_config \
1895omap1610inn_cs0boot_config \
1896omap1610inn_cs3boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00001897omap1610inn_cs_autoboot_config \
wdenk63e73c92004-02-23 22:22:28 +00001898omap1610h2_config \
1899omap1610h2_cs0boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00001900omap1610h2_cs3boot_config \
1901omap1610h2_cs_autoboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001902 @mkdir -p $(obj)include
wdenk63e73c92004-02-23 22:22:28 +00001903 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001904 echo "#define CONFIG_CS0_BOOT" >> .$(obj)/include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00001905 echo "... configured for CS0 boot"; \
wdenk3ff02c22004-06-09 15:25:53 +00001906 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001907 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)./include/config.h ; \
wdenk3ff02c22004-06-09 15:25:53 +00001908 echo "... configured for CS_AUTO boot"; \
wdenk63e73c92004-02-23 22:22:28 +00001909 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001910 echo "#define CONFIG_CS3_BOOT" >> $(obj)./include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00001911 echo "... configured for CS3 boot"; \
wdenk63e73c92004-02-23 22:22:28 +00001912 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02001913 @$(MKCONFIG) -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap
wdenk6f213472003-08-29 22:00:43 +00001914
wdenka56bd922004-06-06 23:13:55 +00001915omap730p2_config \
1916omap730p2_cs0boot_config \
1917omap730p2_cs3boot_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001918 @mkdir -p $(obj)include
wdenka56bd922004-06-06 23:13:55 +00001919 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001920 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00001921 echo "... configured for CS0 boot"; \
1922 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001923 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00001924 echo "... configured for CS3 boot"; \
1925 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02001926 @$(MKCONFIG) -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap
wdenka56bd922004-06-06 23:13:55 +00001927
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02001928sbc2410x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001929 @$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02001930
wdenk281e00a2004-08-01 22:48:16 +00001931scb9328_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001932 @$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001933
wdenk7ebf7442002-11-02 23:17:16 +00001934smdk2400_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001935 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001936
1937smdk2410_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001938 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001939
wdenk2d24a3a2004-06-09 21:50:45 +00001940SX1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001941 @$(MKCONFIG) $(@:_config=) arm arm925t sx1
wdenk2d24a3a2004-06-09 21:50:45 +00001942
wdenkb2001f22003-12-20 22:45:10 +00001943# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk43d96162003-03-06 00:02:04 +00001944trab_config \
wdenkb0639ca2003-09-17 22:48:07 +00001945trab_bigram_config \
1946trab_bigflash_config \
wdenkf54ebdf2003-09-17 15:10:32 +00001947trab_old_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001948 @mkdir -p $(obj)include
1949 @mkdir -p $(obj)board/trab
1950 @ >$(obj)include/config.h
wdenkb0639ca2003-09-17 22:48:07 +00001951 @[ -z "$(findstring _bigram,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001952 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
1953 echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00001954 echo "... with 8 MB Flash, 32 MB RAM" ; \
1955 }
1956 @[ -z "$(findstring _bigflash,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001957 { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \
1958 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00001959 echo "... with 16 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001960 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenkb0639ca2003-09-17 22:48:07 +00001961 }
wdenkf54ebdf2003-09-17 15:10:32 +00001962 @[ -z "$(findstring _old,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001963 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
1964 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +00001965 echo "... with 8 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001966 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenk43d96162003-03-06 00:02:04 +00001967 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001968 @$(MKCONFIG) -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001969
wdenk1cb8e982003-03-06 21:55:29 +00001970VCMA9_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001971 @$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0
wdenk1cb8e982003-03-06 21:55:29 +00001972
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001973#========================================================================
1974# ARM supplied Versatile development boards
1975#========================================================================
1976versatile_config \
1977versatileab_config \
1978versatilepb_config : unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001979 @board/versatile/split_by_variant.sh $@
wdenk074cff02004-02-24 00:16:43 +00001980
wdenk3c2b3d42005-04-05 23:32:21 +00001981voiceblue_smallflash_config \
1982voiceblue_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001983 @mkdir -p $(obj)include
1984 @mkdir -p $(obj)board/voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00001985 @if [ "$(findstring _smallflash_,$@)" ] ; then \
1986 echo "... boot from lower flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001987 echo "#define VOICEBLUE_SMALL_FLASH" >>$(obj)include/config.h ; \
1988 echo "VOICEBLUE_SMALL_FLASH=y" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00001989 else \
1990 echo "... boot from upper flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001991 >$(obj)include/config.h ; \
1992 echo "VOICEBLUE_SMALL_FLASH=n" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00001993 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001994 @$(MKCONFIG) -a voiceblue arm arm925t voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00001995
wdenk16b013e2005-05-19 22:46:33 +00001996cm4008_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001997 @$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00001998
1999cm41xx_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002000 @$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002001
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002002gth2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002003 @mkdir -p $(obj)include
2004 @ >$(obj)include/config.h
2005 @echo "#define CONFIG_GTH2 1" >>$(obj)include/config.h
2006 @$(MKCONFIG) -a gth2 mips mips gth2
Wolfgang Denk0c32d962006-06-16 17:32:31 +02002007
wdenk074cff02004-02-24 00:16:43 +00002008#########################################################################
2009## S3C44B0 Systems
2010#########################################################################
2011
2012B2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002013 @$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave
wdenk074cff02004-02-24 00:16:43 +00002014
wdenk7ebf7442002-11-02 23:17:16 +00002015#########################################################################
2016## ARM720T Systems
2017#########################################################################
2018
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002019armadillo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002020 @$(MKCONFIG) $(@:_config=) arm arm720t armadillo
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002021
wdenk7ebf7442002-11-02 23:17:16 +00002022ep7312_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002023 @$(MKCONFIG) $(@:_config=) arm arm720t ep7312
wdenk7ebf7442002-11-02 23:17:16 +00002024
wdenk2d24a3a2004-06-09 21:50:45 +00002025impa7_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002026 @$(MKCONFIG) $(@:_config=) arm arm720t impa7
wdenk2d24a3a2004-06-09 21:50:45 +00002027
wdenk2d1a5372004-02-23 19:30:57 +00002028modnet50_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002029 @$(MKCONFIG) $(@:_config=) arm arm720t modnet50
wdenk2d1a5372004-02-23 19:30:57 +00002030
wdenk39539882004-07-01 16:30:44 +00002031evb4510_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002032 @$(MKCONFIG) $(@:_config=) arm arm720t evb4510
wdenk39539882004-07-01 16:30:44 +00002033
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002034lpc2292sodimm_config: unconfig
2035 @$(MKCONFIG) $(@:_config=) arm arm720t lpc2292sodimm
2036
wdenk7ebf7442002-11-02 23:17:16 +00002037#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002038## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00002039#########################################################################
2040
wdenk20787e22005-04-06 00:04:16 +00002041adsvix_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002042 @$(MKCONFIG) $(@:_config=) arm pxa adsvix
wdenk20787e22005-04-06 00:04:16 +00002043
wdenkfabd46a2004-07-10 23:11:10 +00002044cerf250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002045 @$(MKCONFIG) $(@:_config=) arm pxa cerf250
wdenkfabd46a2004-07-10 23:11:10 +00002046
wdenk7ebf7442002-11-02 23:17:16 +00002047cradle_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002048 @$(MKCONFIG) $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00002049
2050csb226_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002051 @$(MKCONFIG) $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00002052
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002053delta_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002054 @$(MKCONFIG) $(@:_config=) arm pxa delta
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002055
wdenk43d96162003-03-06 00:02:04 +00002056innokom_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002057 @$(MKCONFIG) $(@:_config=) arm pxa innokom
wdenk43d96162003-03-06 00:02:04 +00002058
wdenk2d5b5612003-10-14 19:43:55 +00002059ixdp425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002060 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
wdenk2d5b5612003-10-14 19:43:55 +00002061
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002062ixdpg425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002063 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002064
wdenk43d96162003-03-06 00:02:04 +00002065lubbock_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002066 @$(MKCONFIG) $(@:_config=) arm pxa lubbock
wdenk43d96162003-03-06 00:02:04 +00002067
Heiko Schocher5720df72006-05-02 07:51:46 +02002068pleb2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002069 @$(MKCONFIG) $(@:_config=) arm pxa pleb2
Heiko Schocher5720df72006-05-02 07:51:46 +02002070
wdenk52f52c12003-06-19 23:04:19 +00002071logodl_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002072 @$(MKCONFIG) $(@:_config=) arm pxa logodl
wdenk52f52c12003-06-19 23:04:19 +00002073
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002074pdnb3_config \
2075scpu_config: unconfig
2076 @if [ "$(findstring scpu_,$@)" ] ; then \
2077 echo "#define CONFIG_SCPU" >>include/config.h ; \
2078 echo "... on SCPU board variant" ; \
2079 else \
2080 >include/config.h ; \
2081 fi
2082 @$(MKCONFIG) -a pdnb3 arm ixp pdnb3 prodrive
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002083
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002084pxa255_idp_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002085 @$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002086
wdenk3e386912003-04-05 00:53:31 +00002087wepep250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002088 @$(MKCONFIG) $(@:_config=) arm pxa wepep250
wdenk3e386912003-04-05 00:53:31 +00002089
wdenk4ec3a7f2004-09-28 16:44:41 +00002090xaeniax_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002091 @$(MKCONFIG) $(@:_config=) arm pxa xaeniax
wdenk4ec3a7f2004-09-28 16:44:41 +00002092
wdenkefa329c2004-03-23 20:18:25 +00002093xm250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002094 @$(MKCONFIG) $(@:_config=) arm pxa xm250
wdenkefa329c2004-03-23 20:18:25 +00002095
wdenkca0e7742004-06-09 15:37:23 +00002096xsengine_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002097 @$(MKCONFIG) $(@:_config=) arm pxa xsengine
wdenkca0e7742004-06-09 15:37:23 +00002098
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002099zylonite_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002100 @$(MKCONFIG) $(@:_config=) arm pxa zylonite
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002101
wdenk8ed96042005-01-09 23:16:25 +00002102#########################################################################
2103## ARM1136 Systems
2104#########################################################################
2105omap2420h4_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002106 @$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4
wdenk8ed96042005-01-09 23:16:25 +00002107
wdenk2262cfe2002-11-18 00:14:45 +00002108#========================================================================
2109# i386
2110#========================================================================
2111#########################################################################
wdenk1cb8e982003-03-06 21:55:29 +00002112## AMD SC520 CDP
wdenk2262cfe2002-11-18 00:14:45 +00002113#########################################################################
2114sc520_cdp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002115 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp
wdenk2262cfe2002-11-18 00:14:45 +00002116
wdenk7a8e9bed2003-05-31 18:35:21 +00002117sc520_spunk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002118 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002119
2120sc520_spunk_rel_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002121 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002122
wdenk43d96162003-03-06 00:02:04 +00002123#========================================================================
2124# MIPS
2125#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00002126#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002127## MIPS32 4Kc
2128#########################################################################
2129
wdenke0ac62d2003-08-17 18:55:18 +00002130xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
2131
2132incaip_100MHz_config \
2133incaip_133MHz_config \
2134incaip_150MHz_config \
2135incaip_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002136 @mkdir -p $(obj)include
2137 @ >$(obj)include/config.h
wdenke0ac62d2003-08-17 18:55:18 +00002138 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002139 { echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002140 echo "... with 100MHz system clock" ; \
2141 }
2142 @[ -z "$(findstring _133MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002143 { echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002144 echo "... with 133MHz system clock" ; \
2145 }
2146 @[ -z "$(findstring _150MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002147 { echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002148 echo "... with 150MHz system clock" ; \
2149 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002150 @$(MKCONFIG) -a $(call xtract_incaip,$@) mips mips incaip
wdenke0ac62d2003-08-17 18:55:18 +00002151
wdenkf4863a72004-02-07 01:27:10 +00002152tb0229_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002153 @$(MKCONFIG) $(@:_config=) mips mips tb0229
wdenkf4863a72004-02-07 01:27:10 +00002154
wdenke0ac62d2003-08-17 18:55:18 +00002155#########################################################################
wdenk69459792004-05-29 16:53:29 +00002156## MIPS32 AU1X00
2157#########################################################################
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002158dbau1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002159 @mkdir -p $(obj)include
2160 @ >$(obj)include/config.h
2161 @echo "#define CONFIG_DBAU1000 1" >>$(obj)include/config.h
2162 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002163
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002164dbau1100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002165 @mkdir -p $(obj)include
2166 @ >$(obj)include/config.h
2167 @echo "#define CONFIG_DBAU1100 1" >>$(obj)include/config.h
2168 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002169
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002170dbau1500_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002171 @mkdir -p $(obj)include
2172 @ >$(obj)include/config.h
2173 @echo "#define CONFIG_DBAU1500 1" >>$(obj)include/config.h
2174 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002175
wdenkff36fd82005-01-09 22:28:56 +00002176dbau1550_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002177 @mkdir -p $(obj)include
2178 @ >$(obj)include/config.h
2179 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2180 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002181
2182dbau1550_el_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002183 @mkdir -p $(obj)include
2184 @ >$(obj)include/config.h
2185 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2186 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002187
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002188pb1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002189 @mkdir -p $(obj)include
2190 @ >$(obj)include/config.h
2191 @echo "#define CONFIG_PB1000 1" >>$(obj)include/config.h
2192 @$(MKCONFIG) -a pb1x00 mips mips pb1x00
Wolfgang Denk265817c2005-09-25 00:53:22 +02002193
wdenk69459792004-05-29 16:53:29 +00002194#########################################################################
wdenke0ac62d2003-08-17 18:55:18 +00002195## MIPS64 5Kc
2196#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002197
wdenk3e386912003-04-05 00:53:31 +00002198purple_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002199 @$(MKCONFIG) $(@:_config=) mips mips purple
wdenk43d96162003-03-06 00:02:04 +00002200
wdenk4a551702003-10-08 23:26:14 +00002201#========================================================================
2202# Nios
2203#========================================================================
2204#########################################################################
2205## Nios32
2206#########################################################################
2207
wdenkc935d3b2004-01-03 19:43:48 +00002208DK1C20_safe_32_config \
2209DK1C20_standard_32_config \
wdenk4a551702003-10-08 23:26:14 +00002210DK1C20_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002211 @mkdir -p $(obj)include
2212 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002213 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002214 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002215 echo "... NIOS 'safe_32' configuration" ; \
2216 }
2217 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002218 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002219 echo "... NIOS 'standard_32' configuration" ; \
2220 }
2221 @[ -z "$(findstring DK1C20_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002222 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002223 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2224 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002225 @$(MKCONFIG) -a DK1C20 nios nios dk1c20 altera
wdenkc935d3b2004-01-03 19:43:48 +00002226
2227DK1S10_safe_32_config \
2228DK1S10_standard_32_config \
wdenkec4c5442004-02-09 23:12:24 +00002229DK1S10_mtx_ldk_20_config \
wdenkc935d3b2004-01-03 19:43:48 +00002230DK1S10_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002231 @mkdir -p $(obj)include
2232 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002233 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002234 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002235 echo "... NIOS 'safe_32' configuration" ; \
2236 }
2237 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002238 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002239 echo "... NIOS 'standard_32' configuration" ; \
2240 }
wdenkec4c5442004-02-09 23:12:24 +00002241 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002242 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>$(obj)include/config.h ; \
wdenkec4c5442004-02-09 23:12:24 +00002243 echo "... NIOS 'mtx_ldk_20' configuration" ; \
2244 }
wdenkc935d3b2004-01-03 19:43:48 +00002245 @[ -z "$(findstring DK1S10_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002246 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002247 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2248 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002249 @$(MKCONFIG) -a DK1S10 nios nios dk1s10 altera
wdenk4a551702003-10-08 23:26:14 +00002250
wdenkaaf224a2004-03-14 15:20:55 +00002251ADNPESC1_DNPEVA2_base_32_config \
2252ADNPESC1_base_32_config \
2253ADNPESC1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002254 @mkdir -p $(obj)include
2255 @ >$(obj)include/config.h
wdenkaaf224a2004-03-14 15:20:55 +00002256 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002257 { echo "#define CONFIG_DNPEVA2 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002258 echo "... DNP/EVA2 configuration" ; \
2259 }
wdenkaaf224a2004-03-14 15:20:55 +00002260 @[ -z "$(findstring _base_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002261 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002262 echo "... NIOS 'base_32' configuration" ; \
2263 }
wdenkaaf224a2004-03-14 15:20:55 +00002264 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002265 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002266 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
2267 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002268 @$(MKCONFIG) -a ADNPESC1 nios nios adnpesc1 ssv
wdenkaaf224a2004-03-14 15:20:55 +00002269
wdenk5c952cf2004-10-10 21:27:30 +00002270#########################################################################
2271## Nios-II
2272#########################################################################
2273
Scott McNutt9cc83372006-06-08 13:37:39 -04002274EP1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002275 @$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002276
2277EP1S10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002278 @$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002279
2280EP1S40_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002281 @$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002282
wdenk5c952cf2004-10-10 21:27:30 +00002283PK1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002284 @$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent
wdenk5c952cf2004-10-10 21:27:30 +00002285
2286PCI5441_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002287 @$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent
wdenk4a551702003-10-08 23:26:14 +00002288
wdenk507bbe32004-04-18 21:13:41 +00002289#========================================================================
2290# MicroBlaze
2291#========================================================================
2292#########################################################################
2293## Microblaze
2294#########################################################################
2295suzaku_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002296 @mkdir -p $(obj)include
2297 @ >$(obj)include/config.h
2298 @echo "#define CONFIG_SUZAKU 1" >> $(obj)include/config.h
2299 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
wdenk507bbe32004-04-18 21:13:41 +00002300
wdenk3e386912003-04-05 00:53:31 +00002301#########################################################################
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002302## Blackfin
2303#########################################################################
2304ezkit533_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002305 @$(MKCONFIG) $(@:_config=) blackfin bf533 ezkit533
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002306
2307stamp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002308 @$(MKCONFIG) $(@:_config=) blackfin bf533 stamp
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002309
2310dspstamp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002311 @$(MKCONFIG) $(@:_config=) blackfin bf533 dsp_stamp
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002312
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02002313#========================================================================
2314# AVR32
2315#========================================================================
2316#########################################################################
2317## AT32AP7xxx
2318#########################################################################
2319
2320atstk1002_config : unconfig
2321 @./mkconfig $(@:_config=) avr32 at32ap atstk1000 atmel at32ap7000
2322
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002323#########################################################################
2324#########################################################################
wdenk3e386912003-04-05 00:53:31 +00002325#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00002326
2327clean:
Marian Balakowiczf9328632006-09-01 19:49:50 +02002328 find $(OBJTREE) -type f \
wdenk7ebf7442002-11-02 23:17:16 +00002329 \( -name 'core' -o -name '*.bak' -o -name '*~' \
2330 -o -name '*.o' -o -name '*.a' \) -print \
2331 | xargs rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002332 rm -f $(obj)examples/hello_world $(obj)examples/timer \
2333 $(obj)examples/eepro100_eeprom $(obj)examples/sched \
2334 $(obj)examples/mem_to_mem_idma2intr $(obj)examples/82559_eeprom \
Wolfgang Denkd214fbb2006-09-13 10:29:32 +02002335 $(obj)examples/smc91111_eeprom $(obj)examples/interrupt \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002336 $(obj)examples/test_burst
2337 rm -f $(obj)tools/img2srec $(obj)tools/mkimage $(obj)tools/envcrc \
2338 $(obj)tools/gen_eth_addr
2339 rm -f $(obj)tools/mpc86x_clk $(obj)tools/ncb
2340 rm -f $(obj)tools/easylogo/easylogo $(obj)tools/bmp_logo
2341 rm -f $(obj)tools/gdb/astest $(obj)tools/gdb/gdbcont $(obj)tools/gdb/gdbsend
2342 rm -f $(obj)tools/env/fw_printenv $(obj)tools/env/fw_setenv
2343 rm -f $(obj)board/cray/L1/bootscript.c $(obj)board/cray/L1/bootscript.image
2344 rm -f $(obj)board/netstar/eeprom $(obj)board/netstar/crcek $(obj)board/netstar/crcit
2345 rm -f $(obj)board/netstar/*.srec $(obj)board/netstar/*.bin
2346 rm -f $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom
2347 rm -f $(obj)board/integratorap/u-boot.lds $(obj)board/integratorcp/u-boot.lds
2348 rm -f $(obj)include/bmp_logo.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002349 rm -f $(obj)nand_spl/u-boot-spl $(obj)nand_spl/u-boot-spl.map
wdenk7ebf7442002-11-02 23:17:16 +00002350
2351clobber: clean
Marian Balakowiczf9328632006-09-01 19:49:50 +02002352 find $(OBJTREE) -type f \( -name .depend \
wdenk4c0d4c32004-06-09 17:34:58 +00002353 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
2354 -print0 \
2355 | xargs -0 rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002356 rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS $(obj)include/version_autogenerated.h
2357 rm -fr $(obj)*.*~
2358 rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL)
2359 rm -f $(obj)tools/crc32.c $(obj)tools/environment.c $(obj)tools/env/crc32.c
2360 rm -f $(obj)tools/inca-swap-bytes $(obj)cpu/mpc824x/bedbug_603e.c
2361 rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002362 [ ! -d $(OBJTREE)/nand_spl ] || find $(obj)nand_spl -lname "*" -print | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +00002363
Marian Balakowiczf9328632006-09-01 19:49:50 +02002364ifeq ($(OBJTREE),$(SRCTREE))
wdenk7ebf7442002-11-02 23:17:16 +00002365mrproper \
2366distclean: clobber unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002367else
2368mrproper \
2369distclean: clobber unconfig
2370 rm -rf $(OBJTREE)/*
2371endif
wdenk7ebf7442002-11-02 23:17:16 +00002372
2373backup:
2374 F=`basename $(TOPDIR)` ; cd .. ; \
2375 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
2376
2377#########################################################################