blob: a5698cf7c9519387c396c3732b44a30683adb40a [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/ \
Kumar Galaa2280642007-08-08 04:14:28 -050037 -e s/ppc64/ppc/ \
wdenk7ebf7442002-11-02 23:17:16 +000038 -e s/macppc/ppc/)
39
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020040HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
wdenk7ebf7442002-11-02 23:17:16 +000041 sed -e 's/\(cygwin\).*/cygwin/')
42
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020043export HOSTARCH HOSTOS
wdenk7ebf7442002-11-02 23:17:16 +000044
45# Deal with colliding definitions from tcsh etc.
46VENDOR=
47
48#########################################################################
Marian Balakowiczf9328632006-09-01 19:49:50 +020049#
50# U-boot build supports producing a object files to the separate external
51# directory. Two use cases are supported:
Stefan Roese887e2ec2006-09-07 11:51:23 +020052#
Marian Balakowiczf9328632006-09-01 19:49:50 +020053# 1) Add O= to the make command line
54# 'make O=/tmp/build all'
55#
56# 2) Set environement variable BUILD_DIR to point to the desired location
57# 'export BUILD_DIR=/tmp/build'
58# 'make'
59#
60# The second approach can also be used with a MAKEALL script
61# 'export BUILD_DIR=/tmp/build'
62# './MAKEALL'
Stefan Roese887e2ec2006-09-07 11:51:23 +020063#
Marian Balakowiczf9328632006-09-01 19:49:50 +020064# Command line 'O=' setting overrides BUILD_DIR environent variable.
Stefan Roese887e2ec2006-09-07 11:51:23 +020065#
Marian Balakowiczf9328632006-09-01 19:49:50 +020066# When none of the above methods is used the local build is performed and
67# the object files are placed in the source directory.
Stefan Roese887e2ec2006-09-07 11:51:23 +020068#
wdenk7ebf7442002-11-02 23:17:16 +000069
Marian Balakowiczf9328632006-09-01 19:49:50 +020070ifdef O
71ifeq ("$(origin O)", "command line")
72BUILD_DIR := $(O)
73endif
74endif
wdenk7ebf7442002-11-02 23:17:16 +000075
Marian Balakowiczf9328632006-09-01 19:49:50 +020076ifneq ($(BUILD_DIR),)
77saved-output := $(BUILD_DIR)
Marian Balakowicz4f0645e2006-09-07 12:05:53 +020078
79# Attempt to create a output directory.
80$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
81
Stefan Roesea73c8db2006-09-12 08:49:07 +020082# Verify if it was successful.
Marian Balakowiczf9328632006-09-01 19:49:50 +020083BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
84$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
85endif # ifneq ($(BUILD_DIR),)
86
87OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
88SRCTREE := $(CURDIR)
89TOPDIR := $(SRCTREE)
90LNDIR := $(OBJTREE)
91export TOPDIR SRCTREE OBJTREE
92
93MKCONFIG := $(SRCTREE)/mkconfig
94export MKCONFIG
95
96ifneq ($(OBJTREE),$(SRCTREE))
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010097REMOTE_BUILD := 1
Marian Balakowiczf9328632006-09-01 19:49:50 +020098export REMOTE_BUILD
99endif
100
101# $(obj) and (src) are defined in config.mk but here in main Makefile
102# we also need them before config.mk is included which is the case for
103# some targets like unconfig, clean, clobber, distclean, etc.
104ifneq ($(OBJTREE),$(SRCTREE))
105obj := $(OBJTREE)/
106src := $(SRCTREE)/
107else
108obj :=
109src :=
Stefan Roese887e2ec2006-09-07 11:51:23 +0200110endif
Marian Balakowiczf9328632006-09-01 19:49:50 +0200111export obj src
112
113#########################################################################
114
115ifeq ($(OBJTREE)/include/config.mk,$(wildcard $(OBJTREE)/include/config.mk))
116
wdenk7ebf7442002-11-02 23:17:16 +0000117# load ARCH, BOARD, and CPU configuration
Marian Balakowiczf9328632006-09-01 19:49:50 +0200118include $(OBJTREE)/include/config.mk
wdenk1d9f4102004-10-09 22:21:29 +0000119export ARCH CPU BOARD VENDOR SOC
Marian Balakowiczf9328632006-09-01 19:49:50 +0200120
wdenk7ebf7442002-11-02 23:17:16 +0000121ifndef CROSS_COMPILE
Wolfgang Denka5284ef2007-03-06 18:01:47 +0100122ifeq ($(HOSTARCH),$(ARCH))
wdenk7ebf7442002-11-02 23:17:16 +0000123CROSS_COMPILE =
124else
wdenk7ebf7442002-11-02 23:17:16 +0000125ifeq ($(ARCH),ppc)
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200126CROSS_COMPILE = ppc_8xx-
wdenk7ebf7442002-11-02 23:17:16 +0000127endif
128ifeq ($(ARCH),arm)
wdenkdc7c9a12003-03-26 06:55:25 +0000129CROSS_COMPILE = arm-linux-
wdenk7ebf7442002-11-02 23:17:16 +0000130endif
wdenk2262cfe2002-11-18 00:14:45 +0000131ifeq ($(ARCH),i386)
wdenk7a8e9bed2003-05-31 18:35:21 +0000132CROSS_COMPILE = i386-linux-
133endif
wdenk43d96162003-03-06 00:02:04 +0000134ifeq ($(ARCH),mips)
135CROSS_COMPILE = mips_4KC-
136endif
wdenk4a551702003-10-08 23:26:14 +0000137ifeq ($(ARCH),nios)
138CROSS_COMPILE = nios-elf-
139endif
wdenk5c952cf2004-10-10 21:27:30 +0000140ifeq ($(ARCH),nios2)
141CROSS_COMPILE = nios2-elf-
142endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000143ifeq ($(ARCH),m68k)
144CROSS_COMPILE = m68k-elf-
145endif
wdenk507bbe32004-04-18 21:13:41 +0000146ifeq ($(ARCH),microblaze)
147CROSS_COMPILE = mb-
148endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100149ifeq ($(ARCH),blackfin)
Aubrey.Lief26a082007-03-09 13:40:56 +0800150CROSS_COMPILE = bfin-uclinux-
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100151endif
Wolfgang Denk7b64fef2006-10-24 14:21:16 +0200152ifeq ($(ARCH),avr32)
Haavard Skinnemoen5374b362006-11-18 17:24:31 +0100153CROSS_COMPILE = avr32-linux-
Wolfgang Denk7b64fef2006-10-24 14:21:16 +0200154endif
wdenk7ebf7442002-11-02 23:17:16 +0000155endif
156endif
157
158export CROSS_COMPILE
159
Wolfgang Denk92b197f2006-03-12 01:37:50 +0100160# load other configuration
161include $(TOPDIR)/config.mk
162
wdenk7ebf7442002-11-02 23:17:16 +0000163#########################################################################
164# U-Boot objects....order is important (i.e. start must be first)
165
wdenk9fd5e312003-12-07 23:55:12 +0000166OBJS = cpu/$(CPU)/start.o
wdenk2262cfe2002-11-18 00:14:45 +0000167ifeq ($(CPU),i386)
wdenk9fd5e312003-12-07 23:55:12 +0000168OBJS += cpu/$(CPU)/start16.o
169OBJS += cpu/$(CPU)/reset.o
wdenk2262cfe2002-11-18 00:14:45 +0000170endif
wdenk7ebf7442002-11-02 23:17:16 +0000171ifeq ($(CPU),ppc4xx)
wdenk9fd5e312003-12-07 23:55:12 +0000172OBJS += cpu/$(CPU)/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +0000173endif
wdenk42d1f032003-10-15 23:53:47 +0000174ifeq ($(CPU),mpc85xx)
175OBJS += cpu/$(CPU)/resetvec.o
176endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100177ifeq ($(CPU),bf533)
178OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
Aubrey.Lief26a082007-03-09 13:40:56 +0800179OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100180endif
Aubrey Li26bf7de2007-03-19 01:24:52 +0800181ifeq ($(CPU),bf537)
182OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
Aubrey Li65458982007-03-20 18:16:24 +0800183OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
184endif
185ifeq ($(CPU),bf561)
186OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
187OBJS += cpu/$(CPU)/flush.o cpu/$(CPU)/init_sdram.o
wdenk7ebf7442002-11-02 23:17:16 +0000188endif
189
Marian Balakowiczf9328632006-09-01 19:49:50 +0200190OBJS := $(addprefix $(obj),$(OBJS))
191
wdenk9fd5e312003-12-07 23:55:12 +0000192LIBS = lib_generic/libgeneric.a
193LIBS += board/$(BOARDDIR)/lib$(BOARD).a
wdenk7ebf7442002-11-02 23:17:16 +0000194LIBS += cpu/$(CPU)/lib$(CPU).a
wdenk1d9f4102004-10-09 22:21:29 +0000195ifdef SOC
196LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
197endif
Stefan Roese323bfa82007-04-23 12:00:22 +0200198ifeq ($(CPU),ixp)
199LIBS += cpu/ixp/npe/libnpe.a
200endif
wdenk7ebf7442002-11-02 23:17:16 +0000201LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk518e2e12004-03-25 14:59:05 +0000202LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
stroesec419d1d2004-12-16 18:44:40 +0000203 fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a
wdenk7ebf7442002-11-02 23:17:16 +0000204LIBS += net/libnet.a
205LIBS += disk/libdisk.a
206LIBS += rtc/librtc.a
207LIBS += dtt/libdtt.a
208LIBS += drivers/libdrivers.a
Jason Jin0f460a12007-07-13 12:14:58 +0800209LIBS += drivers/bios_emulator/libatibiosemu.a
Marian Balakowicz6db39702006-04-08 19:08:06 +0200210LIBS += drivers/nand/libnand.a
211LIBS += drivers/nand_legacy/libnand_legacy.a
Dave Liu7737d5c2006-11-03 12:11:15 -0600212ifeq ($(CPU),mpc83xx)
213LIBS += drivers/qe/qe.a
214endif
Andy Flemingda9d4612007-08-14 00:14:25 -0500215ifeq ($(CPU),mpc85xx)
216LIBS += drivers/qe/qe.a
217endif
wdenk7152b1d2003-09-05 23:19:14 +0000218LIBS += drivers/sk98lin/libsk98lin.a
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100219LIBS += post/libpost.a post/drivers/libpostdrivers.a
220LIBS += $(shell if [ -d post/lib_$(ARCH) ]; then echo \
221 "post/lib_$(ARCH)/libpost$(ARCH).a"; fi)
Sergei Poselenovb4489622007-07-05 08:17:37 +0200222LIBS += $(shell if [ -d post/lib_$(ARCH)/fpu ]; then echo \
223 "post/lib_$(ARCH)/fpu/libpost$(ARCH)fpu.a"; fi)
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100224LIBS += $(shell if [ -d post/cpu/$(CPU) ]; then echo \
225 "post/cpu/$(CPU)/libpost$(CPU).a"; fi)
226LIBS += $(shell if [ -d post/board/$(BOARDDIR) ]; then echo \
227 "post/board/$(BOARDDIR)/libpost$(BOARD).a"; fi)
wdenk7ebf7442002-11-02 23:17:16 +0000228LIBS += common/libcommon.a
Gerald Van Baren7651f8b2007-04-19 23:14:39 -0400229LIBS += libfdt/libfdt.a
Marian Balakowiczf9328632006-09-01 19:49:50 +0200230
231LIBS := $(addprefix $(obj),$(LIBS))
wdenk9fd5e312003-12-07 23:55:12 +0000232.PHONY : $(LIBS)
wdenka8c7c702003-12-06 19:49:23 +0000233
wdenk4f7cb082003-09-11 23:06:34 +0000234# Add GCC lib
wdenk1a344f22005-02-03 23:00:49 +0000235PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
wdenk3d3befa2004-03-14 15:06:13 +0000236
wdenka8c7c702003-12-06 19:49:23 +0000237# The "tools" are needed early, so put this first
238# Don't include stuff already done in $(LIBS)
239SUBDIRS = tools \
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100240 examples
241
wdenkb028f712003-12-07 21:39:28 +0000242.PHONY : $(SUBDIRS)
wdenka8c7c702003-12-06 19:49:23 +0000243
Stefan Roese887e2ec2006-09-07 11:51:23 +0200244ifeq ($(CONFIG_NAND_U_BOOT),y)
245NAND_SPL = nand_spl
246U_BOOT_NAND = $(obj)u-boot-nand.bin
247endif
248
Marian Balakowiczf9328632006-09-01 19:49:50 +0200249__OBJS := $(subst $(obj),,$(OBJS))
250__LIBS := $(subst $(obj),,$(LIBS))
251
wdenk7ebf7442002-11-02 23:17:16 +0000252#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000253#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000254
Heiko Schocher566a4942007-06-22 19:11:54 +0200255ALL += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND)
wdenk7ebf7442002-11-02 23:17:16 +0000256
wdenkbdccc4f2003-08-05 17:43:17 +0000257all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000258
Marian Balakowiczf9328632006-09-01 19:49:50 +0200259$(obj)u-boot.hex: $(obj)u-boot
wdenk6310eb92005-01-09 21:28:15 +0000260 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
261
Marian Balakowiczf9328632006-09-01 19:49:50 +0200262$(obj)u-boot.srec: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000263 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
264
Marian Balakowiczf9328632006-09-01 19:49:50 +0200265$(obj)u-boot.bin: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000266 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
267
Marian Balakowiczf9328632006-09-01 19:49:50 +0200268$(obj)u-boot.img: $(obj)u-boot.bin
wdenkbdccc4f2003-08-05 17:43:17 +0000269 ./tools/mkimage -A $(ARCH) -T firmware -C none \
270 -a $(TEXT_BASE) -e 0 \
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100271 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenkbdccc4f2003-08-05 17:43:17 +0000272 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
273 -d $< $@
274
Heiko Schocher566a4942007-06-22 19:11:54 +0200275$(obj)u-boot.sha1: $(obj)u-boot.bin
Heiko Schocher01159532007-07-14 01:06:58 +0200276 $(obj)tools/ubsha1 $(obj)u-boot.bin
Heiko Schocher566a4942007-06-22 19:11:54 +0200277
Marian Balakowiczf9328632006-09-01 19:49:50 +0200278$(obj)u-boot.dis: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000279 $(OBJDUMP) -d $< > $@
280
Marian Balakowiczf9328632006-09-01 19:49:50 +0200281$(obj)u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
wdenk8bde7f72003-06-27 21:31:46 +0000282 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
Marian Balakowiczf9328632006-09-01 19:49:50 +0200283 cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
284 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000285 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000286
Marian Balakowiczf9328632006-09-01 19:49:50 +0200287$(OBJS):
288 $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@))
289
wdenka8c7c702003-12-06 19:49:23 +0000290$(LIBS):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200291 $(MAKE) -C $(dir $(subst $(obj),,$@))
wdenka8c7c702003-12-06 19:49:23 +0000292
293$(SUBDIRS):
wdenkb028f712003-12-07 21:39:28 +0000294 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000295
Stefan Roese887e2ec2006-09-07 11:51:23 +0200296$(NAND_SPL): version
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200297 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
Stefan Roese887e2ec2006-09-07 11:51:23 +0200298
299$(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200300 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 +0200301
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100302version:
303 @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \
304 echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \
305 echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \
306 $(TOPDIR)) >> $(VERSION_FILE); \
307 echo "\"" >> $(VERSION_FILE)
308
dzu8f713fd2003-08-07 14:20:31 +0000309gdbtools:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200310 $(MAKE) -C tools/gdb all || exit 1
311
312updater:
313 $(MAKE) -C tools/updater all || exit 1
314
315env:
316 $(MAKE) -C tools/env all || exit 1
dzu8f713fd2003-08-07 14:20:31 +0000317
wdenk7ebf7442002-11-02 23:17:16 +0000318depend dep:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200319 for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir _depend ; done
wdenk7ebf7442002-11-02 23:17:16 +0000320
Marian Balakowiczf9328632006-09-01 19:49:50 +0200321tags ctags:
322 ctags -w -o $(OBJTREE)/ctags `find $(SUBDIRS) include \
wdenkbda6c8a2004-04-15 21:58:11 +0000323 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
324 fs/cramfs fs/fat fs/fdos fs/jffs2 \
325 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000326 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
327
328etags:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200329 etags -a -o $(OBJTREE)/etags `find $(SUBDIRS) include \
wdenkeedcd072004-09-08 22:03:11 +0000330 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
331 fs/cramfs fs/fat fs/fdos fs/jffs2 \
332 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000333 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
334
Marian Balakowiczf9328632006-09-01 19:49:50 +0200335$(obj)System.map: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000336 @$(NM) $< | \
337 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200338 sort > $(obj)System.map
wdenk7ebf7442002-11-02 23:17:16 +0000339
340#########################################################################
341else
Marian Balakowiczf9328632006-09-01 19:49:50 +0200342all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
343$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
344$(SUBDIRS) version gdbtools updater env depend \
345dep tags ctags etags $(obj)System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000346 @echo "System not configured - see README" >&2
347 @ exit 1
348endif
349
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200350.PHONY : CHANGELOG
351CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -0400352 git log --no-merges U-Boot-1_1_5.. | \
353 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200354
wdenk7ebf7442002-11-02 23:17:16 +0000355#########################################################################
356
357unconfig:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200358 @rm -f $(obj)include/config.h $(obj)include/config.mk \
359 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp
wdenk7ebf7442002-11-02 23:17:16 +0000360
361#========================================================================
362# PowerPC
363#========================================================================
wdenk0db5bca2003-03-31 17:27:09 +0000364
365#########################################################################
366## MPC5xx Systems
367#########################################################################
368
wdenk5e5f9ed2005-04-13 23:15:10 +0000369canmb_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200370 @$(MKCONFIG) -a canmb ppc mpc5xxx canmb
wdenk5e5f9ed2005-04-13 23:15:10 +0000371
wdenk0db5bca2003-03-31 17:27:09 +0000372cmi_mpc5xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200373 @$(MKCONFIG) $(@:_config=) ppc mpc5xx cmi
wdenk0db5bca2003-03-31 17:27:09 +0000374
wdenkdb01a2e2004-04-15 23:14:49 +0000375PATI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200376 @$(MKCONFIG) $(@:_config=) ppc mpc5xx pati mpl
wdenkb6e4c402004-01-02 16:05:07 +0000377
wdenk7ebf7442002-11-02 23:17:16 +0000378#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000379## MPC5xxx Systems
380#########################################################################
wdenka87589d2005-06-10 10:00:19 +0000381
Wolfgang Denkdafba162005-08-12 00:22:49 +0200382aev_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200383 @$(MKCONFIG) -a aev ppc mpc5xxx tqm5200
Wolfgang Denkdafba162005-08-12 00:22:49 +0200384
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200385BC3450_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200386 @$(MKCONFIG) -a BC3450 ppc mpc5xxx bc3450
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200387
Stefan Roese5e4b3362005-08-22 17:51:53 +0200388cpci5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200389 @$(MKCONFIG) -a cpci5200 ppc mpc5xxx cpci5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200390
wdenka87589d2005-06-10 10:00:19 +0000391hmi1001_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200392 @$(MKCONFIG) hmi1001 ppc mpc5xxx hmi1001
wdenka87589d2005-06-10 10:00:19 +0000393
wdenke35745b2004-04-18 23:32:11 +0000394Lite5200_config \
395Lite5200_LOWBOOT_config \
396Lite5200_LOWBOOT08_config \
397icecube_5200_config \
398icecube_5200_LOWBOOT_config \
399icecube_5200_LOWBOOT08_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100400icecube_5200_DDR_config \
401icecube_5200_DDR_LOWBOOT_config \
wdenke35745b2004-04-18 23:32:11 +0000402icecube_5200_DDR_LOWBOOT08_config \
403icecube_5100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200404 @mkdir -p $(obj)include
405 @mkdir -p $(obj)board/icecube
406 @ >$(obj)include/config.h
wdenk17d704e2004-04-10 20:43:50 +0000407 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
408 { if [ "$(findstring DDR,$@)" ] ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200409 then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
410 else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
wdenk17d704e2004-04-10 20:43:50 +0000411 fi ; \
wdenk5cf9da42003-11-07 13:42:26 +0000412 echo "... with LOWBOOT configuration" ; \
413 }
414 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200415 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
wdenk5cf9da42003-11-07 13:42:26 +0000416 echo "... with 8 MB flash only" ; \
wdenk17d704e2004-04-10 20:43:50 +0000417 echo "... with LOWBOOT configuration" ; \
wdenk5cf9da42003-11-07 13:42:26 +0000418 }
wdenkb2001f22003-12-20 22:45:10 +0000419 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200420 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +0000421 echo "... DDR memory revision" ; \
422 }
wdenkd4ca31c2004-01-02 14:00:00 +0000423 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200424 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenkd4ca31c2004-01-02 14:00:00 +0000425 echo "... with MPC5200 processor" ; \
426 }
wdenka0f2fe52003-10-28 09:14:21 +0000427 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200428 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk945af8d2003-07-16 21:53:01 +0000429 echo "... with MGT5100 processor" ; \
430 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200431 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
wdenk945af8d2003-07-16 21:53:01 +0000432
Heiko Schocher2605e902007-02-16 07:57:42 +0100433jupiter_config: unconfig
434 @$(MKCONFIG) jupiter ppc mpc5xxx jupiter
435
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200436v38b_config: unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -0600437 @$(MKCONFIG) -a v38b ppc mpc5xxx v38b
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200438
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100439inka4x0_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200440 @$(MKCONFIG) inka4x0 ppc mpc5xxx inka4x0
wdenk138ff602004-12-16 15:52:40 +0000441
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100442lite5200b_config \
Domen Puncerd3832e82007-04-16 14:00:13 +0200443lite5200b_PM_config \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100444lite5200b_LOWBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200445 @mkdir -p $(obj)include
446 @mkdir -p $(obj)board/icecube
447 @ >$(obj)include/config.h
448 @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100449 @ echo "... DDR memory revision"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200450 @ echo "#define CONFIG_MPC5200" >>$(obj)include/config.h
451 @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h
Domen Puncerd3832e82007-04-16 14:00:13 +0200452 @[ -z "$(findstring _PM_,$@)" ] || \
453 { echo "#define CONFIG_LITE5200B_PM" >>$(obj)include/config.h ; \
454 echo "... with power management (low-power mode) support" ; \
455 }
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100456 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200457 { echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100458 echo "... with LOWBOOT configuration" ; \
459 }
460 @ echo "... with MPC5200B processor"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200461 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100462
Stefan Roesef1ee9822006-03-04 14:57:03 +0100463mcc200_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200464mcc200_SDRAM_config \
465mcc200_highboot_config \
466mcc200_COM12_config \
467mcc200_COM12_SDRAM_config \
Wolfgang Denk113f64e2006-08-25 01:38:04 +0200468mcc200_COM12_highboot_config \
469mcc200_COM12_highboot_SDRAM_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200470mcc200_highboot_SDRAM_config \
471prs200_config \
472prs200_DDR_config \
473prs200_highboot_config \
474prs200_highboot_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200475 @mkdir -p $(obj)include
476 @mkdir -p $(obj)board/mcc200
477 @ >$(obj)include/config.h
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200478 @[ -n "$(findstring highboot,$@)" ] || \
479 { echo "... with lowboot configuration" ; \
Stefan Roesef1ee9822006-03-04 14:57:03 +0100480 }
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200481 @[ -z "$(findstring highboot,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200482 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200483 echo "... with highboot configuration" ; \
484 }
485 @[ -n "$(findstring _SDRAM,$@)" ] || \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200486 { if [ -n "$(findstring mcc200,$@)" ]; \
487 then \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100488 echo "... with DDR" ; \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200489 else \
490 if [ -n "$(findstring _DDR,$@)" ];\
491 then \
492 echo "... with DDR" ; \
493 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200494 echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200495 echo "... with SDRAM" ; \
496 fi; \
497 fi; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200498 }
499 @[ -z "$(findstring _SDRAM,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200500 { echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200501 echo "... with SDRAM" ; \
502 }
Wolfgang Denk463764c2006-08-17 00:36:51 +0200503 @[ -z "$(findstring COM12,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200504 { echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \
Wolfgang Denk463764c2006-08-17 00:36:51 +0200505 echo "... with console on COM12" ; \
506 }
Wolfgang Denked1cf842006-08-24 00:26:42 +0200507 @[ -z "$(findstring prs200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200508 { echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200509 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200510 @$(MKCONFIG) -n $@ -a mcc200 ppc mpc5xxx mcc200
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100511
Stefan Roese8b7d1f02007-01-31 16:37:34 +0100512mecp5200_config: unconfig
513 @$(MKCONFIG) -a mecp5200 ppc mpc5xxx mecp5200 esd
514
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200515o2dnt_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200516 @$(MKCONFIG) o2dnt ppc mpc5xxx o2dnt
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200517
Stefan Roese5e4b3362005-08-22 17:51:53 +0200518pf5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200519 @$(MKCONFIG) pf5200 ppc mpc5xxx pf5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200520
wdenk89394042004-08-04 21:56:49 +0000521PM520_config \
522PM520_DDR_config \
523PM520_ROMBOOT_config \
524PM520_ROMBOOT_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200525 @mkdir -p $(obj)include
526 @ >$(obj)include/config.h
wdenk89394042004-08-04 21:56:49 +0000527 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200528 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000529 echo "... DDR memory revision" ; \
530 }
531 @[ -z "$(findstring ROMBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200532 { echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000533 echo "... booting from 8-bit flash" ; \
534 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200535 @$(MKCONFIG) -a PM520 ppc mpc5xxx pm520
wdenk89394042004-08-04 21:56:49 +0000536
Wolfgang Denk6624b682006-02-22 10:25:39 +0100537smmaco4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200538 @$(MKCONFIG) -a smmaco4 ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100539
Bartlomiej Sieka86b116b2007-08-03 12:08:16 +0200540cm5200_config: unconfig
541 @./mkconfig -a cm5200 ppc mpc5xxx cm5200
Bartlomiej Siekafa1df302007-07-11 20:11:07 +0200542
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100543spieval_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200544 @$(MKCONFIG) -a spieval ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100545
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200546TB5200_B_config \
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200547TB5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200548 @mkdir -p $(obj)include
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200549 @[ -z "$(findstring _B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200550 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200551 echo "... with MPC5200B processor" ; \
552 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200553 @$(MKCONFIG) -n $@ -a TB5200 ppc mpc5xxx tqm5200
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200554
wdenkd4ca31c2004-01-02 14:00:00 +0000555MINI5200_config \
556EVAL5200_config \
557TOP5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200558 @mkdir -p $(obj)include
559 @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
560 @$(MKCONFIG) -n $@ -a TOP5200 ppc mpc5xxx top5200 emk
wdenkd4ca31c2004-01-02 14:00:00 +0000561
wdenk6c7a1402004-07-11 19:17:20 +0000562Total5100_config \
563Total5200_config \
564Total5200_lowboot_config \
565Total5200_Rev2_config \
566Total5200_Rev2_lowboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200567 @mkdir -p $(obj)include
568 @mkdir -p $(obj)board/total5200
569 @ >$(obj)include/config.h
wdenk6c7a1402004-07-11 19:17:20 +0000570 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200571 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000572 echo "... with MGT5100 processor" ; \
573 }
574 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200575 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000576 echo "... with MPC5200 processor" ; \
577 }
578 @[ -n "$(findstring Rev,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200579 { echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000580 echo "... revision 1 board" ; \
581 }
582 @[ -z "$(findstring Rev2_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200583 { echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000584 echo "... revision 2 board" ; \
585 }
586 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200587 { echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp ; \
wdenk6c7a1402004-07-11 19:17:20 +0000588 echo "... with lowboot configuration" ; \
589 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200590 @$(MKCONFIG) -a Total5200 ppc mpc5xxx total5200
wdenk6c7a1402004-07-11 19:17:20 +0000591
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200592cam5200_config \
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100593cam5200_niosflash_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200594fo300_config \
595MiniFAP_config \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200596TQM5200S_config \
597TQM5200S_HIGHBOOT_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200598TQM5200_B_config \
599TQM5200_B_HIGHBOOT_config \
600TQM5200_config \
601TQM5200_STK100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200602 @mkdir -p $(obj)include
603 @mkdir -p $(obj)board/tqm5200
604 @ >$(obj)include/config.h
Wolfgang Denk135ae002006-07-22 01:20:03 +0200605 @[ -z "$(findstring cam5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200606 { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \
607 echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
608 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk135ae002006-07-22 01:20:03 +0200609 echo "... TQM5200S on Cam5200" ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200610 }
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100611 @[ -z "$(findstring niosflash,$@)" ] || \
612 { echo "#define CONFIG_CAM5200_NIOSFLASH" >>$(obj)include/config.h ; \
613 echo "... with NIOS flash driver" ; \
614 }
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200615 @[ -z "$(findstring fo300,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200616 { echo "#define CONFIG_FO300" >>$(obj)include/config.h ; \
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200617 echo "... TQM5200 on FO300" ; \
618 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200619 @[ -z "$(findstring MiniFAP,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200620 { echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200621 echo "... TQM5200_AC on MiniFAP" ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200622 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200623 @[ -z "$(findstring STK100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200624 { echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h ; \
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200625 echo "... on a STK52XX.100 base board" ; \
wdenk56523f12004-07-11 17:40:54 +0000626 }
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200627 @[ -z "$(findstring TQM5200_B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200628 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200629 }
630 @[ -z "$(findstring TQM5200S,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200631 { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
632 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200633 }
Wolfgang Denk978b1092006-07-19 18:01:38 +0200634 @[ -z "$(findstring HIGHBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200635 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200636 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200637 @$(MKCONFIG) -n $@ -a TQM5200 ppc mpc5xxx tqm5200
Heiko Schocher6dedf3d2006-12-21 16:14:48 +0100638uc101_config: unconfig
639 @$(MKCONFIG) uc101 ppc mpc5xxx uc101
Bartlomiej Sieka53d4a492007-02-09 10:45:42 +0100640motionpro_config: unconfig
641 @$(MKCONFIG) motionpro ppc mpc5xxx motionpro
642
wdenk56523f12004-07-11 17:40:54 +0000643
wdenk945af8d2003-07-16 21:53:01 +0000644#########################################################################
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200645## MPC512x Systems
646#########################################################################
647ads5121_config: unconfig
648 @$(MKCONFIG) ads5121 ppc mpc512x ads5121
649
650
651#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000652## MPC8xx Systems
653#########################################################################
654
wdenk2d24a3a2004-06-09 21:50:45 +0000655Adder_config \
656Adder87x_config \
wdenk26238132004-07-09 22:51:01 +0000657AdderII_config \
wdenk2d24a3a2004-06-09 21:50:45 +0000658 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200659 @mkdir -p $(obj)include
wdenk26238132004-07-09 22:51:01 +0000660 $(if $(findstring AdderII,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200661 @echo "#define CONFIG_MPC852T" > $(obj)include/config.h)
662 @$(MKCONFIG) -a Adder ppc mpc8xx adder
wdenk2d24a3a2004-06-09 21:50:45 +0000663
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200664AdderUSB_config: unconfig
665 @./mkconfig -a AdderUSB ppc mpc8xx adder
666
wdenk180d3f72004-01-04 16:28:35 +0000667ADS860_config \
wdenk180d3f72004-01-04 16:28:35 +0000668FADS823_config \
669FADS850SAR_config \
670MPC86xADS_config \
wdenk11142572004-06-06 21:35:06 +0000671MPC885ADS_config \
wdenk180d3f72004-01-04 16:28:35 +0000672FADS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200673 @$(MKCONFIG) $(@:_config=) ppc mpc8xx fads
wdenk7ebf7442002-11-02 23:17:16 +0000674
675AMX860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200676 @$(MKCONFIG) $(@:_config=) ppc mpc8xx amx860 westel
wdenk7ebf7442002-11-02 23:17:16 +0000677
678c2mon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200679 @$(MKCONFIG) $(@:_config=) ppc mpc8xx c2mon
wdenk7ebf7442002-11-02 23:17:16 +0000680
681CCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200682 @$(MKCONFIG) $(@:_config=) ppc mpc8xx CCM siemens
wdenk7ebf7442002-11-02 23:17:16 +0000683
684cogent_mpc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200685 @$(MKCONFIG) $(@:_config=) ppc mpc8xx cogent
wdenk7ebf7442002-11-02 23:17:16 +0000686
wdenk3bac3512003-03-12 10:41:04 +0000687ELPT860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200688 @$(MKCONFIG) $(@:_config=) ppc mpc8xx elpt860 LEOX
wdenk3bac3512003-03-12 10:41:04 +0000689
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100690EP88x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200691 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ep88x
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100692
wdenk7ebf7442002-11-02 23:17:16 +0000693ESTEEM192E_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200694 @$(MKCONFIG) $(@:_config=) ppc mpc8xx esteem192e
wdenk7ebf7442002-11-02 23:17:16 +0000695
696ETX094_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200697 @$(MKCONFIG) $(@:_config=) ppc mpc8xx etx094
wdenk7ebf7442002-11-02 23:17:16 +0000698
wdenk7ebf7442002-11-02 23:17:16 +0000699FLAGADM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200700 @$(MKCONFIG) $(@:_config=) ppc mpc8xx flagadm
wdenk7ebf7442002-11-02 23:17:16 +0000701
wdenk7aa78612003-05-03 15:50:43 +0000702xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
703
704GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000705GEN860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200706 @mkdir -p $(obj)include
707 @ >$(obj)include/config.h
wdenk7aa78612003-05-03 15:50:43 +0000708 @[ -z "$(findstring _SC,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200709 { echo "#define CONFIG_SC" >>$(obj)include/config.h ; \
wdenk7aa78612003-05-03 15:50:43 +0000710 echo "With reduced H/W feature set (SC)..." ; \
711 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200712 @$(MKCONFIG) -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000713
714GENIETV_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200715 @$(MKCONFIG) $(@:_config=) ppc mpc8xx genietv
wdenk7ebf7442002-11-02 23:17:16 +0000716
717GTH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200718 @$(MKCONFIG) $(@:_config=) ppc mpc8xx gth
wdenk7ebf7442002-11-02 23:17:16 +0000719
720hermes_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200721 @$(MKCONFIG) $(@:_config=) ppc mpc8xx hermes
wdenk7ebf7442002-11-02 23:17:16 +0000722
wdenkc40b2952004-03-13 23:29:43 +0000723HMI10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200724 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenkc40b2952004-03-13 23:29:43 +0000725
wdenk7ebf7442002-11-02 23:17:16 +0000726IAD210_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200727 @$(MKCONFIG) $(@:_config=) ppc mpc8xx IAD210 siemens
wdenk7ebf7442002-11-02 23:17:16 +0000728
729xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
730
731ICU862_100MHz_config \
732ICU862_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200733 @mkdir -p $(obj)include
734 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000735 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200736 { echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000737 echo "... with 100MHz system clock" ; \
738 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200739 @$(MKCONFIG) -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
wdenk7ebf7442002-11-02 23:17:16 +0000740
741IP860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200742 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ip860
wdenk7ebf7442002-11-02 23:17:16 +0000743
744IVML24_256_config \
745IVML24_128_config \
746IVML24_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200747 @mkdir -p $(obj)include
748 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000749 @[ -z "$(findstring IVML24_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200750 { echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000751 }
752 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200753 { echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000754 }
755 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200756 { echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000757 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200758 @$(MKCONFIG) -a IVML24 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000759
760IVMS8_256_config \
761IVMS8_128_config \
762IVMS8_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200763 @mkdir -p $(obj)include
764 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000765 @[ -z "$(findstring IVMS8_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200766 { echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000767 }
768 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200769 { echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000770 }
771 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200772 { echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000773 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200774 @$(MKCONFIG) -a IVMS8 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000775
wdenk56f94be2002-11-05 16:35:14 +0000776KUP4K_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200777 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4k kup
wdenk0608e042004-03-25 19:29:38 +0000778
779KUP4X_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200780 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000781
wdenk7ebf7442002-11-02 23:17:16 +0000782LANTEC_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200783 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lantec
wdenk7ebf7442002-11-02 23:17:16 +0000784
785lwmon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200786 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lwmon
wdenk7ebf7442002-11-02 23:17:16 +0000787
788MBX_config \
789MBX860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200790 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mbx8xx
wdenk7ebf7442002-11-02 23:17:16 +0000791
792MHPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200793 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mhpc eltec
wdenk7ebf7442002-11-02 23:17:16 +0000794
795MVS1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200796 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mvs1
wdenk7ebf7442002-11-02 23:17:16 +0000797
wdenk993cad92003-06-26 22:04:09 +0000798xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
799
800NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000801NETVIA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200802 @mkdir -p $(obj)include
803 @ >$(obj)include/config.h
wdenk993cad92003-06-26 22:04:09 +0000804 @[ -z "$(findstring NETVIA_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200805 { echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000806 echo "... Version 1" ; \
807 }
808 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200809 { echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000810 echo "... Version 2" ; \
811 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200812 @$(MKCONFIG) -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000813
wdenkc26e4542004-04-18 10:13:26 +0000814xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
815
816NETPHONE_V2_config \
wdenk04a85b32004-04-15 18:22:41 +0000817NETPHONE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200818 @mkdir -p $(obj)include
819 @ >$(obj)include/config.h
wdenkc26e4542004-04-18 10:13:26 +0000820 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200821 { echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000822 }
823 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200824 { echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000825 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200826 @$(MKCONFIG) -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk04a85b32004-04-15 18:22:41 +0000827
wdenk79fa88f2004-06-07 23:46:25 +0000828xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk04a85b32004-04-15 18:22:41 +0000829
wdenk79fa88f2004-06-07 23:46:25 +0000830NETTA_ISDN_6412_SWAPHOOK_config \
831NETTA_ISDN_SWAPHOOK_config \
832NETTA_6412_SWAPHOOK_config \
833NETTA_SWAPHOOK_config \
834NETTA_ISDN_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000835NETTA_ISDN_config \
wdenk79fa88f2004-06-07 23:46:25 +0000836NETTA_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000837NETTA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200838 @mkdir -p $(obj)include
839 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000840 @[ -z "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200841 { echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \
wdenk04a85b32004-04-15 18:22:41 +0000842 }
wdenk79fa88f2004-06-07 23:46:25 +0000843 @[ -n "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200844 { echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000845 }
846 @[ -z "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200847 { echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000848 }
849 @[ -n "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200850 { echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000851 }
852 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200853 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000854 }
855 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200856 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000857 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200858 @$(MKCONFIG) -a $(call xtract_NETTA,$@) ppc mpc8xx netta
wdenk04a85b32004-04-15 18:22:41 +0000859
wdenk79fa88f2004-06-07 23:46:25 +0000860xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
861
862NETTA2_V2_config \
863NETTA2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200864 @mkdir -p $(obj)include
865 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000866 @[ -z "$(findstring NETTA2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200867 { echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000868 }
869 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200870 { echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000871 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200872 @$(MKCONFIG) -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
wdenk79fa88f2004-06-07 23:46:25 +0000873
dzu@denx.dea367d422006-04-19 11:52:46 +0200874NC650_Rev1_config \
875NC650_Rev2_config \
876CP850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200877 @mkdir -p $(obj)include
878 @ >$(obj)include/config.h
dzu@denx.dea367d422006-04-19 11:52:46 +0200879 @[ -z "$(findstring CP850,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200880 { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \
881 echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200882 }
883 @[ -z "$(findstring Rev1,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200884 { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200885 }
886 @[ -z "$(findstring Rev2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200887 { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200888 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200889 @$(MKCONFIG) -a NC650 ppc mpc8xx nc650
wdenk7ca202f2004-08-28 22:45:57 +0000890
wdenk7ebf7442002-11-02 23:17:16 +0000891NX823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200892 @$(MKCONFIG) $(@:_config=) ppc mpc8xx nx823
wdenk7ebf7442002-11-02 23:17:16 +0000893
894pcu_e_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200895 @$(MKCONFIG) $(@:_config=) ppc mpc8xx pcu_e siemens
wdenk7ebf7442002-11-02 23:17:16 +0000896
wdenk3bbc8992003-12-07 22:27:15 +0000897QS850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200898 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000899
900QS823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200901 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000902
903QS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200904 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs860t snmc
wdenk3bbc8992003-12-07 22:27:15 +0000905
wdenkda93ed82004-09-29 11:02:56 +0000906quantum_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200907 @$(MKCONFIG) $(@:_config=) ppc mpc8xx quantum
wdenkda93ed82004-09-29 11:02:56 +0000908
wdenk7ebf7442002-11-02 23:17:16 +0000909R360MPI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200910 @$(MKCONFIG) $(@:_config=) ppc mpc8xx r360mpi
wdenk7ebf7442002-11-02 23:17:16 +0000911
wdenk682011f2003-06-03 23:54:09 +0000912RBC823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200913 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rbc823
wdenk682011f2003-06-03 23:54:09 +0000914
wdenk7ebf7442002-11-02 23:17:16 +0000915RPXClassic_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200916 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXClassic
wdenk7ebf7442002-11-02 23:17:16 +0000917
918RPXlite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200919 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXlite
wdenk7ebf7442002-11-02 23:17:16 +0000920
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100921RPXlite_DW_64_config \
922RPXlite_DW_LCD_config \
923RPXlite_DW_64_LCD_config \
wdenke63c8ee2004-06-09 21:04:48 +0000924RPXlite_DW_NVRAM_config \
925RPXlite_DW_NVRAM_64_config \
926RPXlite_DW_NVRAM_LCD_config \
927RPXlite_DW_NVRAM_64_LCD_config \
928RPXlite_DW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200929 @mkdir -p $(obj)include
930 @ >$(obj)include/config.h
wdenke63c8ee2004-06-09 21:04:48 +0000931 @[ -z "$(findstring _64,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200932 { echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000933 echo "... with 64MHz system clock ..."; \
934 }
935 @[ -z "$(findstring _LCD,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100936 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200937 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000938 echo "... with LCD display ..."; \
939 }
940 @[ -z "$(findstring _NVRAM,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100941 { echo "#define CFG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000942 echo "... with ENV in NVRAM ..."; \
943 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200944 @$(MKCONFIG) -a RPXlite_DW ppc mpc8xx RPXlite_dw
wdenke63c8ee2004-06-09 21:04:48 +0000945
wdenk73a8b272003-06-05 19:27:42 +0000946rmu_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200947 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rmu
wdenk73a8b272003-06-05 19:27:42 +0000948
wdenk7ebf7442002-11-02 23:17:16 +0000949RRvision_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200950 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000951
952RRvision_LCD_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200953 @mkdir -p $(obj)include
954 @echo "#define CONFIG_LCD" >$(obj)include/config.h
955 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
956 @$(MKCONFIG) -a RRvision ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000957
958SM850_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200959 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000960
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200961spc1920_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200962 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spc1920
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200963
wdenk7ebf7442002-11-02 23:17:16 +0000964SPD823TS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200965 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spd8xx
wdenk7ebf7442002-11-02 23:17:16 +0000966
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200967stxxtc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200968 @$(MKCONFIG) $(@:_config=) ppc mpc8xx stxxtc
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200969
wdenkdc7c9a12003-03-26 06:55:25 +0000970svm_sc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200971 @$(MKCONFIG) $(@:_config=) ppc mpc8xx svm_sc8xx
wdenkdc7c9a12003-03-26 06:55:25 +0000972
wdenk7ebf7442002-11-02 23:17:16 +0000973SXNI855T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200974 @$(MKCONFIG) $(@:_config=) ppc mpc8xx sixnet
wdenk7ebf7442002-11-02 23:17:16 +0000975
wdenkdb2f721f2003-03-06 00:58:30 +0000976# EMK MPC8xx based modules
977TOP860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200978 @$(MKCONFIG) $(@:_config=) ppc mpc8xx top860 emk
wdenkdb2f721f2003-03-06 00:58:30 +0000979
wdenk7ebf7442002-11-02 23:17:16 +0000980# Play some tricks for configuration selection
wdenke9132ea2004-04-24 23:23:30 +0000981# Only 855 and 860 boards may come with FEC
982# and only 823 boards may have LCD support
983xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +0000984
985FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000986FPS860L_config \
wdenkf12e5682003-07-07 20:07:54 +0000987NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +0000988TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000989TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +0000990TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000991TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000992TQM860L_config \
wdenkd126bfb2003-04-10 11:18:18 +0000993TQM862L_config \
wdenkae3af052003-08-07 22:18:11 +0000994TQM823M_config \
wdenkae3af052003-08-07 22:18:11 +0000995TQM850M_config \
wdenkf12e5682003-07-07 20:07:54 +0000996TQM855M_config \
wdenkf12e5682003-07-07 20:07:54 +0000997TQM860M_config \
wdenkf12e5682003-07-07 20:07:54 +0000998TQM862M_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200999TQM866M_config \
Markus Klotzbuecher090eb732006-07-12 15:26:01 +02001000TQM885D_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +02001001virtlab2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001002 @mkdir -p $(obj)include
1003 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +00001004 @[ -z "$(findstring _LCD,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001005 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
1006 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001007 echo "... with LCD display" ; \
1008 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001009 @$(MKCONFIG) -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +00001010
1011TTTech_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001012 @mkdir -p $(obj)include
1013 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1014 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
1015 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +00001016
wdenkec0aee72004-12-19 09:58:11 +00001017uc100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001018 @$(MKCONFIG) $(@:_config=) ppc mpc8xx uc100
wdenkf7d15722004-12-18 22:35:43 +00001019
wdenk608c9142003-01-13 23:54:46 +00001020v37_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001021 @mkdir -p $(obj)include
1022 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1023 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h
1024 @$(MKCONFIG) $(@:_config=) ppc mpc8xx v37
wdenk608c9142003-01-13 23:54:46 +00001025
dzu91e940d2003-09-25 22:32:40 +00001026wtk_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001027 @mkdir -p $(obj)include
1028 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1029 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h
1030 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
dzu91e940d2003-09-25 22:32:40 +00001031
wdenk7ebf7442002-11-02 23:17:16 +00001032#########################################################################
1033## PPC4xx Systems
1034#########################################################################
wdenke55ca7e2004-07-01 21:40:08 +00001035xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001036
Stefan Roese16c0cc12007-03-21 13:39:57 +01001037acadia_config: unconfig
1038 @$(MKCONFIG) $(@:_config=) ppc ppc4xx acadia amcc
1039
Stefan Roesec440bfe2007-06-06 11:42:13 +02001040acadia_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001041 @mkdir -p $(obj)include $(obj)board/amcc/acadia
1042 @mkdir -p $(obj)nand_spl/board/amcc/acadia
Stefan Roesec440bfe2007-06-06 11:42:13 +02001043 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
1044 @$(MKCONFIG) -n $@ -a acadia ppc ppc4xx acadia amcc
1045 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/acadia/config.tmp
1046 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1047
wdenk7ebf7442002-11-02 23:17:16 +00001048ADCIOP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001049 @$(MKCONFIG) $(@:_config=) ppc ppc4xx adciop esd
wdenk7ebf7442002-11-02 23:17:16 +00001050
Stefan Roese899620c2006-08-15 14:22:35 +02001051alpr_config: unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -06001052 @$(MKCONFIG) $(@:_config=) ppc ppc4xx alpr prodrive
Stefan Roese899620c2006-08-15 14:22:35 +02001053
Wolfgang Denk7521af12005-10-09 01:04:33 +02001054AP1000_config:unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001055 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ap1000 amirix
Wolfgang Denk7521af12005-10-09 01:04:33 +02001056
stroesec419d1d2004-12-16 18:44:40 +00001057APC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001058 @$(MKCONFIG) $(@:_config=) ppc ppc4xx apc405 esd
stroesec419d1d2004-12-16 18:44:40 +00001059
wdenk7ebf7442002-11-02 23:17:16 +00001060AR405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001061 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ar405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001062
stroese549826e2003-05-23 11:41:44 +00001063ASH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001064 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ash405 esd
stroese549826e2003-05-23 11:41:44 +00001065
Stefan Roese8a316c92005-08-01 16:49:12 +02001066bamboo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001067 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bamboo amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001068
Stefan Roesecf959c72007-06-01 15:27:11 +02001069bamboo_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001070 @mkdir -p $(obj)include $(obj)board/amcc/bamboo
1071 @mkdir -p $(obj)nand_spl/board/amcc/bamboo
Stefan Roesecf959c72007-06-01 15:27:11 +02001072 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roesef3679aa2007-06-01 16:15:34 +02001073 @$(MKCONFIG) -n $@ -a bamboo ppc ppc4xx bamboo amcc
Stefan Roesecf959c72007-06-01 15:27:11 +02001074 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/bamboo/config.tmp
1075 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1076
Stefan Roese8a316c92005-08-01 16:49:12 +02001077bubinga_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001078 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bubinga amcc
stroese549826e2003-05-23 11:41:44 +00001079
wdenk7ebf7442002-11-02 23:17:16 +00001080CANBT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001081 @$(MKCONFIG) $(@:_config=) ppc ppc4xx canbt esd
wdenk7ebf7442002-11-02 23:17:16 +00001082
wdenk1d6f9722004-09-09 17:44:35 +00001083CATcenter_config \
1084CATcenter_25_config \
1085CATcenter_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001086 @mkdir -p $(obj)include
1087 @ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h
1088 @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001089 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001090 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001091 echo "SysClk = 25MHz" ; \
1092 }
1093 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001094 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001095 echo "SysClk = 33MHz" ; \
1096 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001097 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk10767cc2004-05-13 13:23:58 +00001098
Stefan Roese7644f162005-09-22 09:16:57 +02001099CPCI2DP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001100 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd
Stefan Roese7644f162005-09-22 09:16:57 +02001101
stroese549826e2003-05-23 11:41:44 +00001102CPCI405_config \
1103CPCI4052_config \
stroesec419d1d2004-12-16 18:44:40 +00001104CPCI405DT_config \
stroese549826e2003-05-23 11:41:44 +00001105CPCI405AB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001106 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci405 esd
1107 @echo "BOARD_REVISION = $(@:_config=)" >> $(obj)include/config.mk
wdenk7ebf7442002-11-02 23:17:16 +00001108
1109CPCI440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001110 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci440 esd
wdenk7ebf7442002-11-02 23:17:16 +00001111
1112CPCIISER4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001113 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpciiser4 esd
wdenk7ebf7442002-11-02 23:17:16 +00001114
wdenkdb01a2e2004-04-15 23:14:49 +00001115CRAYL1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001116 @$(MKCONFIG) $(@:_config=) ppc ppc4xx L1 cray
wdenk7ebf7442002-11-02 23:17:16 +00001117
wdenkcd0a9de2004-02-23 20:48:38 +00001118csb272_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001119 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb272
wdenkcd0a9de2004-02-23 20:48:38 +00001120
wdenkaa245092004-06-09 12:47:02 +00001121csb472_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001122 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb472
wdenkaa245092004-06-09 12:47:02 +00001123
wdenk7ebf7442002-11-02 23:17:16 +00001124DASA_SIM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001125 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dasa_sim esd
wdenk7ebf7442002-11-02 23:17:16 +00001126
stroese72cd5aa2003-09-12 08:57:15 +00001127DP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001128 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dp405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001129
wdenk7ebf7442002-11-02 23:17:16 +00001130DU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001131 @$(MKCONFIG) $(@:_config=) ppc ppc4xx du405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001132
Stefan Roese8a316c92005-08-01 16:49:12 +02001133ebony_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001134 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +00001135
wdenkdb01a2e2004-04-15 23:14:49 +00001136ERIC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001137 @$(MKCONFIG) $(@:_config=) ppc ppc4xx eric
wdenk7ebf7442002-11-02 23:17:16 +00001138
wdenkdb01a2e2004-04-15 23:14:49 +00001139EXBITGEN_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001140 @$(MKCONFIG) $(@:_config=) ppc ppc4xx exbitgen
wdenkd1cbe852003-06-28 17:24:46 +00001141
stroesec419d1d2004-12-16 18:44:40 +00001142G2000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001143 @$(MKCONFIG) $(@:_config=) ppc ppc4xx g2000
stroesec419d1d2004-12-16 18:44:40 +00001144
1145HH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001146 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001147
stroese72cd5aa2003-09-12 08:57:15 +00001148HUB405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001149 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001150
wdenkdb01a2e2004-04-15 23:14:49 +00001151JSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001152 @$(MKCONFIG) $(@:_config=) ppc ppc4xx jse
wdenkdb01a2e2004-04-15 23:14:49 +00001153
Stefan Roeseb79316f2005-08-15 12:31:23 +02001154KAREF_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001155 @$(MKCONFIG) $(@:_config=) ppc ppc4xx karef sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001156
Stefan Roese4745aca2007-02-20 10:57:08 +01001157katmai_config: unconfig
1158 @$(MKCONFIG) $(@:_config=) ppc ppc4xx katmai amcc
1159
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001160luan_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001161 @$(MKCONFIG) $(@:_config=) ppc ppc4xx luan amcc
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001162
Stefan Roeseb765ffb2007-06-15 08:18:01 +02001163lwmon5_config: unconfig
1164 @$(MKCONFIG) $(@:_config=) ppc ppc4xx lwmon5
1165
Stefan Roeseb79316f2005-08-15 12:31:23 +02001166METROBOX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001167 @$(MKCONFIG) $(@:_config=) ppc ppc4xx metrobox sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001168
wdenkdb01a2e2004-04-15 23:14:49 +00001169MIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001170 @$(MKCONFIG) $(@:_config=) ppc ppc4xx mip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001171
wdenkdb01a2e2004-04-15 23:14:49 +00001172MIP405T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001173 @mkdir -p $(obj)include
1174 @echo "#define CONFIG_MIP405T" >$(obj)include/config.h
wdenkf3e0de62003-06-04 15:05:30 +00001175 @echo "Enable subset config for MIP405T"
Marian Balakowiczf9328632006-09-01 19:49:50 +02001176 @$(MKCONFIG) -a MIP405 ppc ppc4xx mip405 mpl
wdenkf3e0de62003-06-04 15:05:30 +00001177
wdenkdb01a2e2004-04-15 23:14:49 +00001178ML2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001179 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml2
wdenk7ebf7442002-11-02 23:17:16 +00001180
wdenkdb01a2e2004-04-15 23:14:49 +00001181ml300_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001182 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml300 xilinx
wdenk028ab6b2004-02-23 23:54:43 +00001183
Stefan Roese8a316c92005-08-01 16:49:12 +02001184ocotea_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001185 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocotea amcc
wdenk0e6d7982004-03-14 00:07:33 +00001186
wdenk7ebf7442002-11-02 23:17:16 +00001187OCRTC_config \
1188ORSG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001189 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocrtc esd
wdenk7ebf7442002-11-02 23:17:16 +00001190
Stefan Roese5568e612005-11-22 13:20:42 +01001191p3p440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001192 @$(MKCONFIG) $(@:_config=) ppc ppc4xx p3p440 prodrive
Stefan Roese5568e612005-11-22 13:20:42 +01001193
wdenk7ebf7442002-11-02 23:17:16 +00001194PCI405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001195 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pci405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001196
Stefan Roesea4c8d132006-06-02 16:18:04 +02001197pcs440ep_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001198 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pcs440ep
Stefan Roesea4c8d132006-06-02 16:18:04 +02001199
wdenkdb01a2e2004-04-15 23:14:49 +00001200PIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001201 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001202
stroese72cd5aa2003-09-12 08:57:15 +00001203PLU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001204 @$(MKCONFIG) $(@:_config=) ppc ppc4xx plu405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001205
stroese549826e2003-05-23 11:41:44 +00001206PMC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001207 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pmc405 esd
stroese549826e2003-05-23 11:41:44 +00001208
wdenk281e00a2004-08-01 22:48:16 +00001209PPChameleonEVB_config \
wdenke55ca7e2004-07-01 21:40:08 +00001210PPChameleonEVB_BA_25_config \
1211PPChameleonEVB_ME_25_config \
1212PPChameleonEVB_HI_25_config \
1213PPChameleonEVB_BA_33_config \
1214PPChameleonEVB_ME_33_config \
1215PPChameleonEVB_HI_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001216 @mkdir -p $(obj)include
1217 @ >$(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001218 @[ -z "$(findstring EVB_BA,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001219 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001220 echo "... BASIC model" ; \
1221 }
wdenk1d6f9722004-09-09 17:44:35 +00001222 @[ -z "$(findstring EVB_ME,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001223 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001224 echo "... MEDIUM model" ; \
1225 }
wdenk1d6f9722004-09-09 17:44:35 +00001226 @[ -z "$(findstring EVB_HI,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001227 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001228 echo "... HIGH-END model" ; \
1229 }
wdenke55ca7e2004-07-01 21:40:08 +00001230 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001231 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001232 echo "SysClk = 25MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001233 }
1234 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001235 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001236 echo "SysClk = 33MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001237 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001238 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk12f34242003-09-02 22:48:03 +00001239
wdenk652a10c2005-01-09 23:48:14 +00001240sbc405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001241 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sbc405
wdenk652a10c2005-01-09 23:48:14 +00001242
Stefan Roese430f1b02007-03-28 15:03:16 +02001243sequoia_config \
1244rainier_config: unconfig
1245 @mkdir -p $(obj)include
1246 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1247 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
1248 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Stefan Roese887e2ec2006-09-07 11:51:23 +02001249
Stefan Roese430f1b02007-03-28 15:03:16 +02001250sequoia_nand_config \
1251rainier_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001252 @mkdir -p $(obj)include $(obj)board/amcc/sequoia
1253 @mkdir -p $(obj)nand_spl/board/amcc/sequoia
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001254 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roese430f1b02007-03-28 15:03:16 +02001255 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1256 tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h
1257 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001258 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1259 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
stroese72cd5aa2003-09-12 08:57:15 +00001260
Wolfgang Denk6d3e0102007-01-16 18:30:50 +01001261sc3_config:unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -06001262 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sc3
Heiko Schocherca43ba12007-01-11 15:44:44 +01001263
Stefan Roese5fb692c2007-01-18 10:25:34 +01001264taishan_config: unconfig
1265 @$(MKCONFIG) $(@:_config=) ppc ppc4xx taishan amcc
1266
wdenk7ebf7442002-11-02 23:17:16 +00001267VOH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001268 @$(MKCONFIG) $(@:_config=) ppc ppc4xx voh405 esd
wdenk3bac3512003-03-12 10:41:04 +00001269
stroesec419d1d2004-12-16 18:44:40 +00001270VOM405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001271 @$(MKCONFIG) $(@:_config=) ppc ppc4xx vom405 esd
stroesec419d1d2004-12-16 18:44:40 +00001272
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001273CMS700_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001274 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001275
wdenk7ebf7442002-11-02 23:17:16 +00001276W7OLMC_config \
1277W7OLMG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001278 @$(MKCONFIG) $(@:_config=) ppc ppc4xx w7o
wdenk7ebf7442002-11-02 23:17:16 +00001279
Stefan Roese430f1b02007-03-28 15:03:16 +02001280# Walnut & Sycamore images are identical (recognized via PVR)
1281walnut_config \
1282sycamore_config: unconfig
1283 @$(MKCONFIG) -n $@ -a walnut ppc ppc4xx walnut amcc
wdenk7ebf7442002-11-02 23:17:16 +00001284
stroesec419d1d2004-12-16 18:44:40 +00001285WUH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001286 @$(MKCONFIG) $(@:_config=) ppc ppc4xx wuh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001287
wdenkdb01a2e2004-04-15 23:14:49 +00001288XPEDITE1K_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001289 @$(MKCONFIG) $(@:_config=) ppc ppc4xx xpedite1k
wdenkba56f622004-02-06 23:19:44 +00001290
Stefan Roese430f1b02007-03-28 15:03:16 +02001291yosemite_config \
1292yellowstone_config: unconfig
Stefan Roese700200c2007-01-30 17:04:19 +01001293 @mkdir -p $(obj)include
Stefan Roese430f1b02007-03-28 15:03:16 +02001294 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1295 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
Stefan Roese2aa54f62007-02-02 12:42:08 +01001296 @$(MKCONFIG) -n $@ -a yosemite ppc ppc4xx yosemite amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001297
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001298yucca_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001299 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yucca amcc
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001300
wdenk7ebf7442002-11-02 23:17:16 +00001301#########################################################################
wdenk983fda82004-10-28 00:09:35 +00001302## MPC8220 Systems
1303#########################################################################
Wolfgang Denkdc17fb62005-08-03 22:32:02 +02001304
1305Alaska8220_config \
1306Yukon8220_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001307 @$(MKCONFIG) $(@:_config=) ppc mpc8220 alaska
wdenk983fda82004-10-28 00:09:35 +00001308
wdenk12b43d52005-04-05 21:57:18 +00001309sorcery_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001310 @$(MKCONFIG) $(@:_config=) ppc mpc8220 sorcery
wdenk12b43d52005-04-05 21:57:18 +00001311
wdenk983fda82004-10-28 00:09:35 +00001312#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001313## MPC824x Systems
1314#########################################################################
wdenkefa329c2004-03-23 20:18:25 +00001315xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001316
wdenk03329902003-06-20 22:36:30 +00001317A3000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001318 @$(MKCONFIG) $(@:_config=) ppc mpc824x a3000
wdenk03329902003-06-20 22:36:30 +00001319
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001320barco_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001321 @$(MKCONFIG) $(@:_config=) ppc mpc824x barco
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001322
wdenk7ebf7442002-11-02 23:17:16 +00001323BMW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001324 @$(MKCONFIG) $(@:_config=) ppc mpc824x bmw
wdenk7ebf7442002-11-02 23:17:16 +00001325
wdenk3bac3512003-03-12 10:41:04 +00001326CPC45_config \
1327CPC45_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001328 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc824x cpc45
1329 @cd $(obj)include ; \
wdenk3bac3512003-03-12 10:41:04 +00001330 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1331 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1332 echo "... booting from 8-bit flash" ; \
1333 else \
1334 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1335 echo "... booting from 64-bit flash" ; \
1336 fi; \
1337 echo "export CONFIG_BOOT_ROM" >> config.mk;
1338
wdenk7ebf7442002-11-02 23:17:16 +00001339CU824_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001340 @$(MKCONFIG) $(@:_config=) ppc mpc824x cu824
wdenk7ebf7442002-11-02 23:17:16 +00001341
wdenk7abf0c52004-04-18 21:45:42 +00001342debris_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001343 @$(MKCONFIG) $(@:_config=) ppc mpc824x debris etin
wdenk7abf0c52004-04-18 21:45:42 +00001344
wdenk80885a92004-02-26 23:46:20 +00001345eXalion_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001346 @$(MKCONFIG) $(@:_config=) ppc mpc824x eXalion
wdenk80885a92004-02-26 23:46:20 +00001347
wdenk756f5862005-04-03 15:51:42 +00001348HIDDEN_DRAGON_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001349 @$(MKCONFIG) $(@:_config=) ppc mpc824x hidden_dragon
wdenk756f5862005-04-03 15:51:42 +00001350
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001351kvme080_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001352 @$(MKCONFIG) $(@:_config=) ppc mpc824x kvme080 etin
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001353
wdenk7ebf7442002-11-02 23:17:16 +00001354MOUSSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001355 @$(MKCONFIG) $(@:_config=) ppc mpc824x mousse
wdenk7ebf7442002-11-02 23:17:16 +00001356
1357MUSENKI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001358 @$(MKCONFIG) $(@:_config=) ppc mpc824x musenki
wdenk7ebf7442002-11-02 23:17:16 +00001359
wdenkb4676a22003-12-07 19:24:00 +00001360MVBLUE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001361 @$(MKCONFIG) $(@:_config=) ppc mpc824x mvblue
wdenkb4676a22003-12-07 19:24:00 +00001362
wdenk7ebf7442002-11-02 23:17:16 +00001363OXC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001364 @$(MKCONFIG) $(@:_config=) ppc mpc824x oxc
wdenk7ebf7442002-11-02 23:17:16 +00001365
1366PN62_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001367 @$(MKCONFIG) $(@:_config=) ppc mpc824x pn62
wdenk7ebf7442002-11-02 23:17:16 +00001368
1369Sandpoint8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001370 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001371
1372Sandpoint8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001373 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001374
wdenk466b7412004-07-10 22:35:59 +00001375sbc8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001376 @$(MKCONFIG) $(@:_config=) ppc mpc824x sbc8240
wdenk466b7412004-07-10 22:35:59 +00001377
wdenkd1cbe852003-06-28 17:24:46 +00001378SL8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001379 @$(MKCONFIG) $(@:_config=) ppc mpc824x sl8245
wdenkd1cbe852003-06-28 17:24:46 +00001380
wdenk7ebf7442002-11-02 23:17:16 +00001381utx8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001382 @$(MKCONFIG) $(@:_config=) ppc mpc824x utx8245
wdenk7ebf7442002-11-02 23:17:16 +00001383
1384#########################################################################
1385## MPC8260 Systems
1386#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001387
wdenk54387ac2003-10-08 22:45:44 +00001388atc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001389 @$(MKCONFIG) $(@:_config=) ppc mpc8260 atc
wdenk54387ac2003-10-08 22:45:44 +00001390
wdenk7ebf7442002-11-02 23:17:16 +00001391cogent_mpc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001392 @$(MKCONFIG) $(@:_config=) ppc mpc8260 cogent
wdenk7ebf7442002-11-02 23:17:16 +00001393
1394CPU86_config \
1395CPU86_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001396 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu86
1397 @cd $(obj)include ; \
wdenk7ebf7442002-11-02 23:17:16 +00001398 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1399 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1400 echo "... booting from 8-bit flash" ; \
1401 else \
1402 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1403 echo "... booting from 64-bit flash" ; \
1404 fi; \
1405 echo "export CONFIG_BOOT_ROM" >> config.mk;
1406
wdenk384cc682005-04-03 22:35:21 +00001407CPU87_config \
1408CPU87_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001409 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu87
1410 @cd $(obj)include ; \
wdenk384cc682005-04-03 22:35:21 +00001411 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1412 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1413 echo "... booting from 8-bit flash" ; \
1414 else \
1415 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1416 echo "... booting from 64-bit flash" ; \
1417 fi; \
1418 echo "export CONFIG_BOOT_ROM" >> config.mk;
1419
Wolfgang Denkf901a832005-08-06 01:42:58 +02001420ep8248_config \
1421ep8248E_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001422 @$(MKCONFIG) ep8248 ppc mpc8260 ep8248
Wolfgang Denkf901a832005-08-06 01:42:58 +02001423
wdenk7ebf7442002-11-02 23:17:16 +00001424ep8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001425 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep8260
wdenk7ebf7442002-11-02 23:17:16 +00001426
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001427ep82xxm_config: unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -06001428 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep82xxm
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001429
wdenk7ebf7442002-11-02 23:17:16 +00001430gw8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001431 @$(MKCONFIG) $(@:_config=) ppc mpc8260 gw8260
wdenk7ebf7442002-11-02 23:17:16 +00001432
1433hymod_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001434 @$(MKCONFIG) $(@:_config=) ppc mpc8260 hymod
wdenk7ebf7442002-11-02 23:17:16 +00001435
wdenk9dd41a72005-05-12 22:48:09 +00001436IDS8247_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001437 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ids8247
wdenk9dd41a72005-05-12 22:48:09 +00001438
wdenk7ebf7442002-11-02 23:17:16 +00001439IPHASE4539_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001440 @$(MKCONFIG) $(@:_config=) ppc mpc8260 iphase4539
wdenk7ebf7442002-11-02 23:17:16 +00001441
wdenkc3c7f862004-06-09 14:47:54 +00001442ISPAN_config \
1443ISPAN_REVB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001444 @mkdir -p $(obj)include
wdenkc3c7f862004-06-09 14:47:54 +00001445 @if [ "$(findstring _REVB_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001446 echo "#define CFG_REV_B" > $(obj)include/config.h ; \
wdenkc3c7f862004-06-09 14:47:54 +00001447 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001448 @$(MKCONFIG) -a ISPAN ppc mpc8260 ispan
wdenkc3c7f862004-06-09 14:47:54 +00001449
wdenk04a85b32004-04-15 18:22:41 +00001450MPC8260ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001451MPC8260ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001452MPC8260ADS_33MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001453MPC8260ADS_33MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001454MPC8260ADS_40MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001455MPC8260ADS_40MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001456MPC8272ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001457MPC8272ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001458PQ2FADS_config \
wdenk901787d2005-04-03 23:22:21 +00001459PQ2FADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001460PQ2FADS-VR_config \
wdenk901787d2005-04-03 23:22:21 +00001461PQ2FADS-VR_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001462PQ2FADS-ZU_config \
wdenk901787d2005-04-03 23:22:21 +00001463PQ2FADS-ZU_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001464PQ2FADS-ZU_66MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001465PQ2FADS-ZU_66MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001466 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001467 @mkdir -p $(obj)include
1468 @mkdir -p $(obj)board/mpc8260ads
wdenk04a85b32004-04-15 18:22:41 +00001469 $(if $(findstring PQ2FADS,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001470 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > $(obj)include/config.h, \
1471 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h)
wdenk04a85b32004-04-15 18:22:41 +00001472 $(if $(findstring MHz,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001473 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \
wdenk04a85b32004-04-15 18:22:41 +00001474 $(if $(findstring VR,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001475 @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h))
wdenk901787d2005-04-03 23:22:21 +00001476 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001477 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/mpc8260ads/config.tmp ; \
wdenk901787d2005-04-03 23:22:21 +00001478 echo "... with lowboot configuration" ; \
1479 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001480 @$(MKCONFIG) -a MPC8260ADS ppc mpc8260 mpc8260ads
wdenk7ebf7442002-11-02 23:17:16 +00001481
wdenkdb2f721f2003-03-06 00:58:30 +00001482MPC8266ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001483 @$(MKCONFIG) $(@:_config=) ppc mpc8260 mpc8266ads
wdenkdb2f721f2003-03-06 00:58:30 +00001484
wdenkefa329c2004-03-23 20:18:25 +00001485# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk10f67012003-03-25 18:06:06 +00001486PM825_config \
wdenkefa329c2004-03-23 20:18:25 +00001487PM825_ROMBOOT_config \
1488PM825_BIGFLASH_config \
1489PM825_ROMBOOT_BIGFLASH_config \
wdenk7ebf7442002-11-02 23:17:16 +00001490PM826_config \
wdenkefa329c2004-03-23 20:18:25 +00001491PM826_ROMBOOT_config \
1492PM826_BIGFLASH_config \
1493PM826_ROMBOOT_BIGFLASH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001494 @mkdir -p $(obj)include
1495 @mkdir -p $(obj)board/pm826
wdenkefa329c2004-03-23 20:18:25 +00001496 @if [ "$(findstring PM825_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001497 echo "#define CONFIG_PCI" >$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001498 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001499 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001500 fi
1501 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1502 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001503 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1504 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001505 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1506 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001507 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001508 fi; \
1509 else \
wdenk7ebf7442002-11-02 23:17:16 +00001510 echo "... booting from 64-bit flash" ; \
wdenkefa329c2004-03-23 20:18:25 +00001511 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1512 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001513 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
1514 echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001515 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001516 echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001517 fi; \
1518 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001519 @$(MKCONFIG) -a PM826 ppc mpc8260 pm826
wdenkefa329c2004-03-23 20:18:25 +00001520
1521PM828_config \
1522PM828_PCI_config \
1523PM828_ROMBOOT_config \
1524PM828_ROMBOOT_PCI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001525 @mkdir -p $(obj)include
1526 @mkdir -p $(obj)board/pm826
Marian Balakowicz17076262006-04-05 20:37:11 +02001527 @if [ "$(findstring _PCI_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001528 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001529 echo "... with PCI enabled" ; \
1530 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001531 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001532 fi
1533 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1534 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001535 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1536 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001537 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001538 @$(MKCONFIG) -a PM828 ppc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +00001539
1540ppmc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001541 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ppmc8260
wdenk7ebf7442002-11-02 23:17:16 +00001542
wdenk8b0bfc62005-04-03 23:11:38 +00001543Rattler8248_config \
1544Rattler_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001545 @mkdir -p $(obj)include
wdenk8b0bfc62005-04-03 23:11:38 +00001546 $(if $(findstring 8248,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001547 @echo "#define CONFIG_MPC8248" > $(obj)include/config.h)
1548 @$(MKCONFIG) -a Rattler ppc mpc8260 rattler
wdenk8b0bfc62005-04-03 23:11:38 +00001549
wdenk7ebf7442002-11-02 23:17:16 +00001550RPXsuper_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001551 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rpxsuper
wdenk7ebf7442002-11-02 23:17:16 +00001552
1553rsdproto_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001554 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rsdproto
wdenk7ebf7442002-11-02 23:17:16 +00001555
1556sacsng_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001557 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sacsng
wdenk7ebf7442002-11-02 23:17:16 +00001558
1559sbc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001560 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sbc8260
wdenk7ebf7442002-11-02 23:17:16 +00001561
1562SCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001563 @$(MKCONFIG) $(@:_config=) ppc mpc8260 SCM siemens
wdenk7ebf7442002-11-02 23:17:16 +00001564
wdenk27b207f2003-07-24 23:38:38 +00001565TQM8255_AA_config \
1566TQM8260_AA_config \
1567TQM8260_AB_config \
1568TQM8260_AC_config \
1569TQM8260_AD_config \
1570TQM8260_AE_config \
1571TQM8260_AF_config \
1572TQM8260_AG_config \
1573TQM8260_AH_config \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001574TQM8260_AI_config \
wdenk27b207f2003-07-24 23:38:38 +00001575TQM8265_AA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001576 @mkdir -p $(obj)include
wdenk27b207f2003-07-24 23:38:38 +00001577 @case "$@" in \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001578 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
1579 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
1580 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1581 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1582 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1583 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
1584 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1585 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
1586 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
1587 TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1588 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
wdenk27b207f2003-07-24 23:38:38 +00001589 esac; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001590 >$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001591 if [ "$${CTYPE}" != "MPC8260" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001592 echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001593 fi; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001594 echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001595 echo "... with $${CFREQ}MHz system clock" ; \
1596 if [ "$${CACHE}" == "yes" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001597 echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001598 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001599 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001600 echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001601 echo "... without L2 Cache support" ; \
wdenk27b207f2003-07-24 23:38:38 +00001602 fi; \
1603 if [ "$${BMODE}" == "60x" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001604 echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001605 echo "... with 60x Bus Mode" ; \
1606 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001607 echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001608 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001609 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001610 @$(MKCONFIG) -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +00001611
Heiko Schocherfa230442006-12-21 17:17:02 +01001612TQM8272_config: unconfig
1613 @$(MKCONFIG) -a TQM8272 ppc mpc8260 tqm8272
1614
wdenkba91e262005-05-30 23:55:42 +00001615VoVPN-GW_66MHz_config \
1616VoVPN-GW_100MHz_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001617 @mkdir -p $(obj)include
1618 @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h
1619 @$(MKCONFIG) -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
wdenkba91e262005-05-30 23:55:42 +00001620
wdenk54387ac2003-10-08 22:45:44 +00001621ZPC1900_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001622 @$(MKCONFIG) $(@:_config=) ppc mpc8260 zpc1900
wdenk7aa78612003-05-03 15:50:43 +00001623
wdenk4e5ca3e2003-12-08 01:34:36 +00001624#########################################################################
1625## Coldfire
1626#########################################################################
1627
Wolfgang Denk74812662005-12-12 16:06:05 +01001628cobra5272_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001629 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272
Wolfgang Denk74812662005-12-12 16:06:05 +01001630
Wolfgang Denk4176c792006-06-10 19:27:47 +02001631EB+MCF-EV123_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001632 @mkdir -p $(obj)include
1633 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1634 @ >$(obj)include/config.h
1635 @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1636 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001637
1638EB+MCF-EV123_internal_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001639 @mkdir -p $(obj)include
1640 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1641 @ >$(obj)include/config.h
1642 @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1643 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001644
Bartlomiej Siekadaa6e412006-12-20 00:27:32 +01001645idmr_config : unconfig
1646 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 idmr
1647
Wolfgang Denk4176c792006-06-10 19:27:47 +02001648M5271EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001649 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb
Wolfgang Denk4176c792006-06-10 19:27:47 +02001650
wdenk4e5ca3e2003-12-08 01:34:36 +00001651M5272C3_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001652 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3
wdenk4e5ca3e2003-12-08 01:34:36 +00001653
1654M5282EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001655 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb
wdenk4e5ca3e2003-12-08 01:34:36 +00001656
stroesec419d1d2004-12-16 18:44:40 +00001657TASREG_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001658 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd
stroesec419d1d2004-12-16 18:44:40 +00001659
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001660r5200_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001661 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 r5200
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001662
wdenk7ebf7442002-11-02 23:17:16 +00001663#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -05001664## MPC83xx Systems
1665#########################################################################
1666
Kim Phillips5c5d3242007-04-25 12:34:38 -05001667MPC8313ERDB_33_config \
1668MPC8313ERDB_66_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001669 @mkdir -p $(obj)include
1670 @echo "" >$(obj)include/config.h ; \
Kim Phillips5c5d3242007-04-25 12:34:38 -05001671 if [ "$(findstring _33_,$@)" ] ; then \
david.saada5d497e62007-06-18 09:09:53 -07001672 echo -n "...33M ..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001673 echo "#define CFG_33MHZ" >>$(obj)include/config.h ; \
Kim Phillips5c5d3242007-04-25 12:34:38 -05001674 fi ; \
1675 if [ "$(findstring _66_,$@)" ] ; then \
david.saada5d497e62007-06-18 09:09:53 -07001676 echo -n "...66M..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001677 echo "#define CFG_66MHZ" >>$(obj)include/config.h ; \
Kim Phillips5c5d3242007-04-25 12:34:38 -05001678 fi ;
1679 @$(MKCONFIG) -a MPC8313ERDB ppc mpc83xx mpc8313erdb
1680
Kim Phillips1c274c42007-07-25 19:25:33 -05001681MPC8323ERDB_config: unconfig
1682 @$(MKCONFIG) -a MPC8323ERDB ppc mpc83xx mpc8323erdb freescale
1683
Kim Phillips4decd842007-01-24 17:18:37 -06001684MPC832XEMDS_config \
1685MPC832XEMDS_HOST_33_config \
1686MPC832XEMDS_HOST_66_config \
1687MPC832XEMDS_SLAVE_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001688 @mkdir -p $(obj)include
1689 @echo "" >$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001690 if [ "$(findstring _HOST_,$@)" ] ; then \
david.saada5d497e62007-06-18 09:09:53 -07001691 echo -n "... PCI HOST " ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001692 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001693 fi ; \
1694 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1695 echo "...PCI SLAVE 66M" ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001696 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
1697 echo "#define CONFIG_PCISLAVE" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001698 fi ; \
1699 if [ "$(findstring _33_,$@)" ] ; then \
david.saada5d497e62007-06-18 09:09:53 -07001700 echo -n "...33M ..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001701 echo "#define PCI_33M" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001702 fi ; \
1703 if [ "$(findstring _66_,$@)" ] ; then \
david.saada5d497e62007-06-18 09:09:53 -07001704 echo -n "...66M..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001705 echo "#define PCI_66M" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001706 fi ;
1707 @$(MKCONFIG) -a MPC832XEMDS ppc mpc83xx mpc832xemds
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001708
Marian Balakowicz991425f2006-03-14 16:24:38 +01001709MPC8349EMDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001710 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349emds
Marian Balakowicz991425f2006-03-14 16:24:38 +01001711
Timur Tabi7a78f142007-01-31 15:54:29 -06001712MPC8349ITX_config \
1713MPC8349ITX_LOWBOOT_config \
1714MPC8349ITXGP_config: unconfig
1715 @mkdir -p $(obj)include
1716 @mkdir -p $(obj)board/mpc8349itx
1717 @echo "#define CONFIG_$(subst _LOWBOOT,,$(@:_config=))" >> $(obj)include/config.h
1718 @if [ "$(findstring GP,$@)" ] ; then \
1719 echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \
1720 fi
1721 @if [ "$(findstring LOWBOOT,$@)" ] ; then \
1722 echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \
1723 fi
1724 @$(MKCONFIG) -a -n $(@:_config=) MPC8349ITX ppc mpc83xx mpc8349itx
Kim Phillips4decd842007-01-24 17:18:37 -06001725
Dave Liu5f820432006-11-03 19:33:44 -06001726MPC8360EMDS_config \
1727MPC8360EMDS_HOST_33_config \
1728MPC8360EMDS_HOST_66_config \
1729MPC8360EMDS_SLAVE_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001730 @mkdir -p $(obj)include
1731 @echo "" >$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001732 if [ "$(findstring _HOST_,$@)" ] ; then \
david.saada5d497e62007-06-18 09:09:53 -07001733 echo -n "... PCI HOST " ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001734 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001735 fi ; \
1736 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1737 echo "...PCI SLAVE 66M" ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001738 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
1739 echo "#define CONFIG_PCISLAVE" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001740 fi ; \
1741 if [ "$(findstring _33_,$@)" ] ; then \
david.saada5d497e62007-06-18 09:09:53 -07001742 echo -n "...33M ..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001743 echo "#define PCI_33M" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001744 fi ; \
1745 if [ "$(findstring _66_,$@)" ] ; then \
david.saada5d497e62007-06-18 09:09:53 -07001746 echo -n "...66M..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001747 echo "#define PCI_66M" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001748 fi ;
1749 @$(MKCONFIG) -a MPC8360EMDS ppc mpc83xx mpc8360emds
1750
Paul Gortmaker91e25762007-01-16 11:38:14 -05001751sbc8349_config: unconfig
1752 @$(MKCONFIG) $(@:_config=) ppc mpc83xx sbc8349
1753
Kim Phillips4decd842007-01-24 17:18:37 -06001754TQM834x_config: unconfig
1755 @$(MKCONFIG) $(@:_config=) ppc mpc83xx tqm834x
1756
Timur Tabi2ad6b512006-10-31 18:44:42 -06001757
Eran Libertyf046ccd2005-07-28 10:08:46 -05001758#########################################################################
wdenk42d1f032003-10-15 23:53:47 +00001759## MPC85xx Systems
1760#########################################################################
1761
wdenk0ac6f8b2004-07-09 23:27:13 +00001762MPC8540ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001763 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8540ads
wdenk42d1f032003-10-15 23:53:47 +00001764
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001765MPC8540EVAL_config \
1766MPC8540EVAL_33_config \
1767MPC8540EVAL_66_config \
1768MPC8540EVAL_33_slave_config \
1769MPC8540EVAL_66_slave_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001770 @mkdir -p $(obj)include
1771 @echo "" >$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001772 if [ "$(findstring _33_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001773 echo "... 33 MHz PCI" ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001774 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001775 echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001776 echo "... 66 MHz PCI" ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001777 fi ; \
1778 if [ "$(findstring _slave_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001779 echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001780 echo " slave" ; \
1781 else \
1782 echo " host" ; \
1783 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001784 @$(MKCONFIG) -a MPC8540EVAL ppc mpc85xx mpc8540eval
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001785
wdenk0ac6f8b2004-07-09 23:27:13 +00001786MPC8560ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001787 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8560ads
wdenk42d1f032003-10-15 23:53:47 +00001788
wdenk03f5c552004-10-10 21:21:55 +00001789MPC8541CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001790 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8541cds cds
wdenk03f5c552004-10-10 21:21:55 +00001791
Andy Fleming81f481c2007-04-23 02:24:28 -05001792MPC8544DS_config: unconfig
1793 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8544ds freescale
1794
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001795MPC8548CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001796 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8548cds cds
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001797
wdenk03f5c552004-10-10 21:21:55 +00001798MPC8555CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001799 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8555cds cds
wdenk7abf0c52004-04-18 21:45:42 +00001800
Andy Fleming67431052007-04-23 02:54:25 -05001801MPC8568MDS_config: unconfig
1802 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8568mds
1803
wdenk384cc682005-04-03 22:35:21 +00001804PM854_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001805 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm854
wdenk384cc682005-04-03 22:35:21 +00001806
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001807PM856_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001808 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm856
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001809
wdenkc15f3122004-10-10 22:44:24 +00001810sbc8540_config \
1811sbc8540_33_config \
1812sbc8540_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001813 @mkdir -p $(obj)include
wdenkc15f3122004-10-10 22:44:24 +00001814 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001815 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001816 echo "... 66 MHz PCI" ; \
1817 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001818 >$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001819 echo "... 33 MHz PCI" ; \
1820 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001821 @$(MKCONFIG) -a SBC8540 ppc mpc85xx sbc8560
wdenkc15f3122004-10-10 22:44:24 +00001822
wdenk466b7412004-07-10 22:35:59 +00001823sbc8560_config \
1824sbc8560_33_config \
1825sbc8560_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001826 @mkdir -p $(obj)include
wdenk8b07a112004-07-10 21:45:47 +00001827 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001828 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001829 echo "... 66 MHz PCI" ; \
1830 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001831 >$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001832 echo "... 33 MHz PCI" ; \
1833 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001834 @$(MKCONFIG) -a sbc8560 ppc mpc85xx sbc8560
wdenk8b07a112004-07-10 21:45:47 +00001835
wdenk03f5c552004-10-10 21:21:55 +00001836stxgp3_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001837 @$(MKCONFIG) $(@:_config=) ppc mpc85xx stxgp3
wdenk03f5c552004-10-10 21:21:55 +00001838
Wolfgang Denkee152982007-05-31 17:20:09 +02001839stxssa_config \
1840stxssa_4M_config: unconfig
1841 @mkdir -p $(obj)include
1842 @if [ "$(findstring _4M_,$@)" ] ; then \
1843 echo "#define CONFIG_STXSSA_4M" >>$(obj)include/config.h ; \
1844 echo "... with 4 MiB flash memory" ; \
1845 else \
1846 >$(obj)include/config.h ; \
1847 fi
1848 @$(MKCONFIG) -a stxssa ppc mpc85xx stxssa
Dan Malek35171dc2007-01-05 09:15:34 +01001849
Stefan Roesed96f41e2005-11-30 13:06:40 +01001850TQM8540_config \
1851TQM8541_config \
1852TQM8555_config \
1853TQM8560_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001854 @mkdir -p $(obj)include
Wolfgang Denka889bd22005-12-06 15:02:31 +01001855 @CTYPE=$(subst TQM,,$(@:_config=)); \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001856 >$(obj)include/config.h ; \
Stefan Roesed96f41e2005-11-30 13:06:40 +01001857 echo "... TQM"$${CTYPE}; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001858 echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \
1859 echo "#define CONFIG_TQM$${CTYPE}">>$(obj)include/config.h; \
1860 echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \
1861 echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>$(obj)include/config.h; \
1862 echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>$(obj)include/config.h
1863 @$(MKCONFIG) -a TQM85xx ppc mpc85xx tqm85xx
wdenkf5c5ef42005-04-05 16:26:47 +00001864
wdenk42d1f032003-10-15 23:53:47 +00001865#########################################################################
Jon Loeligerdebb7352006-04-26 17:58:56 -05001866## MPC86xx Systems
1867#########################################################################
1868
1869MPC8641HPCN_config: unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -06001870 @$(MKCONFIG) $(@:_config=) ppc mpc86xx mpc8641hpcn
Jon Loeligerdebb7352006-04-26 17:58:56 -05001871
Joe Hammanc646bba2007-08-09 15:11:03 -05001872sbc8641d_config: unconfig
1873 @./mkconfig $(@:_config=) ppc mpc86xx sbc8641d
Jon Loeligerdebb7352006-04-26 17:58:56 -05001874
1875#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001876## 74xx/7xx Systems
1877#########################################################################
1878
wdenkc7de8292002-11-19 11:04:11 +00001879AmigaOneG3SE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001880 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
wdenkc7de8292002-11-19 11:04:11 +00001881
wdenk15647dc2003-10-09 19:00:25 +00001882BAB7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001883 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx bab7xx eltec
wdenk15647dc2003-10-09 19:00:25 +00001884
stroesec419d1d2004-12-16 18:44:40 +00001885CPCI750_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001886 @$(MKCONFIG) CPCI750 ppc 74xx_7xx cpci750 esd
stroesec419d1d2004-12-16 18:44:40 +00001887
wdenk3a473b22004-01-03 00:43:19 +00001888DB64360_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001889 @$(MKCONFIG) DB64360 ppc 74xx_7xx db64360 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001890
1891DB64460_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001892 @$(MKCONFIG) DB64460 ppc 74xx_7xx db64460 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001893
wdenk15647dc2003-10-09 19:00:25 +00001894ELPPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001895 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx elppc eltec
wdenk15647dc2003-10-09 19:00:25 +00001896
wdenk7ebf7442002-11-02 23:17:16 +00001897EVB64260_config \
1898EVB64260_750CX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001899 @$(MKCONFIG) EVB64260 ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001900
roy zang4c527832006-11-02 18:49:51 +08001901mpc7448hpc2_config: unconfig
roy zangee311212006-12-01 11:47:36 +08001902 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx mpc7448hpc2
roy zang4c527832006-11-02 18:49:51 +08001903
wdenk15647dc2003-10-09 19:00:25 +00001904P3G4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001905 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001906
Stefan Roese1eac2a72006-11-29 15:42:37 +01001907p3m750_config \
1908p3m7448_config: unconfig
1909 @mkdir -p $(obj)include
1910 @if [ "$(findstring 750_,$@)" ] ; then \
1911 echo "#define CONFIG_P3M750" >>$(obj)include/config.h ; \
1912 else \
1913 echo "#define CONFIG_P3M7448" >>$(obj)include/config.h ; \
1914 fi
1915 @$(MKCONFIG) -a p3mx ppc 74xx_7xx p3mx prodrive
1916
wdenk7ebf7442002-11-02 23:17:16 +00001917PCIPPC2_config \
1918PCIPPC6_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001919 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx pcippc2
wdenk7ebf7442002-11-02 23:17:16 +00001920
wdenk15647dc2003-10-09 19:00:25 +00001921ZUMA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001922 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk12f34242003-09-02 22:48:03 +00001923
Heiko Schocherf5e0d032006-06-19 11:02:41 +02001924ppmc7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001925 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx ppmc7xx
Wolfgang Denkb87dfd22006-07-19 13:50:38 +02001926
wdenk7ebf7442002-11-02 23:17:16 +00001927#========================================================================
1928# ARM
1929#========================================================================
1930#########################################################################
1931## StrongARM Systems
1932#########################################################################
1933
wdenkea66bc82004-04-15 23:23:39 +00001934assabet_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001935 @$(MKCONFIG) $(@:_config=) arm sa1100 assabet
wdenkea66bc82004-04-15 23:23:39 +00001936
wdenk7ebf7442002-11-02 23:17:16 +00001937dnp1110_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001938 @$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110
wdenk7ebf7442002-11-02 23:17:16 +00001939
wdenk855a4962004-03-14 18:23:55 +00001940gcplus_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001941 @$(MKCONFIG) $(@:_config=) arm sa1100 gcplus
wdenk855a4962004-03-14 18:23:55 +00001942
1943lart_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001944 @$(MKCONFIG) $(@:_config=) arm sa1100 lart
wdenk855a4962004-03-14 18:23:55 +00001945
wdenk7ebf7442002-11-02 23:17:16 +00001946shannon_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001947 @$(MKCONFIG) $(@:_config=) arm sa1100 shannon
wdenk7ebf7442002-11-02 23:17:16 +00001948
1949#########################################################################
wdenk2e5983d2003-07-15 20:04:06 +00001950## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00001951#########################################################################
1952
wdenkb0639ca2003-09-17 22:48:07 +00001953xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk43d96162003-03-06 00:02:04 +00001954
wdenk3ff02c22004-06-09 15:25:53 +00001955xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
wdenk63e73c92004-02-23 22:22:28 +00001956
wdenka56bd922004-06-06 23:13:55 +00001957xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1958
wdenka85f9f22005-04-06 13:52:31 +00001959at91rm9200dk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001960 @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001961
1962cmc_pu2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001963 @$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001964
Wolfgang Denk645da512005-10-05 02:00:09 +02001965csb637_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001966 @$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200
Wolfgang Denk645da512005-10-05 02:00:09 +02001967
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001968mp2usb_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001969 @$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001970
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001971
Wolfgang Denk74f43042005-09-25 01:48:28 +02001972########################################################################
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001973## ARM Integrator boards - see doc/README-integrator for more info.
1974integratorap_config \
1975ap_config \
1976ap966_config \
1977ap922_config \
1978ap922_XA10_config \
1979ap7_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01001980ap720t_config \
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001981ap920t_config \
1982ap926ejs_config \
1983ap946es_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001984 @board/integratorap/split_by_variant.sh $@
wdenk3d3befa2004-03-14 15:06:13 +00001985
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001986integratorcp_config \
1987cp_config \
1988cp920t_config \
1989cp926ejs_config \
1990cp946es_config \
1991cp1136_config \
1992cp966_config \
1993cp922_config \
1994cp922_XA10_config \
1995cp1026_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001996 @board/integratorcp/split_by_variant.sh $@
wdenk25d67122004-12-10 11:40:40 +00001997
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001998kb9202_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001999 @$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200
Wolfgang Denk99b0d282005-10-05 00:19:34 +02002000
wdenkf832d8a2004-06-10 21:55:33 +00002001lpd7a400_config \
2002lpd7a404_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002003 @$(MKCONFIG) $(@:_config=) arm lh7a40x lpd7a40x
wdenk3d3befa2004-03-14 15:06:13 +00002004
wdenk281e00a2004-08-01 22:48:16 +00002005mx1ads_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002006 @$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002007
2008mx1fs2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002009 @$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002010
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002011netstar_32_config \
2012netstar_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002013 @mkdir -p $(obj)include
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002014 @if [ "$(findstring _32_,$@)" ] ; then \
2015 echo "... 32MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002016 echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002017 else \
2018 echo "... 64MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002019 echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002020 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02002021 @$(MKCONFIG) -a netstar arm arm925t netstar
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002022
wdenk2e5983d2003-07-15 20:04:06 +00002023omap1510inn_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002024 @$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn
wdenk2e5983d2003-07-15 20:04:06 +00002025
wdenk1eaeb582004-06-08 00:22:43 +00002026omap5912osk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002027 @$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk NULL omap
wdenk1eaeb582004-06-08 00:22:43 +00002028
Sergey Kubushync74b2102007-08-10 20:26:18 +02002029davinci_dvevm_config : unconfig
2030 @$(MKCONFIG) $(@:_config=) arm arm926ejs dv-evm davinci davinci
2031
2032davinci_schmoogie_config : unconfig
2033 @$(MKCONFIG) $(@:_config=) arm arm926ejs schmoogie davinci davinci
2034
2035davinci_sonata_config : unconfig
2036 @$(MKCONFIG) $(@:_config=) arm arm926ejs sonata davinci davinci
2037
wdenk63e73c92004-02-23 22:22:28 +00002038omap1610inn_config \
2039omap1610inn_cs0boot_config \
2040omap1610inn_cs3boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00002041omap1610inn_cs_autoboot_config \
wdenk63e73c92004-02-23 22:22:28 +00002042omap1610h2_config \
2043omap1610h2_cs0boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00002044omap1610h2_cs3boot_config \
2045omap1610h2_cs_autoboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002046 @mkdir -p $(obj)include
wdenk63e73c92004-02-23 22:22:28 +00002047 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002048 echo "#define CONFIG_CS0_BOOT" >> .$(obj)include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00002049 echo "... configured for CS0 boot"; \
wdenk3ff02c22004-06-09 15:25:53 +00002050 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002051 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)include/config.h ; \
wdenk3ff02c22004-06-09 15:25:53 +00002052 echo "... configured for CS_AUTO boot"; \
wdenk63e73c92004-02-23 22:22:28 +00002053 else \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002054 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00002055 echo "... configured for CS3 boot"; \
wdenk63e73c92004-02-23 22:22:28 +00002056 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02002057 @$(MKCONFIG) -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap
wdenk6f213472003-08-29 22:00:43 +00002058
wdenka56bd922004-06-06 23:13:55 +00002059omap730p2_config \
2060omap730p2_cs0boot_config \
2061omap730p2_cs3boot_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002062 @mkdir -p $(obj)include
wdenka56bd922004-06-06 23:13:55 +00002063 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002064 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00002065 echo "... configured for CS0 boot"; \
2066 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002067 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00002068 echo "... configured for CS3 boot"; \
2069 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02002070 @$(MKCONFIG) -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap
wdenka56bd922004-06-06 23:13:55 +00002071
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02002072sbc2410x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002073 @$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02002074
wdenk281e00a2004-08-01 22:48:16 +00002075scb9328_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002076 @$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002077
wdenk7ebf7442002-11-02 23:17:16 +00002078smdk2400_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002079 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002080
2081smdk2410_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002082 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002083
wdenk2d24a3a2004-06-09 21:50:45 +00002084SX1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002085 @$(MKCONFIG) $(@:_config=) arm arm925t sx1
wdenk2d24a3a2004-06-09 21:50:45 +00002086
wdenkb2001f22003-12-20 22:45:10 +00002087# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk43d96162003-03-06 00:02:04 +00002088trab_config \
wdenkb0639ca2003-09-17 22:48:07 +00002089trab_bigram_config \
2090trab_bigflash_config \
wdenkf54ebdf2003-09-17 15:10:32 +00002091trab_old_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002092 @mkdir -p $(obj)include
2093 @mkdir -p $(obj)board/trab
2094 @ >$(obj)include/config.h
wdenkb0639ca2003-09-17 22:48:07 +00002095 @[ -z "$(findstring _bigram,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002096 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2097 echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002098 echo "... with 8 MB Flash, 32 MB RAM" ; \
2099 }
2100 @[ -z "$(findstring _bigflash,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002101 { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \
2102 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002103 echo "... with 16 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002104 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenkb0639ca2003-09-17 22:48:07 +00002105 }
wdenkf54ebdf2003-09-17 15:10:32 +00002106 @[ -z "$(findstring _old,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002107 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2108 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +00002109 echo "... with 8 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002110 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenk43d96162003-03-06 00:02:04 +00002111 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002112 @$(MKCONFIG) -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002113
wdenk1cb8e982003-03-06 21:55:29 +00002114VCMA9_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002115 @$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0
wdenk1cb8e982003-03-06 21:55:29 +00002116
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002117#========================================================================
2118# ARM supplied Versatile development boards
2119#========================================================================
2120versatile_config \
2121versatileab_config \
2122versatilepb_config : unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02002123 @board/versatile/split_by_variant.sh $@
wdenk074cff02004-02-24 00:16:43 +00002124
wdenk3c2b3d42005-04-05 23:32:21 +00002125voiceblue_smallflash_config \
2126voiceblue_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002127 @mkdir -p $(obj)include
2128 @mkdir -p $(obj)board/voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002129 @if [ "$(findstring _smallflash_,$@)" ] ; then \
2130 echo "... boot from lower flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002131 echo "#define VOICEBLUE_SMALL_FLASH" >>$(obj)include/config.h ; \
2132 echo "VOICEBLUE_SMALL_FLASH=y" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00002133 else \
2134 echo "... boot from upper flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002135 >$(obj)include/config.h ; \
2136 echo "VOICEBLUE_SMALL_FLASH=n" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00002137 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02002138 @$(MKCONFIG) -a voiceblue arm arm925t voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002139
wdenk16b013e2005-05-19 22:46:33 +00002140cm4008_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002141 @$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002142
2143cm41xx_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002144 @$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002145
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002146gth2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002147 @mkdir -p $(obj)include
2148 @ >$(obj)include/config.h
2149 @echo "#define CONFIG_GTH2 1" >>$(obj)include/config.h
2150 @$(MKCONFIG) -a gth2 mips mips gth2
Wolfgang Denk0c32d962006-06-16 17:32:31 +02002151
wdenk074cff02004-02-24 00:16:43 +00002152#########################################################################
2153## S3C44B0 Systems
2154#########################################################################
2155
2156B2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002157 @$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave
wdenk074cff02004-02-24 00:16:43 +00002158
wdenk7ebf7442002-11-02 23:17:16 +00002159#########################################################################
2160## ARM720T Systems
2161#########################################################################
2162
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002163armadillo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002164 @$(MKCONFIG) $(@:_config=) arm arm720t armadillo
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002165
wdenk7ebf7442002-11-02 23:17:16 +00002166ep7312_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002167 @$(MKCONFIG) $(@:_config=) arm arm720t ep7312
wdenk7ebf7442002-11-02 23:17:16 +00002168
wdenk2d24a3a2004-06-09 21:50:45 +00002169impa7_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002170 @$(MKCONFIG) $(@:_config=) arm arm720t impa7
wdenk2d24a3a2004-06-09 21:50:45 +00002171
wdenk2d1a5372004-02-23 19:30:57 +00002172modnet50_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002173 @$(MKCONFIG) $(@:_config=) arm arm720t modnet50
wdenk2d1a5372004-02-23 19:30:57 +00002174
wdenk39539882004-07-01 16:30:44 +00002175evb4510_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002176 @$(MKCONFIG) $(@:_config=) arm arm720t evb4510
wdenk39539882004-07-01 16:30:44 +00002177
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002178lpc2292sodimm_config: unconfig
Peter Pearseb0d8f5b2007-05-09 11:37:56 +01002179 @$(MKCONFIG) $(@:_config=) arm arm720t lpc2292sodimm NULL lpc2292
2180
2181SMN42_config : unconfig
2182 @$(MKCONFIG) $(@:_config=) arm arm720t SMN42 siemens lpc2292
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002183
wdenk7ebf7442002-11-02 23:17:16 +00002184#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002185## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00002186#########################################################################
2187
wdenk20787e22005-04-06 00:04:16 +00002188adsvix_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002189 @$(MKCONFIG) $(@:_config=) arm pxa adsvix
wdenk20787e22005-04-06 00:04:16 +00002190
wdenkfabd46a2004-07-10 23:11:10 +00002191cerf250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002192 @$(MKCONFIG) $(@:_config=) arm pxa cerf250
wdenkfabd46a2004-07-10 23:11:10 +00002193
wdenk7ebf7442002-11-02 23:17:16 +00002194cradle_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002195 @$(MKCONFIG) $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00002196
2197csb226_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002198 @$(MKCONFIG) $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00002199
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002200delta_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002201 @$(MKCONFIG) $(@:_config=) arm pxa delta
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002202
wdenk43d96162003-03-06 00:02:04 +00002203innokom_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002204 @$(MKCONFIG) $(@:_config=) arm pxa innokom
wdenk43d96162003-03-06 00:02:04 +00002205
wdenk2d5b5612003-10-14 19:43:55 +00002206ixdp425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002207 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
wdenk2d5b5612003-10-14 19:43:55 +00002208
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002209ixdpg425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002210 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002211
wdenk43d96162003-03-06 00:02:04 +00002212lubbock_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002213 @$(MKCONFIG) $(@:_config=) arm pxa lubbock
wdenk43d96162003-03-06 00:02:04 +00002214
Heiko Schocher5720df72006-05-02 07:51:46 +02002215pleb2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002216 @$(MKCONFIG) $(@:_config=) arm pxa pleb2
Heiko Schocher5720df72006-05-02 07:51:46 +02002217
wdenk52f52c12003-06-19 23:04:19 +00002218logodl_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002219 @$(MKCONFIG) $(@:_config=) arm pxa logodl
wdenk52f52c12003-06-19 23:04:19 +00002220
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002221pdnb3_config \
2222scpu_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002223 @mkdir -p $(obj)include
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002224 @if [ "$(findstring scpu_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002225 echo "#define CONFIG_SCPU" >>$(obj)include/config.h ; \
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002226 echo "... on SCPU board variant" ; \
2227 else \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002228 >$(obj)include/config.h ; \
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002229 fi
2230 @$(MKCONFIG) -a pdnb3 arm ixp pdnb3 prodrive
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002231
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002232pxa255_idp_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002233 @$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002234
wdenk3e386912003-04-05 00:53:31 +00002235wepep250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002236 @$(MKCONFIG) $(@:_config=) arm pxa wepep250
wdenk3e386912003-04-05 00:53:31 +00002237
wdenk4ec3a7f2004-09-28 16:44:41 +00002238xaeniax_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002239 @$(MKCONFIG) $(@:_config=) arm pxa xaeniax
wdenk4ec3a7f2004-09-28 16:44:41 +00002240
wdenkefa329c2004-03-23 20:18:25 +00002241xm250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002242 @$(MKCONFIG) $(@:_config=) arm pxa xm250
wdenkefa329c2004-03-23 20:18:25 +00002243
wdenkca0e7742004-06-09 15:37:23 +00002244xsengine_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002245 @$(MKCONFIG) $(@:_config=) arm pxa xsengine
wdenkca0e7742004-06-09 15:37:23 +00002246
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002247zylonite_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002248 @$(MKCONFIG) $(@:_config=) arm pxa zylonite
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002249
wdenk8ed96042005-01-09 23:16:25 +00002250#########################################################################
2251## ARM1136 Systems
2252#########################################################################
2253omap2420h4_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002254 @$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4
wdenk8ed96042005-01-09 23:16:25 +00002255
wdenk2262cfe2002-11-18 00:14:45 +00002256#========================================================================
2257# i386
2258#========================================================================
2259#########################################################################
wdenk1cb8e982003-03-06 21:55:29 +00002260## AMD SC520 CDP
wdenk2262cfe2002-11-18 00:14:45 +00002261#########################################################################
2262sc520_cdp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002263 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp
wdenk2262cfe2002-11-18 00:14:45 +00002264
wdenk7a8e9bed2003-05-31 18:35:21 +00002265sc520_spunk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002266 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002267
2268sc520_spunk_rel_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002269 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002270
wdenk43d96162003-03-06 00:02:04 +00002271#========================================================================
2272# MIPS
2273#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00002274#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002275## MIPS32 4Kc
2276#########################################################################
2277
wdenke0ac62d2003-08-17 18:55:18 +00002278xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
2279
2280incaip_100MHz_config \
2281incaip_133MHz_config \
2282incaip_150MHz_config \
2283incaip_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002284 @mkdir -p $(obj)include
2285 @ >$(obj)include/config.h
wdenke0ac62d2003-08-17 18:55:18 +00002286 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002287 { echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002288 echo "... with 100MHz system clock" ; \
2289 }
2290 @[ -z "$(findstring _133MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002291 { echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002292 echo "... with 133MHz system clock" ; \
2293 }
2294 @[ -z "$(findstring _150MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002295 { echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002296 echo "... with 150MHz system clock" ; \
2297 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002298 @$(MKCONFIG) -a $(call xtract_incaip,$@) mips mips incaip
wdenke0ac62d2003-08-17 18:55:18 +00002299
wdenkf4863a72004-02-07 01:27:10 +00002300tb0229_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002301 @$(MKCONFIG) $(@:_config=) mips mips tb0229
wdenkf4863a72004-02-07 01:27:10 +00002302
wdenke0ac62d2003-08-17 18:55:18 +00002303#########################################################################
wdenk69459792004-05-29 16:53:29 +00002304## MIPS32 AU1X00
2305#########################################################################
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002306dbau1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002307 @mkdir -p $(obj)include
2308 @ >$(obj)include/config.h
2309 @echo "#define CONFIG_DBAU1000 1" >>$(obj)include/config.h
2310 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002311
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002312dbau1100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002313 @mkdir -p $(obj)include
2314 @ >$(obj)include/config.h
2315 @echo "#define CONFIG_DBAU1100 1" >>$(obj)include/config.h
2316 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002317
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002318dbau1500_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002319 @mkdir -p $(obj)include
2320 @ >$(obj)include/config.h
2321 @echo "#define CONFIG_DBAU1500 1" >>$(obj)include/config.h
2322 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002323
wdenkff36fd82005-01-09 22:28:56 +00002324dbau1550_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002325 @mkdir -p $(obj)include
2326 @ >$(obj)include/config.h
2327 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2328 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002329
2330dbau1550_el_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002331 @mkdir -p $(obj)include
2332 @ >$(obj)include/config.h
2333 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2334 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002335
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002336pb1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002337 @mkdir -p $(obj)include
2338 @ >$(obj)include/config.h
2339 @echo "#define CONFIG_PB1000 1" >>$(obj)include/config.h
2340 @$(MKCONFIG) -a pb1x00 mips mips pb1x00
Wolfgang Denk265817c2005-09-25 00:53:22 +02002341
wdenk69459792004-05-29 16:53:29 +00002342#########################################################################
wdenke0ac62d2003-08-17 18:55:18 +00002343## MIPS64 5Kc
2344#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002345
wdenk3e386912003-04-05 00:53:31 +00002346purple_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002347 @$(MKCONFIG) $(@:_config=) mips mips purple
wdenk43d96162003-03-06 00:02:04 +00002348
wdenk4a551702003-10-08 23:26:14 +00002349#========================================================================
2350# Nios
2351#========================================================================
2352#########################################################################
2353## Nios32
2354#########################################################################
2355
wdenkc935d3b2004-01-03 19:43:48 +00002356DK1C20_safe_32_config \
2357DK1C20_standard_32_config \
wdenk4a551702003-10-08 23:26:14 +00002358DK1C20_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002359 @mkdir -p $(obj)include
2360 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002361 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002362 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002363 echo "... NIOS 'safe_32' configuration" ; \
2364 }
2365 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002366 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002367 echo "... NIOS 'standard_32' configuration" ; \
2368 }
2369 @[ -z "$(findstring DK1C20_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002370 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002371 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2372 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002373 @$(MKCONFIG) -a DK1C20 nios nios dk1c20 altera
wdenkc935d3b2004-01-03 19:43:48 +00002374
2375DK1S10_safe_32_config \
2376DK1S10_standard_32_config \
wdenkec4c5442004-02-09 23:12:24 +00002377DK1S10_mtx_ldk_20_config \
wdenkc935d3b2004-01-03 19:43:48 +00002378DK1S10_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002379 @mkdir -p $(obj)include
2380 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002381 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002382 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002383 echo "... NIOS 'safe_32' configuration" ; \
2384 }
2385 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002386 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002387 echo "... NIOS 'standard_32' configuration" ; \
2388 }
wdenkec4c5442004-02-09 23:12:24 +00002389 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002390 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>$(obj)include/config.h ; \
wdenkec4c5442004-02-09 23:12:24 +00002391 echo "... NIOS 'mtx_ldk_20' configuration" ; \
2392 }
wdenkc935d3b2004-01-03 19:43:48 +00002393 @[ -z "$(findstring DK1S10_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002394 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002395 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2396 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002397 @$(MKCONFIG) -a DK1S10 nios nios dk1s10 altera
wdenk4a551702003-10-08 23:26:14 +00002398
wdenkaaf224a2004-03-14 15:20:55 +00002399ADNPESC1_DNPEVA2_base_32_config \
2400ADNPESC1_base_32_config \
2401ADNPESC1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002402 @mkdir -p $(obj)include
2403 @ >$(obj)include/config.h
wdenkaaf224a2004-03-14 15:20:55 +00002404 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002405 { echo "#define CONFIG_DNPEVA2 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002406 echo "... DNP/EVA2 configuration" ; \
2407 }
wdenkaaf224a2004-03-14 15:20:55 +00002408 @[ -z "$(findstring _base_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002409 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002410 echo "... NIOS 'base_32' configuration" ; \
2411 }
wdenkaaf224a2004-03-14 15:20:55 +00002412 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002413 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002414 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
2415 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002416 @$(MKCONFIG) -a ADNPESC1 nios nios adnpesc1 ssv
wdenkaaf224a2004-03-14 15:20:55 +00002417
wdenk5c952cf2004-10-10 21:27:30 +00002418#########################################################################
2419## Nios-II
2420#########################################################################
2421
Scott McNutt9cc83372006-06-08 13:37:39 -04002422EP1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002423 @$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002424
2425EP1S10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002426 @$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002427
2428EP1S40_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002429 @$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002430
wdenk5c952cf2004-10-10 21:27:30 +00002431PK1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002432 @$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent
wdenk5c952cf2004-10-10 21:27:30 +00002433
2434PCI5441_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002435 @$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent
wdenk4a551702003-10-08 23:26:14 +00002436
wdenk507bbe32004-04-18 21:13:41 +00002437#========================================================================
2438# MicroBlaze
2439#========================================================================
2440#########################################################################
2441## Microblaze
2442#########################################################################
2443suzaku_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002444 @mkdir -p $(obj)include
2445 @ >$(obj)include/config.h
2446 @echo "#define CONFIG_SUZAKU 1" >> $(obj)include/config.h
2447 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
wdenk507bbe32004-04-18 21:13:41 +00002448
Michal Simekcfc67112007-03-11 13:48:24 +01002449ml401_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002450 @mkdir -p $(obj)include
2451 @ >$(obj)include/config.h
2452 @echo "#define CONFIG_ML401 1" >> $(obj)include/config.h
Grant Likely90b1b2d2007-07-03 00:17:28 -06002453 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze ml401 xilinx
Michal Simekcfc67112007-03-11 13:48:24 +01002454
Michal Simek17980492007-03-26 01:39:07 +02002455xupv2p_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002456 @mkdir -p $(obj)include
2457 @ >$(obj)include/config.h
2458 @echo "#define CONFIG_XUPV2P 1" >> $(obj)include/config.h
Grant Likely90b1b2d2007-07-03 00:17:28 -06002459 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze xupv2p xilinx
Michal Simek17980492007-03-26 01:39:07 +02002460
wdenk3e386912003-04-05 00:53:31 +00002461#########################################################################
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002462## Blackfin
2463#########################################################################
Aubrey.Lief26a082007-03-09 13:40:56 +08002464bf533-ezkit_config: unconfig
2465 @$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-ezkit
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002466
Aubrey.Lief26a082007-03-09 13:40:56 +08002467bf533-stamp_config: unconfig
2468 @$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-stamp
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002469
Aubrey Li26bf7de2007-03-19 01:24:52 +08002470bf537-stamp_config: unconfig
2471 @$(MKCONFIG) $(@:_config=) blackfin bf537 bf537-stamp
2472
Aubrey Li65458982007-03-20 18:16:24 +08002473bf561-ezkit_config: unconfig
2474 @$(MKCONFIG) $(@:_config=) blackfin bf561 bf561-ezkit
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002475
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02002476#========================================================================
2477# AVR32
2478#========================================================================
2479#########################################################################
2480## AT32AP7xxx
2481#########################################################################
2482
2483atstk1002_config : unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -06002484 @$(MKCONFIG) $(@:_config=) avr32 at32ap atstk1000 atmel at32ap7000
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02002485
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002486#########################################################################
2487#########################################################################
wdenk3e386912003-04-05 00:53:31 +00002488#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00002489
2490clean:
Marian Balakowiczf9328632006-09-01 19:49:50 +02002491 find $(OBJTREE) -type f \
wdenk7ebf7442002-11-02 23:17:16 +00002492 \( -name 'core' -o -name '*.bak' -o -name '*~' \
2493 -o -name '*.o' -o -name '*.a' \) -print \
2494 | xargs rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002495 rm -f $(obj)examples/hello_world $(obj)examples/timer \
2496 $(obj)examples/eepro100_eeprom $(obj)examples/sched \
2497 $(obj)examples/mem_to_mem_idma2intr $(obj)examples/82559_eeprom \
Wolfgang Denkd214fbb2006-09-13 10:29:32 +02002498 $(obj)examples/smc91111_eeprom $(obj)examples/interrupt \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002499 $(obj)examples/test_burst
2500 rm -f $(obj)tools/img2srec $(obj)tools/mkimage $(obj)tools/envcrc \
Heiko Schocher566a4942007-06-22 19:11:54 +02002501 $(obj)tools/gen_eth_addr $(obj)tools/ubsha1
Marian Balakowiczf9328632006-09-01 19:49:50 +02002502 rm -f $(obj)tools/mpc86x_clk $(obj)tools/ncb
2503 rm -f $(obj)tools/easylogo/easylogo $(obj)tools/bmp_logo
2504 rm -f $(obj)tools/gdb/astest $(obj)tools/gdb/gdbcont $(obj)tools/gdb/gdbsend
2505 rm -f $(obj)tools/env/fw_printenv $(obj)tools/env/fw_setenv
2506 rm -f $(obj)board/cray/L1/bootscript.c $(obj)board/cray/L1/bootscript.image
2507 rm -f $(obj)board/netstar/eeprom $(obj)board/netstar/crcek $(obj)board/netstar/crcit
2508 rm -f $(obj)board/netstar/*.srec $(obj)board/netstar/*.bin
2509 rm -f $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom
2510 rm -f $(obj)board/integratorap/u-boot.lds $(obj)board/integratorcp/u-boot.lds
Aubrey Li8440bb12007-03-12 00:25:14 +08002511 rm -f $(obj)board/bf533-ezkit/u-boot.lds $(obj)board/bf533-stamp/u-boot.lds
Aubrey Li65458982007-03-20 18:16:24 +08002512 rm -f $(obj)board/bf537-stamp/u-boot.lds $(obj)board/bf561-ezkit/u-boot.lds
Marian Balakowiczf9328632006-09-01 19:49:50 +02002513 rm -f $(obj)include/bmp_logo.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002514 rm -f $(obj)nand_spl/u-boot-spl $(obj)nand_spl/u-boot-spl.map
wdenk7ebf7442002-11-02 23:17:16 +00002515
2516clobber: clean
Marian Balakowiczf9328632006-09-01 19:49:50 +02002517 find $(OBJTREE) -type f \( -name .depend \
wdenk4c0d4c32004-06-09 17:34:58 +00002518 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
2519 -print0 \
2520 | xargs -0 rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002521 rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS $(obj)include/version_autogenerated.h
2522 rm -fr $(obj)*.*~
2523 rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL)
Heiko Schocher566a4942007-06-22 19:11:54 +02002524 rm -f $(obj)tools/crc32.c $(obj)tools/environment.c $(obj)tools/env/crc32.c $(obj)tools/sha1.c
Marian Balakowiczf9328632006-09-01 19:49:50 +02002525 rm -f $(obj)tools/inca-swap-bytes $(obj)cpu/mpc824x/bedbug_603e.c
2526 rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002527 [ ! -d $(OBJTREE)/nand_spl ] || find $(obj)nand_spl -lname "*" -print | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +00002528
Marian Balakowiczf9328632006-09-01 19:49:50 +02002529ifeq ($(OBJTREE),$(SRCTREE))
wdenk7ebf7442002-11-02 23:17:16 +00002530mrproper \
2531distclean: clobber unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002532else
2533mrproper \
2534distclean: clobber unconfig
2535 rm -rf $(OBJTREE)/*
2536endif
wdenk7ebf7442002-11-02 23:17:16 +00002537
2538backup:
2539 F=`basename $(TOPDIR)` ; cd .. ; \
2540 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
2541
2542#########################################################################