blob: c83bf84de8e7df568eb6d47999718767b0d62cbf [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
Detlev Zundelfd428c02010-03-12 10:01:12 +01002# (C) Copyright 2000-2010
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
Wolfgang Denkf9301e12008-03-04 14:58:31 +010015# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenk7ebf7442002-11-02 23:17:16 +000016# 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 Denk93910ed2010-03-12 23:06:04 +010024VERSION = 2010
Wolfgang Denk01f03bd2010-05-26 23:57:08 +020025PATCHLEVEL = 06
Wolfgang Denk8b9e4782008-09-09 23:55:18 +020026SUBLEVEL =
Wolfgang Denka9046b92010-06-13 17:48:15 +020027EXTRAVERSION = -rc2
Wolfgang Denk8b9e4782008-09-09 23:55:18 +020028ifneq "$(SUBLEVEL)" ""
Wolfgang Denk881a87e2006-02-21 17:33:04 +010029U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
Wolfgang Denk8b9e4782008-09-09 23:55:18 +020030else
31U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION)
32endif
Peter Tyser561858e2008-11-03 09:30:59 -060033TIMESTAMP_FILE = $(obj)include/timestamp_autogenerated.h
Marian Balakowiczf9328632006-09-01 19:49:50 +020034VERSION_FILE = $(obj)include/version_autogenerated.h
Wolfgang Denk881a87e2006-02-21 17:33:04 +010035
wdenk7ebf7442002-11-02 23:17:16 +000036HOSTARCH := $(shell uname -m | \
37 sed -e s/i.86/i386/ \
38 -e s/sun4u/sparc64/ \
39 -e s/arm.*/arm/ \
40 -e s/sa110/arm/ \
Kumar Galad0179082010-04-28 02:52:02 -050041 -e s/ppc64/powerpc/ \
42 -e s/ppc/powerpc/ \
43 -e s/macppc/powerpc/)
wdenk7ebf7442002-11-02 23:17:16 +000044
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020045HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
wdenk7ebf7442002-11-02 23:17:16 +000046 sed -e 's/\(cygwin\).*/cygwin/')
47
Peter Tysercf7a7b92008-11-12 12:33:20 -060048# Set shell to bash if possible, otherwise fall back to sh
49SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
50 else if [ -x /bin/bash ]; then echo /bin/bash; \
51 else echo sh; fi; fi)
52
53export HOSTARCH HOSTOS SHELL
wdenk7ebf7442002-11-02 23:17:16 +000054
55# Deal with colliding definitions from tcsh etc.
56VENDOR=
57
58#########################################################################
Wolfgang Denkae6d1052008-01-13 00:59:21 +010059# Allow for silent builds
60ifeq (,$(findstring s,$(MAKEFLAGS)))
61XECHO = echo
62else
63XECHO = :
64endif
65
66#########################################################################
Marian Balakowiczf9328632006-09-01 19:49:50 +020067#
68# U-boot build supports producing a object files to the separate external
69# directory. Two use cases are supported:
Stefan Roese887e2ec2006-09-07 11:51:23 +020070#
Marian Balakowiczf9328632006-09-01 19:49:50 +020071# 1) Add O= to the make command line
72# 'make O=/tmp/build all'
73#
74# 2) Set environement variable BUILD_DIR to point to the desired location
75# 'export BUILD_DIR=/tmp/build'
76# 'make'
77#
78# The second approach can also be used with a MAKEALL script
79# 'export BUILD_DIR=/tmp/build'
80# './MAKEALL'
Stefan Roese887e2ec2006-09-07 11:51:23 +020081#
Marian Balakowiczf9328632006-09-01 19:49:50 +020082# Command line 'O=' setting overrides BUILD_DIR environent variable.
Stefan Roese887e2ec2006-09-07 11:51:23 +020083#
Marian Balakowiczf9328632006-09-01 19:49:50 +020084# When none of the above methods is used the local build is performed and
85# the object files are placed in the source directory.
Stefan Roese887e2ec2006-09-07 11:51:23 +020086#
wdenk7ebf7442002-11-02 23:17:16 +000087
Marian Balakowiczf9328632006-09-01 19:49:50 +020088ifdef O
89ifeq ("$(origin O)", "command line")
90BUILD_DIR := $(O)
91endif
92endif
wdenk7ebf7442002-11-02 23:17:16 +000093
Marian Balakowiczf9328632006-09-01 19:49:50 +020094ifneq ($(BUILD_DIR),)
95saved-output := $(BUILD_DIR)
Marian Balakowicz4f0645e2006-09-07 12:05:53 +020096
97# Attempt to create a output directory.
98$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
99
Stefan Roesea73c8db2006-09-12 08:49:07 +0200100# Verify if it was successful.
Marian Balakowiczf9328632006-09-01 19:49:50 +0200101BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
102$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
103endif # ifneq ($(BUILD_DIR),)
104
105OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
106SRCTREE := $(CURDIR)
107TOPDIR := $(SRCTREE)
108LNDIR := $(OBJTREE)
109export TOPDIR SRCTREE OBJTREE
110
111MKCONFIG := $(SRCTREE)/mkconfig
112export MKCONFIG
113
114ifneq ($(OBJTREE),$(SRCTREE))
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100115REMOTE_BUILD := 1
Marian Balakowiczf9328632006-09-01 19:49:50 +0200116export REMOTE_BUILD
117endif
118
119# $(obj) and (src) are defined in config.mk but here in main Makefile
120# we also need them before config.mk is included which is the case for
121# some targets like unconfig, clean, clobber, distclean, etc.
122ifneq ($(OBJTREE),$(SRCTREE))
123obj := $(OBJTREE)/
124src := $(SRCTREE)/
125else
126obj :=
127src :=
Stefan Roese887e2ec2006-09-07 11:51:23 +0200128endif
Marian Balakowiczf9328632006-09-01 19:49:50 +0200129export obj src
130
Wolfgang Denk5013c092008-03-02 22:45:33 +0100131# Make sure CDPATH settings don't interfere
132unexport CDPATH
133
Marian Balakowiczf9328632006-09-01 19:49:50 +0200134#########################################################################
135
Mike Frysinger6d1ce382009-05-30 01:02:03 -0400136# The "tools" are needed early, so put this first
137# Don't include stuff already done in $(LIBS)
138SUBDIRS = tools \
Peter Tyser1bc15382009-07-10 11:03:19 -0500139 examples/standalone \
Peter Tyserd4abc752009-07-20 19:02:21 -0500140 examples/api
Mike Frysinger6d1ce382009-05-30 01:02:03 -0400141
142.PHONY : $(SUBDIRS)
143
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100144ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200145
Mike Frysinger2632c002009-07-21 22:59:36 -0400146# Include autoconf.mk before config.mk so that the config options are available
147# to all top level build files. We need the dummy all: target to prevent the
148# dependency target in autoconf.mk.dep from being the default.
149all:
150sinclude $(obj)include/autoconf.mk.dep
151sinclude $(obj)include/autoconf.mk
152
wdenk7ebf7442002-11-02 23:17:16 +0000153# load ARCH, BOARD, and CPU configuration
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100154include $(obj)include/config.mk
wdenk1d9f4102004-10-09 22:21:29 +0000155export ARCH CPU BOARD VENDOR SOC
Marian Balakowiczf9328632006-09-01 19:49:50 +0200156
Mike Frysinger1ea6bcd2009-06-14 23:33:14 -0400157# set default to nothing for native builds
Wolfgang Denka5284ef2007-03-06 18:01:47 +0100158ifeq ($(HOSTARCH),$(ARCH))
Mike Frysinger1ea6bcd2009-06-14 23:33:14 -0400159CROSS_COMPILE ?=
wdenk7ebf7442002-11-02 23:17:16 +0000160endif
wdenk7ebf7442002-11-02 23:17:16 +0000161
Wolfgang Denk92b197f2006-03-12 01:37:50 +0100162# load other configuration
163include $(TOPDIR)/config.mk
164
wdenk7ebf7442002-11-02 23:17:16 +0000165#########################################################################
166# U-Boot objects....order is important (i.e. start must be first)
167
Peter Tyser03b70042010-04-12 22:28:02 -0500168OBJS = $(CPUDIR)/start.o
wdenk2262cfe2002-11-18 00:14:45 +0000169ifeq ($(CPU),i386)
Peter Tyser03b70042010-04-12 22:28:02 -0500170OBJS += $(CPUDIR)/start16.o
171OBJS += $(CPUDIR)/resetvec.o
wdenk2262cfe2002-11-18 00:14:45 +0000172endif
wdenk7ebf7442002-11-02 23:17:16 +0000173ifeq ($(CPU),ppc4xx)
Peter Tyser03b70042010-04-12 22:28:02 -0500174OBJS += $(CPUDIR)/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +0000175endif
wdenk42d1f032003-10-15 23:53:47 +0000176ifeq ($(CPU),mpc85xx)
Peter Tyser03b70042010-04-12 22:28:02 -0500177OBJS += $(CPUDIR)/resetvec.o
wdenk42d1f032003-10-15 23:53:47 +0000178endif
wdenk7ebf7442002-11-02 23:17:16 +0000179
Marian Balakowiczf9328632006-09-01 19:49:50 +0200180OBJS := $(addprefix $(obj),$(OBJS))
181
Peter Tyser78acc472010-04-12 22:28:05 -0500182LIBS = lib/libgeneric.a
183LIBS += lib/lzma/liblzma.a
184LIBS += lib/lzo/liblzo.a
Kim Phillips7608d752007-08-21 17:00:17 -0500185LIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \
186 "board/$(VENDOR)/common/lib$(VENDOR).a"; fi)
Peter Tyser03b70042010-04-12 22:28:02 -0500187LIBS += $(CPUDIR)/lib$(CPU).a
wdenk1d9f4102004-10-09 22:21:29 +0000188ifdef SOC
Peter Tyser03b70042010-04-12 22:28:02 -0500189LIBS += $(CPUDIR)/$(SOC)/lib$(SOC).a
wdenk1d9f4102004-10-09 22:21:29 +0000190endif
Stefan Roese323bfa82007-04-23 12:00:22 +0200191ifeq ($(CPU),ixp)
Peter Tyser84ad6882010-04-12 22:28:11 -0500192LIBS += arch/arm/cpu/ixp/npe/libnpe.a
Stefan Roese323bfa82007-04-23 12:00:22 +0200193endif
Peter Tyserea0364f2010-04-12 22:28:04 -0500194LIBS += arch/$(ARCH)/lib/lib$(ARCH).a
wdenk518e2e12004-03-25 14:59:05 +0000195LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100196 fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a fs/yaffs2/libyaffs2.a \
197 fs/ubifs/libubifs.a
wdenk7ebf7442002-11-02 23:17:16 +0000198LIBS += net/libnet.a
199LIBS += disk/libdisk.a
Jason Jin0f460a12007-07-13 12:14:58 +0800200LIBS += drivers/bios_emulator/libatibiosemu.a
Jean-Christophe PLAGNIOL-VILLARD33daf5b2007-11-24 21:13:59 +0100201LIBS += drivers/block/libblock.a
TsiChungLiew57a12722008-01-15 14:15:46 -0600202LIBS += drivers/dma/libdma.a
Jean-Christophe PLAGNIOL-VILLARDc8aa7df2008-10-31 12:26:55 +0100203LIBS += drivers/fpga/libfpga.a
Peter Tysere92739d2008-12-17 16:36:21 -0600204LIBS += drivers/gpio/libgpio.a
Jean-Christophe PLAGNIOL-VILLARDf868cc52007-11-24 20:14:44 +0100205LIBS += drivers/hwmon/libhwmon.a
Jean-Christophe PLAGNIOL-VILLARD080c6462007-11-20 20:14:18 +0100206LIBS += drivers/i2c/libi2c.a
Jean-Christophe PLAGNIOL-VILLARD16b195c2007-11-24 19:46:45 +0100207LIBS += drivers/input/libinput.a
Jean-Christophe PLAGNIOL-VILLARD318c0b92007-11-24 21:17:55 +0100208LIBS += drivers/misc/libmisc.a
Haavard Skinnemoen5ce13052008-06-12 19:27:56 +0200209LIBS += drivers/mmc/libmmc.a
Jean-Christophe PLAGNIOL-VILLARD59829cc2007-11-24 21:26:56 +0100210LIBS += drivers/mtd/libmtd.a
211LIBS += drivers/mtd/nand/libnand.a
Jean-Christophe PLAGNIOL-VILLARD59829cc2007-11-24 21:26:56 +0100212LIBS += drivers/mtd/onenand/libonenand.a
Kyungmin Park58be3a12008-11-19 16:38:24 +0100213LIBS += drivers/mtd/ubi/libubi.a
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200214LIBS += drivers/mtd/spi/libspi_flash.a
TsiChung Liew8e585f02007-06-18 13:50:13 -0500215LIBS += drivers/net/libnet.a
Jean-Christophe PLAGNIOL-VILLARD55195772008-08-29 01:18:01 +0200216LIBS += drivers/net/phy/libphy.a
Jean-Christophe PLAGNIOL-VILLARD93a686e2007-11-20 20:28:09 +0100217LIBS += drivers/pci/libpci.a
Jean-Christophe PLAGNIOL-VILLARD73646212007-11-20 20:33:09 +0100218LIBS += drivers/pcmcia/libpcmcia.a
Tom Rixcd782632009-06-28 12:52:29 -0500219LIBS += drivers/power/libpower.a
Ben Warren04a9e112008-01-16 22:37:35 -0500220LIBS += drivers/spi/libspi.a
Dave Liu7737d5c2006-11-03 12:11:15 -0600221ifeq ($(CPU),mpc83xx)
222LIBS += drivers/qe/qe.a
223endif
Andy Flemingda9d4612007-08-14 00:14:25 -0500224ifeq ($(CPU),mpc85xx)
225LIBS += drivers/qe/qe.a
Stefan Roesea47a12b2010-04-15 16:07:28 +0200226LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.a
227LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.a
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500228endif
229ifeq ($(CPU),mpc86xx)
Stefan Roesea47a12b2010-04-15 16:07:28 +0200230LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.a
231LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.a
Andy Flemingda9d4612007-08-14 00:14:25 -0500232endif
Jean-Christophe PLAGNIOL-VILLARD59829cc2007-11-24 21:26:56 +0100233LIBS += drivers/rtc/librtc.a
TsiChung Liew8e585f02007-06-18 13:50:13 -0500234LIBS += drivers/serial/libserial.a
Detlev Zundel572e6172009-03-30 00:31:32 +0200235LIBS += drivers/twserial/libtws.a
Jean-Christophe PLAGNIOL-VILLARD2731b9a2009-04-03 12:46:58 +0200236LIBS += drivers/usb/gadget/libusb_gadget.a
237LIBS += drivers/usb/host/libusb_host.a
238LIBS += drivers/usb/musb/libusb_musb.a
Tom Rixbffbb2a2009-10-31 12:37:40 -0500239LIBS += drivers/usb/phy/libusb_phy.a
Jean-Christophe PLAGNIOL-VILLARD59829cc2007-11-24 21:26:56 +0100240LIBS += drivers/video/libvideo.a
Jean-Christophe PLAGNIOL-VILLARD843a2652009-03-27 23:26:42 +0100241LIBS += drivers/watchdog/libwatchdog.a
wdenk7ebf7442002-11-02 23:17:16 +0000242LIBS += common/libcommon.a
Peter Tyser0de71d52010-04-12 22:28:06 -0500243LIBS += lib/libfdt/libfdt.a
Rafal Jaworowski500856e2008-01-09 19:39:36 +0100244LIBS += api/libapi.a
Yuri Tikhonov2d2b9942008-03-31 10:51:37 +0200245LIBS += post/libpost.a
Marian Balakowiczf9328632006-09-01 19:49:50 +0200246
247LIBS := $(addprefix $(obj),$(LIBS))
Peter Tyser561858e2008-11-03 09:30:59 -0600248.PHONY : $(LIBS) $(TIMESTAMP_FILE) $(VERSION_FILE)
wdenka8c7c702003-12-06 19:49:23 +0000249
Wolfgang Denkde109d92008-04-30 17:25:07 +0200250LIBBOARD = board/$(BOARDDIR)/lib$(BOARD).a
251LIBBOARD := $(addprefix $(obj),$(LIBBOARD))
252
wdenk4f7cb082003-09-11 23:06:34 +0000253# Add GCC lib
Wolfgang Denk52b1bf22009-07-23 13:15:59 +0200254ifdef USE_PRIVATE_LIBGCC
255ifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
Peter Tyserea0364f2010-04-12 22:28:04 -0500256PLATFORM_LIBGCC = -L $(OBJTREE)/arch/$(ARCH)/lib -lgcc
Wolfgang Denk52b1bf22009-07-23 13:15:59 +0200257else
258PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc
259endif
260else
261PLATFORM_LIBGCC = -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
262endif
263PLATFORM_LIBS += $(PLATFORM_LIBGCC)
264export PLATFORM_LIBS
wdenk3d3befa2004-03-14 15:06:13 +0000265
Mike Frysinger6ac9f472009-08-23 02:47:59 -0400266# Special flags for CPP when processing the linker script.
267# Pass the version down so we can handle backwards compatibility
268# on the fly.
269LDPPFLAGS += \
270 -include $(TOPDIR)/include/u-boot/u-boot.lds.h \
271 $(shell $(LD) --version | \
272 sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
273
Stefan Roese887e2ec2006-09-07 11:51:23 +0200274ifeq ($(CONFIG_NAND_U_BOOT),y)
275NAND_SPL = nand_spl
276U_BOOT_NAND = $(obj)u-boot-nand.bin
277endif
278
Kyungmin Park751b9b52008-01-17 16:43:25 +0900279ifeq ($(CONFIG_ONENAND_U_BOOT),y)
280ONENAND_IPL = onenand_ipl
281U_BOOT_ONENAND = $(obj)u-boot-onenand.bin
Kyungmin Parkca6189d2009-09-22 09:05:00 +0900282ONENAND_BIN ?= $(obj)onenand_ipl/onenand-ipl-2k.bin
Kyungmin Park751b9b52008-01-17 16:43:25 +0900283endif
284
Marian Balakowiczf9328632006-09-01 19:49:50 +0200285__OBJS := $(subst $(obj),,$(OBJS))
Wolfgang Denkde109d92008-04-30 17:25:07 +0200286__LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200287
wdenk7ebf7442002-11-02 23:17:16 +0000288#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000289#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000290
Mike Frysinger3e883372009-06-15 00:25:19 -0400291# Always append ALL so that arch config.mk's can add custom ones
Kyungmin Park751b9b52008-01-17 16:43:25 +0900292ALL += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND) $(U_BOOT_ONENAND)
wdenk7ebf7442002-11-02 23:17:16 +0000293
wdenkbdccc4f2003-08-05 17:43:17 +0000294all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000295
Marian Balakowiczf9328632006-09-01 19:49:50 +0200296$(obj)u-boot.hex: $(obj)u-boot
wdenk6310eb92005-01-09 21:28:15 +0000297 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
298
Marian Balakowiczf9328632006-09-01 19:49:50 +0200299$(obj)u-boot.srec: $(obj)u-boot
Ricardo Ribalda Delgado0817d682008-09-07 17:10:27 -0400300 $(OBJCOPY) -O srec $< $@
wdenk7ebf7442002-11-02 23:17:16 +0000301
Marian Balakowiczf9328632006-09-01 19:49:50 +0200302$(obj)u-boot.bin: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000303 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
304
Mike Frysinger94a91e22008-02-04 19:26:57 -0500305$(obj)u-boot.ldr: $(obj)u-boot
Mike Frysinger76d82182009-07-21 22:17:36 -0400306 $(CREATE_LDR_ENV)
Mike Frysinger68e56322008-08-07 18:56:56 -0400307 $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
Mike Frysinger94a91e22008-02-04 19:26:57 -0500308
309$(obj)u-boot.ldr.hex: $(obj)u-boot.ldr
310 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary
311
312$(obj)u-boot.ldr.srec: $(obj)u-boot.ldr
313 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary
314
Marian Balakowiczf9328632006-09-01 19:49:50 +0200315$(obj)u-boot.img: $(obj)u-boot.bin
Wolfgang Denka2a0a712010-05-15 21:23:51 +0200316 $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
wdenkbdccc4f2003-08-05 17:43:17 +0000317 -a $(TEXT_BASE) -e 0 \
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100318 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenkbdccc4f2003-08-05 17:43:17 +0000319 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
320 -d $< $@
321
Stefano Babic8edcde52010-01-20 18:19:10 +0100322$(obj)u-boot.imx: $(obj)u-boot.bin
323 $(obj)tools/mkimage -n $(IMX_CONFIG) -T imximage \
324 -e $(TEXT_BASE) -d $< $@
325
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530326$(obj)u-boot.kwb: $(obj)u-boot.bin
327 $(obj)tools/mkimage -n $(KWD_CONFIG) -T kwbimage \
328 -a $(TEXT_BASE) -e $(TEXT_BASE) -d $< $@
329
Heiko Schocher566a4942007-06-22 19:11:54 +0200330$(obj)u-boot.sha1: $(obj)u-boot.bin
Heiko Schocher01159532007-07-14 01:06:58 +0200331 $(obj)tools/ubsha1 $(obj)u-boot.bin
Heiko Schocher566a4942007-06-22 19:11:54 +0200332
Marian Balakowiczf9328632006-09-01 19:49:50 +0200333$(obj)u-boot.dis: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000334 $(OBJDUMP) -d $< > $@
335
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400336GEN_UBOOT = \
Wolfgang Denkde109d92008-04-30 17:25:07 +0200337 UNDEF_SYM=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \
338 sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
Marian Balakowiczf9328632006-09-01 19:49:50 +0200339 cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
340 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000341 -Map u-boot.map -o u-boot
Wolfgang Denk1aada9c2009-08-17 14:00:53 +0200342$(obj)u-boot: depend $(SUBDIRS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400343 $(GEN_UBOOT)
344ifeq ($(CONFIG_KALLSYMS),y)
Wolfgang Denk1aada9c2009-08-17 14:00:53 +0200345 smap=`$(call SYSTEM_MAP,u-boot) | \
346 awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
347 $(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \
348 -c common/system_map.c -o $(obj)common/system_map.o
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400349 $(GEN_UBOOT) $(obj)common/system_map.o
350endif
wdenk7ebf7442002-11-02 23:17:16 +0000351
Peter Tyserd0d61442009-03-13 18:54:25 -0500352$(OBJS): depend
Peter Tyser03b70042010-04-12 22:28:02 -0500353 $(MAKE) -C $(CPUDIR) $(if $(REMOTE_BUILD),$@,$(notdir $@))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200354
Peter Tyserd0d61442009-03-13 18:54:25 -0500355$(LIBS): depend $(SUBDIRS)
Marian Balakowiczf9328632006-09-01 19:49:50 +0200356 $(MAKE) -C $(dir $(subst $(obj),,$@))
wdenka8c7c702003-12-06 19:49:23 +0000357
Peter Tyserd0d61442009-03-13 18:54:25 -0500358$(LIBBOARD): depend $(LIBS)
Wolfgang Denkde109d92008-04-30 17:25:07 +0200359 $(MAKE) -C $(dir $(subst $(obj),,$@))
360
Peter Tyserd0d61442009-03-13 18:54:25 -0500361$(SUBDIRS): depend
wdenkb028f712003-12-07 21:39:28 +0000362 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000363
Peter Tyserd0d61442009-03-13 18:54:25 -0500364$(LDSCRIPT): depend
Mike Frysingerf65c9812008-02-16 02:12:37 -0500365 $(MAKE) -C $(dir $@) $(notdir $@)
366
Wolfgang Denk1aada9c2009-08-17 14:00:53 +0200367$(obj)u-boot.lds: $(LDSCRIPT)
368 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
369
Peter Tyser561858e2008-11-03 09:30:59 -0600370$(NAND_SPL): $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200371 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
Stefan Roese887e2ec2006-09-07 11:51:23 +0200372
Peter Tyserd0d61442009-03-13 18:54:25 -0500373$(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200374 cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin
Stefan Roese887e2ec2006-09-07 11:51:23 +0200375
Peter Tyser561858e2008-11-03 09:30:59 -0600376$(ONENAND_IPL): $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk
Stefan Roesef2302d42008-08-06 14:05:38 +0200377 $(MAKE) -C onenand_ipl/board/$(BOARDDIR) all
Kyungmin Park751b9b52008-01-17 16:43:25 +0900378
Peter Tyserd0d61442009-03-13 18:54:25 -0500379$(U_BOOT_ONENAND): $(ONENAND_IPL) $(obj)u-boot.bin
Kyungmin Parkca6189d2009-09-22 09:05:00 +0900380 cat $(ONENAND_BIN) $(obj)u-boot.bin > $(obj)u-boot-onenand.bin
Kyungmin Park751b9b52008-01-17 16:43:25 +0900381
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100382$(VERSION_FILE):
Mike Frysingeraa737942008-05-02 21:45:12 -0400383 @( printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' "$(U_BOOT_VERSION)" \
Peter Tyser434c51a2008-11-12 13:06:48 -0600384 '$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ) > $@.tmp
Mike Frysinger0ec7a062008-02-04 17:44:23 -0500385 @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100386
Peter Tyser561858e2008-11-03 09:30:59 -0600387$(TIMESTAMP_FILE):
388 @date +'#define U_BOOT_DATE "%b %d %C%y"' > $@
389 @date +'#define U_BOOT_TIME "%T"' >> $@
390
dzu8f713fd2003-08-07 14:20:31 +0000391gdbtools:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200392 $(MAKE) -C tools/gdb all || exit 1
393
394updater:
395 $(MAKE) -C tools/updater all || exit 1
396
397env:
Markus Klotzbücher64b37272007-11-27 10:23:20 +0100398 $(MAKE) -C tools/env all MTD_VERSION=${MTD_VERSION} || exit 1
dzu8f713fd2003-08-07 14:20:31 +0000399
Daniel Hobi2a998792010-01-18 18:13:39 +0100400# Explicitly make _depend in subdirs containing multiple targets to prevent
401# parallel sub-makes creating .depend files simultaneously.
Peter Tyserd0d61442009-03-13 18:54:25 -0500402depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk
Peter Tyser03b70042010-04-12 22:28:02 -0500403 for dir in $(SUBDIRS) $(CPUDIR) $(dir $(LDSCRIPT)) ; do \
Daniel Hobi2a998792010-01-18 18:13:39 +0100404 $(MAKE) -C $$dir _depend ; done
wdenk7ebf7442002-11-02 23:17:16 +0000405
Li Yange5e4e702009-12-09 18:13:26 +0800406TAG_SUBDIRS = $(SUBDIRS)
407TAG_SUBDIRS += $(dir $(__LIBS))
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100408TAG_SUBDIRS += include
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100409
Marian Balakowiczf9328632006-09-01 19:49:50 +0200410tags ctags:
Li Yange5e4e702009-12-09 18:13:26 +0800411 ctags -w -o $(obj)ctags `find $(TAG_SUBDIRS) \
412 -name '*.[chS]' -print`
wdenk7ebf7442002-11-02 23:17:16 +0000413
414etags:
Li Yange5e4e702009-12-09 18:13:26 +0800415 etags -a -o $(obj)etags `find $(TAG_SUBDIRS) \
416 -name '*.[chS]' -print`
Li Yangffda5862008-02-29 11:46:05 +0800417cscope:
Li Yange5e4e702009-12-09 18:13:26 +0800418 find $(TAG_SUBDIRS) -name '*.[chS]' -print > cscope.files
Li Yangffda5862008-02-29 11:46:05 +0800419 cscope -b -q -k
wdenk7ebf7442002-11-02 23:17:16 +0000420
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400421SYSTEM_MAP = \
422 $(NM) $1 | \
wdenk7ebf7442002-11-02 23:17:16 +0000423 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400424 LC_ALL=C sort
425$(obj)System.map: $(obj)u-boot
426 @$(call SYSTEM_MAP,$<) > $(obj)System.map
wdenk7ebf7442002-11-02 23:17:16 +0000427
Grant Likely2f155f62007-09-24 09:05:31 -0600428#
429# Auto-generate the autoconf.mk file (which is included by all makefiles)
430#
431# This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
432# the dep file is only include in this top level makefile to determine when
433# to regenerate the autoconf.mk file.
Wolfgang Denk1510b822008-05-13 23:15:52 +0200434$(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h
435 @$(XECHO) Generating $@ ; \
Mike Frysinger16fe7772008-02-18 05:10:07 -0500436 set -e ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100437 : Generate the dependancies ; \
Mike Frysinger9aef7382009-07-19 15:17:03 -0400438 $(CC) -x c -DDO_DEPS_ONLY -M $(HOSTCFLAGS) $(CPPFLAGS) \
Wolfgang Denk1510b822008-05-13 23:15:52 +0200439 -MQ $(obj)include/autoconf.mk include/common.h > $@
440
441$(obj)include/autoconf.mk: $(obj)include/config.h
442 @$(XECHO) Generating $@ ; \
443 set -e ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100444 : Extract the config macros ; \
Wolfgang Denk1510b822008-05-13 23:15:52 +0200445 $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \
Wolfgang Denk4a0f7532008-12-16 14:41:02 +0100446 sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
447 mv $@.tmp $@
Grant Likely2f155f62007-09-24 09:05:31 -0600448
wdenk7ebf7442002-11-02 23:17:16 +0000449#########################################################################
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100450else # !config.mk
Marian Balakowiczf9328632006-09-01 19:49:50 +0200451all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
452$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
Mike Frysingerc7c0d542010-01-21 04:03:22 -0500453$(filter-out tools,$(SUBDIRS)) $(TIMESTAMP_FILE) $(VERSION_FILE) gdbtools \
454updater env depend dep tags ctags etags cscope $(obj)System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000455 @echo "System not configured - see README" >&2
456 @ exit 1
Mike Frysingerc7c0d542010-01-21 04:03:22 -0500457
458tools:
459 $(MAKE) -C tools
460tools-all:
461 $(MAKE) -C tools HOST_TOOLS_ALL=y
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100462endif # config.mk
wdenk7ebf7442002-11-02 23:17:16 +0000463
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200464.PHONY : CHANGELOG
465CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -0400466 git log --no-merges U-Boot-1_1_5.. | \
467 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200468
Harald Welte0a823aa2008-07-09 22:30:30 +0800469include/license.h: tools/bin2header COPYING
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200470 cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
wdenk7ebf7442002-11-02 23:17:16 +0000471#########################################################################
472
473unconfig:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200474 @rm -f $(obj)include/config.h $(obj)include/config.mk \
Grant Likely2f155f62007-09-24 09:05:31 -0600475 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \
476 $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep
wdenk7ebf7442002-11-02 23:17:16 +0000477
Mike Frysinger9f4a4202009-10-01 12:11:54 -0400478%: %_config
479 $(MAKE)
480
wdenk7ebf7442002-11-02 23:17:16 +0000481#========================================================================
482# PowerPC
483#========================================================================
wdenk0db5bca2003-03-31 17:27:09 +0000484
485#########################################################################
486## MPC5xx Systems
487#########################################################################
488
wdenk5e5f9ed2005-04-13 23:15:10 +0000489canmb_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200490 @$(MKCONFIG) -a canmb powerpc mpc5xxx canmb
wdenk5e5f9ed2005-04-13 23:15:10 +0000491
wdenk0db5bca2003-03-31 17:27:09 +0000492cmi_mpc5xx_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200493 @$(MKCONFIG) $(@:_config=) powerpc mpc5xx cmi
wdenk0db5bca2003-03-31 17:27:09 +0000494
wdenkdb01a2e2004-04-15 23:14:49 +0000495PATI_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200496 @$(MKCONFIG) $(@:_config=) powerpc mpc5xx pati mpl
wdenkb6e4c402004-01-02 16:05:07 +0000497
wdenk7ebf7442002-11-02 23:17:16 +0000498#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000499## MPC5xxx Systems
500#########################################################################
wdenka87589d2005-06-10 10:00:19 +0000501
Wolfgang Denkdafba162005-08-12 00:22:49 +0200502aev_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200503 @$(MKCONFIG) -a aev powerpc mpc5xxx tqm5200 tqc
Wolfgang Denkdafba162005-08-12 00:22:49 +0200504
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200505BC3450_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200506 @$(MKCONFIG) -a BC3450 powerpc mpc5xxx bc3450
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200507
Wolfgang Denk699f0512008-07-15 22:22:44 +0200508cm5200_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200509 @$(MKCONFIG) -a cm5200 powerpc mpc5xxx cm5200
Wolfgang Denk699f0512008-07-15 22:22:44 +0200510
Stefan Roese5e4b3362005-08-22 17:51:53 +0200511cpci5200_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200512 @$(MKCONFIG) -a cpci5200 powerpc mpc5xxx cpci5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200513
Grzegorz Bernacki5c4fa9b2009-03-17 10:06:40 +0100514digsy_mtc_config \
515digsy_mtc_LOWBOOT_config \
516digsy_mtc_RAMBOOT_config: unconfig
517 @mkdir -p $(obj)include
518 @mkdir -p $(obj)board/digsy_mtc
519 @ >$(obj)include/config.h
520 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200521 echo "TEXT_BASE = 0xFF000000" >$(obj)board/digsy_mtc/config.tmp
Grzegorz Bernacki5c4fa9b2009-03-17 10:06:40 +0100522 @[ -z "$(findstring RAMBOOT_,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200523 echo "TEXT_BASE = 0x00100000" >$(obj)board/digsy_mtc/config.tmp
524 @$(MKCONFIG) -n $@ -a digsy_mtc powerpc mpc5xxx digsy_mtc
Grzegorz Bernacki5c4fa9b2009-03-17 10:06:40 +0100525
Eric Millbrandt5b53b292009-08-13 10:14:21 -0500526galaxy5200_LOWBOOT_config \
527galaxy5200_config: unconfig
528 @mkdir -p $(obj)include
529 @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200530 @$(MKCONFIG) -n $@ -a galaxy5200 powerpc mpc5xxx galaxy5200
Eric Millbrandt5b53b292009-08-13 10:14:21 -0500531
Wolfgang Denk05bf4912007-10-21 01:01:17 +0200532hmi1001_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200533 @$(MKCONFIG) hmi1001 powerpc mpc5xxx hmi1001
wdenka87589d2005-06-10 10:00:19 +0000534
wdenke35745b2004-04-18 23:32:11 +0000535Lite5200_config \
536Lite5200_LOWBOOT_config \
537Lite5200_LOWBOOT08_config \
538icecube_5200_config \
539icecube_5200_LOWBOOT_config \
540icecube_5200_LOWBOOT08_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100541icecube_5200_DDR_config \
542icecube_5200_DDR_LOWBOOT_config \
Detlev Zundelfd428c02010-03-12 10:01:12 +0100543icecube_5200_DDR_LOWBOOT08_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200544 @mkdir -p $(obj)include
545 @mkdir -p $(obj)board/icecube
wdenk17d704e2004-04-10 20:43:50 +0000546 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200547 if [ "$(findstring DDR,$@)" ] ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200548 then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
549 else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200550 fi
wdenk5cf9da42003-11-07 13:42:26 +0000551 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200552 echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp
wdenkb2001f22003-12-20 22:45:10 +0000553 @[ -z "$(findstring DDR,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200554 echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
555 @$(MKCONFIG) -n $@ -a IceCube powerpc mpc5xxx icecube
wdenk945af8d2003-07-16 21:53:01 +0000556
Wolfgang Denk05bf4912007-10-21 01:01:17 +0200557jupiter_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200558 @$(MKCONFIG) jupiter powerpc mpc5xxx jupiter
Heiko Schocher2605e902007-02-16 07:57:42 +0100559
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100560inka4x0_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200561 @$(MKCONFIG) inka4x0 powerpc mpc5xxx inka4x0
wdenk138ff602004-12-16 15:52:40 +0000562
Wolfgang Grandeggercd12f612009-10-23 12:03:16 +0200563ipek01_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200564 @$(MKCONFIG) -a ipek01 powerpc mpc5xxx ipek01
Wolfgang Grandeggercd12f612009-10-23 12:03:16 +0200565
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100566lite5200b_config \
Domen Puncerd3832e82007-04-16 14:00:13 +0200567lite5200b_PM_config \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100568lite5200b_LOWBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200569 @mkdir -p $(obj)include
570 @mkdir -p $(obj)board/icecube
Marian Balakowiczf9328632006-09-01 19:49:50 +0200571 @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
Marian Balakowiczf9328632006-09-01 19:49:50 +0200572 @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h
Domen Puncerd3832e82007-04-16 14:00:13 +0200573 @[ -z "$(findstring _PM_,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200574 echo "#define CONFIG_LITE5200B_PM" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100575 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200576 echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp
577 @$(MKCONFIG) -n $@ -a IceCube powerpc mpc5xxx icecube
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100578
Stefan Roesef1ee9822006-03-04 14:57:03 +0100579mcc200_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200580mcc200_SDRAM_config \
581mcc200_highboot_config \
582mcc200_COM12_config \
583mcc200_COM12_SDRAM_config \
Wolfgang Denk113f64e2006-08-25 01:38:04 +0200584mcc200_COM12_highboot_config \
585mcc200_COM12_highboot_SDRAM_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200586mcc200_highboot_SDRAM_config \
587prs200_config \
588prs200_DDR_config \
589prs200_highboot_config \
590prs200_highboot_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200591 @mkdir -p $(obj)include
592 @mkdir -p $(obj)board/mcc200
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200593 @[ -z "$(findstring highboot,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200594 echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200595 @[ -n "$(findstring _SDRAM,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200596 if [ -n "$(findstring prs200,$@)" ]; \
597 then \
598 if [ -z "$(findstring _DDR,$@)" ];\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200599 then \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200600 echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200601 fi; \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200602 fi
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200603 @[ -z "$(findstring _SDRAM,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200604 echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h
Wolfgang Denk463764c2006-08-17 00:36:51 +0200605 @[ -z "$(findstring COM12,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200606 echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h
Wolfgang Denked1cf842006-08-24 00:26:42 +0200607 @[ -z "$(findstring prs200,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200608 echo "#define CONFIG_PRS200" >>$(obj)include/config.h
Stefan Roesea47a12b2010-04-15 16:07:28 +0200609 @$(MKCONFIG) -n $@ -a mcc200 powerpc mpc5xxx mcc200
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100610
Stefan Roese8b7d1f02007-01-31 16:37:34 +0100611mecp5200_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200612 @$(MKCONFIG) mecp5200 powerpc mpc5xxx mecp5200 esd
Stefan Roese8b7d1f02007-01-31 16:37:34 +0100613
Wolfgang Denk699f0512008-07-15 22:22:44 +0200614motionpro_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200615 @$(MKCONFIG) motionpro powerpc mpc5xxx motionpro
Wolfgang Denk699f0512008-07-15 22:22:44 +0200616
Heiko Schocher258c37b2008-08-21 20:44:49 +0200617mucmc52_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200618 @$(MKCONFIG) mucmc52 powerpc mpc5xxx mucmc52
Heiko Schocher258c37b2008-08-21 20:44:49 +0200619
Heiko Schocher6341d9d2008-01-11 15:15:14 +0100620munices_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200621 @$(MKCONFIG) munices powerpc mpc5xxx munices
Heiko Schocher6341d9d2008-01-11 15:15:14 +0100622
Wolfgang Denk699f0512008-07-15 22:22:44 +0200623MVBC_P_config: unconfig
624 @mkdir -p $(obj)include
625 @mkdir -p $(obj)board/mvbc_p
626 @ >$(obj)include/config.h
627 @[ -z "$(findstring MVBC_P,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200628 echo "#define CONFIG_MVBC_P" >>$(obj)include/config.h
Stefan Roesea47a12b2010-04-15 16:07:28 +0200629 @$(MKCONFIG) -n $@ -a MVBC_P powerpc mpc5xxx mvbc_p matrix_vision
Wolfgang Denk699f0512008-07-15 22:22:44 +0200630
Andre Schwarz1f2463d2010-04-01 21:26:55 +0200631MVSMR_config: unconfig
632 @mkdir -p $(obj)include
633 @mkdir -p $(obj)board/matrix_vision/mvsmr
Stefan Roesea47a12b2010-04-15 16:07:28 +0200634 @$(MKCONFIG) $(@:_config=) powerpc mpc5xxx mvsmr matrix_vision
Andre Schwarz1f2463d2010-04-01 21:26:55 +0200635
Jean-Christophe PLAGNIOL-VILLARD91c82072008-03-02 16:12:31 +0100636o2dnt_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200637 @$(MKCONFIG) o2dnt powerpc mpc5xxx o2dnt
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200638
Jon Smirlc9969942009-06-14 18:21:28 -0400639pcm030_config \
640pcm030_LOWBOOT_config: unconfig
Wolfgang Denk341245a2009-07-19 12:05:15 +0200641 @mkdir -p $(obj)include $(obj)board/phytec/pcm030
Wolfgang Denk0a87dd92009-07-18 18:00:25 +0200642 @ >$(obj)include/config.h
Jon Smirlc9969942009-06-14 18:21:28 -0400643 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200644 echo "TEXT_BASE = 0xFF000000" >$(obj)board/phytec/pcm030/config.tmp
645 @$(MKCONFIG) -n $@ -a pcm030 powerpc mpc5xxx pcm030 phytec
Jon Smirlc9969942009-06-14 18:21:28 -0400646
Wolfgang Denkf9301e12008-03-04 14:58:31 +0100647pf5200_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200648 @$(MKCONFIG) pf5200 powerpc mpc5xxx pf5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200649
wdenk89394042004-08-04 21:56:49 +0000650PM520_config \
651PM520_DDR_config \
652PM520_ROMBOOT_config \
653PM520_ROMBOOT_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200654 @mkdir -p $(obj)include
wdenk89394042004-08-04 21:56:49 +0000655 @[ -z "$(findstring DDR,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200656 echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
wdenk89394042004-08-04 21:56:49 +0000657 @[ -z "$(findstring ROMBOOT,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200658 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h
659 @$(MKCONFIG) -n $@ -a PM520 powerpc mpc5xxx pm520
wdenk89394042004-08-04 21:56:49 +0000660
Wolfgang Denk6624b682006-02-22 10:25:39 +0100661smmaco4_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200662 @$(MKCONFIG) -a smmaco4 powerpc mpc5xxx tqm5200 tqc
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100663
664spieval_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200665 @$(MKCONFIG) -a spieval powerpc mpc5xxx tqm5200 tqc
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100666
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200667TB5200_B_config \
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200668TB5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200669 @mkdir -p $(obj)include
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200670 @[ -z "$(findstring _B,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200671 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h
Stefan Roesea47a12b2010-04-15 16:07:28 +0200672 @$(MKCONFIG) -n $@ -a TB5200 powerpc mpc5xxx tqm5200 tqc
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200673
wdenkd4ca31c2004-01-02 14:00:00 +0000674MINI5200_config \
675EVAL5200_config \
676TOP5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200677 @mkdir -p $(obj)include
678 @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
Stefan Roesea47a12b2010-04-15 16:07:28 +0200679 @$(MKCONFIG) -n $@ -a TOP5200 powerpc mpc5xxx top5200 emk
wdenkd4ca31c2004-01-02 14:00:00 +0000680
wdenk6c7a1402004-07-11 19:17:20 +0000681Total5200_config \
682Total5200_lowboot_config \
683Total5200_Rev2_config \
684Total5200_Rev2_lowboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200685 @mkdir -p $(obj)include
686 @mkdir -p $(obj)board/total5200
wdenk6c7a1402004-07-11 19:17:20 +0000687 @[ -n "$(findstring Rev,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200688 echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h
wdenk6c7a1402004-07-11 19:17:20 +0000689 @[ -z "$(findstring Rev2_,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200690 echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h
wdenk6c7a1402004-07-11 19:17:20 +0000691 @[ -z "$(findstring lowboot_,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200692 echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp
693 @$(MKCONFIG) -n $@ -a Total5200 powerpc mpc5xxx total5200
wdenk6c7a1402004-07-11 19:17:20 +0000694
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200695cam5200_config \
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100696cam5200_niosflash_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200697fo300_config \
698MiniFAP_config \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200699TQM5200S_config \
700TQM5200S_HIGHBOOT_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200701TQM5200_B_config \
702TQM5200_B_HIGHBOOT_config \
703TQM5200_config \
704TQM5200_STK100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200705 @mkdir -p $(obj)include
Wolfgang Grandegger46779882008-06-04 13:52:17 +0200706 @mkdir -p $(obj)board/tqc/tqm5200
Wolfgang Denk135ae002006-07-22 01:20:03 +0200707 @[ -z "$(findstring cam5200,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200708 { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \
709 echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
710 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200711 }
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100712 @[ -z "$(findstring niosflash,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200713 echo "#define CONFIG_CAM5200_NIOSFLASH" >>$(obj)include/config.h
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200714 @[ -z "$(findstring fo300,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200715 echo "#define CONFIG_FO300" >>$(obj)include/config.h
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200716 @[ -z "$(findstring MiniFAP,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200717 echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200718 @[ -z "$(findstring STK100,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200719 echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200720 @[ -z "$(findstring TQM5200_B,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200721 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200722 @[ -z "$(findstring TQM5200S,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200723 { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
724 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200725 }
Wolfgang Denk978b1092006-07-19 18:01:38 +0200726 @[ -z "$(findstring HIGHBOOT,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200727 echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp
Stefan Roesea47a12b2010-04-15 16:07:28 +0200728 @$(MKCONFIG) -n $@ -a TQM5200 powerpc mpc5xxx tqm5200 tqc
Wolfgang Denk699f0512008-07-15 22:22:44 +0200729
Wolfgang Denk05bf4912007-10-21 01:01:17 +0200730uc101_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200731 @$(MKCONFIG) uc101 powerpc mpc5xxx uc101
Bartlomiej Sieka53d4a492007-02-09 10:45:42 +0100732
Wolfgang Denk699f0512008-07-15 22:22:44 +0200733v38b_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200734 @$(MKCONFIG) -a v38b powerpc mpc5xxx v38b
wdenk56523f12004-07-11 17:40:54 +0000735
wdenk945af8d2003-07-16 21:53:01 +0000736#########################################################################
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200737## MPC512x Systems
738#########################################################################
Wolfgang Denk699f0512008-07-15 22:22:44 +0200739
Wolfgang Denk52568c32009-05-16 10:47:46 +0200740aria_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200741 @$(MKCONFIG) -a aria powerpc mpc512x aria davedenx
Wolfgang Denk52568c32009-05-16 10:47:46 +0200742
Stefan Roesee53b5072009-06-09 11:50:40 +0200743mecp5123_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200744 @$(MKCONFIG) -a mecp5123 powerpc mpc512x mecp5123 esd
Stefan Roesee53b5072009-06-09 11:50:40 +0200745
Wolfgang Denk72601d02009-05-16 10:47:41 +0200746mpc5121ads_config \
747mpc5121ads_rev2_config \
Martha Marxf31c49d2008-05-29 14:23:25 -0400748 : unconfig
Wolfgang Denk210ed202008-03-09 00:06:09 +0100749 @mkdir -p $(obj)include
Martha Marxf31c49d2008-05-29 14:23:25 -0400750 @if [ "$(findstring rev2,$@)" ] ; then \
751 echo "#define CONFIG_ADS5121_REV2 1" > $(obj)include/config.h; \
John Rigby5f91db72008-02-26 09:38:14 -0700752 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200753 @$(MKCONFIG) -n $@ -a mpc5121ads powerpc mpc512x mpc5121ads freescale
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200754
Anatolij Gustschina3921ee2010-04-24 19:27:09 +0200755pdm360ng_config: unconfig
756 @$(MKCONFIG) -a pdm360ng powerpc mpc512x pdm360ng
757
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200758#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000759## MPC8xx Systems
760#########################################################################
761
wdenk2d24a3a2004-06-09 21:50:45 +0000762Adder87x_config \
Wolfgang Denkf9301e12008-03-04 14:58:31 +0100763AdderII_config \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200764AdderUSB_config \
765Adder_config \
wdenk2d24a3a2004-06-09 21:50:45 +0000766 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200767 @mkdir -p $(obj)include
wdenk26238132004-07-09 22:51:01 +0000768 $(if $(findstring AdderII,$@), \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200769 @echo "#define CONFIG_MPC852T" > $(obj)include/config.h)
770 @$(MKCONFIG) -n $@ -a Adder powerpc mpc8xx adder
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200771
Wolfgang Denkf9301e12008-03-04 14:58:31 +0100772ADS860_config \
773FADS823_config \
wdenk180d3f72004-01-04 16:28:35 +0000774FADS850SAR_config \
775MPC86xADS_config \
wdenk11142572004-06-06 21:35:06 +0000776MPC885ADS_config \
wdenk180d3f72004-01-04 16:28:35 +0000777FADS860T_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200778 @$(MKCONFIG) -n $@ $(@:_config=) powerpc mpc8xx fads
wdenk7ebf7442002-11-02 23:17:16 +0000779
780AMX860_config : unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200781 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx amx860 westel
wdenk7ebf7442002-11-02 23:17:16 +0000782
783c2mon_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200784 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx c2mon
wdenk7ebf7442002-11-02 23:17:16 +0000785
786CCM_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200787 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx CCM siemens
wdenk7ebf7442002-11-02 23:17:16 +0000788
789cogent_mpc8xx_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200790 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx cogent
wdenk7ebf7442002-11-02 23:17:16 +0000791
wdenk3bac3512003-03-12 10:41:04 +0000792ELPT860_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200793 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx elpt860 LEOX
wdenk3bac3512003-03-12 10:41:04 +0000794
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100795EP88x_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200796 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx ep88x
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100797
wdenk7ebf7442002-11-02 23:17:16 +0000798ESTEEM192E_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200799 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx esteem192e
wdenk7ebf7442002-11-02 23:17:16 +0000800
801ETX094_config : unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200802 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx etx094
wdenk7ebf7442002-11-02 23:17:16 +0000803
wdenk7ebf7442002-11-02 23:17:16 +0000804FLAGADM_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200805 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx flagadm
wdenk7ebf7442002-11-02 23:17:16 +0000806
wdenk7aa78612003-05-03 15:50:43 +0000807xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
808
809GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000810GEN860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200811 @mkdir -p $(obj)include
wdenk7aa78612003-05-03 15:50:43 +0000812 @[ -z "$(findstring _SC,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200813 echo "#define CONFIG_SC" >>$(obj)include/config.h
814 @$(MKCONFIG) -n $@ -a $(call xtract_GEN860T,$@) powerpc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000815
816GENIETV_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200817 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx genietv
wdenk7ebf7442002-11-02 23:17:16 +0000818
819GTH_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200820 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx gth
wdenk7ebf7442002-11-02 23:17:16 +0000821
822hermes_config : unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200823 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx hermes
wdenk7ebf7442002-11-02 23:17:16 +0000824
wdenkc40b2952004-03-13 23:29:43 +0000825HMI10_config : unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200826 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx tqm8xx tqc
wdenkc40b2952004-03-13 23:29:43 +0000827
wdenk7ebf7442002-11-02 23:17:16 +0000828IAD210_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200829 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx IAD210 siemens
wdenk7ebf7442002-11-02 23:17:16 +0000830
831xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
832
833ICU862_100MHz_config \
834ICU862_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200835 @mkdir -p $(obj)include
wdenk7ebf7442002-11-02 23:17:16 +0000836 @[ -z "$(findstring _100MHz,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200837 echo "#define CONFIG_100MHz" >>$(obj)include/config.h
838 @$(MKCONFIG) -n $@ -a $(call xtract_ICU862,$@) powerpc mpc8xx icu862
wdenk7ebf7442002-11-02 23:17:16 +0000839
840IP860_config : unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200841 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx ip860
wdenk7ebf7442002-11-02 23:17:16 +0000842
843IVML24_256_config \
844IVML24_128_config \
845IVML24_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200846 @mkdir -p $(obj)include
wdenk7ebf7442002-11-02 23:17:16 +0000847 @[ -z "$(findstring IVML24_config,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200848 echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000849 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200850 echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000851 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200852 echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h
853 @$(MKCONFIG) -n $@ -a IVML24 powerpc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000854
855IVMS8_256_config \
856IVMS8_128_config \
857IVMS8_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200858 @mkdir -p $(obj)include
wdenk7ebf7442002-11-02 23:17:16 +0000859 @[ -z "$(findstring IVMS8_config,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200860 echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000861 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200862 echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000863 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200864 echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h
865 @$(MKCONFIG) -n $@ -a IVMS8 powerpc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000866
Heiko Schocher1b6275d2009-03-12 07:37:34 +0100867kmsupx4_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200868 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx km8xx keymile
Heiko Schocher1b6275d2009-03-12 07:37:34 +0100869
wdenk56f94be2002-11-05 16:35:14 +0000870KUP4K_config : unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200871 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx kup4k kup
wdenk0608e042004-03-25 19:29:38 +0000872
Wolfgang Denkf9301e12008-03-04 14:58:31 +0100873KUP4X_config : unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200874 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000875
wdenk7ebf7442002-11-02 23:17:16 +0000876LANTEC_config : unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200877 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx lantec
wdenk7ebf7442002-11-02 23:17:16 +0000878
879lwmon_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200880 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx lwmon
wdenk7ebf7442002-11-02 23:17:16 +0000881
882MBX_config \
883MBX860T_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200884 @$(MKCONFIG) -n $@ $(@:_config=) powerpc mpc8xx mbx8xx
wdenk7ebf7442002-11-02 23:17:16 +0000885
Heiko Schocher381e4e62008-01-11 01:12:06 +0100886mgsuvd_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200887 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx km8xx keymile
Heiko Schocher381e4e62008-01-11 01:12:06 +0100888
wdenk7ebf7442002-11-02 23:17:16 +0000889MHPC_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200890 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx mhpc eltec
wdenk7ebf7442002-11-02 23:17:16 +0000891
wdenk993cad92003-06-26 22:04:09 +0000892xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
893
894NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000895NETVIA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200896 @mkdir -p $(obj)include
wdenk993cad92003-06-26 22:04:09 +0000897 @[ -z "$(findstring NETVIA_config,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200898 echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h
wdenk993cad92003-06-26 22:04:09 +0000899 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200900 echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h
901 @$(MKCONFIG) -n $@ -a $(call xtract_NETVIA,$@) powerpc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000902
wdenkc26e4542004-04-18 10:13:26 +0000903xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
904
905NETPHONE_V2_config \
wdenk04a85b32004-04-15 18:22:41 +0000906NETPHONE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200907 @mkdir -p $(obj)include
wdenkc26e4542004-04-18 10:13:26 +0000908 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200909 echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h
wdenkc26e4542004-04-18 10:13:26 +0000910 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200911 echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h
912 @$(MKCONFIG) -n $@ -a $(call xtract_NETPHONE,$@) powerpc mpc8xx netphone
wdenk04a85b32004-04-15 18:22:41 +0000913
wdenk79fa88f2004-06-07 23:46:25 +0000914xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk04a85b32004-04-15 18:22:41 +0000915
wdenk79fa88f2004-06-07 23:46:25 +0000916NETTA_ISDN_6412_SWAPHOOK_config \
917NETTA_ISDN_SWAPHOOK_config \
918NETTA_6412_SWAPHOOK_config \
919NETTA_SWAPHOOK_config \
920NETTA_ISDN_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000921NETTA_ISDN_config \
wdenk79fa88f2004-06-07 23:46:25 +0000922NETTA_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000923NETTA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200924 @mkdir -p $(obj)include
wdenk79fa88f2004-06-07 23:46:25 +0000925 @[ -z "$(findstring ISDN_,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200926 echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000927 @[ -n "$(findstring ISDN_,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200928 echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000929 @[ -z "$(findstring 6412_,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200930 echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000931 @[ -n "$(findstring 6412_,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200932 echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000933 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200934 echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000935 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200936 echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h
937 @$(MKCONFIG) -n $@ -a $(call xtract_NETTA,$@) powerpc mpc8xx netta
wdenk04a85b32004-04-15 18:22:41 +0000938
wdenk79fa88f2004-06-07 23:46:25 +0000939xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
940
941NETTA2_V2_config \
942NETTA2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200943 @mkdir -p $(obj)include
wdenk79fa88f2004-06-07 23:46:25 +0000944 @[ -z "$(findstring NETTA2_config,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200945 echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000946 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200947 echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h
948 @$(MKCONFIG) -n $@ -a $(call xtract_NETTA2,$@) powerpc mpc8xx netta2
wdenk79fa88f2004-06-07 23:46:25 +0000949
dzu@denx.dea367d422006-04-19 11:52:46 +0200950NC650_Rev1_config \
951NC650_Rev2_config \
952CP850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200953 @mkdir -p $(obj)include
dzu@denx.dea367d422006-04-19 11:52:46 +0200954 @[ -z "$(findstring CP850,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200955 { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \
956 echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
957 }
dzu@denx.dea367d422006-04-19 11:52:46 +0200958 @[ -z "$(findstring Rev1,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200959 { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \
960 }
dzu@denx.dea367d422006-04-19 11:52:46 +0200961 @[ -z "$(findstring Rev2,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200962 { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
963 }
964 @$(MKCONFIG) -n $@ -a NC650 powerpc mpc8xx nc650
wdenk7ca202f2004-08-28 22:45:57 +0000965
wdenk7ebf7442002-11-02 23:17:16 +0000966NX823_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200967 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx nx823
wdenk7ebf7442002-11-02 23:17:16 +0000968
969pcu_e_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200970 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx pcu_e siemens
wdenk7ebf7442002-11-02 23:17:16 +0000971
wdenk3bbc8992003-12-07 22:27:15 +0000972QS850_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200973 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000974
975QS823_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200976 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000977
978QS860T_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200979 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx qs860t snmc
wdenk3bbc8992003-12-07 22:27:15 +0000980
wdenkda93ed82004-09-29 11:02:56 +0000981quantum_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200982 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx quantum
wdenkda93ed82004-09-29 11:02:56 +0000983
wdenk7ebf7442002-11-02 23:17:16 +0000984R360MPI_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200985 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx r360mpi
wdenk7ebf7442002-11-02 23:17:16 +0000986
wdenk682011f2003-06-03 23:54:09 +0000987RBC823_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200988 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx rbc823
wdenk682011f2003-06-03 23:54:09 +0000989
wdenk7ebf7442002-11-02 23:17:16 +0000990RPXClassic_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200991 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx RPXClassic
wdenk7ebf7442002-11-02 23:17:16 +0000992
993RPXlite_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +0200994 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx RPXlite
wdenk7ebf7442002-11-02 23:17:16 +0000995
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100996RPXlite_DW_64_config \
997RPXlite_DW_LCD_config \
998RPXlite_DW_64_LCD_config \
wdenke63c8ee2004-06-09 21:04:48 +0000999RPXlite_DW_NVRAM_config \
Wolfgang Denkf9301e12008-03-04 14:58:31 +01001000RPXlite_DW_NVRAM_64_config \
wdenke63c8ee2004-06-09 21:04:48 +00001001RPXlite_DW_NVRAM_LCD_config \
Wolfgang Denkf9301e12008-03-04 14:58:31 +01001002RPXlite_DW_NVRAM_64_LCD_config \
Wolfgang Denk05bf4912007-10-21 01:01:17 +02001003RPXlite_DW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001004 @mkdir -p $(obj)include
wdenke63c8ee2004-06-09 21:04:48 +00001005 @[ -z "$(findstring _64,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001006 echo "#define RPXlite_64MHz" >>$(obj)include/config.h
wdenke63c8ee2004-06-09 21:04:48 +00001007 @[ -z "$(findstring _LCD,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01001008 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001009 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +00001010 }
1011 @[ -z "$(findstring _NVRAM,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001012 echo "#define CONFIG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h
1013 @$(MKCONFIG) -n $@ -a RPXlite_DW powerpc mpc8xx RPXlite_dw
wdenke63c8ee2004-06-09 21:04:48 +00001014
wdenk73a8b272003-06-05 19:27:42 +00001015rmu_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001016 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx rmu
wdenk73a8b272003-06-05 19:27:42 +00001017
wdenk7ebf7442002-11-02 23:17:16 +00001018RRvision_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001019 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +00001020
1021RRvision_LCD_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001022 @mkdir -p $(obj)include
1023 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1024 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
Stefan Roesea47a12b2010-04-15 16:07:28 +02001025 @$(MKCONFIG) -a RRvision powerpc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +00001026
1027SM850_config : unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001028 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx tqm8xx tqc
wdenk7ebf7442002-11-02 23:17:16 +00001029
Jean-Christophe PLAGNIOL-VILLARD91c82072008-03-02 16:12:31 +01001030spc1920_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001031 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx spc1920
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +02001032
wdenk7ebf7442002-11-02 23:17:16 +00001033SPD823TS_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001034 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx spd8xx
wdenk7ebf7442002-11-02 23:17:16 +00001035
Wolfgang Denk6bdf4302005-08-15 15:55:00 +02001036stxxtc_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001037 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx stxxtc stx
Wolfgang Denk6bdf4302005-08-15 15:55:00 +02001038
wdenkdc7c9a12003-03-26 06:55:25 +00001039svm_sc8xx_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001040 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx svm_sc8xx
wdenkdc7c9a12003-03-26 06:55:25 +00001041
wdenk7ebf7442002-11-02 23:17:16 +00001042SXNI855T_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001043 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx sixnet
wdenk7ebf7442002-11-02 23:17:16 +00001044
wdenkdb2f721f2003-03-06 00:58:30 +00001045# EMK MPC8xx based modules
1046TOP860_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001047 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx top860 emk
wdenkdb2f721f2003-03-06 00:58:30 +00001048
wdenk7ebf7442002-11-02 23:17:16 +00001049# Play some tricks for configuration selection
wdenke9132ea2004-04-24 23:23:30 +00001050# Only 855 and 860 boards may come with FEC
1051# and only 823 boards may have LCD support
1052xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +00001053
1054FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +00001055FPS860L_config \
wdenkf12e5682003-07-07 20:07:54 +00001056NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +00001057TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +00001058TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +00001059TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +00001060TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +00001061TQM860L_config \
wdenkd126bfb2003-04-10 11:18:18 +00001062TQM862L_config \
wdenkae3af052003-08-07 22:18:11 +00001063TQM823M_config \
wdenkae3af052003-08-07 22:18:11 +00001064TQM850M_config \
wdenkf12e5682003-07-07 20:07:54 +00001065TQM855M_config \
wdenkf12e5682003-07-07 20:07:54 +00001066TQM860M_config \
wdenkf12e5682003-07-07 20:07:54 +00001067TQM862M_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +02001068TQM866M_config \
Markus Klotzbuecher090eb732006-07-12 15:26:01 +02001069TQM885D_config \
Guennadi Liakhovetskiefc6f442008-01-10 17:59:07 +01001070TK885D_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +02001071virtlab2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001072 @mkdir -p $(obj)include
wdenk7ebf7442002-11-02 23:17:16 +00001073 @[ -z "$(findstring _LCD,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001074 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
1075 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001076 }
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001077 @$(MKCONFIG) -n $@ -a $(call xtract_8xx,$@) powerpc mpc8xx tqm8xx tqc
wdenk7ebf7442002-11-02 23:17:16 +00001078
1079TTTech_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001080 @mkdir -p $(obj)include
1081 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1082 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
Stefan Roesea47a12b2010-04-15 16:07:28 +02001083 @$(MKCONFIG) -a TQM823L powerpc mpc8xx tqm8xx tqc
wdenk7ebf7442002-11-02 23:17:16 +00001084
wdenkec0aee72004-12-19 09:58:11 +00001085uc100_config : unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001086 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx uc100
wdenkf7d15722004-12-18 22:35:43 +00001087
wdenk608c9142003-01-13 23:54:46 +00001088v37_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001089 @mkdir -p $(obj)include
1090 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1091 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h
Stefan Roesea47a12b2010-04-15 16:07:28 +02001092 @$(MKCONFIG) $(@:_config=) powerpc mpc8xx v37
wdenk608c9142003-01-13 23:54:46 +00001093
dzu91e940d2003-09-25 22:32:40 +00001094wtk_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001095 @mkdir -p $(obj)include
1096 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1097 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h
Stefan Roesea47a12b2010-04-15 16:07:28 +02001098 @$(MKCONFIG) -a TQM823L powerpc mpc8xx tqm8xx tqc
dzu91e940d2003-09-25 22:32:40 +00001099
wdenk7ebf7442002-11-02 23:17:16 +00001100#########################################################################
1101## PPC4xx Systems
1102#########################################################################
wdenke55ca7e2004-07-01 21:40:08 +00001103xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001104
Stefan Roese16c0cc12007-03-21 13:39:57 +01001105acadia_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001106 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx acadia amcc
Stefan Roese16c0cc12007-03-21 13:39:57 +01001107
Stefan Roesec440bfe2007-06-06 11:42:13 +02001108acadia_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001109 @mkdir -p $(obj)include $(obj)board/amcc/acadia
1110 @mkdir -p $(obj)nand_spl/board/amcc/acadia
Stefan Roesec440bfe2007-06-06 11:42:13 +02001111 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roesea47a12b2010-04-15 16:07:28 +02001112 @$(MKCONFIG) -n $@ -a acadia powerpc ppc4xx acadia amcc
Stefan Roesec440bfe2007-06-06 11:42:13 +02001113 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/acadia/config.tmp
1114 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1115
wdenk7ebf7442002-11-02 23:17:16 +00001116ADCIOP_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001117 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx adciop esd
wdenk7ebf7442002-11-02 23:17:16 +00001118
Stefan Roese899620c2006-08-15 14:22:35 +02001119alpr_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001120 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx alpr prodrive
Stefan Roese899620c2006-08-15 14:22:35 +02001121
Wolfgang Denk7521af12005-10-09 01:04:33 +02001122AP1000_config:unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001123 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx ap1000 amirix
Wolfgang Denk7521af12005-10-09 01:04:33 +02001124
stroesec419d1d2004-12-16 18:44:40 +00001125APC405_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001126 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx apc405 esd
stroesec419d1d2004-12-16 18:44:40 +00001127
wdenk7ebf7442002-11-02 23:17:16 +00001128AR405_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001129 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx ar405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001130
stroese549826e2003-05-23 11:41:44 +00001131ASH405_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001132 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx ash405 esd
stroese549826e2003-05-23 11:41:44 +00001133
Stefan Roese8a316c92005-08-01 16:49:12 +02001134bamboo_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001135 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx bamboo amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001136
Stefan Roesecf959c72007-06-01 15:27:11 +02001137bamboo_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001138 @mkdir -p $(obj)include $(obj)board/amcc/bamboo
1139 @mkdir -p $(obj)nand_spl/board/amcc/bamboo
Stefan Roesecf959c72007-06-01 15:27:11 +02001140 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roesea47a12b2010-04-15 16:07:28 +02001141 @$(MKCONFIG) -n $@ -a bamboo powerpc ppc4xx bamboo amcc
Stefan Roesecf959c72007-06-01 15:27:11 +02001142 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/bamboo/config.tmp
1143 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1144
Stefan Roese8a316c92005-08-01 16:49:12 +02001145bubinga_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001146 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx bubinga amcc
stroese549826e2003-05-23 11:41:44 +00001147
wdenk7ebf7442002-11-02 23:17:16 +00001148CANBT_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001149 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx canbt esd
wdenk7ebf7442002-11-02 23:17:16 +00001150
Adam Grahamf09f09d2008-10-08 10:12:53 -07001151# Arches, Canyonlands & Glacier use different U-Boot images
1152arches_config \
Stefan Roese4c9e8552008-03-19 16:20:49 +01001153canyonlands_config \
1154glacier_config: unconfig
1155 @mkdir -p $(obj)include
1156 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1157 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
Stefan Roesea47a12b2010-04-15 16:07:28 +02001158 @$(MKCONFIG) -n $@ -a canyonlands powerpc ppc4xx canyonlands amcc
Stefan Roesec813f1f2008-03-11 16:53:00 +01001159
Stefan Roesefe7c0db2008-04-08 10:33:27 +02001160canyonlands_nand_config \
1161glacier_nand_config: unconfig
Stefan Roese71665eb2008-03-03 17:27:02 +01001162 @mkdir -p $(obj)include $(obj)board/amcc/canyonlands
1163 @mkdir -p $(obj)nand_spl/board/amcc/canyonlands
1164 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roesefe7c0db2008-04-08 10:33:27 +02001165 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_nand_config=)) | \
1166 tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h
Stefan Roese71665eb2008-03-03 17:27:02 +01001167 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/canyonlands/config.tmp
1168 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001169 @$(MKCONFIG) -n $@ -a canyonlands powerpc ppc4xx canyonlands amcc
Stefan Roese71665eb2008-03-03 17:27:02 +01001170
wdenk1d6f9722004-09-09 17:44:35 +00001171CATcenter_config \
1172CATcenter_25_config \
1173CATcenter_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001174 @mkdir -p $(obj)include
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001175 @echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h
1176 @echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001177 @[ -z "$(findstring _25,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001178 echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001179 @[ -z "$(findstring _33,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001180 echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h
1181 @$(MKCONFIG) -n $@ -a $(call xtract_4xx,$@) powerpc ppc4xx PPChameleonEVB dave
wdenk10767cc2004-05-13 13:23:58 +00001182
Wolfgang Denk699f0512008-07-15 22:22:44 +02001183CMS700_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001184 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx cms700 esd
Wolfgang Denk699f0512008-07-15 22:22:44 +02001185
Stefan Roese7644f162005-09-22 09:16:57 +02001186CPCI2DP_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001187 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx cpci2dp esd
Stefan Roese7644f162005-09-22 09:16:57 +02001188
Matthias Fuchs1951f842008-12-10 14:41:25 +01001189CPCI405_config \
Matthias Fuchs767f9152008-09-05 15:34:02 +02001190CPCI4052_config \
stroesec419d1d2004-12-16 18:44:40 +00001191CPCI405DT_config \
stroese549826e2003-05-23 11:41:44 +00001192CPCI405AB_config: unconfig
Matthias Fuchsdd794322008-09-09 09:50:24 +02001193 @mkdir -p $(obj)board/esd/cpci405
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001194 @$(MKCONFIG) -n $@ $(@:_config=) powerpc ppc4xx cpci405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001195
wdenk7ebf7442002-11-02 23:17:16 +00001196CPCIISER4_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001197 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx cpciiser4 esd
wdenk7ebf7442002-11-02 23:17:16 +00001198
wdenkdb01a2e2004-04-15 23:14:49 +00001199CRAYL1_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001200 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx L1 cray
wdenk7ebf7442002-11-02 23:17:16 +00001201
wdenkcd0a9de2004-02-23 20:48:38 +00001202csb272_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001203 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx csb272
wdenkcd0a9de2004-02-23 20:48:38 +00001204
wdenkaa245092004-06-09 12:47:02 +00001205csb472_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001206 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx csb472
wdenkaa245092004-06-09 12:47:02 +00001207
wdenk7ebf7442002-11-02 23:17:16 +00001208DASA_SIM_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001209 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx dasa_sim esd
wdenk7ebf7442002-11-02 23:17:16 +00001210
Dirk Eibachb209a112009-07-17 14:16:40 +02001211dlvision_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001212 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx dlvision gdsys
Dirk Eibachb209a112009-07-17 14:16:40 +02001213
stroese72cd5aa2003-09-12 08:57:15 +00001214DP405_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001215 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx dp405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001216
wdenk7ebf7442002-11-02 23:17:16 +00001217DU405_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001218 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx du405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001219
Matthias Fuchs1a3ac862008-01-17 10:53:08 +01001220DU440_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001221 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx du440 esd
Matthias Fuchs1a3ac862008-01-17 10:53:08 +01001222
Stefan Roese8a316c92005-08-01 16:49:12 +02001223ebony_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001224 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +00001225
wdenkdb01a2e2004-04-15 23:14:49 +00001226ERIC_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001227 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx eric
wdenk7ebf7442002-11-02 23:17:16 +00001228
Georg Schardt5deb8022008-10-24 13:51:52 +02001229fx12mm_flash_config: unconfig
1230 @mkdir -p $(obj)include $(obj)board/xilinx/ppc405-generic
1231 @mkdir -p $(obj)include $(obj)board/avnet/fx12mm
1232 @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc405-generic/u-boot-rom.lds"\
1233 > $(obj)board/avnet/fx12mm/config.tmp
1234 @echo "TEXT_BASE := 0xFFCB0000" \
1235 >> $(obj)board/avnet/fx12mm/config.tmp
Stefan Roesea47a12b2010-04-15 16:07:28 +02001236 @$(MKCONFIG) fx12mm powerpc ppc4xx fx12mm avnet
Georg Schardt5deb8022008-10-24 13:51:52 +02001237
1238fx12mm_config: unconfig
1239 @mkdir -p $(obj)include $(obj)board/xilinx/ppc405-generic
1240 @mkdir -p $(obj)include $(obj)board/avnet/fx12mm
1241 @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc405-generic/u-boot-ram.lds"\
1242 > $(obj)board/avnet/fx12mm/config.tmp
1243 @echo "TEXT_BASE := 0x03000000" \
1244 >> $(obj)board/avnet/fx12mm/config.tmp
Stefan Roesea47a12b2010-04-15 16:07:28 +02001245 @$(MKCONFIG) fx12mm powerpc ppc4xx fx12mm avnet
Georg Schardt5deb8022008-10-24 13:51:52 +02001246
stroesec419d1d2004-12-16 18:44:40 +00001247G2000_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001248 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx g2000
stroesec419d1d2004-12-16 18:44:40 +00001249
Dirk Eibach89b86192008-12-09 13:12:40 +01001250gdppc440etx_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001251 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx gdppc440etx gdsys
Dirk Eibach89b86192008-12-09 13:12:40 +01001252
Niklaus Gigerac982ea2007-07-27 11:28:44 +02001253hcu4_config: unconfig
Niklaus Gigerb7f61932008-02-05 10:26:42 +01001254 @mkdir -p $(obj)board/netstal/common
Stefan Roesea47a12b2010-04-15 16:07:28 +02001255 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx hcu4 netstal
Niklaus Gigerac982ea2007-07-27 11:28:44 +02001256
1257hcu5_config: unconfig
Niklaus Gigerb7f61932008-02-05 10:26:42 +01001258 @mkdir -p $(obj)board/netstal/common
Stefan Roesea47a12b2010-04-15 16:07:28 +02001259 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx hcu5 netstal
Niklaus Gigerac982ea2007-07-27 11:28:44 +02001260
stroesec419d1d2004-12-16 18:44:40 +00001261HH405_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001262 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx hh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001263
stroese72cd5aa2003-09-12 08:57:15 +00001264HUB405_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001265 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx hub405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001266
Stefan Roese029faf32010-04-27 11:37:28 +02001267icon_config: unconfig
1268 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx icon mosaixtech
1269
Dirk Eibach4c188362009-09-09 12:36:07 +02001270# Compact-Center(codename intip) & DevCon-Center use different U-Boot images
1271intip_config \
1272devconcenter_config: unconfig
1273 @mkdir -p $(obj)include
1274 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1275 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
Stefan Roesea47a12b2010-04-15 16:07:28 +02001276 @$(MKCONFIG) -n $@ -a intip powerpc ppc4xx intip gdsys
Dirk Eibach4c188362009-09-09 12:36:07 +02001277
wdenkdb01a2e2004-04-15 23:14:49 +00001278JSE_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001279 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx jse
wdenkdb01a2e2004-04-15 23:14:49 +00001280
Stefan Roeseb79316f2005-08-15 12:31:23 +02001281KAREF_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001282 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx karef sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001283
Stefan Roese4745aca2007-02-20 10:57:08 +01001284katmai_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001285 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx katmai amcc
Stefan Roese4745aca2007-02-20 10:57:08 +01001286
Stefan Roese353f2682007-10-23 10:10:08 +02001287# Kilauea & Haleakala images are identical (recognized via PVR)
1288kilauea_config \
1289haleakala_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001290 @$(MKCONFIG) -n $@ -a kilauea powerpc ppc4xx kilauea amcc
Stefan Roese566806c2007-10-05 17:11:30 +02001291
Stefan Roese3d6cb3b2007-11-03 12:08:28 +01001292kilauea_nand_config \
1293haleakala_nand_config: unconfig
1294 @mkdir -p $(obj)include $(obj)board/amcc/kilauea
1295 @mkdir -p $(obj)nand_spl/board/amcc/kilauea
1296 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roese3d6cb3b2007-11-03 12:08:28 +01001297 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/kilauea/config.tmp
1298 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001299 @$(MKCONFIG) -n $@ -a kilauea powerpc ppc4xx kilauea amcc
Stefan Roese3d6cb3b2007-11-03 12:08:28 +01001300
Larry Johnsonc591dff2007-12-27 11:28:51 -05001301korat_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001302 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx korat
Larry Johnsonc591dff2007-12-27 11:28:51 -05001303
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001304luan_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001305 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx luan amcc
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001306
Stefan Roeseb765ffb2007-06-15 08:18:01 +02001307lwmon5_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001308 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx lwmon5
Stefan Roeseb765ffb2007-06-15 08:18:01 +02001309
Stefan Roese211ea912007-10-22 07:34:34 +02001310makalu_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001311 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx makalu amcc
Stefan Roese211ea912007-10-22 07:34:34 +02001312
Niklaus Gigerb05f3542008-02-25 18:46:41 +01001313mcu25_config: unconfig
1314 @mkdir -p $(obj)board/netstal/common
Stefan Roesea47a12b2010-04-15 16:07:28 +02001315 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx mcu25 netstal
Niklaus Gigerb05f3542008-02-25 18:46:41 +01001316
Stefan Roeseb79316f2005-08-15 12:31:23 +02001317METROBOX_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001318 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx metrobox sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001319
wdenkdb01a2e2004-04-15 23:14:49 +00001320MIP405_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001321 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx mip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001322
wdenkdb01a2e2004-04-15 23:14:49 +00001323MIP405T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001324 @mkdir -p $(obj)include
1325 @echo "#define CONFIG_MIP405T" >$(obj)include/config.h
Wolfgang Denkae6d1052008-01-13 00:59:21 +01001326 @$(XECHO) "Enable subset config for MIP405T"
Stefan Roesea47a12b2010-04-15 16:07:28 +02001327 @$(MKCONFIG) -a MIP405 powerpc ppc4xx mip405 mpl
wdenkf3e0de62003-06-04 15:05:30 +00001328
wdenkdb01a2e2004-04-15 23:14:49 +00001329ML2_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001330 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx ml2
wdenk7ebf7442002-11-02 23:17:16 +00001331
Ricardo Ribalda Delgadoe07f4a82008-09-01 13:09:39 -04001332ml507_flash_config: unconfig
Ricardo Ribalda Delgado880f6a52008-09-09 10:00:33 -04001333 @mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic
Ricardo Ribalda Delgado01a00432008-07-21 20:30:07 +02001334 @mkdir -p $(obj)include $(obj)board/xilinx/ml507
Ricardo Ribalda Delgado880f6a52008-09-09 10:00:33 -04001335 @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-rom.lds"\
1336 > $(obj)board/xilinx/ml507/config.tmp
1337 @echo "TEXT_BASE := 0xFE360000" \
1338 >> $(obj)board/xilinx/ml507/config.tmp
Stefan Roesea47a12b2010-04-15 16:07:28 +02001339 @$(MKCONFIG) ml507 powerpc ppc4xx ml507 xilinx
Ricardo Ribalda Delgado01a00432008-07-21 20:30:07 +02001340
Ricardo Ribalda Delgadoe07f4a82008-09-01 13:09:39 -04001341ml507_config: unconfig
Ricardo Ribalda Delgado880f6a52008-09-09 10:00:33 -04001342 @mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic
Ricardo Ribalda Delgado01a00432008-07-21 20:30:07 +02001343 @mkdir -p $(obj)include $(obj)board/xilinx/ml507
Ricardo Ribalda Delgado880f6a52008-09-09 10:00:33 -04001344 @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-ram.lds"\
1345 > $(obj)board/xilinx/ml507/config.tmp
1346 @echo "TEXT_BASE := 0x04000000" \
1347 >> $(obj)board/xilinx/ml507/config.tmp
Stefan Roesea47a12b2010-04-15 16:07:28 +02001348 @$(MKCONFIG) ml507 powerpc ppc4xx ml507 xilinx
Ricardo Ribalda Delgado086511f2008-07-17 12:47:09 +02001349
Dirk Eibachd7b26d52008-10-08 15:37:50 +02001350neo_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001351 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx neo gdsys
Dirk Eibachd7b26d52008-10-08 15:37:50 +02001352
Stefan Roese8a316c92005-08-01 16:49:12 +02001353ocotea_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001354 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx ocotea amcc
wdenk0e6d7982004-03-14 00:07:33 +00001355
wdenk7ebf7442002-11-02 23:17:16 +00001356OCRTC_config \
1357ORSG_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001358 @$(MKCONFIG) -n $@ $(@:_config=) powerpc ppc4xx ocrtc esd
wdenk7ebf7442002-11-02 23:17:16 +00001359
Stefan Roese5568e612005-11-22 13:20:42 +01001360p3p440_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001361 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx p3p440 prodrive
Stefan Roese5568e612005-11-22 13:20:42 +01001362
wdenk7ebf7442002-11-02 23:17:16 +00001363PCI405_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001364 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx pci405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001365
Stefan Roesea4c8d132006-06-02 16:18:04 +02001366pcs440ep_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001367 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx pcs440ep
Stefan Roesea4c8d132006-06-02 16:18:04 +02001368
wdenkdb01a2e2004-04-15 23:14:49 +00001369PIP405_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001370 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx pip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001371
stroese72cd5aa2003-09-12 08:57:15 +00001372PLU405_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001373 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx plu405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001374
stroese549826e2003-05-23 11:41:44 +00001375PMC405_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001376 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx pmc405 esd
stroese549826e2003-05-23 11:41:44 +00001377
Matthias Fuchs99d8b232009-07-22 13:56:21 +02001378PMC405DE_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001379 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx pmc405de esd
Matthias Fuchs99d8b232009-07-22 13:56:21 +02001380
Matthias Fuchs8ba132c2007-12-28 17:07:24 +01001381PMC440_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001382 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx pmc440 esd
Matthias Fuchs8ba132c2007-12-28 17:07:24 +01001383
wdenk281e00a2004-08-01 22:48:16 +00001384PPChameleonEVB_config \
wdenke55ca7e2004-07-01 21:40:08 +00001385PPChameleonEVB_BA_25_config \
1386PPChameleonEVB_ME_25_config \
1387PPChameleonEVB_HI_25_config \
1388PPChameleonEVB_BA_33_config \
1389PPChameleonEVB_ME_33_config \
1390PPChameleonEVB_HI_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001391 @mkdir -p $(obj)include
wdenk1d6f9722004-09-09 17:44:35 +00001392 @[ -z "$(findstring EVB_BA,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001393 echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001394 @[ -z "$(findstring EVB_ME,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001395 echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001396 @[ -z "$(findstring EVB_HI,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001397 echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h
wdenke55ca7e2004-07-01 21:40:08 +00001398 @[ -z "$(findstring _25,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001399 echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h
wdenke55ca7e2004-07-01 21:40:08 +00001400 @[ -z "$(findstring _33,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001401 echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h
1402 @$(MKCONFIG) -n $@ -a $(call xtract_4xx,$@) powerpc ppc4xx PPChameleonEVB dave
wdenk12f34242003-09-02 22:48:03 +00001403
Gary Jennejohn73ccb342008-04-28 14:04:32 +02001404quad100hd_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001405 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx quad100hd
Gary Jennejohn73ccb342008-04-28 14:04:32 +02001406
Stefan Roese11188d52008-07-17 10:40:51 +02001407redwood_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001408 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx redwood amcc
Stefan Roese11188d52008-07-17 10:40:51 +02001409
wdenk652a10c2005-01-09 23:48:14 +00001410sbc405_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001411 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx sbc405
wdenk652a10c2005-01-09 23:48:14 +00001412
Wolfgang Denk699f0512008-07-15 22:22:44 +02001413sc3_config:unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001414 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx sc3
Wolfgang Denk699f0512008-07-15 22:22:44 +02001415
Stefan Roese430f1b02007-03-28 15:03:16 +02001416sequoia_config \
1417rainier_config: unconfig
1418 @mkdir -p $(obj)include
1419 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1420 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
Stefan Roesea47a12b2010-04-15 16:07:28 +02001421 @$(MKCONFIG) -n $@ -a sequoia powerpc ppc4xx sequoia amcc
Stefan Roese887e2ec2006-09-07 11:51:23 +02001422
Stefan Roese430f1b02007-03-28 15:03:16 +02001423sequoia_nand_config \
1424rainier_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001425 @mkdir -p $(obj)include $(obj)board/amcc/sequoia
1426 @mkdir -p $(obj)nand_spl/board/amcc/sequoia
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001427 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roese430f1b02007-03-28 15:03:16 +02001428 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1429 tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001430 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1431 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001432 @$(MKCONFIG) -n $@ -a sequoia powerpc ppc4xx sequoia amcc
stroese72cd5aa2003-09-12 08:57:15 +00001433
Stefan Roesed8731332009-05-11 13:46:14 +02001434sequoia_ramboot_config \
1435rainier_ramboot_config: unconfig
1436 @mkdir -p $(obj)include $(obj)board/amcc/sequoia
1437 @echo "#define CONFIG_SYS_RAMBOOT" > $(obj)include/config.h
1438 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1439 tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h
Stefan Roesed8731332009-05-11 13:46:14 +02001440 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1441 @echo "LDSCRIPT = board/amcc/sequoia/u-boot-ram.lds" >> \
1442 $(obj)board/amcc/sequoia/config.tmp
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001443 @$(MKCONFIG) -n $@ -a sequoia powerpc ppc4xx sequoia amcc
Stefan Roesed8731332009-05-11 13:46:14 +02001444
John Otkend4024bb2007-07-26 17:49:11 +02001445taihu_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001446 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx taihu amcc
John Otkend4024bb2007-07-26 17:49:11 +02001447
Stefan Roese5fb692c2007-01-18 10:25:34 +01001448taishan_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001449 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx taishan amcc
Stefan Roese5fb692c2007-01-18 10:25:34 +01001450
Ricardo Ribalda Delgadoe07f4a82008-09-01 13:09:39 -04001451v5fx30teval_config: unconfig
Ricardo Ribalda Delgado880f6a52008-09-09 10:00:33 -04001452 @mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic
Ricardo Ribalda Delgadoe07f4a82008-09-01 13:09:39 -04001453 @mkdir -p $(obj)include $(obj)board/avnet/v5fx30teval
Ricardo Ribalda Delgado880f6a52008-09-09 10:00:33 -04001454 @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-ram.lds"\
1455 > $(obj)board/avnet/v5fx30teval/config.tmp
1456 @echo "TEXT_BASE := 0x03000000" \
1457 >> $(obj)board/avnet/v5fx30teval/config.tmp
Stefan Roesea47a12b2010-04-15 16:07:28 +02001458 @$(MKCONFIG) v5fx30teval powerpc ppc4xx v5fx30teval avnet
Ricardo Ribalda Delgadoe07f4a82008-09-01 13:09:39 -04001459
1460v5fx30teval_flash_config: unconfig
Ricardo Ribalda Delgado880f6a52008-09-09 10:00:33 -04001461 @mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic
Ricardo Ribalda Delgadoe07f4a82008-09-01 13:09:39 -04001462 @mkdir -p $(obj)include $(obj)board/avnet/v5fx30teval
Ricardo Ribalda Delgado880f6a52008-09-09 10:00:33 -04001463 @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-rom.lds"\
Ricardo Ribalda Delgado2bec4982008-09-11 19:41:25 -04001464 > $(obj)board/avnet/v5fx30teval/config.tmp
Ricardo Ribalda Delgado880f6a52008-09-09 10:00:33 -04001465 @echo "TEXT_BASE := 0xFF1C0000" \
Ricardo Ribalda Delgado2bec4982008-09-11 19:41:25 -04001466 >> $(obj)board/avnet/v5fx30teval/config.tmp
Stefan Roesea47a12b2010-04-15 16:07:28 +02001467 @$(MKCONFIG) v5fx30teval powerpc ppc4xx v5fx30teval avnet
Ricardo Ribalda Delgadoe07f4a82008-09-01 13:09:39 -04001468
wdenk7ebf7442002-11-02 23:17:16 +00001469VOH405_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001470 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx voh405 esd
wdenk3bac3512003-03-12 10:41:04 +00001471
stroesec419d1d2004-12-16 18:44:40 +00001472VOM405_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001473 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx vom405 esd
stroesec419d1d2004-12-16 18:44:40 +00001474
wdenk7ebf7442002-11-02 23:17:16 +00001475W7OLMC_config \
1476W7OLMG_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001477 @$(MKCONFIG) -n $@ $(@:_config=) powerpc ppc4xx w7o
wdenk7ebf7442002-11-02 23:17:16 +00001478
Stefan Roese430f1b02007-03-28 15:03:16 +02001479# Walnut & Sycamore images are identical (recognized via PVR)
1480walnut_config \
1481sycamore_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001482 @$(MKCONFIG) -n $@ -a walnut powerpc ppc4xx walnut amcc
wdenk7ebf7442002-11-02 23:17:16 +00001483
stroesec419d1d2004-12-16 18:44:40 +00001484WUH405_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001485 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx wuh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001486
Ricardo Ribalda Delgado1f4d5322008-10-21 18:29:46 +02001487xilinx-ppc405-generic_flash_config: unconfig
1488 @mkdir -p $(obj)include $(obj)board/xilinx/ppc405-generic
1489 @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc405-generic/u-boot-rom.lds"\
1490 > $(obj)board/xilinx/ppc405-generic/config.tmp
1491 @echo "TEXT_BASE := 0xFE360000" \
1492 >> $(obj)board/xilinx/ppc405-generic/config.tmp
Stefan Roesea47a12b2010-04-15 16:07:28 +02001493 @$(MKCONFIG) xilinx-ppc405-generic powerpc ppc4xx ppc405-generic xilinx
Ricardo Ribalda Delgado1f4d5322008-10-21 18:29:46 +02001494
1495xilinx-ppc405-generic_config: unconfig
1496 @mkdir -p $(obj)include $(obj)board/xilinx/ppc405-generic
1497 @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc405-generic/u-boot-ram.lds"\
1498 > $(obj)board/xilinx/ppc405-generic/config.tmp
1499 @echo "TEXT_BASE := 0x04000000" \
1500 >> $(obj)board/xilinx/ppc405-generic/config.tmp
Stefan Roesea47a12b2010-04-15 16:07:28 +02001501 @$(MKCONFIG) xilinx-ppc405-generic powerpc ppc4xx ppc405-generic xilinx
Ricardo Ribalda Delgado1f4d5322008-10-21 18:29:46 +02001502
Ricardo Ribalda Delgadoe07f4a82008-09-01 13:09:39 -04001503xilinx-ppc440-generic_flash_config: unconfig
Ricardo Ribalda Delgado880f6a52008-09-09 10:00:33 -04001504 @mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic
1505 @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-rom.lds"\
1506 > $(obj)board/xilinx/ppc440-generic/config.tmp
1507 @echo "TEXT_BASE := 0xFE360000" \
1508 >> $(obj)board/xilinx/ppc440-generic/config.tmp
Stefan Roesea47a12b2010-04-15 16:07:28 +02001509 @$(MKCONFIG) xilinx-ppc440-generic powerpc ppc4xx ppc440-generic xilinx
Ricardo Ribalda Delgadoe07f4a82008-09-01 13:09:39 -04001510
1511xilinx-ppc440-generic_config: unconfig
Ricardo Ribalda Delgado880f6a52008-09-09 10:00:33 -04001512 @mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic
1513 @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-ram.lds"\
1514 > $(obj)board/xilinx/ppc440-generic/config.tmp
1515 @echo "TEXT_BASE := 0x04000000" \
1516 >> $(obj)board/xilinx/ppc440-generic/config.tmp
Stefan Roesea47a12b2010-04-15 16:07:28 +02001517 @$(MKCONFIG) xilinx-ppc440-generic powerpc ppc4xx ppc440-generic xilinx
Ricardo Ribalda Delgadoe07f4a82008-09-01 13:09:39 -04001518
Peter Tyser10c1b212009-07-17 19:01:16 -05001519XPEDITE1000_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001520 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx xpedite1000 xes
wdenkba56f622004-02-06 23:19:44 +00001521
Stefan Roese430f1b02007-03-28 15:03:16 +02001522yosemite_config \
1523yellowstone_config: unconfig
Stefan Roese700200c2007-01-30 17:04:19 +01001524 @mkdir -p $(obj)include
Stefan Roese430f1b02007-03-28 15:03:16 +02001525 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1526 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
Stefan Roesea47a12b2010-04-15 16:07:28 +02001527 @$(MKCONFIG) -n $@ -a yosemite powerpc ppc4xx yosemite amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001528
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001529yucca_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001530 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx yucca amcc
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001531
Stefan Roese779e9752007-08-14 14:44:41 +02001532zeus_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001533 @$(MKCONFIG) $(@:_config=) powerpc ppc4xx zeus
Stefan Roese779e9752007-08-14 14:44:41 +02001534
wdenk7ebf7442002-11-02 23:17:16 +00001535#########################################################################
wdenk983fda82004-10-28 00:09:35 +00001536## MPC8220 Systems
1537#########################################################################
Wolfgang Denkdc17fb62005-08-03 22:32:02 +02001538
1539Alaska8220_config \
1540Yukon8220_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001541 @$(MKCONFIG) -n $@ $(@:_config=) powerpc mpc8220 alaska
wdenk983fda82004-10-28 00:09:35 +00001542
wdenk12b43d52005-04-05 21:57:18 +00001543sorcery_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001544 @$(MKCONFIG) $(@:_config=) powerpc mpc8220 sorcery
wdenk12b43d52005-04-05 21:57:18 +00001545
wdenk983fda82004-10-28 00:09:35 +00001546#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001547## MPC824x Systems
1548#########################################################################
wdenkefa329c2004-03-23 20:18:25 +00001549xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001550
wdenk03329902003-06-20 22:36:30 +00001551A3000_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001552 @$(MKCONFIG) $(@:_config=) powerpc mpc824x a3000
wdenk03329902003-06-20 22:36:30 +00001553
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001554barco_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001555 @$(MKCONFIG) $(@:_config=) powerpc mpc824x barco
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001556
wdenk7ebf7442002-11-02 23:17:16 +00001557BMW_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001558 @$(MKCONFIG) $(@:_config=) powerpc mpc824x bmw
wdenk7ebf7442002-11-02 23:17:16 +00001559
wdenk3bac3512003-03-12 10:41:04 +00001560CPC45_config \
1561CPC45_ROMBOOT_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001562 @mkdir -p $(obj)include ; \
wdenk3bac3512003-03-12 10:41:04 +00001563 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001564 echo "CONFIG_BOOT_ROM = y" >> $(obj)include/config.mk ; \
wdenk3bac3512003-03-12 10:41:04 +00001565 else \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001566 echo "CONFIG_BOOT_ROM = n" >> $(obj)include/config.mk ; \
wdenk3bac3512003-03-12 10:41:04 +00001567 fi; \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001568 echo "export CONFIG_BOOT_ROM" >> $(obj)include/config.mk;
1569 @$(MKCONFIG) -n $@ $(call xtract_82xx,$@) powerpc mpc824x cpc45
wdenk3bac3512003-03-12 10:41:04 +00001570
wdenk7ebf7442002-11-02 23:17:16 +00001571CU824_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001572 @$(MKCONFIG) $(@:_config=) powerpc mpc824x cu824
wdenk7ebf7442002-11-02 23:17:16 +00001573
wdenk7abf0c52004-04-18 21:45:42 +00001574debris_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001575 @$(MKCONFIG) $(@:_config=) powerpc mpc824x debris etin
wdenk7abf0c52004-04-18 21:45:42 +00001576
wdenk80885a92004-02-26 23:46:20 +00001577eXalion_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001578 @$(MKCONFIG) $(@:_config=) powerpc mpc824x eXalion
wdenk80885a92004-02-26 23:46:20 +00001579
wdenk756f5862005-04-03 15:51:42 +00001580HIDDEN_DRAGON_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001581 @$(MKCONFIG) $(@:_config=) powerpc mpc824x hidden_dragon
wdenk756f5862005-04-03 15:51:42 +00001582
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001583kvme080_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001584 @$(MKCONFIG) $(@:_config=) powerpc mpc824x kvme080 etin
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001585
Guennadi Liakhovetski61525f22008-03-31 01:32:15 +02001586# HDLAN is broken ATM. Should be fixed as soon as hardware is available and as
1587# time permits.
1588#linkstation_HDLAN_config \
1589# Remove this line when HDLAN is fixed
1590linkstation_HGLAN_config: unconfig
1591 @mkdir -p $(obj)include
1592 @case $@ in \
1593 *HGLAN*) echo "#define CONFIG_HGLAN 1" >$(obj)include/config.h; ;; \
1594 *HDLAN*) echo "#define CONFIG_HLAN 1" >$(obj)include/config.h; ;; \
1595 esac
Stefan Roesea47a12b2010-04-15 16:07:28 +02001596 @$(MKCONFIG) -n $@ -a linkstation powerpc mpc824x linkstation
Guennadi Liakhovetski61525f22008-03-31 01:32:15 +02001597
wdenk7ebf7442002-11-02 23:17:16 +00001598MOUSSE_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001599 @$(MKCONFIG) $(@:_config=) powerpc mpc824x mousse
wdenk7ebf7442002-11-02 23:17:16 +00001600
1601MUSENKI_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001602 @$(MKCONFIG) $(@:_config=) powerpc mpc824x musenki
wdenk7ebf7442002-11-02 23:17:16 +00001603
wdenkb4676a22003-12-07 19:24:00 +00001604MVBLUE_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001605 @$(MKCONFIG) $(@:_config=) powerpc mpc824x mvblue
wdenkb4676a22003-12-07 19:24:00 +00001606
wdenk7ebf7442002-11-02 23:17:16 +00001607OXC_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001608 @$(MKCONFIG) $(@:_config=) powerpc mpc824x oxc
wdenk7ebf7442002-11-02 23:17:16 +00001609
1610PN62_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001611 @$(MKCONFIG) $(@:_config=) powerpc mpc824x pn62
wdenk7ebf7442002-11-02 23:17:16 +00001612
1613Sandpoint8240_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001614 @$(MKCONFIG) $(@:_config=) powerpc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001615
1616Sandpoint8245_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001617 @$(MKCONFIG) $(@:_config=) powerpc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001618
wdenk466b7412004-07-10 22:35:59 +00001619sbc8240_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001620 @$(MKCONFIG) $(@:_config=) powerpc mpc824x sbc8240
wdenk466b7412004-07-10 22:35:59 +00001621
wdenk7ebf7442002-11-02 23:17:16 +00001622utx8245_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001623 @$(MKCONFIG) $(@:_config=) powerpc mpc824x utx8245
wdenk7ebf7442002-11-02 23:17:16 +00001624
1625#########################################################################
1626## MPC8260 Systems
1627#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001628
wdenk54387ac2003-10-08 22:45:44 +00001629atc_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001630 @$(MKCONFIG) $(@:_config=) powerpc mpc8260 atc
wdenk54387ac2003-10-08 22:45:44 +00001631
wdenk7ebf7442002-11-02 23:17:16 +00001632cogent_mpc8260_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001633 @$(MKCONFIG) $(@:_config=) powerpc mpc8260 cogent
wdenk7ebf7442002-11-02 23:17:16 +00001634
1635CPU86_config \
1636CPU86_ROMBOOT_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001637 @mkdir -p $(obj)include ; \
wdenk7ebf7442002-11-02 23:17:16 +00001638 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001639 echo "CONFIG_BOOT_ROM = y" >> $(obj)include/config.mk ; \
wdenk7ebf7442002-11-02 23:17:16 +00001640 else \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001641 echo "CONFIG_BOOT_ROM = n" >> $(obj)include/config.mk ; \
wdenk7ebf7442002-11-02 23:17:16 +00001642 fi; \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001643 echo "export CONFIG_BOOT_ROM" >> $(obj)include/config.mk;
1644 @$(MKCONFIG) -n $@ $(call xtract_82xx,$@) powerpc mpc8260 cpu86
wdenk7ebf7442002-11-02 23:17:16 +00001645
wdenk384cc682005-04-03 22:35:21 +00001646CPU87_config \
1647CPU87_ROMBOOT_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001648 @mkdir -p $(obj)include ; \
wdenk384cc682005-04-03 22:35:21 +00001649 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001650 echo "CONFIG_BOOT_ROM = y" >> $(obj)include/config.mk ; \
wdenk384cc682005-04-03 22:35:21 +00001651 else \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001652 echo "CONFIG_BOOT_ROM = n" >> $(obj)include/config.mk ; \
wdenk384cc682005-04-03 22:35:21 +00001653 fi; \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001654 echo "export CONFIG_BOOT_ROM" >> $(obj)include/config.mk;
1655 @$(MKCONFIG) -n $@ $(call xtract_82xx,$@) powerpc mpc8260 cpu87
wdenk384cc682005-04-03 22:35:21 +00001656
Wolfgang Denkf901a832005-08-06 01:42:58 +02001657ep8248_config \
1658ep8248E_config : unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001659 @$(MKCONFIG) -n $@ ep8248 powerpc mpc8260 ep8248
Wolfgang Denkf901a832005-08-06 01:42:58 +02001660
wdenk7ebf7442002-11-02 23:17:16 +00001661ep8260_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001662 @$(MKCONFIG) $(@:_config=) powerpc mpc8260 ep8260
wdenk7ebf7442002-11-02 23:17:16 +00001663
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001664ep82xxm_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001665 @$(MKCONFIG) $(@:_config=) powerpc mpc8260 ep82xxm
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001666
wdenk7ebf7442002-11-02 23:17:16 +00001667gw8260_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001668 @$(MKCONFIG) $(@:_config=) powerpc mpc8260 gw8260
wdenk7ebf7442002-11-02 23:17:16 +00001669
1670hymod_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001671 @$(MKCONFIG) $(@:_config=) powerpc mpc8260 hymod
wdenk7ebf7442002-11-02 23:17:16 +00001672
wdenk9dd41a72005-05-12 22:48:09 +00001673IDS8247_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001674 @$(MKCONFIG) $(@:_config=) powerpc mpc8260 ids8247
wdenk9dd41a72005-05-12 22:48:09 +00001675
wdenk7ebf7442002-11-02 23:17:16 +00001676IPHASE4539_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001677 @$(MKCONFIG) $(@:_config=) powerpc mpc8260 iphase4539
wdenk7ebf7442002-11-02 23:17:16 +00001678
wdenkc3c7f862004-06-09 14:47:54 +00001679ISPAN_config \
1680ISPAN_REVB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001681 @mkdir -p $(obj)include
wdenkc3c7f862004-06-09 14:47:54 +00001682 @if [ "$(findstring _REVB_,$@)" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001683 echo "#define CONFIG_SYS_REV_B" > $(obj)include/config.h ; \
wdenkc3c7f862004-06-09 14:47:54 +00001684 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001685 @$(MKCONFIG) -n $@ -a ISPAN powerpc mpc8260 ispan
wdenkc3c7f862004-06-09 14:47:54 +00001686
Heiko Schocherac9db062008-01-11 01:12:08 +01001687mgcoge_config : unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001688 @$(MKCONFIG) mgcoge powerpc mpc8260 mgcoge keymile
Heiko Schocherac9db062008-01-11 01:12:08 +01001689
wdenk04a85b32004-04-15 18:22:41 +00001690MPC8260ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001691MPC8260ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001692MPC8260ADS_33MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001693MPC8260ADS_33MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001694MPC8260ADS_40MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001695MPC8260ADS_40MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001696MPC8272ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001697MPC8272ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001698PQ2FADS_config \
wdenk901787d2005-04-03 23:22:21 +00001699PQ2FADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001700PQ2FADS-VR_config \
wdenk901787d2005-04-03 23:22:21 +00001701PQ2FADS-VR_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001702PQ2FADS-ZU_config \
wdenk901787d2005-04-03 23:22:21 +00001703PQ2FADS-ZU_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001704PQ2FADS-ZU_66MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001705PQ2FADS-ZU_66MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001706 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001707 @mkdir -p $(obj)include
Jon Loeligerb7e24d22008-03-05 18:05:45 -06001708 @mkdir -p $(obj)board/freescale/mpc8260ads
wdenk04a85b32004-04-15 18:22:41 +00001709 $(if $(findstring PQ2FADS,$@), \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001710 @echo "#define CONFIG_ADSTYPE CONFIG_SYS_PQ2FADS" > $(obj)include/config.h, \
1711 @echo "#define CONFIG_ADSTYPE CONFIG_SYS_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h)
wdenk04a85b32004-04-15 18:22:41 +00001712 $(if $(findstring MHz,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001713 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \
wdenk04a85b32004-04-15 18:22:41 +00001714 $(if $(findstring VR,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001715 @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h))
wdenk901787d2005-04-03 23:22:21 +00001716 @[ -z "$(findstring lowboot_,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001717 echo "TEXT_BASE = 0xFF800000" >$(obj)board/freescale/mpc8260ads/config.tmp
1718 @$(MKCONFIG) -n $@ -a MPC8260ADS powerpc mpc8260 mpc8260ads freescale
wdenk7ebf7442002-11-02 23:17:16 +00001719
wdenkdb2f721f2003-03-06 00:58:30 +00001720MPC8266ADS_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001721 @$(MKCONFIG) $(@:_config=) powerpc mpc8260 mpc8266ads freescale
wdenkdb2f721f2003-03-06 00:58:30 +00001722
Heiko Schocheradf22b62008-08-19 10:08:49 +02001723muas3001_dev_config \
1724muas3001_config : unconfig
1725 @mkdir -p $(obj)include
1726 @mkdir -p $(obj)board/muas3001
1727 @if [ "$(findstring dev,$@)" ] ; then \
1728 echo "#define CONFIG_MUAS_DEV_BOARD" > $(obj)include/config.h ; \
1729 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001730 @$(MKCONFIG) -n $@ -a muas3001 powerpc mpc8260 muas3001
Heiko Schocheradf22b62008-08-19 10:08:49 +02001731
wdenkefa329c2004-03-23 20:18:25 +00001732# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk10f67012003-03-25 18:06:06 +00001733PM825_config \
wdenkefa329c2004-03-23 20:18:25 +00001734PM825_ROMBOOT_config \
1735PM825_BIGFLASH_config \
1736PM825_ROMBOOT_BIGFLASH_config \
wdenk7ebf7442002-11-02 23:17:16 +00001737PM826_config \
wdenkefa329c2004-03-23 20:18:25 +00001738PM826_ROMBOOT_config \
1739PM826_BIGFLASH_config \
1740PM826_ROMBOOT_BIGFLASH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001741 @mkdir -p $(obj)include
1742 @mkdir -p $(obj)board/pm826
wdenkefa329c2004-03-23 20:18:25 +00001743 @if [ "$(findstring PM825_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001744 echo "#define CONFIG_PCI" >$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001745 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001746 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001747 fi
1748 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001749 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1750 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001751 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001752 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001753 fi; \
1754 else \
wdenkefa329c2004-03-23 20:18:25 +00001755 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
Wolfgang Denkae6d1052008-01-13 00:59:21 +01001756 $(XECHO) "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001757 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
1758 echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001759 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001760 echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001761 fi; \
1762 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001763 @$(MKCONFIG) -n $@ -a PM826 powerpc mpc8260 pm826
wdenkefa329c2004-03-23 20:18:25 +00001764
1765PM828_config \
1766PM828_PCI_config \
1767PM828_ROMBOOT_config \
1768PM828_ROMBOOT_PCI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001769 @mkdir -p $(obj)include
1770 @mkdir -p $(obj)board/pm826
Marian Balakowicz17076262006-04-05 20:37:11 +02001771 @if [ "$(findstring _PCI_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001772 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001773 fi
1774 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001775 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1776 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001777 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001778 @$(MKCONFIG) -n $@ -a PM828 powerpc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +00001779
1780ppmc8260_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001781 @$(MKCONFIG) $(@:_config=) powerpc mpc8260 ppmc8260
wdenk7ebf7442002-11-02 23:17:16 +00001782
wdenk8b0bfc62005-04-03 23:11:38 +00001783Rattler8248_config \
1784Rattler_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001785 @mkdir -p $(obj)include
wdenk8b0bfc62005-04-03 23:11:38 +00001786 $(if $(findstring 8248,$@), \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001787 @echo "#define CONFIG_MPC8248" > $(obj)include/config.h)
1788 @$(MKCONFIG) -n $@ -a Rattler powerpc mpc8260 rattler
wdenk8b0bfc62005-04-03 23:11:38 +00001789
wdenk7ebf7442002-11-02 23:17:16 +00001790RPXsuper_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001791 @$(MKCONFIG) $(@:_config=) powerpc mpc8260 rpxsuper
wdenk7ebf7442002-11-02 23:17:16 +00001792
1793rsdproto_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001794 @$(MKCONFIG) $(@:_config=) powerpc mpc8260 rsdproto
wdenk7ebf7442002-11-02 23:17:16 +00001795
1796sacsng_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001797 @$(MKCONFIG) $(@:_config=) powerpc mpc8260 sacsng
wdenk7ebf7442002-11-02 23:17:16 +00001798
1799sbc8260_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001800 @$(MKCONFIG) $(@:_config=) powerpc mpc8260 sbc8260
wdenk7ebf7442002-11-02 23:17:16 +00001801
1802SCM_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001803 @$(MKCONFIG) $(@:_config=) powerpc mpc8260 SCM siemens
wdenk7ebf7442002-11-02 23:17:16 +00001804
wdenk27b207f2003-07-24 23:38:38 +00001805TQM8255_AA_config \
1806TQM8260_AA_config \
1807TQM8260_AB_config \
1808TQM8260_AC_config \
1809TQM8260_AD_config \
1810TQM8260_AE_config \
1811TQM8260_AF_config \
1812TQM8260_AG_config \
1813TQM8260_AH_config \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001814TQM8260_AI_config \
wdenk27b207f2003-07-24 23:38:38 +00001815TQM8265_AA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001816 @mkdir -p $(obj)include
wdenk27b207f2003-07-24 23:38:38 +00001817 @case "$@" in \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001818 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
1819 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
1820 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1821 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1822 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1823 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
1824 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1825 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
1826 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
1827 TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1828 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
wdenk27b207f2003-07-24 23:38:38 +00001829 esac; \
wdenk27b207f2003-07-24 23:38:38 +00001830 if [ "$${CTYPE}" != "MPC8260" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001831 echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001832 fi; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001833 echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \
Wolfgang Denk1aaab9b2008-01-02 15:54:45 +01001834 if [ "$${CACHE}" = "yes" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001835 echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001836 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001837 echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001838 fi; \
Wolfgang Denk1aaab9b2008-01-02 15:54:45 +01001839 if [ "$${BMODE}" = "60x" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001840 echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001841 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001842 echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001843 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001844 @$(MKCONFIG) -n $@ -a TQM8260 powerpc mpc8260 tqm8260 tqc
wdenk7ebf7442002-11-02 23:17:16 +00001845
Heiko Schocherfa230442006-12-21 17:17:02 +01001846TQM8272_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001847 @$(MKCONFIG) TQM8272 powerpc mpc8260 tqm8272 tqc
Heiko Schocherfa230442006-12-21 17:17:02 +01001848
wdenkba91e262005-05-30 23:55:42 +00001849VoVPN-GW_66MHz_config \
1850VoVPN-GW_100MHz_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001851 @mkdir -p $(obj)include
1852 @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001853 @$(MKCONFIG) -n $@ -a VoVPN-GW powerpc mpc8260 vovpn-gw funkwerk
wdenkba91e262005-05-30 23:55:42 +00001854
wdenk54387ac2003-10-08 22:45:44 +00001855ZPC1900_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02001856 @$(MKCONFIG) $(@:_config=) powerpc mpc8260 zpc1900
wdenk7aa78612003-05-03 15:50:43 +00001857
wdenk4e5ca3e2003-12-08 01:34:36 +00001858#########################################################################
1859## Coldfire
1860#########################################################################
1861
Wolfgang Wegner9d79e572010-01-25 11:27:44 +01001862astro_mcf5373l_config \
1863astro_mcf5373l_RAM_config : unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001864 @$(MKCONFIG) -n $@ -t $(@:_config=) astro_mcf5373l m68k mcf532x mcf5373l astro
Wolfgang Wegner9d79e572010-01-25 11:27:44 +01001865
TsiChung Liewbf9a5212009-06-12 11:29:00 +00001866M5208EVBE_config : unconfig
1867 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5208evbe freescale
1868
TsiChung Liewa21d0c22008-10-21 15:37:02 +00001869M52277EVB_config \
1870M52277EVB_spansion_config \
1871M52277EVB_stmicro_config : unconfig
1872 @case "$@" in \
1873 M52277EVB_config) FLASH=SPANSION;; \
1874 M52277EVB_spansion_config) FLASH=SPANSION;; \
1875 M52277EVB_stmicro_config) FLASH=STMICRO;; \
1876 esac; \
1877 if [ "$${FLASH}" = "SPANSION" ] ; then \
1878 echo "#define CONFIG_SYS_SPANSION_BOOT" >> $(obj)include/config.h ; \
1879 echo "TEXT_BASE = 0x00000000" > $(obj)board/freescale/m52277evb/config.tmp ; \
1880 cp $(obj)board/freescale/m52277evb/u-boot.spa $(obj)board/freescale/m52277evb/u-boot.lds ; \
TsiChung Liewa21d0c22008-10-21 15:37:02 +00001881 fi; \
1882 if [ "$${FLASH}" = "STMICRO" ] ; then \
1883 echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \
1884 echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \
1885 echo "TEXT_BASE = 0x43E00000" > $(obj)board/freescale/m52277evb/config.tmp ; \
1886 cp $(obj)board/freescale/m52277evb/u-boot.stm $(obj)board/freescale/m52277evb/u-boot.lds ; \
TsiChung Liewa21d0c22008-10-21 15:37:02 +00001887 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001888 @$(MKCONFIG) -n $@ -a M52277EVB m68k mcf5227x m52277evb freescale
TsiChungLiew1552af72008-01-14 17:43:33 -06001889
TsiChungLiew4a442d32007-08-16 19:23:50 -05001890M5235EVB_config \
1891M5235EVB_Flash16_config \
1892M5235EVB_Flash32_config: unconfig
1893 @case "$@" in \
1894 M5235EVB_config) FLASH=16;; \
1895 M5235EVB_Flash16_config) FLASH=16;; \
1896 M5235EVB_Flash32_config) FLASH=32;; \
1897 esac; \
TsiChungLiew4a442d32007-08-16 19:23:50 -05001898 if [ "$${FLASH}" != "16" ] ; then \
Wolfgang Denkae6d1052008-01-13 00:59:21 +01001899 echo "#define NORFLASH_PS32BIT 1" >> $(obj)include/config.h ; \
TsiChungLiew4a442d32007-08-16 19:23:50 -05001900 echo "TEXT_BASE = 0xFFC00000" > $(obj)board/freescale/m5235evb/config.tmp ; \
1901 cp $(obj)board/freescale/m5235evb/u-boot.32 $(obj)board/freescale/m5235evb/u-boot.lds ; \
1902 else \
1903 echo "TEXT_BASE = 0xFFE00000" > $(obj)board/freescale/m5235evb/config.tmp ; \
1904 cp $(obj)board/freescale/m5235evb/u-boot.16 $(obj)board/freescale/m5235evb/u-boot.lds ; \
1905 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001906 @$(MKCONFIG) -n $@ -a M5235EVB m68k mcf523x m5235evb freescale
TsiChungLiew4a442d32007-08-16 19:23:50 -05001907
TsiChungLiewa605aac2007-08-16 05:04:31 -05001908M5249EVB_config : unconfig
1909 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5249evb freescale
1910
TsiChung Liew6d33c6a2008-07-23 17:11:47 -05001911M5253DEMO_config : unconfig
1912 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5253demo freescale
1913
TsiChungLiewa1436a82007-08-16 13:20:50 -05001914M5253EVBE_config : unconfig
1915 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5253evbe freescale
1916
Wolfgang Denk74812662005-12-12 16:06:05 +01001917cobra5272_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001918 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272
Wolfgang Denk74812662005-12-12 16:06:05 +01001919
Wolfgang Denk4176c792006-06-10 19:27:47 +02001920EB+MCF-EV123_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001921 @mkdir -p $(obj)include
1922 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
Marian Balakowiczf9328632006-09-01 19:49:50 +02001923 @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001924 @$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001925
1926EB+MCF-EV123_internal_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001927 @mkdir -p $(obj)include
1928 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
Marian Balakowiczf9328632006-09-01 19:49:50 +02001929 @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001930 @$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001931
Michael Durrantdfc2b762010-01-20 19:33:02 -06001932EP2500_config: unconfig
1933 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 ep2500 Mercury
1934
Bartlomiej Siekadaa6e412006-12-20 00:27:32 +01001935idmr_config : unconfig
1936 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 idmr
1937
Wolfgang Denk4176c792006-06-10 19:27:47 +02001938M5271EVB_config : unconfig
TsiChung Liew659e9ba2008-08-11 15:23:16 +00001939 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb freescale
Wolfgang Denk4176c792006-06-10 19:27:47 +02001940
wdenk4e5ca3e2003-12-08 01:34:36 +00001941M5272C3_config : unconfig
TsiChung Liew56df0912008-08-11 15:25:07 +00001942 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3 freescale
wdenk4e5ca3e2003-12-08 01:34:36 +00001943
Matthew Fettke545c8e02008-01-24 14:02:32 -06001944M5275EVB_config : unconfig
1945 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5275evb freescale
1946
wdenk4e5ca3e2003-12-08 01:34:36 +00001947M5282EVB_config : unconfig
TsiChung Liew10db3a12008-08-11 15:26:43 +00001948 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb freescale
wdenk4e5ca3e2003-12-08 01:34:36 +00001949
TsiChung Liew536e7da2008-10-22 11:38:21 +00001950M53017EVB_config : unconfig
1951 @$(MKCONFIG) $(@:_config=) m68k mcf532x m53017evb freescale
1952
TsiChung Liew8e585f02007-06-18 13:50:13 -05001953M5329AFEE_config \
1954M5329BFEE_config : unconfig
1955 @case "$@" in \
1956 M5329AFEE_config) NAND=0;; \
1957 M5329BFEE_config) NAND=16;; \
1958 esac; \
TsiChung Liew8e585f02007-06-18 13:50:13 -05001959 if [ "$${NAND}" != "0" ] ; then \
TsiChungLiewab77bc52007-08-15 15:39:17 -05001960 echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \
TsiChung Liew8e585f02007-06-18 13:50:13 -05001961 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001962 @$(MKCONFIG) -n $@ -a M5329EVB m68k mcf532x m5329evb freescale
TsiChung Liew8e585f02007-06-18 13:50:13 -05001963
TsiChungLiewaa5f1f92008-01-14 17:23:08 -06001964M5373EVB_config : unconfig
1965 @case "$@" in \
1966 M5373EVB_config) NAND=16;; \
1967 esac; \
TsiChungLiewaa5f1f92008-01-14 17:23:08 -06001968 if [ "$${NAND}" != "0" ] ; then \
1969 echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \
1970 fi
1971 @$(MKCONFIG) -a M5373EVB m68k mcf532x m5373evb freescale
1972
TsiChung Liew05316f82008-08-11 13:41:49 +00001973M54451EVB_config \
TsiChung Liew05316f82008-08-11 13:41:49 +00001974M54451EVB_stmicro_config : unconfig
1975 @case "$@" in \
TsiChung Liew709b3842009-06-11 15:39:57 +00001976 M54451EVB_config) FLASH=NOR;; \
TsiChung Liew05316f82008-08-11 13:41:49 +00001977 M54451EVB_stmicro_config) FLASH=STMICRO;; \
1978 esac; \
TsiChung Liew709b3842009-06-11 15:39:57 +00001979 if [ "$${FLASH}" = "NOR" ] ; then \
TsiChung Liew05316f82008-08-11 13:41:49 +00001980 echo "TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54451evb/config.tmp ; \
1981 cp $(obj)board/freescale/m54451evb/u-boot.spa $(obj)board/freescale/m54451evb/u-boot.lds ; \
TsiChung Liew05316f82008-08-11 13:41:49 +00001982 fi; \
1983 if [ "$${FLASH}" = "STMICRO" ] ; then \
1984 echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001985 echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \
TsiChung Liew05316f82008-08-11 13:41:49 +00001986 echo "TEXT_BASE = 0x47E00000" > $(obj)board/freescale/m54451evb/config.tmp ; \
1987 cp $(obj)board/freescale/m54451evb/u-boot.stm $(obj)board/freescale/m54451evb/u-boot.lds ; \
TsiChung Liew05316f82008-08-11 13:41:49 +00001988 fi; \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001989 echo "#define CONFIG_SYS_INPUT_CLKSRC 24000000" >> $(obj)include/config.h ;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02001990 @$(MKCONFIG) -n $@ -a M54451EVB m68k mcf5445x m54451evb freescale
TsiChung Liew05316f82008-08-11 13:41:49 +00001991
TsiChungLiew8ae158c2007-08-16 15:05:11 -05001992M54455EVB_config \
1993M54455EVB_atmel_config \
1994M54455EVB_intel_config \
1995M54455EVB_a33_config \
1996M54455EVB_a66_config \
1997M54455EVB_i33_config \
TsiChung Liew9f751552008-07-23 20:38:53 -05001998M54455EVB_i66_config \
1999M54455EVB_stm33_config : unconfig
TsiChungLiew8ae158c2007-08-16 15:05:11 -05002000 @case "$@" in \
2001 M54455EVB_config) FLASH=ATMEL; FREQ=33333333;; \
2002 M54455EVB_atmel_config) FLASH=ATMEL; FREQ=33333333;; \
2003 M54455EVB_intel_config) FLASH=INTEL; FREQ=33333333;; \
2004 M54455EVB_a33_config) FLASH=ATMEL; FREQ=33333333;; \
2005 M54455EVB_a66_config) FLASH=ATMEL; FREQ=66666666;; \
2006 M54455EVB_i33_config) FLASH=INTEL; FREQ=33333333;; \
2007 M54455EVB_i66_config) FLASH=INTEL; FREQ=66666666;; \
TsiChung Liew9f751552008-07-23 20:38:53 -05002008 M54455EVB_stm33_config) FLASH=STMICRO; FREQ=33333333;; \
TsiChungLiew8ae158c2007-08-16 15:05:11 -05002009 esac; \
Wolfgang Denk1aaab9b2008-01-02 15:54:45 +01002010 if [ "$${FLASH}" = "INTEL" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002011 echo "#define CONFIG_SYS_INTEL_BOOT" >> $(obj)include/config.h ; \
TsiChungLiewe8ee8f32007-10-25 17:16:22 -05002012 echo "TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54455evb/config.tmp ; \
2013 cp $(obj)board/freescale/m54455evb/u-boot.int $(obj)board/freescale/m54455evb/u-boot.lds ; \
TsiChung Liew9f751552008-07-23 20:38:53 -05002014 fi; \
2015 if [ "$${FLASH}" = "ATMEL" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002016 echo "#define CONFIG_SYS_ATMEL_BOOT" >> $(obj)include/config.h ; \
TsiChungLiewe8ee8f32007-10-25 17:16:22 -05002017 echo "TEXT_BASE = 0x04000000" > $(obj)board/freescale/m54455evb/config.tmp ; \
2018 cp $(obj)board/freescale/m54455evb/u-boot.atm $(obj)board/freescale/m54455evb/u-boot.lds ; \
TsiChungLiew8ae158c2007-08-16 15:05:11 -05002019 fi; \
TsiChung Liew9f751552008-07-23 20:38:53 -05002020 if [ "$${FLASH}" = "STMICRO" ] ; then \
2021 echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002022 echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \
TsiChung Liew9f751552008-07-23 20:38:53 -05002023 echo "TEXT_BASE = 0x4FE00000" > $(obj)board/freescale/m54455evb/config.tmp ; \
2024 cp $(obj)board/freescale/m54455evb/u-boot.stm $(obj)board/freescale/m54455evb/u-boot.lds ; \
TsiChung Liew9f751552008-07-23 20:38:53 -05002025 fi; \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002026 echo "#define CONFIG_SYS_INPUT_CLKSRC $${FREQ}" >> $(obj)include/config.h ; \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002027 @$(MKCONFIG) -n $@ -a M54455EVB m68k mcf5445x m54455evb freescale
TsiChungLiew8ae158c2007-08-16 15:05:11 -05002028
TsiChungLiew57a12722008-01-15 14:15:46 -06002029M5475AFE_config \
2030M5475BFE_config \
2031M5475CFE_config \
2032M5475DFE_config \
2033M5475EFE_config \
2034M5475FFE_config \
2035M5475GFE_config : unconfig
2036 @case "$@" in \
2037 M5475AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
2038 M5475BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \
2039 M5475CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \
2040 M5475DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \
2041 M5475EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \
2042 M5475FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \
2043 M5475GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
2044 esac; \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002045 echo "#define CONFIG_SYS_BUSCLK 133333333" > $(obj)include/config.h ; \
2046 echo "#define CONFIG_SYS_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \
2047 echo "#define CONFIG_SYS_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -06002048 if [ "$${RAM1}" != "0" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002049 echo "#define CONFIG_SYS_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -06002050 fi; \
2051 if [ "$${CODE}" != "0" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002052 echo "#define CONFIG_SYS_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -06002053 fi; \
2054 if [ "$${VID}" == "1" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002055 echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -06002056 fi; \
2057 if [ "$${USB}" == "1" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002058 echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -06002059 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002060 @$(MKCONFIG) -n $@ -a M5475EVB m68k mcf547x_8x m547xevb freescale
TsiChungLiew57a12722008-01-15 14:15:46 -06002061
2062M5485AFE_config \
2063M5485BFE_config \
2064M5485CFE_config \
2065M5485DFE_config \
2066M5485EFE_config \
2067M5485FFE_config \
2068M5485GFE_config \
2069M5485HFE_config : unconfig
2070 @case "$@" in \
2071 M5485AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
2072 M5485BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \
2073 M5485CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \
2074 M5485DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \
2075 M5485EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \
2076 M5485FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \
2077 M5485GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
TsiChungLiew4d264ef2008-01-30 15:08:15 -06002078 M5485HFE_config) BOOT=2;CODE=16;VID=1;USB=0;RAM=64;RAM1=0;; \
TsiChungLiew57a12722008-01-15 14:15:46 -06002079 esac; \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002080 echo "#define CONFIG_SYS_BUSCLK 100000000" > $(obj)include/config.h ; \
2081 echo "#define CONFIG_SYS_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \
2082 echo "#define CONFIG_SYS_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -06002083 if [ "$${RAM1}" != "0" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002084 echo "#define CONFIG_SYS_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -06002085 fi; \
2086 if [ "$${CODE}" != "0" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002087 echo "#define CONFIG_SYS_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -06002088 fi; \
2089 if [ "$${VID}" == "1" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002090 echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -06002091 fi; \
2092 if [ "$${USB}" == "1" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002093 echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \
TsiChungLiew57a12722008-01-15 14:15:46 -06002094 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002095 @$(MKCONFIG) -n $@ -a M5485EVB m68k mcf547x_8x m548xevb freescale
TsiChungLiew57a12722008-01-15 14:15:46 -06002096
Wolfgang Denk699f0512008-07-15 22:22:44 +02002097TASREG_config : unconfig
2098 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd
2099
wdenk7ebf7442002-11-02 23:17:16 +00002100#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -05002101## MPC83xx Systems
2102#########################################################################
2103
Heiko Schocherde044362008-11-20 09:57:47 +01002104kmeter1_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002105 @$(MKCONFIG) kmeter1 powerpc mpc83xx kmeter1 keymile
Heiko Schocherde044362008-11-20 09:57:47 +01002106
Kim Phillips5c5d3242007-04-25 12:34:38 -05002107MPC8313ERDB_33_config \
Scott Woode4c09502008-06-30 14:13:28 -05002108MPC8313ERDB_66_config \
2109MPC8313ERDB_NAND_33_config \
2110MPC8313ERDB_NAND_66_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002111 @mkdir -p $(obj)include
Scott Woode4c09502008-06-30 14:13:28 -05002112 @mkdir -p $(obj)board/freescale/mpc8313erdb
Wolfgang Denkc6fe4da2008-03-09 02:13:19 +01002113 @if [ "$(findstring _33_,$@)" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002114 echo "#define CONFIG_SYS_33MHZ" >>$(obj)include/config.h ; \
Kim Phillips5c5d3242007-04-25 12:34:38 -05002115 fi ; \
2116 if [ "$(findstring _66_,$@)" ] ; then \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002117 echo "#define CONFIG_SYS_66MHZ" >>$(obj)include/config.h ; \
Scott Woode4c09502008-06-30 14:13:28 -05002118 fi ; \
2119 if [ "$(findstring _NAND_,$@)" ] ; then \
Kim Phillipsf4e55a42008-08-25 14:53:09 -05002120 echo "TEXT_BASE = 0x00100000" > $(obj)board/freescale/mpc8313erdb/config.tmp ; \
Scott Woode4c09502008-06-30 14:13:28 -05002121 echo "#define CONFIG_NAND_U_BOOT" >>$(obj)include/config.h ; \
Kim Phillips5c5d3242007-04-25 12:34:38 -05002122 fi ;
Nick Spence64ac1eb2008-09-02 15:21:16 -05002123 @if [ "$(findstring _NAND_,$@)" ] ; then \
2124 echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk ; \
2125 fi ;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002126 @$(MKCONFIG) -n $@ -a MPC8313ERDB powerpc mpc83xx mpc8313erdb freescale
Kim Phillips5c5d3242007-04-25 12:34:38 -05002127
Anton Vorontsov2e950042009-11-24 20:12:12 +03002128MPC8315ERDB_NAND_config \
Dave Liu8bd522c2008-01-11 18:48:24 +08002129MPC8315ERDB_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002130 @$(MKCONFIG) -n $@ -t $(@:_config=) MPC8315ERDB powerpc mpc83xx mpc8315erdb freescale
Dave Liu8bd522c2008-01-11 18:48:24 +08002131
Kim Phillips1c274c42007-07-25 19:25:33 -05002132MPC8323ERDB_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002133 @$(MKCONFIG) -a MPC8323ERDB powerpc mpc83xx mpc8323erdb freescale
Kim Phillips1c274c42007-07-25 19:25:33 -05002134
Kim Phillips4decd842007-01-24 17:18:37 -06002135MPC832XEMDS_config \
2136MPC832XEMDS_HOST_33_config \
2137MPC832XEMDS_HOST_66_config \
Tony Li281df452007-10-18 17:47:19 +08002138MPC832XEMDS_SLAVE_config \
2139MPC832XEMDS_ATM_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002140 @mkdir -p $(obj)include
Wolfgang Denkc6fe4da2008-03-09 02:13:19 +01002141 @if [ "$(findstring _HOST_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002142 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06002143 fi ; \
2144 if [ "$(findstring _SLAVE_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002145 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
2146 echo "#define CONFIG_PCISLAVE" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06002147 fi ; \
2148 if [ "$(findstring _33_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002149 echo "#define PCI_33M" >>$(obj)include/config.h ; \
Tony Li281df452007-10-18 17:47:19 +08002150 echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06002151 fi ; \
2152 if [ "$(findstring _66_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002153 echo "#define PCI_66M" >>$(obj)include/config.h ; \
Tony Li281df452007-10-18 17:47:19 +08002154 echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
2155 fi ; \
2156 if [ "$(findstring _ATM_,$@)" ] ; then \
Tony Li281df452007-10-18 17:47:19 +08002157 echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
Wolfgang Denkf9301e12008-03-04 14:58:31 +01002158 echo "#define CONFIG_PQ_MDS_PIB_ATM 1" >>$(obj)include/config.h ; \
Kim Phillips4decd842007-01-24 17:18:37 -06002159 fi ;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002160 @$(MKCONFIG) -n $@ -a MPC832XEMDS powerpc mpc83xx mpc832xemds freescale
Marian Balakowicze6f2e902005-10-11 19:09:42 +02002161
Marian Balakowicz991425f2006-03-14 16:24:38 +01002162MPC8349EMDS_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002163 @$(MKCONFIG) $(@:_config=) powerpc mpc83xx mpc8349emds freescale
Marian Balakowicz991425f2006-03-14 16:24:38 +01002164
Timur Tabi7a78f142007-01-31 15:54:29 -06002165MPC8349ITX_config \
2166MPC8349ITX_LOWBOOT_config \
2167MPC8349ITXGP_config: unconfig
2168 @mkdir -p $(obj)include
Sam Sparkse21659e2007-09-14 11:14:42 -06002169 @mkdir -p $(obj)board/freescale/mpc8349itx
Timur Tabi7a78f142007-01-31 15:54:29 -06002170 @echo "#define CONFIG_$(subst _LOWBOOT,,$(@:_config=))" >> $(obj)include/config.h
2171 @if [ "$(findstring GP,$@)" ] ; then \
Sam Sparkse21659e2007-09-14 11:14:42 -06002172 echo "TEXT_BASE = 0xFE000000" >$(obj)board/freescale/mpc8349itx/config.tmp ; \
Timur Tabi7a78f142007-01-31 15:54:29 -06002173 fi
2174 @if [ "$(findstring LOWBOOT,$@)" ] ; then \
Sam Sparkse21659e2007-09-14 11:14:42 -06002175 echo "TEXT_BASE = 0xFE000000" >$(obj)board/freescale/mpc8349itx/config.tmp ; \
Timur Tabi7a78f142007-01-31 15:54:29 -06002176 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002177 @$(MKCONFIG) -n $@ -a MPC8349ITX powerpc mpc83xx mpc8349itx freescale
Kim Phillips4decd842007-01-24 17:18:37 -06002178
Dave Liu5f820432006-11-03 19:33:44 -06002179MPC8360EMDS_config \
2180MPC8360EMDS_HOST_33_config \
2181MPC8360EMDS_HOST_66_config \
Tony Li281df452007-10-18 17:47:19 +08002182MPC8360EMDS_SLAVE_config \
2183MPC8360EMDS_ATM_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002184 @mkdir -p $(obj)include
Wolfgang Denkc6fe4da2008-03-09 02:13:19 +01002185 @if [ "$(findstring _HOST_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002186 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06002187 fi ; \
2188 if [ "$(findstring _SLAVE_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002189 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
2190 echo "#define CONFIG_PCISLAVE" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06002191 fi ; \
2192 if [ "$(findstring _33_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002193 echo "#define PCI_33M" >>$(obj)include/config.h ; \
Tony Li281df452007-10-18 17:47:19 +08002194 echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06002195 fi ; \
2196 if [ "$(findstring _66_,$@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002197 echo "#define PCI_66M" >>$(obj)include/config.h ; \
Tony Li281df452007-10-18 17:47:19 +08002198 echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
2199 fi ; \
2200 if [ "$(findstring _ATM_,$@)" ] ; then \
Tony Li281df452007-10-18 17:47:19 +08002201 echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
Wolfgang Denkf9301e12008-03-04 14:58:31 +01002202 echo "#define CONFIG_PQ_MDS_PIB_ATM 1" >>$(obj)include/config.h ; \
Dave Liu5f820432006-11-03 19:33:44 -06002203 fi ;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002204 @$(MKCONFIG) -n $@ -a MPC8360EMDS powerpc mpc83xx mpc8360emds freescale
Dave Liu5f820432006-11-03 19:33:44 -06002205
Anton Vorontsovfab6f552008-01-09 20:57:47 +03002206MPC8360ERDK_33_config \
2207MPC8360ERDK_66_config \
Jean-Christophe PLAGNIOL-VILLARD91c82072008-03-02 16:12:31 +01002208MPC8360ERDK_config: unconfig
Anton Vorontsovfab6f552008-01-09 20:57:47 +03002209 @mkdir -p $(obj)include
Wolfgang Denkc6fe4da2008-03-09 02:13:19 +01002210 @if [ "$(findstring _33_,$@)" ] ; then \
Anton Vorontsovfab6f552008-01-09 20:57:47 +03002211 echo "#define CONFIG_CLKIN_33MHZ" >>$(obj)include/config.h ;\
2212 fi ;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002213 @$(MKCONFIG) -n $@ -a MPC8360ERDK powerpc mpc83xx mpc8360erdk freescale
Anton Vorontsovfab6f552008-01-09 20:57:47 +03002214
Dave Liu19580e62007-09-18 12:37:57 +08002215MPC837XEMDS_config \
2216MPC837XEMDS_HOST_config: unconfig
2217 @mkdir -p $(obj)include
Wolfgang Denkc6fe4da2008-03-09 02:13:19 +01002218 @if [ "$(findstring _HOST_,$@)" ] ; then \
Dave Liu19580e62007-09-18 12:37:57 +08002219 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
2220 fi ;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002221 @$(MKCONFIG) -n $@ -a MPC837XEMDS powerpc mpc83xx mpc837xemds freescale
Dave Liu19580e62007-09-18 12:37:57 +08002222
Kim Phillips5e918a92008-01-16 00:38:05 -06002223MPC837XERDB_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002224 @$(MKCONFIG) -a MPC837XERDB powerpc mpc83xx mpc837xerdb freescale
Kim Phillips5e918a92008-01-16 00:38:05 -06002225
Andre Schwarza1293e52008-06-10 09:14:05 +02002226MVBLM7_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002227 @$(MKCONFIG) $(@:_config=) powerpc mpc83xx mvblm7 matrix_vision
Andre Schwarza1293e52008-06-10 09:14:05 +02002228
Paul Gortmakerc0d660f2009-08-21 16:21:58 -05002229sbc8349_config \
2230sbc8349_PCI_33_config \
2231sbc8349_PCI_66_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002232 @$(MKCONFIG) -n $@ -t $(@:_config=) sbc8349 powerpc mpc83xx sbc8349
Paul Gortmaker91e25762007-01-16 11:38:14 -05002233
Ron Madrid5bb907a2009-01-22 15:05:24 -08002234SIMPC8313_LP_config \
2235SIMPC8313_SP_config: unconfig
2236 @mkdir -p $(obj)include
2237 @mkdir -p $(obj)board/sheldon/simpc8313
2238 @if [ "$(findstring _LP_,$@)" ] ; then \
Ron Madrid5bb907a2009-01-22 15:05:24 -08002239 echo "#define CONFIG_NAND_LP" >> $(obj)include/config.h ; \
2240 fi ; \
2241 if [ "$(findstring _SP_,$@)" ] ; then \
Ron Madrid5bb907a2009-01-22 15:05:24 -08002242 echo "#define CONFIG_NAND_SP" >> $(obj)include/config.h ; \
2243 fi ;
Ron Madrid5bb907a2009-01-22 15:05:24 -08002244 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002245 @$(MKCONFIG) -n $@ -a SIMPC8313 powerpc mpc83xx simpc8313 sheldon
Ron Madrid5bb907a2009-01-22 15:05:24 -08002246
Kim Phillips4decd842007-01-24 17:18:37 -06002247TQM834x_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002248 @$(MKCONFIG) $(@:_config=) powerpc mpc83xx tqm834x tqc
Kim Phillips4decd842007-01-24 17:18:37 -06002249
Reinhard Arlt1dee9be2009-12-08 09:13:08 +01002250caddy2_config \
Reinhard Arltc2e49f72009-07-25 06:19:12 +02002251vme8349_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002252 @$(MKCONFIG) -n $@ -t $(@:_config=) vme8349 powerpc mpc83xx vme8349 esd
Timur Tabi2ad6b512006-10-31 18:44:42 -06002253
Matthias Kaehlckecf3c1422010-02-01 21:29:48 +01002254edb9301_config \
2255edb9302_config \
2256edb9302a_config \
2257edb9307_config \
2258edb9307a_config \
2259edb9312_config \
2260edb9315_config \
2261edb9315a_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002262 @$(MKCONFIG) -n $@ -t $(@:_config=) edb93xx arm arm920t edb93xx NULL ep93xx
Matthias Kaehlckecf3c1422010-02-01 21:29:48 +01002263
Eran Libertyf046ccd2005-07-28 10:08:46 -05002264#########################################################################
wdenk42d1f032003-10-15 23:53:47 +00002265## MPC85xx Systems
2266#########################################################################
2267
robert lazarski7bd61042007-12-21 10:36:37 -05002268ATUM8548_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002269 @$(MKCONFIG) $(@:_config=) powerpc mpc85xx atum8548
robert lazarski7bd61042007-12-21 10:36:37 -05002270
Mingkai Hu9a1a0ae2009-09-23 15:20:37 +08002271MPC8536DS_NAND_config \
Mingkai Hue40ac482009-09-23 15:20:38 +08002272MPC8536DS_SDCARD_config \
2273MPC8536DS_SPIFLASH_config \
Kumar Gala337f9fd2009-07-30 15:54:07 -05002274MPC8536DS_36BIT_config \
Kumar Gala9490a7f2008-07-25 13:31:05 -05002275MPC8536DS_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002276 @$(MKCONFIG) -n $@ -t $(@:_config=) MPC8536DS powerpc mpc85xx mpc8536ds freescale
Kumar Gala9490a7f2008-07-25 13:31:05 -05002277
wdenk0ac6f8b2004-07-09 23:27:13 +00002278MPC8540ADS_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002279 @$(MKCONFIG) $(@:_config=) powerpc mpc85xx mpc8540ads freescale
wdenk42d1f032003-10-15 23:53:47 +00002280
Lunsheng Wangb0e32942005-07-29 10:20:29 -05002281MPC8540EVAL_config \
2282MPC8540EVAL_33_config \
2283MPC8540EVAL_66_config \
2284MPC8540EVAL_33_slave_config \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002285MPC8540EVAL_66_slave_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002286 @mkdir -p $(obj)include
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002287 @if [ -z "$(findstring _33_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002288 echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05002289 fi ; \
2290 if [ "$(findstring _slave_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002291 echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05002292 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002293 @$(MKCONFIG) -n $@ -a MPC8540EVAL powerpc mpc85xx mpc8540eval
Lunsheng Wangb0e32942005-07-29 10:20:29 -05002294
wdenk0ac6f8b2004-07-09 23:27:13 +00002295MPC8560ADS_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002296 @$(MKCONFIG) $(@:_config=) powerpc mpc85xx mpc8560ads freescale
wdenk42d1f032003-10-15 23:53:47 +00002297
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07002298MPC8541CDS_legacy_config \
wdenk03f5c552004-10-10 21:21:55 +00002299MPC8541CDS_config: unconfig
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07002300 @mkdir -p $(obj)include
Wolfgang Denkc6fe4da2008-03-09 02:13:19 +01002301 @if [ "$(findstring _legacy_,$@)" ] ; then \
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07002302 echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07002303 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002304 @$(MKCONFIG) -n $@ -a MPC8541CDS powerpc mpc85xx mpc8541cds freescale
wdenk03f5c552004-10-10 21:21:55 +00002305
Andy Fleming81f481c2007-04-23 02:24:28 -05002306MPC8544DS_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002307 @$(MKCONFIG) $(@:_config=) powerpc mpc85xx mpc8544ds freescale
Andy Fleming81f481c2007-04-23 02:24:28 -05002308
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07002309MPC8548CDS_legacy_config \
Jon Loeligerd9b94f22005-07-25 14:05:07 -05002310MPC8548CDS_config: unconfig
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07002311 @mkdir -p $(obj)include
Wolfgang Denkc6fe4da2008-03-09 02:13:19 +01002312 @if [ "$(findstring _legacy_,$@)" ] ; then \
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07002313 echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07002314 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002315 @$(MKCONFIG) -n $@ -a MPC8548CDS powerpc mpc85xx mpc8548cds freescale
Jon Loeligerd9b94f22005-07-25 14:05:07 -05002316
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07002317MPC8555CDS_legacy_config \
wdenk03f5c552004-10-10 21:21:55 +00002318MPC8555CDS_config: unconfig
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07002319 @mkdir -p $(obj)include
Wolfgang Denkc6fe4da2008-03-09 02:13:19 +01002320 @if [ "$(findstring _legacy_,$@)" ] ; then \
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07002321 echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \
Randy Vinson7f3f2bd2007-02-27 19:42:22 -07002322 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002323 @$(MKCONFIG) -n $@ -a MPC8555CDS powerpc mpc85xx mpc8555cds freescale
wdenk7abf0c52004-04-18 21:45:42 +00002324
Andy Fleming67431052007-04-23 02:54:25 -05002325MPC8568MDS_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002326 @$(MKCONFIG) $(@:_config=) powerpc mpc85xx mpc8568mds freescale
Andy Fleming67431052007-04-23 02:54:25 -05002327
Liu Yuc95d5412009-11-27 15:31:52 +08002328MPC8569MDS_ATM_config \
Liu Yu674ef7b2010-01-18 19:03:28 +08002329MPC8569MDS_NAND_config \
Haiying Wang765547d2009-03-27 17:02:45 -04002330MPC8569MDS_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002331 @$(MKCONFIG) -n $@ -t $(@:_config=) MPC8569MDS powerpc mpc85xx mpc8569mds freescale
Haiying Wang765547d2009-03-27 17:02:45 -04002332
Kumar Gala18af1c52009-01-23 14:22:14 -06002333MPC8572DS_36BIT_config \
Kumar Gala129ba612008-08-12 11:13:08 -05002334MPC8572DS_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002335 @$(MKCONFIG) -n $@ -t $(@:_config=) MPC8572DS powerpc mpc85xx mpc8572ds freescale
Kumar Gala129ba612008-08-12 11:13:08 -05002336
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -05002337P2020DS_36BIT_config \
2338P2020DS_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002339 @$(MKCONFIG) -n $@ -t $(@:_config=) P2020DS powerpc mpc85xx p2020ds freescale
Srikanth Srinivasanfeb78382009-04-03 15:36:13 -05002340
Kumar Gala62ca21c2009-09-10 16:31:53 -05002341P1011RDB_config \
Dipen Dudhatf7780ec2009-10-08 13:33:18 +05302342P1011RDB_NAND_config \
Dipen Dudhatfad15092009-10-08 13:33:29 +05302343P1011RDB_SDCARD_config \
2344P1011RDB_SPIFLASH_config \
Kumar Gala62ca21c2009-09-10 16:31:53 -05002345P1020RDB_config \
Dipen Dudhatf7780ec2009-10-08 13:33:18 +05302346P1020RDB_NAND_config \
Dipen Dudhatfad15092009-10-08 13:33:29 +05302347P1020RDB_SDCARD_config \
2348P1020RDB_SPIFLASH_config \
Kumar Gala62ca21c2009-09-10 16:31:53 -05002349P2010RDB_config \
Dipen Dudhatf7780ec2009-10-08 13:33:18 +05302350P2010RDB_NAND_config \
Dipen Dudhatfad15092009-10-08 13:33:29 +05302351P2010RDB_SDCARD_config \
2352P2010RDB_SPIFLASH_config \
Dipen Dudhatf7780ec2009-10-08 13:33:18 +05302353P2020RDB_config \
Dipen Dudhatfad15092009-10-08 13:33:29 +05302354P2020RDB_NAND_config \
2355P2020RDB_SDCARD_config \
2356P2020RDB_SPIFLASH_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002357 @$(MKCONFIG) -n $@ -t $(@:_config=) P1_P2_RDB powerpc mpc85xx p1_p2_rdb freescale
Poonam Aggrwal728ece32009-08-05 13:29:24 +05302358
wdenk384cc682005-04-03 22:35:21 +00002359PM854_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002360 @$(MKCONFIG) $(@:_config=) powerpc mpc85xx pm854
wdenk384cc682005-04-03 22:35:21 +00002361
Wolfgang Denkb20d0032005-08-05 12:19:30 +02002362PM856_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002363 @$(MKCONFIG) $(@:_config=) powerpc mpc85xx pm856
Wolfgang Denkb20d0032005-08-05 12:19:30 +02002364
wdenkc15f3122004-10-10 22:44:24 +00002365sbc8540_config \
2366sbc8540_33_config \
2367sbc8540_66_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002368 @$(MKCONFIG) -n $@ -t $(@:_config=) SBC8540 powerpc mpc85xx sbc8560
wdenkc15f3122004-10-10 22:44:24 +00002369
Paul Gortmaker2738bc82009-09-20 20:36:06 -04002370sbc8548_config \
2371sbc8548_PCI_33_config \
2372sbc8548_PCI_66_config \
2373sbc8548_PCI_33_PCIE_config \
2374sbc8548_PCI_66_PCIE_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002375 @$(MKCONFIG) -n $@ -t $(@:_config=) sbc8548 powerpc mpc85xx sbc8548
Joe Hamman11c45eb2007-12-13 06:45:08 -06002376
wdenk466b7412004-07-10 22:35:59 +00002377sbc8560_config \
2378sbc8560_33_config \
Wolfgang Denkf9301e12008-03-04 14:58:31 +01002379sbc8560_66_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002380 @$(MKCONFIG) -n $@ -t $(@:_config=) sbc8560 powerpc mpc85xx sbc8560
wdenk8b07a112004-07-10 21:45:47 +00002381
Sergei Poselenov5d108ac2008-04-30 11:42:50 +02002382socrates_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002383 @$(MKCONFIG) $(@:_config=) powerpc mpc85xx socrates
Sergei Poselenov5d108ac2008-04-30 11:42:50 +02002384
wdenk03f5c552004-10-10 21:21:55 +00002385stxgp3_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002386 @$(MKCONFIG) $(@:_config=) powerpc mpc85xx stxgp3 stx
wdenk03f5c552004-10-10 21:21:55 +00002387
Wolfgang Denkee152982007-05-31 17:20:09 +02002388stxssa_config \
2389stxssa_4M_config: unconfig
2390 @mkdir -p $(obj)include
2391 @if [ "$(findstring _4M_,$@)" ] ; then \
2392 echo "#define CONFIG_STXSSA_4M" >>$(obj)include/config.h ; \
Wolfgang Denkee152982007-05-31 17:20:09 +02002393 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002394 @$(MKCONFIG) -n $@ -a stxssa powerpc mpc85xx stxssa stx
Dan Malek35171dc2007-01-05 09:15:34 +01002395
Stefan Roesed96f41e2005-11-30 13:06:40 +01002396TQM8540_config \
2397TQM8541_config \
Wolfgang Grandegger1287e0c2008-06-05 13:12:07 +02002398TQM8548_config \
Wolfgang Grandeggera865bcd2009-02-11 18:38:22 +01002399TQM8548_AG_config \
Wolfgang Grandeggerad7ee5d2009-02-11 18:38:21 +01002400TQM8548_BE_config \
Stefan Roesed96f41e2005-11-30 13:06:40 +01002401TQM8555_config \
2402TQM8560_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002403 @mkdir -p $(obj)include
Wolfgang Grandeggerad7ee5d2009-02-11 18:38:21 +01002404 @BTYPE=$(@:_config=); \
Wolfgang Grandeggera865bcd2009-02-11 18:38:22 +01002405 CTYPE=$(subst TQM,,$(subst _AG,,$(subst _BE,,$(@:_config=)))); \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002406 echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \
Wolfgang Grandeggerad7ee5d2009-02-11 18:38:21 +01002407 echo "#define CONFIG_$${BTYPE}">>$(obj)include/config.h; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002408 echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \
Wolfgang Grandeggerad7ee5d2009-02-11 18:38:21 +01002409 echo "#define CONFIG_BOARDNAME \"$${BTYPE}\"">>$(obj)include/config.h;
Wolfgang Grandeggerad7ee5d2009-02-11 18:38:21 +01002410 @echo "CONFIG_$(@:_config=) = y">>$(obj)include/config.mk;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002411 @$(MKCONFIG) -n $@ -a TQM85xx powerpc mpc85xx tqm85xx tqc
wdenkf5c5ef42005-04-05 16:26:47 +00002412
Peter Tyser78bbc5c2008-12-01 13:47:13 -06002413XPEDITE5200_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002414 @$(MKCONFIG) $(@:_config=) powerpc mpc85xx xpedite5200 xes
Peter Tyser78bbc5c2008-12-01 13:47:13 -06002415
Peter Tyserccf0fdd2008-12-17 16:36:23 -06002416XPEDITE5370_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002417 @$(MKCONFIG) $(@:_config=) powerpc mpc85xx xpedite5370 xes
Peter Tyserccf0fdd2008-12-17 16:36:23 -06002418
wdenk42d1f032003-10-15 23:53:47 +00002419#########################################################################
Jon Loeligerdebb7352006-04-26 17:58:56 -05002420## MPC86xx Systems
2421#########################################################################
2422
Jon Loeliger3c89d752007-10-16 15:27:43 -05002423MPC8610HPCD_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002424 @$(MKCONFIG) $(@:_config=) powerpc mpc86xx mpc8610hpcd freescale
Jon Loeliger3c89d752007-10-16 15:27:43 -05002425
Becky Bruce8db04002008-11-06 13:04:09 -06002426MPC8641HPCN_36BIT_config \
Jon Loeligerdebb7352006-04-26 17:58:56 -05002427MPC8641HPCN_config: unconfig
Becky Bruce8db04002008-11-06 13:04:09 -06002428 @mkdir -p $(obj)include
2429 @if [ "$(findstring _36BIT_,$@)" ] ; then \
2430 echo "#define CONFIG_PHYS_64BIT" >>$(obj)include/config.h ; \
Becky Bruce8db04002008-11-06 13:04:09 -06002431 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002432 @$(MKCONFIG) -n $@ -a MPC8641HPCN powerpc mpc86xx mpc8641hpcn freescale
Jon Loeligerdebb7352006-04-26 17:58:56 -05002433
Joe Hammanc646bba2007-08-09 15:11:03 -05002434sbc8641d_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002435 @$(MKCONFIG) $(@:_config=) powerpc mpc86xx sbc8641d
Jon Loeligerdebb7352006-04-26 17:58:56 -05002436
Peter Tyser5da6f802009-06-30 17:26:01 -05002437XPEDITE5170_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002438 @$(MKCONFIG) $(@:_config=) powerpc mpc86xx xpedite5170 xes
Peter Tyser5da6f802009-06-30 17:26:01 -05002439
Jon Loeligerdebb7352006-04-26 17:58:56 -05002440#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00002441## 74xx/7xx Systems
2442#########################################################################
2443
wdenkc7de8292002-11-19 11:04:11 +00002444AmigaOneG3SE_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002445 @$(MKCONFIG) $(@:_config=) powerpc 74xx_7xx AmigaOneG3SE MAI
wdenkc7de8292002-11-19 11:04:11 +00002446
wdenk15647dc2003-10-09 19:00:25 +00002447BAB7xx_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002448 @$(MKCONFIG) $(@:_config=) powerpc 74xx_7xx bab7xx eltec
wdenk15647dc2003-10-09 19:00:25 +00002449
Wolfgang Denk05bf4912007-10-21 01:01:17 +02002450CPCI750_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002451 @$(MKCONFIG) CPCI750 powerpc 74xx_7xx cpci750 esd
stroesec419d1d2004-12-16 18:44:40 +00002452
Wolfgang Denk05bf4912007-10-21 01:01:17 +02002453DB64360_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002454 @$(MKCONFIG) DB64360 powerpc 74xx_7xx db64360 Marvell
wdenk3a473b22004-01-03 00:43:19 +00002455
Wolfgang Denk05bf4912007-10-21 01:01:17 +02002456DB64460_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002457 @$(MKCONFIG) DB64460 powerpc 74xx_7xx db64460 Marvell
wdenk3a473b22004-01-03 00:43:19 +00002458
wdenk15647dc2003-10-09 19:00:25 +00002459ELPPC_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002460 @$(MKCONFIG) $(@:_config=) powerpc 74xx_7xx elppc eltec
wdenk15647dc2003-10-09 19:00:25 +00002461
wdenk7ebf7442002-11-02 23:17:16 +00002462EVB64260_config \
2463EVB64260_750CX_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002464 @$(MKCONFIG) -n $@ EVB64260 powerpc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00002465
roy zang4c527832006-11-02 18:49:51 +08002466mpc7448hpc2_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002467 @$(MKCONFIG) $(@:_config=) powerpc 74xx_7xx mpc7448hpc2 freescale
roy zang4c527832006-11-02 18:49:51 +08002468
wdenk15647dc2003-10-09 19:00:25 +00002469P3G4_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002470 @$(MKCONFIG) $(@:_config=) powerpc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00002471
Stefan Roese1eac2a72006-11-29 15:42:37 +01002472p3m750_config \
2473p3m7448_config: unconfig
2474 @mkdir -p $(obj)include
2475 @if [ "$(findstring 750_,$@)" ] ; then \
2476 echo "#define CONFIG_P3M750" >>$(obj)include/config.h ; \
2477 else \
2478 echo "#define CONFIG_P3M7448" >>$(obj)include/config.h ; \
2479 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002480 @$(MKCONFIG) -n $@ -a p3mx powerpc 74xx_7xx p3mx prodrive
Stefan Roese1eac2a72006-11-29 15:42:37 +01002481
wdenk7ebf7442002-11-02 23:17:16 +00002482PCIPPC2_config \
2483PCIPPC6_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002484 @$(MKCONFIG) -n $@ $(@:_config=) powerpc 74xx_7xx pcippc2
wdenk7ebf7442002-11-02 23:17:16 +00002485
Heiko Schocherf5e0d032006-06-19 11:02:41 +02002486ppmc7xx_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002487 @$(MKCONFIG) $(@:_config=) powerpc 74xx_7xx ppmc7xx
Wolfgang Denkb87dfd22006-07-19 13:50:38 +02002488
Wolfgang Denk699f0512008-07-15 22:22:44 +02002489ZUMA_config: unconfig
Stefan Roesea47a12b2010-04-15 16:07:28 +02002490 @$(MKCONFIG) $(@:_config=) powerpc 74xx_7xx evb64260
Wolfgang Denk699f0512008-07-15 22:22:44 +02002491
wdenk7ebf7442002-11-02 23:17:16 +00002492#========================================================================
2493# ARM
2494#========================================================================
2495#########################################################################
2496## StrongARM Systems
2497#########################################################################
2498
wdenkea66bc82004-04-15 23:23:39 +00002499assabet_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002500 @$(MKCONFIG) $(@:_config=) arm sa1100 assabet
wdenkea66bc82004-04-15 23:23:39 +00002501
wdenk7ebf7442002-11-02 23:17:16 +00002502dnp1110_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002503 @$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110
wdenk7ebf7442002-11-02 23:17:16 +00002504
wdenk855a4962004-03-14 18:23:55 +00002505gcplus_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002506 @$(MKCONFIG) $(@:_config=) arm sa1100 gcplus
wdenk855a4962004-03-14 18:23:55 +00002507
2508lart_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002509 @$(MKCONFIG) $(@:_config=) arm sa1100 lart
wdenk855a4962004-03-14 18:23:55 +00002510
wdenk7ebf7442002-11-02 23:17:16 +00002511shannon_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002512 @$(MKCONFIG) $(@:_config=) arm sa1100 shannon
wdenk7ebf7442002-11-02 23:17:16 +00002513
2514#########################################################################
wdenk2e5983d2003-07-15 20:04:06 +00002515## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00002516#########################################################################
2517
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +08002518a320evb_config : unconfig
2519 @$(MKCONFIG) $(@:_config=) arm arm920t a320evb faraday a320
2520
Ulf Samuelssona4b46ed2008-04-12 20:56:03 +02002521#########################################################################
2522## Atmel AT91RM9200 Systems
2523#########################################################################
Stelian Pop20b197c2008-01-20 19:49:21 +00002524
wdenka85f9f22005-04-06 13:52:31 +00002525at91rm9200dk_config : unconfig
Haavard Skinnemoen65230102008-02-22 11:40:50 +00002526 @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk atmel at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00002527
Ulf Samuelssoncb82a532009-03-27 23:26:43 +01002528at91rm9200ek_config : unconfig
2529 @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200ek atmel at91rm9200
2530
wdenka85f9f22005-04-06 13:52:31 +00002531cmc_pu2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002532 @$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00002533
Tom Rixd8380c92009-09-27 07:47:24 -05002534CPUAT91_RAM_config \
2535CPUAT91_config : unconfig
2536 @mkdir -p $(obj)include
2537 @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002538 @$(MKCONFIG) -n $@ -a cpuat91 arm arm920t cpuat91 eukrea at91rm9200
Tom Rixd8380c92009-09-27 07:47:24 -05002539
Wolfgang Denk645da512005-10-05 02:00:09 +02002540csb637_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002541 @$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200
Wolfgang Denk645da512005-10-05 02:00:09 +02002542
Jens Scharsig77e72732010-02-03 22:48:09 +01002543eb_cpux9k2_config : unconfig
2544 @$(MKCONFIG) $(@:_config=) arm arm920t eb_cpux9k2 BuS at91
2545
Ulf Samuelssona4b46ed2008-04-12 20:56:03 +02002546kb9202_config : unconfig
2547 @$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200
2548
Timo Tuunainenea8d9892008-02-01 10:09:03 +00002549m501sk_config : unconfig
2550 @$(MKCONFIG) $(@:_config=) arm arm920t m501sk NULL at91rm9200
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002551
Wolfgang Denk699f0512008-07-15 22:22:44 +02002552mp2usb_config : unconfig
2553 @$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200
2554
Ulf Samuelssona4b46ed2008-04-12 20:56:03 +02002555#########################################################################
Matthias Weisser34be1062010-01-18 10:58:13 +01002556## ARM926EJ-S Systems
Ulf Samuelssona4b46ed2008-04-12 20:56:03 +02002557#########################################################################
2558
Sergey Lapin10794322008-10-31 12:28:43 +01002559afeb9260_config: unconfig
2560 @$(MKCONFIG) $(@:_config=) arm arm926ejs afeb9260 NULL at91
2561
Ulf Samuelssona4b46ed2008-04-12 20:56:03 +02002562at91cap9adk_config : unconfig
Jean-Christophe PLAGNIOL-VILLARD8ed2f5f2008-07-05 23:11:11 +02002563 @$(MKCONFIG) $(@:_config=) arm arm926ejs at91cap9adk atmel at91
Ulf Samuelssona4b46ed2008-04-12 20:56:03 +02002564
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002565at91sam9260ek_nandflash_config \
2566at91sam9260ek_dataflash_cs0_config \
2567at91sam9260ek_dataflash_cs1_config \
Nicolas Ferredf486b12009-03-22 14:48:16 +01002568at91sam9260ek_config \
2569at91sam9g20ek_nandflash_config \
2570at91sam9g20ek_dataflash_cs0_config \
2571at91sam9g20ek_dataflash_cs1_config \
2572at91sam9g20ek_config : unconfig
Jean-Christophe PLAGNIOL-VILLARDe12d9a82009-01-03 17:22:24 +01002573 @mkdir -p $(obj)include
Nicolas Ferredf486b12009-03-22 14:48:16 +01002574 @if [ "$(findstring 9g20,$@)" ] ; then \
2575 echo "#define CONFIG_AT91SAM9G20EK 1" >>$(obj)include/config.h ; \
Nicolas Ferredf486b12009-03-22 14:48:16 +01002576 else \
2577 echo "#define CONFIG_AT91SAM9260EK 1" >>$(obj)include/config.h ; \
2578 fi;
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002579 @if [ "$(findstring _nandflash,$@)" ] ; then \
2580 echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002581 elif [ "$(findstring dataflash_cs0,$@)" ] ; then \
2582 echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002583 else \
2584 echo "#define CONFIG_SYS_USE_DATAFLASH_CS1 1" >>$(obj)include/config.h ; \
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002585 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002586 @$(MKCONFIG) -n $@ -a at91sam9260ek arm arm926ejs at91sam9260ek atmel at91
Ulf Samuelssona4b46ed2008-04-12 20:56:03 +02002587
Nicolas Ferre4e170b12009-01-06 21:13:14 +01002588at91sam9xeek_nandflash_config \
2589at91sam9xeek_dataflash_cs0_config \
2590at91sam9xeek_dataflash_cs1_config \
2591at91sam9xeek_config : unconfig
2592 @mkdir -p $(obj)include
2593 @if [ "$(findstring _nandflash,$@)" ] ; then \
2594 echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
Nicolas Ferre4e170b12009-01-06 21:13:14 +01002595 elif [ "$(findstring dataflash_cs0,$@)" ] ; then \
2596 echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \
Nicolas Ferre4e170b12009-01-06 21:13:14 +01002597 else \
2598 echo "#define CONFIG_SYS_USE_DATAFLASH_CS1 1" >>$(obj)include/config.h ; \
Nicolas Ferre4e170b12009-01-06 21:13:14 +01002599 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002600 @$(MKCONFIG) -n $@ -a at91sam9260ek arm arm926ejs at91sam9260ek atmel at91
Nicolas Ferre4e170b12009-01-06 21:13:14 +01002601
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002602at91sam9261ek_nandflash_config \
2603at91sam9261ek_dataflash_cs0_config \
2604at91sam9261ek_dataflash_cs3_config \
Sedji Gaouaou5ccc2d92009-06-25 17:04:15 +02002605at91sam9261ek_config \
2606at91sam9g10ek_nandflash_config \
2607at91sam9g10ek_dataflash_cs0_config \
2608at91sam9g10ek_dataflash_cs3_config \
2609at91sam9g10ek_config : unconfig
Jean-Christophe PLAGNIOL-VILLARDe12d9a82009-01-03 17:22:24 +01002610 @mkdir -p $(obj)include
Sedji Gaouaou5ccc2d92009-06-25 17:04:15 +02002611 @if [ "$(findstring 9g10,$@)" ] ; then \
2612 echo "#define CONFIG_AT91SAM9G10EK 1" >>$(obj)include/config.h ; \
Sedji Gaouaou5ccc2d92009-06-25 17:04:15 +02002613 else \
2614 echo "#define CONFIG_AT91SAM9261EK 1" >>$(obj)include/config.h ; \
2615 fi;
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002616 @if [ "$(findstring _nandflash,$@)" ] ; then \
2617 echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
Sedji Gaouaou5ccc2d92009-06-25 17:04:15 +02002618 elif [ "$(findstring dataflash_cs0,$@)" ] ; then \
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002619 echo "#define CONFIG_SYS_USE_DATAFLASH_CS3 1" >>$(obj)include/config.h ; \
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002620 else \
2621 echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002622 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002623 @$(MKCONFIG) -n $@ -a at91sam9261ek arm arm926ejs at91sam9261ek atmel at91
Jean-Christophe PLAGNIOL-VILLARD28962f52008-11-01 10:47:59 +01002624
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +02002625at91sam9263ek_norflash_config \
2626at91sam9263ek_norflash_boot_config \
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002627at91sam9263ek_nandflash_config \
2628at91sam9263ek_dataflash_config \
2629at91sam9263ek_dataflash_cs0_config \
Jean-Christophe PLAGNIOL-VILLARD28962f52008-11-01 10:47:59 +01002630at91sam9263ek_config : unconfig
Jean-Christophe PLAGNIOL-VILLARDe12d9a82009-01-03 17:22:24 +01002631 @mkdir -p $(obj)include
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002632 @if [ "$(findstring _nandflash,$@)" ] ; then \
2633 echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +02002634 elif [ "$(findstring norflash,$@)" ] ; then \
2635 echo "#define CONFIG_SYS_USE_NORFLASH 1" >>$(obj)include/config.h ; \
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002636 else \
2637 echo "#define CONFIG_SYS_USE_DATAFLASH 1" >>$(obj)include/config.h ; \
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002638 fi;
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +02002639 @if [ "$(findstring norflash_boot,$@)" ] ; then \
2640 echo "#define CONFIG_SYS_USE_BOOT_NORFLASH 1" >>$(obj)include/config.h ; \
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +02002641 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002642 @$(MKCONFIG) -n $@ -a at91sam9263ek arm arm926ejs at91sam9263ek atmel at91
Jean-Christophe PLAGNIOL-VILLARD28962f52008-11-01 10:47:59 +01002643
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002644at91sam9rlek_nandflash_config \
2645at91sam9rlek_dataflash_config \
2646at91sam9rlek_dataflash_cs0_config \
Jean-Christophe PLAGNIOL-VILLARD28962f52008-11-01 10:47:59 +01002647at91sam9rlek_config : unconfig
Jean-Christophe PLAGNIOL-VILLARDe12d9a82009-01-03 17:22:24 +01002648 @mkdir -p $(obj)include
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002649 @if [ "$(findstring _nandflash,$@)" ] ; then \
2650 echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002651 else \
2652 echo "#define CONFIG_SYS_USE_DATAFLASH 1" >>$(obj)include/config.h ; \
Nicolas Ferre89a7a872008-12-06 13:11:14 +01002653 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002654 @$(MKCONFIG) -n $@ -a at91sam9rlek arm arm926ejs at91sam9rlek atmel at91
Jean-Christophe PLAGNIOL-VILLARD28962f52008-11-01 10:47:59 +01002655
Tom Rix23b80982009-09-27 11:10:09 -05002656CPU9G20_128M_config \
2657CPU9G20_config \
2658CPU9260_128M_config \
2659CPU9260_config : unconfig
2660 @mkdir -p $(obj)include
2661 @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002662 @$(MKCONFIG) -n $@ -a cpu9260 arm arm926ejs cpu9260 eukrea at91
Tom Rix23b80982009-09-27 11:10:09 -05002663
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +02002664meesc_config : unconfig
2665 @$(MKCONFIG) $(@:_config=) arm arm926ejs meesc esd at91
2666
Ilko Iliev32949232009-06-12 21:20:39 +02002667pm9261_config : unconfig
2668 @$(MKCONFIG) $(@:_config=) arm arm926ejs pm9261 ronetix at91
2669
Sedji Gaouaou22ee6472009-07-09 10:16:29 +02002670at91sam9m10g45ek_nandflash_config \
2671at91sam9m10g45ek_dataflash_config \
2672at91sam9m10g45ek_dataflash_cs0_config \
2673at91sam9m10g45ek_config \
2674at91sam9g45ekes_nandflash_config \
2675at91sam9g45ekes_dataflash_config \
2676at91sam9g45ekes_dataflash_cs0_config \
2677at91sam9g45ekes_config : unconfig
2678 @mkdir -p $(obj)include
2679 @if [ "$(findstring 9m10,$@)" ] ; then \
2680 echo "#define CONFIG_AT91SAM9M10G45EK 1" >>$(obj)include/config.h ; \
Sedji Gaouaou22ee6472009-07-09 10:16:29 +02002681 else \
2682 echo "#define CONFIG_AT91SAM9G45EKES 1" >>$(obj)include/config.h ; \
2683 fi;
Sedji Gaouaou22ee6472009-07-09 10:16:29 +02002684 @if [ "$(findstring _nandflash,$@)" ] ; then \
2685 echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
Sedji Gaouaou22ee6472009-07-09 10:16:29 +02002686 else \
2687 echo "#define CONFIG_ATMEL_SPI 1" >>$(obj)include/config.h ; \
Sedji Gaouaou22ee6472009-07-09 10:16:29 +02002688 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002689 @$(MKCONFIG) -n $@ -a at91sam9m10g45ek arm arm926ejs at91sam9m10g45ek atmel at91
Sedji Gaouaou22ee6472009-07-09 10:16:29 +02002690
Daniel Gorsulowski44d80252010-01-25 10:50:41 +01002691otc570_config : unconfig
2692 @$(MKCONFIG) $(@:_config=) arm arm926ejs otc570 esd at91
2693
Ilko Ilievf0a2c7b2009-04-16 21:30:48 +02002694pm9263_config : unconfig
2695 @$(MKCONFIG) $(@:_config=) arm arm926ejs pm9263 ronetix at91
2696
Albin Tonnerre94539672009-08-24 18:03:26 +02002697SBC35_A9G20_NANDFLASH_config \
2698SBC35_A9G20_EEPROM_config \
2699SBC35_A9G20_config : unconfig
2700 @mkdir -p $(obj)include
2701 @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002702 @$(MKCONFIG) -n $@ -a sbc35_a9g20 arm arm926ejs sbc35_a9g20 calao at91
Albin Tonnerre94539672009-08-24 18:03:26 +02002703
Albin Tonnerre2dc851e2009-08-20 16:04:49 +02002704TNY_A9G20_NANDFLASH_config \
2705TNY_A9G20_EEPROM_config \
2706TNY_A9G20_config \
2707TNY_A9260_NANDFLASH_config \
2708TNY_A9260_EEPROM_config \
2709TNY_A9260_config : unconfig
2710 @mkdir -p $(obj)include
2711 @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002712 @$(MKCONFIG) -n $@ -a tny_a9260 arm arm926ejs tny_a9260 calao at91
Albin Tonnerre2dc851e2009-08-20 16:04:49 +02002713
Wolfgang Denk74f43042005-09-25 01:48:28 +02002714########################################################################
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002715## ARM Integrator boards - see doc/README-integrator for more info.
2716integratorap_config \
2717ap_config \
2718ap966_config \
2719ap922_config \
2720ap922_XA10_config \
2721ap7_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01002722ap720t_config \
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002723ap920t_config \
2724ap926ejs_config \
2725ap946es_config: unconfig
Jean-Christophe PLAGNIOL-VILLARD576afd42009-05-17 00:58:37 +02002726 @board/armltd/integrator/split_by_variant.sh ap $@
wdenk3d3befa2004-03-14 15:06:13 +00002727
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002728integratorcp_config \
2729cp_config \
2730cp920t_config \
2731cp926ejs_config \
2732cp946es_config \
2733cp1136_config \
2734cp966_config \
2735cp922_config \
2736cp922_XA10_config \
2737cp1026_config: unconfig
Jean-Christophe PLAGNIOL-VILLARD576afd42009-05-17 00:58:37 +02002738 @board/armltd/integrator/split_by_variant.sh cp $@
wdenk25d67122004-12-10 11:40:40 +00002739
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002740da830evm_config \
2741davinci_dvevm_config \
2742davinci_schmoogie_config \
2743davinci_sffsdr_config \
2744davinci_sonata_config \
2745davinci_dm355evm_config \
2746davinci_dm355leopard_config \
2747davinci_dm365evm_config \
2748davinci_dm6467evm_config : unconfig
2749 @$(MKCONFIG) -n $@ $(@:_config=) arm arm926ejs \
2750 $(subst davinci_,,$(@:_config=)) davinci davinci
Sandeep Paulraj6ab176d2009-10-10 12:00:47 -04002751
Siddarth Gore16b76702010-03-18 20:25:40 +05302752guruplug_config: unconfig
2753 @$(MKCONFIG) $(@:_config=) arm arm926ejs $(@:_config=) Marvell kirkwood
2754
Heiko Schocherbbe31092010-03-05 07:36:33 +01002755magnesium_config \
Ilya Yanok10bc2412009-08-11 02:32:09 +04002756imx27lite_config: unconfig
2757 @$(MKCONFIG) $(@:_config=) arm arm926ejs imx27lite logicpd mx27
2758
wdenkf832d8a2004-06-10 21:55:33 +00002759lpd7a400_config \
2760lpd7a404_config: unconfig
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002761 @$(MKCONFIG) -n $(@:_config=) arm lh7a40x lpd7a40x
wdenk3d3befa2004-03-14 15:06:13 +00002762
Prafulla Wadaskar4abc5bf2009-07-16 20:58:01 +05302763mv88f6281gtw_ge_config: unconfig
2764 @$(MKCONFIG) $(@:_config=) arm arm926ejs $(@:_config=) Marvell kirkwood
2765
wdenk281e00a2004-08-01 22:48:16 +00002766mx1ads_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002767 @$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002768
2769mx1fs2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002770 @$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002771
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002772netstar_config: unconfig
Peter Pearsef4e7cbf2008-02-01 16:49:08 +00002773 @$(MKCONFIG) $(@:_config=) arm arm925t netstar
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002774
Alessandro Rubiniee1363f2009-06-22 09:18:37 +02002775nhk8815_config \
2776nhk8815_onenand_config: unconfig
Alessandro Rubinid5254f12009-01-24 18:10:37 +01002777 @mkdir -p $(obj)include
2778 @ > $(obj)include/config.h
2779 @if [ "$(findstring _onenand, $@)" ] ; then \
2780 echo "#define CONFIG_BOOT_ONENAND" >> $(obj)include/config.h; \
Alessandro Rubinid5254f12009-01-24 18:10:37 +01002781 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002782 @$(MKCONFIG) -n $@ -a nhk8815 arm arm926ejs nhk8815 st nomadik
Alessandro Rubinid5254f12009-01-24 18:10:37 +01002783
wdenk2e5983d2003-07-15 20:04:06 +00002784omap1510inn_config : unconfig
Jean-Christophe PLAGNIOL-VILLARD0a0e4ba2009-08-23 16:32:38 +02002785 @$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn ti
wdenk2e5983d2003-07-15 20:04:06 +00002786
Ulf Samuelssona4b46ed2008-04-12 20:56:03 +02002787xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
2788
wdenk63e73c92004-02-23 22:22:28 +00002789omap1610inn_config \
2790omap1610inn_cs0boot_config \
2791omap1610inn_cs3boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00002792omap1610inn_cs_autoboot_config \
wdenk63e73c92004-02-23 22:22:28 +00002793omap1610h2_config \
2794omap1610h2_cs0boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00002795omap1610h2_cs3boot_config \
2796omap1610h2_cs_autoboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002797 @mkdir -p $(obj)include
wdenk63e73c92004-02-23 22:22:28 +00002798 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002799 echo "#define CONFIG_CS0_BOOT" >> .$(obj)include/config.h ; \
wdenk3ff02c22004-06-09 15:25:53 +00002800 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002801 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)include/config.h ; \
wdenk63e73c92004-02-23 22:22:28 +00002802 else \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02002803 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenk63e73c92004-02-23 22:22:28 +00002804 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002805 @$(MKCONFIG) -n $@ -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn ti omap
wdenk6f213472003-08-29 22:00:43 +00002806
Wolfgang Denk699f0512008-07-15 22:22:44 +02002807omap5912osk_config : unconfig
Jean-Christophe PLAGNIOL-VILLARD0a0e4ba2009-08-23 16:32:38 +02002808 @$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk ti omap
Wolfgang Denk699f0512008-07-15 22:22:44 +02002809
Simon Kagstrome92daeb2009-09-22 04:01:01 +05302810openrd_base_config: unconfig
2811 @$(MKCONFIG) $(@:_config=) arm arm926ejs $(@:_config=) Marvell kirkwood
2812
Ulf Samuelssona4b46ed2008-04-12 20:56:03 +02002813xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
2814
wdenka56bd922004-06-06 23:13:55 +00002815omap730p2_config \
2816omap730p2_cs0boot_config \
2817omap730p2_cs3boot_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002818 @mkdir -p $(obj)include
wdenka56bd922004-06-06 23:13:55 +00002819 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002820 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00002821 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002822 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00002823 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002824 @$(MKCONFIG) -n $@ -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 ti omap
wdenka56bd922004-06-06 23:13:55 +00002825
Prafulla Wadaskarfbc83652009-07-16 21:02:24 +05302826rd6281a_config: unconfig
2827 @$(MKCONFIG) $(@:_config=) arm arm926ejs $(@:_config=) Marvell kirkwood
2828
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02002829sbc2410x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002830 @$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02002831
wdenk281e00a2004-08-01 22:48:16 +00002832scb9328_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002833 @$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00002834
Prafulla Wadaskar55dd4ba2009-07-16 20:58:00 +05302835sheevaplug_config: unconfig
2836 @$(MKCONFIG) $(@:_config=) arm arm926ejs $(@:_config=) Marvell kirkwood
2837
wdenk7ebf7442002-11-02 23:17:16 +00002838smdk2400_config : unconfig
Jean-Christophe PLAGNIOL-VILLARDcfca3382009-01-28 21:57:59 +01002839 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 samsung s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002840
2841smdk2410_config : unconfig
Jean-Christophe PLAGNIOL-VILLARDcfca3382009-01-28 21:57:59 +01002842 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 samsung s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002843
Vipin KUMAR080cfee2010-01-15 19:15:52 +05302844spear300_config \
Vipin KUMAR7da69232010-01-15 19:15:53 +05302845spear310_config \
2846spear320_config : unconfig
Vipin KUMAR7e074152010-01-15 19:15:50 +05302847 @$(MKCONFIG) -n $@ -t $(@:_config=) spear3xx arm arm926ejs $(@:_config=) spear spear
2848
Vipin KUMAR566c9c12010-01-15 19:15:48 +05302849spear600_config : unconfig
2850 @$(MKCONFIG) -n $@ -t $(@:_config=) spear6xx arm arm926ejs $(@:_config=) spear spear
2851
Heiko Schocher67fa8c22010-02-22 16:43:02 +05302852suen3_config: unconfig
2853 @$(MKCONFIG) $(@:_config=) arm arm926ejs km_arm keymile kirkwood
2854
Jean-Christophe PLAGNIOL-VILLARD47fd3bf2009-01-28 21:58:03 +01002855SX1_stdout_serial_config \
2856SX1_config: unconfig
2857 @mkdir -p $(obj)include
2858 @if [ "$(findstring _stdout_serial_, $@)" ] ; then \
2859 echo "#undef CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
Jean-Christophe PLAGNIOL-VILLARD47fd3bf2009-01-28 21:58:03 +01002860 else \
2861 echo "#define CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
Jean-Christophe PLAGNIOL-VILLARD47fd3bf2009-01-28 21:58:03 +01002862 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002863 @$(MKCONFIG) -n $@ SX1 arm arm925t sx1
wdenk2d24a3a2004-06-09 21:50:45 +00002864
wdenkb2001f22003-12-20 22:45:10 +00002865# TRAB default configuration: 8 MB Flash, 32 MB RAM
Ulf Samuelssona4b46ed2008-04-12 20:56:03 +02002866xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
2867
wdenk43d96162003-03-06 00:02:04 +00002868trab_config \
wdenkb0639ca2003-09-17 22:48:07 +00002869trab_bigram_config \
2870trab_bigflash_config \
wdenkf54ebdf2003-09-17 15:10:32 +00002871trab_old_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002872 @mkdir -p $(obj)include
2873 @mkdir -p $(obj)board/trab
wdenkb0639ca2003-09-17 22:48:07 +00002874 @[ -z "$(findstring _bigram,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002875 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2876 echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00002877 }
2878 @[ -z "$(findstring _bigflash,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002879 { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \
2880 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002881 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenkb0639ca2003-09-17 22:48:07 +00002882 }
wdenkf54ebdf2003-09-17 15:10:32 +00002883 @[ -z "$(findstring _old,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002884 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
2885 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002886 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenk43d96162003-03-06 00:02:04 +00002887 }
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002888 @$(MKCONFIG) -n $@ -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00002889
John Rigby6895d452010-01-25 23:12:58 -07002890tx25_config : unconfig
John Rigby6895d452010-01-25 23:12:58 -07002891 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02002892 @$(MKCONFIG) $(@:_config=) arm arm926ejs tx25 karo mx25
John Rigby6895d452010-01-25 23:12:58 -07002893
wdenk1cb8e982003-03-06 21:55:29 +00002894VCMA9_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002895 @$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0
wdenk1cb8e982003-03-06 21:55:29 +00002896
Wolfgang Denk699f0512008-07-15 22:22:44 +02002897#########################################################################
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002898# ARM supplied Versatile development boards
Wolfgang Denk699f0512008-07-15 22:22:44 +02002899#########################################################################
2900
2901cm4008_config : unconfig
2902 @$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695
2903
2904cm41xx_config : unconfig
2905 @$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695
2906
Wolfgang Denk87cb6862005-10-06 17:08:18 +02002907versatile_config \
2908versatileab_config \
2909versatilepb_config : unconfig
Jean-Christophe PLAGNIOL-VILLARDe4943ec2009-01-29 12:07:21 +01002910 @board/armltd/versatile/split_by_variant.sh $@
wdenk074cff02004-02-24 00:16:43 +00002911
wdenk3c2b3d42005-04-05 23:32:21 +00002912voiceblue_config: unconfig
Ladislav Michl4fedfdd2007-12-07 00:42:32 +01002913 @$(MKCONFIG) $(@:_config=) arm arm925t voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00002914
wdenk074cff02004-02-24 00:16:43 +00002915#########################################################################
2916## S3C44B0 Systems
2917#########################################################################
2918
2919B2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002920 @$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave
wdenk074cff02004-02-24 00:16:43 +00002921
wdenk7ebf7442002-11-02 23:17:16 +00002922#########################################################################
2923## ARM720T Systems
2924#########################################################################
2925
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002926armadillo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002927 @$(MKCONFIG) $(@:_config=) arm arm720t armadillo
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02002928
wdenk7ebf7442002-11-02 23:17:16 +00002929ep7312_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002930 @$(MKCONFIG) $(@:_config=) arm arm720t ep7312
wdenk7ebf7442002-11-02 23:17:16 +00002931
wdenk2d24a3a2004-06-09 21:50:45 +00002932impa7_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002933 @$(MKCONFIG) $(@:_config=) arm arm720t impa7
wdenk2d24a3a2004-06-09 21:50:45 +00002934
wdenk2d1a5372004-02-23 19:30:57 +00002935modnet50_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002936 @$(MKCONFIG) $(@:_config=) arm arm720t modnet50
wdenk2d1a5372004-02-23 19:30:57 +00002937
wdenk39539882004-07-01 16:30:44 +00002938evb4510_config : unconfig
Jean-Christophe PLAGNIOL-VILLARD281dfb02009-03-29 23:01:36 +02002939 @$(MKCONFIG) $(@:_config=) arm arm720t evb4510 NULL s3c4510b
wdenk39539882004-07-01 16:30:44 +00002940
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002941lpc2292sodimm_config: unconfig
Peter Pearseb0d8f5b2007-05-09 11:37:56 +01002942 @$(MKCONFIG) $(@:_config=) arm arm720t lpc2292sodimm NULL lpc2292
2943
2944SMN42_config : unconfig
2945 @$(MKCONFIG) $(@:_config=) arm arm720t SMN42 siemens lpc2292
Gary Jennejohn6bd24472007-01-24 12:16:56 +01002946
wdenk7ebf7442002-11-02 23:17:16 +00002947#########################################################################
Dirk Behmef904cdb2009-01-27 18:19:12 +01002948## ARM CORTEX Systems
2949#########################################################################
2950
Frederik Kriewitzc35d7cf2009-08-23 12:56:42 +02002951devkit8000_config : unconfig
2952 @$(MKCONFIG) $(@:_config=) arm arm_cortexa8 devkit8000 timll omap3
2953
Dirk Behmef904cdb2009-01-27 18:19:12 +01002954omap3_beagle_config : unconfig
Jean-Christophe PLAGNIOL-VILLARD0a0e4ba2009-08-23 16:32:38 +02002955 @$(MKCONFIG) $(@:_config=) arm arm_cortexa8 beagle ti omap3
Dirk Behmef904cdb2009-01-27 18:19:12 +01002956
Dirk Behme9d0fc812009-01-28 21:39:57 +01002957omap3_overo_config : unconfig
Jean-Christophe PLAGNIOL-VILLARD127f9ae2009-08-23 16:32:40 +02002958 @$(MKCONFIG) $(@:_config=) arm arm_cortexa8 overo NULL omap3
Dirk Behme9d0fc812009-01-28 21:39:57 +01002959
Dirk Behmead9bc8e2009-01-28 21:39:58 +01002960omap3_evm_config : unconfig
Jean-Christophe PLAGNIOL-VILLARD0a0e4ba2009-08-23 16:32:38 +02002961 @$(MKCONFIG) $(@:_config=) arm arm_cortexa8 evm ti omap3
Dirk Behmead9bc8e2009-01-28 21:39:58 +01002962
Dirk Behme2be2c6c2009-01-28 21:39:58 +01002963omap3_pandora_config : unconfig
Jean-Christophe PLAGNIOL-VILLARD127f9ae2009-08-23 16:32:40 +02002964 @$(MKCONFIG) $(@:_config=) arm arm_cortexa8 pandora NULL omap3
Dirk Behme2be2c6c2009-01-28 21:39:58 +01002965
Tom Rixe63e5902009-10-17 12:41:06 -05002966omap3_sdp3430_config : unconfig
2967 @$(MKCONFIG) $(@:_config=) arm arm_cortexa8 sdp3430 ti omap3
2968
Dirk Behme7379f452009-01-28 21:40:16 +01002969omap3_zoom1_config : unconfig
Jean-Christophe PLAGNIOL-VILLARD350f3ac2009-08-23 16:32:39 +02002970 @$(MKCONFIG) $(@:_config=) arm arm_cortexa8 zoom1 logicpd omap3
Dirk Behme7379f452009-01-28 21:40:16 +01002971
Tom Rix376aee72009-05-15 23:48:36 +02002972omap3_zoom2_config : unconfig
Jean-Christophe PLAGNIOL-VILLARD350f3ac2009-08-23 16:32:39 +02002973 @$(MKCONFIG) $(@:_config=) arm arm_cortexa8 zoom2 logicpd omap3
Tom Rix376aee72009-05-15 23:48:36 +02002974
Minkyu Kang8bc4ee92009-10-01 17:20:40 +09002975smdkc100_config: unconfig
2976 @$(MKCONFIG) $(@:_config=) arm arm_cortexa8 smdkc100 samsung s5pc1xx
2977
Dirk Behmef904cdb2009-01-27 18:19:12 +01002978#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002979## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00002980#########################################################################
2981
Michael Schwingen799891e2008-01-18 00:04:28 +01002982actux1_config : unconfig
2983 @$(MKCONFIG) $(@:_config=) arm ixp actux1
2984
2985actux2_config : unconfig
2986 @$(MKCONFIG) $(@:_config=) arm ixp actux2
2987
2988actux3_config : unconfig
2989 @$(MKCONFIG) $(@:_config=) arm ixp actux3
2990
2991actux4_config : unconfig
2992 @$(MKCONFIG) $(@:_config=) arm ixp actux4
2993
wdenkfabd46a2004-07-10 23:11:10 +00002994cerf250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002995 @$(MKCONFIG) $(@:_config=) arm pxa cerf250
wdenkfabd46a2004-07-10 23:11:10 +00002996
wdenk7ebf7442002-11-02 23:17:16 +00002997cradle_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002998 @$(MKCONFIG) $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00002999
3000csb226_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003001 @$(MKCONFIG) $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00003002
Jean-Christophe PLAGNIOL-VILLARD91c82072008-03-02 16:12:31 +01003003delta_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003004 @$(MKCONFIG) $(@:_config=) arm pxa delta
Wolfgang Denk0be248f2006-03-07 00:22:36 +01003005
wdenk43d96162003-03-06 00:02:04 +00003006innokom_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003007 @$(MKCONFIG) $(@:_config=) arm pxa innokom
wdenk43d96162003-03-06 00:02:04 +00003008
wdenk2d5b5612003-10-14 19:43:55 +00003009ixdp425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003010 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
wdenk2d5b5612003-10-14 19:43:55 +00003011
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02003012ixdpg425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003013 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02003014
wdenk43d96162003-03-06 00:02:04 +00003015lubbock_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003016 @$(MKCONFIG) $(@:_config=) arm pxa lubbock
wdenk43d96162003-03-06 00:02:04 +00003017
Heiko Schocher5720df72006-05-02 07:51:46 +02003018pleb2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003019 @$(MKCONFIG) $(@:_config=) arm pxa pleb2
Heiko Schocher5720df72006-05-02 07:51:46 +02003020
wdenk52f52c12003-06-19 23:04:19 +00003021logodl_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003022 @$(MKCONFIG) $(@:_config=) arm pxa logodl
wdenk52f52c12003-06-19 23:04:19 +00003023
Stefan Roese9d8d5a52007-01-18 16:05:47 +01003024pdnb3_config \
Wolfgang Denkf9301e12008-03-04 14:58:31 +01003025scpu_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02003026 @mkdir -p $(obj)include
Stefan Roese9d8d5a52007-01-18 16:05:47 +01003027 @if [ "$(findstring scpu_,$@)" ] ; then \
Wolfgang Denkf9301e12008-03-04 14:58:31 +01003028 echo "#define CONFIG_SCPU" >>$(obj)include/config.h ; \
Stefan Roese9d8d5a52007-01-18 16:05:47 +01003029 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02003030 @$(MKCONFIG) -n $@ -a pdnb3 arm ixp pdnb3 prodrive
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02003031
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02003032pxa255_idp_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003033 @$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02003034
Stefano Babic040f8f62009-07-01 20:40:41 +02003035polaris_config \
stefano babic5e5803e2007-08-30 23:01:49 +02003036trizepsiv_config : unconfig
Stefano Babic040f8f62009-07-01 20:40:41 +02003037 @mkdir -p $(obj)include
3038 @if [ "$(findstring polaris,$@)" ] ; then \
3039 echo "#define CONFIG_POLARIS 1" >>$(obj)include/config.h ; \
3040 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02003041 @$(MKCONFIG) -n $@ -a trizepsiv arm pxa trizepsiv
stefano babic5e5803e2007-08-30 23:01:49 +02003042
wdenk3e386912003-04-05 00:53:31 +00003043wepep250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003044 @$(MKCONFIG) $(@:_config=) arm pxa wepep250
wdenk3e386912003-04-05 00:53:31 +00003045
wdenk4ec3a7f2004-09-28 16:44:41 +00003046xaeniax_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003047 @$(MKCONFIG) $(@:_config=) arm pxa xaeniax
wdenk4ec3a7f2004-09-28 16:44:41 +00003048
wdenkefa329c2004-03-23 20:18:25 +00003049xm250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003050 @$(MKCONFIG) $(@:_config=) arm pxa xm250
wdenkefa329c2004-03-23 20:18:25 +00003051
wdenkca0e7742004-06-09 15:37:23 +00003052xsengine_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003053 @$(MKCONFIG) $(@:_config=) arm pxa xsengine
wdenkca0e7742004-06-09 15:37:23 +00003054
Markus Klotzbüchere0269572006-02-07 20:04:48 +01003055zylonite_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02003056 @$(MKCONFIG) $(@:_config=) arm pxa zylonite
Markus Klotzbüchere0269572006-02-07 20:04:48 +01003057
wdenk8ed96042005-01-09 23:16:25 +00003058#########################################################################
3059## ARM1136 Systems
3060#########################################################################
wdenk8ed96042005-01-09 23:16:25 +00003061
Peter Pearse5ca98812007-11-09 15:24:26 +00003062apollon_config : unconfig
Wolfgang Denk8cbf4e42009-12-06 00:26:19 +01003063 @mkdir -p $(obj)include
Kyungmin Park751b9b52008-01-17 16:43:25 +09003064 @echo "#define CONFIG_ONENAND_U_BOOT" > $(obj)include/config.h
Kyungmin Park751b9b52008-01-17 16:43:25 +09003065 @echo "CONFIG_ONENAND_U_BOOT = y" >> $(obj)include/config.mk
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02003066 @$(MKCONFIG) $(@:_config=) arm arm1136 apollon NULL omap24xx
Peter Pearse5ca98812007-11-09 15:24:26 +00003067
Sascha Hauercaebc952008-03-26 20:41:09 +01003068imx31_litekit_config : unconfig
Jean-Christophe PLAGNIOL-VILLARD350f3ac2009-08-23 16:32:39 +02003069 @$(MKCONFIG) $(@:_config=) arm arm1136 imx31_litekit logicpd mx31
Sascha Hauercaebc952008-03-26 20:41:09 +01003070
Guennadi Liakhovetskia2bb7102009-02-24 10:44:02 +01003071imx31_phycore_eet_config \
Sascha Hauer5ad86212008-03-26 20:41:17 +01003072imx31_phycore_config : unconfig
Guennadi Liakhovetski69c5bf22009-04-05 00:37:07 +02003073 @mkdir -p $(obj)include
Guennadi Liakhovetskia2bb7102009-02-24 10:44:02 +01003074 @if [ -n "$(findstring _eet_,$@)" ]; then \
3075 echo "#define CONFIG_IMX31_PHYCORE_EET" >> $(obj)include/config.h; \
3076 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02003077 @$(MKCONFIG) -n $@ -a imx31_phycore arm arm1136 imx31_phycore NULL mx31
Sascha Hauer5ad86212008-03-26 20:41:17 +01003078
Guennadi Liakhovetskib5dc9b32008-04-14 10:53:12 +02003079mx31ads_config : unconfig
Jean-Christophe PLAGNIOL-VILLARDf5acb9f2008-08-13 01:40:09 +02003080 @$(MKCONFIG) $(@:_config=) arm arm1136 mx31ads freescale mx31
Guennadi Liakhovetskib5dc9b32008-04-14 10:53:12 +02003081
Magnus Liljad08e5ca2009-07-04 10:31:24 +02003082mx31pdk_config \
3083mx31pdk_nand_config : unconfig
3084 @mkdir -p $(obj)include
3085 @if [ -n "$(findstring _nand_,$@)" ]; then \
3086 echo "#define CONFIG_NAND_U_BOOT" >> $(obj)include/config.h; \
3087 else \
3088 echo "#define CONFIG_SKIP_LOWLEVEL_INIT" >> $(obj)include/config.h; \
3089 echo "#define CONFIG_SKIP_RELOCATE_UBOOT" >> $(obj)include/config.h; \
3090 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02003091 @$(MKCONFIG) -n $@ -a mx31pdk arm arm1136 mx31pdk freescale mx31
Magnus Lilja8449f282009-07-01 01:07:55 +02003092
Stefano Babicc5fb70c2010-02-05 15:13:58 +01003093mx51evk_config : unconfig
3094 @$(MKCONFIG) $(@:_config=) arm arm_cortexa8 mx51evk freescale mx51
3095
Wolfgang Denk699f0512008-07-15 22:22:44 +02003096omap2420h4_config : unconfig
Jean-Christophe PLAGNIOL-VILLARD0a0e4ba2009-08-23 16:32:38 +02003097 @$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4 ti omap24xx
Wolfgang Denk699f0512008-07-15 22:22:44 +02003098
Ilya Yanok0d19f6c2009-02-10 00:22:31 +01003099qong_config : unconfig
3100 @$(MKCONFIG) $(@:_config=) arm arm1136 qong davedenx mx31
3101
Guennadi Liakhovetski11edcfe2008-08-31 00:39:47 +02003102#########################################################################
3103## ARM1176 Systems
3104#########################################################################
3105smdk6400_noUSB_config \
3106smdk6400_config : unconfig
3107 @mkdir -p $(obj)include $(obj)board/samsung/smdk6400
3108 @mkdir -p $(obj)nand_spl/board/samsung/smdk6400
3109 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02003110 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
Guennadi Liakhovetski11edcfe2008-08-31 00:39:47 +02003111 @if [ -z "$(findstring smdk6400_noUSB_config,$@)" ]; then \
3112 echo "RAM_TEXT = 0x57e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
Guennadi Liakhovetski11edcfe2008-08-31 00:39:47 +02003113 else \
3114 echo "RAM_TEXT = 0xc7e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
Guennadi Liakhovetski11edcfe2008-08-31 00:39:47 +02003115 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02003116 @$(MKCONFIG) $(subst _noUSB,,$(@:_config=)) arm arm1176 smdk6400 samsung s3c64xx
Guennadi Liakhovetski11edcfe2008-08-31 00:39:47 +02003117
wdenk2262cfe2002-11-18 00:14:45 +00003118#========================================================================
3119# i386
3120#========================================================================
3121#########################################################################
wdenk1cb8e982003-03-06 21:55:29 +00003122## AMD SC520 CDP
wdenk2262cfe2002-11-18 00:14:45 +00003123#########################################################################
Graeme Russc620c012008-12-07 10:28:57 +11003124eNET_config : unconfig
Graeme Russ40797612008-12-07 10:29:00 +11003125 @$(MKCONFIG) $(@:_config=) i386 i386 eNET NULL sc520
Graeme Russc620c012008-12-07 10:28:57 +11003126
Wolfgang Denka3f4c122009-01-24 01:01:49 +01003127sc520_cdp_config : unconfig
Graeme Russ40797612008-12-07 10:29:00 +11003128 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp NULL sc520
Wolfgang Denka3f4c122009-01-24 01:01:49 +01003129
wdenk7a8e9bed2003-05-31 18:35:21 +00003130sc520_spunk_config : unconfig
Graeme Russ40797612008-12-07 10:29:00 +11003131 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk NULL sc520
wdenk7a8e9bed2003-05-31 18:35:21 +00003132
3133sc520_spunk_rel_config : unconfig
Graeme Russ40797612008-12-07 10:29:00 +11003134 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk NULL sc520
wdenk7a8e9bed2003-05-31 18:35:21 +00003135
wdenk43d96162003-03-06 00:02:04 +00003136#========================================================================
3137# MIPS
3138#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00003139#########################################################################
wdenk43d96162003-03-06 00:02:04 +00003140## MIPS32 4Kc
3141#########################################################################
3142
wdenke0ac62d2003-08-17 18:55:18 +00003143incaip_100MHz_config \
3144incaip_133MHz_config \
3145incaip_150MHz_config \
3146incaip_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003147 @mkdir -p $(obj)include
wdenke0ac62d2003-08-17 18:55:18 +00003148 @[ -z "$(findstring _100MHz,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02003149 echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h
wdenke0ac62d2003-08-17 18:55:18 +00003150 @[ -z "$(findstring _133MHz,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02003151 echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h
wdenke0ac62d2003-08-17 18:55:18 +00003152 @[ -z "$(findstring _150MHz,$@)" ] || \
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02003153 echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h
3154 @$(MKCONFIG) -n $@ -a incaip mips mips incaip
wdenke0ac62d2003-08-17 18:55:18 +00003155
wdenkf4863a72004-02-07 01:27:10 +00003156tb0229_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003157 @$(MKCONFIG) $(@:_config=) mips mips tb0229
wdenkf4863a72004-02-07 01:27:10 +00003158
Stefan Roese2a61eff2009-01-21 17:25:01 +01003159vct_premium_config \
3160vct_premium_small_config \
3161vct_premium_onenand_config \
3162vct_premium_onenand_small_config \
3163vct_platinum_config \
3164vct_platinum_small_config \
3165vct_platinum_onenand_config \
3166vct_platinum_onenand_small_config \
3167vct_platinumavc_config \
3168vct_platinumavc_small_config \
3169vct_platinumavc_onenand_config \
3170vct_platinumavc_onenand_small_config: unconfig
3171 @mkdir -p $(obj)include
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02003172 @[ -z "$(findstring _premium,$@)" ] || \
3173 echo "#define CONFIG_VCT_PREMIUM" > $(obj)include/config.h
3174 @[ -z "$(findstring _platinum_,$@)" ] || \
3175 echo "#define CONFIG_VCT_PLATINUM" > $(obj)include/config.h
3176 @[ -z "$(findstring _platinumavc,$@)" ] || \
3177 echo "#define CONFIG_VCT_PLATINUMAVC" > $(obj)include/config.h
3178 @[ -z "$(findstring _onenand,$@)" ] || \
3179 echo "#define CONFIG_VCT_ONENAND" >> $(obj)include/config.h
3180 @[ -z "$(findstring _small,$@)" ] || \
3181 echo "#define CONFIG_VCT_SMALL_IMAGE" >> $(obj)include/config.h
3182 @$(MKCONFIG) -n $@ -a vct mips mips vct micronas
Stefan Roese2a61eff2009-01-21 17:25:01 +01003183
wdenke0ac62d2003-08-17 18:55:18 +00003184#########################################################################
wdenk69459792004-05-29 16:53:29 +00003185## MIPS32 AU1X00
3186#########################################################################
Wolfgang Denk699f0512008-07-15 22:22:44 +02003187
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01003188dbau1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003189 @mkdir -p $(obj)include
Wolfgang Denk210ed202008-03-09 00:06:09 +01003190 @echo "#define CONFIG_DBAU1000 1" >$(obj)include/config.h
Marian Balakowiczf9328632006-09-01 19:49:50 +02003191 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00003192
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01003193dbau1100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003194 @mkdir -p $(obj)include
Wolfgang Denk210ed202008-03-09 00:06:09 +01003195 @echo "#define CONFIG_DBAU1100 1" >$(obj)include/config.h
Marian Balakowiczf9328632006-09-01 19:49:50 +02003196 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00003197
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01003198dbau1500_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003199 @mkdir -p $(obj)include
Wolfgang Denk210ed202008-03-09 00:06:09 +01003200 @echo "#define CONFIG_DBAU1500 1" >$(obj)include/config.h
Marian Balakowiczf9328632006-09-01 19:49:50 +02003201 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00003202
wdenkff36fd82005-01-09 22:28:56 +00003203dbau1550_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003204 @mkdir -p $(obj)include
Wolfgang Denk210ed202008-03-09 00:06:09 +01003205 @echo "#define CONFIG_DBAU1550 1" >$(obj)include/config.h
Marian Balakowiczf9328632006-09-01 19:49:50 +02003206 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00003207
3208dbau1550_el_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003209 @mkdir -p $(obj)include
Wolfgang Denk210ed202008-03-09 00:06:09 +01003210 @echo "#define CONFIG_DBAU1550 1" >$(obj)include/config.h
Marian Balakowiczf9328632006-09-01 19:49:50 +02003211 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00003212
Wolfgang Denk699f0512008-07-15 22:22:44 +02003213gth2_config : unconfig
3214 @mkdir -p $(obj)include
3215 @echo "#define CONFIG_GTH2 1" >$(obj)include/config.h
3216 @$(MKCONFIG) -a gth2 mips mips gth2
3217
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01003218pb1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003219 @mkdir -p $(obj)include
Wolfgang Denk210ed202008-03-09 00:06:09 +01003220 @echo "#define CONFIG_PB1000 1" >$(obj)include/config.h
Marian Balakowiczf9328632006-09-01 19:49:50 +02003221 @$(MKCONFIG) -a pb1x00 mips mips pb1x00
Wolfgang Denk265817c2005-09-25 00:53:22 +02003222
Wolfgang Denk699f0512008-07-15 22:22:44 +02003223qemu_mips_config : unconfig
Vlad Lungu0764c162008-01-16 19:27:51 +02003224 @mkdir -p $(obj)include
Wolfgang Denk210ed202008-03-09 00:06:09 +01003225 @echo "#define CONFIG_QEMU_MIPS 1" >$(obj)include/config.h
Vlad Lungu0764c162008-01-16 19:27:51 +02003226 @$(MKCONFIG) -a qemu-mips mips mips qemu-mips
3227
wdenk69459792004-05-29 16:53:29 +00003228#########################################################################
wdenke0ac62d2003-08-17 18:55:18 +00003229## MIPS64 5Kc
3230#########################################################################
wdenk43d96162003-03-06 00:02:04 +00003231
wdenk3e386912003-04-05 00:53:31 +00003232purple_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003233 @$(MKCONFIG) $(@:_config=) mips mips purple
wdenk43d96162003-03-06 00:02:04 +00003234
wdenk4a551702003-10-08 23:26:14 +00003235#========================================================================
3236# Nios
3237#========================================================================
wdenk4a551702003-10-08 23:26:14 +00003238
wdenk5c952cf2004-10-10 21:27:30 +00003239#########################################################################
3240## Nios-II
3241#########################################################################
3242
Scott McNutt9cc83372006-06-08 13:37:39 -04003243EP1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003244 @$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04003245
3246EP1S10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003247 @$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04003248
3249EP1S40_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003250 @$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04003251
wdenk5c952cf2004-10-10 21:27:30 +00003252PK1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003253 @$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent
wdenk5c952cf2004-10-10 21:27:30 +00003254
3255PCI5441_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003256 @$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent
wdenk4a551702003-10-08 23:26:14 +00003257
Thomas Chou8cbb0dd2010-04-21 08:40:59 +08003258# nios2 generic boards
3259NIOS2_GENERIC = nios2-generic
3260
3261$(NIOS2_GENERIC:%=%_config) : unconfig
3262 @$(MKCONFIG) $(@:_config=) nios2 nios2 nios2-generic altera
3263
wdenk507bbe32004-04-18 21:13:41 +00003264#========================================================================
wdenk507bbe32004-04-18 21:13:41 +00003265## Microblaze
Wolfgang Denk699f0512008-07-15 22:22:44 +02003266#========================================================================
wdenk507bbe32004-04-18 21:13:41 +00003267
Michal Simek52a822e2008-12-19 13:14:05 +01003268microblaze-generic_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +02003269 @mkdir -p $(obj)include
Michal Simek52a822e2008-12-19 13:14:05 +01003270 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze microblaze-generic xilinx
Michal Simekcfc67112007-03-11 13:48:24 +01003271
Mike Frysinger60fa72d2008-02-04 19:26:55 -05003272#========================================================================
3273# Blackfin
3274#========================================================================
Wolfgang Denk0afe5192006-03-12 02:10:00 +01003275
Mike Frysinger60fa72d2008-02-04 19:26:55 -05003276# Analog Devices boards
Mike Frysinger84a9dda2008-10-12 21:32:52 -04003277BFIN_BOARDS = bf518f-ezbrd bf526-ezbrd bf527-ezkit bf533-ezkit bf533-stamp \
Mike Frysingercb4b5e82008-10-12 23:08:03 -04003278 bf537-pnav bf537-stamp bf538f-ezkit bf548-ezkit bf561-ezkit
Wolfgang Denk0afe5192006-03-12 02:10:00 +01003279
Mike Frysingere82d8a12008-10-12 21:36:22 -04003280# Bluetechnix tinyboards
Harald Krapfenbauer2aeda2d2010-01-13 09:04:53 -05003281BFIN_BOARDS += cm-bf527 cm-bf533 cm-bf537e cm-bf537u cm-bf548 cm-bf561 \
3282 tcm-bf518 tcm-bf537
Mike Frysingere82d8a12008-10-12 21:36:22 -04003283
Mike Frysingerd7fdc142008-10-12 23:16:52 -04003284# Misc third party boards
Brent Kandetzki3f1a5c12010-03-24 17:41:33 -04003285BFIN_BOARDS += bf537-minotaur bf537-srv1 bf561-acvilon blackstamp ip04
Mike Frysingerd7fdc142008-10-12 23:16:52 -04003286
Hoan Hoang0f52b562009-01-18 22:44:17 -05003287# I-SYST Micromodule
3288BFIN_BOARDS += ibf-dsp561
3289
Mike Frysinger60fa72d2008-02-04 19:26:55 -05003290$(BFIN_BOARDS:%=%_config) : unconfig
Mike Frysinger9171fc82008-03-30 15:46:13 -04003291 @$(MKCONFIG) $(@:_config=) blackfin blackfin $(@:_config=)
Aubrey Li26bf7de2007-03-19 01:24:52 +08003292
Michael Hennerich10eafa12009-12-10 09:19:21 +00003293bf527-ezkit-v2_config : unconfig
3294 @$(MKCONFIG) -t BF527_EZKIT_REV_2_1 \
3295 bf527-ezkit blackfin blackfin bf527-ezkit
3296
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02003297#========================================================================
3298# AVR32
3299#========================================================================
Wolfgang Denk699f0512008-07-15 22:22:44 +02003300
3301atngw100_config : unconfig
3302 @$(MKCONFIG) $(@:_config=) avr32 at32ap atngw100 atmel at32ap700x
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02003303
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02003304atstk1002_config \
3305atstk1003_config \
3306atstk1004_config \
Haavard Skinnemoen0a2e4872007-11-22 12:14:11 +01003307atstk1006_config : unconfig
3308 @$(MKCONFIG) $(@:_config=) avr32 at32ap atstk1000 atmel at32ap700x
3309
Hans-Christian Egtvedt0eb57172008-08-06 14:42:13 +02003310favr-32-ezkit_config : unconfig
3311 @$(MKCONFIG) $(@:_config=) avr32 at32ap favr-32-ezkit earthlcd at32ap700x
3312
Julien May5c374c92008-06-23 13:57:52 +02003313hammerhead_config : unconfig
3314 @$(MKCONFIG) $(@:_config=) avr32 at32ap hammerhead miromico at32ap700x
3315
Mark Jackson13b50fe2008-07-30 13:07:27 +01003316mimc200_config : unconfig
3317 @$(MKCONFIG) $(@:_config=) avr32 at32ap mimc200 mimc at32ap700x
3318
Wolfgang Denk699f0512008-07-15 22:22:44 +02003319#========================================================================
3320# SH3 (SuperH)
3321#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00003322
Nobuhiro Iwamatsu69df3c42007-05-13 21:01:03 +09003323#########################################################################
Nobuhiro Iwamatsuc655fad2008-08-31 23:02:04 +09003324## sh2 (Renesas SuperH)
3325#########################################################################
3326rsk7203_config: unconfig
Kieran Binghama5b04d02008-12-30 01:16:03 +00003327 @mkdir -p $(obj)include
Peter Griffin4d416502009-02-10 16:44:45 +00003328 @echo "#define CONFIG_RSK7203 1" > $(obj)include/config.h
Jean-Christophe PLAGNIOL-VILLARD9a1d3552008-11-11 22:20:15 +01003329 @$(MKCONFIG) -a $(@:_config=) sh sh2 rsk7203 renesas
Nobuhiro Iwamatsuc655fad2008-08-31 23:02:04 +09003330
3331#########################################################################
Yoshihiro Shimodab2b5e2b2007-12-03 22:58:50 +09003332## sh3 (Renesas SuperH)
3333#########################################################################
Wolfgang Denk699f0512008-07-15 22:22:44 +02003334
Mark Jonas3313e0e2008-03-10 11:37:10 +01003335mpr2_config: unconfig
Wolfgang Denk3ab48272008-07-07 00:45:03 +02003336 @mkdir -p $(obj)include
3337 @echo "#define CONFIG_MPR2 1" > $(obj)include/config.h
Mark Jonas3313e0e2008-03-10 11:37:10 +01003338 @$(MKCONFIG) -a $(@:_config=) sh sh3 mpr2
3339
Yoshihiro Shimodab2b5e2b2007-12-03 22:58:50 +09003340ms7720se_config: unconfig
Wolfgang Denk3ab48272008-07-07 00:45:03 +02003341 @mkdir -p $(obj)include
3342 @echo "#define CONFIG_MS7720SE 1" > $(obj)include/config.h
Jean-Christophe PLAGNIOL-VILLARD91c82072008-03-02 16:12:31 +01003343 @$(MKCONFIG) -a $(@:_config=) sh sh3 ms7720se
Yoshihiro Shimodab2b5e2b2007-12-03 22:58:50 +09003344
3345#########################################################################
Nobuhiro Iwamatsu69df3c42007-05-13 21:01:03 +09003346## sh4 (Renesas SuperH)
3347#########################################################################
Wolfgang Denk699f0512008-07-15 22:22:44 +02003348
3349MigoR_config : unconfig
3350 @mkdir -p $(obj)include
3351 @echo "#define CONFIG_MIGO_R 1" > $(obj)include/config.h
Jean-Christophe PLAGNIOL-VILLARD9a1d3552008-11-11 22:20:15 +01003352 @$(MKCONFIG) -a $(@:_config=) sh sh4 MigoR renesas
Wolfgang Denk699f0512008-07-15 22:22:44 +02003353
Nobuhiro Iwamatsu69df3c42007-05-13 21:01:03 +09003354ms7750se_config: unconfig
Wolfgang Denk3ab48272008-07-07 00:45:03 +02003355 @mkdir -p $(obj)include
Wolfgang Denk210ed202008-03-09 00:06:09 +01003356 @echo "#define CONFIG_MS7750SE 1" > $(obj)include/config.h
Jean-Christophe PLAGNIOL-VILLARD91c82072008-03-02 16:12:31 +01003357 @$(MKCONFIG) -a $(@:_config=) sh sh4 ms7750se
Nobuhiro Iwamatsu69df3c42007-05-13 21:01:03 +09003358
Wolfgang Denkf9301e12008-03-04 14:58:31 +01003359ms7722se_config : unconfig
Wolfgang Denk3ab48272008-07-07 00:45:03 +02003360 @mkdir -p $(obj)include
Wolfgang Denk210ed202008-03-09 00:06:09 +01003361 @echo "#define CONFIG_MS7722SE 1" > $(obj)include/config.h
Jean-Christophe PLAGNIOL-VILLARD91c82072008-03-02 16:12:31 +01003362 @$(MKCONFIG) -a $(@:_config=) sh sh4 ms7722se
wdenk7a8e9bed2003-05-31 18:35:21 +00003363
Wolfgang Denk699f0512008-07-15 22:22:44 +02003364r2dplus_config : unconfig
Wolfgang Denk3ab48272008-07-07 00:45:03 +02003365 @mkdir -p $(obj)include
Wolfgang Denk699f0512008-07-15 22:22:44 +02003366 @echo "#define CONFIG_R2DPLUS 1" > $(obj)include/config.h
Nobuhiro Iwamatsuc1da2a22008-10-24 10:39:44 +09003367 @$(MKCONFIG) -a $(@:_config=) sh sh4 r2dplus renesas
goda.yusukec2042f52008-01-25 20:46:36 +09003368
Yusuke Godac133c1f2008-03-11 12:55:12 +09003369r7780mp_config: unconfig
Wolfgang Denk3ab48272008-07-07 00:45:03 +02003370 @mkdir -p $(obj)include
3371 @echo "#define CONFIG_R7780MP 1" > $(obj)include/config.h
Nobuhiro Iwamatsuacd3e302008-10-24 10:34:21 +09003372 @$(MKCONFIG) -a $(@:_config=) sh sh4 r7780mp renesas
Yusuke Godac133c1f2008-03-11 12:55:12 +09003373
Nobuhiro Iwamatsu7faddae2008-06-09 13:39:57 +09003374sh7763rdp_config : unconfig
Wolfgang Denk3ab48272008-07-07 00:45:03 +02003375 @mkdir -p $(obj)include
3376 @echo "#define CONFIG_SH7763RDP 1" > $(obj)include/config.h
Nobuhiro Iwamatsu78385bf2008-10-24 10:36:13 +09003377 @$(MKCONFIG) -a $(@:_config=) sh sh4 sh7763rdp renesas
Nobuhiro Iwamatsu7faddae2008-06-09 13:39:57 +09003378
Yoshihiro Shimodaada93182009-03-03 15:11:17 +09003379xtract_sh7785lcr = $(subst _32bit,,$(subst _config,,$1))
3380sh7785lcr_32bit_config \
Nobuhiro Iwamatsu0d53a472008-08-31 22:45:08 +09003381sh7785lcr_config : unconfig
Jean-Christophe PLAGNIOL-VILLARDce298172009-06-04 12:06:43 +02003382 @mkdir -p $(obj)include
3383 @mkdir -p $(obj)board/renesas/sh7785lcr
3384 @echo "#define CONFIG_SH7785LCR 1" > $(obj)include/config.h
Yoshihiro Shimodaada93182009-03-03 15:11:17 +09003385 @if [ "$(findstring 32bit, $@)" ] ; then \
3386 echo "#define CONFIG_SH_32BIT 1" >> $(obj)include/config.h ; \
Yoshihiro Shimodaada93182009-03-03 15:11:17 +09003387 echo "TEXT_BASE = 0x8ff80000" > \
3388 $(obj)board/renesas/sh7785lcr/config.tmp ; \
Yoshihiro Shimodaada93182009-03-03 15:11:17 +09003389 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +02003390 @$(MKCONFIG) -n $@ -a $(call xtract_sh7785lcr,$@) sh sh4 sh7785lcr renesas
Nobuhiro Iwamatsu0d53a472008-08-31 22:45:08 +09003391
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +09003392ap325rxa_config : unconfig
3393 @mkdir -p $(obj)include
3394 @echo "#define CONFIG_AP325RXA 1" > $(obj)include/config.h
Nobuhiro Iwamatsuf84e6ea2008-10-24 10:32:14 +09003395 @$(MKCONFIG) -a $(@:_config=) sh sh4 ap325rxa renesas
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +09003396
Nobuhiro Iwamatsu74d9c162009-06-25 16:31:26 +09003397espt_config : unconfig
3398 @mkdir -p $(obj)include
3399 @echo "#define CONFIG_ESPT 1" > $(obj)include/config.h
3400 @$(MKCONFIG) -a $(@:_config=) sh sh4 espt
3401
Daniel Hellstromc2f02da2008-03-28 09:47:00 +01003402#========================================================================
3403# SPARC
3404#========================================================================
Wolfgang Denk699f0512008-07-15 22:22:44 +02003405
Daniel Hellstrom1e9a1642008-03-26 22:51:29 +01003406#########################################################################
3407## LEON3
3408#########################################################################
Daniel Hellstromc2f02da2008-03-28 09:47:00 +01003409
Daniel Hellstrom71d7e4c2008-03-26 23:26:48 +01003410# Gaisler GR-XC3S-1500 board
3411gr_xc3s_1500_config : unconfig
3412 @$(MKCONFIG) $(@:_config=) sparc leon3 gr_xc3s_1500 gaisler
3413
Daniel Hellstrom6ed8a432008-03-26 23:38:48 +01003414# Gaisler GR-CPCI-AX2000 board, a General purpose FPGA-AX system
3415gr_cpci_ax2000_config : unconfig
3416 @$(MKCONFIG) $(@:_config=) sparc leon3 gr_cpci_ax2000 gaisler
3417
Daniel Hellstrom69403832008-03-26 23:34:47 +01003418# Gaisler GRLIB template design (GPL SPARC/LEON3) for Altera NIOS
3419# Development board Stratix II edition, FPGA Device EP2S60.
3420gr_ep2s60_config: unconfig
3421 @$(MKCONFIG) $(@:_config=) sparc leon3 gr_ep2s60 gaisler
3422
Daniel Hellstrom823edd82008-03-28 10:06:52 +01003423# Gaisler LEON3 GRSIM simulator
3424grsim_config : unconfig
3425 @$(MKCONFIG) $(@:_config=) sparc leon3 grsim gaisler
3426
wdenk7ebf7442002-11-02 23:17:16 +00003427#########################################################################
Daniel Hellstromb3309902008-03-28 10:00:33 +01003428## LEON2
3429#########################################################################
3430
Daniel Hellstromab68f922008-03-28 10:20:43 +01003431# Gaisler LEON2 GRSIM simulator
3432grsim_leon2_config : unconfig
3433 @$(MKCONFIG) $(@:_config=) sparc leon2 grsim_leon2 gaisler
3434
wdenk7ebf7442002-11-02 23:17:16 +00003435#########################################################################
3436#########################################################################
3437#########################################################################
wdenk85ec0bc2003-03-31 16:34:49 +00003438
wdenk3e386912003-04-05 00:53:31 +00003439clean:
Peter Tyser1bc15382009-07-10 11:03:19 -05003440 @rm -f $(obj)examples/standalone/82559_eeprom \
Wolfgang Denkd640ac52009-09-07 23:52:31 +02003441 $(obj)examples/standalone/atmel_df_pow2 \
Peter Tyser1bc15382009-07-10 11:03:19 -05003442 $(obj)examples/standalone/eepro100_eeprom \
3443 $(obj)examples/standalone/hello_world \
3444 $(obj)examples/standalone/interrupt \
3445 $(obj)examples/standalone/mem_to_mem_idma2intr \
3446 $(obj)examples/standalone/sched \
3447 $(obj)examples/standalone/smc91111_eeprom \
3448 $(obj)examples/standalone/test_burst \
3449 $(obj)examples/standalone/timer
Peter Tyserd4abc752009-07-20 19:02:21 -05003450 @rm -f $(obj)examples/api/demo{,.bin}
Wolfgang Denkf9301e12008-03-04 14:58:31 +01003451 @rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \
3452 $(obj)tools/env/{fw_printenv,fw_setenv} \
3453 $(obj)tools/envcrc \
3454 $(obj)tools/gdb/{astest,gdbcont,gdbsend} \
3455 $(obj)tools/gen_eth_addr $(obj)tools/img2srec \
3456 $(obj)tools/mkimage $(obj)tools/mpc86x_clk \
3457 $(obj)tools/ncb $(obj)tools/ubsha1
3458 @rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \
3459 $(obj)board/netstar/{eeprom,crcek,crcit,*.srec,*.bin} \
3460 $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom \
Wolfgang Denk1dcb50a2009-02-22 01:17:47 +01003461 $(obj)board/armltd/{integratorap,integratorcp}/u-boot.lds \
Peter Tyserea0364f2010-04-12 22:28:04 -05003462 $(obj)arch/blackfin/lib/u-boot.lds \
Wolfgang Denk1aada9c2009-08-17 14:00:53 +02003463 $(obj)u-boot.lds \
Peter Tyserc6fb83d2010-04-12 22:28:13 -05003464 $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs]
Wolfgang Denkdc7746d2008-04-20 15:39:38 -07003465 @rm -f $(obj)include/bmp_logo.h
Wolfgang Denk1aada9c2009-08-17 14:00:53 +02003466 @rm -f $(obj)nand_spl/{u-boot.lds,u-boot-spl,u-boot-spl.map,System.map}
Kyungmin Parkca6189d2009-09-22 09:05:00 +09003467 @rm -f $(obj)onenand_ipl/onenand-{ipl,ipl.bin,ipl.map}
3468 @rm -f $(ONENAND_BIN)
Wolfgang Denk1aada9c2009-08-17 14:00:53 +02003469 @rm -f $(obj)onenand_ipl/u-boot.lds
Peter Tyserd4abc752009-07-20 19:02:21 -05003470 @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE)
Wolfgang Denkae6d1052008-01-13 00:59:21 +01003471 @find $(OBJTREE) -type f \
wdenk7ebf7442002-11-02 23:17:16 +00003472 \( -name 'core' -o -name '*.bak' -o -name '*~' \
Peter Tyser2b48f7d2009-03-13 18:54:26 -05003473 -o -name '*.o' -o -name '*.a' -o -name '*.exe' \) -print \
wdenk7ebf7442002-11-02 23:17:16 +00003474 | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +00003475
3476clobber: clean
Wolfgang Denkae6d1052008-01-13 00:59:21 +01003477 @find $(OBJTREE) -type f \( -name .depend \
wdenk4c0d4c32004-06-09 17:34:58 +00003478 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
3479 -print0 \
3480 | xargs -0 rm -f
Li Yangffda5862008-02-29 11:46:05 +08003481 @rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \
Wolfgang Denk5013c092008-03-02 22:45:33 +01003482 $(obj)cscope.* $(obj)*.*~
Wolfgang Denkae6d1052008-01-13 00:59:21 +01003483 @rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL)
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +05303484 @rm -f $(obj)u-boot.kwb
Stefano Babicc5fb70c2010-02-05 15:13:58 +01003485 @rm -f $(obj)u-boot.imx
Peter Tyserfb8b33c2009-03-13 18:54:47 -05003486 @rm -f $(obj)tools/{env/crc32.c,inca-swap-bytes}
Stefan Roesea47a12b2010-04-15 16:07:28 +02003487 @rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c
Wolfgang Denkae6d1052008-01-13 00:59:21 +01003488 @rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
Jean-Christophe PLAGNIOL-VILLARDa958b662008-08-16 18:54:27 +02003489 @[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f
3490 @[ ! -d $(obj)onenand_ipl ] || find $(obj)onenand_ipl -name "*" -type l -print | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +00003491
Marian Balakowiczf9328632006-09-01 19:49:50 +02003492ifeq ($(OBJTREE),$(SRCTREE))
wdenk7ebf7442002-11-02 23:17:16 +00003493mrproper \
3494distclean: clobber unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02003495else
3496mrproper \
3497distclean: clobber unconfig
Wolfgang Denkae6d1052008-01-13 00:59:21 +01003498 rm -rf $(obj)*
Marian Balakowiczf9328632006-09-01 19:49:50 +02003499endif
wdenk7ebf7442002-11-02 23:17:16 +00003500
3501backup:
3502 F=`basename $(TOPDIR)` ; cd .. ; \
3503 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
3504
3505#########################################################################