blob: 3924f6559a7f1758b6445f618091b5b00b306ad2 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
Wolfgang Denk881a87e2006-02-21 17:33:04 +01002# (C) Copyright 2000-2006
wdenk7ebf7442002-11-02 23:17:16 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
Wolfgang Denk45a212c2006-07-19 17:52:30 +020010# published by the Free Software Foundatio; either version 2 of
wdenk7ebf7442002-11-02 23:17:16 +000011# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
Wolfgang Denk881a87e2006-02-21 17:33:04 +010024VERSION = 1
25PATCHLEVEL = 1
26SUBLEVEL = 4
27EXTRAVERSION =
28U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
Marian Balakowiczf9328632006-09-01 19:49:50 +020029VERSION_FILE = $(obj)include/version_autogenerated.h
Wolfgang Denk881a87e2006-02-21 17:33:04 +010030
wdenk7ebf7442002-11-02 23:17:16 +000031HOSTARCH := $(shell uname -m | \
32 sed -e s/i.86/i386/ \
33 -e s/sun4u/sparc64/ \
34 -e s/arm.*/arm/ \
35 -e s/sa110/arm/ \
36 -e s/powerpc/ppc/ \
37 -e s/macppc/ppc/)
38
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020039HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
wdenk7ebf7442002-11-02 23:17:16 +000040 sed -e 's/\(cygwin\).*/cygwin/')
41
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020042export HOSTARCH HOSTOS
wdenk7ebf7442002-11-02 23:17:16 +000043
44# Deal with colliding definitions from tcsh etc.
45VENDOR=
46
47#########################################################################
Marian Balakowiczf9328632006-09-01 19:49:50 +020048#
49# U-boot build supports producing a object files to the separate external
50# directory. Two use cases are supported:
Stefan Roese887e2ec2006-09-07 11:51:23 +020051#
Marian Balakowiczf9328632006-09-01 19:49:50 +020052# 1) Add O= to the make command line
53# 'make O=/tmp/build all'
54#
55# 2) Set environement variable BUILD_DIR to point to the desired location
56# 'export BUILD_DIR=/tmp/build'
57# 'make'
58#
59# The second approach can also be used with a MAKEALL script
60# 'export BUILD_DIR=/tmp/build'
61# './MAKEALL'
Stefan Roese887e2ec2006-09-07 11:51:23 +020062#
Marian Balakowiczf9328632006-09-01 19:49:50 +020063# Command line 'O=' setting overrides BUILD_DIR environent variable.
Stefan Roese887e2ec2006-09-07 11:51:23 +020064#
Marian Balakowiczf9328632006-09-01 19:49:50 +020065# When none of the above methods is used the local build is performed and
66# the object files are placed in the source directory.
Stefan Roese887e2ec2006-09-07 11:51:23 +020067#
wdenk7ebf7442002-11-02 23:17:16 +000068
Marian Balakowiczf9328632006-09-01 19:49:50 +020069ifdef O
70ifeq ("$(origin O)", "command line")
71BUILD_DIR := $(O)
72endif
73endif
wdenk7ebf7442002-11-02 23:17:16 +000074
Marian Balakowiczf9328632006-09-01 19:49:50 +020075ifneq ($(BUILD_DIR),)
76saved-output := $(BUILD_DIR)
Marian Balakowicz4f0645e2006-09-07 12:05:53 +020077
78# Attempt to create a output directory.
79$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
80
Stefan Roesea73c8db2006-09-12 08:49:07 +020081# Verify if it was successful.
Marian Balakowiczf9328632006-09-01 19:49:50 +020082BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
83$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
84endif # ifneq ($(BUILD_DIR),)
85
86OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
87SRCTREE := $(CURDIR)
88TOPDIR := $(SRCTREE)
89LNDIR := $(OBJTREE)
90export TOPDIR SRCTREE OBJTREE
91
92MKCONFIG := $(SRCTREE)/mkconfig
93export MKCONFIG
94
95ifneq ($(OBJTREE),$(SRCTREE))
96REMOTE_BUILD := 1
97export REMOTE_BUILD
98endif
99
100# $(obj) and (src) are defined in config.mk but here in main Makefile
101# we also need them before config.mk is included which is the case for
102# some targets like unconfig, clean, clobber, distclean, etc.
103ifneq ($(OBJTREE),$(SRCTREE))
104obj := $(OBJTREE)/
105src := $(SRCTREE)/
106else
107obj :=
108src :=
Stefan Roese887e2ec2006-09-07 11:51:23 +0200109endif
Marian Balakowiczf9328632006-09-01 19:49:50 +0200110export obj src
111
112#########################################################################
113
114ifeq ($(OBJTREE)/include/config.mk,$(wildcard $(OBJTREE)/include/config.mk))
115
wdenk7ebf7442002-11-02 23:17:16 +0000116# load ARCH, BOARD, and CPU configuration
Marian Balakowiczf9328632006-09-01 19:49:50 +0200117include $(OBJTREE)/include/config.mk
wdenk1d9f4102004-10-09 22:21:29 +0000118export ARCH CPU BOARD VENDOR SOC
Marian Balakowiczf9328632006-09-01 19:49:50 +0200119
wdenk7ebf7442002-11-02 23:17:16 +0000120ifndef CROSS_COMPILE
121ifeq ($(HOSTARCH),ppc)
122CROSS_COMPILE =
123else
wdenk7ebf7442002-11-02 23:17:16 +0000124ifeq ($(ARCH),ppc)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500125CROSS_COMPILE = powerpc-linux-
wdenk7ebf7442002-11-02 23:17:16 +0000126endif
127ifeq ($(ARCH),arm)
wdenkdc7c9a12003-03-26 06:55:25 +0000128CROSS_COMPILE = arm-linux-
wdenk7ebf7442002-11-02 23:17:16 +0000129endif
wdenk2262cfe2002-11-18 00:14:45 +0000130ifeq ($(ARCH),i386)
wdenk7a8e9bed2003-05-31 18:35:21 +0000131ifeq ($(HOSTARCH),i386)
132CROSS_COMPILE =
133else
134CROSS_COMPILE = i386-linux-
135endif
wdenk2262cfe2002-11-18 00:14:45 +0000136endif
wdenk43d96162003-03-06 00:02:04 +0000137ifeq ($(ARCH),mips)
138CROSS_COMPILE = mips_4KC-
139endif
wdenk4a551702003-10-08 23:26:14 +0000140ifeq ($(ARCH),nios)
141CROSS_COMPILE = nios-elf-
142endif
wdenk5c952cf2004-10-10 21:27:30 +0000143ifeq ($(ARCH),nios2)
144CROSS_COMPILE = nios2-elf-
145endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000146ifeq ($(ARCH),m68k)
147CROSS_COMPILE = m68k-elf-
148endif
wdenk507bbe32004-04-18 21:13:41 +0000149ifeq ($(ARCH),microblaze)
150CROSS_COMPILE = mb-
151endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100152ifeq ($(ARCH),blackfin)
153CROSS_COMPILE = bfin-elf-
154endif
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
Eran Libertyf046ccd2005-07-28 10:08:46 -0500174ifeq ($(CPU),mpc83xx)
175OBJS += cpu/$(CPU)/resetvec.o
176endif
wdenk42d1f032003-10-15 23:53:47 +0000177ifeq ($(CPU),mpc85xx)
178OBJS += cpu/$(CPU)/resetvec.o
179endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100180ifeq ($(CPU),bf533)
181OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
182OBJS += cpu/$(CPU)/cplbhdlr.o cpu/$(CPU)/cplbmgr.o cpu/$(CPU)/flush.o
183endif
wdenk7ebf7442002-11-02 23:17:16 +0000184
Marian Balakowiczf9328632006-09-01 19:49:50 +0200185OBJS := $(addprefix $(obj),$(OBJS))
186
wdenk9fd5e312003-12-07 23:55:12 +0000187LIBS = lib_generic/libgeneric.a
188LIBS += board/$(BOARDDIR)/lib$(BOARD).a
wdenk7ebf7442002-11-02 23:17:16 +0000189LIBS += cpu/$(CPU)/lib$(CPU).a
wdenk1d9f4102004-10-09 22:21:29 +0000190ifdef SOC
191LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
192endif
wdenk7ebf7442002-11-02 23:17:16 +0000193LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk518e2e12004-03-25 14:59:05 +0000194LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
stroesec419d1d2004-12-16 18:44:40 +0000195 fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a
wdenk7ebf7442002-11-02 23:17:16 +0000196LIBS += net/libnet.a
197LIBS += disk/libdisk.a
198LIBS += rtc/librtc.a
199LIBS += dtt/libdtt.a
200LIBS += drivers/libdrivers.a
Marian Balakowicz6db39702006-04-08 19:08:06 +0200201LIBS += drivers/nand/libnand.a
202LIBS += drivers/nand_legacy/libnand_legacy.a
wdenk7152b1d2003-09-05 23:19:14 +0000203LIBS += drivers/sk98lin/libsk98lin.a
wdenk7ebf7442002-11-02 23:17:16 +0000204LIBS += post/libpost.a post/cpu/libcpu.a
205LIBS += common/libcommon.a
Bartlomiej Sieka038ccac2006-02-24 09:37:22 +0100206LIBS += $(BOARDLIBS)
Marian Balakowiczf9328632006-09-01 19:49:50 +0200207
208LIBS := $(addprefix $(obj),$(LIBS))
wdenk9fd5e312003-12-07 23:55:12 +0000209.PHONY : $(LIBS)
wdenka8c7c702003-12-06 19:49:23 +0000210
wdenk4f7cb082003-09-11 23:06:34 +0000211# Add GCC lib
wdenk1a344f22005-02-03 23:00:49 +0000212PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
wdenk3d3befa2004-03-14 15:06:13 +0000213
wdenka8c7c702003-12-06 19:49:23 +0000214# The "tools" are needed early, so put this first
215# Don't include stuff already done in $(LIBS)
216SUBDIRS = tools \
217 examples \
218 post \
219 post/cpu
wdenkb028f712003-12-07 21:39:28 +0000220.PHONY : $(SUBDIRS)
wdenka8c7c702003-12-06 19:49:23 +0000221
Stefan Roese887e2ec2006-09-07 11:51:23 +0200222ifeq ($(CONFIG_NAND_U_BOOT),y)
223NAND_SPL = nand_spl
224U_BOOT_NAND = $(obj)u-boot-nand.bin
225endif
226
Marian Balakowiczf9328632006-09-01 19:49:50 +0200227__OBJS := $(subst $(obj),,$(OBJS))
228__LIBS := $(subst $(obj),,$(LIBS))
229
wdenk7ebf7442002-11-02 23:17:16 +0000230#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000231#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000232
Stefan Roese887e2ec2006-09-07 11:51:23 +0200233ALL = $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND)
wdenk7ebf7442002-11-02 23:17:16 +0000234
wdenkbdccc4f2003-08-05 17:43:17 +0000235all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000236
Marian Balakowiczf9328632006-09-01 19:49:50 +0200237$(obj)u-boot.hex: $(obj)u-boot
wdenk6310eb92005-01-09 21:28:15 +0000238 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
239
Marian Balakowiczf9328632006-09-01 19:49:50 +0200240$(obj)u-boot.srec: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000241 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
242
Marian Balakowiczf9328632006-09-01 19:49:50 +0200243$(obj)u-boot.bin: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000244 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
245
Marian Balakowiczf9328632006-09-01 19:49:50 +0200246$(obj)u-boot.img: $(obj)u-boot.bin
wdenkbdccc4f2003-08-05 17:43:17 +0000247 ./tools/mkimage -A $(ARCH) -T firmware -C none \
248 -a $(TEXT_BASE) -e 0 \
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100249 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenkbdccc4f2003-08-05 17:43:17 +0000250 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
251 -d $< $@
252
Marian Balakowiczf9328632006-09-01 19:49:50 +0200253$(obj)u-boot.dis: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000254 $(OBJDUMP) -d $< > $@
255
Marian Balakowiczf9328632006-09-01 19:49:50 +0200256$(obj)u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
wdenk8bde7f72003-06-27 21:31:46 +0000257 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
Marian Balakowiczf9328632006-09-01 19:49:50 +0200258 cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
259 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000260 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000261
Marian Balakowiczf9328632006-09-01 19:49:50 +0200262$(OBJS):
263 $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@))
264
wdenka8c7c702003-12-06 19:49:23 +0000265$(LIBS):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200266 $(MAKE) -C $(dir $(subst $(obj),,$@))
wdenka8c7c702003-12-06 19:49:23 +0000267
268$(SUBDIRS):
wdenkb028f712003-12-07 21:39:28 +0000269 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000270
Stefan Roese887e2ec2006-09-07 11:51:23 +0200271$(NAND_SPL): version
272 $(MAKE) -C nand_spl all
273
274$(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin
Stefan Roesea73c8db2006-09-12 08:49:07 +0200275 cat nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin
Stefan Roese887e2ec2006-09-07 11:51:23 +0200276
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100277version:
278 @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \
279 echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \
280 echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \
281 $(TOPDIR)) >> $(VERSION_FILE); \
282 echo "\"" >> $(VERSION_FILE)
283
dzu8f713fd2003-08-07 14:20:31 +0000284gdbtools:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200285 $(MAKE) -C tools/gdb all || exit 1
286
287updater:
288 $(MAKE) -C tools/updater all || exit 1
289
290env:
291 $(MAKE) -C tools/env all || exit 1
dzu8f713fd2003-08-07 14:20:31 +0000292
wdenk7ebf7442002-11-02 23:17:16 +0000293depend dep:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200294 for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir _depend ; done
wdenk7ebf7442002-11-02 23:17:16 +0000295
Marian Balakowiczf9328632006-09-01 19:49:50 +0200296tags ctags:
297 ctags -w -o $(OBJTREE)/ctags `find $(SUBDIRS) include \
wdenkbda6c8a2004-04-15 21:58:11 +0000298 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
299 fs/cramfs fs/fat fs/fdos fs/jffs2 \
300 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000301 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
302
303etags:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200304 etags -a -o $(OBJTREE)/etags `find $(SUBDIRS) include \
wdenkeedcd072004-09-08 22:03:11 +0000305 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
306 fs/cramfs fs/fat fs/fdos fs/jffs2 \
307 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000308 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
309
Marian Balakowiczf9328632006-09-01 19:49:50 +0200310$(obj)System.map: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000311 @$(NM) $< | \
312 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200313 sort > $(obj)System.map
wdenk7ebf7442002-11-02 23:17:16 +0000314
315#########################################################################
316else
Marian Balakowiczf9328632006-09-01 19:49:50 +0200317all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
318$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
319$(SUBDIRS) version gdbtools updater env depend \
320dep tags ctags etags $(obj)System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000321 @echo "System not configured - see README" >&2
322 @ exit 1
323endif
324
325#########################################################################
326
327unconfig:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200328 @rm -f $(obj)include/config.h $(obj)include/config.mk \
329 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp
wdenk7ebf7442002-11-02 23:17:16 +0000330
331#========================================================================
332# PowerPC
333#========================================================================
wdenk0db5bca2003-03-31 17:27:09 +0000334
335#########################################################################
336## MPC5xx Systems
337#########################################################################
338
wdenk5e5f9ed2005-04-13 23:15:10 +0000339canmb_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200340 @$(MKCONFIG) -a canmb ppc mpc5xxx canmb
wdenk5e5f9ed2005-04-13 23:15:10 +0000341
wdenk0db5bca2003-03-31 17:27:09 +0000342cmi_mpc5xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200343 @$(MKCONFIG) $(@:_config=) ppc mpc5xx cmi
wdenk0db5bca2003-03-31 17:27:09 +0000344
wdenkdb01a2e2004-04-15 23:14:49 +0000345PATI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200346 @$(MKCONFIG) $(@:_config=) ppc mpc5xx pati mpl
wdenkb6e4c402004-01-02 16:05:07 +0000347
wdenk7ebf7442002-11-02 23:17:16 +0000348#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000349## MPC5xxx Systems
350#########################################################################
wdenka87589d2005-06-10 10:00:19 +0000351
Wolfgang Denkdafba162005-08-12 00:22:49 +0200352aev_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200353 @$(MKCONFIG) -a aev ppc mpc5xxx tqm5200
Wolfgang Denkdafba162005-08-12 00:22:49 +0200354
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200355BC3450_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200356 @$(MKCONFIG) -a BC3450 ppc mpc5xxx bc3450
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200357
Stefan Roese5e4b3362005-08-22 17:51:53 +0200358cpci5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200359 @$(MKCONFIG) -a cpci5200 ppc mpc5xxx cpci5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200360
wdenka87589d2005-06-10 10:00:19 +0000361hmi1001_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200362 @$(MKCONFIG) hmi1001 ppc mpc5xxx hmi1001
wdenka87589d2005-06-10 10:00:19 +0000363
wdenke35745b2004-04-18 23:32:11 +0000364Lite5200_config \
365Lite5200_LOWBOOT_config \
366Lite5200_LOWBOOT08_config \
367icecube_5200_config \
368icecube_5200_LOWBOOT_config \
369icecube_5200_LOWBOOT08_config \
370icecube_5200_DDR_config \
371icecube_5200_DDR_LOWBOOT_config \
372icecube_5200_DDR_LOWBOOT08_config \
373icecube_5100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200374 @mkdir -p $(obj)include
375 @mkdir -p $(obj)board/icecube
376 @ >$(obj)include/config.h
wdenk17d704e2004-04-10 20:43:50 +0000377 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
378 { if [ "$(findstring DDR,$@)" ] ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200379 then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
380 else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
wdenk17d704e2004-04-10 20:43:50 +0000381 fi ; \
wdenk5cf9da42003-11-07 13:42:26 +0000382 echo "... with LOWBOOT configuration" ; \
383 }
384 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200385 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
wdenk5cf9da42003-11-07 13:42:26 +0000386 echo "... with 8 MB flash only" ; \
wdenk17d704e2004-04-10 20:43:50 +0000387 echo "... with LOWBOOT configuration" ; \
wdenk5cf9da42003-11-07 13:42:26 +0000388 }
wdenkb2001f22003-12-20 22:45:10 +0000389 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200390 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +0000391 echo "... DDR memory revision" ; \
392 }
wdenkd4ca31c2004-01-02 14:00:00 +0000393 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200394 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenkd4ca31c2004-01-02 14:00:00 +0000395 echo "... with MPC5200 processor" ; \
396 }
wdenka0f2fe52003-10-28 09:14:21 +0000397 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200398 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk945af8d2003-07-16 21:53:01 +0000399 echo "... with MGT5100 processor" ; \
400 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200401 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
wdenk945af8d2003-07-16 21:53:01 +0000402
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200403v38b_config: unconfig
404 @./mkconfig -a V38B ppc mpc5xxx v38b
405
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100406inka4x0_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200407 @$(MKCONFIG) inka4x0 ppc mpc5xxx inka4x0
wdenk138ff602004-12-16 15:52:40 +0000408
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100409lite5200b_config \
410lite5200b_LOWBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200411 @mkdir -p $(obj)include
412 @mkdir -p $(obj)board/icecube
413 @ >$(obj)include/config.h
414 @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100415 @ echo "... DDR memory revision"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200416 @ echo "#define CONFIG_MPC5200" >>$(obj)include/config.h
417 @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100418 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200419 { echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100420 echo "... with LOWBOOT configuration" ; \
421 }
422 @ echo "... with MPC5200B processor"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200423 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100424
Stefan Roesef1ee9822006-03-04 14:57:03 +0100425mcc200_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200426mcc200_SDRAM_config \
427mcc200_highboot_config \
428mcc200_COM12_config \
429mcc200_COM12_SDRAM_config \
Wolfgang Denk113f64e2006-08-25 01:38:04 +0200430mcc200_COM12_highboot_config \
431mcc200_COM12_highboot_SDRAM_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200432mcc200_highboot_SDRAM_config \
433prs200_config \
434prs200_DDR_config \
435prs200_highboot_config \
436prs200_highboot_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200437 @mkdir -p $(obj)include
438 @mkdir -p $(obj)board/mcc200
439 @ >$(obj)include/config.h
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200440 @[ -n "$(findstring highboot,$@)" ] || \
441 { echo "... with lowboot configuration" ; \
Stefan Roesef1ee9822006-03-04 14:57:03 +0100442 }
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200443 @[ -z "$(findstring highboot,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200444 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200445 echo "... with highboot configuration" ; \
446 }
447 @[ -n "$(findstring _SDRAM,$@)" ] || \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200448 { if [ -n "$(findstring mcc200,$@)" ]; \
449 then \
450 echo "... with DDR" ; \
451 else \
452 if [ -n "$(findstring _DDR,$@)" ];\
453 then \
454 echo "... with DDR" ; \
455 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200456 echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200457 echo "... with SDRAM" ; \
458 fi; \
459 fi; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200460 }
461 @[ -z "$(findstring _SDRAM,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200462 { echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200463 echo "... with SDRAM" ; \
464 }
Wolfgang Denk463764c2006-08-17 00:36:51 +0200465 @[ -z "$(findstring COM12,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200466 { echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \
Wolfgang Denk463764c2006-08-17 00:36:51 +0200467 echo "... with console on COM12" ; \
468 }
Wolfgang Denked1cf842006-08-24 00:26:42 +0200469 @[ -z "$(findstring prs200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200470 { echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200471 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200472 @$(MKCONFIG) -n $@ -a mcc200 ppc mpc5xxx mcc200
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100473
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200474o2dnt_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200475 @$(MKCONFIG) o2dnt ppc mpc5xxx o2dnt
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200476
Stefan Roese5e4b3362005-08-22 17:51:53 +0200477pf5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200478 @$(MKCONFIG) pf5200 ppc mpc5xxx pf5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200479
wdenk89394042004-08-04 21:56:49 +0000480PM520_config \
481PM520_DDR_config \
482PM520_ROMBOOT_config \
483PM520_ROMBOOT_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200484 @mkdir -p $(obj)include
485 @ >$(obj)include/config.h
wdenk89394042004-08-04 21:56:49 +0000486 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200487 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000488 echo "... DDR memory revision" ; \
489 }
490 @[ -z "$(findstring ROMBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200491 { echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000492 echo "... booting from 8-bit flash" ; \
493 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200494 @$(MKCONFIG) -a PM520 ppc mpc5xxx pm520
wdenk89394042004-08-04 21:56:49 +0000495
Wolfgang Denk6624b682006-02-22 10:25:39 +0100496smmaco4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200497 @$(MKCONFIG) -a smmaco4 ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100498
499spieval_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200500 @$(MKCONFIG) -a spieval ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100501
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200502TB5200_B_config \
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200503TB5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200504 @mkdir -p $(obj)include
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200505 @[ -z "$(findstring _B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200506 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200507 echo "... with MPC5200B processor" ; \
508 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200509 @$(MKCONFIG) -n $@ -a TB5200 ppc mpc5xxx tqm5200
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200510
wdenkd4ca31c2004-01-02 14:00:00 +0000511MINI5200_config \
512EVAL5200_config \
513TOP5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200514 @mkdir -p $(obj)include
515 @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
516 @$(MKCONFIG) -n $@ -a TOP5200 ppc mpc5xxx top5200 emk
wdenkd4ca31c2004-01-02 14:00:00 +0000517
wdenk6c7a1402004-07-11 19:17:20 +0000518Total5100_config \
519Total5200_config \
520Total5200_lowboot_config \
521Total5200_Rev2_config \
522Total5200_Rev2_lowboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200523 @mkdir -p $(obj)include
524 @mkdir -p $(obj)board/total5200
525 @ >$(obj)include/config.h
wdenk6c7a1402004-07-11 19:17:20 +0000526 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200527 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000528 echo "... with MGT5100 processor" ; \
529 }
530 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200531 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000532 echo "... with MPC5200 processor" ; \
533 }
534 @[ -n "$(findstring Rev,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200535 { echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000536 echo "... revision 1 board" ; \
537 }
538 @[ -z "$(findstring Rev2_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200539 { echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000540 echo "... revision 2 board" ; \
541 }
542 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200543 { echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp ; \
wdenk6c7a1402004-07-11 19:17:20 +0000544 echo "... with lowboot configuration" ; \
545 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200546 @$(MKCONFIG) -a Total5200 ppc mpc5xxx total5200
wdenk6c7a1402004-07-11 19:17:20 +0000547
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200548cam5200_config \
549fo300_config \
550MiniFAP_config \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200551TQM5200S_config \
552TQM5200S_HIGHBOOT_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200553TQM5200_B_config \
554TQM5200_B_HIGHBOOT_config \
555TQM5200_config \
556TQM5200_STK100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200557 @mkdir -p $(obj)include
558 @mkdir -p $(obj)board/tqm5200
559 @ >$(obj)include/config.h
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200560 @[ -z "$(findstring cam5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200561 { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \
562 echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
563 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200564 echo "... TQM5200S on Cam5200" ; \
565 }
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200566 @[ -z "$(findstring fo300,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200567 { echo "#define CONFIG_FO300" >>$(obj)include/config.h ; \
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200568 echo "... TQM5200 on FO300" ; \
569 }
wdenk89394042004-08-04 21:56:49 +0000570 @[ -z "$(findstring MiniFAP,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200571 { echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000572 echo "... TQM5200_AC on MiniFAP" ; \
wdenk56523f12004-07-11 17:40:54 +0000573 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200574 @[ -z "$(findstring STK100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200575 { echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h ; \
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200576 echo "... on a STK52XX.100 base board" ; \
wdenk56523f12004-07-11 17:40:54 +0000577 }
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200578 @[ -z "$(findstring TQM5200_B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200579 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200580 }
581 @[ -z "$(findstring TQM5200S,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200582 { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
583 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200584 }
Wolfgang Denk978b1092006-07-19 18:01:38 +0200585 @[ -z "$(findstring HIGHBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200586 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200587 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200588 @$(MKCONFIG) -n $@ -a TQM5200 ppc mpc5xxx tqm5200
wdenk56523f12004-07-11 17:40:54 +0000589
wdenk945af8d2003-07-16 21:53:01 +0000590#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000591## MPC8xx Systems
592#########################################################################
593
wdenk2d24a3a2004-06-09 21:50:45 +0000594Adder_config \
595Adder87x_config \
wdenk26238132004-07-09 22:51:01 +0000596AdderII_config \
wdenk2d24a3a2004-06-09 21:50:45 +0000597 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200598 @mkdir -p $(obj)include
wdenk26238132004-07-09 22:51:01 +0000599 $(if $(findstring AdderII,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200600 @echo "#define CONFIG_MPC852T" > $(obj)include/config.h)
601 @$(MKCONFIG) -a Adder ppc mpc8xx adder
wdenk2d24a3a2004-06-09 21:50:45 +0000602
wdenk180d3f72004-01-04 16:28:35 +0000603ADS860_config \
wdenk180d3f72004-01-04 16:28:35 +0000604FADS823_config \
605FADS850SAR_config \
606MPC86xADS_config \
wdenk11142572004-06-06 21:35:06 +0000607MPC885ADS_config \
wdenk180d3f72004-01-04 16:28:35 +0000608FADS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200609 @$(MKCONFIG) $(@:_config=) ppc mpc8xx fads
wdenk7ebf7442002-11-02 23:17:16 +0000610
611AMX860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200612 @$(MKCONFIG) $(@:_config=) ppc mpc8xx amx860 westel
wdenk7ebf7442002-11-02 23:17:16 +0000613
614c2mon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200615 @$(MKCONFIG) $(@:_config=) ppc mpc8xx c2mon
wdenk7ebf7442002-11-02 23:17:16 +0000616
617CCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200618 @$(MKCONFIG) $(@:_config=) ppc mpc8xx CCM siemens
wdenk7ebf7442002-11-02 23:17:16 +0000619
620cogent_mpc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200621 @$(MKCONFIG) $(@:_config=) ppc mpc8xx cogent
wdenk7ebf7442002-11-02 23:17:16 +0000622
wdenk3bac3512003-03-12 10:41:04 +0000623ELPT860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200624 @$(MKCONFIG) $(@:_config=) ppc mpc8xx elpt860 LEOX
wdenk3bac3512003-03-12 10:41:04 +0000625
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100626EP88x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200627 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ep88x
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100628
wdenk7ebf7442002-11-02 23:17:16 +0000629ESTEEM192E_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200630 @$(MKCONFIG) $(@:_config=) ppc mpc8xx esteem192e
wdenk7ebf7442002-11-02 23:17:16 +0000631
632ETX094_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200633 @$(MKCONFIG) $(@:_config=) ppc mpc8xx etx094
wdenk7ebf7442002-11-02 23:17:16 +0000634
wdenk7ebf7442002-11-02 23:17:16 +0000635FLAGADM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200636 @$(MKCONFIG) $(@:_config=) ppc mpc8xx flagadm
wdenk7ebf7442002-11-02 23:17:16 +0000637
wdenk7aa78612003-05-03 15:50:43 +0000638xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
639
640GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000641GEN860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200642 @mkdir -p $(obj)include
643 @ >$(obj)include/config.h
wdenk7aa78612003-05-03 15:50:43 +0000644 @[ -z "$(findstring _SC,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200645 { echo "#define CONFIG_SC" >>$(obj)include/config.h ; \
wdenk7aa78612003-05-03 15:50:43 +0000646 echo "With reduced H/W feature set (SC)..." ; \
647 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200648 @$(MKCONFIG) -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000649
650GENIETV_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200651 @$(MKCONFIG) $(@:_config=) ppc mpc8xx genietv
wdenk7ebf7442002-11-02 23:17:16 +0000652
653GTH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200654 @$(MKCONFIG) $(@:_config=) ppc mpc8xx gth
wdenk7ebf7442002-11-02 23:17:16 +0000655
656hermes_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200657 @$(MKCONFIG) $(@:_config=) ppc mpc8xx hermes
wdenk7ebf7442002-11-02 23:17:16 +0000658
wdenkc40b2952004-03-13 23:29:43 +0000659HMI10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200660 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenkc40b2952004-03-13 23:29:43 +0000661
wdenk7ebf7442002-11-02 23:17:16 +0000662IAD210_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200663 @$(MKCONFIG) $(@:_config=) ppc mpc8xx IAD210 siemens
wdenk7ebf7442002-11-02 23:17:16 +0000664
665xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
666
667ICU862_100MHz_config \
668ICU862_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200669 @mkdir -p $(obj)include
670 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000671 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200672 { echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000673 echo "... with 100MHz system clock" ; \
674 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200675 @$(MKCONFIG) -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
wdenk7ebf7442002-11-02 23:17:16 +0000676
677IP860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200678 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ip860
wdenk7ebf7442002-11-02 23:17:16 +0000679
680IVML24_256_config \
681IVML24_128_config \
682IVML24_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200683 @mkdir -p $(obj)include
684 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000685 @[ -z "$(findstring IVML24_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200686 { echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000687 }
688 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200689 { echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000690 }
691 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200692 { echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000693 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200694 @$(MKCONFIG) -a IVML24 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000695
696IVMS8_256_config \
697IVMS8_128_config \
698IVMS8_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200699 @mkdir -p $(obj)include
700 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000701 @[ -z "$(findstring IVMS8_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200702 { echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000703 }
704 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200705 { echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000706 }
707 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200708 { echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000709 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200710 @$(MKCONFIG) -a IVMS8 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000711
wdenk56f94be2002-11-05 16:35:14 +0000712KUP4K_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200713 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4k kup
wdenk0608e042004-03-25 19:29:38 +0000714
715KUP4X_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200716 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000717
wdenk7ebf7442002-11-02 23:17:16 +0000718LANTEC_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200719 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lantec
wdenk7ebf7442002-11-02 23:17:16 +0000720
721lwmon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200722 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lwmon
wdenk7ebf7442002-11-02 23:17:16 +0000723
724MBX_config \
725MBX860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200726 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mbx8xx
wdenk7ebf7442002-11-02 23:17:16 +0000727
728MHPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200729 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mhpc eltec
wdenk7ebf7442002-11-02 23:17:16 +0000730
731MVS1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200732 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mvs1
wdenk7ebf7442002-11-02 23:17:16 +0000733
wdenk993cad92003-06-26 22:04:09 +0000734xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
735
736NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000737NETVIA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200738 @mkdir -p $(obj)include
739 @ >$(obj)include/config.h
wdenk993cad92003-06-26 22:04:09 +0000740 @[ -z "$(findstring NETVIA_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200741 { echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000742 echo "... Version 1" ; \
743 }
744 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200745 { echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000746 echo "... Version 2" ; \
747 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200748 @$(MKCONFIG) -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000749
wdenkc26e4542004-04-18 10:13:26 +0000750xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
751
752NETPHONE_V2_config \
wdenk04a85b32004-04-15 18:22:41 +0000753NETPHONE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200754 @mkdir -p $(obj)include
755 @ >$(obj)include/config.h
wdenkc26e4542004-04-18 10:13:26 +0000756 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200757 { echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000758 }
759 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200760 { echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000761 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200762 @$(MKCONFIG) -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk04a85b32004-04-15 18:22:41 +0000763
wdenk79fa88f2004-06-07 23:46:25 +0000764xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk04a85b32004-04-15 18:22:41 +0000765
wdenk79fa88f2004-06-07 23:46:25 +0000766NETTA_ISDN_6412_SWAPHOOK_config \
767NETTA_ISDN_SWAPHOOK_config \
768NETTA_6412_SWAPHOOK_config \
769NETTA_SWAPHOOK_config \
770NETTA_ISDN_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000771NETTA_ISDN_config \
wdenk79fa88f2004-06-07 23:46:25 +0000772NETTA_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000773NETTA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200774 @mkdir -p $(obj)include
775 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000776 @[ -z "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200777 { echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \
wdenk04a85b32004-04-15 18:22:41 +0000778 }
wdenk79fa88f2004-06-07 23:46:25 +0000779 @[ -n "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200780 { echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000781 }
782 @[ -z "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200783 { echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000784 }
785 @[ -n "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200786 { echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000787 }
788 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200789 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000790 }
791 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200792 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000793 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200794 @$(MKCONFIG) -a $(call xtract_NETTA,$@) ppc mpc8xx netta
wdenk04a85b32004-04-15 18:22:41 +0000795
wdenk79fa88f2004-06-07 23:46:25 +0000796xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
797
798NETTA2_V2_config \
799NETTA2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200800 @mkdir -p $(obj)include
801 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000802 @[ -z "$(findstring NETTA2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200803 { echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000804 }
805 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200806 { echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000807 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200808 @$(MKCONFIG) -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
wdenk79fa88f2004-06-07 23:46:25 +0000809
dzu@denx.dea367d422006-04-19 11:52:46 +0200810NC650_Rev1_config \
811NC650_Rev2_config \
812CP850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200813 @mkdir -p $(obj)include
814 @ >$(obj)include/config.h
dzu@denx.dea367d422006-04-19 11:52:46 +0200815 @[ -z "$(findstring CP850,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200816 { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \
817 echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200818 }
819 @[ -z "$(findstring Rev1,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200820 { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200821 }
822 @[ -z "$(findstring Rev2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200823 { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200824 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200825 @$(MKCONFIG) -a NC650 ppc mpc8xx nc650
wdenk7ca202f2004-08-28 22:45:57 +0000826
wdenk7ebf7442002-11-02 23:17:16 +0000827NX823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200828 @$(MKCONFIG) $(@:_config=) ppc mpc8xx nx823
wdenk7ebf7442002-11-02 23:17:16 +0000829
830pcu_e_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200831 @$(MKCONFIG) $(@:_config=) ppc mpc8xx pcu_e siemens
wdenk7ebf7442002-11-02 23:17:16 +0000832
wdenk3bbc8992003-12-07 22:27:15 +0000833QS850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200834 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000835
836QS823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200837 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000838
839QS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200840 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs860t snmc
wdenk3bbc8992003-12-07 22:27:15 +0000841
wdenkda93ed82004-09-29 11:02:56 +0000842quantum_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200843 @$(MKCONFIG) $(@:_config=) ppc mpc8xx quantum
wdenkda93ed82004-09-29 11:02:56 +0000844
wdenk7ebf7442002-11-02 23:17:16 +0000845R360MPI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200846 @$(MKCONFIG) $(@:_config=) ppc mpc8xx r360mpi
wdenk7ebf7442002-11-02 23:17:16 +0000847
wdenk682011f2003-06-03 23:54:09 +0000848RBC823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200849 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rbc823
wdenk682011f2003-06-03 23:54:09 +0000850
wdenk7ebf7442002-11-02 23:17:16 +0000851RPXClassic_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200852 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXClassic
wdenk7ebf7442002-11-02 23:17:16 +0000853
854RPXlite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200855 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXlite
wdenk7ebf7442002-11-02 23:17:16 +0000856
wdenke63c8ee2004-06-09 21:04:48 +0000857RPXlite_DW_64_config \
858RPXlite_DW_LCD_config \
859RPXlite_DW_64_LCD_config \
860RPXlite_DW_NVRAM_config \
861RPXlite_DW_NVRAM_64_config \
862RPXlite_DW_NVRAM_LCD_config \
863RPXlite_DW_NVRAM_64_LCD_config \
864RPXlite_DW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200865 @mkdir -p $(obj)include
866 @ >$(obj)include/config.h
wdenke63c8ee2004-06-09 21:04:48 +0000867 @[ -z "$(findstring _64,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200868 { echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000869 echo "... with 64MHz system clock ..."; \
870 }
871 @[ -z "$(findstring _LCD,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200872 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
873 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000874 echo "... with LCD display ..."; \
875 }
876 @[ -z "$(findstring _NVRAM,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200877 { echo "#define CFG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000878 echo "... with ENV in NVRAM ..."; \
879 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200880 @$(MKCONFIG) -a RPXlite_DW ppc mpc8xx RPXlite_dw
wdenke63c8ee2004-06-09 21:04:48 +0000881
wdenk73a8b272003-06-05 19:27:42 +0000882rmu_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200883 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rmu
wdenk73a8b272003-06-05 19:27:42 +0000884
wdenk7ebf7442002-11-02 23:17:16 +0000885RRvision_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200886 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000887
888RRvision_LCD_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200889 @mkdir -p $(obj)include
890 @echo "#define CONFIG_LCD" >$(obj)include/config.h
891 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
892 @$(MKCONFIG) -a RRvision ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000893
894SM850_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200895 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000896
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200897spc1920_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200898 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spc1920
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200899
wdenk7ebf7442002-11-02 23:17:16 +0000900SPD823TS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200901 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spd8xx
wdenk7ebf7442002-11-02 23:17:16 +0000902
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200903stxxtc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200904 @$(MKCONFIG) $(@:_config=) ppc mpc8xx stxxtc
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200905
wdenkdc7c9a12003-03-26 06:55:25 +0000906svm_sc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200907 @$(MKCONFIG) $(@:_config=) ppc mpc8xx svm_sc8xx
wdenkdc7c9a12003-03-26 06:55:25 +0000908
wdenk7ebf7442002-11-02 23:17:16 +0000909SXNI855T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200910 @$(MKCONFIG) $(@:_config=) ppc mpc8xx sixnet
wdenk7ebf7442002-11-02 23:17:16 +0000911
wdenkdb2f721f2003-03-06 00:58:30 +0000912# EMK MPC8xx based modules
913TOP860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200914 @$(MKCONFIG) $(@:_config=) ppc mpc8xx top860 emk
wdenkdb2f721f2003-03-06 00:58:30 +0000915
wdenk7ebf7442002-11-02 23:17:16 +0000916# Play some tricks for configuration selection
wdenke9132ea2004-04-24 23:23:30 +0000917# Only 855 and 860 boards may come with FEC
918# and only 823 boards may have LCD support
919xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +0000920
921FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000922FPS860L_config \
wdenkf12e5682003-07-07 20:07:54 +0000923NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +0000924TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000925TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +0000926TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000927TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000928TQM860L_config \
wdenkd126bfb2003-04-10 11:18:18 +0000929TQM862L_config \
wdenkae3af052003-08-07 22:18:11 +0000930TQM823M_config \
wdenkae3af052003-08-07 22:18:11 +0000931TQM850M_config \
wdenkf12e5682003-07-07 20:07:54 +0000932TQM855M_config \
wdenkf12e5682003-07-07 20:07:54 +0000933TQM860M_config \
wdenkf12e5682003-07-07 20:07:54 +0000934TQM862M_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200935TQM866M_config \
Markus Klotzbuecher090eb732006-07-12 15:26:01 +0200936TQM885D_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200937virtlab2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200938 @mkdir -p $(obj)include
939 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000940 @[ -z "$(findstring _LCD,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200941 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
942 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000943 echo "... with LCD display" ; \
944 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200945 @$(MKCONFIG) -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000946
947TTTech_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200948 @mkdir -p $(obj)include
949 @echo "#define CONFIG_LCD" >$(obj)include/config.h
950 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
951 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000952
wdenkec0aee72004-12-19 09:58:11 +0000953uc100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200954 @$(MKCONFIG) $(@:_config=) ppc mpc8xx uc100
wdenkf7d15722004-12-18 22:35:43 +0000955
wdenk608c9142003-01-13 23:54:46 +0000956v37_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200957 @mkdir -p $(obj)include
958 @echo "#define CONFIG_LCD" >$(obj)include/config.h
959 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h
960 @$(MKCONFIG) $(@:_config=) ppc mpc8xx v37
wdenk608c9142003-01-13 23:54:46 +0000961
dzu91e940d2003-09-25 22:32:40 +0000962wtk_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200963 @mkdir -p $(obj)include
964 @echo "#define CONFIG_LCD" >$(obj)include/config.h
965 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h
966 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
dzu91e940d2003-09-25 22:32:40 +0000967
wdenk7ebf7442002-11-02 23:17:16 +0000968#########################################################################
969## PPC4xx Systems
970#########################################################################
wdenke55ca7e2004-07-01 21:40:08 +0000971xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +0000972
973ADCIOP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200974 @$(MKCONFIG) $(@:_config=) ppc ppc4xx adciop esd
wdenk7ebf7442002-11-02 23:17:16 +0000975
Wolfgang Denk7521af12005-10-09 01:04:33 +0200976AP1000_config:unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200977 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ap1000 amirix
Wolfgang Denk7521af12005-10-09 01:04:33 +0200978
stroesec419d1d2004-12-16 18:44:40 +0000979APC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200980 @$(MKCONFIG) $(@:_config=) ppc ppc4xx apc405 esd
stroesec419d1d2004-12-16 18:44:40 +0000981
wdenk7ebf7442002-11-02 23:17:16 +0000982AR405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200983 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ar405 esd
wdenk7ebf7442002-11-02 23:17:16 +0000984
stroese549826e2003-05-23 11:41:44 +0000985ASH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200986 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ash405 esd
stroese549826e2003-05-23 11:41:44 +0000987
Stefan Roese8a316c92005-08-01 16:49:12 +0200988bamboo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200989 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bamboo amcc
Stefan Roese8a316c92005-08-01 16:49:12 +0200990
991bubinga_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200992 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bubinga amcc
stroese549826e2003-05-23 11:41:44 +0000993
wdenk7ebf7442002-11-02 23:17:16 +0000994CANBT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200995 @$(MKCONFIG) $(@:_config=) ppc ppc4xx canbt esd
wdenk7ebf7442002-11-02 23:17:16 +0000996
wdenk1d6f9722004-09-09 17:44:35 +0000997CATcenter_config \
998CATcenter_25_config \
999CATcenter_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001000 @mkdir -p $(obj)include
1001 @ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h
1002 @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001003 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001004 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001005 echo "SysClk = 25MHz" ; \
1006 }
1007 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001008 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001009 echo "SysClk = 33MHz" ; \
1010 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001011 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk10767cc2004-05-13 13:23:58 +00001012
Stefan Roese7644f162005-09-22 09:16:57 +02001013CPCI2DP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001014 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd
Stefan Roese7644f162005-09-22 09:16:57 +02001015
stroese549826e2003-05-23 11:41:44 +00001016CPCI405_config \
1017CPCI4052_config \
stroesec419d1d2004-12-16 18:44:40 +00001018CPCI405DT_config \
stroese549826e2003-05-23 11:41:44 +00001019CPCI405AB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001020 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci405 esd
1021 @echo "BOARD_REVISION = $(@:_config=)" >> $(obj)include/config.mk
wdenk7ebf7442002-11-02 23:17:16 +00001022
1023CPCI440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001024 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci440 esd
wdenk7ebf7442002-11-02 23:17:16 +00001025
1026CPCIISER4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001027 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpciiser4 esd
wdenk7ebf7442002-11-02 23:17:16 +00001028
wdenkdb01a2e2004-04-15 23:14:49 +00001029CRAYL1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001030 @$(MKCONFIG) $(@:_config=) ppc ppc4xx L1 cray
wdenk7ebf7442002-11-02 23:17:16 +00001031
wdenkcd0a9de2004-02-23 20:48:38 +00001032csb272_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001033 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb272
wdenkcd0a9de2004-02-23 20:48:38 +00001034
wdenkaa245092004-06-09 12:47:02 +00001035csb472_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001036 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb472
wdenkaa245092004-06-09 12:47:02 +00001037
wdenk7ebf7442002-11-02 23:17:16 +00001038DASA_SIM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001039 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dasa_sim esd
wdenk7ebf7442002-11-02 23:17:16 +00001040
stroese72cd5aa2003-09-12 08:57:15 +00001041DP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001042 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dp405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001043
wdenk7ebf7442002-11-02 23:17:16 +00001044DU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001045 @$(MKCONFIG) $(@:_config=) ppc ppc4xx du405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001046
Stefan Roese8a316c92005-08-01 16:49:12 +02001047ebony_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001048 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +00001049
wdenkdb01a2e2004-04-15 23:14:49 +00001050ERIC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001051 @$(MKCONFIG) $(@:_config=) ppc ppc4xx eric
wdenk7ebf7442002-11-02 23:17:16 +00001052
wdenkdb01a2e2004-04-15 23:14:49 +00001053EXBITGEN_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001054 @$(MKCONFIG) $(@:_config=) ppc ppc4xx exbitgen
wdenkd1cbe852003-06-28 17:24:46 +00001055
stroesec419d1d2004-12-16 18:44:40 +00001056G2000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001057 @$(MKCONFIG) $(@:_config=) ppc ppc4xx g2000
stroesec419d1d2004-12-16 18:44:40 +00001058
1059HH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001060 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001061
stroese72cd5aa2003-09-12 08:57:15 +00001062HUB405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001063 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001064
wdenkdb01a2e2004-04-15 23:14:49 +00001065JSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001066 @$(MKCONFIG) $(@:_config=) ppc ppc4xx jse
wdenkdb01a2e2004-04-15 23:14:49 +00001067
Stefan Roeseb79316f2005-08-15 12:31:23 +02001068KAREF_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001069 @$(MKCONFIG) $(@:_config=) ppc ppc4xx karef sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001070
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001071luan_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001072 @$(MKCONFIG) $(@:_config=) ppc ppc4xx luan amcc
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001073
Stefan Roeseb79316f2005-08-15 12:31:23 +02001074METROBOX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001075 @$(MKCONFIG) $(@:_config=) ppc ppc4xx metrobox sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001076
wdenkdb01a2e2004-04-15 23:14:49 +00001077MIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001078 @$(MKCONFIG) $(@:_config=) ppc ppc4xx mip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001079
wdenkdb01a2e2004-04-15 23:14:49 +00001080MIP405T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001081 @mkdir -p $(obj)include
1082 @echo "#define CONFIG_MIP405T" >$(obj)include/config.h
wdenkf3e0de62003-06-04 15:05:30 +00001083 @echo "Enable subset config for MIP405T"
Marian Balakowiczf9328632006-09-01 19:49:50 +02001084 @$(MKCONFIG) -a MIP405 ppc ppc4xx mip405 mpl
wdenkf3e0de62003-06-04 15:05:30 +00001085
wdenkdb01a2e2004-04-15 23:14:49 +00001086ML2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001087 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml2
wdenk7ebf7442002-11-02 23:17:16 +00001088
wdenkdb01a2e2004-04-15 23:14:49 +00001089ml300_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001090 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml300 xilinx
wdenk028ab6b2004-02-23 23:54:43 +00001091
Stefan Roese8a316c92005-08-01 16:49:12 +02001092ocotea_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001093 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocotea amcc
wdenk0e6d7982004-03-14 00:07:33 +00001094
wdenk7ebf7442002-11-02 23:17:16 +00001095OCRTC_config \
1096ORSG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001097 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocrtc esd
wdenk7ebf7442002-11-02 23:17:16 +00001098
Stefan Roese5568e612005-11-22 13:20:42 +01001099p3p440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001100 @$(MKCONFIG) $(@:_config=) ppc ppc4xx p3p440 prodrive
Stefan Roese5568e612005-11-22 13:20:42 +01001101
wdenk7ebf7442002-11-02 23:17:16 +00001102PCI405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001103 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pci405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001104
Stefan Roesea4c8d132006-06-02 16:18:04 +02001105pcs440ep_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001106 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pcs440ep
Stefan Roesea4c8d132006-06-02 16:18:04 +02001107
wdenkdb01a2e2004-04-15 23:14:49 +00001108PIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001109 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001110
stroese72cd5aa2003-09-12 08:57:15 +00001111PLU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001112 @$(MKCONFIG) $(@:_config=) ppc ppc4xx plu405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001113
stroese549826e2003-05-23 11:41:44 +00001114PMC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001115 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pmc405 esd
stroese549826e2003-05-23 11:41:44 +00001116
wdenk281e00a2004-08-01 22:48:16 +00001117PPChameleonEVB_config \
wdenke55ca7e2004-07-01 21:40:08 +00001118PPChameleonEVB_BA_25_config \
1119PPChameleonEVB_ME_25_config \
1120PPChameleonEVB_HI_25_config \
1121PPChameleonEVB_BA_33_config \
1122PPChameleonEVB_ME_33_config \
1123PPChameleonEVB_HI_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001124 @mkdir -p $(obj)include
1125 @ >$(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001126 @[ -z "$(findstring EVB_BA,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001127 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001128 echo "... BASIC model" ; \
1129 }
wdenk1d6f9722004-09-09 17:44:35 +00001130 @[ -z "$(findstring EVB_ME,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001131 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001132 echo "... MEDIUM model" ; \
1133 }
wdenk1d6f9722004-09-09 17:44:35 +00001134 @[ -z "$(findstring EVB_HI,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001135 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001136 echo "... HIGH-END model" ; \
1137 }
wdenke55ca7e2004-07-01 21:40:08 +00001138 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001139 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001140 echo "SysClk = 25MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001141 }
1142 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001143 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001144 echo "SysClk = 33MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001145 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001146 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk12f34242003-09-02 22:48:03 +00001147
wdenk652a10c2005-01-09 23:48:14 +00001148sbc405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001149 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sbc405
wdenk652a10c2005-01-09 23:48:14 +00001150
Stefan Roese887e2ec2006-09-07 11:51:23 +02001151sequoia_config: unconfig
1152 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sequoia amcc
1153
1154sequoia_nand_config: unconfig
1155 @ln -s board/amcc/sequoia/Makefile nand_spl/Makefile
1156 @echo "#define CONFIG_NAND_U_BOOT" >include/config.h
1157 @echo "Compile NAND boot image for sequoia"
1158 @$(MKCONFIG) -a sequoia ppc ppc4xx sequoia amcc
1159 @echo "TEXT_BASE = 0x01000000" >board/amcc/sequoia/config.tmp
1160 @echo "CONFIG_NAND_U_BOOT = y" >> include/config.mk
1161
Stefan Roese8a316c92005-08-01 16:49:12 +02001162sycamore_config: unconfig
1163 @echo "Configuring for sycamore board as subset of walnut..."
Marian Balakowiczf9328632006-09-01 19:49:50 +02001164 @$(MKCONFIG) -a walnut ppc ppc4xx walnut amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001165
stroese72cd5aa2003-09-12 08:57:15 +00001166VOH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001167 @$(MKCONFIG) $(@:_config=) ppc ppc4xx voh405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001168
stroesec419d1d2004-12-16 18:44:40 +00001169VOM405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001170 @$(MKCONFIG) $(@:_config=) ppc ppc4xx vom405 esd
stroesec419d1d2004-12-16 18:44:40 +00001171
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001172CMS700_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001173 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001174
wdenk7ebf7442002-11-02 23:17:16 +00001175W7OLMC_config \
1176W7OLMG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001177 @$(MKCONFIG) $(@:_config=) ppc ppc4xx w7o
wdenk7ebf7442002-11-02 23:17:16 +00001178
Stefan Roese8a316c92005-08-01 16:49:12 +02001179walnut_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001180 @$(MKCONFIG) $(@:_config=) ppc ppc4xx walnut amcc
wdenk7ebf7442002-11-02 23:17:16 +00001181
stroesec419d1d2004-12-16 18:44:40 +00001182WUH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001183 @$(MKCONFIG) $(@:_config=) ppc ppc4xx wuh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001184
wdenkdb01a2e2004-04-15 23:14:49 +00001185XPEDITE1K_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001186 @$(MKCONFIG) $(@:_config=) ppc ppc4xx xpedite1k
wdenkba56f622004-02-06 23:19:44 +00001187
Stefan Roese8a316c92005-08-01 16:49:12 +02001188yosemite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001189 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yosemite amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001190
1191yellowstone_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001192 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yellowstone amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001193
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001194yucca_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001195 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yucca amcc
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001196
wdenk7ebf7442002-11-02 23:17:16 +00001197#########################################################################
wdenk983fda82004-10-28 00:09:35 +00001198## MPC8220 Systems
1199#########################################################################
Wolfgang Denkdc17fb62005-08-03 22:32:02 +02001200
1201Alaska8220_config \
1202Yukon8220_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001203 @$(MKCONFIG) $(@:_config=) ppc mpc8220 alaska
wdenk983fda82004-10-28 00:09:35 +00001204
wdenk12b43d52005-04-05 21:57:18 +00001205sorcery_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001206 @$(MKCONFIG) $(@:_config=) ppc mpc8220 sorcery
wdenk12b43d52005-04-05 21:57:18 +00001207
wdenk983fda82004-10-28 00:09:35 +00001208#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001209## MPC824x Systems
1210#########################################################################
wdenkefa329c2004-03-23 20:18:25 +00001211xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenk3bac3512003-03-12 10:41:04 +00001212
wdenk03329902003-06-20 22:36:30 +00001213A3000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001214 @$(MKCONFIG) $(@:_config=) ppc mpc824x a3000
wdenk03329902003-06-20 22:36:30 +00001215
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001216barco_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001217 @$(MKCONFIG) $(@:_config=) ppc mpc824x barco
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001218
wdenk7ebf7442002-11-02 23:17:16 +00001219BMW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001220 @$(MKCONFIG) $(@:_config=) ppc mpc824x bmw
wdenk7ebf7442002-11-02 23:17:16 +00001221
wdenk3bac3512003-03-12 10:41:04 +00001222CPC45_config \
1223CPC45_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001224 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc824x cpc45
1225 @cd $(obj)include ; \
wdenk3bac3512003-03-12 10:41:04 +00001226 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1227 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1228 echo "... booting from 8-bit flash" ; \
1229 else \
1230 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1231 echo "... booting from 64-bit flash" ; \
1232 fi; \
1233 echo "export CONFIG_BOOT_ROM" >> config.mk;
1234
wdenk7ebf7442002-11-02 23:17:16 +00001235CU824_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001236 @$(MKCONFIG) $(@:_config=) ppc mpc824x cu824
wdenk7ebf7442002-11-02 23:17:16 +00001237
wdenk7abf0c52004-04-18 21:45:42 +00001238debris_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001239 @$(MKCONFIG) $(@:_config=) ppc mpc824x debris etin
wdenk7abf0c52004-04-18 21:45:42 +00001240
wdenk80885a92004-02-26 23:46:20 +00001241eXalion_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001242 @$(MKCONFIG) $(@:_config=) ppc mpc824x eXalion
wdenk80885a92004-02-26 23:46:20 +00001243
wdenk756f5862005-04-03 15:51:42 +00001244HIDDEN_DRAGON_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001245 @$(MKCONFIG) $(@:_config=) ppc mpc824x hidden_dragon
wdenk756f5862005-04-03 15:51:42 +00001246
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001247kvme080_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001248 @$(MKCONFIG) $(@:_config=) ppc mpc824x kvme080 etin
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001249
wdenk7ebf7442002-11-02 23:17:16 +00001250MOUSSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001251 @$(MKCONFIG) $(@:_config=) ppc mpc824x mousse
wdenk7ebf7442002-11-02 23:17:16 +00001252
1253MUSENKI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001254 @$(MKCONFIG) $(@:_config=) ppc mpc824x musenki
wdenk7ebf7442002-11-02 23:17:16 +00001255
wdenkb4676a22003-12-07 19:24:00 +00001256MVBLUE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001257 @$(MKCONFIG) $(@:_config=) ppc mpc824x mvblue
wdenkb4676a22003-12-07 19:24:00 +00001258
wdenk7ebf7442002-11-02 23:17:16 +00001259OXC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001260 @$(MKCONFIG) $(@:_config=) ppc mpc824x oxc
wdenk7ebf7442002-11-02 23:17:16 +00001261
1262PN62_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001263 @$(MKCONFIG) $(@:_config=) ppc mpc824x pn62
wdenk7ebf7442002-11-02 23:17:16 +00001264
1265Sandpoint8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001266 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001267
1268Sandpoint8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001269 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001270
wdenk466b7412004-07-10 22:35:59 +00001271sbc8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001272 @$(MKCONFIG) $(@:_config=) ppc mpc824x sbc8240
wdenk466b7412004-07-10 22:35:59 +00001273
wdenkd1cbe852003-06-28 17:24:46 +00001274SL8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001275 @$(MKCONFIG) $(@:_config=) ppc mpc824x sl8245
wdenkd1cbe852003-06-28 17:24:46 +00001276
wdenk7ebf7442002-11-02 23:17:16 +00001277utx8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001278 @$(MKCONFIG) $(@:_config=) ppc mpc824x utx8245
wdenk7ebf7442002-11-02 23:17:16 +00001279
1280#########################################################################
1281## MPC8260 Systems
1282#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001283
wdenk54387ac2003-10-08 22:45:44 +00001284atc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001285 @$(MKCONFIG) $(@:_config=) ppc mpc8260 atc
wdenk54387ac2003-10-08 22:45:44 +00001286
wdenk7ebf7442002-11-02 23:17:16 +00001287cogent_mpc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001288 @$(MKCONFIG) $(@:_config=) ppc mpc8260 cogent
wdenk7ebf7442002-11-02 23:17:16 +00001289
1290CPU86_config \
1291CPU86_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001292 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu86
1293 @cd $(obj)include ; \
wdenk7ebf7442002-11-02 23:17:16 +00001294 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1295 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1296 echo "... booting from 8-bit flash" ; \
1297 else \
1298 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1299 echo "... booting from 64-bit flash" ; \
1300 fi; \
1301 echo "export CONFIG_BOOT_ROM" >> config.mk;
1302
wdenk384cc682005-04-03 22:35:21 +00001303CPU87_config \
1304CPU87_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001305 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu87
1306 @cd $(obj)include ; \
wdenk384cc682005-04-03 22:35:21 +00001307 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1308 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1309 echo "... booting from 8-bit flash" ; \
1310 else \
1311 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1312 echo "... booting from 64-bit flash" ; \
1313 fi; \
1314 echo "export CONFIG_BOOT_ROM" >> config.mk;
1315
Wolfgang Denkf901a832005-08-06 01:42:58 +02001316ep8248_config \
1317ep8248E_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001318 @$(MKCONFIG) ep8248 ppc mpc8260 ep8248
Wolfgang Denkf901a832005-08-06 01:42:58 +02001319
wdenk7ebf7442002-11-02 23:17:16 +00001320ep8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001321 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep8260
wdenk7ebf7442002-11-02 23:17:16 +00001322
1323gw8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001324 @$(MKCONFIG) $(@:_config=) ppc mpc8260 gw8260
wdenk7ebf7442002-11-02 23:17:16 +00001325
1326hymod_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001327 @$(MKCONFIG) $(@:_config=) ppc mpc8260 hymod
wdenk7ebf7442002-11-02 23:17:16 +00001328
wdenk9dd41a72005-05-12 22:48:09 +00001329IDS8247_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001330 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ids8247
wdenk9dd41a72005-05-12 22:48:09 +00001331
wdenk7ebf7442002-11-02 23:17:16 +00001332IPHASE4539_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001333 @$(MKCONFIG) $(@:_config=) ppc mpc8260 iphase4539
wdenk7ebf7442002-11-02 23:17:16 +00001334
wdenkc3c7f862004-06-09 14:47:54 +00001335ISPAN_config \
1336ISPAN_REVB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001337 @mkdir -p $(obj)include
wdenkc3c7f862004-06-09 14:47:54 +00001338 @if [ "$(findstring _REVB_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001339 echo "#define CFG_REV_B" > $(obj)include/config.h ; \
wdenkc3c7f862004-06-09 14:47:54 +00001340 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001341 @$(MKCONFIG) -a ISPAN ppc mpc8260 ispan
wdenkc3c7f862004-06-09 14:47:54 +00001342
wdenk04a85b32004-04-15 18:22:41 +00001343MPC8260ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001344MPC8260ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001345MPC8260ADS_33MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001346MPC8260ADS_33MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001347MPC8260ADS_40MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001348MPC8260ADS_40MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001349MPC8272ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001350MPC8272ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001351PQ2FADS_config \
wdenk901787d2005-04-03 23:22:21 +00001352PQ2FADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001353PQ2FADS-VR_config \
wdenk901787d2005-04-03 23:22:21 +00001354PQ2FADS-VR_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001355PQ2FADS-ZU_config \
wdenk901787d2005-04-03 23:22:21 +00001356PQ2FADS-ZU_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001357PQ2FADS-ZU_66MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001358PQ2FADS-ZU_66MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001359 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001360 @mkdir -p $(obj)include
1361 @mkdir -p $(obj)board/mpc8260ads
wdenk04a85b32004-04-15 18:22:41 +00001362 $(if $(findstring PQ2FADS,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001363 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > $(obj)include/config.h, \
1364 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h)
wdenk04a85b32004-04-15 18:22:41 +00001365 $(if $(findstring MHz,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001366 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \
wdenk04a85b32004-04-15 18:22:41 +00001367 $(if $(findstring VR,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001368 @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h))
wdenk901787d2005-04-03 23:22:21 +00001369 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001370 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/mpc8260ads/config.tmp ; \
wdenk901787d2005-04-03 23:22:21 +00001371 echo "... with lowboot configuration" ; \
1372 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001373 @$(MKCONFIG) -a MPC8260ADS ppc mpc8260 mpc8260ads
wdenk7ebf7442002-11-02 23:17:16 +00001374
wdenkdb2f721f2003-03-06 00:58:30 +00001375MPC8266ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001376 @$(MKCONFIG) $(@:_config=) ppc mpc8260 mpc8266ads
wdenkdb2f721f2003-03-06 00:58:30 +00001377
wdenkefa329c2004-03-23 20:18:25 +00001378# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk10f67012003-03-25 18:06:06 +00001379PM825_config \
wdenkefa329c2004-03-23 20:18:25 +00001380PM825_ROMBOOT_config \
1381PM825_BIGFLASH_config \
1382PM825_ROMBOOT_BIGFLASH_config \
wdenk7ebf7442002-11-02 23:17:16 +00001383PM826_config \
wdenkefa329c2004-03-23 20:18:25 +00001384PM826_ROMBOOT_config \
1385PM826_BIGFLASH_config \
1386PM826_ROMBOOT_BIGFLASH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001387 @mkdir -p $(obj)include
1388 @mkdir -p $(obj)board/pm826
wdenkefa329c2004-03-23 20:18:25 +00001389 @if [ "$(findstring PM825_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001390 echo "#define CONFIG_PCI" >$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001391 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001392 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001393 fi
1394 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1395 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001396 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1397 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001398 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1399 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001400 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001401 fi; \
1402 else \
wdenk7ebf7442002-11-02 23:17:16 +00001403 echo "... booting from 64-bit flash" ; \
wdenkefa329c2004-03-23 20:18:25 +00001404 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1405 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001406 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
1407 echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001408 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001409 echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001410 fi; \
1411 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001412 @$(MKCONFIG) -a PM826 ppc mpc8260 pm826
wdenkefa329c2004-03-23 20:18:25 +00001413
1414PM828_config \
1415PM828_PCI_config \
1416PM828_ROMBOOT_config \
1417PM828_ROMBOOT_PCI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001418 @mkdir -p $(obj)include
1419 @mkdir -p $(obj)board/pm826
Marian Balakowicz17076262006-04-05 20:37:11 +02001420 @if [ "$(findstring _PCI_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001421 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001422 echo "... with PCI enabled" ; \
1423 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001424 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001425 fi
1426 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1427 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001428 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1429 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001430 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001431 @$(MKCONFIG) -a PM828 ppc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +00001432
1433ppmc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001434 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ppmc8260
wdenk7ebf7442002-11-02 23:17:16 +00001435
wdenk8b0bfc62005-04-03 23:11:38 +00001436Rattler8248_config \
1437Rattler_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001438 @mkdir -p $(obj)include
wdenk8b0bfc62005-04-03 23:11:38 +00001439 $(if $(findstring 8248,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001440 @echo "#define CONFIG_MPC8248" > $(obj)include/config.h)
1441 @$(MKCONFIG) -a Rattler ppc mpc8260 rattler
wdenk8b0bfc62005-04-03 23:11:38 +00001442
wdenk7ebf7442002-11-02 23:17:16 +00001443RPXsuper_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001444 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rpxsuper
wdenk7ebf7442002-11-02 23:17:16 +00001445
1446rsdproto_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001447 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rsdproto
wdenk7ebf7442002-11-02 23:17:16 +00001448
1449sacsng_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001450 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sacsng
wdenk7ebf7442002-11-02 23:17:16 +00001451
1452sbc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001453 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sbc8260
wdenk7ebf7442002-11-02 23:17:16 +00001454
1455SCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001456 @$(MKCONFIG) $(@:_config=) ppc mpc8260 SCM siemens
wdenk7ebf7442002-11-02 23:17:16 +00001457
wdenk27b207f2003-07-24 23:38:38 +00001458TQM8255_AA_config \
1459TQM8260_AA_config \
1460TQM8260_AB_config \
1461TQM8260_AC_config \
1462TQM8260_AD_config \
1463TQM8260_AE_config \
1464TQM8260_AF_config \
1465TQM8260_AG_config \
1466TQM8260_AH_config \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001467TQM8260_AI_config \
wdenk27b207f2003-07-24 23:38:38 +00001468TQM8265_AA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001469 @mkdir -p $(obj)include
wdenk27b207f2003-07-24 23:38:38 +00001470 @case "$@" in \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001471 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
1472 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
1473 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1474 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1475 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1476 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
1477 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1478 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
1479 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
1480 TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1481 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
wdenk27b207f2003-07-24 23:38:38 +00001482 esac; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001483 >$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001484 if [ "$${CTYPE}" != "MPC8260" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001485 echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001486 fi; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001487 echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001488 echo "... with $${CFREQ}MHz system clock" ; \
1489 if [ "$${CACHE}" == "yes" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001490 echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001491 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001492 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001493 echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001494 echo "... without L2 Cache support" ; \
wdenk27b207f2003-07-24 23:38:38 +00001495 fi; \
1496 if [ "$${BMODE}" == "60x" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001497 echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001498 echo "... with 60x Bus Mode" ; \
1499 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001500 echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001501 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001502 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001503 @$(MKCONFIG) -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +00001504
wdenkba91e262005-05-30 23:55:42 +00001505VoVPN-GW_66MHz_config \
1506VoVPN-GW_100MHz_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001507 @mkdir -p $(obj)include
1508 @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h
1509 @$(MKCONFIG) -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
wdenkba91e262005-05-30 23:55:42 +00001510
wdenk54387ac2003-10-08 22:45:44 +00001511ZPC1900_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001512 @$(MKCONFIG) $(@:_config=) ppc mpc8260 zpc1900
wdenk7aa78612003-05-03 15:50:43 +00001513
wdenk4e5ca3e2003-12-08 01:34:36 +00001514#########################################################################
1515## Coldfire
1516#########################################################################
1517
Wolfgang Denk74812662005-12-12 16:06:05 +01001518cobra5272_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001519 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272
Wolfgang Denk74812662005-12-12 16:06:05 +01001520
Wolfgang Denk4176c792006-06-10 19:27:47 +02001521EB+MCF-EV123_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001522 @mkdir -p $(obj)include
1523 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1524 @ >$(obj)include/config.h
1525 @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1526 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001527
1528EB+MCF-EV123_internal_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001529 @mkdir -p $(obj)include
1530 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1531 @ >$(obj)include/config.h
1532 @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1533 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001534
1535M5271EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001536 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb
Wolfgang Denk4176c792006-06-10 19:27:47 +02001537
wdenk4e5ca3e2003-12-08 01:34:36 +00001538M5272C3_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001539 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3
wdenk4e5ca3e2003-12-08 01:34:36 +00001540
1541M5282EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001542 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb
wdenk4e5ca3e2003-12-08 01:34:36 +00001543
stroesec419d1d2004-12-16 18:44:40 +00001544TASREG_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001545 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd
stroesec419d1d2004-12-16 18:44:40 +00001546
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001547r5200_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001548 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 r5200
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001549
wdenk7ebf7442002-11-02 23:17:16 +00001550#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -05001551## MPC83xx Systems
1552#########################################################################
1553
1554MPC8349ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001555 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349ads
Eran Libertyf046ccd2005-07-28 10:08:46 -05001556
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001557TQM834x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001558 @$(MKCONFIG) $(@:_config=) ppc mpc83xx tqm834x
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001559
Marian Balakowicz991425f2006-03-14 16:24:38 +01001560MPC8349EMDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001561 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349emds
Marian Balakowicz991425f2006-03-14 16:24:38 +01001562
Eran Libertyf046ccd2005-07-28 10:08:46 -05001563#########################################################################
wdenk42d1f032003-10-15 23:53:47 +00001564## MPC85xx Systems
1565#########################################################################
1566
wdenk0ac6f8b2004-07-09 23:27:13 +00001567MPC8540ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001568 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8540ads
wdenk42d1f032003-10-15 23:53:47 +00001569
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001570MPC8540EVAL_config \
1571MPC8540EVAL_33_config \
1572MPC8540EVAL_66_config \
1573MPC8540EVAL_33_slave_config \
1574MPC8540EVAL_66_slave_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001575 @mkdir -p $(obj)include
1576 @echo "" >$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001577 if [ "$(findstring _33_,$@)" ] ; then \
1578 echo -n "... 33 MHz PCI" ; \
1579 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001580 echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001581 echo -n "... 66 MHz PCI" ; \
1582 fi ; \
1583 if [ "$(findstring _slave_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001584 echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001585 echo " slave" ; \
1586 else \
1587 echo " host" ; \
1588 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001589 @$(MKCONFIG) -a MPC8540EVAL ppc mpc85xx mpc8540eval
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001590
wdenk0ac6f8b2004-07-09 23:27:13 +00001591MPC8560ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001592 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8560ads
wdenk42d1f032003-10-15 23:53:47 +00001593
wdenk03f5c552004-10-10 21:21:55 +00001594MPC8541CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001595 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8541cds cds
wdenk03f5c552004-10-10 21:21:55 +00001596
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001597MPC8548CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001598 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8548cds cds
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001599
wdenk03f5c552004-10-10 21:21:55 +00001600MPC8555CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001601 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8555cds cds
wdenk7abf0c52004-04-18 21:45:42 +00001602
wdenk384cc682005-04-03 22:35:21 +00001603PM854_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001604 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm854
wdenk384cc682005-04-03 22:35:21 +00001605
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001606PM856_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001607 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm856
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001608
wdenkc15f3122004-10-10 22:44:24 +00001609sbc8540_config \
1610sbc8540_33_config \
1611sbc8540_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001612 @mkdir -p $(obj)include
wdenkc15f3122004-10-10 22:44:24 +00001613 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001614 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001615 echo "... 66 MHz PCI" ; \
1616 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001617 >$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001618 echo "... 33 MHz PCI" ; \
1619 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001620 @$(MKCONFIG) -a SBC8540 ppc mpc85xx sbc8560
wdenkc15f3122004-10-10 22:44:24 +00001621
wdenk466b7412004-07-10 22:35:59 +00001622sbc8560_config \
1623sbc8560_33_config \
1624sbc8560_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001625 @mkdir -p $(obj)include
wdenk8b07a112004-07-10 21:45:47 +00001626 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001627 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001628 echo "... 66 MHz PCI" ; \
1629 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001630 >$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001631 echo "... 33 MHz PCI" ; \
1632 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001633 @$(MKCONFIG) -a sbc8560 ppc mpc85xx sbc8560
wdenk8b07a112004-07-10 21:45:47 +00001634
wdenk03f5c552004-10-10 21:21:55 +00001635stxgp3_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001636 @$(MKCONFIG) $(@:_config=) ppc mpc85xx stxgp3
wdenk03f5c552004-10-10 21:21:55 +00001637
Stefan Roesed96f41e2005-11-30 13:06:40 +01001638TQM8540_config \
1639TQM8541_config \
1640TQM8555_config \
1641TQM8560_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001642 @mkdir -p $(obj)include
Wolfgang Denka889bd22005-12-06 15:02:31 +01001643 @CTYPE=$(subst TQM,,$(@:_config=)); \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001644 >$(obj)include/config.h ; \
Stefan Roesed96f41e2005-11-30 13:06:40 +01001645 echo "... TQM"$${CTYPE}; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001646 echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \
1647 echo "#define CONFIG_TQM$${CTYPE}">>$(obj)include/config.h; \
1648 echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \
1649 echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>$(obj)include/config.h; \
1650 echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>$(obj)include/config.h
1651 @$(MKCONFIG) -a TQM85xx ppc mpc85xx tqm85xx
wdenkf5c5ef42005-04-05 16:26:47 +00001652
wdenk42d1f032003-10-15 23:53:47 +00001653#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001654## 74xx/7xx Systems
1655#########################################################################
1656
wdenkc7de8292002-11-19 11:04:11 +00001657AmigaOneG3SE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001658 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
wdenkc7de8292002-11-19 11:04:11 +00001659
wdenk15647dc2003-10-09 19:00:25 +00001660BAB7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001661 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx bab7xx eltec
wdenk15647dc2003-10-09 19:00:25 +00001662
stroesec419d1d2004-12-16 18:44:40 +00001663CPCI750_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001664 @$(MKCONFIG) CPCI750 ppc 74xx_7xx cpci750 esd
stroesec419d1d2004-12-16 18:44:40 +00001665
wdenk3a473b22004-01-03 00:43:19 +00001666DB64360_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001667 @$(MKCONFIG) DB64360 ppc 74xx_7xx db64360 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001668
1669DB64460_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001670 @$(MKCONFIG) DB64460 ppc 74xx_7xx db64460 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001671
wdenk15647dc2003-10-09 19:00:25 +00001672ELPPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001673 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx elppc eltec
wdenk15647dc2003-10-09 19:00:25 +00001674
wdenk7ebf7442002-11-02 23:17:16 +00001675EVB64260_config \
1676EVB64260_750CX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001677 @$(MKCONFIG) EVB64260 ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001678
wdenk15647dc2003-10-09 19:00:25 +00001679P3G4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001680 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001681
1682PCIPPC2_config \
1683PCIPPC6_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001684 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx pcippc2
wdenk7ebf7442002-11-02 23:17:16 +00001685
wdenk15647dc2003-10-09 19:00:25 +00001686ZUMA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001687 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk12f34242003-09-02 22:48:03 +00001688
Heiko Schocherf5e0d032006-06-19 11:02:41 +02001689ppmc7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001690 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx ppmc7xx
Wolfgang Denkb87dfd22006-07-19 13:50:38 +02001691
wdenk7ebf7442002-11-02 23:17:16 +00001692#========================================================================
1693# ARM
1694#========================================================================
1695#########################################################################
1696## StrongARM Systems
1697#########################################################################
1698
wdenkea66bc82004-04-15 23:23:39 +00001699assabet_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001700 @$(MKCONFIG) $(@:_config=) arm sa1100 assabet
wdenkea66bc82004-04-15 23:23:39 +00001701
wdenk7ebf7442002-11-02 23:17:16 +00001702dnp1110_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001703 @$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110
wdenk7ebf7442002-11-02 23:17:16 +00001704
wdenk855a4962004-03-14 18:23:55 +00001705gcplus_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001706 @$(MKCONFIG) $(@:_config=) arm sa1100 gcplus
wdenk855a4962004-03-14 18:23:55 +00001707
1708lart_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001709 @$(MKCONFIG) $(@:_config=) arm sa1100 lart
wdenk855a4962004-03-14 18:23:55 +00001710
wdenk7ebf7442002-11-02 23:17:16 +00001711shannon_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001712 @$(MKCONFIG) $(@:_config=) arm sa1100 shannon
wdenk7ebf7442002-11-02 23:17:16 +00001713
1714#########################################################################
wdenk2e5983d2003-07-15 20:04:06 +00001715## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00001716#########################################################################
1717
wdenkb0639ca2003-09-17 22:48:07 +00001718xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk43d96162003-03-06 00:02:04 +00001719
wdenk3ff02c22004-06-09 15:25:53 +00001720xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
wdenk63e73c92004-02-23 22:22:28 +00001721
wdenka56bd922004-06-06 23:13:55 +00001722xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1723
wdenka85f9f22005-04-06 13:52:31 +00001724at91rm9200dk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001725 @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001726
1727cmc_pu2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001728 @$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001729
Wolfgang Denk645da512005-10-05 02:00:09 +02001730csb637_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001731 @$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200
Wolfgang Denk645da512005-10-05 02:00:09 +02001732
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001733mp2usb_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001734 @$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001735
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001736
Wolfgang Denk74f43042005-09-25 01:48:28 +02001737########################################################################
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001738## ARM Integrator boards - see doc/README-integrator for more info.
1739integratorap_config \
1740ap_config \
1741ap966_config \
1742ap922_config \
1743ap922_XA10_config \
1744ap7_config \
1745ap720t_config \
1746ap920t_config \
1747ap926ejs_config \
1748ap946es_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001749 @board/integratorap/split_by_variant.sh $@
wdenk3d3befa2004-03-14 15:06:13 +00001750
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001751integratorcp_config \
1752cp_config \
1753cp920t_config \
1754cp926ejs_config \
1755cp946es_config \
1756cp1136_config \
1757cp966_config \
1758cp922_config \
1759cp922_XA10_config \
1760cp1026_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001761 @board/integratorcp/split_by_variant.sh $@
wdenk25d67122004-12-10 11:40:40 +00001762
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001763kb9202_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001764 @$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001765
wdenkf832d8a2004-06-10 21:55:33 +00001766lpd7a400_config \
1767lpd7a404_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001768 @$(MKCONFIG) $(@:_config=) arm lh7a40x lpd7a40x
wdenk3d3befa2004-03-14 15:06:13 +00001769
wdenk281e00a2004-08-01 22:48:16 +00001770mx1ads_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001771 @$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001772
1773mx1fs2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001774 @$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001775
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001776netstar_32_config \
1777netstar_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001778 @mkdir -p $(obj)include
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001779 @if [ "$(findstring _32_,$@)" ] ; then \
1780 echo "... 32MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001781 echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001782 else \
1783 echo "... 64MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001784 echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001785 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001786 @$(MKCONFIG) -a netstar arm arm925t netstar
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001787
wdenk2e5983d2003-07-15 20:04:06 +00001788omap1510inn_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001789 @$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn
wdenk2e5983d2003-07-15 20:04:06 +00001790
wdenk1eaeb582004-06-08 00:22:43 +00001791omap5912osk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001792 @$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk NULL omap
wdenk1eaeb582004-06-08 00:22:43 +00001793
wdenk63e73c92004-02-23 22:22:28 +00001794omap1610inn_config \
1795omap1610inn_cs0boot_config \
1796omap1610inn_cs3boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00001797omap1610inn_cs_autoboot_config \
wdenk63e73c92004-02-23 22:22:28 +00001798omap1610h2_config \
1799omap1610h2_cs0boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00001800omap1610h2_cs3boot_config \
1801omap1610h2_cs_autoboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001802 @mkdir -p $(obj)include
wdenk63e73c92004-02-23 22:22:28 +00001803 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001804 echo "#define CONFIG_CS0_BOOT" >> .$(obj)/include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00001805 echo "... configured for CS0 boot"; \
wdenk3ff02c22004-06-09 15:25:53 +00001806 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001807 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)./include/config.h ; \
wdenk3ff02c22004-06-09 15:25:53 +00001808 echo "... configured for CS_AUTO boot"; \
wdenk63e73c92004-02-23 22:22:28 +00001809 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001810 echo "#define CONFIG_CS3_BOOT" >> $(obj)./include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00001811 echo "... configured for CS3 boot"; \
wdenk63e73c92004-02-23 22:22:28 +00001812 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02001813 @$(MKCONFIG) -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap
wdenk6f213472003-08-29 22:00:43 +00001814
wdenka56bd922004-06-06 23:13:55 +00001815omap730p2_config \
1816omap730p2_cs0boot_config \
1817omap730p2_cs3boot_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001818 @mkdir -p $(obj)include
wdenka56bd922004-06-06 23:13:55 +00001819 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001820 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00001821 echo "... configured for CS0 boot"; \
1822 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001823 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00001824 echo "... configured for CS3 boot"; \
1825 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02001826 @$(MKCONFIG) -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap
wdenka56bd922004-06-06 23:13:55 +00001827
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02001828sbc2410x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001829 @$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02001830
wdenk281e00a2004-08-01 22:48:16 +00001831scb9328_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001832 @$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001833
wdenk7ebf7442002-11-02 23:17:16 +00001834smdk2400_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001835 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001836
1837smdk2410_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001838 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001839
wdenk2d24a3a2004-06-09 21:50:45 +00001840SX1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001841 @$(MKCONFIG) $(@:_config=) arm arm925t sx1
wdenk2d24a3a2004-06-09 21:50:45 +00001842
wdenkb2001f22003-12-20 22:45:10 +00001843# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk43d96162003-03-06 00:02:04 +00001844trab_config \
wdenkb0639ca2003-09-17 22:48:07 +00001845trab_bigram_config \
1846trab_bigflash_config \
wdenkf54ebdf2003-09-17 15:10:32 +00001847trab_old_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001848 @mkdir -p $(obj)include
1849 @mkdir -p $(obj)board/trab
1850 @ >$(obj)include/config.h
wdenkb0639ca2003-09-17 22:48:07 +00001851 @[ -z "$(findstring _bigram,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001852 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
1853 echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00001854 echo "... with 8 MB Flash, 32 MB RAM" ; \
1855 }
1856 @[ -z "$(findstring _bigflash,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001857 { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \
1858 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00001859 echo "... with 16 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001860 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenkb0639ca2003-09-17 22:48:07 +00001861 }
wdenkf54ebdf2003-09-17 15:10:32 +00001862 @[ -z "$(findstring _old,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001863 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
1864 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +00001865 echo "... with 8 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001866 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenk43d96162003-03-06 00:02:04 +00001867 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001868 @$(MKCONFIG) -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001869
wdenk1cb8e982003-03-06 21:55:29 +00001870VCMA9_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001871 @$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0
wdenk1cb8e982003-03-06 21:55:29 +00001872
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001873#========================================================================
1874# ARM supplied Versatile development boards
1875#========================================================================
1876versatile_config \
1877versatileab_config \
1878versatilepb_config : unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001879 @board/versatile/split_by_variant.sh $@
wdenk074cff02004-02-24 00:16:43 +00001880
wdenk3c2b3d42005-04-05 23:32:21 +00001881voiceblue_smallflash_config \
1882voiceblue_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001883 @mkdir -p $(obj)include
1884 @mkdir -p $(obj)board/voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00001885 @if [ "$(findstring _smallflash_,$@)" ] ; then \
1886 echo "... boot from lower flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001887 echo "#define VOICEBLUE_SMALL_FLASH" >>$(obj)include/config.h ; \
1888 echo "VOICEBLUE_SMALL_FLASH=y" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00001889 else \
1890 echo "... boot from upper flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001891 >$(obj)include/config.h ; \
1892 echo "VOICEBLUE_SMALL_FLASH=n" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00001893 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001894 @$(MKCONFIG) -a voiceblue arm arm925t voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00001895
wdenk16b013e2005-05-19 22:46:33 +00001896cm4008_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001897 @$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00001898
1899cm41xx_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001900 @$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00001901
Wolfgang Denk0c32d962006-06-16 17:32:31 +02001902gth2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001903 @mkdir -p $(obj)include
1904 @ >$(obj)include/config.h
1905 @echo "#define CONFIG_GTH2 1" >>$(obj)include/config.h
1906 @$(MKCONFIG) -a gth2 mips mips gth2
Wolfgang Denk0c32d962006-06-16 17:32:31 +02001907
wdenk074cff02004-02-24 00:16:43 +00001908#########################################################################
1909## S3C44B0 Systems
1910#########################################################################
1911
1912B2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001913 @$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave
wdenk074cff02004-02-24 00:16:43 +00001914
wdenk7ebf7442002-11-02 23:17:16 +00001915#########################################################################
1916## ARM720T Systems
1917#########################################################################
1918
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02001919armadillo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001920 @$(MKCONFIG) $(@:_config=) arm arm720t armadillo
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02001921
wdenk7ebf7442002-11-02 23:17:16 +00001922ep7312_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001923 @$(MKCONFIG) $(@:_config=) arm arm720t ep7312
wdenk7ebf7442002-11-02 23:17:16 +00001924
wdenk2d24a3a2004-06-09 21:50:45 +00001925impa7_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001926 @$(MKCONFIG) $(@:_config=) arm arm720t impa7
wdenk2d24a3a2004-06-09 21:50:45 +00001927
wdenk2d1a5372004-02-23 19:30:57 +00001928modnet50_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001929 @$(MKCONFIG) $(@:_config=) arm arm720t modnet50
wdenk2d1a5372004-02-23 19:30:57 +00001930
wdenk39539882004-07-01 16:30:44 +00001931evb4510_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001932 @$(MKCONFIG) $(@:_config=) arm arm720t evb4510
wdenk39539882004-07-01 16:30:44 +00001933
wdenk7ebf7442002-11-02 23:17:16 +00001934#########################################################################
wdenk43d96162003-03-06 00:02:04 +00001935## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00001936#########################################################################
1937
wdenk20787e22005-04-06 00:04:16 +00001938adsvix_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001939 @$(MKCONFIG) $(@:_config=) arm pxa adsvix
wdenk20787e22005-04-06 00:04:16 +00001940
wdenkfabd46a2004-07-10 23:11:10 +00001941cerf250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001942 @$(MKCONFIG) $(@:_config=) arm pxa cerf250
wdenkfabd46a2004-07-10 23:11:10 +00001943
wdenk7ebf7442002-11-02 23:17:16 +00001944cradle_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001945 @$(MKCONFIG) $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00001946
1947csb226_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001948 @$(MKCONFIG) $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00001949
Wolfgang Denk0be248f2006-03-07 00:22:36 +01001950delta_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02001951 @$(MKCONFIG) $(@:_config=) arm pxa delta
Wolfgang Denk0be248f2006-03-07 00:22:36 +01001952
wdenk43d96162003-03-06 00:02:04 +00001953innokom_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001954 @$(MKCONFIG) $(@:_config=) arm pxa innokom
wdenk43d96162003-03-06 00:02:04 +00001955
wdenk2d5b5612003-10-14 19:43:55 +00001956ixdp425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001957 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
wdenk2d5b5612003-10-14 19:43:55 +00001958
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02001959ixdpg425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001960 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02001961
wdenk43d96162003-03-06 00:02:04 +00001962lubbock_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001963 @$(MKCONFIG) $(@:_config=) arm pxa lubbock
wdenk43d96162003-03-06 00:02:04 +00001964
Heiko Schocher5720df72006-05-02 07:51:46 +02001965pleb2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001966 @$(MKCONFIG) $(@:_config=) arm pxa pleb2
Heiko Schocher5720df72006-05-02 07:51:46 +02001967
wdenk52f52c12003-06-19 23:04:19 +00001968logodl_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001969 @$(MKCONFIG) $(@:_config=) arm pxa logodl
wdenk52f52c12003-06-19 23:04:19 +00001970
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02001971pdnb3_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001972 @$(MKCONFIG) $(@:_config=) arm ixp pdnb3 prodrive
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02001973
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02001974pxa255_idp_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001975 @$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02001976
wdenk3e386912003-04-05 00:53:31 +00001977wepep250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001978 @$(MKCONFIG) $(@:_config=) arm pxa wepep250
wdenk3e386912003-04-05 00:53:31 +00001979
wdenk4ec3a7f2004-09-28 16:44:41 +00001980xaeniax_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001981 @$(MKCONFIG) $(@:_config=) arm pxa xaeniax
wdenk4ec3a7f2004-09-28 16:44:41 +00001982
wdenkefa329c2004-03-23 20:18:25 +00001983xm250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001984 @$(MKCONFIG) $(@:_config=) arm pxa xm250
wdenkefa329c2004-03-23 20:18:25 +00001985
wdenkca0e7742004-06-09 15:37:23 +00001986xsengine_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001987 @$(MKCONFIG) $(@:_config=) arm pxa xsengine
wdenkca0e7742004-06-09 15:37:23 +00001988
Markus Klotzbüchere0269572006-02-07 20:04:48 +01001989zylonite_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02001990 @$(MKCONFIG) $(@:_config=) arm pxa zylonite
Markus Klotzbüchere0269572006-02-07 20:04:48 +01001991
wdenk8ed96042005-01-09 23:16:25 +00001992#########################################################################
1993## ARM1136 Systems
1994#########################################################################
1995omap2420h4_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001996 @$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4
wdenk8ed96042005-01-09 23:16:25 +00001997
wdenk2262cfe2002-11-18 00:14:45 +00001998#========================================================================
1999# i386
2000#========================================================================
2001#########################################################################
wdenk1cb8e982003-03-06 21:55:29 +00002002## AMD SC520 CDP
wdenk2262cfe2002-11-18 00:14:45 +00002003#########################################################################
2004sc520_cdp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002005 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp
wdenk2262cfe2002-11-18 00:14:45 +00002006
wdenk7a8e9bed2003-05-31 18:35:21 +00002007sc520_spunk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002008 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002009
2010sc520_spunk_rel_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002011 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002012
wdenk43d96162003-03-06 00:02:04 +00002013#========================================================================
2014# MIPS
2015#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00002016#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002017## MIPS32 4Kc
2018#########################################################################
2019
wdenke0ac62d2003-08-17 18:55:18 +00002020xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
2021
2022incaip_100MHz_config \
2023incaip_133MHz_config \
2024incaip_150MHz_config \
2025incaip_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002026 @mkdir -p $(obj)include
2027 @ >$(obj)include/config.h
wdenke0ac62d2003-08-17 18:55:18 +00002028 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002029 { echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002030 echo "... with 100MHz system clock" ; \
2031 }
2032 @[ -z "$(findstring _133MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002033 { echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002034 echo "... with 133MHz system clock" ; \
2035 }
2036 @[ -z "$(findstring _150MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002037 { echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002038 echo "... with 150MHz system clock" ; \
2039 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002040 @$(MKCONFIG) -a $(call xtract_incaip,$@) mips mips incaip
wdenke0ac62d2003-08-17 18:55:18 +00002041
wdenkf4863a72004-02-07 01:27:10 +00002042tb0229_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002043 @$(MKCONFIG) $(@:_config=) mips mips tb0229
wdenkf4863a72004-02-07 01:27:10 +00002044
wdenke0ac62d2003-08-17 18:55:18 +00002045#########################################################################
wdenk69459792004-05-29 16:53:29 +00002046## MIPS32 AU1X00
2047#########################################################################
2048dbau1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002049 @mkdir -p $(obj)include
2050 @ >$(obj)include/config.h
2051 @echo "#define CONFIG_DBAU1000 1" >>$(obj)include/config.h
2052 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002053
2054dbau1100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002055 @mkdir -p $(obj)include
2056 @ >$(obj)include/config.h
2057 @echo "#define CONFIG_DBAU1100 1" >>$(obj)include/config.h
2058 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002059
2060dbau1500_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002061 @mkdir -p $(obj)include
2062 @ >$(obj)include/config.h
2063 @echo "#define CONFIG_DBAU1500 1" >>$(obj)include/config.h
2064 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002065
wdenkff36fd82005-01-09 22:28:56 +00002066dbau1550_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002067 @mkdir -p $(obj)include
2068 @ >$(obj)include/config.h
2069 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2070 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002071
2072dbau1550_el_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002073 @mkdir -p $(obj)include
2074 @ >$(obj)include/config.h
2075 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2076 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002077
Wolfgang Denk265817c2005-09-25 00:53:22 +02002078pb1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002079 @mkdir -p $(obj)include
2080 @ >$(obj)include/config.h
2081 @echo "#define CONFIG_PB1000 1" >>$(obj)include/config.h
2082 @$(MKCONFIG) -a pb1x00 mips mips pb1x00
Wolfgang Denk265817c2005-09-25 00:53:22 +02002083
wdenk69459792004-05-29 16:53:29 +00002084#########################################################################
wdenke0ac62d2003-08-17 18:55:18 +00002085## MIPS64 5Kc
2086#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002087
wdenk3e386912003-04-05 00:53:31 +00002088purple_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002089 @$(MKCONFIG) $(@:_config=) mips mips purple
wdenk43d96162003-03-06 00:02:04 +00002090
wdenk4a551702003-10-08 23:26:14 +00002091#========================================================================
2092# Nios
2093#========================================================================
2094#########################################################################
2095## Nios32
2096#########################################################################
2097
wdenkc935d3b2004-01-03 19:43:48 +00002098DK1C20_safe_32_config \
2099DK1C20_standard_32_config \
wdenk4a551702003-10-08 23:26:14 +00002100DK1C20_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002101 @mkdir -p $(obj)include
2102 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002103 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002104 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002105 echo "... NIOS 'safe_32' configuration" ; \
2106 }
2107 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002108 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002109 echo "... NIOS 'standard_32' configuration" ; \
2110 }
2111 @[ -z "$(findstring DK1C20_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002112 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002113 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2114 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002115 @$(MKCONFIG) -a DK1C20 nios nios dk1c20 altera
wdenkc935d3b2004-01-03 19:43:48 +00002116
2117DK1S10_safe_32_config \
2118DK1S10_standard_32_config \
wdenkec4c5442004-02-09 23:12:24 +00002119DK1S10_mtx_ldk_20_config \
wdenkc935d3b2004-01-03 19:43:48 +00002120DK1S10_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002121 @mkdir -p $(obj)include
2122 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002123 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002124 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002125 echo "... NIOS 'safe_32' configuration" ; \
2126 }
2127 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002128 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002129 echo "... NIOS 'standard_32' configuration" ; \
2130 }
wdenkec4c5442004-02-09 23:12:24 +00002131 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002132 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>$(obj)include/config.h ; \
wdenkec4c5442004-02-09 23:12:24 +00002133 echo "... NIOS 'mtx_ldk_20' configuration" ; \
2134 }
wdenkc935d3b2004-01-03 19:43:48 +00002135 @[ -z "$(findstring DK1S10_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002136 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002137 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2138 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002139 @$(MKCONFIG) -a DK1S10 nios nios dk1s10 altera
wdenk4a551702003-10-08 23:26:14 +00002140
wdenkaaf224a2004-03-14 15:20:55 +00002141ADNPESC1_DNPEVA2_base_32_config \
2142ADNPESC1_base_32_config \
2143ADNPESC1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002144 @mkdir -p $(obj)include
2145 @ >$(obj)include/config.h
wdenkaaf224a2004-03-14 15:20:55 +00002146 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002147 { echo "#define CONFIG_DNPEVA2 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002148 echo "... DNP/EVA2 configuration" ; \
2149 }
wdenkaaf224a2004-03-14 15:20:55 +00002150 @[ -z "$(findstring _base_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002151 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002152 echo "... NIOS 'base_32' configuration" ; \
2153 }
wdenkaaf224a2004-03-14 15:20:55 +00002154 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002155 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002156 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
2157 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002158 @$(MKCONFIG) -a ADNPESC1 nios nios adnpesc1 ssv
wdenkaaf224a2004-03-14 15:20:55 +00002159
wdenk5c952cf2004-10-10 21:27:30 +00002160#########################################################################
2161## Nios-II
2162#########################################################################
2163
Scott McNutt9cc83372006-06-08 13:37:39 -04002164EP1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002165 @$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002166
2167EP1S10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002168 @$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002169
2170EP1S40_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002171 @$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002172
wdenk5c952cf2004-10-10 21:27:30 +00002173PK1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002174 @$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent
wdenk5c952cf2004-10-10 21:27:30 +00002175
2176PCI5441_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002177 @$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent
wdenk4a551702003-10-08 23:26:14 +00002178
wdenk507bbe32004-04-18 21:13:41 +00002179#========================================================================
2180# MicroBlaze
2181#========================================================================
2182#########################################################################
2183## Microblaze
2184#########################################################################
2185suzaku_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002186 @mkdir -p $(obj)include
2187 @ >$(obj)include/config.h
2188 @echo "#define CONFIG_SUZAKU 1" >> $(obj)include/config.h
2189 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
wdenk507bbe32004-04-18 21:13:41 +00002190
wdenk3e386912003-04-05 00:53:31 +00002191#########################################################################
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002192## Blackfin
2193#########################################################################
2194ezkit533_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002195 @$(MKCONFIG) $(@:_config=) blackfin bf533 ezkit533
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002196
2197stamp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002198 @$(MKCONFIG) $(@:_config=) blackfin bf533 stamp
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002199
2200dspstamp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002201 @$(MKCONFIG) $(@:_config=) blackfin bf533 dsp_stamp
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002202
2203#########################################################################
2204#########################################################################
wdenk3e386912003-04-05 00:53:31 +00002205#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00002206
2207clean:
Marian Balakowiczf9328632006-09-01 19:49:50 +02002208 find $(OBJTREE) -type f \
wdenk7ebf7442002-11-02 23:17:16 +00002209 \( -name 'core' -o -name '*.bak' -o -name '*~' \
2210 -o -name '*.o' -o -name '*.a' \) -print \
2211 | xargs rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002212 rm -f $(obj)examples/hello_world $(obj)examples/timer \
2213 $(obj)examples/eepro100_eeprom $(obj)examples/sched \
2214 $(obj)examples/mem_to_mem_idma2intr $(obj)examples/82559_eeprom \
Wolfgang Denkd214fbb2006-09-13 10:29:32 +02002215 $(obj)examples/smc91111_eeprom $(obj)examples/interrupt \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002216 $(obj)examples/test_burst
2217 rm -f $(obj)tools/img2srec $(obj)tools/mkimage $(obj)tools/envcrc \
2218 $(obj)tools/gen_eth_addr
2219 rm -f $(obj)tools/mpc86x_clk $(obj)tools/ncb
2220 rm -f $(obj)tools/easylogo/easylogo $(obj)tools/bmp_logo
2221 rm -f $(obj)tools/gdb/astest $(obj)tools/gdb/gdbcont $(obj)tools/gdb/gdbsend
2222 rm -f $(obj)tools/env/fw_printenv $(obj)tools/env/fw_setenv
2223 rm -f $(obj)board/cray/L1/bootscript.c $(obj)board/cray/L1/bootscript.image
2224 rm -f $(obj)board/netstar/eeprom $(obj)board/netstar/crcek $(obj)board/netstar/crcit
2225 rm -f $(obj)board/netstar/*.srec $(obj)board/netstar/*.bin
2226 rm -f $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom
2227 rm -f $(obj)board/integratorap/u-boot.lds $(obj)board/integratorcp/u-boot.lds
2228 rm -f $(obj)include/bmp_logo.h
Stefan Roese887e2ec2006-09-07 11:51:23 +02002229 find nand_spl -lname "*" -print | xargs rm -f
2230 rm -f nand_spl/u-boot-spl nand_spl/u-boot-spl.map
wdenk7ebf7442002-11-02 23:17:16 +00002231
2232clobber: clean
Marian Balakowiczf9328632006-09-01 19:49:50 +02002233 find $(OBJTREE) -type f \( -name .depend \
wdenk4c0d4c32004-06-09 17:34:58 +00002234 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
2235 -print0 \
2236 | xargs -0 rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002237 rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS $(obj)include/version_autogenerated.h
2238 rm -fr $(obj)*.*~
2239 rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL)
2240 rm -f $(obj)tools/crc32.c $(obj)tools/environment.c $(obj)tools/env/crc32.c
2241 rm -f $(obj)tools/inca-swap-bytes $(obj)cpu/mpc824x/bedbug_603e.c
2242 rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
wdenk7ebf7442002-11-02 23:17:16 +00002243
Marian Balakowiczf9328632006-09-01 19:49:50 +02002244ifeq ($(OBJTREE),$(SRCTREE))
wdenk7ebf7442002-11-02 23:17:16 +00002245mrproper \
2246distclean: clobber unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002247else
2248mrproper \
2249distclean: clobber unconfig
2250 rm -rf $(OBJTREE)/*
2251endif
wdenk7ebf7442002-11-02 23:17:16 +00002252
2253backup:
2254 F=`basename $(TOPDIR)` ; cd .. ; \
2255 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
2256
2257#########################################################################