blob: 3809de0a411b9f2d6e2fdd1b2558c309eec0d725 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
Wolfgang Denk881a87e2006-02-21 17:33:04 +01002# (C) Copyright 2000-2006
wdenk7ebf7442002-11-02 23:17:16 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
Wolfgang Denk45a212c2006-07-19 17:52:30 +020010# published by the Free Software Foundatio; either version 2 of
wdenk7ebf7442002-11-02 23:17:16 +000011# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
Wolfgang Denk881a87e2006-02-21 17:33:04 +010024VERSION = 1
Wolfgang Denkf4eb5452007-01-07 00:13:11 +010025PATCHLEVEL = 2
26SUBLEVEL = 0
Wolfgang Denk881a87e2006-02-21 17:33:04 +010027EXTRAVERSION =
28U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
Marian Balakowiczf9328632006-09-01 19:49:50 +020029VERSION_FILE = $(obj)include/version_autogenerated.h
Wolfgang Denk881a87e2006-02-21 17:33:04 +010030
wdenk7ebf7442002-11-02 23:17:16 +000031HOSTARCH := $(shell uname -m | \
32 sed -e s/i.86/i386/ \
33 -e s/sun4u/sparc64/ \
34 -e s/arm.*/arm/ \
35 -e s/sa110/arm/ \
36 -e s/powerpc/ppc/ \
37 -e s/macppc/ppc/)
38
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020039HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
wdenk7ebf7442002-11-02 23:17:16 +000040 sed -e 's/\(cygwin\).*/cygwin/')
41
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020042export HOSTARCH HOSTOS
wdenk7ebf7442002-11-02 23:17:16 +000043
44# Deal with colliding definitions from tcsh etc.
45VENDOR=
46
47#########################################################################
Marian Balakowiczf9328632006-09-01 19:49:50 +020048#
49# U-boot build supports producing a object files to the separate external
50# directory. Two use cases are supported:
Stefan Roese887e2ec2006-09-07 11:51:23 +020051#
Marian Balakowiczf9328632006-09-01 19:49:50 +020052# 1) Add O= to the make command line
53# 'make O=/tmp/build all'
54#
55# 2) Set environement variable BUILD_DIR to point to the desired location
56# 'export BUILD_DIR=/tmp/build'
57# 'make'
58#
59# The second approach can also be used with a MAKEALL script
60# 'export BUILD_DIR=/tmp/build'
61# './MAKEALL'
Stefan Roese887e2ec2006-09-07 11:51:23 +020062#
Marian Balakowiczf9328632006-09-01 19:49:50 +020063# Command line 'O=' setting overrides BUILD_DIR environent variable.
Stefan Roese887e2ec2006-09-07 11:51:23 +020064#
Marian Balakowiczf9328632006-09-01 19:49:50 +020065# When none of the above methods is used the local build is performed and
66# the object files are placed in the source directory.
Stefan Roese887e2ec2006-09-07 11:51:23 +020067#
wdenk7ebf7442002-11-02 23:17:16 +000068
Marian Balakowiczf9328632006-09-01 19:49:50 +020069ifdef O
70ifeq ("$(origin O)", "command line")
71BUILD_DIR := $(O)
72endif
73endif
wdenk7ebf7442002-11-02 23:17:16 +000074
Marian Balakowiczf9328632006-09-01 19:49:50 +020075ifneq ($(BUILD_DIR),)
76saved-output := $(BUILD_DIR)
Marian Balakowicz4f0645e2006-09-07 12:05:53 +020077
78# Attempt to create a output directory.
79$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
80
Stefan Roesea73c8db2006-09-12 08:49:07 +020081# Verify if it was successful.
Marian Balakowiczf9328632006-09-01 19:49:50 +020082BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
83$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
84endif # ifneq ($(BUILD_DIR),)
85
86OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
87SRCTREE := $(CURDIR)
88TOPDIR := $(SRCTREE)
89LNDIR := $(OBJTREE)
90export TOPDIR SRCTREE OBJTREE
91
92MKCONFIG := $(SRCTREE)/mkconfig
93export MKCONFIG
94
95ifneq ($(OBJTREE),$(SRCTREE))
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010096REMOTE_BUILD := 1
Marian Balakowiczf9328632006-09-01 19:49:50 +020097export REMOTE_BUILD
98endif
99
100# $(obj) and (src) are defined in config.mk but here in main Makefile
101# we also need them before config.mk is included which is the case for
102# some targets like unconfig, clean, clobber, distclean, etc.
103ifneq ($(OBJTREE),$(SRCTREE))
104obj := $(OBJTREE)/
105src := $(SRCTREE)/
106else
107obj :=
108src :=
Stefan Roese887e2ec2006-09-07 11:51:23 +0200109endif
Marian Balakowiczf9328632006-09-01 19:49:50 +0200110export obj src
111
112#########################################################################
113
114ifeq ($(OBJTREE)/include/config.mk,$(wildcard $(OBJTREE)/include/config.mk))
115
wdenk7ebf7442002-11-02 23:17:16 +0000116# load ARCH, BOARD, and CPU configuration
Marian Balakowiczf9328632006-09-01 19:49:50 +0200117include $(OBJTREE)/include/config.mk
wdenk1d9f4102004-10-09 22:21:29 +0000118export ARCH CPU BOARD VENDOR SOC
Marian Balakowiczf9328632006-09-01 19:49:50 +0200119
wdenk7ebf7442002-11-02 23:17:16 +0000120ifndef CROSS_COMPILE
Wolfgang Denka5284ef2007-03-06 18:01:47 +0100121ifeq ($(HOSTARCH),$(ARCH))
wdenk7ebf7442002-11-02 23:17:16 +0000122CROSS_COMPILE =
123else
wdenk7ebf7442002-11-02 23:17:16 +0000124ifeq ($(ARCH),ppc)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500125CROSS_COMPILE = powerpc-linux-
wdenk7ebf7442002-11-02 23:17:16 +0000126endif
127ifeq ($(ARCH),arm)
wdenkdc7c9a12003-03-26 06:55:25 +0000128CROSS_COMPILE = arm-linux-
wdenk7ebf7442002-11-02 23:17:16 +0000129endif
wdenk2262cfe2002-11-18 00:14:45 +0000130ifeq ($(ARCH),i386)
wdenk7a8e9bed2003-05-31 18:35:21 +0000131CROSS_COMPILE = i386-linux-
132endif
wdenk43d96162003-03-06 00:02:04 +0000133ifeq ($(ARCH),mips)
134CROSS_COMPILE = mips_4KC-
135endif
wdenk4a551702003-10-08 23:26:14 +0000136ifeq ($(ARCH),nios)
137CROSS_COMPILE = nios-elf-
138endif
wdenk5c952cf2004-10-10 21:27:30 +0000139ifeq ($(ARCH),nios2)
140CROSS_COMPILE = nios2-elf-
141endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000142ifeq ($(ARCH),m68k)
143CROSS_COMPILE = m68k-elf-
144endif
wdenk507bbe32004-04-18 21:13:41 +0000145ifeq ($(ARCH),microblaze)
146CROSS_COMPILE = mb-
147endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100148ifeq ($(ARCH),blackfin)
149CROSS_COMPILE = bfin-elf-
150endif
Wolfgang Denk7b64fef2006-10-24 14:21:16 +0200151ifeq ($(ARCH),avr32)
152CROSS_COMPILE = avr32-
153endif
wdenk7ebf7442002-11-02 23:17:16 +0000154endif
155endif
156
157export CROSS_COMPILE
158
Wolfgang Denk92b197f2006-03-12 01:37:50 +0100159# load other configuration
160include $(TOPDIR)/config.mk
161
wdenk7ebf7442002-11-02 23:17:16 +0000162#########################################################################
163# U-Boot objects....order is important (i.e. start must be first)
164
wdenk9fd5e312003-12-07 23:55:12 +0000165OBJS = cpu/$(CPU)/start.o
wdenk2262cfe2002-11-18 00:14:45 +0000166ifeq ($(CPU),i386)
wdenk9fd5e312003-12-07 23:55:12 +0000167OBJS += cpu/$(CPU)/start16.o
168OBJS += cpu/$(CPU)/reset.o
wdenk2262cfe2002-11-18 00:14:45 +0000169endif
wdenk7ebf7442002-11-02 23:17:16 +0000170ifeq ($(CPU),ppc4xx)
wdenk9fd5e312003-12-07 23:55:12 +0000171OBJS += cpu/$(CPU)/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +0000172endif
wdenk42d1f032003-10-15 23:53:47 +0000173ifeq ($(CPU),mpc85xx)
174OBJS += cpu/$(CPU)/resetvec.o
175endif
Jon Loeligerdebb7352006-04-26 17:58:56 -0500176ifeq ($(CPU),mpc86xx)
177OBJS += cpu/$(CPU)/resetvec.o
178endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100179ifeq ($(CPU),bf533)
180OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
181OBJS += cpu/$(CPU)/cplbhdlr.o cpu/$(CPU)/cplbmgr.o cpu/$(CPU)/flush.o
182endif
wdenk7ebf7442002-11-02 23:17:16 +0000183
Marian Balakowiczf9328632006-09-01 19:49:50 +0200184OBJS := $(addprefix $(obj),$(OBJS))
185
wdenk9fd5e312003-12-07 23:55:12 +0000186LIBS = lib_generic/libgeneric.a
187LIBS += board/$(BOARDDIR)/lib$(BOARD).a
wdenk7ebf7442002-11-02 23:17:16 +0000188LIBS += cpu/$(CPU)/lib$(CPU).a
wdenk1d9f4102004-10-09 22:21:29 +0000189ifdef SOC
190LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
191endif
wdenk7ebf7442002-11-02 23:17:16 +0000192LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk518e2e12004-03-25 14:59:05 +0000193LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
stroesec419d1d2004-12-16 18:44:40 +0000194 fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a
wdenk7ebf7442002-11-02 23:17:16 +0000195LIBS += net/libnet.a
196LIBS += disk/libdisk.a
197LIBS += rtc/librtc.a
198LIBS += dtt/libdtt.a
199LIBS += drivers/libdrivers.a
Marian Balakowicz6db39702006-04-08 19:08:06 +0200200LIBS += drivers/nand/libnand.a
201LIBS += drivers/nand_legacy/libnand_legacy.a
Dave Liu7737d5c2006-11-03 12:11:15 -0600202ifeq ($(CPU),mpc83xx)
203LIBS += drivers/qe/qe.a
204endif
wdenk7152b1d2003-09-05 23:19:14 +0000205LIBS += drivers/sk98lin/libsk98lin.a
wdenk7ebf7442002-11-02 23:17:16 +0000206LIBS += post/libpost.a post/cpu/libcpu.a
207LIBS += common/libcommon.a
Bartlomiej Sieka038ccac2006-02-24 09:37:22 +0100208LIBS += $(BOARDLIBS)
Marian Balakowiczf9328632006-09-01 19:49:50 +0200209
210LIBS := $(addprefix $(obj),$(LIBS))
wdenk9fd5e312003-12-07 23:55:12 +0000211.PHONY : $(LIBS)
wdenka8c7c702003-12-06 19:49:23 +0000212
wdenk4f7cb082003-09-11 23:06:34 +0000213# Add GCC lib
wdenk1a344f22005-02-03 23:00:49 +0000214PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
wdenk3d3befa2004-03-14 15:06:13 +0000215
wdenka8c7c702003-12-06 19:49:23 +0000216# The "tools" are needed early, so put this first
217# Don't include stuff already done in $(LIBS)
218SUBDIRS = tools \
219 examples \
220 post \
221 post/cpu
wdenkb028f712003-12-07 21:39:28 +0000222.PHONY : $(SUBDIRS)
wdenka8c7c702003-12-06 19:49:23 +0000223
Stefan Roese887e2ec2006-09-07 11:51:23 +0200224ifeq ($(CONFIG_NAND_U_BOOT),y)
225NAND_SPL = nand_spl
226U_BOOT_NAND = $(obj)u-boot-nand.bin
227endif
228
Marian Balakowiczf9328632006-09-01 19:49:50 +0200229__OBJS := $(subst $(obj),,$(OBJS))
230__LIBS := $(subst $(obj),,$(LIBS))
231
wdenk7ebf7442002-11-02 23:17:16 +0000232#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000233#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000234
Stefan Roese887e2ec2006-09-07 11:51:23 +0200235ALL = $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND)
wdenk7ebf7442002-11-02 23:17:16 +0000236
wdenkbdccc4f2003-08-05 17:43:17 +0000237all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000238
Marian Balakowiczf9328632006-09-01 19:49:50 +0200239$(obj)u-boot.hex: $(obj)u-boot
wdenk6310eb92005-01-09 21:28:15 +0000240 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
241
Marian Balakowiczf9328632006-09-01 19:49:50 +0200242$(obj)u-boot.srec: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000243 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
244
Marian Balakowiczf9328632006-09-01 19:49:50 +0200245$(obj)u-boot.bin: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000246 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
247
Marian Balakowiczf9328632006-09-01 19:49:50 +0200248$(obj)u-boot.img: $(obj)u-boot.bin
wdenkbdccc4f2003-08-05 17:43:17 +0000249 ./tools/mkimage -A $(ARCH) -T firmware -C none \
250 -a $(TEXT_BASE) -e 0 \
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100251 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenkbdccc4f2003-08-05 17:43:17 +0000252 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
253 -d $< $@
254
Marian Balakowiczf9328632006-09-01 19:49:50 +0200255$(obj)u-boot.dis: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000256 $(OBJDUMP) -d $< > $@
257
Marian Balakowiczf9328632006-09-01 19:49:50 +0200258$(obj)u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
wdenk8bde7f72003-06-27 21:31:46 +0000259 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
Marian Balakowiczf9328632006-09-01 19:49:50 +0200260 cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
261 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000262 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000263
Marian Balakowiczf9328632006-09-01 19:49:50 +0200264$(OBJS):
265 $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@))
266
wdenka8c7c702003-12-06 19:49:23 +0000267$(LIBS):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200268 $(MAKE) -C $(dir $(subst $(obj),,$@))
wdenka8c7c702003-12-06 19:49:23 +0000269
270$(SUBDIRS):
wdenkb028f712003-12-07 21:39:28 +0000271 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000272
Stefan Roese887e2ec2006-09-07 11:51:23 +0200273$(NAND_SPL): version
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200274 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
Stefan Roese887e2ec2006-09-07 11:51:23 +0200275
276$(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200277 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 +0200278
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100279version:
280 @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \
281 echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \
282 echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \
283 $(TOPDIR)) >> $(VERSION_FILE); \
284 echo "\"" >> $(VERSION_FILE)
285
dzu8f713fd2003-08-07 14:20:31 +0000286gdbtools:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200287 $(MAKE) -C tools/gdb all || exit 1
288
289updater:
290 $(MAKE) -C tools/updater all || exit 1
291
292env:
293 $(MAKE) -C tools/env all || exit 1
dzu8f713fd2003-08-07 14:20:31 +0000294
wdenk7ebf7442002-11-02 23:17:16 +0000295depend dep:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200296 for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir _depend ; done
wdenk7ebf7442002-11-02 23:17:16 +0000297
Marian Balakowiczf9328632006-09-01 19:49:50 +0200298tags ctags:
299 ctags -w -o $(OBJTREE)/ctags `find $(SUBDIRS) include \
wdenkbda6c8a2004-04-15 21:58:11 +0000300 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
301 fs/cramfs fs/fat fs/fdos fs/jffs2 \
302 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000303 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
304
305etags:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200306 etags -a -o $(OBJTREE)/etags `find $(SUBDIRS) include \
wdenkeedcd072004-09-08 22:03:11 +0000307 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
308 fs/cramfs fs/fat fs/fdos fs/jffs2 \
309 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000310 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
311
Marian Balakowiczf9328632006-09-01 19:49:50 +0200312$(obj)System.map: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000313 @$(NM) $< | \
314 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200315 sort > $(obj)System.map
wdenk7ebf7442002-11-02 23:17:16 +0000316
317#########################################################################
318else
Marian Balakowiczf9328632006-09-01 19:49:50 +0200319all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
320$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
321$(SUBDIRS) version gdbtools updater env depend \
322dep tags ctags etags $(obj)System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000323 @echo "System not configured - see README" >&2
324 @ exit 1
325endif
326
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200327.PHONY : CHANGELOG
328CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -0400329 git log --no-merges U-Boot-1_1_5.. | \
330 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200331
wdenk7ebf7442002-11-02 23:17:16 +0000332#########################################################################
333
334unconfig:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200335 @rm -f $(obj)include/config.h $(obj)include/config.mk \
336 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp
wdenk7ebf7442002-11-02 23:17:16 +0000337
338#========================================================================
339# PowerPC
340#========================================================================
wdenk0db5bca2003-03-31 17:27:09 +0000341
342#########################################################################
343## MPC5xx Systems
344#########################################################################
345
wdenk5e5f9ed2005-04-13 23:15:10 +0000346canmb_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200347 @$(MKCONFIG) -a canmb ppc mpc5xxx canmb
wdenk5e5f9ed2005-04-13 23:15:10 +0000348
wdenk0db5bca2003-03-31 17:27:09 +0000349cmi_mpc5xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200350 @$(MKCONFIG) $(@:_config=) ppc mpc5xx cmi
wdenk0db5bca2003-03-31 17:27:09 +0000351
wdenkdb01a2e2004-04-15 23:14:49 +0000352PATI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200353 @$(MKCONFIG) $(@:_config=) ppc mpc5xx pati mpl
wdenkb6e4c402004-01-02 16:05:07 +0000354
wdenk7ebf7442002-11-02 23:17:16 +0000355#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000356## MPC5xxx Systems
357#########################################################################
wdenka87589d2005-06-10 10:00:19 +0000358
Wolfgang Denkdafba162005-08-12 00:22:49 +0200359aev_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200360 @$(MKCONFIG) -a aev ppc mpc5xxx tqm5200
Wolfgang Denkdafba162005-08-12 00:22:49 +0200361
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200362BC3450_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200363 @$(MKCONFIG) -a BC3450 ppc mpc5xxx bc3450
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200364
Stefan Roese5e4b3362005-08-22 17:51:53 +0200365cpci5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200366 @$(MKCONFIG) -a cpci5200 ppc mpc5xxx cpci5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200367
wdenka87589d2005-06-10 10:00:19 +0000368hmi1001_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200369 @$(MKCONFIG) hmi1001 ppc mpc5xxx hmi1001
wdenka87589d2005-06-10 10:00:19 +0000370
wdenke35745b2004-04-18 23:32:11 +0000371Lite5200_config \
372Lite5200_LOWBOOT_config \
373Lite5200_LOWBOOT08_config \
374icecube_5200_config \
375icecube_5200_LOWBOOT_config \
376icecube_5200_LOWBOOT08_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100377icecube_5200_DDR_config \
378icecube_5200_DDR_LOWBOOT_config \
wdenke35745b2004-04-18 23:32:11 +0000379icecube_5200_DDR_LOWBOOT08_config \
380icecube_5100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200381 @mkdir -p $(obj)include
382 @mkdir -p $(obj)board/icecube
383 @ >$(obj)include/config.h
wdenk17d704e2004-04-10 20:43:50 +0000384 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
385 { if [ "$(findstring DDR,$@)" ] ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200386 then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
387 else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
wdenk17d704e2004-04-10 20:43:50 +0000388 fi ; \
wdenk5cf9da42003-11-07 13:42:26 +0000389 echo "... with LOWBOOT configuration" ; \
390 }
391 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200392 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
wdenk5cf9da42003-11-07 13:42:26 +0000393 echo "... with 8 MB flash only" ; \
wdenk17d704e2004-04-10 20:43:50 +0000394 echo "... with LOWBOOT configuration" ; \
wdenk5cf9da42003-11-07 13:42:26 +0000395 }
wdenkb2001f22003-12-20 22:45:10 +0000396 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200397 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +0000398 echo "... DDR memory revision" ; \
399 }
wdenkd4ca31c2004-01-02 14:00:00 +0000400 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200401 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenkd4ca31c2004-01-02 14:00:00 +0000402 echo "... with MPC5200 processor" ; \
403 }
wdenka0f2fe52003-10-28 09:14:21 +0000404 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200405 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk945af8d2003-07-16 21:53:01 +0000406 echo "... with MGT5100 processor" ; \
407 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200408 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
wdenk945af8d2003-07-16 21:53:01 +0000409
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200410v38b_config: unconfig
Bartlomiej Sieka82d9c9e2006-11-01 01:34:29 +0100411 @./mkconfig -a v38b ppc mpc5xxx v38b
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200412
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100413inka4x0_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200414 @$(MKCONFIG) inka4x0 ppc mpc5xxx inka4x0
wdenk138ff602004-12-16 15:52:40 +0000415
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100416lite5200b_config \
417lite5200b_LOWBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200418 @mkdir -p $(obj)include
419 @mkdir -p $(obj)board/icecube
420 @ >$(obj)include/config.h
421 @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100422 @ echo "... DDR memory revision"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200423 @ echo "#define CONFIG_MPC5200" >>$(obj)include/config.h
424 @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100425 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200426 { echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100427 echo "... with LOWBOOT configuration" ; \
428 }
429 @ echo "... with MPC5200B processor"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200430 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100431
Stefan Roesef1ee9822006-03-04 14:57:03 +0100432mcc200_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200433mcc200_SDRAM_config \
434mcc200_highboot_config \
435mcc200_COM12_config \
436mcc200_COM12_SDRAM_config \
Wolfgang Denk113f64e2006-08-25 01:38:04 +0200437mcc200_COM12_highboot_config \
438mcc200_COM12_highboot_SDRAM_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200439mcc200_highboot_SDRAM_config \
440prs200_config \
441prs200_DDR_config \
442prs200_highboot_config \
443prs200_highboot_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200444 @mkdir -p $(obj)include
445 @mkdir -p $(obj)board/mcc200
446 @ >$(obj)include/config.h
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200447 @[ -n "$(findstring highboot,$@)" ] || \
448 { echo "... with lowboot configuration" ; \
Stefan Roesef1ee9822006-03-04 14:57:03 +0100449 }
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200450 @[ -z "$(findstring highboot,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200451 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200452 echo "... with highboot configuration" ; \
453 }
454 @[ -n "$(findstring _SDRAM,$@)" ] || \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200455 { if [ -n "$(findstring mcc200,$@)" ]; \
456 then \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100457 echo "... with DDR" ; \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200458 else \
459 if [ -n "$(findstring _DDR,$@)" ];\
460 then \
461 echo "... with DDR" ; \
462 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200463 echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200464 echo "... with SDRAM" ; \
465 fi; \
466 fi; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200467 }
468 @[ -z "$(findstring _SDRAM,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200469 { echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200470 echo "... with SDRAM" ; \
471 }
Wolfgang Denk463764c2006-08-17 00:36:51 +0200472 @[ -z "$(findstring COM12,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200473 { echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \
Wolfgang Denk463764c2006-08-17 00:36:51 +0200474 echo "... with console on COM12" ; \
475 }
Wolfgang Denked1cf842006-08-24 00:26:42 +0200476 @[ -z "$(findstring prs200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200477 { echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200478 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200479 @$(MKCONFIG) -n $@ -a mcc200 ppc mpc5xxx mcc200
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100480
Stefan Roese8b7d1f02007-01-31 16:37:34 +0100481mecp5200_config: unconfig
482 @$(MKCONFIG) -a mecp5200 ppc mpc5xxx mecp5200 esd
483
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200484o2dnt_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200485 @$(MKCONFIG) o2dnt ppc mpc5xxx o2dnt
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200486
Stefan Roese5e4b3362005-08-22 17:51:53 +0200487pf5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200488 @$(MKCONFIG) pf5200 ppc mpc5xxx pf5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200489
wdenk89394042004-08-04 21:56:49 +0000490PM520_config \
491PM520_DDR_config \
492PM520_ROMBOOT_config \
493PM520_ROMBOOT_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200494 @mkdir -p $(obj)include
495 @ >$(obj)include/config.h
wdenk89394042004-08-04 21:56:49 +0000496 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200497 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000498 echo "... DDR memory revision" ; \
499 }
500 @[ -z "$(findstring ROMBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200501 { echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000502 echo "... booting from 8-bit flash" ; \
503 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200504 @$(MKCONFIG) -a PM520 ppc mpc5xxx pm520
wdenk89394042004-08-04 21:56:49 +0000505
Wolfgang Denk6624b682006-02-22 10:25:39 +0100506smmaco4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200507 @$(MKCONFIG) -a smmaco4 ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100508
509spieval_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200510 @$(MKCONFIG) -a spieval ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100511
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200512TB5200_B_config \
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200513TB5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200514 @mkdir -p $(obj)include
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200515 @[ -z "$(findstring _B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200516 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200517 echo "... with MPC5200B processor" ; \
518 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200519 @$(MKCONFIG) -n $@ -a TB5200 ppc mpc5xxx tqm5200
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200520
wdenkd4ca31c2004-01-02 14:00:00 +0000521MINI5200_config \
522EVAL5200_config \
523TOP5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200524 @mkdir -p $(obj)include
525 @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
526 @$(MKCONFIG) -n $@ -a TOP5200 ppc mpc5xxx top5200 emk
wdenkd4ca31c2004-01-02 14:00:00 +0000527
wdenk6c7a1402004-07-11 19:17:20 +0000528Total5100_config \
529Total5200_config \
530Total5200_lowboot_config \
531Total5200_Rev2_config \
532Total5200_Rev2_lowboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200533 @mkdir -p $(obj)include
534 @mkdir -p $(obj)board/total5200
535 @ >$(obj)include/config.h
wdenk6c7a1402004-07-11 19:17:20 +0000536 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200537 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000538 echo "... with MGT5100 processor" ; \
539 }
540 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200541 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000542 echo "... with MPC5200 processor" ; \
543 }
544 @[ -n "$(findstring Rev,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200545 { echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000546 echo "... revision 1 board" ; \
547 }
548 @[ -z "$(findstring Rev2_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200549 { echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000550 echo "... revision 2 board" ; \
551 }
552 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200553 { echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp ; \
wdenk6c7a1402004-07-11 19:17:20 +0000554 echo "... with lowboot configuration" ; \
555 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200556 @$(MKCONFIG) -a Total5200 ppc mpc5xxx total5200
wdenk6c7a1402004-07-11 19:17:20 +0000557
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200558cam5200_config \
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100559cam5200_niosflash_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200560fo300_config \
561MiniFAP_config \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200562TQM5200S_config \
563TQM5200S_HIGHBOOT_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200564TQM5200_B_config \
565TQM5200_B_HIGHBOOT_config \
566TQM5200_config \
567TQM5200_STK100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200568 @mkdir -p $(obj)include
569 @mkdir -p $(obj)board/tqm5200
570 @ >$(obj)include/config.h
Wolfgang Denk135ae002006-07-22 01:20:03 +0200571 @[ -z "$(findstring cam5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200572 { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \
573 echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
574 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk135ae002006-07-22 01:20:03 +0200575 echo "... TQM5200S on Cam5200" ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200576 }
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100577 @[ -z "$(findstring niosflash,$@)" ] || \
578 { echo "#define CONFIG_CAM5200_NIOSFLASH" >>$(obj)include/config.h ; \
579 echo "... with NIOS flash driver" ; \
580 }
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200581 @[ -z "$(findstring fo300,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200582 { echo "#define CONFIG_FO300" >>$(obj)include/config.h ; \
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200583 echo "... TQM5200 on FO300" ; \
584 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200585 @[ -z "$(findstring MiniFAP,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200586 { echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200587 echo "... TQM5200_AC on MiniFAP" ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200588 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200589 @[ -z "$(findstring STK100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200590 { echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h ; \
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200591 echo "... on a STK52XX.100 base board" ; \
wdenk56523f12004-07-11 17:40:54 +0000592 }
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200593 @[ -z "$(findstring TQM5200_B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200594 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200595 }
596 @[ -z "$(findstring TQM5200S,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200597 { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
598 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200599 }
Wolfgang Denk978b1092006-07-19 18:01:38 +0200600 @[ -z "$(findstring HIGHBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200601 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200602 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200603 @$(MKCONFIG) -n $@ -a TQM5200 ppc mpc5xxx tqm5200
Heiko Schocher6dedf3d2006-12-21 16:14:48 +0100604uc101_config: unconfig
605 @$(MKCONFIG) uc101 ppc mpc5xxx uc101
Bartlomiej Sieka53d4a492007-02-09 10:45:42 +0100606motionpro_config: unconfig
607 @$(MKCONFIG) motionpro ppc mpc5xxx motionpro
608
wdenk56523f12004-07-11 17:40:54 +0000609
wdenk945af8d2003-07-16 21:53:01 +0000610#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000611## MPC8xx Systems
612#########################################################################
613
wdenk2d24a3a2004-06-09 21:50:45 +0000614Adder_config \
615Adder87x_config \
wdenk26238132004-07-09 22:51:01 +0000616AdderII_config \
wdenk2d24a3a2004-06-09 21:50:45 +0000617 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200618 @mkdir -p $(obj)include
wdenk26238132004-07-09 22:51:01 +0000619 $(if $(findstring AdderII,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200620 @echo "#define CONFIG_MPC852T" > $(obj)include/config.h)
621 @$(MKCONFIG) -a Adder ppc mpc8xx adder
wdenk2d24a3a2004-06-09 21:50:45 +0000622
wdenk180d3f72004-01-04 16:28:35 +0000623ADS860_config \
wdenk180d3f72004-01-04 16:28:35 +0000624FADS823_config \
625FADS850SAR_config \
626MPC86xADS_config \
wdenk11142572004-06-06 21:35:06 +0000627MPC885ADS_config \
wdenk180d3f72004-01-04 16:28:35 +0000628FADS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200629 @$(MKCONFIG) $(@:_config=) ppc mpc8xx fads
wdenk7ebf7442002-11-02 23:17:16 +0000630
631AMX860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200632 @$(MKCONFIG) $(@:_config=) ppc mpc8xx amx860 westel
wdenk7ebf7442002-11-02 23:17:16 +0000633
634c2mon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200635 @$(MKCONFIG) $(@:_config=) ppc mpc8xx c2mon
wdenk7ebf7442002-11-02 23:17:16 +0000636
637CCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200638 @$(MKCONFIG) $(@:_config=) ppc mpc8xx CCM siemens
wdenk7ebf7442002-11-02 23:17:16 +0000639
640cogent_mpc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200641 @$(MKCONFIG) $(@:_config=) ppc mpc8xx cogent
wdenk7ebf7442002-11-02 23:17:16 +0000642
wdenk3bac3512003-03-12 10:41:04 +0000643ELPT860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200644 @$(MKCONFIG) $(@:_config=) ppc mpc8xx elpt860 LEOX
wdenk3bac3512003-03-12 10:41:04 +0000645
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100646EP88x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200647 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ep88x
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100648
wdenk7ebf7442002-11-02 23:17:16 +0000649ESTEEM192E_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200650 @$(MKCONFIG) $(@:_config=) ppc mpc8xx esteem192e
wdenk7ebf7442002-11-02 23:17:16 +0000651
652ETX094_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200653 @$(MKCONFIG) $(@:_config=) ppc mpc8xx etx094
wdenk7ebf7442002-11-02 23:17:16 +0000654
wdenk7ebf7442002-11-02 23:17:16 +0000655FLAGADM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200656 @$(MKCONFIG) $(@:_config=) ppc mpc8xx flagadm
wdenk7ebf7442002-11-02 23:17:16 +0000657
wdenk7aa78612003-05-03 15:50:43 +0000658xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
659
660GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000661GEN860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200662 @mkdir -p $(obj)include
663 @ >$(obj)include/config.h
wdenk7aa78612003-05-03 15:50:43 +0000664 @[ -z "$(findstring _SC,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200665 { echo "#define CONFIG_SC" >>$(obj)include/config.h ; \
wdenk7aa78612003-05-03 15:50:43 +0000666 echo "With reduced H/W feature set (SC)..." ; \
667 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200668 @$(MKCONFIG) -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000669
670GENIETV_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200671 @$(MKCONFIG) $(@:_config=) ppc mpc8xx genietv
wdenk7ebf7442002-11-02 23:17:16 +0000672
673GTH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200674 @$(MKCONFIG) $(@:_config=) ppc mpc8xx gth
wdenk7ebf7442002-11-02 23:17:16 +0000675
676hermes_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200677 @$(MKCONFIG) $(@:_config=) ppc mpc8xx hermes
wdenk7ebf7442002-11-02 23:17:16 +0000678
wdenkc40b2952004-03-13 23:29:43 +0000679HMI10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200680 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenkc40b2952004-03-13 23:29:43 +0000681
wdenk7ebf7442002-11-02 23:17:16 +0000682IAD210_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200683 @$(MKCONFIG) $(@:_config=) ppc mpc8xx IAD210 siemens
wdenk7ebf7442002-11-02 23:17:16 +0000684
685xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
686
687ICU862_100MHz_config \
688ICU862_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200689 @mkdir -p $(obj)include
690 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000691 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200692 { echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000693 echo "... with 100MHz system clock" ; \
694 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200695 @$(MKCONFIG) -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
wdenk7ebf7442002-11-02 23:17:16 +0000696
697IP860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200698 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ip860
wdenk7ebf7442002-11-02 23:17:16 +0000699
700IVML24_256_config \
701IVML24_128_config \
702IVML24_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200703 @mkdir -p $(obj)include
704 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000705 @[ -z "$(findstring IVML24_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200706 { echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000707 }
708 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200709 { echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000710 }
711 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200712 { echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000713 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200714 @$(MKCONFIG) -a IVML24 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000715
716IVMS8_256_config \
717IVMS8_128_config \
718IVMS8_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200719 @mkdir -p $(obj)include
720 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000721 @[ -z "$(findstring IVMS8_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200722 { echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000723 }
724 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200725 { echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000726 }
727 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200728 { echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000729 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200730 @$(MKCONFIG) -a IVMS8 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000731
wdenk56f94be2002-11-05 16:35:14 +0000732KUP4K_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200733 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4k kup
wdenk0608e042004-03-25 19:29:38 +0000734
735KUP4X_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200736 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000737
wdenk7ebf7442002-11-02 23:17:16 +0000738LANTEC_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200739 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lantec
wdenk7ebf7442002-11-02 23:17:16 +0000740
741lwmon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200742 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lwmon
wdenk7ebf7442002-11-02 23:17:16 +0000743
744MBX_config \
745MBX860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200746 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mbx8xx
wdenk7ebf7442002-11-02 23:17:16 +0000747
748MHPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200749 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mhpc eltec
wdenk7ebf7442002-11-02 23:17:16 +0000750
751MVS1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200752 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mvs1
wdenk7ebf7442002-11-02 23:17:16 +0000753
wdenk993cad92003-06-26 22:04:09 +0000754xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
755
756NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000757NETVIA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200758 @mkdir -p $(obj)include
759 @ >$(obj)include/config.h
wdenk993cad92003-06-26 22:04:09 +0000760 @[ -z "$(findstring NETVIA_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200761 { echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000762 echo "... Version 1" ; \
763 }
764 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200765 { echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000766 echo "... Version 2" ; \
767 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200768 @$(MKCONFIG) -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000769
wdenkc26e4542004-04-18 10:13:26 +0000770xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
771
772NETPHONE_V2_config \
wdenk04a85b32004-04-15 18:22:41 +0000773NETPHONE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200774 @mkdir -p $(obj)include
775 @ >$(obj)include/config.h
wdenkc26e4542004-04-18 10:13:26 +0000776 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200777 { echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000778 }
779 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200780 { echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000781 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200782 @$(MKCONFIG) -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk04a85b32004-04-15 18:22:41 +0000783
wdenk79fa88f2004-06-07 23:46:25 +0000784xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk04a85b32004-04-15 18:22:41 +0000785
wdenk79fa88f2004-06-07 23:46:25 +0000786NETTA_ISDN_6412_SWAPHOOK_config \
787NETTA_ISDN_SWAPHOOK_config \
788NETTA_6412_SWAPHOOK_config \
789NETTA_SWAPHOOK_config \
790NETTA_ISDN_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000791NETTA_ISDN_config \
wdenk79fa88f2004-06-07 23:46:25 +0000792NETTA_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000793NETTA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200794 @mkdir -p $(obj)include
795 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000796 @[ -z "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200797 { echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \
wdenk04a85b32004-04-15 18:22:41 +0000798 }
wdenk79fa88f2004-06-07 23:46:25 +0000799 @[ -n "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200800 { echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000801 }
802 @[ -z "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200803 { echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000804 }
805 @[ -n "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200806 { echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000807 }
808 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200809 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000810 }
811 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200812 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000813 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200814 @$(MKCONFIG) -a $(call xtract_NETTA,$@) ppc mpc8xx netta
wdenk04a85b32004-04-15 18:22:41 +0000815
wdenk79fa88f2004-06-07 23:46:25 +0000816xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
817
818NETTA2_V2_config \
819NETTA2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200820 @mkdir -p $(obj)include
821 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000822 @[ -z "$(findstring NETTA2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200823 { echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000824 }
825 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200826 { echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000827 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200828 @$(MKCONFIG) -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
wdenk79fa88f2004-06-07 23:46:25 +0000829
dzu@denx.dea367d422006-04-19 11:52:46 +0200830NC650_Rev1_config \
831NC650_Rev2_config \
832CP850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200833 @mkdir -p $(obj)include
834 @ >$(obj)include/config.h
dzu@denx.dea367d422006-04-19 11:52:46 +0200835 @[ -z "$(findstring CP850,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200836 { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \
837 echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200838 }
839 @[ -z "$(findstring Rev1,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200840 { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200841 }
842 @[ -z "$(findstring Rev2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200843 { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200844 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200845 @$(MKCONFIG) -a NC650 ppc mpc8xx nc650
wdenk7ca202f2004-08-28 22:45:57 +0000846
wdenk7ebf7442002-11-02 23:17:16 +0000847NX823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200848 @$(MKCONFIG) $(@:_config=) ppc mpc8xx nx823
wdenk7ebf7442002-11-02 23:17:16 +0000849
850pcu_e_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200851 @$(MKCONFIG) $(@:_config=) ppc mpc8xx pcu_e siemens
wdenk7ebf7442002-11-02 23:17:16 +0000852
wdenk3bbc8992003-12-07 22:27:15 +0000853QS850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200854 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000855
856QS823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200857 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000858
859QS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200860 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs860t snmc
wdenk3bbc8992003-12-07 22:27:15 +0000861
wdenkda93ed82004-09-29 11:02:56 +0000862quantum_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200863 @$(MKCONFIG) $(@:_config=) ppc mpc8xx quantum
wdenkda93ed82004-09-29 11:02:56 +0000864
wdenk7ebf7442002-11-02 23:17:16 +0000865R360MPI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200866 @$(MKCONFIG) $(@:_config=) ppc mpc8xx r360mpi
wdenk7ebf7442002-11-02 23:17:16 +0000867
wdenk682011f2003-06-03 23:54:09 +0000868RBC823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200869 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rbc823
wdenk682011f2003-06-03 23:54:09 +0000870
wdenk7ebf7442002-11-02 23:17:16 +0000871RPXClassic_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200872 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXClassic
wdenk7ebf7442002-11-02 23:17:16 +0000873
874RPXlite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200875 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXlite
wdenk7ebf7442002-11-02 23:17:16 +0000876
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100877RPXlite_DW_64_config \
878RPXlite_DW_LCD_config \
879RPXlite_DW_64_LCD_config \
wdenke63c8ee2004-06-09 21:04:48 +0000880RPXlite_DW_NVRAM_config \
881RPXlite_DW_NVRAM_64_config \
882RPXlite_DW_NVRAM_LCD_config \
883RPXlite_DW_NVRAM_64_LCD_config \
884RPXlite_DW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200885 @mkdir -p $(obj)include
886 @ >$(obj)include/config.h
wdenke63c8ee2004-06-09 21:04:48 +0000887 @[ -z "$(findstring _64,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200888 { echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000889 echo "... with 64MHz system clock ..."; \
890 }
891 @[ -z "$(findstring _LCD,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100892 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200893 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000894 echo "... with LCD display ..."; \
895 }
896 @[ -z "$(findstring _NVRAM,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100897 { echo "#define CFG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000898 echo "... with ENV in NVRAM ..."; \
899 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200900 @$(MKCONFIG) -a RPXlite_DW ppc mpc8xx RPXlite_dw
wdenke63c8ee2004-06-09 21:04:48 +0000901
wdenk73a8b272003-06-05 19:27:42 +0000902rmu_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200903 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rmu
wdenk73a8b272003-06-05 19:27:42 +0000904
wdenk7ebf7442002-11-02 23:17:16 +0000905RRvision_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200906 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000907
908RRvision_LCD_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200909 @mkdir -p $(obj)include
910 @echo "#define CONFIG_LCD" >$(obj)include/config.h
911 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
912 @$(MKCONFIG) -a RRvision ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000913
914SM850_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200915 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000916
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200917spc1920_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200918 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spc1920
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200919
wdenk7ebf7442002-11-02 23:17:16 +0000920SPD823TS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200921 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spd8xx
wdenk7ebf7442002-11-02 23:17:16 +0000922
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200923stxxtc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200924 @$(MKCONFIG) $(@:_config=) ppc mpc8xx stxxtc
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200925
wdenkdc7c9a12003-03-26 06:55:25 +0000926svm_sc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200927 @$(MKCONFIG) $(@:_config=) ppc mpc8xx svm_sc8xx
wdenkdc7c9a12003-03-26 06:55:25 +0000928
wdenk7ebf7442002-11-02 23:17:16 +0000929SXNI855T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200930 @$(MKCONFIG) $(@:_config=) ppc mpc8xx sixnet
wdenk7ebf7442002-11-02 23:17:16 +0000931
wdenkdb2f721f2003-03-06 00:58:30 +0000932# EMK MPC8xx based modules
933TOP860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200934 @$(MKCONFIG) $(@:_config=) ppc mpc8xx top860 emk
wdenkdb2f721f2003-03-06 00:58:30 +0000935
wdenk7ebf7442002-11-02 23:17:16 +0000936# Play some tricks for configuration selection
wdenke9132ea2004-04-24 23:23:30 +0000937# Only 855 and 860 boards may come with FEC
938# and only 823 boards may have LCD support
939xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +0000940
941FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000942FPS860L_config \
wdenkf12e5682003-07-07 20:07:54 +0000943NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +0000944TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000945TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +0000946TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000947TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000948TQM860L_config \
wdenkd126bfb2003-04-10 11:18:18 +0000949TQM862L_config \
wdenkae3af052003-08-07 22:18:11 +0000950TQM823M_config \
wdenkae3af052003-08-07 22:18:11 +0000951TQM850M_config \
wdenkf12e5682003-07-07 20:07:54 +0000952TQM855M_config \
wdenkf12e5682003-07-07 20:07:54 +0000953TQM860M_config \
wdenkf12e5682003-07-07 20:07:54 +0000954TQM862M_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200955TQM866M_config \
Markus Klotzbuecher090eb732006-07-12 15:26:01 +0200956TQM885D_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200957virtlab2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200958 @mkdir -p $(obj)include
959 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000960 @[ -z "$(findstring _LCD,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200961 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
962 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000963 echo "... with LCD display" ; \
964 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200965 @$(MKCONFIG) -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000966
967TTTech_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200968 @mkdir -p $(obj)include
969 @echo "#define CONFIG_LCD" >$(obj)include/config.h
970 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
971 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000972
wdenkec0aee72004-12-19 09:58:11 +0000973uc100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200974 @$(MKCONFIG) $(@:_config=) ppc mpc8xx uc100
wdenkf7d15722004-12-18 22:35:43 +0000975
wdenk608c9142003-01-13 23:54:46 +0000976v37_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200977 @mkdir -p $(obj)include
978 @echo "#define CONFIG_LCD" >$(obj)include/config.h
979 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h
980 @$(MKCONFIG) $(@:_config=) ppc mpc8xx v37
wdenk608c9142003-01-13 23:54:46 +0000981
dzu91e940d2003-09-25 22:32:40 +0000982wtk_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200983 @mkdir -p $(obj)include
984 @echo "#define CONFIG_LCD" >$(obj)include/config.h
985 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h
986 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
dzu91e940d2003-09-25 22:32:40 +0000987
wdenk7ebf7442002-11-02 23:17:16 +0000988#########################################################################
989## PPC4xx Systems
990#########################################################################
wdenke55ca7e2004-07-01 21:40:08 +0000991xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +0000992
993ADCIOP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200994 @$(MKCONFIG) $(@:_config=) ppc ppc4xx adciop esd
wdenk7ebf7442002-11-02 23:17:16 +0000995
Stefan Roese899620c2006-08-15 14:22:35 +0200996alpr_config: unconfig
997 @./mkconfig $(@:_config=) ppc ppc4xx alpr prodrive
998
Wolfgang Denk7521af12005-10-09 01:04:33 +0200999AP1000_config:unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001000 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ap1000 amirix
Wolfgang Denk7521af12005-10-09 01:04:33 +02001001
stroesec419d1d2004-12-16 18:44:40 +00001002APC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001003 @$(MKCONFIG) $(@:_config=) ppc ppc4xx apc405 esd
stroesec419d1d2004-12-16 18:44:40 +00001004
wdenk7ebf7442002-11-02 23:17:16 +00001005AR405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001006 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ar405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001007
stroese549826e2003-05-23 11:41:44 +00001008ASH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001009 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ash405 esd
stroese549826e2003-05-23 11:41:44 +00001010
Stefan Roese8a316c92005-08-01 16:49:12 +02001011bamboo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001012 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bamboo amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001013
1014bubinga_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001015 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bubinga amcc
stroese549826e2003-05-23 11:41:44 +00001016
wdenk7ebf7442002-11-02 23:17:16 +00001017CANBT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001018 @$(MKCONFIG) $(@:_config=) ppc ppc4xx canbt esd
wdenk7ebf7442002-11-02 23:17:16 +00001019
wdenk1d6f9722004-09-09 17:44:35 +00001020CATcenter_config \
1021CATcenter_25_config \
1022CATcenter_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001023 @mkdir -p $(obj)include
1024 @ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h
1025 @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001026 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001027 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001028 echo "SysClk = 25MHz" ; \
1029 }
1030 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001031 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001032 echo "SysClk = 33MHz" ; \
1033 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001034 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk10767cc2004-05-13 13:23:58 +00001035
Stefan Roese7644f162005-09-22 09:16:57 +02001036CPCI2DP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001037 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd
Stefan Roese7644f162005-09-22 09:16:57 +02001038
stroese549826e2003-05-23 11:41:44 +00001039CPCI405_config \
1040CPCI4052_config \
stroesec419d1d2004-12-16 18:44:40 +00001041CPCI405DT_config \
stroese549826e2003-05-23 11:41:44 +00001042CPCI405AB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001043 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci405 esd
1044 @echo "BOARD_REVISION = $(@:_config=)" >> $(obj)include/config.mk
wdenk7ebf7442002-11-02 23:17:16 +00001045
1046CPCI440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001047 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci440 esd
wdenk7ebf7442002-11-02 23:17:16 +00001048
1049CPCIISER4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001050 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpciiser4 esd
wdenk7ebf7442002-11-02 23:17:16 +00001051
wdenkdb01a2e2004-04-15 23:14:49 +00001052CRAYL1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001053 @$(MKCONFIG) $(@:_config=) ppc ppc4xx L1 cray
wdenk7ebf7442002-11-02 23:17:16 +00001054
wdenkcd0a9de2004-02-23 20:48:38 +00001055csb272_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001056 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb272
wdenkcd0a9de2004-02-23 20:48:38 +00001057
wdenkaa245092004-06-09 12:47:02 +00001058csb472_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001059 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb472
wdenkaa245092004-06-09 12:47:02 +00001060
wdenk7ebf7442002-11-02 23:17:16 +00001061DASA_SIM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001062 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dasa_sim esd
wdenk7ebf7442002-11-02 23:17:16 +00001063
stroese72cd5aa2003-09-12 08:57:15 +00001064DP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001065 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dp405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001066
wdenk7ebf7442002-11-02 23:17:16 +00001067DU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001068 @$(MKCONFIG) $(@:_config=) ppc ppc4xx du405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001069
Stefan Roese8a316c92005-08-01 16:49:12 +02001070ebony_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001071 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +00001072
wdenkdb01a2e2004-04-15 23:14:49 +00001073ERIC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001074 @$(MKCONFIG) $(@:_config=) ppc ppc4xx eric
wdenk7ebf7442002-11-02 23:17:16 +00001075
wdenkdb01a2e2004-04-15 23:14:49 +00001076EXBITGEN_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001077 @$(MKCONFIG) $(@:_config=) ppc ppc4xx exbitgen
wdenkd1cbe852003-06-28 17:24:46 +00001078
stroesec419d1d2004-12-16 18:44:40 +00001079G2000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001080 @$(MKCONFIG) $(@:_config=) ppc ppc4xx g2000
stroesec419d1d2004-12-16 18:44:40 +00001081
1082HH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001083 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001084
stroese72cd5aa2003-09-12 08:57:15 +00001085HUB405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001086 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001087
wdenkdb01a2e2004-04-15 23:14:49 +00001088JSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001089 @$(MKCONFIG) $(@:_config=) ppc ppc4xx jse
wdenkdb01a2e2004-04-15 23:14:49 +00001090
Stefan Roeseb79316f2005-08-15 12:31:23 +02001091KAREF_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001092 @$(MKCONFIG) $(@:_config=) ppc ppc4xx karef sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001093
Stefan Roese4745aca2007-02-20 10:57:08 +01001094katmai_config: unconfig
1095 @$(MKCONFIG) $(@:_config=) ppc ppc4xx katmai amcc
1096
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001097luan_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001098 @$(MKCONFIG) $(@:_config=) ppc ppc4xx luan amcc
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001099
Stefan Roeseb79316f2005-08-15 12:31:23 +02001100METROBOX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001101 @$(MKCONFIG) $(@:_config=) ppc ppc4xx metrobox sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001102
wdenkdb01a2e2004-04-15 23:14:49 +00001103MIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001104 @$(MKCONFIG) $(@:_config=) ppc ppc4xx mip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001105
wdenkdb01a2e2004-04-15 23:14:49 +00001106MIP405T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001107 @mkdir -p $(obj)include
1108 @echo "#define CONFIG_MIP405T" >$(obj)include/config.h
wdenkf3e0de62003-06-04 15:05:30 +00001109 @echo "Enable subset config for MIP405T"
Marian Balakowiczf9328632006-09-01 19:49:50 +02001110 @$(MKCONFIG) -a MIP405 ppc ppc4xx mip405 mpl
wdenkf3e0de62003-06-04 15:05:30 +00001111
wdenkdb01a2e2004-04-15 23:14:49 +00001112ML2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001113 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml2
wdenk7ebf7442002-11-02 23:17:16 +00001114
wdenkdb01a2e2004-04-15 23:14:49 +00001115ml300_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001116 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml300 xilinx
wdenk028ab6b2004-02-23 23:54:43 +00001117
Stefan Roese8a316c92005-08-01 16:49:12 +02001118ocotea_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001119 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocotea amcc
wdenk0e6d7982004-03-14 00:07:33 +00001120
wdenk7ebf7442002-11-02 23:17:16 +00001121OCRTC_config \
1122ORSG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001123 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocrtc esd
wdenk7ebf7442002-11-02 23:17:16 +00001124
Stefan Roese5568e612005-11-22 13:20:42 +01001125p3p440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001126 @$(MKCONFIG) $(@:_config=) ppc ppc4xx p3p440 prodrive
Stefan Roese5568e612005-11-22 13:20:42 +01001127
wdenk7ebf7442002-11-02 23:17:16 +00001128PCI405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001129 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pci405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001130
Stefan Roesea4c8d132006-06-02 16:18:04 +02001131pcs440ep_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001132 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pcs440ep
Stefan Roesea4c8d132006-06-02 16:18:04 +02001133
wdenkdb01a2e2004-04-15 23:14:49 +00001134PIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001135 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001136
stroese72cd5aa2003-09-12 08:57:15 +00001137PLU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001138 @$(MKCONFIG) $(@:_config=) ppc ppc4xx plu405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001139
stroese549826e2003-05-23 11:41:44 +00001140PMC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001141 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pmc405 esd
stroese549826e2003-05-23 11:41:44 +00001142
wdenk281e00a2004-08-01 22:48:16 +00001143PPChameleonEVB_config \
wdenke55ca7e2004-07-01 21:40:08 +00001144PPChameleonEVB_BA_25_config \
1145PPChameleonEVB_ME_25_config \
1146PPChameleonEVB_HI_25_config \
1147PPChameleonEVB_BA_33_config \
1148PPChameleonEVB_ME_33_config \
1149PPChameleonEVB_HI_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001150 @mkdir -p $(obj)include
1151 @ >$(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001152 @[ -z "$(findstring EVB_BA,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001153 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001154 echo "... BASIC model" ; \
1155 }
wdenk1d6f9722004-09-09 17:44:35 +00001156 @[ -z "$(findstring EVB_ME,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001157 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001158 echo "... MEDIUM model" ; \
1159 }
wdenk1d6f9722004-09-09 17:44:35 +00001160 @[ -z "$(findstring EVB_HI,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001161 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001162 echo "... HIGH-END model" ; \
1163 }
wdenke55ca7e2004-07-01 21:40:08 +00001164 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001165 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001166 echo "SysClk = 25MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001167 }
1168 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001169 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001170 echo "SysClk = 33MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001171 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001172 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk12f34242003-09-02 22:48:03 +00001173
Stefan Roese854bc8d2006-09-13 13:51:58 +02001174rainier_config: unconfig
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001175 @mkdir -p $(obj)include
1176 @echo "#define CONFIG_RAINIER" > $(obj)include/config.h
Stefan Roese2aa54f62007-02-02 12:42:08 +01001177 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Stefan Roese854bc8d2006-09-13 13:51:58 +02001178
1179rainier_nand_config: unconfig
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001180 @mkdir -p $(obj)include
1181 @mkdir -p $(obj)nand_spl
1182 @mkdir -p $(obj)board/amcc/sequoia
1183 @echo "#define CONFIG_RAINIER" > $(obj)include/config.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001184 @echo "#define CONFIG_NAND_U_BOOT" >> $(obj)include/config.h
Stefan Roese854bc8d2006-09-13 13:51:58 +02001185 @echo "Compile NAND boot image for sequoia"
Stefan Roese2aa54f62007-02-02 12:42:08 +01001186 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001187 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1188 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
wdenk7ebf7442002-11-02 23:17:16 +00001189
wdenk652a10c2005-01-09 23:48:14 +00001190sbc405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001191 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sbc405
wdenk652a10c2005-01-09 23:48:14 +00001192
Stefan Roese887e2ec2006-09-07 11:51:23 +02001193sequoia_config: unconfig
1194 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sequoia amcc
1195
1196sequoia_nand_config: unconfig
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001197 @mkdir -p $(obj)include
1198 @mkdir -p $(obj)nand_spl
1199 @mkdir -p $(obj)board/amcc/sequoia
1200 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roese887e2ec2006-09-07 11:51:23 +02001201 @echo "Compile NAND boot image for sequoia"
1202 @$(MKCONFIG) -a sequoia ppc ppc4xx sequoia amcc
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001203 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1204 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
stroese72cd5aa2003-09-12 08:57:15 +00001205
Wolfgang Denk6d3e0102007-01-16 18:30:50 +01001206sc3_config:unconfig
1207 @./mkconfig $(@:_config=) ppc ppc4xx sc3
Heiko Schocherca43ba12007-01-11 15:44:44 +01001208
Stefan Roese8a316c92005-08-01 16:49:12 +02001209sycamore_config: unconfig
Stefan Roese2aa54f62007-02-02 12:42:08 +01001210 @$(MKCONFIG) -n $@ -a walnut ppc ppc4xx walnut amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001211
Stefan Roese5fb692c2007-01-18 10:25:34 +01001212taishan_config: unconfig
1213 @$(MKCONFIG) $(@:_config=) ppc ppc4xx taishan amcc
1214
wdenk7ebf7442002-11-02 23:17:16 +00001215VOH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001216 @$(MKCONFIG) $(@:_config=) ppc ppc4xx voh405 esd
wdenk3bac3512003-03-12 10:41:04 +00001217
stroesec419d1d2004-12-16 18:44:40 +00001218VOM405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001219 @$(MKCONFIG) $(@:_config=) ppc ppc4xx vom405 esd
stroesec419d1d2004-12-16 18:44:40 +00001220
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001221CMS700_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001222 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001223
wdenk7ebf7442002-11-02 23:17:16 +00001224W7OLMC_config \
1225W7OLMG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001226 @$(MKCONFIG) $(@:_config=) ppc ppc4xx w7o
wdenk7ebf7442002-11-02 23:17:16 +00001227
Stefan Roese8a316c92005-08-01 16:49:12 +02001228walnut_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001229 @$(MKCONFIG) $(@:_config=) ppc ppc4xx walnut amcc
wdenk7ebf7442002-11-02 23:17:16 +00001230
stroesec419d1d2004-12-16 18:44:40 +00001231WUH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001232 @$(MKCONFIG) $(@:_config=) ppc ppc4xx wuh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001233
wdenkdb01a2e2004-04-15 23:14:49 +00001234XPEDITE1K_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001235 @$(MKCONFIG) $(@:_config=) ppc ppc4xx xpedite1k
wdenkba56f622004-02-06 23:19:44 +00001236
Stefan Roese8a316c92005-08-01 16:49:12 +02001237yosemite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001238 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yosemite amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001239
1240yellowstone_config: unconfig
Stefan Roese700200c2007-01-30 17:04:19 +01001241 @mkdir -p $(obj)include
1242 @echo "#define CONFIG_YELLOWSTONE" > $(obj)include/config.h
Stefan Roese2aa54f62007-02-02 12:42:08 +01001243 @$(MKCONFIG) -n $@ -a yosemite ppc ppc4xx yosemite amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001244
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001245yucca_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001246 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yucca amcc
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001247
wdenk7ebf7442002-11-02 23:17:16 +00001248#########################################################################
wdenk983fda82004-10-28 00:09:35 +00001249## MPC8220 Systems
1250#########################################################################
Wolfgang Denkdc17fb62005-08-03 22:32:02 +02001251
1252Alaska8220_config \
1253Yukon8220_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001254 @$(MKCONFIG) $(@:_config=) ppc mpc8220 alaska
wdenk983fda82004-10-28 00:09:35 +00001255
wdenk12b43d52005-04-05 21:57:18 +00001256sorcery_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001257 @$(MKCONFIG) $(@:_config=) ppc mpc8220 sorcery
wdenk12b43d52005-04-05 21:57:18 +00001258
wdenk983fda82004-10-28 00:09:35 +00001259#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001260## MPC824x Systems
1261#########################################################################
wdenkefa329c2004-03-23 20:18:25 +00001262xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001263
wdenk03329902003-06-20 22:36:30 +00001264A3000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001265 @$(MKCONFIG) $(@:_config=) ppc mpc824x a3000
wdenk03329902003-06-20 22:36:30 +00001266
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001267barco_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001268 @$(MKCONFIG) $(@:_config=) ppc mpc824x barco
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001269
wdenk7ebf7442002-11-02 23:17:16 +00001270BMW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001271 @$(MKCONFIG) $(@:_config=) ppc mpc824x bmw
wdenk7ebf7442002-11-02 23:17:16 +00001272
wdenk3bac3512003-03-12 10:41:04 +00001273CPC45_config \
1274CPC45_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001275 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc824x cpc45
1276 @cd $(obj)include ; \
wdenk3bac3512003-03-12 10:41:04 +00001277 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1278 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1279 echo "... booting from 8-bit flash" ; \
1280 else \
1281 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1282 echo "... booting from 64-bit flash" ; \
1283 fi; \
1284 echo "export CONFIG_BOOT_ROM" >> config.mk;
1285
wdenk7ebf7442002-11-02 23:17:16 +00001286CU824_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001287 @$(MKCONFIG) $(@:_config=) ppc mpc824x cu824
wdenk7ebf7442002-11-02 23:17:16 +00001288
wdenk7abf0c52004-04-18 21:45:42 +00001289debris_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001290 @$(MKCONFIG) $(@:_config=) ppc mpc824x debris etin
wdenk7abf0c52004-04-18 21:45:42 +00001291
wdenk80885a92004-02-26 23:46:20 +00001292eXalion_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001293 @$(MKCONFIG) $(@:_config=) ppc mpc824x eXalion
wdenk80885a92004-02-26 23:46:20 +00001294
wdenk756f5862005-04-03 15:51:42 +00001295HIDDEN_DRAGON_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001296 @$(MKCONFIG) $(@:_config=) ppc mpc824x hidden_dragon
wdenk756f5862005-04-03 15:51:42 +00001297
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001298kvme080_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001299 @$(MKCONFIG) $(@:_config=) ppc mpc824x kvme080 etin
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001300
wdenk7ebf7442002-11-02 23:17:16 +00001301MOUSSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001302 @$(MKCONFIG) $(@:_config=) ppc mpc824x mousse
wdenk7ebf7442002-11-02 23:17:16 +00001303
1304MUSENKI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001305 @$(MKCONFIG) $(@:_config=) ppc mpc824x musenki
wdenk7ebf7442002-11-02 23:17:16 +00001306
wdenkb4676a22003-12-07 19:24:00 +00001307MVBLUE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001308 @$(MKCONFIG) $(@:_config=) ppc mpc824x mvblue
wdenkb4676a22003-12-07 19:24:00 +00001309
wdenk7ebf7442002-11-02 23:17:16 +00001310OXC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001311 @$(MKCONFIG) $(@:_config=) ppc mpc824x oxc
wdenk7ebf7442002-11-02 23:17:16 +00001312
1313PN62_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001314 @$(MKCONFIG) $(@:_config=) ppc mpc824x pn62
wdenk7ebf7442002-11-02 23:17:16 +00001315
1316Sandpoint8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001317 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001318
1319Sandpoint8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001320 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001321
wdenk466b7412004-07-10 22:35:59 +00001322sbc8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001323 @$(MKCONFIG) $(@:_config=) ppc mpc824x sbc8240
wdenk466b7412004-07-10 22:35:59 +00001324
wdenkd1cbe852003-06-28 17:24:46 +00001325SL8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001326 @$(MKCONFIG) $(@:_config=) ppc mpc824x sl8245
wdenkd1cbe852003-06-28 17:24:46 +00001327
wdenk7ebf7442002-11-02 23:17:16 +00001328utx8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001329 @$(MKCONFIG) $(@:_config=) ppc mpc824x utx8245
wdenk7ebf7442002-11-02 23:17:16 +00001330
1331#########################################################################
1332## MPC8260 Systems
1333#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001334
wdenk54387ac2003-10-08 22:45:44 +00001335atc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001336 @$(MKCONFIG) $(@:_config=) ppc mpc8260 atc
wdenk54387ac2003-10-08 22:45:44 +00001337
wdenk7ebf7442002-11-02 23:17:16 +00001338cogent_mpc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001339 @$(MKCONFIG) $(@:_config=) ppc mpc8260 cogent
wdenk7ebf7442002-11-02 23:17:16 +00001340
1341CPU86_config \
1342CPU86_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001343 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu86
1344 @cd $(obj)include ; \
wdenk7ebf7442002-11-02 23:17:16 +00001345 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1346 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1347 echo "... booting from 8-bit flash" ; \
1348 else \
1349 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1350 echo "... booting from 64-bit flash" ; \
1351 fi; \
1352 echo "export CONFIG_BOOT_ROM" >> config.mk;
1353
wdenk384cc682005-04-03 22:35:21 +00001354CPU87_config \
1355CPU87_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001356 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu87
1357 @cd $(obj)include ; \
wdenk384cc682005-04-03 22:35:21 +00001358 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1359 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1360 echo "... booting from 8-bit flash" ; \
1361 else \
1362 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1363 echo "... booting from 64-bit flash" ; \
1364 fi; \
1365 echo "export CONFIG_BOOT_ROM" >> config.mk;
1366
Wolfgang Denkf901a832005-08-06 01:42:58 +02001367ep8248_config \
1368ep8248E_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001369 @$(MKCONFIG) ep8248 ppc mpc8260 ep8248
Wolfgang Denkf901a832005-08-06 01:42:58 +02001370
wdenk7ebf7442002-11-02 23:17:16 +00001371ep8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001372 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep8260
wdenk7ebf7442002-11-02 23:17:16 +00001373
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001374ep82xxm_config: unconfig
1375 @./mkconfig $(@:_config=) ppc mpc8260 ep82xxm
1376
wdenk7ebf7442002-11-02 23:17:16 +00001377gw8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001378 @$(MKCONFIG) $(@:_config=) ppc mpc8260 gw8260
wdenk7ebf7442002-11-02 23:17:16 +00001379
1380hymod_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001381 @$(MKCONFIG) $(@:_config=) ppc mpc8260 hymod
wdenk7ebf7442002-11-02 23:17:16 +00001382
wdenk9dd41a72005-05-12 22:48:09 +00001383IDS8247_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001384 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ids8247
wdenk9dd41a72005-05-12 22:48:09 +00001385
wdenk7ebf7442002-11-02 23:17:16 +00001386IPHASE4539_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001387 @$(MKCONFIG) $(@:_config=) ppc mpc8260 iphase4539
wdenk7ebf7442002-11-02 23:17:16 +00001388
wdenkc3c7f862004-06-09 14:47:54 +00001389ISPAN_config \
1390ISPAN_REVB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001391 @mkdir -p $(obj)include
wdenkc3c7f862004-06-09 14:47:54 +00001392 @if [ "$(findstring _REVB_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001393 echo "#define CFG_REV_B" > $(obj)include/config.h ; \
wdenkc3c7f862004-06-09 14:47:54 +00001394 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001395 @$(MKCONFIG) -a ISPAN ppc mpc8260 ispan
wdenkc3c7f862004-06-09 14:47:54 +00001396
wdenk04a85b32004-04-15 18:22:41 +00001397MPC8260ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001398MPC8260ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001399MPC8260ADS_33MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001400MPC8260ADS_33MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001401MPC8260ADS_40MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001402MPC8260ADS_40MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001403MPC8272ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001404MPC8272ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001405PQ2FADS_config \
wdenk901787d2005-04-03 23:22:21 +00001406PQ2FADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001407PQ2FADS-VR_config \
wdenk901787d2005-04-03 23:22:21 +00001408PQ2FADS-VR_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001409PQ2FADS-ZU_config \
wdenk901787d2005-04-03 23:22:21 +00001410PQ2FADS-ZU_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001411PQ2FADS-ZU_66MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001412PQ2FADS-ZU_66MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001413 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001414 @mkdir -p $(obj)include
1415 @mkdir -p $(obj)board/mpc8260ads
wdenk04a85b32004-04-15 18:22:41 +00001416 $(if $(findstring PQ2FADS,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001417 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > $(obj)include/config.h, \
1418 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h)
wdenk04a85b32004-04-15 18:22:41 +00001419 $(if $(findstring MHz,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001420 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \
wdenk04a85b32004-04-15 18:22:41 +00001421 $(if $(findstring VR,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001422 @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h))
wdenk901787d2005-04-03 23:22:21 +00001423 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001424 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/mpc8260ads/config.tmp ; \
wdenk901787d2005-04-03 23:22:21 +00001425 echo "... with lowboot configuration" ; \
1426 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001427 @$(MKCONFIG) -a MPC8260ADS ppc mpc8260 mpc8260ads
wdenk7ebf7442002-11-02 23:17:16 +00001428
wdenkdb2f721f2003-03-06 00:58:30 +00001429MPC8266ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001430 @$(MKCONFIG) $(@:_config=) ppc mpc8260 mpc8266ads
wdenkdb2f721f2003-03-06 00:58:30 +00001431
wdenkefa329c2004-03-23 20:18:25 +00001432# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk10f67012003-03-25 18:06:06 +00001433PM825_config \
wdenkefa329c2004-03-23 20:18:25 +00001434PM825_ROMBOOT_config \
1435PM825_BIGFLASH_config \
1436PM825_ROMBOOT_BIGFLASH_config \
wdenk7ebf7442002-11-02 23:17:16 +00001437PM826_config \
wdenkefa329c2004-03-23 20:18:25 +00001438PM826_ROMBOOT_config \
1439PM826_BIGFLASH_config \
1440PM826_ROMBOOT_BIGFLASH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001441 @mkdir -p $(obj)include
1442 @mkdir -p $(obj)board/pm826
wdenkefa329c2004-03-23 20:18:25 +00001443 @if [ "$(findstring PM825_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001444 echo "#define CONFIG_PCI" >$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001445 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001446 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001447 fi
1448 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1449 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001450 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1451 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001452 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1453 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001454 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001455 fi; \
1456 else \
wdenk7ebf7442002-11-02 23:17:16 +00001457 echo "... booting from 64-bit flash" ; \
wdenkefa329c2004-03-23 20:18:25 +00001458 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1459 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001460 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
1461 echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001462 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001463 echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001464 fi; \
1465 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001466 @$(MKCONFIG) -a PM826 ppc mpc8260 pm826
wdenkefa329c2004-03-23 20:18:25 +00001467
1468PM828_config \
1469PM828_PCI_config \
1470PM828_ROMBOOT_config \
1471PM828_ROMBOOT_PCI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001472 @mkdir -p $(obj)include
1473 @mkdir -p $(obj)board/pm826
Marian Balakowicz17076262006-04-05 20:37:11 +02001474 @if [ "$(findstring _PCI_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001475 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001476 echo "... with PCI enabled" ; \
1477 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001478 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001479 fi
1480 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1481 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001482 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1483 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001484 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001485 @$(MKCONFIG) -a PM828 ppc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +00001486
1487ppmc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001488 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ppmc8260
wdenk7ebf7442002-11-02 23:17:16 +00001489
wdenk8b0bfc62005-04-03 23:11:38 +00001490Rattler8248_config \
1491Rattler_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001492 @mkdir -p $(obj)include
wdenk8b0bfc62005-04-03 23:11:38 +00001493 $(if $(findstring 8248,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001494 @echo "#define CONFIG_MPC8248" > $(obj)include/config.h)
1495 @$(MKCONFIG) -a Rattler ppc mpc8260 rattler
wdenk8b0bfc62005-04-03 23:11:38 +00001496
wdenk7ebf7442002-11-02 23:17:16 +00001497RPXsuper_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001498 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rpxsuper
wdenk7ebf7442002-11-02 23:17:16 +00001499
1500rsdproto_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001501 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rsdproto
wdenk7ebf7442002-11-02 23:17:16 +00001502
1503sacsng_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001504 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sacsng
wdenk7ebf7442002-11-02 23:17:16 +00001505
1506sbc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001507 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sbc8260
wdenk7ebf7442002-11-02 23:17:16 +00001508
1509SCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001510 @$(MKCONFIG) $(@:_config=) ppc mpc8260 SCM siemens
wdenk7ebf7442002-11-02 23:17:16 +00001511
wdenk27b207f2003-07-24 23:38:38 +00001512TQM8255_AA_config \
1513TQM8260_AA_config \
1514TQM8260_AB_config \
1515TQM8260_AC_config \
1516TQM8260_AD_config \
1517TQM8260_AE_config \
1518TQM8260_AF_config \
1519TQM8260_AG_config \
1520TQM8260_AH_config \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001521TQM8260_AI_config \
wdenk27b207f2003-07-24 23:38:38 +00001522TQM8265_AA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001523 @mkdir -p $(obj)include
wdenk27b207f2003-07-24 23:38:38 +00001524 @case "$@" in \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001525 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
1526 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
1527 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1528 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1529 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1530 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
1531 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1532 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
1533 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
1534 TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1535 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
wdenk27b207f2003-07-24 23:38:38 +00001536 esac; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001537 >$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001538 if [ "$${CTYPE}" != "MPC8260" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001539 echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001540 fi; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001541 echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001542 echo "... with $${CFREQ}MHz system clock" ; \
1543 if [ "$${CACHE}" == "yes" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001544 echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001545 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001546 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001547 echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001548 echo "... without L2 Cache support" ; \
wdenk27b207f2003-07-24 23:38:38 +00001549 fi; \
1550 if [ "$${BMODE}" == "60x" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001551 echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001552 echo "... with 60x Bus Mode" ; \
1553 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001554 echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001555 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001556 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001557 @$(MKCONFIG) -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +00001558
Heiko Schocherfa230442006-12-21 17:17:02 +01001559TQM8272_config: unconfig
1560 @$(MKCONFIG) -a TQM8272 ppc mpc8260 tqm8272
1561
wdenkba91e262005-05-30 23:55:42 +00001562VoVPN-GW_66MHz_config \
1563VoVPN-GW_100MHz_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001564 @mkdir -p $(obj)include
1565 @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h
1566 @$(MKCONFIG) -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
wdenkba91e262005-05-30 23:55:42 +00001567
wdenk54387ac2003-10-08 22:45:44 +00001568ZPC1900_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001569 @$(MKCONFIG) $(@:_config=) ppc mpc8260 zpc1900
wdenk7aa78612003-05-03 15:50:43 +00001570
wdenk4e5ca3e2003-12-08 01:34:36 +00001571#########################################################################
1572## Coldfire
1573#########################################################################
1574
Wolfgang Denk74812662005-12-12 16:06:05 +01001575cobra5272_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001576 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272
Wolfgang Denk74812662005-12-12 16:06:05 +01001577
Wolfgang Denk4176c792006-06-10 19:27:47 +02001578EB+MCF-EV123_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001579 @mkdir -p $(obj)include
1580 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1581 @ >$(obj)include/config.h
1582 @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1583 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001584
1585EB+MCF-EV123_internal_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001586 @mkdir -p $(obj)include
1587 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1588 @ >$(obj)include/config.h
1589 @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1590 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001591
Bartlomiej Siekadaa6e412006-12-20 00:27:32 +01001592idmr_config : unconfig
1593 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 idmr
1594
Wolfgang Denk4176c792006-06-10 19:27:47 +02001595M5271EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001596 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb
Wolfgang Denk4176c792006-06-10 19:27:47 +02001597
wdenk4e5ca3e2003-12-08 01:34:36 +00001598M5272C3_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001599 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3
wdenk4e5ca3e2003-12-08 01:34:36 +00001600
1601M5282EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001602 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb
wdenk4e5ca3e2003-12-08 01:34:36 +00001603
stroesec419d1d2004-12-16 18:44:40 +00001604TASREG_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001605 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd
stroesec419d1d2004-12-16 18:44:40 +00001606
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001607r5200_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001608 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 r5200
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001609
wdenk7ebf7442002-11-02 23:17:16 +00001610#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -05001611## MPC83xx Systems
1612#########################################################################
1613
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001614TQM834x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001615 @$(MKCONFIG) $(@:_config=) ppc mpc83xx tqm834x
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001616
Marian Balakowicz991425f2006-03-14 16:24:38 +01001617MPC8349EMDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001618 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349emds
Marian Balakowicz991425f2006-03-14 16:24:38 +01001619
Dave Liu5f820432006-11-03 19:33:44 -06001620MPC8360EMDS_config \
1621MPC8360EMDS_HOST_33_config \
1622MPC8360EMDS_HOST_66_config \
1623MPC8360EMDS_SLAVE_config: unconfig
1624 @echo "" >include/config.h ; \
1625 if [ "$(findstring _HOST_,$@)" ] ; then \
1626 echo -n "... PCI HOST " ; \
1627 echo "#define CONFIG_PCI" >>include/config.h ; \
1628 fi ; \
1629 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1630 echo "...PCI SLAVE 66M" ; \
1631 echo "#define CONFIG_PCI" >>include/config.h ; \
1632 echo "#define CONFIG_PCISLAVE" >>include/config.h ; \
1633 fi ; \
1634 if [ "$(findstring _33_,$@)" ] ; then \
1635 echo -n "...33M ..." ; \
1636 echo "#define PCI_33M" >>include/config.h ; \
1637 fi ; \
1638 if [ "$(findstring _66_,$@)" ] ; then \
1639 echo -n "...66M..." ; \
1640 echo "#define PCI_66M" >>include/config.h ; \
1641 fi ;
1642 @$(MKCONFIG) -a MPC8360EMDS ppc mpc83xx mpc8360emds
1643
Timur Tabi2ad6b512006-10-31 18:44:42 -06001644MPC8349ITX_config: unconfig
1645 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349itx
1646
Eran Libertyf046ccd2005-07-28 10:08:46 -05001647#########################################################################
wdenk42d1f032003-10-15 23:53:47 +00001648## MPC85xx Systems
1649#########################################################################
1650
wdenk0ac6f8b2004-07-09 23:27:13 +00001651MPC8540ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001652 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8540ads
wdenk42d1f032003-10-15 23:53:47 +00001653
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001654MPC8540EVAL_config \
1655MPC8540EVAL_33_config \
1656MPC8540EVAL_66_config \
1657MPC8540EVAL_33_slave_config \
1658MPC8540EVAL_66_slave_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001659 @mkdir -p $(obj)include
1660 @echo "" >$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001661 if [ "$(findstring _33_,$@)" ] ; then \
1662 echo -n "... 33 MHz PCI" ; \
1663 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001664 echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001665 echo -n "... 66 MHz PCI" ; \
1666 fi ; \
1667 if [ "$(findstring _slave_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001668 echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001669 echo " slave" ; \
1670 else \
1671 echo " host" ; \
1672 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001673 @$(MKCONFIG) -a MPC8540EVAL ppc mpc85xx mpc8540eval
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001674
wdenk0ac6f8b2004-07-09 23:27:13 +00001675MPC8560ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001676 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8560ads
wdenk42d1f032003-10-15 23:53:47 +00001677
wdenk03f5c552004-10-10 21:21:55 +00001678MPC8541CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001679 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8541cds cds
wdenk03f5c552004-10-10 21:21:55 +00001680
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001681MPC8548CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001682 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8548cds cds
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001683
wdenk03f5c552004-10-10 21:21:55 +00001684MPC8555CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001685 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8555cds cds
wdenk7abf0c52004-04-18 21:45:42 +00001686
wdenk384cc682005-04-03 22:35:21 +00001687PM854_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001688 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm854
wdenk384cc682005-04-03 22:35:21 +00001689
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001690PM856_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001691 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm856
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001692
wdenkc15f3122004-10-10 22:44:24 +00001693sbc8540_config \
1694sbc8540_33_config \
1695sbc8540_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001696 @mkdir -p $(obj)include
wdenkc15f3122004-10-10 22:44:24 +00001697 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001698 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001699 echo "... 66 MHz PCI" ; \
1700 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001701 >$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001702 echo "... 33 MHz PCI" ; \
1703 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001704 @$(MKCONFIG) -a SBC8540 ppc mpc85xx sbc8560
wdenkc15f3122004-10-10 22:44:24 +00001705
wdenk466b7412004-07-10 22:35:59 +00001706sbc8560_config \
1707sbc8560_33_config \
1708sbc8560_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001709 @mkdir -p $(obj)include
wdenk8b07a112004-07-10 21:45:47 +00001710 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001711 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001712 echo "... 66 MHz PCI" ; \
1713 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001714 >$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001715 echo "... 33 MHz PCI" ; \
1716 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001717 @$(MKCONFIG) -a sbc8560 ppc mpc85xx sbc8560
wdenk8b07a112004-07-10 21:45:47 +00001718
wdenk03f5c552004-10-10 21:21:55 +00001719stxgp3_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001720 @$(MKCONFIG) $(@:_config=) ppc mpc85xx stxgp3
wdenk03f5c552004-10-10 21:21:55 +00001721
Stefan Roesed96f41e2005-11-30 13:06:40 +01001722TQM8540_config \
1723TQM8541_config \
1724TQM8555_config \
1725TQM8560_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001726 @mkdir -p $(obj)include
Wolfgang Denka889bd22005-12-06 15:02:31 +01001727 @CTYPE=$(subst TQM,,$(@:_config=)); \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001728 >$(obj)include/config.h ; \
Stefan Roesed96f41e2005-11-30 13:06:40 +01001729 echo "... TQM"$${CTYPE}; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001730 echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \
1731 echo "#define CONFIG_TQM$${CTYPE}">>$(obj)include/config.h; \
1732 echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \
1733 echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>$(obj)include/config.h; \
1734 echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>$(obj)include/config.h
1735 @$(MKCONFIG) -a TQM85xx ppc mpc85xx tqm85xx
wdenkf5c5ef42005-04-05 16:26:47 +00001736
wdenk42d1f032003-10-15 23:53:47 +00001737#########################################################################
Jon Loeligerdebb7352006-04-26 17:58:56 -05001738## MPC86xx Systems
1739#########################################################################
1740
1741MPC8641HPCN_config: unconfig
1742 @./mkconfig $(@:_config=) ppc mpc86xx mpc8641hpcn
1743
1744
1745#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001746## 74xx/7xx Systems
1747#########################################################################
1748
wdenkc7de8292002-11-19 11:04:11 +00001749AmigaOneG3SE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001750 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
wdenkc7de8292002-11-19 11:04:11 +00001751
wdenk15647dc2003-10-09 19:00:25 +00001752BAB7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001753 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx bab7xx eltec
wdenk15647dc2003-10-09 19:00:25 +00001754
stroesec419d1d2004-12-16 18:44:40 +00001755CPCI750_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001756 @$(MKCONFIG) CPCI750 ppc 74xx_7xx cpci750 esd
stroesec419d1d2004-12-16 18:44:40 +00001757
wdenk3a473b22004-01-03 00:43:19 +00001758DB64360_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001759 @$(MKCONFIG) DB64360 ppc 74xx_7xx db64360 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001760
1761DB64460_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001762 @$(MKCONFIG) DB64460 ppc 74xx_7xx db64460 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001763
wdenk15647dc2003-10-09 19:00:25 +00001764ELPPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001765 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx elppc eltec
wdenk15647dc2003-10-09 19:00:25 +00001766
wdenk7ebf7442002-11-02 23:17:16 +00001767EVB64260_config \
1768EVB64260_750CX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001769 @$(MKCONFIG) EVB64260 ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001770
wdenk15647dc2003-10-09 19:00:25 +00001771P3G4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001772 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001773
Stefan Roese1eac2a72006-11-29 15:42:37 +01001774p3m750_config \
1775p3m7448_config: unconfig
1776 @mkdir -p $(obj)include
1777 @if [ "$(findstring 750_,$@)" ] ; then \
1778 echo "#define CONFIG_P3M750" >>$(obj)include/config.h ; \
1779 else \
1780 echo "#define CONFIG_P3M7448" >>$(obj)include/config.h ; \
1781 fi
1782 @$(MKCONFIG) -a p3mx ppc 74xx_7xx p3mx prodrive
1783
wdenk7ebf7442002-11-02 23:17:16 +00001784PCIPPC2_config \
1785PCIPPC6_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001786 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx pcippc2
wdenk7ebf7442002-11-02 23:17:16 +00001787
wdenk15647dc2003-10-09 19:00:25 +00001788ZUMA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001789 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk12f34242003-09-02 22:48:03 +00001790
Heiko Schocherf5e0d032006-06-19 11:02:41 +02001791ppmc7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001792 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx ppmc7xx
Wolfgang Denkb87dfd22006-07-19 13:50:38 +02001793
wdenk7ebf7442002-11-02 23:17:16 +00001794#========================================================================
1795# ARM
1796#========================================================================
1797#########################################################################
1798## StrongARM Systems
1799#########################################################################
1800
wdenkea66bc82004-04-15 23:23:39 +00001801assabet_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001802 @$(MKCONFIG) $(@:_config=) arm sa1100 assabet
wdenkea66bc82004-04-15 23:23:39 +00001803
wdenk7ebf7442002-11-02 23:17:16 +00001804dnp1110_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001805 @$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110
wdenk7ebf7442002-11-02 23:17:16 +00001806
wdenk855a4962004-03-14 18:23:55 +00001807gcplus_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001808 @$(MKCONFIG) $(@:_config=) arm sa1100 gcplus
wdenk855a4962004-03-14 18:23:55 +00001809
1810lart_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001811 @$(MKCONFIG) $(@:_config=) arm sa1100 lart
wdenk855a4962004-03-14 18:23:55 +00001812
wdenk7ebf7442002-11-02 23:17:16 +00001813shannon_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001814 @$(MKCONFIG) $(@:_config=) arm sa1100 shannon
wdenk7ebf7442002-11-02 23:17:16 +00001815
1816#########################################################################
wdenk2e5983d2003-07-15 20:04:06 +00001817## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00001818#########################################################################
1819
wdenkb0639ca2003-09-17 22:48:07 +00001820xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk43d96162003-03-06 00:02:04 +00001821
wdenk3ff02c22004-06-09 15:25:53 +00001822xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
wdenk63e73c92004-02-23 22:22:28 +00001823
wdenka56bd922004-06-06 23:13:55 +00001824xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1825
wdenka85f9f22005-04-06 13:52:31 +00001826at91rm9200dk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001827 @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001828
1829cmc_pu2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001830 @$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001831
Wolfgang Denk645da512005-10-05 02:00:09 +02001832csb637_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001833 @$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200
Wolfgang Denk645da512005-10-05 02:00:09 +02001834
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001835mp2usb_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001836 @$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001837
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001838
Wolfgang Denk74f43042005-09-25 01:48:28 +02001839########################################################################
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001840## ARM Integrator boards - see doc/README-integrator for more info.
1841integratorap_config \
1842ap_config \
1843ap966_config \
1844ap922_config \
1845ap922_XA10_config \
1846ap7_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01001847ap720t_config \
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001848ap920t_config \
1849ap926ejs_config \
1850ap946es_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001851 @board/integratorap/split_by_variant.sh $@
wdenk3d3befa2004-03-14 15:06:13 +00001852
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001853integratorcp_config \
1854cp_config \
1855cp920t_config \
1856cp926ejs_config \
1857cp946es_config \
1858cp1136_config \
1859cp966_config \
1860cp922_config \
1861cp922_XA10_config \
1862cp1026_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001863 @board/integratorcp/split_by_variant.sh $@
wdenk25d67122004-12-10 11:40:40 +00001864
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001865kb9202_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001866 @$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001867
wdenkf832d8a2004-06-10 21:55:33 +00001868lpd7a400_config \
1869lpd7a404_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001870 @$(MKCONFIG) $(@:_config=) arm lh7a40x lpd7a40x
wdenk3d3befa2004-03-14 15:06:13 +00001871
wdenk281e00a2004-08-01 22:48:16 +00001872mx1ads_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001873 @$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001874
1875mx1fs2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001876 @$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001877
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001878netstar_32_config \
1879netstar_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001880 @mkdir -p $(obj)include
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001881 @if [ "$(findstring _32_,$@)" ] ; then \
1882 echo "... 32MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001883 echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001884 else \
1885 echo "... 64MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001886 echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001887 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001888 @$(MKCONFIG) -a netstar arm arm925t netstar
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001889
wdenk2e5983d2003-07-15 20:04:06 +00001890omap1510inn_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001891 @$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn
wdenk2e5983d2003-07-15 20:04:06 +00001892
wdenk1eaeb582004-06-08 00:22:43 +00001893omap5912osk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001894 @$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk NULL omap
wdenk1eaeb582004-06-08 00:22:43 +00001895
wdenk63e73c92004-02-23 22:22:28 +00001896omap1610inn_config \
1897omap1610inn_cs0boot_config \
1898omap1610inn_cs3boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00001899omap1610inn_cs_autoboot_config \
wdenk63e73c92004-02-23 22:22:28 +00001900omap1610h2_config \
1901omap1610h2_cs0boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00001902omap1610h2_cs3boot_config \
1903omap1610h2_cs_autoboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001904 @mkdir -p $(obj)include
wdenk63e73c92004-02-23 22:22:28 +00001905 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001906 echo "#define CONFIG_CS0_BOOT" >> .$(obj)/include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00001907 echo "... configured for CS0 boot"; \
wdenk3ff02c22004-06-09 15:25:53 +00001908 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001909 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)./include/config.h ; \
wdenk3ff02c22004-06-09 15:25:53 +00001910 echo "... configured for CS_AUTO boot"; \
wdenk63e73c92004-02-23 22:22:28 +00001911 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001912 echo "#define CONFIG_CS3_BOOT" >> $(obj)./include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00001913 echo "... configured for CS3 boot"; \
wdenk63e73c92004-02-23 22:22:28 +00001914 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02001915 @$(MKCONFIG) -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap
wdenk6f213472003-08-29 22:00:43 +00001916
wdenka56bd922004-06-06 23:13:55 +00001917omap730p2_config \
1918omap730p2_cs0boot_config \
1919omap730p2_cs3boot_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001920 @mkdir -p $(obj)include
wdenka56bd922004-06-06 23:13:55 +00001921 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001922 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00001923 echo "... configured for CS0 boot"; \
1924 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001925 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00001926 echo "... configured for CS3 boot"; \
1927 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02001928 @$(MKCONFIG) -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap
wdenka56bd922004-06-06 23:13:55 +00001929
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02001930sbc2410x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001931 @$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02001932
wdenk281e00a2004-08-01 22:48:16 +00001933scb9328_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001934 @$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001935
wdenk7ebf7442002-11-02 23:17:16 +00001936smdk2400_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001937 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001938
1939smdk2410_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001940 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001941
wdenk2d24a3a2004-06-09 21:50:45 +00001942SX1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001943 @$(MKCONFIG) $(@:_config=) arm arm925t sx1
wdenk2d24a3a2004-06-09 21:50:45 +00001944
wdenkb2001f22003-12-20 22:45:10 +00001945# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk43d96162003-03-06 00:02:04 +00001946trab_config \
wdenkb0639ca2003-09-17 22:48:07 +00001947trab_bigram_config \
1948trab_bigflash_config \
wdenkf54ebdf2003-09-17 15:10:32 +00001949trab_old_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001950 @mkdir -p $(obj)include
1951 @mkdir -p $(obj)board/trab
1952 @ >$(obj)include/config.h
wdenkb0639ca2003-09-17 22:48:07 +00001953 @[ -z "$(findstring _bigram,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001954 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
1955 echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00001956 echo "... with 8 MB Flash, 32 MB RAM" ; \
1957 }
1958 @[ -z "$(findstring _bigflash,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001959 { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \
1960 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00001961 echo "... with 16 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001962 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenkb0639ca2003-09-17 22:48:07 +00001963 }
wdenkf54ebdf2003-09-17 15:10:32 +00001964 @[ -z "$(findstring _old,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001965 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
1966 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +00001967 echo "... with 8 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001968 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenk43d96162003-03-06 00:02:04 +00001969 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001970 @$(MKCONFIG) -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001971
wdenk1cb8e982003-03-06 21:55:29 +00001972VCMA9_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001973 @$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0
wdenk1cb8e982003-03-06 21:55:29 +00001974
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001975#========================================================================
1976# ARM supplied Versatile development boards
1977#========================================================================
1978versatile_config \
1979versatileab_config \
1980versatilepb_config : unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001981 @board/versatile/split_by_variant.sh $@
wdenk074cff02004-02-24 00:16:43 +00001982
wdenk3c2b3d42005-04-05 23:32:21 +00001983voiceblue_smallflash_config \
1984voiceblue_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001985 @mkdir -p $(obj)include
1986 @mkdir -p $(obj)board/voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00001987 @if [ "$(findstring _smallflash_,$@)" ] ; then \
1988 echo "... boot from lower flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001989 echo "#define VOICEBLUE_SMALL_FLASH" >>$(obj)include/config.h ; \
1990 echo "VOICEBLUE_SMALL_FLASH=y" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00001991 else \
1992 echo "... boot from upper flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001993 >$(obj)include/config.h ; \
1994 echo "VOICEBLUE_SMALL_FLASH=n" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00001995 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001996 @$(MKCONFIG) -a voiceblue arm arm925t voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00001997
wdenk16b013e2005-05-19 22:46:33 +00001998cm4008_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001999 @$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002000
2001cm41xx_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002002 @$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002003
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002004gth2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002005 @mkdir -p $(obj)include
2006 @ >$(obj)include/config.h
2007 @echo "#define CONFIG_GTH2 1" >>$(obj)include/config.h
2008 @$(MKCONFIG) -a gth2 mips mips gth2
Wolfgang Denk0c32d962006-06-16 17:32:31 +02002009
wdenk074cff02004-02-24 00:16:43 +00002010#########################################################################
2011## S3C44B0 Systems
2012#########################################################################
2013
2014B2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002015 @$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave
wdenk074cff02004-02-24 00:16:43 +00002016
wdenk7ebf7442002-11-02 23:17:16 +00002017#########################################################################
2018## ARM720T Systems
2019#########################################################################
2020
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002021armadillo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002022 @$(MKCONFIG) $(@:_config=) arm arm720t armadillo
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002023
wdenk7ebf7442002-11-02 23:17:16 +00002024ep7312_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002025 @$(MKCONFIG) $(@:_config=) arm arm720t ep7312
wdenk7ebf7442002-11-02 23:17:16 +00002026
wdenk2d24a3a2004-06-09 21:50:45 +00002027impa7_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002028 @$(MKCONFIG) $(@:_config=) arm arm720t impa7
wdenk2d24a3a2004-06-09 21:50:45 +00002029
wdenk2d1a5372004-02-23 19:30:57 +00002030modnet50_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002031 @$(MKCONFIG) $(@:_config=) arm arm720t modnet50
wdenk2d1a5372004-02-23 19:30:57 +00002032
wdenk39539882004-07-01 16:30:44 +00002033evb4510_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002034 @$(MKCONFIG) $(@:_config=) arm arm720t evb4510
wdenk39539882004-07-01 16:30:44 +00002035
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002036lpc2292sodimm_config: unconfig
2037 @$(MKCONFIG) $(@:_config=) arm arm720t lpc2292sodimm
2038
wdenk7ebf7442002-11-02 23:17:16 +00002039#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002040## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00002041#########################################################################
2042
wdenk20787e22005-04-06 00:04:16 +00002043adsvix_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002044 @$(MKCONFIG) $(@:_config=) arm pxa adsvix
wdenk20787e22005-04-06 00:04:16 +00002045
wdenkfabd46a2004-07-10 23:11:10 +00002046cerf250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002047 @$(MKCONFIG) $(@:_config=) arm pxa cerf250
wdenkfabd46a2004-07-10 23:11:10 +00002048
wdenk7ebf7442002-11-02 23:17:16 +00002049cradle_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002050 @$(MKCONFIG) $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00002051
2052csb226_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002053 @$(MKCONFIG) $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00002054
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002055delta_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002056 @$(MKCONFIG) $(@:_config=) arm pxa delta
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002057
wdenk43d96162003-03-06 00:02:04 +00002058innokom_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002059 @$(MKCONFIG) $(@:_config=) arm pxa innokom
wdenk43d96162003-03-06 00:02:04 +00002060
wdenk2d5b5612003-10-14 19:43:55 +00002061ixdp425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002062 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
wdenk2d5b5612003-10-14 19:43:55 +00002063
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002064ixdpg425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002065 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002066
wdenk43d96162003-03-06 00:02:04 +00002067lubbock_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002068 @$(MKCONFIG) $(@:_config=) arm pxa lubbock
wdenk43d96162003-03-06 00:02:04 +00002069
Heiko Schocher5720df72006-05-02 07:51:46 +02002070pleb2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002071 @$(MKCONFIG) $(@:_config=) arm pxa pleb2
Heiko Schocher5720df72006-05-02 07:51:46 +02002072
wdenk52f52c12003-06-19 23:04:19 +00002073logodl_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002074 @$(MKCONFIG) $(@:_config=) arm pxa logodl
wdenk52f52c12003-06-19 23:04:19 +00002075
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002076pdnb3_config \
2077scpu_config: unconfig
2078 @if [ "$(findstring scpu_,$@)" ] ; then \
2079 echo "#define CONFIG_SCPU" >>include/config.h ; \
2080 echo "... on SCPU board variant" ; \
2081 else \
2082 >include/config.h ; \
2083 fi
2084 @$(MKCONFIG) -a pdnb3 arm ixp pdnb3 prodrive
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002085
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002086pxa255_idp_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002087 @$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002088
wdenk3e386912003-04-05 00:53:31 +00002089wepep250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002090 @$(MKCONFIG) $(@:_config=) arm pxa wepep250
wdenk3e386912003-04-05 00:53:31 +00002091
wdenk4ec3a7f2004-09-28 16:44:41 +00002092xaeniax_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002093 @$(MKCONFIG) $(@:_config=) arm pxa xaeniax
wdenk4ec3a7f2004-09-28 16:44:41 +00002094
wdenkefa329c2004-03-23 20:18:25 +00002095xm250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002096 @$(MKCONFIG) $(@:_config=) arm pxa xm250
wdenkefa329c2004-03-23 20:18:25 +00002097
wdenkca0e7742004-06-09 15:37:23 +00002098xsengine_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002099 @$(MKCONFIG) $(@:_config=) arm pxa xsengine
wdenkca0e7742004-06-09 15:37:23 +00002100
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002101zylonite_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002102 @$(MKCONFIG) $(@:_config=) arm pxa zylonite
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002103
wdenk8ed96042005-01-09 23:16:25 +00002104#########################################################################
2105## ARM1136 Systems
2106#########################################################################
2107omap2420h4_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002108 @$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4
wdenk8ed96042005-01-09 23:16:25 +00002109
wdenk2262cfe2002-11-18 00:14:45 +00002110#========================================================================
2111# i386
2112#========================================================================
2113#########################################################################
wdenk1cb8e982003-03-06 21:55:29 +00002114## AMD SC520 CDP
wdenk2262cfe2002-11-18 00:14:45 +00002115#########################################################################
2116sc520_cdp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002117 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp
wdenk2262cfe2002-11-18 00:14:45 +00002118
wdenk7a8e9bed2003-05-31 18:35:21 +00002119sc520_spunk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002120 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002121
2122sc520_spunk_rel_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002123 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002124
wdenk43d96162003-03-06 00:02:04 +00002125#========================================================================
2126# MIPS
2127#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00002128#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002129## MIPS32 4Kc
2130#########################################################################
2131
wdenke0ac62d2003-08-17 18:55:18 +00002132xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
2133
2134incaip_100MHz_config \
2135incaip_133MHz_config \
2136incaip_150MHz_config \
2137incaip_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002138 @mkdir -p $(obj)include
2139 @ >$(obj)include/config.h
wdenke0ac62d2003-08-17 18:55:18 +00002140 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002141 { echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002142 echo "... with 100MHz system clock" ; \
2143 }
2144 @[ -z "$(findstring _133MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002145 { echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002146 echo "... with 133MHz system clock" ; \
2147 }
2148 @[ -z "$(findstring _150MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002149 { echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002150 echo "... with 150MHz system clock" ; \
2151 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002152 @$(MKCONFIG) -a $(call xtract_incaip,$@) mips mips incaip
wdenke0ac62d2003-08-17 18:55:18 +00002153
wdenkf4863a72004-02-07 01:27:10 +00002154tb0229_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002155 @$(MKCONFIG) $(@:_config=) mips mips tb0229
wdenkf4863a72004-02-07 01:27:10 +00002156
wdenke0ac62d2003-08-17 18:55:18 +00002157#########################################################################
wdenk69459792004-05-29 16:53:29 +00002158## MIPS32 AU1X00
2159#########################################################################
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002160dbau1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002161 @mkdir -p $(obj)include
2162 @ >$(obj)include/config.h
2163 @echo "#define CONFIG_DBAU1000 1" >>$(obj)include/config.h
2164 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002165
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002166dbau1100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002167 @mkdir -p $(obj)include
2168 @ >$(obj)include/config.h
2169 @echo "#define CONFIG_DBAU1100 1" >>$(obj)include/config.h
2170 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002171
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002172dbau1500_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002173 @mkdir -p $(obj)include
2174 @ >$(obj)include/config.h
2175 @echo "#define CONFIG_DBAU1500 1" >>$(obj)include/config.h
2176 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002177
wdenkff36fd82005-01-09 22:28:56 +00002178dbau1550_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002179 @mkdir -p $(obj)include
2180 @ >$(obj)include/config.h
2181 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2182 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002183
2184dbau1550_el_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002185 @mkdir -p $(obj)include
2186 @ >$(obj)include/config.h
2187 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2188 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002189
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002190pb1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002191 @mkdir -p $(obj)include
2192 @ >$(obj)include/config.h
2193 @echo "#define CONFIG_PB1000 1" >>$(obj)include/config.h
2194 @$(MKCONFIG) -a pb1x00 mips mips pb1x00
Wolfgang Denk265817c2005-09-25 00:53:22 +02002195
wdenk69459792004-05-29 16:53:29 +00002196#########################################################################
wdenke0ac62d2003-08-17 18:55:18 +00002197## MIPS64 5Kc
2198#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002199
wdenk3e386912003-04-05 00:53:31 +00002200purple_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002201 @$(MKCONFIG) $(@:_config=) mips mips purple
wdenk43d96162003-03-06 00:02:04 +00002202
wdenk4a551702003-10-08 23:26:14 +00002203#========================================================================
2204# Nios
2205#========================================================================
2206#########################################################################
2207## Nios32
2208#########################################################################
2209
wdenkc935d3b2004-01-03 19:43:48 +00002210DK1C20_safe_32_config \
2211DK1C20_standard_32_config \
wdenk4a551702003-10-08 23:26:14 +00002212DK1C20_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002213 @mkdir -p $(obj)include
2214 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002215 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002216 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002217 echo "... NIOS 'safe_32' configuration" ; \
2218 }
2219 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002220 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002221 echo "... NIOS 'standard_32' configuration" ; \
2222 }
2223 @[ -z "$(findstring DK1C20_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002224 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002225 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2226 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002227 @$(MKCONFIG) -a DK1C20 nios nios dk1c20 altera
wdenkc935d3b2004-01-03 19:43:48 +00002228
2229DK1S10_safe_32_config \
2230DK1S10_standard_32_config \
wdenkec4c5442004-02-09 23:12:24 +00002231DK1S10_mtx_ldk_20_config \
wdenkc935d3b2004-01-03 19:43:48 +00002232DK1S10_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002233 @mkdir -p $(obj)include
2234 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002235 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002236 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002237 echo "... NIOS 'safe_32' configuration" ; \
2238 }
2239 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002240 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002241 echo "... NIOS 'standard_32' configuration" ; \
2242 }
wdenkec4c5442004-02-09 23:12:24 +00002243 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002244 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>$(obj)include/config.h ; \
wdenkec4c5442004-02-09 23:12:24 +00002245 echo "... NIOS 'mtx_ldk_20' configuration" ; \
2246 }
wdenkc935d3b2004-01-03 19:43:48 +00002247 @[ -z "$(findstring DK1S10_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002248 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002249 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2250 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002251 @$(MKCONFIG) -a DK1S10 nios nios dk1s10 altera
wdenk4a551702003-10-08 23:26:14 +00002252
wdenkaaf224a2004-03-14 15:20:55 +00002253ADNPESC1_DNPEVA2_base_32_config \
2254ADNPESC1_base_32_config \
2255ADNPESC1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002256 @mkdir -p $(obj)include
2257 @ >$(obj)include/config.h
wdenkaaf224a2004-03-14 15:20:55 +00002258 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002259 { echo "#define CONFIG_DNPEVA2 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002260 echo "... DNP/EVA2 configuration" ; \
2261 }
wdenkaaf224a2004-03-14 15:20:55 +00002262 @[ -z "$(findstring _base_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002263 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002264 echo "... NIOS 'base_32' configuration" ; \
2265 }
wdenkaaf224a2004-03-14 15:20:55 +00002266 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002267 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002268 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
2269 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002270 @$(MKCONFIG) -a ADNPESC1 nios nios adnpesc1 ssv
wdenkaaf224a2004-03-14 15:20:55 +00002271
wdenk5c952cf2004-10-10 21:27:30 +00002272#########################################################################
2273## Nios-II
2274#########################################################################
2275
Scott McNutt9cc83372006-06-08 13:37:39 -04002276EP1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002277 @$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002278
2279EP1S10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002280 @$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002281
2282EP1S40_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002283 @$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002284
wdenk5c952cf2004-10-10 21:27:30 +00002285PK1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002286 @$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent
wdenk5c952cf2004-10-10 21:27:30 +00002287
2288PCI5441_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002289 @$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent
wdenk4a551702003-10-08 23:26:14 +00002290
wdenk507bbe32004-04-18 21:13:41 +00002291#========================================================================
2292# MicroBlaze
2293#========================================================================
2294#########################################################################
2295## Microblaze
2296#########################################################################
2297suzaku_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002298 @mkdir -p $(obj)include
2299 @ >$(obj)include/config.h
2300 @echo "#define CONFIG_SUZAKU 1" >> $(obj)include/config.h
2301 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
wdenk507bbe32004-04-18 21:13:41 +00002302
wdenk3e386912003-04-05 00:53:31 +00002303#########################################################################
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002304## Blackfin
2305#########################################################################
2306ezkit533_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002307 @$(MKCONFIG) $(@:_config=) blackfin bf533 ezkit533
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002308
2309stamp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002310 @$(MKCONFIG) $(@:_config=) blackfin bf533 stamp
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002311
2312dspstamp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002313 @$(MKCONFIG) $(@:_config=) blackfin bf533 dsp_stamp
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002314
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02002315#========================================================================
2316# AVR32
2317#========================================================================
2318#########################################################################
2319## AT32AP7xxx
2320#########################################################################
2321
2322atstk1002_config : unconfig
2323 @./mkconfig $(@:_config=) avr32 at32ap atstk1000 atmel at32ap7000
2324
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002325#########################################################################
2326#########################################################################
wdenk3e386912003-04-05 00:53:31 +00002327#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00002328
2329clean:
Marian Balakowiczf9328632006-09-01 19:49:50 +02002330 find $(OBJTREE) -type f \
wdenk7ebf7442002-11-02 23:17:16 +00002331 \( -name 'core' -o -name '*.bak' -o -name '*~' \
2332 -o -name '*.o' -o -name '*.a' \) -print \
2333 | xargs rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002334 rm -f $(obj)examples/hello_world $(obj)examples/timer \
2335 $(obj)examples/eepro100_eeprom $(obj)examples/sched \
2336 $(obj)examples/mem_to_mem_idma2intr $(obj)examples/82559_eeprom \
Wolfgang Denkd214fbb2006-09-13 10:29:32 +02002337 $(obj)examples/smc91111_eeprom $(obj)examples/interrupt \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002338 $(obj)examples/test_burst
2339 rm -f $(obj)tools/img2srec $(obj)tools/mkimage $(obj)tools/envcrc \
2340 $(obj)tools/gen_eth_addr
2341 rm -f $(obj)tools/mpc86x_clk $(obj)tools/ncb
2342 rm -f $(obj)tools/easylogo/easylogo $(obj)tools/bmp_logo
2343 rm -f $(obj)tools/gdb/astest $(obj)tools/gdb/gdbcont $(obj)tools/gdb/gdbsend
2344 rm -f $(obj)tools/env/fw_printenv $(obj)tools/env/fw_setenv
2345 rm -f $(obj)board/cray/L1/bootscript.c $(obj)board/cray/L1/bootscript.image
2346 rm -f $(obj)board/netstar/eeprom $(obj)board/netstar/crcek $(obj)board/netstar/crcit
2347 rm -f $(obj)board/netstar/*.srec $(obj)board/netstar/*.bin
2348 rm -f $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom
2349 rm -f $(obj)board/integratorap/u-boot.lds $(obj)board/integratorcp/u-boot.lds
2350 rm -f $(obj)include/bmp_logo.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002351 rm -f $(obj)nand_spl/u-boot-spl $(obj)nand_spl/u-boot-spl.map
wdenk7ebf7442002-11-02 23:17:16 +00002352
2353clobber: clean
Marian Balakowiczf9328632006-09-01 19:49:50 +02002354 find $(OBJTREE) -type f \( -name .depend \
wdenk4c0d4c32004-06-09 17:34:58 +00002355 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
2356 -print0 \
2357 | xargs -0 rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002358 rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS $(obj)include/version_autogenerated.h
2359 rm -fr $(obj)*.*~
2360 rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL)
2361 rm -f $(obj)tools/crc32.c $(obj)tools/environment.c $(obj)tools/env/crc32.c
2362 rm -f $(obj)tools/inca-swap-bytes $(obj)cpu/mpc824x/bedbug_603e.c
2363 rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002364 [ ! -d $(OBJTREE)/nand_spl ] || find $(obj)nand_spl -lname "*" -print | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +00002365
Marian Balakowiczf9328632006-09-01 19:49:50 +02002366ifeq ($(OBJTREE),$(SRCTREE))
wdenk7ebf7442002-11-02 23:17:16 +00002367mrproper \
2368distclean: clobber unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002369else
2370mrproper \
2371distclean: clobber unconfig
2372 rm -rf $(OBJTREE)/*
2373endif
wdenk7ebf7442002-11-02 23:17:16 +00002374
2375backup:
2376 F=`basename $(TOPDIR)` ; cd .. ; \
2377 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
2378
2379#########################################################################