blob: c127bcfb94d67a416f1d81d749c48a81f881eaf7 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
Wolfgang Denk63640012007-10-14 00:13:19 +02002# (C) Copyright 2000-2007
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 Denk754bac42007-09-10 20:42:31 +020025PATCHLEVEL = 3
Wolfgang Denk8d4f0402007-12-03 00:15:28 +010026SUBLEVEL = 1
Wolfgang Denk41be9692007-12-06 10:21:19 +010027EXTRAVERSION =
Wolfgang Denk881a87e2006-02-21 17:33:04 +010028U_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
Kim Phillips7608d752007-08-21 17:00:17 -0500193LIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \
194 "board/$(VENDOR)/common/lib$(VENDOR).a"; fi)
wdenk9fd5e312003-12-07 23:55:12 +0000195LIBS += board/$(BOARDDIR)/lib$(BOARD).a
wdenk7ebf7442002-11-02 23:17:16 +0000196LIBS += cpu/$(CPU)/lib$(CPU).a
wdenk1d9f4102004-10-09 22:21:29 +0000197ifdef SOC
198LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
199endif
Stefan Roese323bfa82007-04-23 12:00:22 +0200200ifeq ($(CPU),ixp)
201LIBS += cpu/ixp/npe/libnpe.a
202endif
wdenk7ebf7442002-11-02 23:17:16 +0000203LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk518e2e12004-03-25 14:59:05 +0000204LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
stroesec419d1d2004-12-16 18:44:40 +0000205 fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a
wdenk7ebf7442002-11-02 23:17:16 +0000206LIBS += net/libnet.a
207LIBS += disk/libdisk.a
Jason Jin0f460a12007-07-13 12:14:58 +0800208LIBS += drivers/bios_emulator/libatibiosemu.a
Jean-Christophe PLAGNIOL-VILLARD33daf5b2007-11-24 21:13:59 +0100209LIBS += drivers/block/libblock.a
Jean-Christophe PLAGNIOL-VILLARDf868cc52007-11-24 20:14:44 +0100210LIBS += drivers/hwmon/libhwmon.a
Jean-Christophe PLAGNIOL-VILLARD080c6462007-11-20 20:14:18 +0100211LIBS += drivers/i2c/libi2c.a
Jean-Christophe PLAGNIOL-VILLARD16b195c2007-11-24 19:46:45 +0100212LIBS += drivers/input/libinput.a
Jean-Christophe PLAGNIOL-VILLARD318c0b92007-11-24 21:17:55 +0100213LIBS += drivers/misc/libmisc.a
Jean-Christophe PLAGNIOL-VILLARD59829cc2007-11-24 21:26:56 +0100214LIBS += drivers/mtd/libmtd.a
215LIBS += drivers/mtd/nand/libnand.a
216LIBS += drivers/mtd/nand_legacy/libnand_legacy.a
217LIBS += drivers/mtd/onenand/libonenand.a
TsiChung Liew8e585f02007-06-18 13:50:13 -0500218LIBS += drivers/net/libnet.a
Jean-Christophe PLAGNIOL-VILLARD2439e4b2007-11-21 21:19:24 +0100219LIBS += drivers/net/sk98lin/libsk98lin.a
Jean-Christophe PLAGNIOL-VILLARD93a686e2007-11-20 20:28:09 +0100220LIBS += drivers/pci/libpci.a
Jean-Christophe PLAGNIOL-VILLARD73646212007-11-20 20:33:09 +0100221LIBS += drivers/pcmcia/libpcmcia.a
Dave Liu7737d5c2006-11-03 12:11:15 -0600222ifeq ($(CPU),mpc83xx)
223LIBS += drivers/qe/qe.a
224endif
Andy Flemingda9d4612007-08-14 00:14:25 -0500225ifeq ($(CPU),mpc85xx)
226LIBS += drivers/qe/qe.a
227endif
Jean-Christophe PLAGNIOL-VILLARD59829cc2007-11-24 21:26:56 +0100228LIBS += drivers/rtc/librtc.a
TsiChung Liew8e585f02007-06-18 13:50:13 -0500229LIBS += drivers/serial/libserial.a
Jean-Christophe PLAGNIOL-VILLARD59829cc2007-11-24 21:26:56 +0100230LIBS += drivers/usb/libusb.a
231LIBS += drivers/video/libvideo.a
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100232LIBS += post/libpost.a post/drivers/libpostdrivers.a
233LIBS += $(shell if [ -d post/lib_$(ARCH) ]; then echo \
234 "post/lib_$(ARCH)/libpost$(ARCH).a"; fi)
Sergei Poselenovb4489622007-07-05 08:17:37 +0200235LIBS += $(shell if [ -d post/lib_$(ARCH)/fpu ]; then echo \
236 "post/lib_$(ARCH)/fpu/libpost$(ARCH)fpu.a"; fi)
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100237LIBS += $(shell if [ -d post/cpu/$(CPU) ]; then echo \
238 "post/cpu/$(CPU)/libpost$(CPU).a"; fi)
239LIBS += $(shell if [ -d post/board/$(BOARDDIR) ]; then echo \
240 "post/board/$(BOARDDIR)/libpost$(BOARD).a"; fi)
wdenk7ebf7442002-11-02 23:17:16 +0000241LIBS += common/libcommon.a
Gerald Van Baren7651f8b2007-04-19 23:14:39 -0400242LIBS += libfdt/libfdt.a
Marian Balakowiczf9328632006-09-01 19:49:50 +0200243
244LIBS := $(addprefix $(obj),$(LIBS))
wdenk9fd5e312003-12-07 23:55:12 +0000245.PHONY : $(LIBS)
wdenka8c7c702003-12-06 19:49:23 +0000246
wdenk4f7cb082003-09-11 23:06:34 +0000247# Add GCC lib
wdenk1a344f22005-02-03 23:00:49 +0000248PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
wdenk3d3befa2004-03-14 15:06:13 +0000249
wdenka8c7c702003-12-06 19:49:23 +0000250# The "tools" are needed early, so put this first
251# Don't include stuff already done in $(LIBS)
252SUBDIRS = tools \
Wolfgang Denkad5bb452007-03-06 18:08:43 +0100253 examples
254
wdenkb028f712003-12-07 21:39:28 +0000255.PHONY : $(SUBDIRS)
wdenka8c7c702003-12-06 19:49:23 +0000256
Stefan Roese887e2ec2006-09-07 11:51:23 +0200257ifeq ($(CONFIG_NAND_U_BOOT),y)
258NAND_SPL = nand_spl
259U_BOOT_NAND = $(obj)u-boot-nand.bin
260endif
261
Marian Balakowiczf9328632006-09-01 19:49:50 +0200262__OBJS := $(subst $(obj),,$(OBJS))
263__LIBS := $(subst $(obj),,$(LIBS))
264
wdenk7ebf7442002-11-02 23:17:16 +0000265#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000266#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000267
Heiko Schocher566a4942007-06-22 19:11:54 +0200268ALL += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND)
wdenk7ebf7442002-11-02 23:17:16 +0000269
wdenkbdccc4f2003-08-05 17:43:17 +0000270all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000271
Marian Balakowiczf9328632006-09-01 19:49:50 +0200272$(obj)u-boot.hex: $(obj)u-boot
wdenk6310eb92005-01-09 21:28:15 +0000273 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
274
Marian Balakowiczf9328632006-09-01 19:49:50 +0200275$(obj)u-boot.srec: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000276 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
277
Marian Balakowiczf9328632006-09-01 19:49:50 +0200278$(obj)u-boot.bin: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000279 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
280
Marian Balakowiczf9328632006-09-01 19:49:50 +0200281$(obj)u-boot.img: $(obj)u-boot.bin
wdenkbdccc4f2003-08-05 17:43:17 +0000282 ./tools/mkimage -A $(ARCH) -T firmware -C none \
283 -a $(TEXT_BASE) -e 0 \
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100284 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenkbdccc4f2003-08-05 17:43:17 +0000285 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
286 -d $< $@
287
Heiko Schocher566a4942007-06-22 19:11:54 +0200288$(obj)u-boot.sha1: $(obj)u-boot.bin
Heiko Schocher01159532007-07-14 01:06:58 +0200289 $(obj)tools/ubsha1 $(obj)u-boot.bin
Heiko Schocher566a4942007-06-22 19:11:54 +0200290
Marian Balakowiczf9328632006-09-01 19:49:50 +0200291$(obj)u-boot.dis: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000292 $(OBJDUMP) -d $< > $@
293
Marian Balakowiczf9328632006-09-01 19:49:50 +0200294$(obj)u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
wdenk8bde7f72003-06-27 21:31:46 +0000295 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
Marian Balakowiczf9328632006-09-01 19:49:50 +0200296 cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
297 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000298 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000299
Marian Balakowiczf9328632006-09-01 19:49:50 +0200300$(OBJS):
301 $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@))
302
wdenka8c7c702003-12-06 19:49:23 +0000303$(LIBS):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200304 $(MAKE) -C $(dir $(subst $(obj),,$@))
wdenka8c7c702003-12-06 19:49:23 +0000305
306$(SUBDIRS):
wdenkb028f712003-12-07 21:39:28 +0000307 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000308
Stefan Roese887e2ec2006-09-07 11:51:23 +0200309$(NAND_SPL): version
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200310 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
Stefan Roese887e2ec2006-09-07 11:51:23 +0200311
312$(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200313 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 +0200314
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100315version:
316 @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \
317 echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \
318 echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \
319 $(TOPDIR)) >> $(VERSION_FILE); \
320 echo "\"" >> $(VERSION_FILE)
321
dzu8f713fd2003-08-07 14:20:31 +0000322gdbtools:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200323 $(MAKE) -C tools/gdb all || exit 1
324
325updater:
326 $(MAKE) -C tools/updater all || exit 1
327
328env:
329 $(MAKE) -C tools/env all || exit 1
dzu8f713fd2003-08-07 14:20:31 +0000330
Wolfgang Denkf8d3ca72007-09-18 17:40:27 +0200331depend dep: version
Marian Balakowiczf9328632006-09-01 19:49:50 +0200332 for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir _depend ; done
wdenk7ebf7442002-11-02 23:17:16 +0000333
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100334TAG_SUBDIRS += include
335TAG_SUBDIRS += lib_generic board/$(BOARDDIR)
336TAG_SUBDIRS += cpu/$(CPU)
337TAG_SUBDIRS += lib_$(ARCH)
338TAG_SUBDIRS += fs/cramfs
339TAG_SUBDIRS += fs/fat
340TAG_SUBDIRS += fs/fdos
341TAG_SUBDIRS += fs/jffs2
342TAG_SUBDIRS += net
343TAG_SUBDIRS += disk
344TAG_SUBDIRS += common
345TAG_SUBDIRS += drivers/bios_emulator
346TAG_SUBDIRS += drivers/block
347TAG_SUBDIRS += drivers/hwmon
348TAG_SUBDIRS += drivers/i2c
349TAG_SUBDIRS += drivers/input
350TAG_SUBDIRS += drivers/misc
351TAG_SUBDIRS += drivers/mtd
352TAG_SUBDIRS += drivers/mtd/nand
353TAG_SUBDIRS += drivers/mtd/nand_legacy
354TAG_SUBDIRS += drivers/mtd/onenand
355TAG_SUBDIRS += drivers/net
356TAG_SUBDIRS += drivers/net/sk98lin
357TAG_SUBDIRS += drivers/pci
358TAG_SUBDIRS += drivers/pcmcia
359TAG_SUBDIRS += drivers/qe
360TAG_SUBDIRS += drivers/rtc
361TAG_SUBDIRS += drivers/serial
362TAG_SUBDIRS += drivers/usb
363TAG_SUBDIRS += drivers/video
364
Marian Balakowiczf9328632006-09-01 19:49:50 +0200365tags ctags:
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100366 ctags -w -o $(OBJTREE)/ctags `find $(SUBDIRS) $(TAG_SUBDIRS) \
Wolfgang Denk88fed9a2007-11-26 22:57:53 +0100367 -name '*.[ch]' -print`
wdenk7ebf7442002-11-02 23:17:16 +0000368
369etags:
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100370 etags -a -o $(OBJTREE)/etags `find $(SUBDIRS) $(TAG_SUBDIRS) \
Wolfgang Denk88fed9a2007-11-26 22:57:53 +0100371 -name '*.[ch]' -print`
wdenk7ebf7442002-11-02 23:17:16 +0000372
Marian Balakowiczf9328632006-09-01 19:49:50 +0200373$(obj)System.map: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000374 @$(NM) $< | \
375 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200376 sort > $(obj)System.map
wdenk7ebf7442002-11-02 23:17:16 +0000377
Grant Likely2f155f62007-09-24 09:05:31 -0600378#
379# Auto-generate the autoconf.mk file (which is included by all makefiles)
380#
381# This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
382# the dep file is only include in this top level makefile to determine when
383# to regenerate the autoconf.mk file.
384$(OBJTREE)/include/autoconf.mk: $(obj)include/config.h
385 @echo Generating include/autoconf.mk
386 @# Generate the dependancies
387 @$(CC) -M $(HOST_CFLAGS) $(CPPFLAGS) -MQ $@ include/common.h > $@.dep
388 @# Extract the config macros
389 @$(CPP) $(CFLAGS) -dM include/common.h | sed -n -f tools/scripts/define2mk.sed >> $@
390
391sinclude $(OBJTREE)/include/autoconf.mk.dep
392
wdenk7ebf7442002-11-02 23:17:16 +0000393#########################################################################
394else
Marian Balakowiczf9328632006-09-01 19:49:50 +0200395all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
396$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
397$(SUBDIRS) version gdbtools updater env depend \
398dep tags ctags etags $(obj)System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000399 @echo "System not configured - see README" >&2
400 @ exit 1
401endif
402
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200403.PHONY : CHANGELOG
404CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -0400405 git log --no-merges U-Boot-1_1_5.. | \
406 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200407
wdenk7ebf7442002-11-02 23:17:16 +0000408#########################################################################
409
410unconfig:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200411 @rm -f $(obj)include/config.h $(obj)include/config.mk \
Grant Likely2f155f62007-09-24 09:05:31 -0600412 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \
413 $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep
wdenk7ebf7442002-11-02 23:17:16 +0000414
415#========================================================================
416# PowerPC
417#========================================================================
wdenk0db5bca2003-03-31 17:27:09 +0000418
419#########################################################################
420## MPC5xx Systems
421#########################################################################
422
wdenk5e5f9ed2005-04-13 23:15:10 +0000423canmb_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200424 @$(MKCONFIG) -a canmb ppc mpc5xxx canmb
wdenk5e5f9ed2005-04-13 23:15:10 +0000425
wdenk0db5bca2003-03-31 17:27:09 +0000426cmi_mpc5xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200427 @$(MKCONFIG) $(@:_config=) ppc mpc5xx cmi
wdenk0db5bca2003-03-31 17:27:09 +0000428
wdenkdb01a2e2004-04-15 23:14:49 +0000429PATI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200430 @$(MKCONFIG) $(@:_config=) ppc mpc5xx pati mpl
wdenkb6e4c402004-01-02 16:05:07 +0000431
wdenk7ebf7442002-11-02 23:17:16 +0000432#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000433## MPC5xxx Systems
434#########################################################################
wdenka87589d2005-06-10 10:00:19 +0000435
Wolfgang Denkdafba162005-08-12 00:22:49 +0200436aev_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200437 @$(MKCONFIG) -a aev ppc mpc5xxx tqm5200
Wolfgang Denkdafba162005-08-12 00:22:49 +0200438
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200439BC3450_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200440 @$(MKCONFIG) -a BC3450 ppc mpc5xxx bc3450
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200441
Stefan Roese5e4b3362005-08-22 17:51:53 +0200442cpci5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200443 @$(MKCONFIG) -a cpci5200 ppc mpc5xxx cpci5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200444
Wolfgang Denk05bf4912007-10-21 01:01:17 +0200445hmi1001_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200446 @$(MKCONFIG) hmi1001 ppc mpc5xxx hmi1001
wdenka87589d2005-06-10 10:00:19 +0000447
wdenke35745b2004-04-18 23:32:11 +0000448Lite5200_config \
449Lite5200_LOWBOOT_config \
450Lite5200_LOWBOOT08_config \
451icecube_5200_config \
452icecube_5200_LOWBOOT_config \
453icecube_5200_LOWBOOT08_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100454icecube_5200_DDR_config \
455icecube_5200_DDR_LOWBOOT_config \
wdenke35745b2004-04-18 23:32:11 +0000456icecube_5200_DDR_LOWBOOT08_config \
457icecube_5100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200458 @mkdir -p $(obj)include
459 @mkdir -p $(obj)board/icecube
460 @ >$(obj)include/config.h
wdenk17d704e2004-04-10 20:43:50 +0000461 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
462 { if [ "$(findstring DDR,$@)" ] ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200463 then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
464 else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
wdenk17d704e2004-04-10 20:43:50 +0000465 fi ; \
wdenk5cf9da42003-11-07 13:42:26 +0000466 echo "... with LOWBOOT configuration" ; \
467 }
468 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200469 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
wdenk5cf9da42003-11-07 13:42:26 +0000470 echo "... with 8 MB flash only" ; \
wdenk17d704e2004-04-10 20:43:50 +0000471 echo "... with LOWBOOT configuration" ; \
wdenk5cf9da42003-11-07 13:42:26 +0000472 }
wdenkb2001f22003-12-20 22:45:10 +0000473 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200474 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +0000475 echo "... DDR memory revision" ; \
476 }
wdenkd4ca31c2004-01-02 14:00:00 +0000477 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200478 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenkd4ca31c2004-01-02 14:00:00 +0000479 echo "... with MPC5200 processor" ; \
480 }
wdenka0f2fe52003-10-28 09:14:21 +0000481 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200482 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk945af8d2003-07-16 21:53:01 +0000483 echo "... with MGT5100 processor" ; \
484 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200485 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
wdenk945af8d2003-07-16 21:53:01 +0000486
Wolfgang Denk05bf4912007-10-21 01:01:17 +0200487jupiter_config: unconfig
Heiko Schocher2605e902007-02-16 07:57:42 +0100488 @$(MKCONFIG) jupiter ppc mpc5xxx jupiter
489
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200490v38b_config: unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -0600491 @$(MKCONFIG) -a v38b ppc mpc5xxx v38b
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200492
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100493inka4x0_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200494 @$(MKCONFIG) inka4x0 ppc mpc5xxx inka4x0
wdenk138ff602004-12-16 15:52:40 +0000495
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100496lite5200b_config \
Domen Puncerd3832e82007-04-16 14:00:13 +0200497lite5200b_PM_config \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100498lite5200b_LOWBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200499 @mkdir -p $(obj)include
500 @mkdir -p $(obj)board/icecube
501 @ >$(obj)include/config.h
502 @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100503 @ echo "... DDR memory revision"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200504 @ echo "#define CONFIG_MPC5200" >>$(obj)include/config.h
505 @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h
Domen Puncerd3832e82007-04-16 14:00:13 +0200506 @[ -z "$(findstring _PM_,$@)" ] || \
507 { echo "#define CONFIG_LITE5200B_PM" >>$(obj)include/config.h ; \
508 echo "... with power management (low-power mode) support" ; \
509 }
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100510 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200511 { echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100512 echo "... with LOWBOOT configuration" ; \
513 }
514 @ echo "... with MPC5200B processor"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200515 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100516
Stefan Roesef1ee9822006-03-04 14:57:03 +0100517mcc200_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200518mcc200_SDRAM_config \
519mcc200_highboot_config \
520mcc200_COM12_config \
521mcc200_COM12_SDRAM_config \
Wolfgang Denk113f64e2006-08-25 01:38:04 +0200522mcc200_COM12_highboot_config \
523mcc200_COM12_highboot_SDRAM_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200524mcc200_highboot_SDRAM_config \
525prs200_config \
526prs200_DDR_config \
527prs200_highboot_config \
528prs200_highboot_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200529 @mkdir -p $(obj)include
530 @mkdir -p $(obj)board/mcc200
531 @ >$(obj)include/config.h
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200532 @[ -n "$(findstring highboot,$@)" ] || \
533 { echo "... with lowboot configuration" ; \
Stefan Roesef1ee9822006-03-04 14:57:03 +0100534 }
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200535 @[ -z "$(findstring highboot,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200536 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200537 echo "... with highboot configuration" ; \
538 }
539 @[ -n "$(findstring _SDRAM,$@)" ] || \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200540 { if [ -n "$(findstring mcc200,$@)" ]; \
541 then \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100542 echo "... with DDR" ; \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200543 else \
544 if [ -n "$(findstring _DDR,$@)" ];\
545 then \
546 echo "... with DDR" ; \
547 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200548 echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200549 echo "... with SDRAM" ; \
550 fi; \
551 fi; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200552 }
553 @[ -z "$(findstring _SDRAM,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200554 { echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200555 echo "... with SDRAM" ; \
556 }
Wolfgang Denk463764c2006-08-17 00:36:51 +0200557 @[ -z "$(findstring COM12,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200558 { echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \
Wolfgang Denk463764c2006-08-17 00:36:51 +0200559 echo "... with console on COM12" ; \
560 }
Wolfgang Denked1cf842006-08-24 00:26:42 +0200561 @[ -z "$(findstring prs200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200562 { echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200563 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200564 @$(MKCONFIG) -n $@ -a mcc200 ppc mpc5xxx mcc200
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100565
Stefan Roese8b7d1f02007-01-31 16:37:34 +0100566mecp5200_config: unconfig
567 @$(MKCONFIG) -a mecp5200 ppc mpc5xxx mecp5200 esd
568
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200569o2dnt_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200570 @$(MKCONFIG) o2dnt ppc mpc5xxx o2dnt
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200571
Stefan Roese5e4b3362005-08-22 17:51:53 +0200572pf5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200573 @$(MKCONFIG) pf5200 ppc mpc5xxx pf5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200574
wdenk89394042004-08-04 21:56:49 +0000575PM520_config \
576PM520_DDR_config \
577PM520_ROMBOOT_config \
578PM520_ROMBOOT_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200579 @mkdir -p $(obj)include
580 @ >$(obj)include/config.h
wdenk89394042004-08-04 21:56:49 +0000581 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200582 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000583 echo "... DDR memory revision" ; \
584 }
585 @[ -z "$(findstring ROMBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200586 { echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000587 echo "... booting from 8-bit flash" ; \
588 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200589 @$(MKCONFIG) -a PM520 ppc mpc5xxx pm520
wdenk89394042004-08-04 21:56:49 +0000590
Wolfgang Denk6624b682006-02-22 10:25:39 +0100591smmaco4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200592 @$(MKCONFIG) -a smmaco4 ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100593
Bartlomiej Sieka86b116b2007-08-03 12:08:16 +0200594cm5200_config: unconfig
595 @./mkconfig -a cm5200 ppc mpc5xxx cm5200
Bartlomiej Siekafa1df302007-07-11 20:11:07 +0200596
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100597spieval_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200598 @$(MKCONFIG) -a spieval ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100599
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200600TB5200_B_config \
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200601TB5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200602 @mkdir -p $(obj)include
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200603 @[ -z "$(findstring _B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200604 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200605 echo "... with MPC5200B processor" ; \
606 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200607 @$(MKCONFIG) -n $@ -a TB5200 ppc mpc5xxx tqm5200
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200608
wdenkd4ca31c2004-01-02 14:00:00 +0000609MINI5200_config \
610EVAL5200_config \
611TOP5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200612 @mkdir -p $(obj)include
613 @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
614 @$(MKCONFIG) -n $@ -a TOP5200 ppc mpc5xxx top5200 emk
wdenkd4ca31c2004-01-02 14:00:00 +0000615
wdenk6c7a1402004-07-11 19:17:20 +0000616Total5100_config \
617Total5200_config \
618Total5200_lowboot_config \
619Total5200_Rev2_config \
620Total5200_Rev2_lowboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200621 @mkdir -p $(obj)include
622 @mkdir -p $(obj)board/total5200
623 @ >$(obj)include/config.h
wdenk6c7a1402004-07-11 19:17:20 +0000624 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200625 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000626 echo "... with MGT5100 processor" ; \
627 }
628 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200629 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000630 echo "... with MPC5200 processor" ; \
631 }
632 @[ -n "$(findstring Rev,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200633 { echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000634 echo "... revision 1 board" ; \
635 }
636 @[ -z "$(findstring Rev2_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200637 { echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000638 echo "... revision 2 board" ; \
639 }
640 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200641 { echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp ; \
wdenk6c7a1402004-07-11 19:17:20 +0000642 echo "... with lowboot configuration" ; \
643 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200644 @$(MKCONFIG) -a Total5200 ppc mpc5xxx total5200
wdenk6c7a1402004-07-11 19:17:20 +0000645
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200646cam5200_config \
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100647cam5200_niosflash_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200648fo300_config \
649MiniFAP_config \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200650TQM5200S_config \
651TQM5200S_HIGHBOOT_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200652TQM5200_B_config \
653TQM5200_B_HIGHBOOT_config \
654TQM5200_config \
655TQM5200_STK100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200656 @mkdir -p $(obj)include
657 @mkdir -p $(obj)board/tqm5200
658 @ >$(obj)include/config.h
Wolfgang Denk135ae002006-07-22 01:20:03 +0200659 @[ -z "$(findstring cam5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200660 { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \
661 echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
662 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk135ae002006-07-22 01:20:03 +0200663 echo "... TQM5200S on Cam5200" ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200664 }
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100665 @[ -z "$(findstring niosflash,$@)" ] || \
666 { echo "#define CONFIG_CAM5200_NIOSFLASH" >>$(obj)include/config.h ; \
667 echo "... with NIOS flash driver" ; \
668 }
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200669 @[ -z "$(findstring fo300,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200670 { echo "#define CONFIG_FO300" >>$(obj)include/config.h ; \
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200671 echo "... TQM5200 on FO300" ; \
672 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200673 @[ -z "$(findstring MiniFAP,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200674 { echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200675 echo "... TQM5200_AC on MiniFAP" ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200676 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200677 @[ -z "$(findstring STK100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200678 { echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h ; \
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200679 echo "... on a STK52XX.100 base board" ; \
wdenk56523f12004-07-11 17:40:54 +0000680 }
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200681 @[ -z "$(findstring TQM5200_B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200682 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200683 }
684 @[ -z "$(findstring TQM5200S,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200685 { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
686 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200687 }
Wolfgang Denk978b1092006-07-19 18:01:38 +0200688 @[ -z "$(findstring HIGHBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200689 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200690 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200691 @$(MKCONFIG) -n $@ -a TQM5200 ppc mpc5xxx tqm5200
Wolfgang Denk05bf4912007-10-21 01:01:17 +0200692uc101_config: unconfig
Heiko Schocher6dedf3d2006-12-21 16:14:48 +0100693 @$(MKCONFIG) uc101 ppc mpc5xxx uc101
Wolfgang Denk05bf4912007-10-21 01:01:17 +0200694motionpro_config: unconfig
Bartlomiej Sieka53d4a492007-02-09 10:45:42 +0100695 @$(MKCONFIG) motionpro ppc mpc5xxx motionpro
696
wdenk56523f12004-07-11 17:40:54 +0000697
wdenk945af8d2003-07-16 21:53:01 +0000698#########################################################################
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200699## MPC512x Systems
700#########################################################################
701ads5121_config: unconfig
702 @$(MKCONFIG) ads5121 ppc mpc512x ads5121
703
704
705#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000706## MPC8xx Systems
707#########################################################################
708
wdenk2d24a3a2004-06-09 21:50:45 +0000709Adder_config \
710Adder87x_config \
wdenk26238132004-07-09 22:51:01 +0000711AdderII_config \
wdenk2d24a3a2004-06-09 21:50:45 +0000712 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200713 @mkdir -p $(obj)include
wdenk26238132004-07-09 22:51:01 +0000714 $(if $(findstring AdderII,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200715 @echo "#define CONFIG_MPC852T" > $(obj)include/config.h)
716 @$(MKCONFIG) -a Adder ppc mpc8xx adder
wdenk2d24a3a2004-06-09 21:50:45 +0000717
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200718AdderUSB_config: unconfig
719 @./mkconfig -a AdderUSB ppc mpc8xx adder
720
wdenk180d3f72004-01-04 16:28:35 +0000721ADS860_config \
wdenk180d3f72004-01-04 16:28:35 +0000722FADS823_config \
723FADS850SAR_config \
724MPC86xADS_config \
wdenk11142572004-06-06 21:35:06 +0000725MPC885ADS_config \
wdenk180d3f72004-01-04 16:28:35 +0000726FADS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200727 @$(MKCONFIG) $(@:_config=) ppc mpc8xx fads
wdenk7ebf7442002-11-02 23:17:16 +0000728
729AMX860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200730 @$(MKCONFIG) $(@:_config=) ppc mpc8xx amx860 westel
wdenk7ebf7442002-11-02 23:17:16 +0000731
732c2mon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200733 @$(MKCONFIG) $(@:_config=) ppc mpc8xx c2mon
wdenk7ebf7442002-11-02 23:17:16 +0000734
735CCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200736 @$(MKCONFIG) $(@:_config=) ppc mpc8xx CCM siemens
wdenk7ebf7442002-11-02 23:17:16 +0000737
738cogent_mpc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200739 @$(MKCONFIG) $(@:_config=) ppc mpc8xx cogent
wdenk7ebf7442002-11-02 23:17:16 +0000740
wdenk3bac3512003-03-12 10:41:04 +0000741ELPT860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200742 @$(MKCONFIG) $(@:_config=) ppc mpc8xx elpt860 LEOX
wdenk3bac3512003-03-12 10:41:04 +0000743
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100744EP88x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200745 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ep88x
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100746
wdenk7ebf7442002-11-02 23:17:16 +0000747ESTEEM192E_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200748 @$(MKCONFIG) $(@:_config=) ppc mpc8xx esteem192e
wdenk7ebf7442002-11-02 23:17:16 +0000749
750ETX094_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200751 @$(MKCONFIG) $(@:_config=) ppc mpc8xx etx094
wdenk7ebf7442002-11-02 23:17:16 +0000752
wdenk7ebf7442002-11-02 23:17:16 +0000753FLAGADM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200754 @$(MKCONFIG) $(@:_config=) ppc mpc8xx flagadm
wdenk7ebf7442002-11-02 23:17:16 +0000755
wdenk7aa78612003-05-03 15:50:43 +0000756xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
757
758GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000759GEN860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200760 @mkdir -p $(obj)include
761 @ >$(obj)include/config.h
wdenk7aa78612003-05-03 15:50:43 +0000762 @[ -z "$(findstring _SC,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200763 { echo "#define CONFIG_SC" >>$(obj)include/config.h ; \
wdenk7aa78612003-05-03 15:50:43 +0000764 echo "With reduced H/W feature set (SC)..." ; \
765 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200766 @$(MKCONFIG) -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000767
768GENIETV_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200769 @$(MKCONFIG) $(@:_config=) ppc mpc8xx genietv
wdenk7ebf7442002-11-02 23:17:16 +0000770
771GTH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200772 @$(MKCONFIG) $(@:_config=) ppc mpc8xx gth
wdenk7ebf7442002-11-02 23:17:16 +0000773
774hermes_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200775 @$(MKCONFIG) $(@:_config=) ppc mpc8xx hermes
wdenk7ebf7442002-11-02 23:17:16 +0000776
wdenkc40b2952004-03-13 23:29:43 +0000777HMI10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200778 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenkc40b2952004-03-13 23:29:43 +0000779
wdenk7ebf7442002-11-02 23:17:16 +0000780IAD210_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200781 @$(MKCONFIG) $(@:_config=) ppc mpc8xx IAD210 siemens
wdenk7ebf7442002-11-02 23:17:16 +0000782
783xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
784
785ICU862_100MHz_config \
786ICU862_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200787 @mkdir -p $(obj)include
788 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000789 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200790 { echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000791 echo "... with 100MHz system clock" ; \
792 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200793 @$(MKCONFIG) -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
wdenk7ebf7442002-11-02 23:17:16 +0000794
795IP860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200796 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ip860
wdenk7ebf7442002-11-02 23:17:16 +0000797
798IVML24_256_config \
799IVML24_128_config \
800IVML24_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200801 @mkdir -p $(obj)include
802 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000803 @[ -z "$(findstring IVML24_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200804 { echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000805 }
806 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200807 { echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000808 }
809 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200810 { echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000811 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200812 @$(MKCONFIG) -a IVML24 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000813
814IVMS8_256_config \
815IVMS8_128_config \
816IVMS8_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200817 @mkdir -p $(obj)include
818 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000819 @[ -z "$(findstring IVMS8_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200820 { echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000821 }
822 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200823 { echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000824 }
825 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200826 { echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000827 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200828 @$(MKCONFIG) -a IVMS8 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000829
wdenk56f94be2002-11-05 16:35:14 +0000830KUP4K_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200831 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4k kup
wdenk0608e042004-03-25 19:29:38 +0000832
833KUP4X_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200834 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000835
wdenk7ebf7442002-11-02 23:17:16 +0000836LANTEC_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200837 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lantec
wdenk7ebf7442002-11-02 23:17:16 +0000838
839lwmon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200840 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lwmon
wdenk7ebf7442002-11-02 23:17:16 +0000841
842MBX_config \
843MBX860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200844 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mbx8xx
wdenk7ebf7442002-11-02 23:17:16 +0000845
846MHPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200847 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mhpc eltec
wdenk7ebf7442002-11-02 23:17:16 +0000848
849MVS1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200850 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mvs1
wdenk7ebf7442002-11-02 23:17:16 +0000851
wdenk993cad92003-06-26 22:04:09 +0000852xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
853
854NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000855NETVIA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200856 @mkdir -p $(obj)include
857 @ >$(obj)include/config.h
wdenk993cad92003-06-26 22:04:09 +0000858 @[ -z "$(findstring NETVIA_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200859 { echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000860 echo "... Version 1" ; \
861 }
862 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200863 { echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000864 echo "... Version 2" ; \
865 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200866 @$(MKCONFIG) -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000867
wdenkc26e4542004-04-18 10:13:26 +0000868xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
869
870NETPHONE_V2_config \
wdenk04a85b32004-04-15 18:22:41 +0000871NETPHONE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200872 @mkdir -p $(obj)include
873 @ >$(obj)include/config.h
wdenkc26e4542004-04-18 10:13:26 +0000874 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200875 { echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000876 }
877 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200878 { echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000879 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200880 @$(MKCONFIG) -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk04a85b32004-04-15 18:22:41 +0000881
wdenk79fa88f2004-06-07 23:46:25 +0000882xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk04a85b32004-04-15 18:22:41 +0000883
wdenk79fa88f2004-06-07 23:46:25 +0000884NETTA_ISDN_6412_SWAPHOOK_config \
885NETTA_ISDN_SWAPHOOK_config \
886NETTA_6412_SWAPHOOK_config \
887NETTA_SWAPHOOK_config \
888NETTA_ISDN_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000889NETTA_ISDN_config \
wdenk79fa88f2004-06-07 23:46:25 +0000890NETTA_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000891NETTA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200892 @mkdir -p $(obj)include
893 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000894 @[ -z "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200895 { echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \
wdenk04a85b32004-04-15 18:22:41 +0000896 }
wdenk79fa88f2004-06-07 23:46:25 +0000897 @[ -n "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200898 { echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000899 }
900 @[ -z "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200901 { echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000902 }
903 @[ -n "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200904 { echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000905 }
906 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200907 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000908 }
909 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200910 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000911 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200912 @$(MKCONFIG) -a $(call xtract_NETTA,$@) ppc mpc8xx netta
wdenk04a85b32004-04-15 18:22:41 +0000913
wdenk79fa88f2004-06-07 23:46:25 +0000914xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
915
916NETTA2_V2_config \
917NETTA2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200918 @mkdir -p $(obj)include
919 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000920 @[ -z "$(findstring NETTA2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200921 { echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000922 }
923 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200924 { echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000925 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200926 @$(MKCONFIG) -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
wdenk79fa88f2004-06-07 23:46:25 +0000927
dzu@denx.dea367d422006-04-19 11:52:46 +0200928NC650_Rev1_config \
929NC650_Rev2_config \
930CP850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200931 @mkdir -p $(obj)include
932 @ >$(obj)include/config.h
dzu@denx.dea367d422006-04-19 11:52:46 +0200933 @[ -z "$(findstring CP850,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200934 { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \
935 echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200936 }
937 @[ -z "$(findstring Rev1,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200938 { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200939 }
940 @[ -z "$(findstring Rev2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200941 { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200942 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200943 @$(MKCONFIG) -a NC650 ppc mpc8xx nc650
wdenk7ca202f2004-08-28 22:45:57 +0000944
wdenk7ebf7442002-11-02 23:17:16 +0000945NX823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200946 @$(MKCONFIG) $(@:_config=) ppc mpc8xx nx823
wdenk7ebf7442002-11-02 23:17:16 +0000947
948pcu_e_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200949 @$(MKCONFIG) $(@:_config=) ppc mpc8xx pcu_e siemens
wdenk7ebf7442002-11-02 23:17:16 +0000950
wdenk3bbc8992003-12-07 22:27:15 +0000951QS850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200952 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000953
954QS823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200955 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000956
957QS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200958 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs860t snmc
wdenk3bbc8992003-12-07 22:27:15 +0000959
wdenkda93ed82004-09-29 11:02:56 +0000960quantum_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200961 @$(MKCONFIG) $(@:_config=) ppc mpc8xx quantum
wdenkda93ed82004-09-29 11:02:56 +0000962
wdenk7ebf7442002-11-02 23:17:16 +0000963R360MPI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200964 @$(MKCONFIG) $(@:_config=) ppc mpc8xx r360mpi
wdenk7ebf7442002-11-02 23:17:16 +0000965
wdenk682011f2003-06-03 23:54:09 +0000966RBC823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200967 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rbc823
wdenk682011f2003-06-03 23:54:09 +0000968
wdenk7ebf7442002-11-02 23:17:16 +0000969RPXClassic_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200970 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXClassic
wdenk7ebf7442002-11-02 23:17:16 +0000971
972RPXlite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200973 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXlite
wdenk7ebf7442002-11-02 23:17:16 +0000974
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100975RPXlite_DW_64_config \
976RPXlite_DW_LCD_config \
977RPXlite_DW_64_LCD_config \
wdenke63c8ee2004-06-09 21:04:48 +0000978RPXlite_DW_NVRAM_config \
979RPXlite_DW_NVRAM_64_config \
980RPXlite_DW_NVRAM_LCD_config \
981RPXlite_DW_NVRAM_64_LCD_config \
Wolfgang Denk05bf4912007-10-21 01:01:17 +0200982RPXlite_DW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200983 @mkdir -p $(obj)include
984 @ >$(obj)include/config.h
wdenke63c8ee2004-06-09 21:04:48 +0000985 @[ -z "$(findstring _64,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200986 { echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000987 echo "... with 64MHz system clock ..."; \
988 }
989 @[ -z "$(findstring _LCD,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100990 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200991 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000992 echo "... with LCD display ..."; \
993 }
994 @[ -z "$(findstring _NVRAM,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100995 { echo "#define CFG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000996 echo "... with ENV in NVRAM ..."; \
997 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200998 @$(MKCONFIG) -a RPXlite_DW ppc mpc8xx RPXlite_dw
wdenke63c8ee2004-06-09 21:04:48 +0000999
wdenk73a8b272003-06-05 19:27:42 +00001000rmu_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001001 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rmu
wdenk73a8b272003-06-05 19:27:42 +00001002
wdenk7ebf7442002-11-02 23:17:16 +00001003RRvision_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001004 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +00001005
1006RRvision_LCD_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001007 @mkdir -p $(obj)include
1008 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1009 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
1010 @$(MKCONFIG) -a RRvision ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +00001011
1012SM850_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001013 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +00001014
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +02001015spc1920_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +02001016 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spc1920
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +02001017
wdenk7ebf7442002-11-02 23:17:16 +00001018SPD823TS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001019 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spd8xx
wdenk7ebf7442002-11-02 23:17:16 +00001020
Wolfgang Denk6bdf4302005-08-15 15:55:00 +02001021stxxtc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001022 @$(MKCONFIG) $(@:_config=) ppc mpc8xx stxxtc
Wolfgang Denk6bdf4302005-08-15 15:55:00 +02001023
wdenkdc7c9a12003-03-26 06:55:25 +00001024svm_sc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001025 @$(MKCONFIG) $(@:_config=) ppc mpc8xx svm_sc8xx
wdenkdc7c9a12003-03-26 06:55:25 +00001026
wdenk7ebf7442002-11-02 23:17:16 +00001027SXNI855T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001028 @$(MKCONFIG) $(@:_config=) ppc mpc8xx sixnet
wdenk7ebf7442002-11-02 23:17:16 +00001029
wdenkdb2f721f2003-03-06 00:58:30 +00001030# EMK MPC8xx based modules
1031TOP860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001032 @$(MKCONFIG) $(@:_config=) ppc mpc8xx top860 emk
wdenkdb2f721f2003-03-06 00:58:30 +00001033
wdenk7ebf7442002-11-02 23:17:16 +00001034# Play some tricks for configuration selection
wdenke9132ea2004-04-24 23:23:30 +00001035# Only 855 and 860 boards may come with FEC
1036# and only 823 boards may have LCD support
1037xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +00001038
1039FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +00001040FPS860L_config \
wdenkf12e5682003-07-07 20:07:54 +00001041NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +00001042TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +00001043TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +00001044TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +00001045TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +00001046TQM860L_config \
wdenkd126bfb2003-04-10 11:18:18 +00001047TQM862L_config \
wdenkae3af052003-08-07 22:18:11 +00001048TQM823M_config \
wdenkae3af052003-08-07 22:18:11 +00001049TQM850M_config \
wdenkf12e5682003-07-07 20:07:54 +00001050TQM855M_config \
wdenkf12e5682003-07-07 20:07:54 +00001051TQM860M_config \
wdenkf12e5682003-07-07 20:07:54 +00001052TQM862M_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +02001053TQM866M_config \
Markus Klotzbuecher090eb732006-07-12 15:26:01 +02001054TQM885D_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +02001055virtlab2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001056 @mkdir -p $(obj)include
1057 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +00001058 @[ -z "$(findstring _LCD,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001059 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
1060 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001061 echo "... with LCD display" ; \
1062 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001063 @$(MKCONFIG) -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +00001064
1065TTTech_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001066 @mkdir -p $(obj)include
1067 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1068 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
1069 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +00001070
wdenkec0aee72004-12-19 09:58:11 +00001071uc100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001072 @$(MKCONFIG) $(@:_config=) ppc mpc8xx uc100
wdenkf7d15722004-12-18 22:35:43 +00001073
wdenk608c9142003-01-13 23:54:46 +00001074v37_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001075 @mkdir -p $(obj)include
1076 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1077 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h
1078 @$(MKCONFIG) $(@:_config=) ppc mpc8xx v37
wdenk608c9142003-01-13 23:54:46 +00001079
dzu91e940d2003-09-25 22:32:40 +00001080wtk_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001081 @mkdir -p $(obj)include
1082 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1083 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h
1084 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
dzu91e940d2003-09-25 22:32:40 +00001085
wdenk7ebf7442002-11-02 23:17:16 +00001086#########################################################################
1087## PPC4xx Systems
1088#########################################################################
wdenke55ca7e2004-07-01 21:40:08 +00001089xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001090
Stefan Roese16c0cc12007-03-21 13:39:57 +01001091acadia_config: unconfig
1092 @$(MKCONFIG) $(@:_config=) ppc ppc4xx acadia amcc
1093
Stefan Roesec440bfe2007-06-06 11:42:13 +02001094acadia_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001095 @mkdir -p $(obj)include $(obj)board/amcc/acadia
1096 @mkdir -p $(obj)nand_spl/board/amcc/acadia
Stefan Roesec440bfe2007-06-06 11:42:13 +02001097 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
1098 @$(MKCONFIG) -n $@ -a acadia ppc ppc4xx acadia amcc
1099 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/acadia/config.tmp
1100 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1101
wdenk7ebf7442002-11-02 23:17:16 +00001102ADCIOP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001103 @$(MKCONFIG) $(@:_config=) ppc ppc4xx adciop esd
wdenk7ebf7442002-11-02 23:17:16 +00001104
Stefan Roese899620c2006-08-15 14:22:35 +02001105alpr_config: unconfig
Stefan Roese35d22f952007-08-10 10:42:25 +02001106 @$(MKCONFIG) $(@:_config=) ppc ppc4xx alpr prodrive
Stefan Roese899620c2006-08-15 14:22:35 +02001107
Wolfgang Denk7521af12005-10-09 01:04:33 +02001108AP1000_config:unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001109 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ap1000 amirix
Wolfgang Denk7521af12005-10-09 01:04:33 +02001110
stroesec419d1d2004-12-16 18:44:40 +00001111APC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001112 @$(MKCONFIG) $(@:_config=) ppc ppc4xx apc405 esd
stroesec419d1d2004-12-16 18:44:40 +00001113
wdenk7ebf7442002-11-02 23:17:16 +00001114AR405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001115 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ar405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001116
stroese549826e2003-05-23 11:41:44 +00001117ASH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001118 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ash405 esd
stroese549826e2003-05-23 11:41:44 +00001119
Stefan Roese8a316c92005-08-01 16:49:12 +02001120bamboo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001121 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bamboo amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001122
Stefan Roesecf959c72007-06-01 15:27:11 +02001123bamboo_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001124 @mkdir -p $(obj)include $(obj)board/amcc/bamboo
1125 @mkdir -p $(obj)nand_spl/board/amcc/bamboo
Stefan Roesecf959c72007-06-01 15:27:11 +02001126 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roesef3679aa2007-06-01 16:15:34 +02001127 @$(MKCONFIG) -n $@ -a bamboo ppc ppc4xx bamboo amcc
Stefan Roesecf959c72007-06-01 15:27:11 +02001128 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/bamboo/config.tmp
1129 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1130
Stefan Roese8a316c92005-08-01 16:49:12 +02001131bubinga_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001132 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bubinga amcc
stroese549826e2003-05-23 11:41:44 +00001133
wdenk7ebf7442002-11-02 23:17:16 +00001134CANBT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001135 @$(MKCONFIG) $(@:_config=) ppc ppc4xx canbt esd
wdenk7ebf7442002-11-02 23:17:16 +00001136
wdenk1d6f9722004-09-09 17:44:35 +00001137CATcenter_config \
1138CATcenter_25_config \
1139CATcenter_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001140 @mkdir -p $(obj)include
1141 @ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h
1142 @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001143 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001144 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001145 echo "SysClk = 25MHz" ; \
1146 }
1147 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001148 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001149 echo "SysClk = 33MHz" ; \
1150 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001151 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk10767cc2004-05-13 13:23:58 +00001152
Stefan Roese7644f162005-09-22 09:16:57 +02001153CPCI2DP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001154 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd
Stefan Roese7644f162005-09-22 09:16:57 +02001155
stroese549826e2003-05-23 11:41:44 +00001156CPCI405_config \
1157CPCI4052_config \
stroesec419d1d2004-12-16 18:44:40 +00001158CPCI405DT_config \
stroese549826e2003-05-23 11:41:44 +00001159CPCI405AB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001160 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci405 esd
1161 @echo "BOARD_REVISION = $(@:_config=)" >> $(obj)include/config.mk
wdenk7ebf7442002-11-02 23:17:16 +00001162
1163CPCI440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001164 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci440 esd
wdenk7ebf7442002-11-02 23:17:16 +00001165
1166CPCIISER4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001167 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpciiser4 esd
wdenk7ebf7442002-11-02 23:17:16 +00001168
wdenkdb01a2e2004-04-15 23:14:49 +00001169CRAYL1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001170 @$(MKCONFIG) $(@:_config=) ppc ppc4xx L1 cray
wdenk7ebf7442002-11-02 23:17:16 +00001171
wdenkcd0a9de2004-02-23 20:48:38 +00001172csb272_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001173 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb272
wdenkcd0a9de2004-02-23 20:48:38 +00001174
wdenkaa245092004-06-09 12:47:02 +00001175csb472_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001176 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb472
wdenkaa245092004-06-09 12:47:02 +00001177
wdenk7ebf7442002-11-02 23:17:16 +00001178DASA_SIM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001179 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dasa_sim esd
wdenk7ebf7442002-11-02 23:17:16 +00001180
stroese72cd5aa2003-09-12 08:57:15 +00001181DP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001182 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dp405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001183
wdenk7ebf7442002-11-02 23:17:16 +00001184DU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001185 @$(MKCONFIG) $(@:_config=) ppc ppc4xx du405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001186
Stefan Roese8a316c92005-08-01 16:49:12 +02001187ebony_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001188 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +00001189
wdenkdb01a2e2004-04-15 23:14:49 +00001190ERIC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001191 @$(MKCONFIG) $(@:_config=) ppc ppc4xx eric
wdenk7ebf7442002-11-02 23:17:16 +00001192
wdenkdb01a2e2004-04-15 23:14:49 +00001193EXBITGEN_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001194 @$(MKCONFIG) $(@:_config=) ppc ppc4xx exbitgen
wdenkd1cbe852003-06-28 17:24:46 +00001195
stroesec419d1d2004-12-16 18:44:40 +00001196G2000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001197 @$(MKCONFIG) $(@:_config=) ppc ppc4xx g2000
stroesec419d1d2004-12-16 18:44:40 +00001198
Niklaus Gigerac982ea2007-07-27 11:28:44 +02001199hcu4_config: unconfig
Stefan Roese35d22f952007-08-10 10:42:25 +02001200 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hcu4 netstal
Niklaus Gigerac982ea2007-07-27 11:28:44 +02001201
1202hcu5_config: unconfig
Stefan Roese35d22f952007-08-10 10:42:25 +02001203 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hcu5 netstal
Niklaus Gigerac982ea2007-07-27 11:28:44 +02001204
stroesec419d1d2004-12-16 18:44:40 +00001205HH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001206 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001207
stroese72cd5aa2003-09-12 08:57:15 +00001208HUB405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001209 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001210
wdenkdb01a2e2004-04-15 23:14:49 +00001211JSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001212 @$(MKCONFIG) $(@:_config=) ppc ppc4xx jse
wdenkdb01a2e2004-04-15 23:14:49 +00001213
Stefan Roeseb79316f2005-08-15 12:31:23 +02001214KAREF_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001215 @$(MKCONFIG) $(@:_config=) ppc ppc4xx karef sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001216
Stefan Roese4745aca2007-02-20 10:57:08 +01001217katmai_config: unconfig
1218 @$(MKCONFIG) $(@:_config=) ppc ppc4xx katmai amcc
1219
Stefan Roese353f2682007-10-23 10:10:08 +02001220# Kilauea & Haleakala images are identical (recognized via PVR)
1221kilauea_config \
1222haleakala_config: unconfig
1223 @$(MKCONFIG) -n $@ -a kilauea ppc ppc4xx kilauea amcc
Stefan Roese566806c2007-10-05 17:11:30 +02001224
Stefan Roese3d6cb3b2007-11-03 12:08:28 +01001225kilauea_nand_config \
1226haleakala_nand_config: unconfig
1227 @mkdir -p $(obj)include $(obj)board/amcc/kilauea
1228 @mkdir -p $(obj)nand_spl/board/amcc/kilauea
1229 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
1230 @$(MKCONFIG) -n $@ -a kilauea ppc ppc4xx kilauea amcc
1231 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/kilauea/config.tmp
1232 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1233
Larry Johnsonc591dff2007-12-27 11:28:51 -05001234korat_config: unconfig
1235 @$(MKCONFIG) $(@:_config=) ppc ppc4xx korat
1236
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001237luan_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001238 @$(MKCONFIG) $(@:_config=) ppc ppc4xx luan amcc
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001239
Stefan Roeseb765ffb2007-06-15 08:18:01 +02001240lwmon5_config: unconfig
1241 @$(MKCONFIG) $(@:_config=) ppc ppc4xx lwmon5
1242
Stefan Roese211ea912007-10-22 07:34:34 +02001243makalu_config: unconfig
1244 @$(MKCONFIG) $(@:_config=) ppc ppc4xx makalu amcc
1245
Stefan Roeseb79316f2005-08-15 12:31:23 +02001246METROBOX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001247 @$(MKCONFIG) $(@:_config=) ppc ppc4xx metrobox sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001248
wdenkdb01a2e2004-04-15 23:14:49 +00001249MIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001250 @$(MKCONFIG) $(@:_config=) ppc ppc4xx mip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001251
wdenkdb01a2e2004-04-15 23:14:49 +00001252MIP405T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001253 @mkdir -p $(obj)include
1254 @echo "#define CONFIG_MIP405T" >$(obj)include/config.h
wdenkf3e0de62003-06-04 15:05:30 +00001255 @echo "Enable subset config for MIP405T"
Marian Balakowiczf9328632006-09-01 19:49:50 +02001256 @$(MKCONFIG) -a MIP405 ppc ppc4xx mip405 mpl
wdenkf3e0de62003-06-04 15:05:30 +00001257
wdenkdb01a2e2004-04-15 23:14:49 +00001258ML2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001259 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml2
wdenk7ebf7442002-11-02 23:17:16 +00001260
wdenkdb01a2e2004-04-15 23:14:49 +00001261ml300_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001262 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml300 xilinx
wdenk028ab6b2004-02-23 23:54:43 +00001263
Stefan Roese8a316c92005-08-01 16:49:12 +02001264ocotea_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001265 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocotea amcc
wdenk0e6d7982004-03-14 00:07:33 +00001266
wdenk7ebf7442002-11-02 23:17:16 +00001267OCRTC_config \
1268ORSG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001269 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocrtc esd
wdenk7ebf7442002-11-02 23:17:16 +00001270
Stefan Roese5568e612005-11-22 13:20:42 +01001271p3p440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001272 @$(MKCONFIG) $(@:_config=) ppc ppc4xx p3p440 prodrive
Stefan Roese5568e612005-11-22 13:20:42 +01001273
wdenk7ebf7442002-11-02 23:17:16 +00001274PCI405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001275 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pci405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001276
Stefan Roesea4c8d132006-06-02 16:18:04 +02001277pcs440ep_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001278 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pcs440ep
Stefan Roesea4c8d132006-06-02 16:18:04 +02001279
wdenkdb01a2e2004-04-15 23:14:49 +00001280PIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001281 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001282
stroese72cd5aa2003-09-12 08:57:15 +00001283PLU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001284 @$(MKCONFIG) $(@:_config=) ppc ppc4xx plu405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001285
stroese549826e2003-05-23 11:41:44 +00001286PMC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001287 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pmc405 esd
stroese549826e2003-05-23 11:41:44 +00001288
wdenk281e00a2004-08-01 22:48:16 +00001289PPChameleonEVB_config \
wdenke55ca7e2004-07-01 21:40:08 +00001290PPChameleonEVB_BA_25_config \
1291PPChameleonEVB_ME_25_config \
1292PPChameleonEVB_HI_25_config \
1293PPChameleonEVB_BA_33_config \
1294PPChameleonEVB_ME_33_config \
1295PPChameleonEVB_HI_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001296 @mkdir -p $(obj)include
1297 @ >$(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001298 @[ -z "$(findstring EVB_BA,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001299 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001300 echo "... BASIC model" ; \
1301 }
wdenk1d6f9722004-09-09 17:44:35 +00001302 @[ -z "$(findstring EVB_ME,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001303 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001304 echo "... MEDIUM model" ; \
1305 }
wdenk1d6f9722004-09-09 17:44:35 +00001306 @[ -z "$(findstring EVB_HI,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001307 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001308 echo "... HIGH-END model" ; \
1309 }
wdenke55ca7e2004-07-01 21:40:08 +00001310 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001311 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001312 echo "SysClk = 25MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001313 }
1314 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001315 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001316 echo "SysClk = 33MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001317 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001318 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk12f34242003-09-02 22:48:03 +00001319
wdenk652a10c2005-01-09 23:48:14 +00001320sbc405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001321 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sbc405
wdenk652a10c2005-01-09 23:48:14 +00001322
Stefan Roese430f1b02007-03-28 15:03:16 +02001323sequoia_config \
1324rainier_config: unconfig
1325 @mkdir -p $(obj)include
1326 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1327 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
1328 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Stefan Roese887e2ec2006-09-07 11:51:23 +02001329
Stefan Roese430f1b02007-03-28 15:03:16 +02001330sequoia_nand_config \
1331rainier_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001332 @mkdir -p $(obj)include $(obj)board/amcc/sequoia
1333 @mkdir -p $(obj)nand_spl/board/amcc/sequoia
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001334 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roese430f1b02007-03-28 15:03:16 +02001335 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1336 tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h
1337 @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001338 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1339 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
stroese72cd5aa2003-09-12 08:57:15 +00001340
Wolfgang Denk6d3e0102007-01-16 18:30:50 +01001341sc3_config:unconfig
Stefan Roese35d22f952007-08-10 10:42:25 +02001342 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sc3
Heiko Schocherca43ba12007-01-11 15:44:44 +01001343
John Otkend4024bb2007-07-26 17:49:11 +02001344taihu_config: unconfig
1345 @$(MKCONFIG) $(@:_config=) ppc ppc4xx taihu amcc
1346
Stefan Roese5fb692c2007-01-18 10:25:34 +01001347taishan_config: unconfig
1348 @$(MKCONFIG) $(@:_config=) ppc ppc4xx taishan amcc
1349
wdenk7ebf7442002-11-02 23:17:16 +00001350VOH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001351 @$(MKCONFIG) $(@:_config=) ppc ppc4xx voh405 esd
wdenk3bac3512003-03-12 10:41:04 +00001352
stroesec419d1d2004-12-16 18:44:40 +00001353VOM405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001354 @$(MKCONFIG) $(@:_config=) ppc ppc4xx vom405 esd
stroesec419d1d2004-12-16 18:44:40 +00001355
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001356CMS700_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001357 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001358
wdenk7ebf7442002-11-02 23:17:16 +00001359W7OLMC_config \
1360W7OLMG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001361 @$(MKCONFIG) $(@:_config=) ppc ppc4xx w7o
wdenk7ebf7442002-11-02 23:17:16 +00001362
Stefan Roese430f1b02007-03-28 15:03:16 +02001363# Walnut & Sycamore images are identical (recognized via PVR)
1364walnut_config \
1365sycamore_config: unconfig
1366 @$(MKCONFIG) -n $@ -a walnut ppc ppc4xx walnut amcc
wdenk7ebf7442002-11-02 23:17:16 +00001367
stroesec419d1d2004-12-16 18:44:40 +00001368WUH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001369 @$(MKCONFIG) $(@:_config=) ppc ppc4xx wuh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001370
wdenkdb01a2e2004-04-15 23:14:49 +00001371XPEDITE1K_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001372 @$(MKCONFIG) $(@:_config=) ppc ppc4xx xpedite1k
wdenkba56f622004-02-06 23:19:44 +00001373
Stefan Roese430f1b02007-03-28 15:03:16 +02001374yosemite_config \
1375yellowstone_config: unconfig
Stefan Roese700200c2007-01-30 17:04:19 +01001376 @mkdir -p $(obj)include
Stefan Roese430f1b02007-03-28 15:03:16 +02001377 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1378 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
Stefan Roese2aa54f62007-02-02 12:42:08 +01001379 @$(MKCONFIG) -n $@ -a yosemite ppc ppc4xx yosemite amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001380
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001381yucca_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001382 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yucca amcc
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001383
Stefan Roese779e9752007-08-14 14:44:41 +02001384zeus_config: unconfig
1385 @$(MKCONFIG) $(@:_config=) ppc ppc4xx zeus
1386
wdenk7ebf7442002-11-02 23:17:16 +00001387#########################################################################
wdenk983fda82004-10-28 00:09:35 +00001388## MPC8220 Systems
1389#########################################################################
Wolfgang Denkdc17fb62005-08-03 22:32:02 +02001390
1391Alaska8220_config \
1392Yukon8220_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001393 @$(MKCONFIG) $(@:_config=) ppc mpc8220 alaska
wdenk983fda82004-10-28 00:09:35 +00001394
wdenk12b43d52005-04-05 21:57:18 +00001395sorcery_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001396 @$(MKCONFIG) $(@:_config=) ppc mpc8220 sorcery
wdenk12b43d52005-04-05 21:57:18 +00001397
wdenk983fda82004-10-28 00:09:35 +00001398#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001399## MPC824x Systems
1400#########################################################################
wdenkefa329c2004-03-23 20:18:25 +00001401xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001402
wdenk03329902003-06-20 22:36:30 +00001403A3000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001404 @$(MKCONFIG) $(@:_config=) ppc mpc824x a3000
wdenk03329902003-06-20 22:36:30 +00001405
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001406barco_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001407 @$(MKCONFIG) $(@:_config=) ppc mpc824x barco
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001408
wdenk7ebf7442002-11-02 23:17:16 +00001409BMW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001410 @$(MKCONFIG) $(@:_config=) ppc mpc824x bmw
wdenk7ebf7442002-11-02 23:17:16 +00001411
wdenk3bac3512003-03-12 10:41:04 +00001412CPC45_config \
1413CPC45_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001414 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc824x cpc45
1415 @cd $(obj)include ; \
wdenk3bac3512003-03-12 10:41:04 +00001416 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1417 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1418 echo "... booting from 8-bit flash" ; \
1419 else \
1420 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1421 echo "... booting from 64-bit flash" ; \
1422 fi; \
1423 echo "export CONFIG_BOOT_ROM" >> config.mk;
1424
wdenk7ebf7442002-11-02 23:17:16 +00001425CU824_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001426 @$(MKCONFIG) $(@:_config=) ppc mpc824x cu824
wdenk7ebf7442002-11-02 23:17:16 +00001427
wdenk7abf0c52004-04-18 21:45:42 +00001428debris_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001429 @$(MKCONFIG) $(@:_config=) ppc mpc824x debris etin
wdenk7abf0c52004-04-18 21:45:42 +00001430
wdenk80885a92004-02-26 23:46:20 +00001431eXalion_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001432 @$(MKCONFIG) $(@:_config=) ppc mpc824x eXalion
wdenk80885a92004-02-26 23:46:20 +00001433
wdenk756f5862005-04-03 15:51:42 +00001434HIDDEN_DRAGON_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001435 @$(MKCONFIG) $(@:_config=) ppc mpc824x hidden_dragon
wdenk756f5862005-04-03 15:51:42 +00001436
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001437kvme080_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001438 @$(MKCONFIG) $(@:_config=) ppc mpc824x kvme080 etin
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001439
wdenk7ebf7442002-11-02 23:17:16 +00001440MOUSSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001441 @$(MKCONFIG) $(@:_config=) ppc mpc824x mousse
wdenk7ebf7442002-11-02 23:17:16 +00001442
1443MUSENKI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001444 @$(MKCONFIG) $(@:_config=) ppc mpc824x musenki
wdenk7ebf7442002-11-02 23:17:16 +00001445
wdenkb4676a22003-12-07 19:24:00 +00001446MVBLUE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001447 @$(MKCONFIG) $(@:_config=) ppc mpc824x mvblue
wdenkb4676a22003-12-07 19:24:00 +00001448
wdenk7ebf7442002-11-02 23:17:16 +00001449OXC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001450 @$(MKCONFIG) $(@:_config=) ppc mpc824x oxc
wdenk7ebf7442002-11-02 23:17:16 +00001451
1452PN62_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001453 @$(MKCONFIG) $(@:_config=) ppc mpc824x pn62
wdenk7ebf7442002-11-02 23:17:16 +00001454
1455Sandpoint8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001456 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001457
1458Sandpoint8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001459 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001460
wdenk466b7412004-07-10 22:35:59 +00001461sbc8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001462 @$(MKCONFIG) $(@:_config=) ppc mpc824x sbc8240
wdenk466b7412004-07-10 22:35:59 +00001463
wdenkd1cbe852003-06-28 17:24:46 +00001464SL8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001465 @$(MKCONFIG) $(@:_config=) ppc mpc824x sl8245
wdenkd1cbe852003-06-28 17:24:46 +00001466
wdenk7ebf7442002-11-02 23:17:16 +00001467utx8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001468 @$(MKCONFIG) $(@:_config=) ppc mpc824x utx8245
wdenk7ebf7442002-11-02 23:17:16 +00001469
1470#########################################################################
1471## MPC8260 Systems
1472#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001473
wdenk54387ac2003-10-08 22:45:44 +00001474atc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001475 @$(MKCONFIG) $(@:_config=) ppc mpc8260 atc
wdenk54387ac2003-10-08 22:45:44 +00001476
wdenk7ebf7442002-11-02 23:17:16 +00001477cogent_mpc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001478 @$(MKCONFIG) $(@:_config=) ppc mpc8260 cogent
wdenk7ebf7442002-11-02 23:17:16 +00001479
1480CPU86_config \
1481CPU86_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001482 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu86
1483 @cd $(obj)include ; \
wdenk7ebf7442002-11-02 23:17:16 +00001484 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1485 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1486 echo "... booting from 8-bit flash" ; \
1487 else \
1488 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1489 echo "... booting from 64-bit flash" ; \
1490 fi; \
1491 echo "export CONFIG_BOOT_ROM" >> config.mk;
1492
wdenk384cc682005-04-03 22:35:21 +00001493CPU87_config \
1494CPU87_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001495 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu87
1496 @cd $(obj)include ; \
wdenk384cc682005-04-03 22:35:21 +00001497 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1498 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1499 echo "... booting from 8-bit flash" ; \
1500 else \
1501 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1502 echo "... booting from 64-bit flash" ; \
1503 fi; \
1504 echo "export CONFIG_BOOT_ROM" >> config.mk;
1505
Wolfgang Denkf901a832005-08-06 01:42:58 +02001506ep8248_config \
1507ep8248E_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001508 @$(MKCONFIG) ep8248 ppc mpc8260 ep8248
Wolfgang Denkf901a832005-08-06 01:42:58 +02001509
wdenk7ebf7442002-11-02 23:17:16 +00001510ep8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001511 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep8260
wdenk7ebf7442002-11-02 23:17:16 +00001512
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001513ep82xxm_config: unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -06001514 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep82xxm
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001515
wdenk7ebf7442002-11-02 23:17:16 +00001516gw8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001517 @$(MKCONFIG) $(@:_config=) ppc mpc8260 gw8260
wdenk7ebf7442002-11-02 23:17:16 +00001518
1519hymod_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001520 @$(MKCONFIG) $(@:_config=) ppc mpc8260 hymod
wdenk7ebf7442002-11-02 23:17:16 +00001521
wdenk9dd41a72005-05-12 22:48:09 +00001522IDS8247_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001523 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ids8247
wdenk9dd41a72005-05-12 22:48:09 +00001524
wdenk7ebf7442002-11-02 23:17:16 +00001525IPHASE4539_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001526 @$(MKCONFIG) $(@:_config=) ppc mpc8260 iphase4539
wdenk7ebf7442002-11-02 23:17:16 +00001527
wdenkc3c7f862004-06-09 14:47:54 +00001528ISPAN_config \
1529ISPAN_REVB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001530 @mkdir -p $(obj)include
wdenkc3c7f862004-06-09 14:47:54 +00001531 @if [ "$(findstring _REVB_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001532 echo "#define CFG_REV_B" > $(obj)include/config.h ; \
wdenkc3c7f862004-06-09 14:47:54 +00001533 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001534 @$(MKCONFIG) -a ISPAN ppc mpc8260 ispan
wdenkc3c7f862004-06-09 14:47:54 +00001535
wdenk04a85b32004-04-15 18:22:41 +00001536MPC8260ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001537MPC8260ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001538MPC8260ADS_33MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001539MPC8260ADS_33MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001540MPC8260ADS_40MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001541MPC8260ADS_40MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001542MPC8272ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001543MPC8272ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001544PQ2FADS_config \
wdenk901787d2005-04-03 23:22:21 +00001545PQ2FADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001546PQ2FADS-VR_config \
wdenk901787d2005-04-03 23:22:21 +00001547PQ2FADS-VR_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001548PQ2FADS-ZU_config \
wdenk901787d2005-04-03 23:22:21 +00001549PQ2FADS-ZU_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001550PQ2FADS-ZU_66MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001551PQ2FADS-ZU_66MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001552 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001553 @mkdir -p $(obj)include
1554 @mkdir -p $(obj)board/mpc8260ads
wdenk04a85b32004-04-15 18:22:41 +00001555 $(if $(findstring PQ2FADS,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001556 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > $(obj)include/config.h, \
1557 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h)
wdenk04a85b32004-04-15 18:22:41 +00001558 $(if $(findstring MHz,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001559 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \
wdenk04a85b32004-04-15 18:22:41 +00001560 $(if $(findstring VR,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001561 @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h))
wdenk901787d2005-04-03 23:22:21 +00001562 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001563 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/mpc8260ads/config.tmp ; \
wdenk901787d2005-04-03 23:22:21 +00001564 echo "... with lowboot configuration" ; \
1565 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001566 @$(MKCONFIG) -a MPC8260ADS ppc mpc8260 mpc8260ads
wdenk7ebf7442002-11-02 23:17:16 +00001567
wdenkdb2f721f2003-03-06 00:58:30 +00001568MPC8266ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001569 @$(MKCONFIG) $(@:_config=) ppc mpc8260 mpc8266ads
wdenkdb2f721f2003-03-06 00:58:30 +00001570
wdenkefa329c2004-03-23 20:18:25 +00001571# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk10f67012003-03-25 18:06:06 +00001572PM825_config \
wdenkefa329c2004-03-23 20:18:25 +00001573PM825_ROMBOOT_config \
1574PM825_BIGFLASH_config \
1575PM825_ROMBOOT_BIGFLASH_config \
wdenk7ebf7442002-11-02 23:17:16 +00001576PM826_config \
wdenkefa329c2004-03-23 20:18:25 +00001577PM826_ROMBOOT_config \
1578PM826_BIGFLASH_config \
1579PM826_ROMBOOT_BIGFLASH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001580 @mkdir -p $(obj)include
1581 @mkdir -p $(obj)board/pm826
wdenkefa329c2004-03-23 20:18:25 +00001582 @if [ "$(findstring PM825_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001583 echo "#define CONFIG_PCI" >$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001584 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001585 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001586 fi
1587 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1588 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001589 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1590 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001591 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1592 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001593 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001594 fi; \
1595 else \
wdenk7ebf7442002-11-02 23:17:16 +00001596 echo "... booting from 64-bit flash" ; \
wdenkefa329c2004-03-23 20:18:25 +00001597 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1598 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001599 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
1600 echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001601 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001602 echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001603 fi; \
1604 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001605 @$(MKCONFIG) -a PM826 ppc mpc8260 pm826
wdenkefa329c2004-03-23 20:18:25 +00001606
1607PM828_config \
1608PM828_PCI_config \
1609PM828_ROMBOOT_config \
1610PM828_ROMBOOT_PCI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001611 @mkdir -p $(obj)include
1612 @mkdir -p $(obj)board/pm826
Marian Balakowicz17076262006-04-05 20:37:11 +02001613 @if [ "$(findstring _PCI_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001614 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001615 echo "... with PCI enabled" ; \
1616 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001617 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001618 fi
1619 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1620 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001621 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1622 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001623 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001624 @$(MKCONFIG) -a PM828 ppc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +00001625
1626ppmc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001627 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ppmc8260
wdenk7ebf7442002-11-02 23:17:16 +00001628
wdenk8b0bfc62005-04-03 23:11:38 +00001629Rattler8248_config \
1630Rattler_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001631 @mkdir -p $(obj)include
wdenk8b0bfc62005-04-03 23:11:38 +00001632 $(if $(findstring 8248,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001633 @echo "#define CONFIG_MPC8248" > $(obj)include/config.h)
1634 @$(MKCONFIG) -a Rattler ppc mpc8260 rattler
wdenk8b0bfc62005-04-03 23:11:38 +00001635
wdenk7ebf7442002-11-02 23:17:16 +00001636RPXsuper_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001637 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rpxsuper
wdenk7ebf7442002-11-02 23:17:16 +00001638
1639rsdproto_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001640 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rsdproto
wdenk7ebf7442002-11-02 23:17:16 +00001641
1642sacsng_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001643 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sacsng
wdenk7ebf7442002-11-02 23:17:16 +00001644
1645sbc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001646 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sbc8260
wdenk7ebf7442002-11-02 23:17:16 +00001647
1648SCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001649 @$(MKCONFIG) $(@:_config=) ppc mpc8260 SCM siemens
wdenk7ebf7442002-11-02 23:17:16 +00001650
wdenk27b207f2003-07-24 23:38:38 +00001651TQM8255_AA_config \
1652TQM8260_AA_config \
1653TQM8260_AB_config \
1654TQM8260_AC_config \
1655TQM8260_AD_config \
1656TQM8260_AE_config \
1657TQM8260_AF_config \
1658TQM8260_AG_config \
1659TQM8260_AH_config \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001660TQM8260_AI_config \
wdenk27b207f2003-07-24 23:38:38 +00001661TQM8265_AA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001662 @mkdir -p $(obj)include
wdenk27b207f2003-07-24 23:38:38 +00001663 @case "$@" in \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001664 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
1665 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
1666 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1667 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1668 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1669 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
1670 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1671 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
1672 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
1673 TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1674 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
wdenk27b207f2003-07-24 23:38:38 +00001675 esac; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001676 >$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001677 if [ "$${CTYPE}" != "MPC8260" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001678 echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001679 fi; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001680 echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001681 echo "... with $${CFREQ}MHz system clock" ; \
1682 if [ "$${CACHE}" == "yes" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001683 echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001684 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001685 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001686 echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001687 echo "... without L2 Cache support" ; \
wdenk27b207f2003-07-24 23:38:38 +00001688 fi; \
1689 if [ "$${BMODE}" == "60x" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001690 echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001691 echo "... with 60x Bus Mode" ; \
1692 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001693 echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001694 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001695 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001696 @$(MKCONFIG) -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +00001697
Heiko Schocherfa230442006-12-21 17:17:02 +01001698TQM8272_config: unconfig
1699 @$(MKCONFIG) -a TQM8272 ppc mpc8260 tqm8272
1700
wdenkba91e262005-05-30 23:55:42 +00001701VoVPN-GW_66MHz_config \
1702VoVPN-GW_100MHz_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001703 @mkdir -p $(obj)include
1704 @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h
1705 @$(MKCONFIG) -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
wdenkba91e262005-05-30 23:55:42 +00001706
wdenk54387ac2003-10-08 22:45:44 +00001707ZPC1900_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001708 @$(MKCONFIG) $(@:_config=) ppc mpc8260 zpc1900
wdenk7aa78612003-05-03 15:50:43 +00001709
wdenk4e5ca3e2003-12-08 01:34:36 +00001710#########################################################################
1711## Coldfire
1712#########################################################################
1713
TsiChungLiew4a442d32007-08-16 19:23:50 -05001714M5235EVB_config \
1715M5235EVB_Flash16_config \
1716M5235EVB_Flash32_config: unconfig
1717 @case "$@" in \
1718 M5235EVB_config) FLASH=16;; \
1719 M5235EVB_Flash16_config) FLASH=16;; \
1720 M5235EVB_Flash32_config) FLASH=32;; \
1721 esac; \
1722 >include/config.h ; \
1723 if [ "$${FLASH}" != "16" ] ; then \
1724 echo "#define NORFLASH_PS32BIT 1" >> include/config.h ; \
1725 echo "TEXT_BASE = 0xFFC00000" > $(obj)board/freescale/m5235evb/config.tmp ; \
1726 cp $(obj)board/freescale/m5235evb/u-boot.32 $(obj)board/freescale/m5235evb/u-boot.lds ; \
1727 else \
1728 echo "TEXT_BASE = 0xFFE00000" > $(obj)board/freescale/m5235evb/config.tmp ; \
1729 cp $(obj)board/freescale/m5235evb/u-boot.16 $(obj)board/freescale/m5235evb/u-boot.lds ; \
1730 fi
1731 @$(MKCONFIG) -a M5235EVB m68k mcf523x m5235evb freescale
1732
TsiChungLiewa605aac2007-08-16 05:04:31 -05001733M5249EVB_config : unconfig
1734 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5249evb freescale
1735
TsiChungLiewa1436a82007-08-16 13:20:50 -05001736M5253EVBE_config : unconfig
1737 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5253evbe freescale
1738
Wolfgang Denk74812662005-12-12 16:06:05 +01001739cobra5272_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001740 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272
Wolfgang Denk74812662005-12-12 16:06:05 +01001741
Wolfgang Denk4176c792006-06-10 19:27:47 +02001742EB+MCF-EV123_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001743 @mkdir -p $(obj)include
1744 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1745 @ >$(obj)include/config.h
1746 @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1747 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001748
1749EB+MCF-EV123_internal_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001750 @mkdir -p $(obj)include
1751 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1752 @ >$(obj)include/config.h
1753 @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1754 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001755
Bartlomiej Siekadaa6e412006-12-20 00:27:32 +01001756idmr_config : unconfig
1757 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 idmr
1758
Wolfgang Denk4176c792006-06-10 19:27:47 +02001759M5271EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001760 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb
Wolfgang Denk4176c792006-06-10 19:27:47 +02001761
wdenk4e5ca3e2003-12-08 01:34:36 +00001762M5272C3_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001763 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3
wdenk4e5ca3e2003-12-08 01:34:36 +00001764
1765M5282EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001766 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb
wdenk4e5ca3e2003-12-08 01:34:36 +00001767
stroesec419d1d2004-12-16 18:44:40 +00001768TASREG_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001769 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd
stroesec419d1d2004-12-16 18:44:40 +00001770
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001771r5200_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001772 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 r5200
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001773
TsiChung Liew8e585f02007-06-18 13:50:13 -05001774M5329AFEE_config \
1775M5329BFEE_config : unconfig
1776 @case "$@" in \
1777 M5329AFEE_config) NAND=0;; \
1778 M5329BFEE_config) NAND=16;; \
1779 esac; \
1780 >include/config.h ; \
1781 if [ "$${NAND}" != "0" ] ; then \
TsiChungLiewab77bc52007-08-15 15:39:17 -05001782 echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \
TsiChung Liew8e585f02007-06-18 13:50:13 -05001783 fi
1784 @$(MKCONFIG) -a M5329EVB m68k mcf532x m5329evb freescale
1785
TsiChungLiew8ae158c2007-08-16 15:05:11 -05001786M54455EVB_config \
1787M54455EVB_atmel_config \
1788M54455EVB_intel_config \
1789M54455EVB_a33_config \
1790M54455EVB_a66_config \
1791M54455EVB_i33_config \
1792M54455EVB_i66_config : unconfig
1793 @case "$@" in \
1794 M54455EVB_config) FLASH=ATMEL; FREQ=33333333;; \
1795 M54455EVB_atmel_config) FLASH=ATMEL; FREQ=33333333;; \
1796 M54455EVB_intel_config) FLASH=INTEL; FREQ=33333333;; \
1797 M54455EVB_a33_config) FLASH=ATMEL; FREQ=33333333;; \
1798 M54455EVB_a66_config) FLASH=ATMEL; FREQ=66666666;; \
1799 M54455EVB_i33_config) FLASH=INTEL; FREQ=33333333;; \
1800 M54455EVB_i66_config) FLASH=INTEL; FREQ=66666666;; \
1801 esac; \
1802 >include/config.h ; \
1803 if [ "$${FLASH}" == "INTEL" ] ; then \
TsiChungLiew4a442d32007-08-16 19:23:50 -05001804 echo "#undef CFG_ATMEL_BOOT" >> $(obj)include/config.h ; \
TsiChungLiewe8ee8f32007-10-25 17:16:22 -05001805 echo "TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54455evb/config.tmp ; \
1806 cp $(obj)board/freescale/m54455evb/u-boot.int $(obj)board/freescale/m54455evb/u-boot.lds ; \
TsiChungLiew8ae158c2007-08-16 15:05:11 -05001807 echo "... with INTEL boot..." ; \
1808 else \
TsiChungLiew4a442d32007-08-16 19:23:50 -05001809 echo "#define CFG_ATMEL_BOOT" >> $(obj)include/config.h ; \
TsiChungLiewe8ee8f32007-10-25 17:16:22 -05001810 echo "TEXT_BASE = 0x04000000" > $(obj)board/freescale/m54455evb/config.tmp ; \
1811 cp $(obj)board/freescale/m54455evb/u-boot.atm $(obj)board/freescale/m54455evb/u-boot.lds ; \
TsiChungLiew8ae158c2007-08-16 15:05:11 -05001812 echo "... with ATMEL boot..." ; \
1813 fi; \
TsiChungLiew4a442d32007-08-16 19:23:50 -05001814 echo "#define CFG_INPUT_CLKSRC $${FREQ}" >> $(obj)include/config.h ; \
TsiChungLiew8ae158c2007-08-16 15:05:11 -05001815 echo "... with $${FREQ}Hz input clock"
1816 @$(MKCONFIG) -a M54455EVB m68k mcf5445x m54455evb freescale
1817
wdenk7ebf7442002-11-02 23:17:16 +00001818#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -05001819## MPC83xx Systems
1820#########################################################################
1821
Kim Phillips5c5d3242007-04-25 12:34:38 -05001822MPC8313ERDB_33_config \
1823MPC8313ERDB_66_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001824 @mkdir -p $(obj)include
1825 @echo "" >$(obj)include/config.h ; \
Kim Phillips5c5d3242007-04-25 12:34:38 -05001826 if [ "$(findstring _33_,$@)" ] ; then \
1827 echo -n "...33M ..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001828 echo "#define CFG_33MHZ" >>$(obj)include/config.h ; \
Kim Phillips5c5d3242007-04-25 12:34:38 -05001829 fi ; \
1830 if [ "$(findstring _66_,$@)" ] ; then \
1831 echo -n "...66M..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001832 echo "#define CFG_66MHZ" >>$(obj)include/config.h ; \
Kim Phillips5c5d3242007-04-25 12:34:38 -05001833 fi ;
Kim Phillipse58fe952007-08-16 22:53:09 -05001834 @$(MKCONFIG) -a MPC8313ERDB ppc mpc83xx mpc8313erdb freescale
Kim Phillips5c5d3242007-04-25 12:34:38 -05001835
Kim Phillips1c274c42007-07-25 19:25:33 -05001836MPC8323ERDB_config: unconfig
1837 @$(MKCONFIG) -a MPC8323ERDB ppc mpc83xx mpc8323erdb freescale
1838
Kim Phillips4decd842007-01-24 17:18:37 -06001839MPC832XEMDS_config \
1840MPC832XEMDS_HOST_33_config \
1841MPC832XEMDS_HOST_66_config \
Tony Li281df452007-10-18 17:47:19 +08001842MPC832XEMDS_SLAVE_config \
1843MPC832XEMDS_ATM_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001844 @mkdir -p $(obj)include
1845 @echo "" >$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001846 if [ "$(findstring _HOST_,$@)" ] ; then \
1847 echo -n "... PCI HOST " ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001848 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001849 fi ; \
1850 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1851 echo "...PCI SLAVE 66M" ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001852 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
1853 echo "#define CONFIG_PCISLAVE" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001854 fi ; \
1855 if [ "$(findstring _33_,$@)" ] ; then \
1856 echo -n "...33M ..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001857 echo "#define PCI_33M" >>$(obj)include/config.h ; \
Tony Li281df452007-10-18 17:47:19 +08001858 echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06001859 fi ; \
1860 if [ "$(findstring _66_,$@)" ] ; then \
1861 echo -n "...66M..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001862 echo "#define PCI_66M" >>$(obj)include/config.h ; \
Tony Li281df452007-10-18 17:47:19 +08001863 echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
1864 fi ; \
1865 if [ "$(findstring _ATM_,$@)" ] ; then \
1866 echo -n "...ATM..." ; \
1867 echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
1868 echo "#define CONFIG_PQ_MDS_PIB_ATM 1" >>$(obj)include/config.h ; \
Wolfgang Denk05bf4912007-10-21 01:01:17 +02001869 fi ;
Kim Phillipse58fe952007-08-16 22:53:09 -05001870 @$(MKCONFIG) -a MPC832XEMDS ppc mpc83xx mpc832xemds freescale
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001871
Marian Balakowicz991425f2006-03-14 16:24:38 +01001872MPC8349EMDS_config: unconfig
Kim Phillipse58fe952007-08-16 22:53:09 -05001873 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349emds freescale
Marian Balakowicz991425f2006-03-14 16:24:38 +01001874
Timur Tabi7a78f142007-01-31 15:54:29 -06001875MPC8349ITX_config \
1876MPC8349ITX_LOWBOOT_config \
1877MPC8349ITXGP_config: unconfig
1878 @mkdir -p $(obj)include
Sam Sparkse21659e2007-09-14 11:14:42 -06001879 @mkdir -p $(obj)board/freescale/mpc8349itx
Timur Tabi7a78f142007-01-31 15:54:29 -06001880 @echo "#define CONFIG_$(subst _LOWBOOT,,$(@:_config=))" >> $(obj)include/config.h
1881 @if [ "$(findstring GP,$@)" ] ; then \
Sam Sparkse21659e2007-09-14 11:14:42 -06001882 echo "TEXT_BASE = 0xFE000000" >$(obj)board/freescale/mpc8349itx/config.tmp ; \
Timur Tabi7a78f142007-01-31 15:54:29 -06001883 fi
1884 @if [ "$(findstring LOWBOOT,$@)" ] ; then \
Sam Sparkse21659e2007-09-14 11:14:42 -06001885 echo "TEXT_BASE = 0xFE000000" >$(obj)board/freescale/mpc8349itx/config.tmp ; \
Timur Tabi7a78f142007-01-31 15:54:29 -06001886 fi
Kim Phillipse58fe952007-08-16 22:53:09 -05001887 @$(MKCONFIG) -a -n $(@:_config=) MPC8349ITX ppc mpc83xx mpc8349itx freescale
Kim Phillips4decd842007-01-24 17:18:37 -06001888
Dave Liu5f820432006-11-03 19:33:44 -06001889MPC8360EMDS_config \
1890MPC8360EMDS_HOST_33_config \
1891MPC8360EMDS_HOST_66_config \
Tony Li281df452007-10-18 17:47:19 +08001892MPC8360EMDS_SLAVE_config \
1893MPC8360EMDS_ATM_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001894 @mkdir -p $(obj)include
1895 @echo "" >$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001896 if [ "$(findstring _HOST_,$@)" ] ; then \
1897 echo -n "... PCI HOST " ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001898 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001899 fi ; \
1900 if [ "$(findstring _SLAVE_,$@)" ] ; then \
1901 echo "...PCI SLAVE 66M" ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001902 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
1903 echo "#define CONFIG_PCISLAVE" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001904 fi ; \
1905 if [ "$(findstring _33_,$@)" ] ; then \
1906 echo -n "...33M ..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001907 echo "#define PCI_33M" >>$(obj)include/config.h ; \
Tony Li281df452007-10-18 17:47:19 +08001908 echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001909 fi ; \
1910 if [ "$(findstring _66_,$@)" ] ; then \
1911 echo -n "...66M..." ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001912 echo "#define PCI_66M" >>$(obj)include/config.h ; \
Tony Li281df452007-10-18 17:47:19 +08001913 echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
1914 fi ; \
1915 if [ "$(findstring _ATM_,$@)" ] ; then \
1916 echo -n "...ATM..." ; \
1917 echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
1918 echo "#define CONFIG_PQ_MDS_PIB_ATM 1" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06001919 fi ;
Kim Phillipse58fe952007-08-16 22:53:09 -05001920 @$(MKCONFIG) -a MPC8360EMDS ppc mpc83xx mpc8360emds freescale
Dave Liu5f820432006-11-03 19:33:44 -06001921
Paul Gortmaker91e25762007-01-16 11:38:14 -05001922sbc8349_config: unconfig
1923 @$(MKCONFIG) $(@:_config=) ppc mpc83xx sbc8349
1924
Kim Phillips4decd842007-01-24 17:18:37 -06001925TQM834x_config: unconfig
1926 @$(MKCONFIG) $(@:_config=) ppc mpc83xx tqm834x
1927
Timur Tabi2ad6b512006-10-31 18:44:42 -06001928
Eran Libertyf046ccd2005-07-28 10:08:46 -05001929#########################################################################
wdenk42d1f032003-10-15 23:53:47 +00001930## MPC85xx Systems
1931#########################################################################
1932
wdenk0ac6f8b2004-07-09 23:27:13 +00001933MPC8540ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001934 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8540ads
wdenk42d1f032003-10-15 23:53:47 +00001935
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001936MPC8540EVAL_config \
1937MPC8540EVAL_33_config \
1938MPC8540EVAL_66_config \
1939MPC8540EVAL_33_slave_config \
1940MPC8540EVAL_66_slave_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001941 @mkdir -p $(obj)include
1942 @echo "" >$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001943 if [ "$(findstring _33_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001944 echo "... 33 MHz PCI" ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001945 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001946 echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02001947 echo "... 66 MHz PCI" ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001948 fi ; \
1949 if [ "$(findstring _slave_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001950 echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001951 echo " slave" ; \
1952 else \
1953 echo " host" ; \
1954 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001955 @$(MKCONFIG) -a MPC8540EVAL ppc mpc85xx mpc8540eval
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001956
wdenk0ac6f8b2004-07-09 23:27:13 +00001957MPC8560ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001958 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8560ads
wdenk42d1f032003-10-15 23:53:47 +00001959
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07001960MPC8541CDS_legacy_config \
wdenk03f5c552004-10-10 21:21:55 +00001961MPC8541CDS_config: unconfig
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07001962 @mkdir -p $(obj)include
1963 @echo "" >$(obj)include/config.h ; \
1964 if [ "$(findstring _legacy_,$@)" ] ; then \
1965 echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \
1966 echo "... legacy" ; \
1967 fi
1968 @$(MKCONFIG) -a MPC8541CDS ppc mpc85xx mpc8541cds cds
wdenk03f5c552004-10-10 21:21:55 +00001969
Andy Fleming81f481c2007-04-23 02:24:28 -05001970MPC8544DS_config: unconfig
1971 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8544ds freescale
1972
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07001973MPC8548CDS_legacy_config \
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001974MPC8548CDS_config: unconfig
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07001975 @mkdir -p $(obj)include
1976 @echo "" >$(obj)include/config.h ; \
1977 if [ "$(findstring _legacy_,$@)" ] ; then \
1978 echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \
1979 echo "... legacy" ; \
1980 fi
1981 @$(MKCONFIG) -a MPC8548CDS ppc mpc85xx mpc8548cds cds
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001982
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07001983MPC8555CDS_legacy_config \
wdenk03f5c552004-10-10 21:21:55 +00001984MPC8555CDS_config: unconfig
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07001985 @mkdir -p $(obj)include
1986 @echo "" >$(obj)include/config.h ; \
1987 if [ "$(findstring _legacy_,$@)" ] ; then \
1988 echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \
1989 echo "... legacy" ; \
1990 fi
1991 @$(MKCONFIG) -a MPC8555CDS ppc mpc85xx mpc8555cds cds
wdenk7abf0c52004-04-18 21:45:42 +00001992
Andy Fleming67431052007-04-23 02:54:25 -05001993MPC8568MDS_config: unconfig
1994 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8568mds
1995
wdenk384cc682005-04-03 22:35:21 +00001996PM854_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001997 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm854
wdenk384cc682005-04-03 22:35:21 +00001998
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001999PM856_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002000 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm856
Wolfgang Denkb20d0032005-08-05 12:19:30 +02002001
wdenkc15f3122004-10-10 22:44:24 +00002002sbc8540_config \
2003sbc8540_33_config \
2004sbc8540_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002005 @mkdir -p $(obj)include
wdenkc15f3122004-10-10 22:44:24 +00002006 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002007 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00002008 echo "... 66 MHz PCI" ; \
2009 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002010 >$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00002011 echo "... 33 MHz PCI" ; \
2012 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02002013 @$(MKCONFIG) -a SBC8540 ppc mpc85xx sbc8560
wdenkc15f3122004-10-10 22:44:24 +00002014
wdenk466b7412004-07-10 22:35:59 +00002015sbc8560_config \
2016sbc8560_33_config \
2017sbc8560_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002018 @mkdir -p $(obj)include
wdenk8b07a112004-07-10 21:45:47 +00002019 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002020 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00002021 echo "... 66 MHz PCI" ; \
2022 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002023 >$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00002024 echo "... 33 MHz PCI" ; \
2025 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02002026 @$(MKCONFIG) -a sbc8560 ppc mpc85xx sbc8560
wdenk8b07a112004-07-10 21:45:47 +00002027
wdenk03f5c552004-10-10 21:21:55 +00002028stxgp3_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002029 @$(MKCONFIG) $(@:_config=) ppc mpc85xx stxgp3
wdenk03f5c552004-10-10 21:21:55 +00002030
Wolfgang Denkee152982007-05-31 17:20:09 +02002031stxssa_config \
2032stxssa_4M_config: unconfig
2033 @mkdir -p $(obj)include
2034 @if [ "$(findstring _4M_,$@)" ] ; then \
2035 echo "#define CONFIG_STXSSA_4M" >>$(obj)include/config.h ; \
2036 echo "... with 4 MiB flash memory" ; \
2037 else \
2038 >$(obj)include/config.h ; \
2039 fi
2040 @$(MKCONFIG) -a stxssa ppc mpc85xx stxssa
Dan Malek35171dc2007-01-05 09:15:34 +01002041
Stefan Roesed96f41e2005-11-30 13:06:40 +01002042TQM8540_config \
2043TQM8541_config \
2044TQM8555_config \
2045TQM8560_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002046 @mkdir -p $(obj)include
Wolfgang Denka889bd22005-12-06 15:02:31 +01002047 @CTYPE=$(subst TQM,,$(@:_config=)); \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002048 >$(obj)include/config.h ; \
Stefan Roesed96f41e2005-11-30 13:06:40 +01002049 echo "... TQM"$${CTYPE}; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002050 echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \
2051 echo "#define CONFIG_TQM$${CTYPE}">>$(obj)include/config.h; \
2052 echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \
2053 echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>$(obj)include/config.h; \
Grant Likely8a783a62007-09-18 12:24:57 -06002054 echo "#define CFG_BOOTFILE_PATH \"/tftpboot/tqm$${CTYPE}/uImage\"">>$(obj)include/config.h
Marian Balakowiczf9328632006-09-01 19:49:50 +02002055 @$(MKCONFIG) -a TQM85xx ppc mpc85xx tqm85xx
wdenkf5c5ef42005-04-05 16:26:47 +00002056
wdenk42d1f032003-10-15 23:53:47 +00002057#########################################################################
Jon Loeligerdebb7352006-04-26 17:58:56 -05002058## MPC86xx Systems
2059#########################################################################
2060
2061MPC8641HPCN_config: unconfig
Jon Loeliger4ce91772007-08-15 12:20:40 -05002062 @$(MKCONFIG) $(@:_config=) ppc mpc86xx mpc8641hpcn freescale
Jon Loeligerdebb7352006-04-26 17:58:56 -05002063
Joe Hammanc646bba2007-08-09 15:11:03 -05002064sbc8641d_config: unconfig
2065 @./mkconfig $(@:_config=) ppc mpc86xx sbc8641d
Jon Loeligerdebb7352006-04-26 17:58:56 -05002066
2067#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00002068## 74xx/7xx Systems
2069#########################################################################
2070
wdenkc7de8292002-11-19 11:04:11 +00002071AmigaOneG3SE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002072 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
wdenkc7de8292002-11-19 11:04:11 +00002073
wdenk15647dc2003-10-09 19:00:25 +00002074BAB7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002075 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx bab7xx eltec
wdenk15647dc2003-10-09 19:00:25 +00002076
Wolfgang Denk05bf4912007-10-21 01:01:17 +02002077CPCI750_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002078 @$(MKCONFIG) CPCI750 ppc 74xx_7xx cpci750 esd
stroesec419d1d2004-12-16 18:44:40 +00002079
Wolfgang Denk05bf4912007-10-21 01:01:17 +02002080DB64360_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002081 @$(MKCONFIG) DB64360 ppc 74xx_7xx db64360 Marvell
wdenk3a473b22004-01-03 00:43:19 +00002082
Wolfgang Denk05bf4912007-10-21 01:01:17 +02002083DB64460_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002084 @$(MKCONFIG) DB64460 ppc 74xx_7xx db64460 Marvell
wdenk3a473b22004-01-03 00:43:19 +00002085
wdenk15647dc2003-10-09 19:00:25 +00002086ELPPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002087 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx elppc eltec
wdenk15647dc2003-10-09 19:00:25 +00002088
wdenk7ebf7442002-11-02 23:17:16 +00002089EVB64260_config \
2090EVB64260_750CX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002091 @$(MKCONFIG) EVB64260 ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00002092
roy zang4c527832006-11-02 18:49:51 +08002093mpc7448hpc2_config: unconfig
roy zangee311212006-12-01 11:47:36 +08002094 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx mpc7448hpc2
roy zang4c527832006-11-02 18:49:51 +08002095
wdenk15647dc2003-10-09 19:00:25 +00002096P3G4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002097 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00002098
Stefan Roese1eac2a72006-11-29 15:42:37 +01002099p3m750_config \
2100p3m7448_config: unconfig
2101 @mkdir -p $(obj)include
2102 @if [ "$(findstring 750_,$@)" ] ; then \
2103 echo "#define CONFIG_P3M750" >>$(obj)include/config.h ; \
2104 else \
2105 echo "#define CONFIG_P3M7448" >>$(obj)include/config.h ; \
2106 fi
2107 @$(MKCONFIG) -a p3mx ppc 74xx_7xx p3mx prodrive
2108
wdenk7ebf7442002-11-02 23:17:16 +00002109PCIPPC2_config \
2110PCIPPC6_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002111 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx pcippc2
wdenk7ebf7442002-11-02 23:17:16 +00002112
wdenk15647dc2003-10-09 19:00:25 +00002113ZUMA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002114 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk12f34242003-09-02 22:48:03 +00002115
Heiko Schocherf5e0d032006-06-19 11:02:41 +02002116ppmc7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002117 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx ppmc7xx
Wolfgang Denkb87dfd22006-07-19 13:50:38 +02002118
wdenk7ebf7442002-11-02 23:17:16 +00002119#========================================================================
2120# ARM
2121#========================================================================
2122#########################################################################
2123## StrongARM Systems
2124#########################################################################
2125
wdenkea66bc82004-04-15 23:23:39 +00002126assabet_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002127 @$(MKCONFIG) $(@:_config=) arm sa1100 assabet
wdenkea66bc82004-04-15 23:23:39 +00002128
wdenk7ebf7442002-11-02 23:17:16 +00002129dnp1110_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002130 @$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110
wdenk7ebf7442002-11-02 23:17:16 +00002131
wdenk855a4962004-03-14 18:23:55 +00002132gcplus_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002133 @$(MKCONFIG) $(@:_config=) arm sa1100 gcplus
wdenk855a4962004-03-14 18:23:55 +00002134
2135lart_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002136 @$(MKCONFIG) $(@:_config=) arm sa1100 lart
wdenk855a4962004-03-14 18:23:55 +00002137
wdenk7ebf7442002-11-02 23:17:16 +00002138shannon_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002139 @$(MKCONFIG) $(@:_config=) arm sa1100 shannon
wdenk7ebf7442002-11-02 23:17:16 +00002140
2141#########################################################################
wdenk2e5983d2003-07-15 20:04:06 +00002142## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00002143#########################################################################
2144
wdenkb0639ca2003-09-17 22:48:07 +00002145xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk43d96162003-03-06 00:02:04 +00002146
wdenk3ff02c22004-06-09 15:25:53 +00002147xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
wdenk63e73c92004-02-23 22:22:28 +00002148
wdenka56bd922004-06-06 23:13:55 +00002149xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
2150
wdenka85f9f22005-04-06 13:52:31 +00002151at91rm9200dk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002152 @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00002153
2154cmc_pu2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002155 @$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00002156
Wolfgang Denk645da512005-10-05 02:00:09 +02002157csb637_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002158 @$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200
Wolfgang Denk645da512005-10-05 02:00:09 +02002159
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02002160mp2usb_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002161 @$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02002162
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002163
Wolfgang Denk74f43042005-09-25 01:48:28 +02002164########################################################################
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002165## ARM Integrator boards - see doc/README-integrator for more info.
2166integratorap_config \
2167ap_config \
2168ap966_config \
2169ap922_config \
2170ap922_XA10_config \
2171ap7_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002172ap720t_config \
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002173ap920t_config \
2174ap926ejs_config \
2175ap946es_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02002176 @board/integratorap/split_by_variant.sh $@
wdenk3d3befa2004-03-14 15:06:13 +00002177
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002178integratorcp_config \
2179cp_config \
2180cp920t_config \
2181cp926ejs_config \
2182cp946es_config \
2183cp1136_config \
2184cp966_config \
2185cp922_config \
2186cp922_XA10_config \
2187cp1026_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02002188 @board/integratorcp/split_by_variant.sh $@
wdenk25d67122004-12-10 11:40:40 +00002189
Wolfgang Denk99b0d282005-10-05 00:19:34 +02002190kb9202_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002191 @$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200
Wolfgang Denk99b0d282005-10-05 00:19:34 +02002192
wdenkf832d8a2004-06-10 21:55:33 +00002193lpd7a400_config \
2194lpd7a404_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002195 @$(MKCONFIG) $(@:_config=) arm lh7a40x lpd7a40x
wdenk3d3befa2004-03-14 15:06:13 +00002196
wdenk281e00a2004-08-01 22:48:16 +00002197mx1ads_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002198 @$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002199
2200mx1fs2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002201 @$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002202
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002203netstar_32_config \
2204netstar_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002205 @mkdir -p $(obj)include
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002206 @if [ "$(findstring _32_,$@)" ] ; then \
2207 echo "... 32MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002208 echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002209 else \
2210 echo "... 64MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002211 echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002212 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02002213 @$(MKCONFIG) -a netstar arm arm925t netstar
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002214
wdenk2e5983d2003-07-15 20:04:06 +00002215omap1510inn_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002216 @$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn
wdenk2e5983d2003-07-15 20:04:06 +00002217
wdenk1eaeb582004-06-08 00:22:43 +00002218omap5912osk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002219 @$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk NULL omap
wdenk1eaeb582004-06-08 00:22:43 +00002220
Sergey Kubushync74b2102007-08-10 20:26:18 +02002221davinci_dvevm_config : unconfig
2222 @$(MKCONFIG) $(@:_config=) arm arm926ejs dv-evm davinci davinci
2223
2224davinci_schmoogie_config : unconfig
2225 @$(MKCONFIG) $(@:_config=) arm arm926ejs schmoogie davinci davinci
2226
2227davinci_sonata_config : unconfig
2228 @$(MKCONFIG) $(@:_config=) arm arm926ejs sonata davinci davinci
2229
wdenk63e73c92004-02-23 22:22:28 +00002230omap1610inn_config \
2231omap1610inn_cs0boot_config \
2232omap1610inn_cs3boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00002233omap1610inn_cs_autoboot_config \
wdenk63e73c92004-02-23 22:22:28 +00002234omap1610h2_config \
2235omap1610h2_cs0boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00002236omap1610h2_cs3boot_config \
2237omap1610h2_cs_autoboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002238 @mkdir -p $(obj)include
wdenk63e73c92004-02-23 22:22:28 +00002239 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002240 echo "#define CONFIG_CS0_BOOT" >> .$(obj)include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00002241 echo "... configured for CS0 boot"; \
wdenk3ff02c22004-06-09 15:25:53 +00002242 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002243 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)include/config.h ; \
wdenk3ff02c22004-06-09 15:25:53 +00002244 echo "... configured for CS_AUTO boot"; \
wdenk63e73c92004-02-23 22:22:28 +00002245 else \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002246 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00002247 echo "... configured for CS3 boot"; \
wdenk63e73c92004-02-23 22:22:28 +00002248 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02002249 @$(MKCONFIG) -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap
wdenk6f213472003-08-29 22:00:43 +00002250
wdenka56bd922004-06-06 23:13:55 +00002251omap730p2_config \
2252omap730p2_cs0boot_config \
2253omap730p2_cs3boot_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002254 @mkdir -p $(obj)include
wdenka56bd922004-06-06 23:13:55 +00002255 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002256 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00002257 echo "... configured for CS0 boot"; \
2258 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002259 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00002260 echo "... configured for CS3 boot"; \
2261 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02002262 @$(MKCONFIG) -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap
wdenka56bd922004-06-06 23:13:55 +00002263
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02002264sbc2410x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002265 @$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02002266
wdenk281e00a2004-08-01 22:48:16 +00002267scb9328_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002268 @$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002269
wdenk7ebf7442002-11-02 23:17:16 +00002270smdk2400_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002271 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002272
2273smdk2410_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002274 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002275
wdenk2d24a3a2004-06-09 21:50:45 +00002276SX1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002277 @$(MKCONFIG) $(@:_config=) arm arm925t sx1
wdenk2d24a3a2004-06-09 21:50:45 +00002278
wdenkb2001f22003-12-20 22:45:10 +00002279# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk43d96162003-03-06 00:02:04 +00002280trab_config \
wdenkb0639ca2003-09-17 22:48:07 +00002281trab_bigram_config \
2282trab_bigflash_config \
wdenkf54ebdf2003-09-17 15:10:32 +00002283trab_old_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002284 @mkdir -p $(obj)include
2285 @mkdir -p $(obj)board/trab
2286 @ >$(obj)include/config.h
wdenkb0639ca2003-09-17 22:48:07 +00002287 @[ -z "$(findstring _bigram,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002288 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2289 echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002290 echo "... with 8 MB Flash, 32 MB RAM" ; \
2291 }
2292 @[ -z "$(findstring _bigflash,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002293 { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \
2294 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002295 echo "... with 16 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002296 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenkb0639ca2003-09-17 22:48:07 +00002297 }
wdenkf54ebdf2003-09-17 15:10:32 +00002298 @[ -z "$(findstring _old,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002299 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2300 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +00002301 echo "... with 8 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002302 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenk43d96162003-03-06 00:02:04 +00002303 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002304 @$(MKCONFIG) -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002305
wdenk1cb8e982003-03-06 21:55:29 +00002306VCMA9_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002307 @$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0
wdenk1cb8e982003-03-06 21:55:29 +00002308
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002309#========================================================================
2310# ARM supplied Versatile development boards
2311#========================================================================
2312versatile_config \
2313versatileab_config \
2314versatilepb_config : unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02002315 @board/versatile/split_by_variant.sh $@
wdenk074cff02004-02-24 00:16:43 +00002316
wdenk3c2b3d42005-04-05 23:32:21 +00002317voiceblue_smallflash_config \
2318voiceblue_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002319 @mkdir -p $(obj)include
2320 @mkdir -p $(obj)board/voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002321 @if [ "$(findstring _smallflash_,$@)" ] ; then \
2322 echo "... boot from lower flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002323 echo "#define VOICEBLUE_SMALL_FLASH" >>$(obj)include/config.h ; \
2324 echo "VOICEBLUE_SMALL_FLASH=y" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00002325 else \
2326 echo "... boot from upper flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002327 >$(obj)include/config.h ; \
2328 echo "VOICEBLUE_SMALL_FLASH=n" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00002329 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02002330 @$(MKCONFIG) -a voiceblue arm arm925t voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002331
wdenk16b013e2005-05-19 22:46:33 +00002332cm4008_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002333 @$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002334
2335cm41xx_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002336 @$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00002337
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002338gth2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002339 @mkdir -p $(obj)include
2340 @ >$(obj)include/config.h
2341 @echo "#define CONFIG_GTH2 1" >>$(obj)include/config.h
2342 @$(MKCONFIG) -a gth2 mips mips gth2
Wolfgang Denk0c32d962006-06-16 17:32:31 +02002343
wdenk074cff02004-02-24 00:16:43 +00002344#########################################################################
2345## S3C44B0 Systems
2346#########################################################################
2347
2348B2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002349 @$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave
wdenk074cff02004-02-24 00:16:43 +00002350
wdenk7ebf7442002-11-02 23:17:16 +00002351#########################################################################
2352## ARM720T Systems
2353#########################################################################
2354
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002355armadillo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002356 @$(MKCONFIG) $(@:_config=) arm arm720t armadillo
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002357
wdenk7ebf7442002-11-02 23:17:16 +00002358ep7312_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002359 @$(MKCONFIG) $(@:_config=) arm arm720t ep7312
wdenk7ebf7442002-11-02 23:17:16 +00002360
wdenk2d24a3a2004-06-09 21:50:45 +00002361impa7_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002362 @$(MKCONFIG) $(@:_config=) arm arm720t impa7
wdenk2d24a3a2004-06-09 21:50:45 +00002363
wdenk2d1a5372004-02-23 19:30:57 +00002364modnet50_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002365 @$(MKCONFIG) $(@:_config=) arm arm720t modnet50
wdenk2d1a5372004-02-23 19:30:57 +00002366
wdenk39539882004-07-01 16:30:44 +00002367evb4510_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002368 @$(MKCONFIG) $(@:_config=) arm arm720t evb4510
wdenk39539882004-07-01 16:30:44 +00002369
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002370lpc2292sodimm_config: unconfig
Peter Pearseb0d8f5b2007-05-09 11:37:56 +01002371 @$(MKCONFIG) $(@:_config=) arm arm720t lpc2292sodimm NULL lpc2292
2372
2373SMN42_config : unconfig
2374 @$(MKCONFIG) $(@:_config=) arm arm720t SMN42 siemens lpc2292
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002375
wdenk7ebf7442002-11-02 23:17:16 +00002376#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002377## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00002378#########################################################################
2379
wdenk20787e22005-04-06 00:04:16 +00002380adsvix_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002381 @$(MKCONFIG) $(@:_config=) arm pxa adsvix
wdenk20787e22005-04-06 00:04:16 +00002382
wdenkfabd46a2004-07-10 23:11:10 +00002383cerf250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002384 @$(MKCONFIG) $(@:_config=) arm pxa cerf250
wdenkfabd46a2004-07-10 23:11:10 +00002385
wdenk7ebf7442002-11-02 23:17:16 +00002386cradle_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002387 @$(MKCONFIG) $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00002388
2389csb226_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002390 @$(MKCONFIG) $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00002391
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002392delta_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002393 @$(MKCONFIG) $(@:_config=) arm pxa delta
Wolfgang Denk0be248f2006-03-07 00:22:36 +01002394
wdenk43d96162003-03-06 00:02:04 +00002395innokom_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002396 @$(MKCONFIG) $(@:_config=) arm pxa innokom
wdenk43d96162003-03-06 00:02:04 +00002397
wdenk2d5b5612003-10-14 19:43:55 +00002398ixdp425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002399 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
wdenk2d5b5612003-10-14 19:43:55 +00002400
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002401ixdpg425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002402 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002403
wdenk43d96162003-03-06 00:02:04 +00002404lubbock_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002405 @$(MKCONFIG) $(@:_config=) arm pxa lubbock
wdenk43d96162003-03-06 00:02:04 +00002406
Heiko Schocher5720df72006-05-02 07:51:46 +02002407pleb2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002408 @$(MKCONFIG) $(@:_config=) arm pxa pleb2
Heiko Schocher5720df72006-05-02 07:51:46 +02002409
wdenk52f52c12003-06-19 23:04:19 +00002410logodl_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002411 @$(MKCONFIG) $(@:_config=) arm pxa logodl
wdenk52f52c12003-06-19 23:04:19 +00002412
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002413pdnb3_config \
2414scpu_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002415 @mkdir -p $(obj)include
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002416 @if [ "$(findstring scpu_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002417 echo "#define CONFIG_SCPU" >>$(obj)include/config.h ; \
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002418 echo "... on SCPU board variant" ; \
2419 else \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002420 >$(obj)include/config.h ; \
Stefan Roese9d8d5a52007-01-18 16:05:47 +01002421 fi
2422 @$(MKCONFIG) -a pdnb3 arm ixp pdnb3 prodrive
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002423
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002424pxa255_idp_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002425 @$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002426
stefano babic5e5803e2007-08-30 23:01:49 +02002427trizepsiv_config : unconfig
2428 @$(MKCONFIG) $(@:_config=) arm pxa trizepsiv
2429
wdenk3e386912003-04-05 00:53:31 +00002430wepep250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002431 @$(MKCONFIG) $(@:_config=) arm pxa wepep250
wdenk3e386912003-04-05 00:53:31 +00002432
wdenk4ec3a7f2004-09-28 16:44:41 +00002433xaeniax_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002434 @$(MKCONFIG) $(@:_config=) arm pxa xaeniax
wdenk4ec3a7f2004-09-28 16:44:41 +00002435
wdenkefa329c2004-03-23 20:18:25 +00002436xm250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002437 @$(MKCONFIG) $(@:_config=) arm pxa xm250
wdenkefa329c2004-03-23 20:18:25 +00002438
wdenkca0e7742004-06-09 15:37:23 +00002439xsengine_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002440 @$(MKCONFIG) $(@:_config=) arm pxa xsengine
wdenkca0e7742004-06-09 15:37:23 +00002441
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002442zylonite_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002443 @$(MKCONFIG) $(@:_config=) arm pxa zylonite
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002444
wdenk8ed96042005-01-09 23:16:25 +00002445#########################################################################
2446## ARM1136 Systems
2447#########################################################################
2448omap2420h4_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002449 @$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4
wdenk8ed96042005-01-09 23:16:25 +00002450
wdenk2262cfe2002-11-18 00:14:45 +00002451#========================================================================
2452# i386
2453#========================================================================
2454#########################################################################
wdenk1cb8e982003-03-06 21:55:29 +00002455## AMD SC520 CDP
wdenk2262cfe2002-11-18 00:14:45 +00002456#########################################################################
2457sc520_cdp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002458 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp
wdenk2262cfe2002-11-18 00:14:45 +00002459
wdenk7a8e9bed2003-05-31 18:35:21 +00002460sc520_spunk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002461 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002462
2463sc520_spunk_rel_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002464 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002465
wdenk43d96162003-03-06 00:02:04 +00002466#========================================================================
2467# MIPS
2468#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00002469#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002470## MIPS32 4Kc
2471#########################################################################
2472
wdenke0ac62d2003-08-17 18:55:18 +00002473xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
2474
2475incaip_100MHz_config \
2476incaip_133MHz_config \
2477incaip_150MHz_config \
2478incaip_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002479 @mkdir -p $(obj)include
2480 @ >$(obj)include/config.h
wdenke0ac62d2003-08-17 18:55:18 +00002481 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002482 { echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002483 echo "... with 100MHz system clock" ; \
2484 }
2485 @[ -z "$(findstring _133MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002486 { echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002487 echo "... with 133MHz system clock" ; \
2488 }
2489 @[ -z "$(findstring _150MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002490 { echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002491 echo "... with 150MHz system clock" ; \
2492 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002493 @$(MKCONFIG) -a $(call xtract_incaip,$@) mips mips incaip
wdenke0ac62d2003-08-17 18:55:18 +00002494
wdenkf4863a72004-02-07 01:27:10 +00002495tb0229_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002496 @$(MKCONFIG) $(@:_config=) mips mips tb0229
wdenkf4863a72004-02-07 01:27:10 +00002497
wdenke0ac62d2003-08-17 18:55:18 +00002498#########################################################################
wdenk69459792004-05-29 16:53:29 +00002499## MIPS32 AU1X00
2500#########################################################################
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002501dbau1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002502 @mkdir -p $(obj)include
2503 @ >$(obj)include/config.h
2504 @echo "#define CONFIG_DBAU1000 1" >>$(obj)include/config.h
2505 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002506
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002507dbau1100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002508 @mkdir -p $(obj)include
2509 @ >$(obj)include/config.h
2510 @echo "#define CONFIG_DBAU1100 1" >>$(obj)include/config.h
2511 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002512
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002513dbau1500_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002514 @mkdir -p $(obj)include
2515 @ >$(obj)include/config.h
2516 @echo "#define CONFIG_DBAU1500 1" >>$(obj)include/config.h
2517 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002518
wdenkff36fd82005-01-09 22:28:56 +00002519dbau1550_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002520 @mkdir -p $(obj)include
2521 @ >$(obj)include/config.h
2522 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2523 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002524
2525dbau1550_el_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002526 @mkdir -p $(obj)include
2527 @ >$(obj)include/config.h
2528 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2529 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002530
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002531pb1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002532 @mkdir -p $(obj)include
2533 @ >$(obj)include/config.h
2534 @echo "#define CONFIG_PB1000 1" >>$(obj)include/config.h
2535 @$(MKCONFIG) -a pb1x00 mips mips pb1x00
Wolfgang Denk265817c2005-09-25 00:53:22 +02002536
wdenk69459792004-05-29 16:53:29 +00002537#########################################################################
wdenke0ac62d2003-08-17 18:55:18 +00002538## MIPS64 5Kc
2539#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002540
wdenk3e386912003-04-05 00:53:31 +00002541purple_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002542 @$(MKCONFIG) $(@:_config=) mips mips purple
wdenk43d96162003-03-06 00:02:04 +00002543
wdenk4a551702003-10-08 23:26:14 +00002544#========================================================================
2545# Nios
2546#========================================================================
2547#########################################################################
2548## Nios32
2549#########################################################################
2550
wdenkc935d3b2004-01-03 19:43:48 +00002551DK1C20_safe_32_config \
2552DK1C20_standard_32_config \
wdenk4a551702003-10-08 23:26:14 +00002553DK1C20_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002554 @mkdir -p $(obj)include
2555 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002556 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002557 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002558 echo "... NIOS 'safe_32' configuration" ; \
2559 }
2560 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002561 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002562 echo "... NIOS 'standard_32' configuration" ; \
2563 }
2564 @[ -z "$(findstring DK1C20_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002565 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002566 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2567 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002568 @$(MKCONFIG) -a DK1C20 nios nios dk1c20 altera
wdenkc935d3b2004-01-03 19:43:48 +00002569
2570DK1S10_safe_32_config \
2571DK1S10_standard_32_config \
wdenkec4c5442004-02-09 23:12:24 +00002572DK1S10_mtx_ldk_20_config \
wdenkc935d3b2004-01-03 19:43:48 +00002573DK1S10_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002574 @mkdir -p $(obj)include
2575 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002576 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002577 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002578 echo "... NIOS 'safe_32' configuration" ; \
2579 }
2580 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002581 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002582 echo "... NIOS 'standard_32' configuration" ; \
2583 }
wdenkec4c5442004-02-09 23:12:24 +00002584 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002585 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>$(obj)include/config.h ; \
wdenkec4c5442004-02-09 23:12:24 +00002586 echo "... NIOS 'mtx_ldk_20' configuration" ; \
2587 }
wdenkc935d3b2004-01-03 19:43:48 +00002588 @[ -z "$(findstring DK1S10_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002589 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002590 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2591 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002592 @$(MKCONFIG) -a DK1S10 nios nios dk1s10 altera
wdenk4a551702003-10-08 23:26:14 +00002593
wdenkaaf224a2004-03-14 15:20:55 +00002594ADNPESC1_DNPEVA2_base_32_config \
2595ADNPESC1_base_32_config \
2596ADNPESC1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002597 @mkdir -p $(obj)include
2598 @ >$(obj)include/config.h
wdenkaaf224a2004-03-14 15:20:55 +00002599 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002600 { echo "#define CONFIG_DNPEVA2 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002601 echo "... DNP/EVA2 configuration" ; \
2602 }
wdenkaaf224a2004-03-14 15:20:55 +00002603 @[ -z "$(findstring _base_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002604 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002605 echo "... NIOS 'base_32' configuration" ; \
2606 }
wdenkaaf224a2004-03-14 15:20:55 +00002607 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002608 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002609 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
2610 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002611 @$(MKCONFIG) -a ADNPESC1 nios nios adnpesc1 ssv
wdenkaaf224a2004-03-14 15:20:55 +00002612
wdenk5c952cf2004-10-10 21:27:30 +00002613#########################################################################
2614## Nios-II
2615#########################################################################
2616
Scott McNutt9cc83372006-06-08 13:37:39 -04002617EP1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002618 @$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002619
2620EP1S10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002621 @$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002622
2623EP1S40_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002624 @$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002625
wdenk5c952cf2004-10-10 21:27:30 +00002626PK1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002627 @$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent
wdenk5c952cf2004-10-10 21:27:30 +00002628
2629PCI5441_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002630 @$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent
wdenk4a551702003-10-08 23:26:14 +00002631
wdenk507bbe32004-04-18 21:13:41 +00002632#========================================================================
2633# MicroBlaze
2634#========================================================================
2635#########################################################################
2636## Microblaze
2637#########################################################################
2638suzaku_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002639 @mkdir -p $(obj)include
2640 @ >$(obj)include/config.h
2641 @echo "#define CONFIG_SUZAKU 1" >> $(obj)include/config.h
2642 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
wdenk507bbe32004-04-18 21:13:41 +00002643
Michal Simekcfc67112007-03-11 13:48:24 +01002644ml401_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002645 @mkdir -p $(obj)include
2646 @ >$(obj)include/config.h
2647 @echo "#define CONFIG_ML401 1" >> $(obj)include/config.h
Grant Likely90b1b2d2007-07-03 00:17:28 -06002648 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze ml401 xilinx
Michal Simekcfc67112007-03-11 13:48:24 +01002649
Michal Simek17980492007-03-26 01:39:07 +02002650xupv2p_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002651 @mkdir -p $(obj)include
2652 @ >$(obj)include/config.h
2653 @echo "#define CONFIG_XUPV2P 1" >> $(obj)include/config.h
Grant Likely90b1b2d2007-07-03 00:17:28 -06002654 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze xupv2p xilinx
Michal Simek17980492007-03-26 01:39:07 +02002655
wdenk3e386912003-04-05 00:53:31 +00002656#########################################################################
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002657## Blackfin
2658#########################################################################
Aubrey.Lief26a082007-03-09 13:40:56 +08002659bf533-ezkit_config: unconfig
2660 @$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-ezkit
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002661
Aubrey.Lief26a082007-03-09 13:40:56 +08002662bf533-stamp_config: unconfig
2663 @$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-stamp
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002664
Aubrey Li26bf7de2007-03-19 01:24:52 +08002665bf537-stamp_config: unconfig
2666 @$(MKCONFIG) $(@:_config=) blackfin bf537 bf537-stamp
2667
Aubrey Li65458982007-03-20 18:16:24 +08002668bf561-ezkit_config: unconfig
2669 @$(MKCONFIG) $(@:_config=) blackfin bf561 bf561-ezkit
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002670
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02002671#========================================================================
2672# AVR32
2673#========================================================================
2674#########################################################################
2675## AT32AP7xxx
2676#########################################################################
2677
2678atstk1002_config : unconfig
Grant Likely90b1b2d2007-07-03 00:17:28 -06002679 @$(MKCONFIG) $(@:_config=) avr32 at32ap atstk1000 atmel at32ap7000
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02002680
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002681#########################################################################
2682#########################################################################
wdenk3e386912003-04-05 00:53:31 +00002683#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00002684
2685clean:
Marian Balakowiczf9328632006-09-01 19:49:50 +02002686 find $(OBJTREE) -type f \
wdenk7ebf7442002-11-02 23:17:16 +00002687 \( -name 'core' -o -name '*.bak' -o -name '*~' \
2688 -o -name '*.o' -o -name '*.a' \) -print \
2689 | xargs rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002690 rm -f $(obj)examples/hello_world $(obj)examples/timer \
2691 $(obj)examples/eepro100_eeprom $(obj)examples/sched \
2692 $(obj)examples/mem_to_mem_idma2intr $(obj)examples/82559_eeprom \
Wolfgang Denkd214fbb2006-09-13 10:29:32 +02002693 $(obj)examples/smc91111_eeprom $(obj)examples/interrupt \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002694 $(obj)examples/test_burst
2695 rm -f $(obj)tools/img2srec $(obj)tools/mkimage $(obj)tools/envcrc \
Heiko Schocher566a4942007-06-22 19:11:54 +02002696 $(obj)tools/gen_eth_addr $(obj)tools/ubsha1
Marian Balakowiczf9328632006-09-01 19:49:50 +02002697 rm -f $(obj)tools/mpc86x_clk $(obj)tools/ncb
2698 rm -f $(obj)tools/easylogo/easylogo $(obj)tools/bmp_logo
2699 rm -f $(obj)tools/gdb/astest $(obj)tools/gdb/gdbcont $(obj)tools/gdb/gdbsend
2700 rm -f $(obj)tools/env/fw_printenv $(obj)tools/env/fw_setenv
2701 rm -f $(obj)board/cray/L1/bootscript.c $(obj)board/cray/L1/bootscript.image
2702 rm -f $(obj)board/netstar/eeprom $(obj)board/netstar/crcek $(obj)board/netstar/crcit
2703 rm -f $(obj)board/netstar/*.srec $(obj)board/netstar/*.bin
2704 rm -f $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom
2705 rm -f $(obj)board/integratorap/u-boot.lds $(obj)board/integratorcp/u-boot.lds
Aubrey Li8440bb12007-03-12 00:25:14 +08002706 rm -f $(obj)board/bf533-ezkit/u-boot.lds $(obj)board/bf533-stamp/u-boot.lds
Aubrey Li65458982007-03-20 18:16:24 +08002707 rm -f $(obj)board/bf537-stamp/u-boot.lds $(obj)board/bf561-ezkit/u-boot.lds
Marian Balakowiczf9328632006-09-01 19:49:50 +02002708 rm -f $(obj)include/bmp_logo.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002709 rm -f $(obj)nand_spl/u-boot-spl $(obj)nand_spl/u-boot-spl.map
wdenk7ebf7442002-11-02 23:17:16 +00002710
2711clobber: clean
Marian Balakowiczf9328632006-09-01 19:49:50 +02002712 find $(OBJTREE) -type f \( -name .depend \
wdenk4c0d4c32004-06-09 17:34:58 +00002713 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
2714 -print0 \
2715 | xargs -0 rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002716 rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS $(obj)include/version_autogenerated.h
2717 rm -fr $(obj)*.*~
2718 rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL)
Heiko Schocher566a4942007-06-22 19:11:54 +02002719 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 +02002720 rm -f $(obj)tools/inca-swap-bytes $(obj)cpu/mpc824x/bedbug_603e.c
2721 rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002722 [ ! -d $(OBJTREE)/nand_spl ] || find $(obj)nand_spl -lname "*" -print | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +00002723
Marian Balakowiczf9328632006-09-01 19:49:50 +02002724ifeq ($(OBJTREE),$(SRCTREE))
wdenk7ebf7442002-11-02 23:17:16 +00002725mrproper \
2726distclean: clobber unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002727else
2728mrproper \
2729distclean: clobber unconfig
2730 rm -rf $(OBJTREE)/*
2731endif
wdenk7ebf7442002-11-02 23:17:16 +00002732
2733backup:
2734 F=`basename $(TOPDIR)` ; cd .. ; \
2735 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
2736
2737#########################################################################