2002-11-02 23:17:16 +00:00
|
|
|
#
|
2010-03-12 09:01:12 +00:00
|
|
|
# (C) Copyright 2000-2010
|
2002-11-02 23:17:16 +00:00
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
|
|
|
# See file CREDITS for list of people who contributed to this
|
|
|
|
# project.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License as
|
2006-07-19 15:52:30 +00:00
|
|
|
# published by the Free Software Foundatio; either version 2 of
|
2002-11-02 23:17:16 +00:00
|
|
|
# the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2008-03-04 13:58:31 +00:00
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2002-11-02 23:17:16 +00:00
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
# MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
2010-03-12 22:06:04 +00:00
|
|
|
VERSION = 2010
|
2010-05-26 21:57:08 +00:00
|
|
|
PATCHLEVEL = 06
|
2008-09-09 21:55:18 +00:00
|
|
|
SUBLEVEL =
|
2010-06-13 15:48:15 +00:00
|
|
|
EXTRAVERSION = -rc2
|
2008-09-09 21:55:18 +00:00
|
|
|
ifneq "$(SUBLEVEL)" ""
|
2006-02-21 16:33:04 +00:00
|
|
|
U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
|
2008-09-09 21:55:18 +00:00
|
|
|
else
|
|
|
|
U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION)
|
|
|
|
endif
|
2008-11-03 15:30:59 +00:00
|
|
|
TIMESTAMP_FILE = $(obj)include/timestamp_autogenerated.h
|
2006-09-01 17:49:50 +00:00
|
|
|
VERSION_FILE = $(obj)include/version_autogenerated.h
|
2006-02-21 16:33:04 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
HOSTARCH := $(shell uname -m | \
|
|
|
|
sed -e s/i.86/i386/ \
|
|
|
|
-e s/sun4u/sparc64/ \
|
|
|
|
-e s/arm.*/arm/ \
|
|
|
|
-e s/sa110/arm/ \
|
2010-04-28 07:52:02 +00:00
|
|
|
-e s/ppc64/powerpc/ \
|
|
|
|
-e s/ppc/powerpc/ \
|
|
|
|
-e s/macppc/powerpc/)
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2005-08-12 21:23:46 +00:00
|
|
|
HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
|
2002-11-02 23:17:16 +00:00
|
|
|
sed -e 's/\(cygwin\).*/cygwin/')
|
|
|
|
|
2008-11-12 18:33:20 +00:00
|
|
|
# Set shell to bash if possible, otherwise fall back to sh
|
|
|
|
SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
|
|
|
|
else if [ -x /bin/bash ]; then echo /bin/bash; \
|
|
|
|
else echo sh; fi; fi)
|
|
|
|
|
|
|
|
export HOSTARCH HOSTOS SHELL
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
# Deal with colliding definitions from tcsh etc.
|
|
|
|
VENDOR=
|
|
|
|
|
2008-01-12 23:59:21 +00:00
|
|
|
#########################################################################
|
|
|
|
# Allow for silent builds
|
|
|
|
ifeq (,$(findstring s,$(MAKEFLAGS)))
|
|
|
|
XECHO = echo
|
|
|
|
else
|
|
|
|
XECHO = :
|
|
|
|
endif
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
2006-09-01 17:49:50 +00:00
|
|
|
#
|
|
|
|
# U-boot build supports producing a object files to the separate external
|
|
|
|
# directory. Two use cases are supported:
|
2006-09-07 09:51:23 +00:00
|
|
|
#
|
2006-09-01 17:49:50 +00:00
|
|
|
# 1) Add O= to the make command line
|
|
|
|
# 'make O=/tmp/build all'
|
|
|
|
#
|
|
|
|
# 2) Set environement variable BUILD_DIR to point to the desired location
|
|
|
|
# 'export BUILD_DIR=/tmp/build'
|
|
|
|
# 'make'
|
|
|
|
#
|
|
|
|
# The second approach can also be used with a MAKEALL script
|
|
|
|
# 'export BUILD_DIR=/tmp/build'
|
|
|
|
# './MAKEALL'
|
2006-09-07 09:51:23 +00:00
|
|
|
#
|
2006-09-01 17:49:50 +00:00
|
|
|
# Command line 'O=' setting overrides BUILD_DIR environent variable.
|
2006-09-07 09:51:23 +00:00
|
|
|
#
|
2006-09-01 17:49:50 +00:00
|
|
|
# When none of the above methods is used the local build is performed and
|
|
|
|
# the object files are placed in the source directory.
|
2006-09-07 09:51:23 +00:00
|
|
|
#
|
2006-09-01 17:49:50 +00:00
|
|
|
|
|
|
|
ifdef O
|
|
|
|
ifeq ("$(origin O)", "command line")
|
|
|
|
BUILD_DIR := $(O)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(BUILD_DIR),)
|
|
|
|
saved-output := $(BUILD_DIR)
|
2006-09-07 10:05:53 +00:00
|
|
|
|
|
|
|
# Attempt to create a output directory.
|
|
|
|
$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
|
|
|
|
|
2006-09-12 06:49:07 +00:00
|
|
|
# Verify if it was successful.
|
2006-09-01 17:49:50 +00:00
|
|
|
BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
|
|
|
|
$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
|
|
|
|
endif # ifneq ($(BUILD_DIR),)
|
|
|
|
|
|
|
|
OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
|
|
|
|
SRCTREE := $(CURDIR)
|
|
|
|
TOPDIR := $(SRCTREE)
|
|
|
|
LNDIR := $(OBJTREE)
|
|
|
|
export TOPDIR SRCTREE OBJTREE
|
|
|
|
|
|
|
|
MKCONFIG := $(SRCTREE)/mkconfig
|
|
|
|
export MKCONFIG
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
ifneq ($(OBJTREE),$(SRCTREE))
|
2006-11-30 17:02:20 +00:00
|
|
|
REMOTE_BUILD := 1
|
2006-09-01 17:49:50 +00:00
|
|
|
export REMOTE_BUILD
|
|
|
|
endif
|
|
|
|
|
|
|
|
# $(obj) and (src) are defined in config.mk but here in main Makefile
|
|
|
|
# we also need them before config.mk is included which is the case for
|
|
|
|
# some targets like unconfig, clean, clobber, distclean, etc.
|
|
|
|
ifneq ($(OBJTREE),$(SRCTREE))
|
|
|
|
obj := $(OBJTREE)/
|
|
|
|
src := $(SRCTREE)/
|
|
|
|
else
|
|
|
|
obj :=
|
|
|
|
src :=
|
2006-09-07 09:51:23 +00:00
|
|
|
endif
|
2006-09-01 17:49:50 +00:00
|
|
|
export obj src
|
|
|
|
|
2008-03-02 21:45:33 +00:00
|
|
|
# Make sure CDPATH settings don't interfere
|
|
|
|
unexport CDPATH
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
|
2009-05-30 05:02:03 +00:00
|
|
|
# The "tools" are needed early, so put this first
|
|
|
|
# Don't include stuff already done in $(LIBS)
|
|
|
|
SUBDIRS = tools \
|
2009-07-10 16:03:19 +00:00
|
|
|
examples/standalone \
|
2009-07-21 00:02:21 +00:00
|
|
|
examples/api
|
2009-05-30 05:02:03 +00:00
|
|
|
|
|
|
|
.PHONY : $(SUBDIRS)
|
|
|
|
|
2008-01-12 23:59:21 +00:00
|
|
|
ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk))
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2009-07-22 02:59:36 +00:00
|
|
|
# Include autoconf.mk before config.mk so that the config options are available
|
|
|
|
# to all top level build files. We need the dummy all: target to prevent the
|
|
|
|
# dependency target in autoconf.mk.dep from being the default.
|
|
|
|
all:
|
|
|
|
sinclude $(obj)include/autoconf.mk.dep
|
|
|
|
sinclude $(obj)include/autoconf.mk
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
# load ARCH, BOARD, and CPU configuration
|
2008-01-12 23:59:21 +00:00
|
|
|
include $(obj)include/config.mk
|
2004-10-09 22:21:29 +00:00
|
|
|
export ARCH CPU BOARD VENDOR SOC
|
2006-09-01 17:49:50 +00:00
|
|
|
|
2009-06-15 03:33:14 +00:00
|
|
|
# set default to nothing for native builds
|
2007-03-06 17:01:47 +00:00
|
|
|
ifeq ($(HOSTARCH),$(ARCH))
|
2009-06-15 03:33:14 +00:00
|
|
|
CROSS_COMPILE ?=
|
2004-10-10 21:27:30 +00:00
|
|
|
endif
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-03-12 00:37:50 +00:00
|
|
|
# load other configuration
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
# U-Boot objects....order is important (i.e. start must be first)
|
|
|
|
|
2010-04-13 03:28:02 +00:00
|
|
|
OBJS = $(CPUDIR)/start.o
|
2002-11-18 00:14:45 +00:00
|
|
|
ifeq ($(CPU),i386)
|
2010-04-13 03:28:02 +00:00
|
|
|
OBJS += $(CPUDIR)/start16.o
|
|
|
|
OBJS += $(CPUDIR)/resetvec.o
|
2002-11-18 00:14:45 +00:00
|
|
|
endif
|
2002-11-02 23:17:16 +00:00
|
|
|
ifeq ($(CPU),ppc4xx)
|
2010-04-13 03:28:02 +00:00
|
|
|
OBJS += $(CPUDIR)/resetvec.o
|
2002-11-02 23:17:16 +00:00
|
|
|
endif
|
2003-10-15 23:53:47 +00:00
|
|
|
ifeq ($(CPU),mpc85xx)
|
2010-04-13 03:28:02 +00:00
|
|
|
OBJS += $(CPUDIR)/resetvec.o
|
2003-10-15 23:53:47 +00:00
|
|
|
endif
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
OBJS := $(addprefix $(obj),$(OBJS))
|
|
|
|
|
2010-04-13 03:28:05 +00:00
|
|
|
LIBS = lib/libgeneric.a
|
|
|
|
LIBS += lib/lzma/liblzma.a
|
|
|
|
LIBS += lib/lzo/liblzo.a
|
2007-08-21 22:00:17 +00:00
|
|
|
LIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \
|
|
|
|
"board/$(VENDOR)/common/lib$(VENDOR).a"; fi)
|
2010-04-13 03:28:02 +00:00
|
|
|
LIBS += $(CPUDIR)/lib$(CPU).a
|
2004-10-09 22:21:29 +00:00
|
|
|
ifdef SOC
|
2010-04-13 03:28:02 +00:00
|
|
|
LIBS += $(CPUDIR)/$(SOC)/lib$(SOC).a
|
2004-10-09 22:21:29 +00:00
|
|
|
endif
|
2007-04-23 10:00:22 +00:00
|
|
|
ifeq ($(CPU),ixp)
|
2010-04-13 03:28:11 +00:00
|
|
|
LIBS += arch/arm/cpu/ixp/npe/libnpe.a
|
2007-04-23 10:00:22 +00:00
|
|
|
endif
|
2010-04-13 03:28:04 +00:00
|
|
|
LIBS += arch/$(ARCH)/lib/lib$(ARCH).a
|
2004-03-25 14:59:05 +00:00
|
|
|
LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
|
2009-03-19 14:35:05 +00:00
|
|
|
fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a fs/yaffs2/libyaffs2.a \
|
|
|
|
fs/ubifs/libubifs.a
|
2002-11-02 23:17:16 +00:00
|
|
|
LIBS += net/libnet.a
|
|
|
|
LIBS += disk/libdisk.a
|
2007-07-13 04:14:58 +00:00
|
|
|
LIBS += drivers/bios_emulator/libatibiosemu.a
|
2007-11-24 20:13:59 +00:00
|
|
|
LIBS += drivers/block/libblock.a
|
2008-01-15 20:15:46 +00:00
|
|
|
LIBS += drivers/dma/libdma.a
|
2008-10-31 11:26:55 +00:00
|
|
|
LIBS += drivers/fpga/libfpga.a
|
2008-12-17 22:36:21 +00:00
|
|
|
LIBS += drivers/gpio/libgpio.a
|
2007-11-24 19:14:44 +00:00
|
|
|
LIBS += drivers/hwmon/libhwmon.a
|
2007-11-21 20:19:24 +00:00
|
|
|
LIBS += drivers/i2c/libi2c.a
|
2007-11-24 18:46:45 +00:00
|
|
|
LIBS += drivers/input/libinput.a
|
2007-11-24 20:17:55 +00:00
|
|
|
LIBS += drivers/misc/libmisc.a
|
2008-06-12 17:27:56 +00:00
|
|
|
LIBS += drivers/mmc/libmmc.a
|
2007-11-24 20:26:56 +00:00
|
|
|
LIBS += drivers/mtd/libmtd.a
|
|
|
|
LIBS += drivers/mtd/nand/libnand.a
|
|
|
|
LIBS += drivers/mtd/onenand/libonenand.a
|
2008-11-19 15:38:24 +00:00
|
|
|
LIBS += drivers/mtd/ubi/libubi.a
|
2008-05-16 09:10:33 +00:00
|
|
|
LIBS += drivers/mtd/spi/libspi_flash.a
|
Added M5329AFEE and M5329BFEE Platforms
Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
rtc/mcfrtc.c
Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
lib_m68k/time.c, net/eth.c and rtc/Makefile
Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2007-06-18 18:50:13 +00:00
|
|
|
LIBS += drivers/net/libnet.a
|
2008-08-28 23:18:01 +00:00
|
|
|
LIBS += drivers/net/phy/libphy.a
|
2007-11-21 20:19:24 +00:00
|
|
|
LIBS += drivers/pci/libpci.a
|
|
|
|
LIBS += drivers/pcmcia/libpcmcia.a
|
2009-06-28 17:52:29 +00:00
|
|
|
LIBS += drivers/power/libpower.a
|
2008-01-17 03:37:35 +00:00
|
|
|
LIBS += drivers/spi/libspi.a
|
2006-11-03 18:11:15 +00:00
|
|
|
ifeq ($(CPU),mpc83xx)
|
|
|
|
LIBS += drivers/qe/qe.a
|
|
|
|
endif
|
2007-08-14 05:14:25 +00:00
|
|
|
ifeq ($(CPU),mpc85xx)
|
|
|
|
LIBS += drivers/qe/qe.a
|
2010-04-15 14:07:28 +00:00
|
|
|
LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.a
|
|
|
|
LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.a
|
2008-08-26 20:01:29 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(CPU),mpc86xx)
|
2010-04-15 14:07:28 +00:00
|
|
|
LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.a
|
|
|
|
LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.a
|
2007-08-14 05:14:25 +00:00
|
|
|
endif
|
2007-11-24 20:26:56 +00:00
|
|
|
LIBS += drivers/rtc/librtc.a
|
Added M5329AFEE and M5329BFEE Platforms
Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
rtc/mcfrtc.c
Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
lib_m68k/time.c, net/eth.c and rtc/Makefile
Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2007-06-18 18:50:13 +00:00
|
|
|
LIBS += drivers/serial/libserial.a
|
2009-03-29 22:31:32 +00:00
|
|
|
LIBS += drivers/twserial/libtws.a
|
2009-04-03 10:46:58 +00:00
|
|
|
LIBS += drivers/usb/gadget/libusb_gadget.a
|
|
|
|
LIBS += drivers/usb/host/libusb_host.a
|
|
|
|
LIBS += drivers/usb/musb/libusb_musb.a
|
2009-10-31 17:37:40 +00:00
|
|
|
LIBS += drivers/usb/phy/libusb_phy.a
|
2007-11-24 20:26:56 +00:00
|
|
|
LIBS += drivers/video/libvideo.a
|
2009-03-27 22:26:42 +00:00
|
|
|
LIBS += drivers/watchdog/libwatchdog.a
|
2002-11-02 23:17:16 +00:00
|
|
|
LIBS += common/libcommon.a
|
2010-04-13 03:28:06 +00:00
|
|
|
LIBS += lib/libfdt/libfdt.a
|
2008-01-09 18:39:36 +00:00
|
|
|
LIBS += api/libapi.a
|
2008-03-31 08:51:37 +00:00
|
|
|
LIBS += post/libpost.a
|
2006-09-01 17:49:50 +00:00
|
|
|
|
|
|
|
LIBS := $(addprefix $(obj),$(LIBS))
|
2008-11-03 15:30:59 +00:00
|
|
|
.PHONY : $(LIBS) $(TIMESTAMP_FILE) $(VERSION_FILE)
|
2003-12-06 19:49:23 +00:00
|
|
|
|
2008-04-30 15:25:07 +00:00
|
|
|
LIBBOARD = board/$(BOARDDIR)/lib$(BOARD).a
|
|
|
|
LIBBOARD := $(addprefix $(obj),$(LIBBOARD))
|
|
|
|
|
2003-09-11 23:06:34 +00:00
|
|
|
# Add GCC lib
|
2009-07-23 11:15:59 +00:00
|
|
|
ifdef USE_PRIVATE_LIBGCC
|
|
|
|
ifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
|
2010-04-13 03:28:04 +00:00
|
|
|
PLATFORM_LIBGCC = -L $(OBJTREE)/arch/$(ARCH)/lib -lgcc
|
2009-07-23 11:15:59 +00:00
|
|
|
else
|
|
|
|
PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
PLATFORM_LIBGCC = -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
|
|
|
|
endif
|
|
|
|
PLATFORM_LIBS += $(PLATFORM_LIBGCC)
|
|
|
|
export PLATFORM_LIBS
|
2004-03-14 15:06:13 +00:00
|
|
|
|
2009-08-23 06:47:59 +00:00
|
|
|
# Special flags for CPP when processing the linker script.
|
|
|
|
# Pass the version down so we can handle backwards compatibility
|
|
|
|
# on the fly.
|
|
|
|
LDPPFLAGS += \
|
|
|
|
-include $(TOPDIR)/include/u-boot/u-boot.lds.h \
|
|
|
|
$(shell $(LD) --version | \
|
|
|
|
sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
|
|
|
|
|
2006-09-07 09:51:23 +00:00
|
|
|
ifeq ($(CONFIG_NAND_U_BOOT),y)
|
|
|
|
NAND_SPL = nand_spl
|
|
|
|
U_BOOT_NAND = $(obj)u-boot-nand.bin
|
|
|
|
endif
|
|
|
|
|
2008-01-17 07:43:25 +00:00
|
|
|
ifeq ($(CONFIG_ONENAND_U_BOOT),y)
|
|
|
|
ONENAND_IPL = onenand_ipl
|
|
|
|
U_BOOT_ONENAND = $(obj)u-boot-onenand.bin
|
2009-09-22 00:05:00 +00:00
|
|
|
ONENAND_BIN ?= $(obj)onenand_ipl/onenand-ipl-2k.bin
|
2008-01-17 07:43:25 +00:00
|
|
|
endif
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
__OBJS := $(subst $(obj),,$(OBJS))
|
2008-04-30 15:25:07 +00:00
|
|
|
__LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD))
|
2006-09-01 17:49:50 +00:00
|
|
|
|
2003-08-05 17:43:17 +00:00
|
|
|
#########################################################################
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
|
2009-06-15 04:25:19 +00:00
|
|
|
# Always append ALL so that arch config.mk's can add custom ones
|
2008-01-17 07:43:25 +00:00
|
|
|
ALL += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND) $(U_BOOT_ONENAND)
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2003-08-05 17:43:17 +00:00
|
|
|
all: $(ALL)
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
$(obj)u-boot.hex: $(obj)u-boot
|
2005-01-09 21:28:15 +00:00
|
|
|
$(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
$(obj)u-boot.srec: $(obj)u-boot
|
2008-09-07 21:10:27 +00:00
|
|
|
$(OBJCOPY) -O srec $< $@
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
$(obj)u-boot.bin: $(obj)u-boot
|
2002-11-02 23:17:16 +00:00
|
|
|
$(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
|
|
|
|
|
2008-02-05 00:26:57 +00:00
|
|
|
$(obj)u-boot.ldr: $(obj)u-boot
|
2009-07-22 02:17:36 +00:00
|
|
|
$(CREATE_LDR_ENV)
|
2008-08-07 22:56:56 +00:00
|
|
|
$(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
|
2008-02-05 00:26:57 +00:00
|
|
|
|
|
|
|
$(obj)u-boot.ldr.hex: $(obj)u-boot.ldr
|
|
|
|
$(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary
|
|
|
|
|
|
|
|
$(obj)u-boot.ldr.srec: $(obj)u-boot.ldr
|
|
|
|
$(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
$(obj)u-boot.img: $(obj)u-boot.bin
|
2010-05-15 19:23:51 +00:00
|
|
|
$(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
|
2003-08-05 17:43:17 +00:00
|
|
|
-a $(TEXT_BASE) -e 0 \
|
2006-02-21 16:33:04 +00:00
|
|
|
-n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
|
2003-08-05 17:43:17 +00:00
|
|
|
sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
|
|
|
|
-d $< $@
|
|
|
|
|
2010-01-20 17:19:10 +00:00
|
|
|
$(obj)u-boot.imx: $(obj)u-boot.bin
|
|
|
|
$(obj)tools/mkimage -n $(IMX_CONFIG) -T imximage \
|
|
|
|
-e $(TEXT_BASE) -d $< $@
|
|
|
|
|
2009-09-07 09:35:02 +00:00
|
|
|
$(obj)u-boot.kwb: $(obj)u-boot.bin
|
|
|
|
$(obj)tools/mkimage -n $(KWD_CONFIG) -T kwbimage \
|
|
|
|
-a $(TEXT_BASE) -e $(TEXT_BASE) -d $< $@
|
|
|
|
|
2007-06-22 17:11:54 +00:00
|
|
|
$(obj)u-boot.sha1: $(obj)u-boot.bin
|
2007-07-13 23:06:58 +00:00
|
|
|
$(obj)tools/ubsha1 $(obj)u-boot.bin
|
2007-06-22 17:11:54 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
$(obj)u-boot.dis: $(obj)u-boot
|
2002-11-02 23:17:16 +00:00
|
|
|
$(OBJDUMP) -d $< > $@
|
|
|
|
|
2009-05-20 08:35:14 +00:00
|
|
|
GEN_UBOOT = \
|
2008-04-30 15:25:07 +00:00
|
|
|
UNDEF_SYM=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \
|
|
|
|
sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
|
2006-09-01 17:49:50 +00:00
|
|
|
cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
|
|
|
|
--start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
|
2002-11-19 23:01:07 +00:00
|
|
|
-Map u-boot.map -o u-boot
|
2009-08-17 12:00:53 +00:00
|
|
|
$(obj)u-boot: depend $(SUBDIRS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds
|
2009-05-20 08:35:14 +00:00
|
|
|
$(GEN_UBOOT)
|
|
|
|
ifeq ($(CONFIG_KALLSYMS),y)
|
2009-08-17 12:00:53 +00:00
|
|
|
smap=`$(call SYSTEM_MAP,u-boot) | \
|
|
|
|
awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
|
|
|
|
$(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \
|
|
|
|
-c common/system_map.c -o $(obj)common/system_map.o
|
2009-05-20 08:35:14 +00:00
|
|
|
$(GEN_UBOOT) $(obj)common/system_map.o
|
|
|
|
endif
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2009-03-13 23:54:25 +00:00
|
|
|
$(OBJS): depend
|
2010-04-13 03:28:02 +00:00
|
|
|
$(MAKE) -C $(CPUDIR) $(if $(REMOTE_BUILD),$@,$(notdir $@))
|
2006-09-01 17:49:50 +00:00
|
|
|
|
2009-03-13 23:54:25 +00:00
|
|
|
$(LIBS): depend $(SUBDIRS)
|
2006-09-01 17:49:50 +00:00
|
|
|
$(MAKE) -C $(dir $(subst $(obj),,$@))
|
2003-12-06 19:49:23 +00:00
|
|
|
|
2009-03-13 23:54:25 +00:00
|
|
|
$(LIBBOARD): depend $(LIBS)
|
2008-04-30 15:25:07 +00:00
|
|
|
$(MAKE) -C $(dir $(subst $(obj),,$@))
|
|
|
|
|
2009-03-13 23:54:25 +00:00
|
|
|
$(SUBDIRS): depend
|
2003-12-07 21:39:28 +00:00
|
|
|
$(MAKE) -C $@ all
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2009-03-13 23:54:25 +00:00
|
|
|
$(LDSCRIPT): depend
|
2008-02-16 07:12:37 +00:00
|
|
|
$(MAKE) -C $(dir $@) $(notdir $@)
|
|
|
|
|
2009-08-17 12:00:53 +00:00
|
|
|
$(obj)u-boot.lds: $(LDSCRIPT)
|
|
|
|
$(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
|
|
|
|
|
2008-11-03 15:30:59 +00:00
|
|
|
$(NAND_SPL): $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk
|
2006-10-23 20:17:05 +00:00
|
|
|
$(MAKE) -C nand_spl/board/$(BOARDDIR) all
|
2006-09-07 09:51:23 +00:00
|
|
|
|
2009-03-13 23:54:25 +00:00
|
|
|
$(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin
|
2006-10-23 20:17:05 +00:00
|
|
|
cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin
|
2006-09-07 09:51:23 +00:00
|
|
|
|
2008-11-03 15:30:59 +00:00
|
|
|
$(ONENAND_IPL): $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk
|
2008-08-06 12:05:38 +00:00
|
|
|
$(MAKE) -C onenand_ipl/board/$(BOARDDIR) all
|
2008-01-17 07:43:25 +00:00
|
|
|
|
2009-03-13 23:54:25 +00:00
|
|
|
$(U_BOOT_ONENAND): $(ONENAND_IPL) $(obj)u-boot.bin
|
2009-09-22 00:05:00 +00:00
|
|
|
cat $(ONENAND_BIN) $(obj)u-boot.bin > $(obj)u-boot-onenand.bin
|
2008-01-17 07:43:25 +00:00
|
|
|
|
2008-01-12 23:59:21 +00:00
|
|
|
$(VERSION_FILE):
|
2008-05-03 01:45:12 +00:00
|
|
|
@( printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' "$(U_BOOT_VERSION)" \
|
2008-11-12 19:06:48 +00:00
|
|
|
'$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ) > $@.tmp
|
2008-02-04 22:44:23 +00:00
|
|
|
@cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
|
2006-02-21 16:33:04 +00:00
|
|
|
|
2008-11-03 15:30:59 +00:00
|
|
|
$(TIMESTAMP_FILE):
|
|
|
|
@date +'#define U_BOOT_DATE "%b %d %C%y"' > $@
|
|
|
|
@date +'#define U_BOOT_TIME "%T"' >> $@
|
|
|
|
|
2003-08-07 14:20:31 +00:00
|
|
|
gdbtools:
|
2006-09-01 17:49:50 +00:00
|
|
|
$(MAKE) -C tools/gdb all || exit 1
|
|
|
|
|
|
|
|
updater:
|
|
|
|
$(MAKE) -C tools/updater all || exit 1
|
|
|
|
|
|
|
|
env:
|
2007-11-27 09:23:20 +00:00
|
|
|
$(MAKE) -C tools/env all MTD_VERSION=${MTD_VERSION} || exit 1
|
2003-08-07 14:20:31 +00:00
|
|
|
|
2010-01-18 17:13:39 +00:00
|
|
|
# Explicitly make _depend in subdirs containing multiple targets to prevent
|
|
|
|
# parallel sub-makes creating .depend files simultaneously.
|
2009-03-13 23:54:25 +00:00
|
|
|
depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk
|
2010-04-13 03:28:02 +00:00
|
|
|
for dir in $(SUBDIRS) $(CPUDIR) $(dir $(LDSCRIPT)) ; do \
|
2010-01-18 17:13:39 +00:00
|
|
|
$(MAKE) -C $$dir _depend ; done
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2009-12-09 10:13:26 +00:00
|
|
|
TAG_SUBDIRS = $(SUBDIRS)
|
|
|
|
TAG_SUBDIRS += $(dir $(__LIBS))
|
2007-11-25 17:45:47 +00:00
|
|
|
TAG_SUBDIRS += include
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
tags ctags:
|
2009-12-09 10:13:26 +00:00
|
|
|
ctags -w -o $(obj)ctags `find $(TAG_SUBDIRS) \
|
|
|
|
-name '*.[chS]' -print`
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
etags:
|
2009-12-09 10:13:26 +00:00
|
|
|
etags -a -o $(obj)etags `find $(TAG_SUBDIRS) \
|
|
|
|
-name '*.[chS]' -print`
|
2008-02-29 03:46:05 +00:00
|
|
|
cscope:
|
2009-12-09 10:13:26 +00:00
|
|
|
find $(TAG_SUBDIRS) -name '*.[chS]' -print > cscope.files
|
2008-02-29 03:46:05 +00:00
|
|
|
cscope -b -q -k
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2009-05-20 08:35:14 +00:00
|
|
|
SYSTEM_MAP = \
|
|
|
|
$(NM) $1 | \
|
2002-11-02 23:17:16 +00:00
|
|
|
grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
|
2009-05-20 08:35:14 +00:00
|
|
|
LC_ALL=C sort
|
|
|
|
$(obj)System.map: $(obj)u-boot
|
|
|
|
@$(call SYSTEM_MAP,$<) > $(obj)System.map
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2007-09-24 15:05:31 +00:00
|
|
|
#
|
|
|
|
# Auto-generate the autoconf.mk file (which is included by all makefiles)
|
|
|
|
#
|
|
|
|
# This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
|
|
|
|
# the dep file is only include in this top level makefile to determine when
|
|
|
|
# to regenerate the autoconf.mk file.
|
2008-05-13 21:15:52 +00:00
|
|
|
$(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h
|
|
|
|
@$(XECHO) Generating $@ ; \
|
2008-02-18 10:10:07 +00:00
|
|
|
set -e ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
: Generate the dependancies ; \
|
2009-07-19 19:17:03 +00:00
|
|
|
$(CC) -x c -DDO_DEPS_ONLY -M $(HOSTCFLAGS) $(CPPFLAGS) \
|
2008-05-13 21:15:52 +00:00
|
|
|
-MQ $(obj)include/autoconf.mk include/common.h > $@
|
|
|
|
|
|
|
|
$(obj)include/autoconf.mk: $(obj)include/config.h
|
|
|
|
@$(XECHO) Generating $@ ; \
|
|
|
|
set -e ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
: Extract the config macros ; \
|
2008-05-13 21:15:52 +00:00
|
|
|
$(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \
|
2008-12-16 13:41:02 +00:00
|
|
|
sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
|
|
|
|
mv $@.tmp $@
|
2007-09-24 15:05:31 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
2008-01-12 23:59:21 +00:00
|
|
|
else # !config.mk
|
2006-09-01 17:49:50 +00:00
|
|
|
all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
|
|
|
|
$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
|
2010-01-21 09:03:22 +00:00
|
|
|
$(filter-out tools,$(SUBDIRS)) $(TIMESTAMP_FILE) $(VERSION_FILE) gdbtools \
|
|
|
|
updater env depend dep tags ctags etags cscope $(obj)System.map:
|
2002-11-02 23:17:16 +00:00
|
|
|
@echo "System not configured - see README" >&2
|
|
|
|
@ exit 1
|
2010-01-21 09:03:22 +00:00
|
|
|
|
|
|
|
tools:
|
|
|
|
$(MAKE) -C tools
|
|
|
|
tools-all:
|
|
|
|
$(MAKE) -C tools HOST_TOOLS_ALL=y
|
2008-01-12 23:59:21 +00:00
|
|
|
endif # config.mk
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-10-24 22:43:17 +00:00
|
|
|
.PHONY : CHANGELOG
|
|
|
|
CHANGELOG:
|
2006-10-26 18:38:25 +00:00
|
|
|
git log --no-merges U-Boot-1_1_5.. | \
|
|
|
|
unexpand -a | sed -e 's/\s\s*$$//' > $@
|
2006-10-24 22:43:17 +00:00
|
|
|
|
2008-07-09 14:30:30 +00:00
|
|
|
include/license.h: tools/bin2header COPYING
|
|
|
|
cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
unconfig:
|
2006-09-07 09:51:23 +00:00
|
|
|
@rm -f $(obj)include/config.h $(obj)include/config.mk \
|
2007-09-24 15:05:31 +00:00
|
|
|
$(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \
|
|
|
|
$(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2009-10-01 16:11:54 +00:00
|
|
|
%: %_config
|
|
|
|
$(MAKE)
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#========================================================================
|
|
|
|
# PowerPC
|
|
|
|
#========================================================================
|
2003-03-31 17:27:09 +00:00
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
## MPC5xx Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2005-04-13 23:15:10 +00:00
|
|
|
canmb_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a canmb powerpc mpc5xxx canmb
|
2005-04-13 23:15:10 +00:00
|
|
|
|
2003-03-31 17:27:09 +00:00
|
|
|
cmi_mpc5xx_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc5xx cmi
|
2003-03-31 17:27:09 +00:00
|
|
|
|
2004-04-15 23:14:49 +00:00
|
|
|
PATI_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc5xx pati mpl
|
2004-01-02 16:05:07 +00:00
|
|
|
|
2003-07-16 21:53:01 +00:00
|
|
|
#########################################################################
|
|
|
|
## MPC5xxx Systems
|
|
|
|
#########################################################################
|
2005-06-10 10:00:19 +00:00
|
|
|
|
2005-08-11 22:22:49 +00:00
|
|
|
aev_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a aev powerpc mpc5xxx tqm5200 tqc
|
2005-08-11 22:22:49 +00:00
|
|
|
|
2006-04-21 16:30:47 +00:00
|
|
|
BC3450_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a BC3450 powerpc mpc5xxx bc3450
|
2006-04-21 16:30:47 +00:00
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
cm5200_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a cm5200 powerpc mpc5xxx cm5200
|
2008-07-15 20:22:44 +00:00
|
|
|
|
2005-08-22 15:51:53 +00:00
|
|
|
cpci5200_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a cpci5200 powerpc mpc5xxx cpci5200 esd
|
2005-08-22 15:51:53 +00:00
|
|
|
|
2009-03-17 09:06:40 +00:00
|
|
|
digsy_mtc_config \
|
|
|
|
digsy_mtc_LOWBOOT_config \
|
|
|
|
digsy_mtc_RAMBOOT_config: unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@mkdir -p $(obj)board/digsy_mtc
|
|
|
|
@ >$(obj)include/config.h
|
|
|
|
@[ -z "$(findstring LOWBOOT_,$@)" ] || \
|
|
|
|
{ echo "TEXT_BASE = 0xFF000000" >$(obj)board/digsy_mtc/config.tmp ; \
|
|
|
|
echo "... with LOWBOOT configuration" ; \
|
|
|
|
}
|
|
|
|
@[ -z "$(findstring RAMBOOT_,$@)" ] || \
|
|
|
|
{ echo "TEXT_BASE = 0x00100000" >$(obj)board/digsy_mtc/config.tmp ; \
|
|
|
|
echo "... with RAMBOOT configuration" ; \
|
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a digsy_mtc powerpc mpc5xxx digsy_mtc
|
2009-03-17 09:06:40 +00:00
|
|
|
|
2009-08-13 15:14:21 +00:00
|
|
|
galaxy5200_LOWBOOT_config \
|
|
|
|
galaxy5200_config: unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a galaxy5200 powerpc mpc5xxx galaxy5200
|
2009-08-13 15:14:21 +00:00
|
|
|
|
2007-10-20 23:01:17 +00:00
|
|
|
hmi1001_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) hmi1001 powerpc mpc5xxx hmi1001
|
2005-06-10 10:00:19 +00:00
|
|
|
|
2004-04-18 23:32:11 +00:00
|
|
|
Lite5200_config \
|
|
|
|
Lite5200_LOWBOOT_config \
|
|
|
|
Lite5200_LOWBOOT08_config \
|
|
|
|
icecube_5200_config \
|
|
|
|
icecube_5200_LOWBOOT_config \
|
|
|
|
icecube_5200_LOWBOOT08_config \
|
2006-11-30 17:02:20 +00:00
|
|
|
icecube_5200_DDR_config \
|
|
|
|
icecube_5200_DDR_LOWBOOT_config \
|
2010-03-12 09:01:12 +00:00
|
|
|
icecube_5200_DDR_LOWBOOT08_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@mkdir -p $(obj)board/icecube
|
2004-04-10 20:43:50 +00:00
|
|
|
@[ -z "$(findstring LOWBOOT_,$@)" ] || \
|
|
|
|
{ if [ "$(findstring DDR,$@)" ] ; \
|
2006-09-01 17:49:50 +00:00
|
|
|
then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
|
|
|
|
else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
|
2004-04-10 20:43:50 +00:00
|
|
|
fi ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with LOWBOOT configuration" ; \
|
2003-11-07 13:42:26 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring LOWBOOT08,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
|
2003-11-07 13:42:26 +00:00
|
|
|
echo "... with 8 MB flash only" ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with LOWBOOT configuration" ; \
|
2003-11-07 13:42:26 +00:00
|
|
|
}
|
2003-12-20 22:45:10 +00:00
|
|
|
@[ -z "$(findstring DDR,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... DDR memory revision" ; \
|
2003-12-20 22:45:10 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a IceCube powerpc mpc5xxx icecube
|
2003-07-16 21:53:01 +00:00
|
|
|
|
2007-10-20 23:01:17 +00:00
|
|
|
jupiter_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) jupiter powerpc mpc5xxx jupiter
|
2007-02-16 06:57:42 +00:00
|
|
|
|
2006-02-21 23:43:16 +00:00
|
|
|
inka4x0_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) inka4x0 powerpc mpc5xxx inka4x0
|
2004-12-16 15:52:40 +00:00
|
|
|
|
2009-10-23 10:03:16 +00:00
|
|
|
ipek01_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a ipek01 powerpc mpc5xxx ipek01
|
2009-10-23 10:03:16 +00:00
|
|
|
|
2006-03-17 10:42:53 +00:00
|
|
|
lite5200b_config \
|
2007-04-16 12:00:13 +00:00
|
|
|
lite5200b_PM_config \
|
2006-03-17 10:42:53 +00:00
|
|
|
lite5200b_LOWBOOT_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@mkdir -p $(obj)board/icecube
|
|
|
|
@ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
|
2008-01-12 23:59:21 +00:00
|
|
|
@ $(XECHO) "... DDR memory revision"
|
2006-09-01 17:49:50 +00:00
|
|
|
@ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h
|
2007-04-16 12:00:13 +00:00
|
|
|
@[ -z "$(findstring _PM_,$@)" ] || \
|
|
|
|
{ echo "#define CONFIG_LITE5200B_PM" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with power management (low-power mode) support" ; \
|
2007-04-16 12:00:13 +00:00
|
|
|
}
|
2006-03-17 10:42:53 +00:00
|
|
|
@[ -z "$(findstring LOWBOOT_,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with LOWBOOT configuration" ; \
|
2006-03-17 10:42:53 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a IceCube powerpc mpc5xxx icecube
|
2006-03-17 10:42:53 +00:00
|
|
|
|
2006-03-04 13:57:03 +00:00
|
|
|
mcc200_config \
|
2006-08-23 22:26:42 +00:00
|
|
|
mcc200_SDRAM_config \
|
|
|
|
mcc200_highboot_config \
|
|
|
|
mcc200_COM12_config \
|
|
|
|
mcc200_COM12_SDRAM_config \
|
2006-08-24 23:38:04 +00:00
|
|
|
mcc200_COM12_highboot_config \
|
|
|
|
mcc200_COM12_highboot_SDRAM_config \
|
2006-08-23 22:26:42 +00:00
|
|
|
mcc200_highboot_SDRAM_config \
|
|
|
|
prs200_config \
|
|
|
|
prs200_DDR_config \
|
|
|
|
prs200_highboot_config \
|
|
|
|
prs200_highboot_DDR_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@mkdir -p $(obj)board/mcc200
|
2006-07-23 20:40:51 +00:00
|
|
|
@[ -n "$(findstring highboot,$@)" ] || \
|
2008-01-12 23:59:21 +00:00
|
|
|
{ $(XECHO) "... with lowboot configuration" ; \
|
2006-03-04 13:57:03 +00:00
|
|
|
}
|
2006-07-23 20:40:51 +00:00
|
|
|
@[ -z "$(findstring highboot,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with highboot configuration" ; \
|
2006-07-23 20:40:51 +00:00
|
|
|
}
|
|
|
|
@[ -n "$(findstring _SDRAM,$@)" ] || \
|
2006-08-23 22:26:42 +00:00
|
|
|
{ if [ -n "$(findstring mcc200,$@)" ]; \
|
|
|
|
then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with DDR" ; \
|
2006-08-23 22:26:42 +00:00
|
|
|
else \
|
|
|
|
if [ -n "$(findstring _DDR,$@)" ];\
|
|
|
|
then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with DDR" ; \
|
2006-08-23 22:26:42 +00:00
|
|
|
else \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with SDRAM" ; \
|
2006-08-23 22:26:42 +00:00
|
|
|
fi; \
|
|
|
|
fi; \
|
2006-07-23 20:40:51 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring _SDRAM,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with SDRAM" ; \
|
2006-07-23 20:40:51 +00:00
|
|
|
}
|
2006-08-16 22:36:51 +00:00
|
|
|
@[ -z "$(findstring COM12,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with console on COM12" ; \
|
2006-08-16 22:36:51 +00:00
|
|
|
}
|
2006-08-23 22:26:42 +00:00
|
|
|
@[ -z "$(findstring prs200,$@)" ] || \
|
2008-03-04 13:58:31 +00:00
|
|
|
{ echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\
|
2006-08-23 22:26:42 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a mcc200 powerpc mpc5xxx mcc200
|
2006-02-21 23:43:16 +00:00
|
|
|
|
2007-01-31 15:37:34 +00:00
|
|
|
mecp5200_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) mecp5200 powerpc mpc5xxx mecp5200 esd
|
2007-01-31 15:37:34 +00:00
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
motionpro_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) motionpro powerpc mpc5xxx motionpro
|
2008-07-15 20:22:44 +00:00
|
|
|
|
2008-08-21 18:44:49 +00:00
|
|
|
mucmc52_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) mucmc52 powerpc mpc5xxx mucmc52
|
2008-08-21 18:44:49 +00:00
|
|
|
|
2008-01-11 14:15:14 +00:00
|
|
|
munices_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) munices powerpc mpc5xxx munices
|
2008-01-11 14:15:14 +00:00
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
MVBC_P_config: unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@mkdir -p $(obj)board/mvbc_p
|
|
|
|
@ >$(obj)include/config.h
|
|
|
|
@[ -z "$(findstring MVBC_P,$@)" ] || \
|
|
|
|
{ echo "#define CONFIG_MVBC_P" >>$(obj)include/config.h; }
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a MVBC_P powerpc mpc5xxx mvbc_p matrix_vision
|
2008-07-15 20:22:44 +00:00
|
|
|
|
2010-04-01 19:26:55 +00:00
|
|
|
MVSMR_config: unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@mkdir -p $(obj)board/matrix_vision/mvsmr
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc5xxx mvsmr matrix_vision
|
2010-04-01 19:26:55 +00:00
|
|
|
|
2008-03-02 15:12:31 +00:00
|
|
|
o2dnt_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) o2dnt powerpc mpc5xxx o2dnt
|
2005-08-17 23:22:22 +00:00
|
|
|
|
2009-06-14 22:21:28 +00:00
|
|
|
pcm030_config \
|
|
|
|
pcm030_LOWBOOT_config: unconfig
|
2009-07-19 10:05:15 +00:00
|
|
|
@mkdir -p $(obj)include $(obj)board/phytec/pcm030
|
2009-07-18 16:00:25 +00:00
|
|
|
@ >$(obj)include/config.h
|
2009-06-14 22:21:28 +00:00
|
|
|
@[ -z "$(findstring LOWBOOT_,$@)" ] || \
|
|
|
|
{ echo "TEXT_BASE = 0xFF000000" >$(obj)board/phytec/pcm030/config.tmp ; \
|
|
|
|
echo "... with LOWBOOT configuration" ; \
|
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a pcm030 powerpc mpc5xxx pcm030 phytec
|
2009-06-14 22:21:28 +00:00
|
|
|
|
2008-03-04 13:58:31 +00:00
|
|
|
pf5200_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) pf5200 powerpc mpc5xxx pf5200 esd
|
2005-08-22 15:51:53 +00:00
|
|
|
|
2004-08-04 21:56:49 +00:00
|
|
|
PM520_config \
|
|
|
|
PM520_DDR_config \
|
|
|
|
PM520_ROMBOOT_config \
|
|
|
|
PM520_ROMBOOT_DDR_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2004-08-04 21:56:49 +00:00
|
|
|
@[ -z "$(findstring DDR,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... DDR memory revision" ; \
|
2004-08-04 21:56:49 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring ROMBOOT,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... booting from 8-bit flash" ; \
|
2004-08-04 21:56:49 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a PM520 powerpc mpc5xxx pm520
|
2004-08-04 21:56:49 +00:00
|
|
|
|
2006-02-22 09:25:39 +00:00
|
|
|
smmaco4_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a smmaco4 powerpc mpc5xxx tqm5200 tqc
|
2006-02-22 00:59:13 +00:00
|
|
|
|
|
|
|
spieval_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a spieval powerpc mpc5xxx tqm5200 tqc
|
2006-02-22 00:59:13 +00:00
|
|
|
|
2006-07-19 15:52:30 +00:00
|
|
|
TB5200_B_config \
|
2006-07-19 11:50:38 +00:00
|
|
|
TB5200_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2006-07-19 15:52:30 +00:00
|
|
|
@[ -z "$(findstring _B,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with MPC5200B processor" ; \
|
2006-07-19 15:52:30 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a TB5200 powerpc mpc5xxx tqm5200 tqc
|
2006-07-19 11:50:38 +00:00
|
|
|
|
2004-01-02 14:00:00 +00:00
|
|
|
MINI5200_config \
|
|
|
|
EVAL5200_config \
|
|
|
|
TOP5200_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a TOP5200 powerpc mpc5xxx top5200 emk
|
2004-01-02 14:00:00 +00:00
|
|
|
|
2004-07-11 19:17:20 +00:00
|
|
|
Total5200_config \
|
|
|
|
Total5200_lowboot_config \
|
|
|
|
Total5200_Rev2_config \
|
|
|
|
Total5200_Rev2_lowboot_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@mkdir -p $(obj)board/total5200
|
2004-07-11 19:17:20 +00:00
|
|
|
@[ -n "$(findstring Rev,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... revision 1 board" ; \
|
2004-07-11 19:17:20 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring Rev2_,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... revision 2 board" ; \
|
2004-07-11 19:17:20 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring lowboot_,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with lowboot configuration" ; \
|
2004-07-11 19:17:20 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a Total5200 powerpc mpc5xxx total5200
|
2004-07-11 19:17:20 +00:00
|
|
|
|
2006-07-21 23:20:03 +00:00
|
|
|
cam5200_config \
|
2007-01-09 23:26:15 +00:00
|
|
|
cam5200_niosflash_config \
|
2006-08-18 21:27:33 +00:00
|
|
|
fo300_config \
|
2006-08-18 17:14:46 +00:00
|
|
|
MiniFAP_config \
|
2006-07-21 09:16:34 +00:00
|
|
|
TQM5200S_config \
|
|
|
|
TQM5200S_HIGHBOOT_config \
|
2006-08-18 21:27:33 +00:00
|
|
|
TQM5200_B_config \
|
|
|
|
TQM5200_B_HIGHBOOT_config \
|
|
|
|
TQM5200_config \
|
|
|
|
TQM5200_STK100_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-06-04 11:52:17 +00:00
|
|
|
@mkdir -p $(obj)board/tqc/tqm5200
|
2006-07-21 23:20:03 +00:00
|
|
|
@[ -z "$(findstring cam5200,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \
|
|
|
|
echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
|
|
|
|
echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... TQM5200S on Cam5200" ; \
|
2006-07-21 09:16:34 +00:00
|
|
|
}
|
2007-01-09 23:26:15 +00:00
|
|
|
@[ -z "$(findstring niosflash,$@)" ] || \
|
|
|
|
{ echo "#define CONFIG_CAM5200_NIOSFLASH" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with NIOS flash driver" ; \
|
2007-01-09 23:26:15 +00:00
|
|
|
}
|
2006-08-18 17:14:46 +00:00
|
|
|
@[ -z "$(findstring fo300,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_FO300" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... TQM5200 on FO300" ; \
|
2006-08-18 17:14:46 +00:00
|
|
|
}
|
2004-08-04 21:56:49 +00:00
|
|
|
@[ -z "$(findstring MiniFAP,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... TQM5200_AC on MiniFAP" ; \
|
2004-07-11 17:40:54 +00:00
|
|
|
}
|
2006-06-16 14:11:34 +00:00
|
|
|
@[ -z "$(findstring STK100,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... on a STK52XX.100 base board" ; \
|
2004-12-12 22:06:17 +00:00
|
|
|
}
|
2006-07-21 09:16:34 +00:00
|
|
|
@[ -z "$(findstring TQM5200_B,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
|
2006-07-21 09:16:34 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring TQM5200S,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
|
|
|
|
echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
|
2006-07-19 15:52:30 +00:00
|
|
|
}
|
2006-07-19 16:01:38 +00:00
|
|
|
@[ -z "$(findstring HIGHBOOT,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp ; \
|
2006-07-19 16:01:38 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a TQM5200 powerpc mpc5xxx tqm5200 tqc
|
2008-07-15 20:22:44 +00:00
|
|
|
|
2007-10-20 23:01:17 +00:00
|
|
|
uc101_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) uc101 powerpc mpc5xxx uc101
|
2007-02-09 09:45:42 +00:00
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
v38b_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a v38b powerpc mpc5xxx v38b
|
2004-07-11 17:40:54 +00:00
|
|
|
|
2007-07-27 12:43:59 +00:00
|
|
|
#########################################################################
|
|
|
|
## MPC512x Systems
|
|
|
|
#########################################################################
|
2008-07-15 20:22:44 +00:00
|
|
|
|
2009-05-16 08:47:46 +00:00
|
|
|
aria_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a aria powerpc mpc512x aria davedenx
|
2009-05-16 08:47:46 +00:00
|
|
|
|
2009-06-09 09:50:40 +00:00
|
|
|
mecp5123_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a mecp5123 powerpc mpc512x mecp5123 esd
|
2009-06-09 09:50:40 +00:00
|
|
|
|
2009-05-16 08:47:41 +00:00
|
|
|
mpc5121ads_config \
|
|
|
|
mpc5121ads_rev2_config \
|
2008-05-29 18:23:25 +00:00
|
|
|
: unconfig
|
2008-03-08 23:06:09 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-05-29 18:23:25 +00:00
|
|
|
@if [ "$(findstring rev2,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_ADS5121_REV2 1" > $(obj)include/config.h; \
|
2008-02-26 16:38:14 +00:00
|
|
|
fi
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a mpc5121ads powerpc mpc512x mpc5121ads freescale
|
2007-07-27 12:43:59 +00:00
|
|
|
|
2010-04-24 17:27:09 +00:00
|
|
|
pdm360ng_config: unconfig
|
|
|
|
@$(MKCONFIG) -a pdm360ng powerpc mpc512x pdm360ng
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
## MPC8xx Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2008-03-04 13:58:31 +00:00
|
|
|
Adder_config \
|
2004-06-09 21:50:45 +00:00
|
|
|
Adder87x_config \
|
2008-03-04 13:58:31 +00:00
|
|
|
AdderII_config \
|
2004-06-09 21:50:45 +00:00
|
|
|
: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2004-07-09 22:51:01 +00:00
|
|
|
$(if $(findstring AdderII,$@), \
|
2006-09-01 17:49:50 +00:00
|
|
|
@echo "#define CONFIG_MPC852T" > $(obj)include/config.h)
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a Adder powerpc mpc8xx adder
|
2004-06-09 21:50:45 +00:00
|
|
|
|
2006-06-14 15:45:53 +00:00
|
|
|
AdderUSB_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a AdderUSB powerpc mpc8xx adder
|
2006-06-14 15:45:53 +00:00
|
|
|
|
2008-03-04 13:58:31 +00:00
|
|
|
ADS860_config \
|
|
|
|
FADS823_config \
|
2004-01-04 16:28:35 +00:00
|
|
|
FADS850SAR_config \
|
|
|
|
MPC86xADS_config \
|
2004-06-06 21:35:06 +00:00
|
|
|
MPC885ADS_config \
|
2004-01-04 16:28:35 +00:00
|
|
|
FADS860T_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx fads
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
AMX860_config : unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx amx860 westel
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
c2mon_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx c2mon
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
CCM_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx CCM siemens
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
cogent_mpc8xx_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx cogent
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2003-03-12 10:41:04 +00:00
|
|
|
ELPT860_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx elpt860 LEOX
|
2003-03-12 10:41:04 +00:00
|
|
|
|
2006-03-12 22:17:31 +00:00
|
|
|
EP88x_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx ep88x
|
2006-03-12 22:17:31 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
ESTEEM192E_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx esteem192e
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
ETX094_config : unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx etx094
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
FLAGADM_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx flagadm
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2003-05-03 15:50:43 +00:00
|
|
|
xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
|
|
|
|
|
|
|
|
GEN860T_SC_config \
|
2002-11-02 23:17:16 +00:00
|
|
|
GEN860T_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2003-05-03 15:50:43 +00:00
|
|
|
@[ -z "$(findstring _SC,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_SC" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "With reduced H/W feature set (SC)..." ; \
|
2003-05-03 15:50:43 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a $(call xtract_GEN860T,$@) powerpc mpc8xx gen860t
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
GENIETV_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx genietv
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
GTH_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx gth
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
hermes_config : unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx hermes
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2004-03-13 23:29:43 +00:00
|
|
|
HMI10_config : unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx tqm8xx tqc
|
2004-03-13 23:29:43 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
IAD210_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx IAD210 siemens
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
|
|
|
|
|
|
|
|
ICU862_100MHz_config \
|
|
|
|
ICU862_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2002-11-02 23:17:16 +00:00
|
|
|
@[ -z "$(findstring _100MHz,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with 100MHz system clock" ; \
|
2002-11-02 23:17:16 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a $(call xtract_ICU862,$@) powerpc mpc8xx icu862
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
IP860_config : unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx ip860
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
IVML24_256_config \
|
|
|
|
IVML24_128_config \
|
|
|
|
IVML24_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2002-11-02 23:17:16 +00:00
|
|
|
@[ -z "$(findstring IVML24_config,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \
|
2002-11-02 23:17:16 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring IVML24_128_config,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \
|
2002-11-02 23:17:16 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring IVML24_256_config,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \
|
2002-11-02 23:17:16 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a IVML24 powerpc mpc8xx ivm
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
IVMS8_256_config \
|
|
|
|
IVMS8_128_config \
|
|
|
|
IVMS8_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2002-11-02 23:17:16 +00:00
|
|
|
@[ -z "$(findstring IVMS8_config,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \
|
2002-11-02 23:17:16 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring IVMS8_128_config,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \
|
2002-11-02 23:17:16 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring IVMS8_256_config,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \
|
2002-11-02 23:17:16 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a IVMS8 powerpc mpc8xx ivm
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2009-03-12 06:37:34 +00:00
|
|
|
kmsupx4_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx km8xx keymile
|
2009-03-12 06:37:34 +00:00
|
|
|
|
2002-11-05 16:35:14 +00:00
|
|
|
KUP4K_config : unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx kup4k kup
|
2004-03-25 19:29:38 +00:00
|
|
|
|
2008-03-04 13:58:31 +00:00
|
|
|
KUP4X_config : unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx kup4x kup
|
2002-11-05 16:35:14 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
LANTEC_config : unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx lantec
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
lwmon_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx lwmon
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
MBX_config \
|
|
|
|
MBX860T_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx mbx8xx
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2008-01-11 00:12:06 +00:00
|
|
|
mgsuvd_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx km8xx keymile
|
2008-01-11 00:12:06 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
MHPC_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx mhpc eltec
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2003-06-26 22:04:09 +00:00
|
|
|
xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
|
|
|
|
|
|
|
|
NETVIA_V2_config \
|
2002-11-02 23:17:16 +00:00
|
|
|
NETVIA_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2003-06-26 22:04:09 +00:00
|
|
|
@[ -z "$(findstring NETVIA_config,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... Version 1" ; \
|
2003-06-26 22:04:09 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... Version 2" ; \
|
2003-06-26 22:04:09 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a $(call xtract_NETVIA,$@) powerpc mpc8xx netvia
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2004-04-18 10:13:26 +00:00
|
|
|
xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
|
|
|
|
|
|
|
|
NETPHONE_V2_config \
|
2004-04-15 18:22:41 +00:00
|
|
|
NETPHONE_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2004-04-18 10:13:26 +00:00
|
|
|
@[ -z "$(findstring NETPHONE_config,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \
|
2004-04-18 10:13:26 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \
|
2004-04-18 10:13:26 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a $(call xtract_NETPHONE,$@) powerpc mpc8xx netphone
|
2004-04-15 18:22:41 +00:00
|
|
|
|
2004-06-07 23:46:25 +00:00
|
|
|
xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
|
2004-04-15 18:22:41 +00:00
|
|
|
|
2004-06-07 23:46:25 +00:00
|
|
|
NETTA_ISDN_6412_SWAPHOOK_config \
|
|
|
|
NETTA_ISDN_SWAPHOOK_config \
|
|
|
|
NETTA_6412_SWAPHOOK_config \
|
|
|
|
NETTA_SWAPHOOK_config \
|
|
|
|
NETTA_ISDN_6412_config \
|
2004-04-15 18:22:41 +00:00
|
|
|
NETTA_ISDN_config \
|
2004-06-07 23:46:25 +00:00
|
|
|
NETTA_6412_config \
|
2004-04-15 18:22:41 +00:00
|
|
|
NETTA_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2004-06-07 23:46:25 +00:00
|
|
|
@[ -z "$(findstring ISDN_,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \
|
2004-06-07 23:46:25 +00:00
|
|
|
}
|
|
|
|
@[ -n "$(findstring ISDN_,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \
|
2004-04-15 18:22:41 +00:00
|
|
|
}
|
2004-06-07 23:46:25 +00:00
|
|
|
@[ -z "$(findstring 6412_,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \
|
2004-06-07 23:46:25 +00:00
|
|
|
}
|
|
|
|
@[ -n "$(findstring 6412_,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \
|
2004-06-07 23:46:25 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring SWAPHOOK_,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \
|
2004-06-07 23:46:25 +00:00
|
|
|
}
|
|
|
|
@[ -n "$(findstring SWAPHOOK_,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \
|
2004-04-15 18:22:41 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a $(call xtract_NETTA,$@) powerpc mpc8xx netta
|
2004-04-15 18:22:41 +00:00
|
|
|
|
2004-06-07 23:46:25 +00:00
|
|
|
xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
|
|
|
|
|
|
|
|
NETTA2_V2_config \
|
|
|
|
NETTA2_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2004-06-07 23:46:25 +00:00
|
|
|
@[ -z "$(findstring NETTA2_config,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \
|
2004-06-07 23:46:25 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \
|
2004-06-07 23:46:25 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a $(call xtract_NETTA2,$@) powerpc mpc8xx netta2
|
2004-06-07 23:46:25 +00:00
|
|
|
|
2006-04-19 09:52:46 +00:00
|
|
|
NC650_Rev1_config \
|
|
|
|
NC650_Rev2_config \
|
|
|
|
CP850_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2006-04-19 09:52:46 +00:00
|
|
|
@[ -z "$(findstring CP850,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \
|
|
|
|
echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
|
2006-04-19 09:52:46 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring Rev1,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \
|
2006-04-19 09:52:46 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring Rev2,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
|
2006-04-19 09:52:46 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a NC650 powerpc mpc8xx nc650
|
2004-08-28 22:45:57 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
NX823_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx nx823
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
pcu_e_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx pcu_e siemens
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2003-12-07 22:27:15 +00:00
|
|
|
QS850_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx qs850 snmc
|
2003-12-07 22:27:15 +00:00
|
|
|
|
|
|
|
QS823_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx qs850 snmc
|
2003-12-07 22:27:15 +00:00
|
|
|
|
|
|
|
QS860T_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx qs860t snmc
|
2003-12-07 22:27:15 +00:00
|
|
|
|
2004-09-29 11:02:56 +00:00
|
|
|
quantum_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx quantum
|
2004-09-29 11:02:56 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
R360MPI_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx r360mpi
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2003-06-03 23:54:09 +00:00
|
|
|
RBC823_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx rbc823
|
2003-06-03 23:54:09 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
RPXClassic_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx RPXClassic
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
RPXlite_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx RPXlite
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-11-30 17:02:20 +00:00
|
|
|
RPXlite_DW_64_config \
|
|
|
|
RPXlite_DW_LCD_config \
|
|
|
|
RPXlite_DW_64_LCD_config \
|
2004-06-09 21:04:48 +00:00
|
|
|
RPXlite_DW_NVRAM_config \
|
2008-03-04 13:58:31 +00:00
|
|
|
RPXlite_DW_NVRAM_64_config \
|
2004-06-09 21:04:48 +00:00
|
|
|
RPXlite_DW_NVRAM_LCD_config \
|
2008-03-04 13:58:31 +00:00
|
|
|
RPXlite_DW_NVRAM_64_LCD_config \
|
2007-10-20 23:01:17 +00:00
|
|
|
RPXlite_DW_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2004-06-09 21:04:48 +00:00
|
|
|
@[ -z "$(findstring _64,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with 64MHz system clock ..."; \
|
2004-06-09 21:04:48 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring _LCD,$@)" ] || \
|
2006-11-30 17:02:20 +00:00
|
|
|
{ echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with LCD display ..."; \
|
2004-06-09 21:04:48 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring _NVRAM,$@)" ] || \
|
2008-09-10 20:47:59 +00:00
|
|
|
{ echo "#define CONFIG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with ENV in NVRAM ..."; \
|
2004-06-09 21:04:48 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a RPXlite_DW powerpc mpc8xx RPXlite_dw
|
2004-06-09 21:04:48 +00:00
|
|
|
|
2003-06-05 19:27:42 +00:00
|
|
|
rmu_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx rmu
|
2003-06-05 19:27:42 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
RRvision_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx RRvision
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
RRvision_LCD_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_LCD" >$(obj)include/config.h
|
|
|
|
@echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a RRvision powerpc mpc8xx RRvision
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
SM850_config : unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx tqm8xx tqc
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2008-03-02 15:12:31 +00:00
|
|
|
spc1920_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx spc1920
|
2006-07-12 06:48:24 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
SPD823TS_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx spd8xx
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2005-08-15 13:55:00 +00:00
|
|
|
stxxtc_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx stxxtc stx
|
2005-08-15 13:55:00 +00:00
|
|
|
|
2003-03-26 06:55:25 +00:00
|
|
|
svm_sc8xx_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx svm_sc8xx
|
2003-03-26 06:55:25 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
SXNI855T_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx sixnet
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2003-03-06 00:58:30 +00:00
|
|
|
# EMK MPC8xx based modules
|
|
|
|
TOP860_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx top860 emk
|
2003-03-06 00:58:30 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
# Play some tricks for configuration selection
|
2004-04-24 23:23:30 +00:00
|
|
|
# Only 855 and 860 boards may come with FEC
|
|
|
|
# and only 823 boards may have LCD support
|
|
|
|
xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
FPS850L_config \
|
2002-11-05 00:17:55 +00:00
|
|
|
FPS860L_config \
|
2003-07-07 20:07:54 +00:00
|
|
|
NSCU_config \
|
2002-11-02 23:17:16 +00:00
|
|
|
TQM823L_config \
|
|
|
|
TQM823L_LCD_config \
|
|
|
|
TQM850L_config \
|
|
|
|
TQM855L_config \
|
|
|
|
TQM860L_config \
|
2003-04-10 11:18:18 +00:00
|
|
|
TQM862L_config \
|
2003-08-07 22:18:11 +00:00
|
|
|
TQM823M_config \
|
|
|
|
TQM850M_config \
|
2003-07-07 20:07:54 +00:00
|
|
|
TQM855M_config \
|
|
|
|
TQM860M_config \
|
|
|
|
TQM862M_config \
|
2006-05-12 14:15:46 +00:00
|
|
|
TQM866M_config \
|
2006-07-12 13:26:01 +00:00
|
|
|
TQM885D_config \
|
2008-01-10 16:59:07 +00:00
|
|
|
TK885D_config \
|
2006-05-12 14:15:46 +00:00
|
|
|
virtlab2_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2002-11-02 23:17:16 +00:00
|
|
|
@[ -z "$(findstring _LCD,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
|
|
|
|
echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with LCD display" ; \
|
2002-11-02 23:17:16 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a $(call xtract_8xx,$@) powerpc mpc8xx tqm8xx tqc
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
TTTech_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_LCD" >$(obj)include/config.h
|
|
|
|
@echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a TQM823L powerpc mpc8xx tqm8xx tqc
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2004-12-19 09:58:11 +00:00
|
|
|
uc100_config : unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx uc100
|
2004-12-18 22:35:43 +00:00
|
|
|
|
2003-01-13 23:54:46 +00:00
|
|
|
v37_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_LCD" >$(obj)include/config.h
|
|
|
|
@echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8xx v37
|
2003-01-13 23:54:46 +00:00
|
|
|
|
2003-09-25 22:32:40 +00:00
|
|
|
wtk_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_LCD" >$(obj)include/config.h
|
|
|
|
@echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a TQM823L powerpc mpc8xx tqm8xx tqc
|
2003-09-25 22:32:40 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
## PPC4xx Systems
|
|
|
|
#########################################################################
|
2004-07-01 21:40:08 +00:00
|
|
|
xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2007-03-21 12:39:57 +00:00
|
|
|
acadia_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx acadia amcc
|
2007-03-21 12:39:57 +00:00
|
|
|
|
2007-06-06 09:42:13 +00:00
|
|
|
acadia_nand_config: unconfig
|
2007-08-02 08:11:18 +00:00
|
|
|
@mkdir -p $(obj)include $(obj)board/amcc/acadia
|
|
|
|
@mkdir -p $(obj)nand_spl/board/amcc/acadia
|
2007-06-06 09:42:13 +00:00
|
|
|
@echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a acadia powerpc ppc4xx acadia amcc
|
2007-06-06 09:42:13 +00:00
|
|
|
@echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/acadia/config.tmp
|
|
|
|
@echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
ADCIOP_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx adciop esd
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-08-15 12:22:35 +00:00
|
|
|
alpr_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx alpr prodrive
|
2006-08-15 12:22:35 +00:00
|
|
|
|
2005-10-08 23:04:33 +00:00
|
|
|
AP1000_config:unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx ap1000 amirix
|
2005-10-08 23:04:33 +00:00
|
|
|
|
2004-12-16 18:44:40 +00:00
|
|
|
APC405_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx apc405 esd
|
2004-12-16 18:44:40 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
AR405_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx ar405 esd
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2003-05-23 11:41:44 +00:00
|
|
|
ASH405_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx ash405 esd
|
2003-05-23 11:41:44 +00:00
|
|
|
|
2005-08-01 14:49:12 +00:00
|
|
|
bamboo_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx bamboo amcc
|
2005-08-01 14:49:12 +00:00
|
|
|
|
2007-06-01 13:27:11 +00:00
|
|
|
bamboo_nand_config: unconfig
|
2007-08-02 08:11:18 +00:00
|
|
|
@mkdir -p $(obj)include $(obj)board/amcc/bamboo
|
|
|
|
@mkdir -p $(obj)nand_spl/board/amcc/bamboo
|
2007-06-01 13:27:11 +00:00
|
|
|
@echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a bamboo powerpc ppc4xx bamboo amcc
|
2007-06-01 13:27:11 +00:00
|
|
|
@echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/bamboo/config.tmp
|
|
|
|
@echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
|
|
|
|
|
2005-08-01 14:49:12 +00:00
|
|
|
bubinga_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx bubinga amcc
|
2003-05-23 11:41:44 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
CANBT_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx canbt esd
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2008-10-08 17:12:53 +00:00
|
|
|
# Arches, Canyonlands & Glacier use different U-Boot images
|
|
|
|
arches_config \
|
2008-03-19 15:20:49 +00:00
|
|
|
canyonlands_config \
|
|
|
|
glacier_config: unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
|
|
|
|
tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a canyonlands powerpc ppc4xx canyonlands amcc
|
2008-03-11 15:53:00 +00:00
|
|
|
|
2008-04-08 08:33:27 +00:00
|
|
|
canyonlands_nand_config \
|
|
|
|
glacier_nand_config: unconfig
|
2008-03-03 16:27:02 +00:00
|
|
|
@mkdir -p $(obj)include $(obj)board/amcc/canyonlands
|
|
|
|
@mkdir -p $(obj)nand_spl/board/amcc/canyonlands
|
|
|
|
@echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
|
2008-04-08 08:33:27 +00:00
|
|
|
@echo "#define CONFIG_$$(echo $(subst ,,$(@:_nand_config=)) | \
|
|
|
|
tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a canyonlands powerpc ppc4xx canyonlands amcc
|
2008-03-03 16:27:02 +00:00
|
|
|
@echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/canyonlands/config.tmp
|
|
|
|
@echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
|
|
|
|
|
2004-09-09 17:44:35 +00:00
|
|
|
CATcenter_config \
|
|
|
|
CATcenter_25_config \
|
|
|
|
CATcenter_33_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h
|
|
|
|
@ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h
|
2004-09-09 17:44:35 +00:00
|
|
|
@[ -z "$(findstring _25,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "SysClk = 25MHz" ; \
|
2004-09-09 17:44:35 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring _33,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "SysClk = 33MHz" ; \
|
2004-09-09 17:44:35 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a $(call xtract_4xx,$@) powerpc ppc4xx PPChameleonEVB dave
|
2004-05-13 13:23:58 +00:00
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
CMS700_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx cms700 esd
|
2008-07-15 20:22:44 +00:00
|
|
|
|
2005-09-22 07:16:57 +00:00
|
|
|
CPCI2DP_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx cpci2dp esd
|
2005-09-22 07:16:57 +00:00
|
|
|
|
2008-12-10 13:41:25 +00:00
|
|
|
CPCI405_config \
|
2008-09-05 13:34:02 +00:00
|
|
|
CPCI4052_config \
|
2004-12-16 18:44:40 +00:00
|
|
|
CPCI405DT_config \
|
2003-05-23 11:41:44 +00:00
|
|
|
CPCI405AB_config: unconfig
|
2008-09-09 07:50:24 +00:00
|
|
|
@mkdir -p $(obj)board/esd/cpci405
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx cpci405 esd
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
CPCIISER4_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx cpciiser4 esd
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2004-04-15 23:14:49 +00:00
|
|
|
CRAYL1_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx L1 cray
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2004-02-23 20:48:38 +00:00
|
|
|
csb272_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx csb272
|
2004-02-23 20:48:38 +00:00
|
|
|
|
2004-06-09 12:47:02 +00:00
|
|
|
csb472_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx csb472
|
2004-06-09 12:47:02 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
DASA_SIM_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx dasa_sim esd
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2009-07-17 12:16:40 +00:00
|
|
|
dlvision_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx dlvision gdsys
|
2009-07-17 12:16:40 +00:00
|
|
|
|
2003-09-12 08:57:15 +00:00
|
|
|
DP405_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx dp405 esd
|
2003-09-12 08:57:15 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
DU405_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx du405 esd
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2008-01-17 09:53:08 +00:00
|
|
|
DU440_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx du440 esd
|
2008-01-17 09:53:08 +00:00
|
|
|
|
2005-08-01 14:49:12 +00:00
|
|
|
ebony_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx ebony amcc
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2004-04-15 23:14:49 +00:00
|
|
|
ERIC_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx eric
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2008-10-24 11:51:52 +00:00
|
|
|
fx12mm_flash_config: unconfig
|
|
|
|
@mkdir -p $(obj)include $(obj)board/xilinx/ppc405-generic
|
|
|
|
@mkdir -p $(obj)include $(obj)board/avnet/fx12mm
|
|
|
|
@echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc405-generic/u-boot-rom.lds"\
|
|
|
|
> $(obj)board/avnet/fx12mm/config.tmp
|
|
|
|
@echo "TEXT_BASE := 0xFFCB0000" \
|
|
|
|
>> $(obj)board/avnet/fx12mm/config.tmp
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) fx12mm powerpc ppc4xx fx12mm avnet
|
2008-10-24 11:51:52 +00:00
|
|
|
|
|
|
|
fx12mm_config: unconfig
|
|
|
|
@mkdir -p $(obj)include $(obj)board/xilinx/ppc405-generic
|
|
|
|
@mkdir -p $(obj)include $(obj)board/avnet/fx12mm
|
|
|
|
@echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc405-generic/u-boot-ram.lds"\
|
|
|
|
> $(obj)board/avnet/fx12mm/config.tmp
|
|
|
|
@echo "TEXT_BASE := 0x03000000" \
|
|
|
|
>> $(obj)board/avnet/fx12mm/config.tmp
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) fx12mm powerpc ppc4xx fx12mm avnet
|
2008-10-24 11:51:52 +00:00
|
|
|
|
2004-12-16 18:44:40 +00:00
|
|
|
G2000_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx g2000
|
2004-12-16 18:44:40 +00:00
|
|
|
|
2008-12-09 12:12:40 +00:00
|
|
|
gdppc440etx_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx gdppc440etx gdsys
|
2008-12-09 12:12:40 +00:00
|
|
|
|
2007-07-27 09:28:44 +00:00
|
|
|
hcu4_config: unconfig
|
2008-02-05 09:26:42 +00:00
|
|
|
@mkdir -p $(obj)board/netstal/common
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx hcu4 netstal
|
2007-07-27 09:28:44 +00:00
|
|
|
|
|
|
|
hcu5_config: unconfig
|
2008-02-05 09:26:42 +00:00
|
|
|
@mkdir -p $(obj)board/netstal/common
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx hcu5 netstal
|
2007-07-27 09:28:44 +00:00
|
|
|
|
2004-12-16 18:44:40 +00:00
|
|
|
HH405_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx hh405 esd
|
2004-12-16 18:44:40 +00:00
|
|
|
|
2003-09-12 08:57:15 +00:00
|
|
|
HUB405_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx hub405 esd
|
2003-09-12 08:57:15 +00:00
|
|
|
|
2010-04-27 09:37:28 +00:00
|
|
|
icon_config: unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx icon mosaixtech
|
|
|
|
|
2009-09-09 10:36:07 +00:00
|
|
|
# Compact-Center(codename intip) & DevCon-Center use different U-Boot images
|
|
|
|
intip_config \
|
|
|
|
devconcenter_config: unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
|
|
|
|
tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a intip powerpc ppc4xx intip gdsys
|
2009-09-09 10:36:07 +00:00
|
|
|
|
2004-04-15 23:14:49 +00:00
|
|
|
JSE_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx jse
|
2004-04-15 23:14:49 +00:00
|
|
|
|
2005-08-15 10:31:23 +00:00
|
|
|
KAREF_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx karef sandburst
|
2005-08-15 10:31:23 +00:00
|
|
|
|
2007-02-20 09:57:08 +00:00
|
|
|
katmai_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx katmai amcc
|
2007-02-20 09:57:08 +00:00
|
|
|
|
2007-10-23 08:10:08 +00:00
|
|
|
# Kilauea & Haleakala images are identical (recognized via PVR)
|
|
|
|
kilauea_config \
|
|
|
|
haleakala_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a kilauea powerpc ppc4xx kilauea amcc
|
2007-10-05 15:11:30 +00:00
|
|
|
|
2007-11-03 11:08:28 +00:00
|
|
|
kilauea_nand_config \
|
|
|
|
haleakala_nand_config: unconfig
|
|
|
|
@mkdir -p $(obj)include $(obj)board/amcc/kilauea
|
|
|
|
@mkdir -p $(obj)nand_spl/board/amcc/kilauea
|
|
|
|
@echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a kilauea powerpc ppc4xx kilauea amcc
|
2007-11-03 11:08:28 +00:00
|
|
|
@echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/kilauea/config.tmp
|
|
|
|
@echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
|
|
|
|
|
2007-12-27 16:28:51 +00:00
|
|
|
korat_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx korat
|
2007-12-27 16:28:51 +00:00
|
|
|
|
2005-11-29 17:18:21 +00:00
|
|
|
luan_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx luan amcc
|
2005-11-29 17:18:21 +00:00
|
|
|
|
2007-06-15 06:18:01 +00:00
|
|
|
lwmon5_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx lwmon5
|
2007-06-15 06:18:01 +00:00
|
|
|
|
2007-10-22 05:34:34 +00:00
|
|
|
makalu_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx makalu amcc
|
2007-10-22 05:34:34 +00:00
|
|
|
|
2008-02-25 17:46:41 +00:00
|
|
|
mcu25_config: unconfig
|
|
|
|
@mkdir -p $(obj)board/netstal/common
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx mcu25 netstal
|
2008-02-25 17:46:41 +00:00
|
|
|
|
2005-08-15 10:31:23 +00:00
|
|
|
METROBOX_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx metrobox sandburst
|
2005-08-15 10:31:23 +00:00
|
|
|
|
2004-04-15 23:14:49 +00:00
|
|
|
MIP405_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx mip405 mpl
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2004-04-15 23:14:49 +00:00
|
|
|
MIP405T_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_MIP405T" >$(obj)include/config.h
|
2008-01-12 23:59:21 +00:00
|
|
|
@$(XECHO) "Enable subset config for MIP405T"
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a MIP405 powerpc ppc4xx mip405 mpl
|
2003-06-04 15:05:30 +00:00
|
|
|
|
2004-04-15 23:14:49 +00:00
|
|
|
ML2_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx ml2
|
2002-11-02 23:17:16 +00:00
|
|
|
|
ppc44x: Unification of virtex5 pp440 boards
This patch provides an unificated way of handling xilinx v5 ppc440 boards.
It unificates 3 different things:
1) Source code
A new board called ppc440-generic has been created. This board includes
a generic tlb initialization (Maps the whole memory into virtual) and
defines board_pre_init, checkboard, initdram and get_sys_info weakly,
so, they can be replaced by specific functions.
If a new board needs to redefine any of the previous functions
(specific initialization) it can create a new directory with the
specific initializations needed. (see the example ml507 board).
2) Configuration file
Common configurations are located under configs/xilinx-ppc440.h, this
header file interpretes the xparameters file generated by EDK and
configurates u-boot in correspondence. Example: if there is a Temac,
allows CMD_CONFIG_NET
Specific configuration are located under specific configuration file.
(see the example ml507 board)
3) Makefile
Some work has been done in order to not duplicate work in the Main
Makefile. Please see the attached code.
In order to support new boards they can be implemented in the next way:
a) Simple Generic Board (90% of the time)
Using EDK generates a new xparameters.h file, replace
ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
&& make
b) Simple Boards with special u-boot parameters (9 % of the time)
Create a new file under configs for it (use ml507.h as example) and
change your paramaters. Create a new Makefile paragraph and compile
c) Complex boards (1% of the time)
Create a new folder for the board, like the ml507
Finally, it adds support for the Avnet FX30T Evaluation board, following
the new generic structure:
Cheap board by Avnet for evaluating the Virtex5 FX technology.
This patch adds support for:
- UartLite
- 16MB Flash
- 64MB RAM
Prior using U-boot in this board, read carefully the ERRATA by Avnet
to solve some memory initialization issues.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
Signed-off-by: Stefan Roese <sr@denx.de>
2008-09-01 17:09:39 +00:00
|
|
|
ml507_flash_config: unconfig
|
2008-09-09 14:00:33 +00:00
|
|
|
@mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic
|
2008-07-21 18:30:07 +00:00
|
|
|
@mkdir -p $(obj)include $(obj)board/xilinx/ml507
|
2008-09-09 14:00:33 +00:00
|
|
|
@echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-rom.lds"\
|
|
|
|
> $(obj)board/xilinx/ml507/config.tmp
|
|
|
|
@echo "TEXT_BASE := 0xFE360000" \
|
|
|
|
>> $(obj)board/xilinx/ml507/config.tmp
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) ml507 powerpc ppc4xx ml507 xilinx
|
2008-07-21 18:30:07 +00:00
|
|
|
|
ppc44x: Unification of virtex5 pp440 boards
This patch provides an unificated way of handling xilinx v5 ppc440 boards.
It unificates 3 different things:
1) Source code
A new board called ppc440-generic has been created. This board includes
a generic tlb initialization (Maps the whole memory into virtual) and
defines board_pre_init, checkboard, initdram and get_sys_info weakly,
so, they can be replaced by specific functions.
If a new board needs to redefine any of the previous functions
(specific initialization) it can create a new directory with the
specific initializations needed. (see the example ml507 board).
2) Configuration file
Common configurations are located under configs/xilinx-ppc440.h, this
header file interpretes the xparameters file generated by EDK and
configurates u-boot in correspondence. Example: if there is a Temac,
allows CMD_CONFIG_NET
Specific configuration are located under specific configuration file.
(see the example ml507 board)
3) Makefile
Some work has been done in order to not duplicate work in the Main
Makefile. Please see the attached code.
In order to support new boards they can be implemented in the next way:
a) Simple Generic Board (90% of the time)
Using EDK generates a new xparameters.h file, replace
ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
&& make
b) Simple Boards with special u-boot parameters (9 % of the time)
Create a new file under configs for it (use ml507.h as example) and
change your paramaters. Create a new Makefile paragraph and compile
c) Complex boards (1% of the time)
Create a new folder for the board, like the ml507
Finally, it adds support for the Avnet FX30T Evaluation board, following
the new generic structure:
Cheap board by Avnet for evaluating the Virtex5 FX technology.
This patch adds support for:
- UartLite
- 16MB Flash
- 64MB RAM
Prior using U-boot in this board, read carefully the ERRATA by Avnet
to solve some memory initialization issues.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
Signed-off-by: Stefan Roese <sr@denx.de>
2008-09-01 17:09:39 +00:00
|
|
|
ml507_config: unconfig
|
2008-09-09 14:00:33 +00:00
|
|
|
@mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic
|
2008-07-21 18:30:07 +00:00
|
|
|
@mkdir -p $(obj)include $(obj)board/xilinx/ml507
|
2008-09-09 14:00:33 +00:00
|
|
|
@echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-ram.lds"\
|
|
|
|
> $(obj)board/xilinx/ml507/config.tmp
|
|
|
|
@echo "TEXT_BASE := 0x04000000" \
|
|
|
|
>> $(obj)board/xilinx/ml507/config.tmp
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) ml507 powerpc ppc4xx ml507 xilinx
|
2008-07-17 10:47:09 +00:00
|
|
|
|
2008-10-08 13:37:50 +00:00
|
|
|
neo_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx neo gdsys
|
2008-10-08 13:37:50 +00:00
|
|
|
|
2005-08-01 14:49:12 +00:00
|
|
|
ocotea_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx ocotea amcc
|
2004-03-14 00:07:33 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
OCRTC_config \
|
|
|
|
ORSG_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx ocrtc esd
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2005-11-22 12:20:42 +00:00
|
|
|
p3p440_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx p3p440 prodrive
|
2005-11-22 12:20:42 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
PCI405_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx pci405 esd
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-06-02 14:18:04 +00:00
|
|
|
pcs440ep_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx pcs440ep
|
2006-06-02 14:18:04 +00:00
|
|
|
|
2004-04-15 23:14:49 +00:00
|
|
|
PIP405_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx pip405 mpl
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2003-09-12 08:57:15 +00:00
|
|
|
PLU405_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx plu405 esd
|
2003-09-12 08:57:15 +00:00
|
|
|
|
2003-05-23 11:41:44 +00:00
|
|
|
PMC405_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx pmc405 esd
|
2003-05-23 11:41:44 +00:00
|
|
|
|
2009-07-22 11:56:21 +00:00
|
|
|
PMC405DE_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx pmc405de esd
|
2009-07-22 11:56:21 +00:00
|
|
|
|
2007-12-28 16:07:24 +00:00
|
|
|
PMC440_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx pmc440 esd
|
2007-12-28 16:07:24 +00:00
|
|
|
|
2004-08-01 22:48:16 +00:00
|
|
|
PPChameleonEVB_config \
|
2004-07-01 21:40:08 +00:00
|
|
|
PPChameleonEVB_BA_25_config \
|
|
|
|
PPChameleonEVB_ME_25_config \
|
|
|
|
PPChameleonEVB_HI_25_config \
|
|
|
|
PPChameleonEVB_BA_33_config \
|
|
|
|
PPChameleonEVB_ME_33_config \
|
|
|
|
PPChameleonEVB_HI_33_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2004-09-09 17:44:35 +00:00
|
|
|
@[ -z "$(findstring EVB_BA,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... BASIC model" ; \
|
2003-10-06 21:55:32 +00:00
|
|
|
}
|
2004-09-09 17:44:35 +00:00
|
|
|
@[ -z "$(findstring EVB_ME,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... MEDIUM model" ; \
|
2003-10-06 21:55:32 +00:00
|
|
|
}
|
2004-09-09 17:44:35 +00:00
|
|
|
@[ -z "$(findstring EVB_HI,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... HIGH-END model" ; \
|
2003-10-06 21:55:32 +00:00
|
|
|
}
|
2004-07-01 21:40:08 +00:00
|
|
|
@[ -z "$(findstring _25,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "SysClk = 25MHz" ; \
|
2004-07-01 21:40:08 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring _33,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "SysClk = 33MHz" ; \
|
2004-07-01 21:40:08 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a $(call xtract_4xx,$@) powerpc ppc4xx PPChameleonEVB dave
|
2003-09-02 22:48:03 +00:00
|
|
|
|
2008-04-28 12:04:32 +00:00
|
|
|
quad100hd_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx quad100hd
|
2008-04-28 12:04:32 +00:00
|
|
|
|
2008-07-17 08:40:51 +00:00
|
|
|
redwood_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx redwood amcc
|
2008-07-17 08:40:51 +00:00
|
|
|
|
2005-01-09 23:48:14 +00:00
|
|
|
sbc405_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx sbc405
|
2005-01-09 23:48:14 +00:00
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
sc3_config:unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx sc3
|
2008-07-15 20:22:44 +00:00
|
|
|
|
2007-03-28 13:03:16 +00:00
|
|
|
sequoia_config \
|
|
|
|
rainier_config: unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
|
|
|
|
tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a sequoia powerpc ppc4xx sequoia amcc
|
2006-09-07 09:51:23 +00:00
|
|
|
|
2007-03-28 13:03:16 +00:00
|
|
|
sequoia_nand_config \
|
|
|
|
rainier_nand_config: unconfig
|
2007-08-02 08:11:18 +00:00
|
|
|
@mkdir -p $(obj)include $(obj)board/amcc/sequoia
|
|
|
|
@mkdir -p $(obj)nand_spl/board/amcc/sequoia
|
2006-10-23 20:17:05 +00:00
|
|
|
@echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
|
2007-03-28 13:03:16 +00:00
|
|
|
@echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
|
|
|
|
tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a sequoia powerpc ppc4xx sequoia amcc
|
2006-10-23 20:17:05 +00:00
|
|
|
@echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
|
|
|
|
@echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
|
2005-01-09 23:48:14 +00:00
|
|
|
|
2009-05-11 11:46:14 +00:00
|
|
|
sequoia_ramboot_config \
|
|
|
|
rainier_ramboot_config: unconfig
|
|
|
|
@mkdir -p $(obj)include $(obj)board/amcc/sequoia
|
|
|
|
@echo "#define CONFIG_SYS_RAMBOOT" > $(obj)include/config.h
|
|
|
|
@echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
|
|
|
|
tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a sequoia powerpc ppc4xx sequoia amcc
|
2009-05-11 11:46:14 +00:00
|
|
|
@echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
|
|
|
|
@echo "LDSCRIPT = board/amcc/sequoia/u-boot-ram.lds" >> \
|
|
|
|
$(obj)board/amcc/sequoia/config.tmp
|
|
|
|
|
2007-07-26 15:49:11 +00:00
|
|
|
taihu_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx taihu amcc
|
2007-07-26 15:49:11 +00:00
|
|
|
|
2007-01-18 09:25:34 +00:00
|
|
|
taishan_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx taishan amcc
|
2007-01-18 09:25:34 +00:00
|
|
|
|
ppc44x: Unification of virtex5 pp440 boards
This patch provides an unificated way of handling xilinx v5 ppc440 boards.
It unificates 3 different things:
1) Source code
A new board called ppc440-generic has been created. This board includes
a generic tlb initialization (Maps the whole memory into virtual) and
defines board_pre_init, checkboard, initdram and get_sys_info weakly,
so, they can be replaced by specific functions.
If a new board needs to redefine any of the previous functions
(specific initialization) it can create a new directory with the
specific initializations needed. (see the example ml507 board).
2) Configuration file
Common configurations are located under configs/xilinx-ppc440.h, this
header file interpretes the xparameters file generated by EDK and
configurates u-boot in correspondence. Example: if there is a Temac,
allows CMD_CONFIG_NET
Specific configuration are located under specific configuration file.
(see the example ml507 board)
3) Makefile
Some work has been done in order to not duplicate work in the Main
Makefile. Please see the attached code.
In order to support new boards they can be implemented in the next way:
a) Simple Generic Board (90% of the time)
Using EDK generates a new xparameters.h file, replace
ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
&& make
b) Simple Boards with special u-boot parameters (9 % of the time)
Create a new file under configs for it (use ml507.h as example) and
change your paramaters. Create a new Makefile paragraph and compile
c) Complex boards (1% of the time)
Create a new folder for the board, like the ml507
Finally, it adds support for the Avnet FX30T Evaluation board, following
the new generic structure:
Cheap board by Avnet for evaluating the Virtex5 FX technology.
This patch adds support for:
- UartLite
- 16MB Flash
- 64MB RAM
Prior using U-boot in this board, read carefully the ERRATA by Avnet
to solve some memory initialization issues.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
Signed-off-by: Stefan Roese <sr@denx.de>
2008-09-01 17:09:39 +00:00
|
|
|
v5fx30teval_config: unconfig
|
2008-09-09 14:00:33 +00:00
|
|
|
@mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic
|
ppc44x: Unification of virtex5 pp440 boards
This patch provides an unificated way of handling xilinx v5 ppc440 boards.
It unificates 3 different things:
1) Source code
A new board called ppc440-generic has been created. This board includes
a generic tlb initialization (Maps the whole memory into virtual) and
defines board_pre_init, checkboard, initdram and get_sys_info weakly,
so, they can be replaced by specific functions.
If a new board needs to redefine any of the previous functions
(specific initialization) it can create a new directory with the
specific initializations needed. (see the example ml507 board).
2) Configuration file
Common configurations are located under configs/xilinx-ppc440.h, this
header file interpretes the xparameters file generated by EDK and
configurates u-boot in correspondence. Example: if there is a Temac,
allows CMD_CONFIG_NET
Specific configuration are located under specific configuration file.
(see the example ml507 board)
3) Makefile
Some work has been done in order to not duplicate work in the Main
Makefile. Please see the attached code.
In order to support new boards they can be implemented in the next way:
a) Simple Generic Board (90% of the time)
Using EDK generates a new xparameters.h file, replace
ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
&& make
b) Simple Boards with special u-boot parameters (9 % of the time)
Create a new file under configs for it (use ml507.h as example) and
change your paramaters. Create a new Makefile paragraph and compile
c) Complex boards (1% of the time)
Create a new folder for the board, like the ml507
Finally, it adds support for the Avnet FX30T Evaluation board, following
the new generic structure:
Cheap board by Avnet for evaluating the Virtex5 FX technology.
This patch adds support for:
- UartLite
- 16MB Flash
- 64MB RAM
Prior using U-boot in this board, read carefully the ERRATA by Avnet
to solve some memory initialization issues.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
Signed-off-by: Stefan Roese <sr@denx.de>
2008-09-01 17:09:39 +00:00
|
|
|
@mkdir -p $(obj)include $(obj)board/avnet/v5fx30teval
|
2008-09-09 14:00:33 +00:00
|
|
|
@echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-ram.lds"\
|
|
|
|
> $(obj)board/avnet/v5fx30teval/config.tmp
|
|
|
|
@echo "TEXT_BASE := 0x03000000" \
|
|
|
|
>> $(obj)board/avnet/v5fx30teval/config.tmp
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) v5fx30teval powerpc ppc4xx v5fx30teval avnet
|
ppc44x: Unification of virtex5 pp440 boards
This patch provides an unificated way of handling xilinx v5 ppc440 boards.
It unificates 3 different things:
1) Source code
A new board called ppc440-generic has been created. This board includes
a generic tlb initialization (Maps the whole memory into virtual) and
defines board_pre_init, checkboard, initdram and get_sys_info weakly,
so, they can be replaced by specific functions.
If a new board needs to redefine any of the previous functions
(specific initialization) it can create a new directory with the
specific initializations needed. (see the example ml507 board).
2) Configuration file
Common configurations are located under configs/xilinx-ppc440.h, this
header file interpretes the xparameters file generated by EDK and
configurates u-boot in correspondence. Example: if there is a Temac,
allows CMD_CONFIG_NET
Specific configuration are located under specific configuration file.
(see the example ml507 board)
3) Makefile
Some work has been done in order to not duplicate work in the Main
Makefile. Please see the attached code.
In order to support new boards they can be implemented in the next way:
a) Simple Generic Board (90% of the time)
Using EDK generates a new xparameters.h file, replace
ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
&& make
b) Simple Boards with special u-boot parameters (9 % of the time)
Create a new file under configs for it (use ml507.h as example) and
change your paramaters. Create a new Makefile paragraph and compile
c) Complex boards (1% of the time)
Create a new folder for the board, like the ml507
Finally, it adds support for the Avnet FX30T Evaluation board, following
the new generic structure:
Cheap board by Avnet for evaluating the Virtex5 FX technology.
This patch adds support for:
- UartLite
- 16MB Flash
- 64MB RAM
Prior using U-boot in this board, read carefully the ERRATA by Avnet
to solve some memory initialization issues.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
Signed-off-by: Stefan Roese <sr@denx.de>
2008-09-01 17:09:39 +00:00
|
|
|
|
|
|
|
v5fx30teval_flash_config: unconfig
|
2008-09-09 14:00:33 +00:00
|
|
|
@mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic
|
ppc44x: Unification of virtex5 pp440 boards
This patch provides an unificated way of handling xilinx v5 ppc440 boards.
It unificates 3 different things:
1) Source code
A new board called ppc440-generic has been created. This board includes
a generic tlb initialization (Maps the whole memory into virtual) and
defines board_pre_init, checkboard, initdram and get_sys_info weakly,
so, they can be replaced by specific functions.
If a new board needs to redefine any of the previous functions
(specific initialization) it can create a new directory with the
specific initializations needed. (see the example ml507 board).
2) Configuration file
Common configurations are located under configs/xilinx-ppc440.h, this
header file interpretes the xparameters file generated by EDK and
configurates u-boot in correspondence. Example: if there is a Temac,
allows CMD_CONFIG_NET
Specific configuration are located under specific configuration file.
(see the example ml507 board)
3) Makefile
Some work has been done in order to not duplicate work in the Main
Makefile. Please see the attached code.
In order to support new boards they can be implemented in the next way:
a) Simple Generic Board (90% of the time)
Using EDK generates a new xparameters.h file, replace
ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
&& make
b) Simple Boards with special u-boot parameters (9 % of the time)
Create a new file under configs for it (use ml507.h as example) and
change your paramaters. Create a new Makefile paragraph and compile
c) Complex boards (1% of the time)
Create a new folder for the board, like the ml507
Finally, it adds support for the Avnet FX30T Evaluation board, following
the new generic structure:
Cheap board by Avnet for evaluating the Virtex5 FX technology.
This patch adds support for:
- UartLite
- 16MB Flash
- 64MB RAM
Prior using U-boot in this board, read carefully the ERRATA by Avnet
to solve some memory initialization issues.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
Signed-off-by: Stefan Roese <sr@denx.de>
2008-09-01 17:09:39 +00:00
|
|
|
@mkdir -p $(obj)include $(obj)board/avnet/v5fx30teval
|
2008-09-09 14:00:33 +00:00
|
|
|
@echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-rom.lds"\
|
2008-09-11 23:41:25 +00:00
|
|
|
> $(obj)board/avnet/v5fx30teval/config.tmp
|
2008-09-09 14:00:33 +00:00
|
|
|
@echo "TEXT_BASE := 0xFF1C0000" \
|
2008-09-11 23:41:25 +00:00
|
|
|
>> $(obj)board/avnet/v5fx30teval/config.tmp
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) v5fx30teval powerpc ppc4xx v5fx30teval avnet
|
ppc44x: Unification of virtex5 pp440 boards
This patch provides an unificated way of handling xilinx v5 ppc440 boards.
It unificates 3 different things:
1) Source code
A new board called ppc440-generic has been created. This board includes
a generic tlb initialization (Maps the whole memory into virtual) and
defines board_pre_init, checkboard, initdram and get_sys_info weakly,
so, they can be replaced by specific functions.
If a new board needs to redefine any of the previous functions
(specific initialization) it can create a new directory with the
specific initializations needed. (see the example ml507 board).
2) Configuration file
Common configurations are located under configs/xilinx-ppc440.h, this
header file interpretes the xparameters file generated by EDK and
configurates u-boot in correspondence. Example: if there is a Temac,
allows CMD_CONFIG_NET
Specific configuration are located under specific configuration file.
(see the example ml507 board)
3) Makefile
Some work has been done in order to not duplicate work in the Main
Makefile. Please see the attached code.
In order to support new boards they can be implemented in the next way:
a) Simple Generic Board (90% of the time)
Using EDK generates a new xparameters.h file, replace
ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
&& make
b) Simple Boards with special u-boot parameters (9 % of the time)
Create a new file under configs for it (use ml507.h as example) and
change your paramaters. Create a new Makefile paragraph and compile
c) Complex boards (1% of the time)
Create a new folder for the board, like the ml507
Finally, it adds support for the Avnet FX30T Evaluation board, following
the new generic structure:
Cheap board by Avnet for evaluating the Virtex5 FX technology.
This patch adds support for:
- UartLite
- 16MB Flash
- 64MB RAM
Prior using U-boot in this board, read carefully the ERRATA by Avnet
to solve some memory initialization issues.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
Signed-off-by: Stefan Roese <sr@denx.de>
2008-09-01 17:09:39 +00:00
|
|
|
|
2003-09-12 08:57:15 +00:00
|
|
|
VOH405_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx voh405 esd
|
2003-09-12 08:57:15 +00:00
|
|
|
|
2004-12-16 18:44:40 +00:00
|
|
|
VOM405_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx vom405 esd
|
2004-12-16 18:44:40 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
W7OLMC_config \
|
|
|
|
W7OLMG_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx w7o
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2007-03-28 13:03:16 +00:00
|
|
|
# Walnut & Sycamore images are identical (recognized via PVR)
|
|
|
|
walnut_config \
|
|
|
|
sycamore_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a walnut powerpc ppc4xx walnut amcc
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2004-12-16 18:44:40 +00:00
|
|
|
WUH405_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx wuh405 esd
|
2004-12-16 18:44:40 +00:00
|
|
|
|
2008-10-21 16:29:46 +00:00
|
|
|
xilinx-ppc405-generic_flash_config: unconfig
|
|
|
|
@mkdir -p $(obj)include $(obj)board/xilinx/ppc405-generic
|
|
|
|
@echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc405-generic/u-boot-rom.lds"\
|
|
|
|
> $(obj)board/xilinx/ppc405-generic/config.tmp
|
|
|
|
@echo "TEXT_BASE := 0xFE360000" \
|
|
|
|
>> $(obj)board/xilinx/ppc405-generic/config.tmp
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) xilinx-ppc405-generic powerpc ppc4xx ppc405-generic xilinx
|
2008-10-21 16:29:46 +00:00
|
|
|
|
|
|
|
xilinx-ppc405-generic_config: unconfig
|
|
|
|
@mkdir -p $(obj)include $(obj)board/xilinx/ppc405-generic
|
|
|
|
@echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc405-generic/u-boot-ram.lds"\
|
|
|
|
> $(obj)board/xilinx/ppc405-generic/config.tmp
|
|
|
|
@echo "TEXT_BASE := 0x04000000" \
|
|
|
|
>> $(obj)board/xilinx/ppc405-generic/config.tmp
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) xilinx-ppc405-generic powerpc ppc4xx ppc405-generic xilinx
|
2008-10-21 16:29:46 +00:00
|
|
|
|
ppc44x: Unification of virtex5 pp440 boards
This patch provides an unificated way of handling xilinx v5 ppc440 boards.
It unificates 3 different things:
1) Source code
A new board called ppc440-generic has been created. This board includes
a generic tlb initialization (Maps the whole memory into virtual) and
defines board_pre_init, checkboard, initdram and get_sys_info weakly,
so, they can be replaced by specific functions.
If a new board needs to redefine any of the previous functions
(specific initialization) it can create a new directory with the
specific initializations needed. (see the example ml507 board).
2) Configuration file
Common configurations are located under configs/xilinx-ppc440.h, this
header file interpretes the xparameters file generated by EDK and
configurates u-boot in correspondence. Example: if there is a Temac,
allows CMD_CONFIG_NET
Specific configuration are located under specific configuration file.
(see the example ml507 board)
3) Makefile
Some work has been done in order to not duplicate work in the Main
Makefile. Please see the attached code.
In order to support new boards they can be implemented in the next way:
a) Simple Generic Board (90% of the time)
Using EDK generates a new xparameters.h file, replace
ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
&& make
b) Simple Boards with special u-boot parameters (9 % of the time)
Create a new file under configs for it (use ml507.h as example) and
change your paramaters. Create a new Makefile paragraph and compile
c) Complex boards (1% of the time)
Create a new folder for the board, like the ml507
Finally, it adds support for the Avnet FX30T Evaluation board, following
the new generic structure:
Cheap board by Avnet for evaluating the Virtex5 FX technology.
This patch adds support for:
- UartLite
- 16MB Flash
- 64MB RAM
Prior using U-boot in this board, read carefully the ERRATA by Avnet
to solve some memory initialization issues.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
Signed-off-by: Stefan Roese <sr@denx.de>
2008-09-01 17:09:39 +00:00
|
|
|
xilinx-ppc440-generic_flash_config: unconfig
|
2008-09-09 14:00:33 +00:00
|
|
|
@mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic
|
|
|
|
@echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-rom.lds"\
|
|
|
|
> $(obj)board/xilinx/ppc440-generic/config.tmp
|
|
|
|
@echo "TEXT_BASE := 0xFE360000" \
|
|
|
|
>> $(obj)board/xilinx/ppc440-generic/config.tmp
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) xilinx-ppc440-generic powerpc ppc4xx ppc440-generic xilinx
|
ppc44x: Unification of virtex5 pp440 boards
This patch provides an unificated way of handling xilinx v5 ppc440 boards.
It unificates 3 different things:
1) Source code
A new board called ppc440-generic has been created. This board includes
a generic tlb initialization (Maps the whole memory into virtual) and
defines board_pre_init, checkboard, initdram and get_sys_info weakly,
so, they can be replaced by specific functions.
If a new board needs to redefine any of the previous functions
(specific initialization) it can create a new directory with the
specific initializations needed. (see the example ml507 board).
2) Configuration file
Common configurations are located under configs/xilinx-ppc440.h, this
header file interpretes the xparameters file generated by EDK and
configurates u-boot in correspondence. Example: if there is a Temac,
allows CMD_CONFIG_NET
Specific configuration are located under specific configuration file.
(see the example ml507 board)
3) Makefile
Some work has been done in order to not duplicate work in the Main
Makefile. Please see the attached code.
In order to support new boards they can be implemented in the next way:
a) Simple Generic Board (90% of the time)
Using EDK generates a new xparameters.h file, replace
ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
&& make
b) Simple Boards with special u-boot parameters (9 % of the time)
Create a new file under configs for it (use ml507.h as example) and
change your paramaters. Create a new Makefile paragraph and compile
c) Complex boards (1% of the time)
Create a new folder for the board, like the ml507
Finally, it adds support for the Avnet FX30T Evaluation board, following
the new generic structure:
Cheap board by Avnet for evaluating the Virtex5 FX technology.
This patch adds support for:
- UartLite
- 16MB Flash
- 64MB RAM
Prior using U-boot in this board, read carefully the ERRATA by Avnet
to solve some memory initialization issues.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
Signed-off-by: Stefan Roese <sr@denx.de>
2008-09-01 17:09:39 +00:00
|
|
|
|
|
|
|
xilinx-ppc440-generic_config: unconfig
|
2008-09-09 14:00:33 +00:00
|
|
|
@mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic
|
|
|
|
@echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc440-generic/u-boot-ram.lds"\
|
|
|
|
> $(obj)board/xilinx/ppc440-generic/config.tmp
|
|
|
|
@echo "TEXT_BASE := 0x04000000" \
|
|
|
|
>> $(obj)board/xilinx/ppc440-generic/config.tmp
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) xilinx-ppc440-generic powerpc ppc4xx ppc440-generic xilinx
|
ppc44x: Unification of virtex5 pp440 boards
This patch provides an unificated way of handling xilinx v5 ppc440 boards.
It unificates 3 different things:
1) Source code
A new board called ppc440-generic has been created. This board includes
a generic tlb initialization (Maps the whole memory into virtual) and
defines board_pre_init, checkboard, initdram and get_sys_info weakly,
so, they can be replaced by specific functions.
If a new board needs to redefine any of the previous functions
(specific initialization) it can create a new directory with the
specific initializations needed. (see the example ml507 board).
2) Configuration file
Common configurations are located under configs/xilinx-ppc440.h, this
header file interpretes the xparameters file generated by EDK and
configurates u-boot in correspondence. Example: if there is a Temac,
allows CMD_CONFIG_NET
Specific configuration are located under specific configuration file.
(see the example ml507 board)
3) Makefile
Some work has been done in order to not duplicate work in the Main
Makefile. Please see the attached code.
In order to support new boards they can be implemented in the next way:
a) Simple Generic Board (90% of the time)
Using EDK generates a new xparameters.h file, replace
ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
&& make
b) Simple Boards with special u-boot parameters (9 % of the time)
Create a new file under configs for it (use ml507.h as example) and
change your paramaters. Create a new Makefile paragraph and compile
c) Complex boards (1% of the time)
Create a new folder for the board, like the ml507
Finally, it adds support for the Avnet FX30T Evaluation board, following
the new generic structure:
Cheap board by Avnet for evaluating the Virtex5 FX technology.
This patch adds support for:
- UartLite
- 16MB Flash
- 64MB RAM
Prior using U-boot in this board, read carefully the ERRATA by Avnet
to solve some memory initialization issues.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
Signed-off-by: Stefan Roese <sr@denx.de>
2008-09-01 17:09:39 +00:00
|
|
|
|
2009-07-18 00:01:16 +00:00
|
|
|
XPEDITE1000_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx xpedite1000 xes
|
2004-02-06 23:19:44 +00:00
|
|
|
|
2007-03-28 13:03:16 +00:00
|
|
|
yosemite_config \
|
|
|
|
yellowstone_config: unconfig
|
2007-01-30 16:04:19 +00:00
|
|
|
@mkdir -p $(obj)include
|
2007-03-28 13:03:16 +00:00
|
|
|
@echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
|
|
|
|
tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a yosemite powerpc ppc4xx yosemite amcc
|
2005-08-01 14:49:12 +00:00
|
|
|
|
2006-06-30 14:30:46 +00:00
|
|
|
yucca_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx yucca amcc
|
2006-06-30 14:30:46 +00:00
|
|
|
|
2007-08-14 12:44:41 +00:00
|
|
|
zeus_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc ppc4xx zeus
|
2007-08-14 12:44:41 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
2004-10-28 00:09:35 +00:00
|
|
|
## MPC8220 Systems
|
|
|
|
#########################################################################
|
2005-08-03 20:32:02 +00:00
|
|
|
|
|
|
|
Alaska8220_config \
|
|
|
|
Yukon8220_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8220 alaska
|
2004-10-28 00:09:35 +00:00
|
|
|
|
2005-04-05 21:57:18 +00:00
|
|
|
sorcery_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8220 sorcery
|
2005-04-05 21:57:18 +00:00
|
|
|
|
2004-10-28 00:09:35 +00:00
|
|
|
#########################################################################
|
2002-11-02 23:17:16 +00:00
|
|
|
## MPC824x Systems
|
|
|
|
#########################################################################
|
2004-03-23 20:18:25 +00:00
|
|
|
xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
|
2003-03-12 10:41:04 +00:00
|
|
|
|
2003-06-20 22:36:30 +00:00
|
|
|
A3000_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x a3000
|
2003-06-20 22:36:30 +00:00
|
|
|
|
2005-09-25 16:59:36 +00:00
|
|
|
barco_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x barco
|
2005-09-25 16:59:36 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
BMW_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x bmw
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2003-03-12 10:41:04 +00:00
|
|
|
CPC45_config \
|
|
|
|
CPC45_ROMBOOT_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(call xtract_82xx,$@) powerpc mpc824x cpc45
|
2006-09-01 17:49:50 +00:00
|
|
|
@cd $(obj)include ; \
|
2003-03-12 10:41:04 +00:00
|
|
|
if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
|
|
|
|
echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... booting from 8-bit flash" ; \
|
2003-03-12 10:41:04 +00:00
|
|
|
else \
|
|
|
|
echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... booting from 64-bit flash" ; \
|
2003-03-12 10:41:04 +00:00
|
|
|
fi; \
|
|
|
|
echo "export CONFIG_BOOT_ROM" >> config.mk;
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
CU824_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x cu824
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2004-04-18 21:45:42 +00:00
|
|
|
debris_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x debris etin
|
2004-04-18 21:45:42 +00:00
|
|
|
|
2004-02-26 23:46:20 +00:00
|
|
|
eXalion_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x eXalion
|
2004-02-26 23:46:20 +00:00
|
|
|
|
2005-04-03 15:51:42 +00:00
|
|
|
HIDDEN_DRAGON_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x hidden_dragon
|
2005-04-03 15:51:42 +00:00
|
|
|
|
2006-07-21 09:29:20 +00:00
|
|
|
kvme080_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x kvme080 etin
|
2006-07-21 09:29:20 +00:00
|
|
|
|
2008-03-30 23:32:15 +00:00
|
|
|
# HDLAN is broken ATM. Should be fixed as soon as hardware is available and as
|
|
|
|
# time permits.
|
|
|
|
#linkstation_HDLAN_config \
|
|
|
|
# Remove this line when HDLAN is fixed
|
|
|
|
linkstation_HGLAN_config: unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@case $@ in \
|
|
|
|
*HGLAN*) echo "#define CONFIG_HGLAN 1" >$(obj)include/config.h; ;; \
|
|
|
|
*HDLAN*) echo "#define CONFIG_HLAN 1" >$(obj)include/config.h; ;; \
|
|
|
|
esac
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -n $@ -a linkstation powerpc mpc824x linkstation
|
2008-03-30 23:32:15 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
MOUSSE_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x mousse
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
MUSENKI_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x musenki
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2003-12-07 19:24:00 +00:00
|
|
|
MVBLUE_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x mvblue
|
2003-12-07 19:24:00 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
OXC_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x oxc
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
PN62_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x pn62
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
Sandpoint8240_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x sandpoint
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
Sandpoint8245_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x sandpoint
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2004-07-10 22:35:59 +00:00
|
|
|
sbc8240_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x sbc8240
|
2004-07-10 22:35:59 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
utx8245_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc824x utx8245
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
## MPC8260 Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2003-10-08 22:45:44 +00:00
|
|
|
atc_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8260 atc
|
2003-10-08 22:45:44 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
cogent_mpc8260_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8260 cogent
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
CPU86_config \
|
|
|
|
CPU86_ROMBOOT_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(call xtract_82xx,$@) powerpc mpc8260 cpu86
|
2006-09-01 17:49:50 +00:00
|
|
|
@cd $(obj)include ; \
|
2002-11-02 23:17:16 +00:00
|
|
|
if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
|
|
|
|
echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... booting from 8-bit flash" ; \
|
2002-11-02 23:17:16 +00:00
|
|
|
else \
|
|
|
|
echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... booting from 64-bit flash" ; \
|
2002-11-02 23:17:16 +00:00
|
|
|
fi; \
|
|
|
|
echo "export CONFIG_BOOT_ROM" >> config.mk;
|
|
|
|
|
2005-04-03 22:35:21 +00:00
|
|
|
CPU87_config \
|
|
|
|
CPU87_ROMBOOT_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(call xtract_82xx,$@) powerpc mpc8260 cpu87
|
2006-09-01 17:49:50 +00:00
|
|
|
@cd $(obj)include ; \
|
2005-04-03 22:35:21 +00:00
|
|
|
if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
|
|
|
|
echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... booting from 8-bit flash" ; \
|
2005-04-03 22:35:21 +00:00
|
|
|
else \
|
|
|
|
echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... booting from 64-bit flash" ; \
|
2005-04-03 22:35:21 +00:00
|
|
|
fi; \
|
|
|
|
echo "export CONFIG_BOOT_ROM" >> config.mk;
|
|
|
|
|
2005-08-05 23:42:58 +00:00
|
|
|
ep8248_config \
|
|
|
|
ep8248E_config : unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) ep8248 powerpc mpc8260 ep8248
|
2005-08-05 23:42:58 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
ep8260_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8260 ep8260
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-10-08 22:35:30 +00:00
|
|
|
ep82xxm_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8260 ep82xxm
|
2006-10-08 22:35:30 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
gw8260_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8260 gw8260
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
hymod_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8260 hymod
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2005-05-12 22:48:09 +00:00
|
|
|
IDS8247_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8260 ids8247
|
2005-05-12 22:48:09 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
IPHASE4539_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8260 iphase4539
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2004-06-09 14:47:54 +00:00
|
|
|
ISPAN_config \
|
|
|
|
ISPAN_REVB_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2004-06-09 14:47:54 +00:00
|
|
|
@if [ "$(findstring _REVB_,$@)" ] ; then \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_REV_B" > $(obj)include/config.h ; \
|
2004-06-09 14:47:54 +00:00
|
|
|
fi
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a ISPAN powerpc mpc8260 ispan
|
2004-06-09 14:47:54 +00:00
|
|
|
|
2008-01-11 00:12:08 +00:00
|
|
|
mgcoge_config : unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) mgcoge powerpc mpc8260 mgcoge keymile
|
2008-01-11 00:12:08 +00:00
|
|
|
|
2004-04-15 18:22:41 +00:00
|
|
|
MPC8260ADS_config \
|
2005-04-03 23:22:21 +00:00
|
|
|
MPC8260ADS_lowboot_config \
|
2004-04-15 18:22:41 +00:00
|
|
|
MPC8260ADS_33MHz_config \
|
2005-04-03 23:22:21 +00:00
|
|
|
MPC8260ADS_33MHz_lowboot_config \
|
2004-04-15 18:22:41 +00:00
|
|
|
MPC8260ADS_40MHz_config \
|
2005-04-03 23:22:21 +00:00
|
|
|
MPC8260ADS_40MHz_lowboot_config \
|
2004-04-15 18:22:41 +00:00
|
|
|
MPC8272ADS_config \
|
2005-04-03 23:22:21 +00:00
|
|
|
MPC8272ADS_lowboot_config \
|
2004-04-15 18:22:41 +00:00
|
|
|
PQ2FADS_config \
|
2005-04-03 23:22:21 +00:00
|
|
|
PQ2FADS_lowboot_config \
|
2004-04-15 18:22:41 +00:00
|
|
|
PQ2FADS-VR_config \
|
2005-04-03 23:22:21 +00:00
|
|
|
PQ2FADS-VR_lowboot_config \
|
2004-04-15 18:22:41 +00:00
|
|
|
PQ2FADS-ZU_config \
|
2005-04-03 23:22:21 +00:00
|
|
|
PQ2FADS-ZU_lowboot_config \
|
2004-04-15 18:22:41 +00:00
|
|
|
PQ2FADS-ZU_66MHz_config \
|
2005-04-03 23:22:21 +00:00
|
|
|
PQ2FADS-ZU_66MHz_lowboot_config \
|
2004-04-15 18:22:41 +00:00
|
|
|
: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-06 00:05:45 +00:00
|
|
|
@mkdir -p $(obj)board/freescale/mpc8260ads
|
2004-04-15 18:22:41 +00:00
|
|
|
$(if $(findstring PQ2FADS,$@), \
|
2008-10-16 13:01:15 +00:00
|
|
|
@echo "#define CONFIG_ADSTYPE CONFIG_SYS_PQ2FADS" > $(obj)include/config.h, \
|
|
|
|
@echo "#define CONFIG_ADSTYPE CONFIG_SYS_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h)
|
2004-04-15 18:22:41 +00:00
|
|
|
$(if $(findstring MHz,$@), \
|
2006-09-01 17:49:50 +00:00
|
|
|
@echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \
|
2004-04-15 18:22:41 +00:00
|
|
|
$(if $(findstring VR,$@), \
|
2006-09-01 17:49:50 +00:00
|
|
|
@echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h))
|
2005-04-03 23:22:21 +00:00
|
|
|
@[ -z "$(findstring lowboot_,$@)" ] || \
|
2008-03-06 00:05:45 +00:00
|
|
|
{ echo "TEXT_BASE = 0xFF800000" >$(obj)board/freescale/mpc8260ads/config.tmp ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with lowboot configuration" ; \
|
2005-04-03 23:22:21 +00:00
|
|
|
}
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a MPC8260ADS powerpc mpc8260 mpc8260ads freescale
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2003-03-06 00:58:30 +00:00
|
|
|
MPC8266ADS_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8260 mpc8266ads freescale
|
2003-03-06 00:58:30 +00:00
|
|
|
|
2008-08-19 08:08:49 +00:00
|
|
|
muas3001_dev_config \
|
|
|
|
muas3001_config : unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@mkdir -p $(obj)board/muas3001
|
|
|
|
@if [ "$(findstring dev,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_MUAS_DEV_BOARD" > $(obj)include/config.h ; \
|
|
|
|
fi
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a muas3001 powerpc mpc8260 muas3001
|
2008-08-19 08:08:49 +00:00
|
|
|
|
2004-03-23 20:18:25 +00:00
|
|
|
# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
|
2003-03-25 18:06:06 +00:00
|
|
|
PM825_config \
|
2004-03-23 20:18:25 +00:00
|
|
|
PM825_ROMBOOT_config \
|
|
|
|
PM825_BIGFLASH_config \
|
|
|
|
PM825_ROMBOOT_BIGFLASH_config \
|
|
|
|
PM826_config \
|
|
|
|
PM826_ROMBOOT_config \
|
|
|
|
PM826_BIGFLASH_config \
|
|
|
|
PM826_ROMBOOT_BIGFLASH_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@mkdir -p $(obj)board/pm826
|
2004-03-23 20:18:25 +00:00
|
|
|
@if [ "$(findstring PM825_,$@)" ] ; then \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_PCI" >$(obj)include/config.h ; \
|
2004-03-23 20:18:25 +00:00
|
|
|
else \
|
2006-09-01 17:49:50 +00:00
|
|
|
>$(obj)include/config.h ; \
|
2004-03-23 20:18:25 +00:00
|
|
|
fi
|
|
|
|
@if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... booting from 8-bit flash" ; \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
|
|
|
|
echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
|
2004-03-23 20:18:25 +00:00
|
|
|
if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with 32 MB Flash" ; \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
|
2004-03-23 20:18:25 +00:00
|
|
|
fi; \
|
2003-03-25 18:06:06 +00:00
|
|
|
else \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... booting from 64-bit flash" ; \
|
2004-03-23 20:18:25 +00:00
|
|
|
if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with 32 MB Flash" ; \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
|
|
|
|
echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \
|
2004-03-23 20:18:25 +00:00
|
|
|
else \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \
|
2004-03-23 20:18:25 +00:00
|
|
|
fi; \
|
|
|
|
fi
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a PM826 powerpc mpc8260 pm826
|
2003-03-25 18:06:06 +00:00
|
|
|
|
2004-03-23 20:18:25 +00:00
|
|
|
PM828_config \
|
|
|
|
PM828_PCI_config \
|
|
|
|
PM828_ROMBOOT_config \
|
|
|
|
PM828_ROMBOOT_PCI_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@mkdir -p $(obj)board/pm826
|
2006-04-05 18:37:11 +00:00
|
|
|
@if [ "$(findstring _PCI_,$@)" ] ; then \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with PCI enabled" ; \
|
2004-03-23 20:18:25 +00:00
|
|
|
fi
|
|
|
|
@if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... booting from 8-bit flash" ; \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
|
|
|
|
echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
|
2004-03-23 20:18:25 +00:00
|
|
|
fi
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a PM828 powerpc mpc8260 pm828
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
ppmc8260_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8260 ppmc8260
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2005-04-03 23:11:38 +00:00
|
|
|
Rattler8248_config \
|
|
|
|
Rattler_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2005-04-03 23:11:38 +00:00
|
|
|
$(if $(findstring 8248,$@), \
|
2006-09-01 17:49:50 +00:00
|
|
|
@echo "#define CONFIG_MPC8248" > $(obj)include/config.h)
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a Rattler powerpc mpc8260 rattler
|
2005-04-03 23:11:38 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
RPXsuper_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8260 rpxsuper
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
rsdproto_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8260 rsdproto
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
sacsng_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8260 sacsng
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
sbc8260_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8260 sbc8260
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
SCM_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8260 SCM siemens
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2003-07-24 23:38:38 +00:00
|
|
|
TQM8255_AA_config \
|
|
|
|
TQM8260_AA_config \
|
|
|
|
TQM8260_AB_config \
|
|
|
|
TQM8260_AC_config \
|
|
|
|
TQM8260_AD_config \
|
|
|
|
TQM8260_AE_config \
|
|
|
|
TQM8260_AF_config \
|
|
|
|
TQM8260_AG_config \
|
|
|
|
TQM8260_AH_config \
|
2006-03-06 23:32:07 +00:00
|
|
|
TQM8260_AI_config \
|
2003-07-24 23:38:38 +00:00
|
|
|
TQM8265_AA_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2003-07-24 23:38:38 +00:00
|
|
|
@case "$@" in \
|
2006-03-06 23:32:07 +00:00
|
|
|
TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
|
|
|
|
TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
|
|
|
|
TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
|
|
|
|
TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
|
|
|
|
TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
|
|
|
|
TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
|
|
|
|
TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
|
|
|
|
TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
|
|
|
|
TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
|
|
|
|
TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
|
|
|
|
TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
|
2003-07-24 23:38:38 +00:00
|
|
|
esac; \
|
|
|
|
if [ "$${CTYPE}" != "MPC8260" ] ; then \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \
|
2003-07-24 23:38:38 +00:00
|
|
|
fi; \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \
|
2003-07-24 23:38:38 +00:00
|
|
|
echo "... with $${CFREQ}MHz system clock" ; \
|
2008-01-02 14:54:45 +00:00
|
|
|
if [ "$${CACHE}" = "yes" ] ; then \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with L2 Cache support" ; \
|
2002-11-02 23:17:16 +00:00
|
|
|
else \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... without L2 Cache support" ; \
|
2003-07-24 23:38:38 +00:00
|
|
|
fi; \
|
2008-01-02 14:54:45 +00:00
|
|
|
if [ "$${BMODE}" = "60x" ] ; then \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with 60x Bus Mode" ; \
|
2003-07-24 23:38:38 +00:00
|
|
|
else \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... without 60x Bus Mode" ; \
|
2002-11-02 23:17:16 +00:00
|
|
|
fi
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a TQM8260 powerpc mpc8260 tqm8260 tqc
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-12-21 16:17:02 +00:00
|
|
|
TQM8272_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) TQM8272 powerpc mpc8260 tqm8272 tqc
|
2006-12-21 16:17:02 +00:00
|
|
|
|
2005-05-30 23:55:42 +00:00
|
|
|
VoVPN-GW_66MHz_config \
|
|
|
|
VoVPN-GW_100MHz_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a VoVPN-GW powerpc mpc8260 vovpn-gw funkwerk
|
2005-05-30 23:55:42 +00:00
|
|
|
|
2003-10-08 22:45:44 +00:00
|
|
|
ZPC1900_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc8260 zpc1900
|
2003-05-03 15:50:43 +00:00
|
|
|
|
2003-12-08 01:34:36 +00:00
|
|
|
#########################################################################
|
|
|
|
## Coldfire
|
|
|
|
#########################################################################
|
|
|
|
|
2010-01-25 10:27:44 +00:00
|
|
|
astro_mcf5373l_config \
|
|
|
|
astro_mcf5373l_RAM_config : unconfig
|
|
|
|
@$(MKCONFIG) -t $(@:_config=) astro_mcf5373l m68k mcf532x mcf5373l astro
|
|
|
|
|
2009-06-12 11:29:00 +00:00
|
|
|
M5208EVBE_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5208evbe freescale
|
|
|
|
|
2008-10-21 15:37:02 +00:00
|
|
|
M52277EVB_config \
|
|
|
|
M52277EVB_spansion_config \
|
|
|
|
M52277EVB_stmicro_config : unconfig
|
|
|
|
@case "$@" in \
|
|
|
|
M52277EVB_config) FLASH=SPANSION;; \
|
|
|
|
M52277EVB_spansion_config) FLASH=SPANSION;; \
|
|
|
|
M52277EVB_stmicro_config) FLASH=STMICRO;; \
|
|
|
|
esac; \
|
|
|
|
if [ "$${FLASH}" = "SPANSION" ] ; then \
|
|
|
|
echo "#define CONFIG_SYS_SPANSION_BOOT" >> $(obj)include/config.h ; \
|
|
|
|
echo "TEXT_BASE = 0x00000000" > $(obj)board/freescale/m52277evb/config.tmp ; \
|
|
|
|
cp $(obj)board/freescale/m52277evb/u-boot.spa $(obj)board/freescale/m52277evb/u-boot.lds ; \
|
|
|
|
$(XECHO) "... with SPANSION boot..." ; \
|
|
|
|
fi; \
|
|
|
|
if [ "$${FLASH}" = "STMICRO" ] ; then \
|
|
|
|
echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \
|
|
|
|
echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \
|
|
|
|
echo "TEXT_BASE = 0x43E00000" > $(obj)board/freescale/m52277evb/config.tmp ; \
|
|
|
|
cp $(obj)board/freescale/m52277evb/u-boot.stm $(obj)board/freescale/m52277evb/u-boot.lds ; \
|
|
|
|
$(XECHO) "... with ST Micro boot..." ; \
|
|
|
|
fi
|
2008-01-14 23:43:33 +00:00
|
|
|
@$(MKCONFIG) -a M52277EVB m68k mcf5227x m52277evb freescale
|
|
|
|
|
2007-08-17 00:23:50 +00:00
|
|
|
M5235EVB_config \
|
|
|
|
M5235EVB_Flash16_config \
|
|
|
|
M5235EVB_Flash32_config: unconfig
|
|
|
|
@case "$@" in \
|
|
|
|
M5235EVB_config) FLASH=16;; \
|
|
|
|
M5235EVB_Flash16_config) FLASH=16;; \
|
|
|
|
M5235EVB_Flash32_config) FLASH=32;; \
|
|
|
|
esac; \
|
|
|
|
if [ "$${FLASH}" != "16" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
echo "#define NORFLASH_PS32BIT 1" >> $(obj)include/config.h ; \
|
2007-08-17 00:23:50 +00:00
|
|
|
echo "TEXT_BASE = 0xFFC00000" > $(obj)board/freescale/m5235evb/config.tmp ; \
|
|
|
|
cp $(obj)board/freescale/m5235evb/u-boot.32 $(obj)board/freescale/m5235evb/u-boot.lds ; \
|
|
|
|
else \
|
|
|
|
echo "TEXT_BASE = 0xFFE00000" > $(obj)board/freescale/m5235evb/config.tmp ; \
|
|
|
|
cp $(obj)board/freescale/m5235evb/u-boot.16 $(obj)board/freescale/m5235evb/u-boot.lds ; \
|
|
|
|
fi
|
|
|
|
@$(MKCONFIG) -a M5235EVB m68k mcf523x m5235evb freescale
|
|
|
|
|
2007-08-16 10:04:31 +00:00
|
|
|
M5249EVB_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5249evb freescale
|
|
|
|
|
2008-07-23 22:11:47 +00:00
|
|
|
M5253DEMO_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5253demo freescale
|
|
|
|
|
2007-08-16 18:20:50 +00:00
|
|
|
M5253EVBE_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5253evbe freescale
|
|
|
|
|
2005-12-12 15:06:05 +00:00
|
|
|
cobra5272_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272
|
2005-12-12 15:06:05 +00:00
|
|
|
|
2006-06-10 17:27:47 +00:00
|
|
|
EB+MCF-EV123_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@mkdir -p $(obj)board/BuS/EB+MCF-EV123
|
|
|
|
@echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
|
|
|
|
@$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
|
2006-06-10 17:27:47 +00:00
|
|
|
|
|
|
|
EB+MCF-EV123_internal_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@mkdir -p $(obj)board/BuS/EB+MCF-EV123
|
|
|
|
@echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
|
|
|
|
@$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
|
2006-06-10 17:27:47 +00:00
|
|
|
|
2010-01-21 01:33:02 +00:00
|
|
|
EP2500_config: unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) m68k mcf52x2 ep2500 Mercury
|
|
|
|
|
2006-12-19 23:27:32 +00:00
|
|
|
idmr_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) m68k mcf52x2 idmr
|
|
|
|
|
2006-06-10 17:27:47 +00:00
|
|
|
M5271EVB_config : unconfig
|
2008-08-11 15:23:16 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb freescale
|
2006-06-10 17:27:47 +00:00
|
|
|
|
2003-12-08 01:34:36 +00:00
|
|
|
M5272C3_config : unconfig
|
2008-08-11 15:25:07 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3 freescale
|
2003-12-08 01:34:36 +00:00
|
|
|
|
2008-01-24 20:02:32 +00:00
|
|
|
M5275EVB_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5275evb freescale
|
|
|
|
|
2003-12-08 01:34:36 +00:00
|
|
|
M5282EVB_config : unconfig
|
2008-08-11 15:26:43 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb freescale
|
2003-12-08 01:34:36 +00:00
|
|
|
|
2008-10-22 11:38:21 +00:00
|
|
|
M53017EVB_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) m68k mcf532x m53017evb freescale
|
|
|
|
|
Added M5329AFEE and M5329BFEE Platforms
Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
rtc/mcfrtc.c
Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
lib_m68k/time.c, net/eth.c and rtc/Makefile
Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2007-06-18 18:50:13 +00:00
|
|
|
M5329AFEE_config \
|
|
|
|
M5329BFEE_config : unconfig
|
|
|
|
@case "$@" in \
|
|
|
|
M5329AFEE_config) NAND=0;; \
|
|
|
|
M5329BFEE_config) NAND=16;; \
|
|
|
|
esac; \
|
|
|
|
if [ "$${NAND}" != "0" ] ; then \
|
2007-08-15 20:39:17 +00:00
|
|
|
echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \
|
Added M5329AFEE and M5329BFEE Platforms
Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
rtc/mcfrtc.c
Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
lib_m68k/time.c, net/eth.c and rtc/Makefile
Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2007-06-18 18:50:13 +00:00
|
|
|
fi
|
|
|
|
@$(MKCONFIG) -a M5329EVB m68k mcf532x m5329evb freescale
|
|
|
|
|
2008-01-14 23:23:08 +00:00
|
|
|
M5373EVB_config : unconfig
|
|
|
|
@case "$@" in \
|
|
|
|
M5373EVB_config) NAND=16;; \
|
|
|
|
esac; \
|
|
|
|
if [ "$${NAND}" != "0" ] ; then \
|
|
|
|
echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \
|
|
|
|
fi
|
|
|
|
@$(MKCONFIG) -a M5373EVB m68k mcf532x m5373evb freescale
|
|
|
|
|
2008-08-11 13:41:49 +00:00
|
|
|
M54451EVB_config \
|
|
|
|
M54451EVB_stmicro_config : unconfig
|
|
|
|
@case "$@" in \
|
2009-06-11 15:39:57 +00:00
|
|
|
M54451EVB_config) FLASH=NOR;; \
|
2008-08-11 13:41:49 +00:00
|
|
|
M54451EVB_stmicro_config) FLASH=STMICRO;; \
|
|
|
|
esac; \
|
2009-06-11 15:39:57 +00:00
|
|
|
if [ "$${FLASH}" = "NOR" ] ; then \
|
2008-08-11 13:41:49 +00:00
|
|
|
echo "TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54451evb/config.tmp ; \
|
|
|
|
cp $(obj)board/freescale/m54451evb/u-boot.spa $(obj)board/freescale/m54451evb/u-boot.lds ; \
|
2009-06-11 15:39:57 +00:00
|
|
|
$(XECHO) "... with NOR boot..." ; \
|
2008-08-11 13:41:49 +00:00
|
|
|
fi; \
|
|
|
|
if [ "$${FLASH}" = "STMICRO" ] ; then \
|
|
|
|
echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \
|
2008-08-11 13:41:49 +00:00
|
|
|
echo "TEXT_BASE = 0x47E00000" > $(obj)board/freescale/m54451evb/config.tmp ; \
|
|
|
|
cp $(obj)board/freescale/m54451evb/u-boot.stm $(obj)board/freescale/m54451evb/u-boot.lds ; \
|
|
|
|
$(XECHO) "... with ST Micro boot..." ; \
|
|
|
|
fi; \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_INPUT_CLKSRC 24000000" >> $(obj)include/config.h ;
|
2008-08-11 13:41:49 +00:00
|
|
|
@$(MKCONFIG) -a M54451EVB m68k mcf5445x m54451evb freescale
|
|
|
|
|
2007-08-16 20:05:11 +00:00
|
|
|
M54455EVB_config \
|
|
|
|
M54455EVB_atmel_config \
|
|
|
|
M54455EVB_intel_config \
|
|
|
|
M54455EVB_a33_config \
|
|
|
|
M54455EVB_a66_config \
|
|
|
|
M54455EVB_i33_config \
|
2008-07-24 01:38:53 +00:00
|
|
|
M54455EVB_i66_config \
|
|
|
|
M54455EVB_stm33_config : unconfig
|
2007-08-16 20:05:11 +00:00
|
|
|
@case "$@" in \
|
|
|
|
M54455EVB_config) FLASH=ATMEL; FREQ=33333333;; \
|
|
|
|
M54455EVB_atmel_config) FLASH=ATMEL; FREQ=33333333;; \
|
|
|
|
M54455EVB_intel_config) FLASH=INTEL; FREQ=33333333;; \
|
|
|
|
M54455EVB_a33_config) FLASH=ATMEL; FREQ=33333333;; \
|
|
|
|
M54455EVB_a66_config) FLASH=ATMEL; FREQ=66666666;; \
|
|
|
|
M54455EVB_i33_config) FLASH=INTEL; FREQ=33333333;; \
|
|
|
|
M54455EVB_i66_config) FLASH=INTEL; FREQ=66666666;; \
|
2008-07-24 01:38:53 +00:00
|
|
|
M54455EVB_stm33_config) FLASH=STMICRO; FREQ=33333333;; \
|
2007-08-16 20:05:11 +00:00
|
|
|
esac; \
|
2008-01-02 14:54:45 +00:00
|
|
|
if [ "$${FLASH}" = "INTEL" ] ; then \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_INTEL_BOOT" >> $(obj)include/config.h ; \
|
2007-10-25 22:16:22 +00:00
|
|
|
echo "TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54455evb/config.tmp ; \
|
|
|
|
cp $(obj)board/freescale/m54455evb/u-boot.int $(obj)board/freescale/m54455evb/u-boot.lds ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with INTEL boot..." ; \
|
2008-07-24 01:38:53 +00:00
|
|
|
fi; \
|
|
|
|
if [ "$${FLASH}" = "ATMEL" ] ; then \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_ATMEL_BOOT" >> $(obj)include/config.h ; \
|
2007-10-25 22:16:22 +00:00
|
|
|
echo "TEXT_BASE = 0x04000000" > $(obj)board/freescale/m54455evb/config.tmp ; \
|
|
|
|
cp $(obj)board/freescale/m54455evb/u-boot.atm $(obj)board/freescale/m54455evb/u-boot.lds ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with ATMEL boot..." ; \
|
2007-08-16 20:05:11 +00:00
|
|
|
fi; \
|
2008-07-24 01:38:53 +00:00
|
|
|
if [ "$${FLASH}" = "STMICRO" ] ; then \
|
|
|
|
echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \
|
2008-07-24 01:38:53 +00:00
|
|
|
echo "TEXT_BASE = 0x4FE00000" > $(obj)board/freescale/m54455evb/config.tmp ; \
|
|
|
|
cp $(obj)board/freescale/m54455evb/u-boot.stm $(obj)board/freescale/m54455evb/u-boot.lds ; \
|
|
|
|
$(XECHO) "... with ST Micro boot..." ; \
|
|
|
|
fi; \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_INPUT_CLKSRC $${FREQ}" >> $(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with $${FREQ}Hz input clock"
|
2007-08-16 20:05:11 +00:00
|
|
|
@$(MKCONFIG) -a M54455EVB m68k mcf5445x m54455evb freescale
|
|
|
|
|
2008-01-15 20:15:46 +00:00
|
|
|
M5475AFE_config \
|
|
|
|
M5475BFE_config \
|
|
|
|
M5475CFE_config \
|
|
|
|
M5475DFE_config \
|
|
|
|
M5475EFE_config \
|
|
|
|
M5475FFE_config \
|
|
|
|
M5475GFE_config : unconfig
|
|
|
|
@case "$@" in \
|
|
|
|
M5475AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
|
|
|
|
M5475BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \
|
|
|
|
M5475CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \
|
|
|
|
M5475DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \
|
|
|
|
M5475EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \
|
|
|
|
M5475FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \
|
|
|
|
M5475GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
|
|
|
|
esac; \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_BUSCLK 133333333" > $(obj)include/config.h ; \
|
|
|
|
echo "#define CONFIG_SYS_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \
|
|
|
|
echo "#define CONFIG_SYS_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \
|
2008-01-15 20:15:46 +00:00
|
|
|
if [ "$${RAM1}" != "0" ] ; then \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \
|
2008-01-15 20:15:46 +00:00
|
|
|
fi; \
|
|
|
|
if [ "$${CODE}" != "0" ] ; then \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \
|
2008-01-15 20:15:46 +00:00
|
|
|
fi; \
|
|
|
|
if [ "$${VID}" == "1" ] ; then \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \
|
2008-01-15 20:15:46 +00:00
|
|
|
fi; \
|
|
|
|
if [ "$${USB}" == "1" ] ; then \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \
|
2008-01-15 20:15:46 +00:00
|
|
|
fi
|
|
|
|
@$(MKCONFIG) -a M5475EVB m68k mcf547x_8x m547xevb freescale
|
|
|
|
|
|
|
|
M5485AFE_config \
|
|
|
|
M5485BFE_config \
|
|
|
|
M5485CFE_config \
|
|
|
|
M5485DFE_config \
|
|
|
|
M5485EFE_config \
|
|
|
|
M5485FFE_config \
|
|
|
|
M5485GFE_config \
|
|
|
|
M5485HFE_config : unconfig
|
|
|
|
@case "$@" in \
|
|
|
|
M5485AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
|
|
|
|
M5485BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \
|
|
|
|
M5485CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \
|
|
|
|
M5485DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \
|
|
|
|
M5485EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \
|
|
|
|
M5485FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \
|
|
|
|
M5485GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
|
2008-01-30 21:08:15 +00:00
|
|
|
M5485HFE_config) BOOT=2;CODE=16;VID=1;USB=0;RAM=64;RAM1=0;; \
|
2008-01-15 20:15:46 +00:00
|
|
|
esac; \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_BUSCLK 100000000" > $(obj)include/config.h ; \
|
|
|
|
echo "#define CONFIG_SYS_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \
|
|
|
|
echo "#define CONFIG_SYS_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \
|
2008-01-15 20:15:46 +00:00
|
|
|
if [ "$${RAM1}" != "0" ] ; then \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \
|
2008-01-15 20:15:46 +00:00
|
|
|
fi; \
|
|
|
|
if [ "$${CODE}" != "0" ] ; then \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \
|
2008-01-15 20:15:46 +00:00
|
|
|
fi; \
|
|
|
|
if [ "$${VID}" == "1" ] ; then \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \
|
2008-01-15 20:15:46 +00:00
|
|
|
fi; \
|
|
|
|
if [ "$${USB}" == "1" ] ; then \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \
|
2008-01-15 20:15:46 +00:00
|
|
|
fi
|
|
|
|
@$(MKCONFIG) -a M5485EVB m68k mcf547x_8x m548xevb freescale
|
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
TASREG_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd
|
|
|
|
|
2005-07-28 15:08:46 +00:00
|
|
|
#########################################################################
|
|
|
|
## MPC83xx Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2008-11-20 08:57:47 +00:00
|
|
|
kmeter1_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) kmeter1 powerpc mpc83xx kmeter1 keymile
|
2008-11-20 08:57:47 +00:00
|
|
|
|
2007-04-25 17:34:38 +00:00
|
|
|
MPC8313ERDB_33_config \
|
2008-06-30 19:13:28 +00:00
|
|
|
MPC8313ERDB_66_config \
|
|
|
|
MPC8313ERDB_NAND_33_config \
|
|
|
|
MPC8313ERDB_NAND_66_config: unconfig
|
2007-08-01 22:48:45 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-06-30 19:13:28 +00:00
|
|
|
@mkdir -p $(obj)board/freescale/mpc8313erdb
|
2008-03-09 01:13:19 +00:00
|
|
|
@if [ "$(findstring _33_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) -n "...33M ..." ; \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_33MHZ" >>$(obj)include/config.h ; \
|
2007-04-25 17:34:38 +00:00
|
|
|
fi ; \
|
|
|
|
if [ "$(findstring _66_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) -n "...66M..." ; \
|
2008-10-16 13:01:15 +00:00
|
|
|
echo "#define CONFIG_SYS_66MHZ" >>$(obj)include/config.h ; \
|
2008-06-30 19:13:28 +00:00
|
|
|
fi ; \
|
|
|
|
if [ "$(findstring _NAND_,$@)" ] ; then \
|
|
|
|
$(XECHO) -n "...NAND..." ; \
|
2008-08-25 19:53:09 +00:00
|
|
|
echo "TEXT_BASE = 0x00100000" > $(obj)board/freescale/mpc8313erdb/config.tmp ; \
|
2008-06-30 19:13:28 +00:00
|
|
|
echo "#define CONFIG_NAND_U_BOOT" >>$(obj)include/config.h ; \
|
2007-04-25 17:34:38 +00:00
|
|
|
fi ;
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a MPC8313ERDB powerpc mpc83xx mpc8313erdb freescale
|
2008-09-02 20:21:16 +00:00
|
|
|
@if [ "$(findstring _NAND_,$@)" ] ; then \
|
|
|
|
echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk ; \
|
|
|
|
fi ;
|
2007-04-25 17:34:38 +00:00
|
|
|
|
2009-11-24 17:12:12 +00:00
|
|
|
MPC8315ERDB_NAND_config \
|
2008-01-11 10:48:24 +00:00
|
|
|
MPC8315ERDB_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -t $(@:_config=) MPC8315ERDB powerpc mpc83xx mpc8315erdb freescale
|
2008-01-11 10:48:24 +00:00
|
|
|
|
2007-07-26 00:25:33 +00:00
|
|
|
MPC8323ERDB_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a MPC8323ERDB powerpc mpc83xx mpc8323erdb freescale
|
2007-07-26 00:25:33 +00:00
|
|
|
|
2007-01-24 23:18:37 +00:00
|
|
|
MPC832XEMDS_config \
|
|
|
|
MPC832XEMDS_HOST_33_config \
|
|
|
|
MPC832XEMDS_HOST_66_config \
|
2007-10-18 09:47:19 +00:00
|
|
|
MPC832XEMDS_SLAVE_config \
|
|
|
|
MPC832XEMDS_ATM_config: unconfig
|
2007-08-01 22:48:45 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-09 01:13:19 +00:00
|
|
|
@if [ "$(findstring _HOST_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) -n "... PCI HOST " ; \
|
2007-08-01 22:48:45 +00:00
|
|
|
echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
|
2006-11-04 01:33:44 +00:00
|
|
|
fi ; \
|
|
|
|
if [ "$(findstring _SLAVE_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "...PCI SLAVE 66M" ; \
|
2007-08-01 22:48:45 +00:00
|
|
|
echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
|
|
|
|
echo "#define CONFIG_PCISLAVE" >>$(obj)include/config.h ; \
|
2006-11-04 01:33:44 +00:00
|
|
|
fi ; \
|
|
|
|
if [ "$(findstring _33_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) -n "...33M ..." ; \
|
2007-08-01 22:48:45 +00:00
|
|
|
echo "#define PCI_33M" >>$(obj)include/config.h ; \
|
2007-10-18 09:47:19 +00:00
|
|
|
echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
|
2006-11-04 01:33:44 +00:00
|
|
|
fi ; \
|
|
|
|
if [ "$(findstring _66_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) -n "...66M..." ; \
|
2007-08-01 22:48:45 +00:00
|
|
|
echo "#define PCI_66M" >>$(obj)include/config.h ; \
|
2007-10-18 09:47:19 +00:00
|
|
|
echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
|
|
|
|
fi ; \
|
|
|
|
if [ "$(findstring _ATM_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) -n "...ATM..." ; \
|
2007-10-18 09:47:19 +00:00
|
|
|
echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
|
2008-03-04 13:58:31 +00:00
|
|
|
echo "#define CONFIG_PQ_MDS_PIB_ATM 1" >>$(obj)include/config.h ; \
|
2006-11-04 01:33:44 +00:00
|
|
|
fi ;
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a MPC832XEMDS powerpc mpc83xx mpc832xemds freescale
|
2005-10-11 17:09:42 +00:00
|
|
|
|
2006-03-14 15:24:38 +00:00
|
|
|
MPC8349EMDS_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc83xx mpc8349emds freescale
|
2006-03-14 15:24:38 +00:00
|
|
|
|
2007-01-31 21:54:29 +00:00
|
|
|
MPC8349ITX_config \
|
|
|
|
MPC8349ITX_LOWBOOT_config \
|
|
|
|
MPC8349ITXGP_config: unconfig
|
|
|
|
@mkdir -p $(obj)include
|
2007-09-14 17:14:42 +00:00
|
|
|
@mkdir -p $(obj)board/freescale/mpc8349itx
|
2007-01-31 21:54:29 +00:00
|
|
|
@echo "#define CONFIG_$(subst _LOWBOOT,,$(@:_config=))" >> $(obj)include/config.h
|
|
|
|
@if [ "$(findstring GP,$@)" ] ; then \
|
2007-09-14 17:14:42 +00:00
|
|
|
echo "TEXT_BASE = 0xFE000000" >$(obj)board/freescale/mpc8349itx/config.tmp ; \
|
2007-01-31 21:54:29 +00:00
|
|
|
fi
|
|
|
|
@if [ "$(findstring LOWBOOT,$@)" ] ; then \
|
2007-09-14 17:14:42 +00:00
|
|
|
echo "TEXT_BASE = 0xFE000000" >$(obj)board/freescale/mpc8349itx/config.tmp ; \
|
2007-01-31 21:54:29 +00:00
|
|
|
fi
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a -n $(@:_config=) MPC8349ITX powerpc mpc83xx mpc8349itx freescale
|
2006-11-01 00:44:42 +00:00
|
|
|
|
2006-11-04 01:33:44 +00:00
|
|
|
MPC8360EMDS_config \
|
|
|
|
MPC8360EMDS_HOST_33_config \
|
|
|
|
MPC8360EMDS_HOST_66_config \
|
2007-10-18 09:47:19 +00:00
|
|
|
MPC8360EMDS_SLAVE_config \
|
|
|
|
MPC8360EMDS_ATM_config: unconfig
|
2007-08-01 22:48:45 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-09 01:13:19 +00:00
|
|
|
@if [ "$(findstring _HOST_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) -n "... PCI HOST " ; \
|
2007-08-01 22:48:45 +00:00
|
|
|
echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
|
2006-11-04 01:33:44 +00:00
|
|
|
fi ; \
|
|
|
|
if [ "$(findstring _SLAVE_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "...PCI SLAVE 66M" ; \
|
2007-08-01 22:48:45 +00:00
|
|
|
echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
|
|
|
|
echo "#define CONFIG_PCISLAVE" >>$(obj)include/config.h ; \
|
2006-11-04 01:33:44 +00:00
|
|
|
fi ; \
|
|
|
|
if [ "$(findstring _33_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) -n "...33M ..." ; \
|
2007-08-01 22:48:45 +00:00
|
|
|
echo "#define PCI_33M" >>$(obj)include/config.h ; \
|
2007-10-18 09:47:19 +00:00
|
|
|
echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
|
2006-11-04 01:33:44 +00:00
|
|
|
fi ; \
|
|
|
|
if [ "$(findstring _66_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) -n "...66M..." ; \
|
2007-08-01 22:48:45 +00:00
|
|
|
echo "#define PCI_66M" >>$(obj)include/config.h ; \
|
2007-10-18 09:47:19 +00:00
|
|
|
echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
|
|
|
|
fi ; \
|
|
|
|
if [ "$(findstring _ATM_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) -n "...ATM..." ; \
|
2007-10-18 09:47:19 +00:00
|
|
|
echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \
|
2008-03-04 13:58:31 +00:00
|
|
|
echo "#define CONFIG_PQ_MDS_PIB_ATM 1" >>$(obj)include/config.h ; \
|
2006-11-04 01:33:44 +00:00
|
|
|
fi ;
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a MPC8360EMDS powerpc mpc83xx mpc8360emds freescale
|
2006-11-04 01:33:44 +00:00
|
|
|
|
2008-01-09 17:57:47 +00:00
|
|
|
MPC8360ERDK_33_config \
|
|
|
|
MPC8360ERDK_66_config \
|
2008-03-02 15:12:31 +00:00
|
|
|
MPC8360ERDK_config: unconfig
|
2008-01-09 17:57:47 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-09 01:13:19 +00:00
|
|
|
@if [ "$(findstring _33_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) -n "... CLKIN 33MHz " ; \
|
2008-01-09 17:57:47 +00:00
|
|
|
echo "#define CONFIG_CLKIN_33MHZ" >>$(obj)include/config.h ;\
|
|
|
|
fi ;
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a MPC8360ERDK powerpc mpc83xx mpc8360erdk freescale
|
2008-01-09 17:57:47 +00:00
|
|
|
|
2007-09-18 04:37:57 +00:00
|
|
|
MPC837XEMDS_config \
|
|
|
|
MPC837XEMDS_HOST_config: unconfig
|
|
|
|
@mkdir -p $(obj)include
|
2008-03-09 01:13:19 +00:00
|
|
|
@if [ "$(findstring _HOST_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) -n "... PCI HOST " ; \
|
2007-09-18 04:37:57 +00:00
|
|
|
echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
|
|
|
|
fi ;
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a MPC837XEMDS powerpc mpc83xx mpc837xemds freescale
|
2007-09-18 04:37:57 +00:00
|
|
|
|
2008-01-16 06:38:05 +00:00
|
|
|
MPC837XERDB_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a MPC837XERDB powerpc mpc83xx mpc837xerdb freescale
|
2008-01-16 06:38:05 +00:00
|
|
|
|
2008-06-10 07:14:05 +00:00
|
|
|
MVBLM7_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc83xx mvblm7 matrix_vision
|
2008-06-10 07:14:05 +00:00
|
|
|
|
2009-08-21 21:21:58 +00:00
|
|
|
sbc8349_config \
|
|
|
|
sbc8349_PCI_33_config \
|
|
|
|
sbc8349_PCI_66_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -t $(@:_config=) sbc8349 powerpc mpc83xx sbc8349
|
2007-01-24 23:18:37 +00:00
|
|
|
|
2009-01-22 23:05:24 +00:00
|
|
|
SIMPC8313_LP_config \
|
|
|
|
SIMPC8313_SP_config: unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@mkdir -p $(obj)board/sheldon/simpc8313
|
|
|
|
@if [ "$(findstring _LP_,$@)" ] ; then \
|
|
|
|
$(XECHO) -n "...Large Page NAND..." ; \
|
|
|
|
echo "#define CONFIG_NAND_LP" >> $(obj)include/config.h ; \
|
|
|
|
fi ; \
|
|
|
|
if [ "$(findstring _SP_,$@)" ] ; then \
|
|
|
|
$(XECHO) -n "...Small Page NAND..." ; \
|
|
|
|
echo "#define CONFIG_NAND_SP" >> $(obj)include/config.h ; \
|
|
|
|
fi ;
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a SIMPC8313 powerpc mpc83xx simpc8313 sheldon
|
2009-01-22 23:05:24 +00:00
|
|
|
@echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
|
|
|
|
|
2007-01-24 23:18:37 +00:00
|
|
|
TQM834x_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc83xx tqm834x tqc
|
2007-01-24 23:18:37 +00:00
|
|
|
|
2009-12-08 08:13:08 +00:00
|
|
|
caddy2_config \
|
2009-07-25 04:19:12 +00:00
|
|
|
vme8349_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -t $(@:_config=) vme8349 powerpc mpc83xx vme8349 esd
|
2006-11-01 00:44:42 +00:00
|
|
|
|
2010-02-01 20:29:48 +00:00
|
|
|
edb9301_config \
|
|
|
|
edb9302_config \
|
|
|
|
edb9302a_config \
|
|
|
|
edb9307_config \
|
|
|
|
edb9307a_config \
|
|
|
|
edb9312_config \
|
|
|
|
edb9315_config \
|
|
|
|
edb9315a_config: unconfig
|
|
|
|
@$(MKCONFIG) -t $(@:_config=) edb93xx arm arm920t edb93xx NULL ep93xx
|
|
|
|
|
2003-10-15 23:53:47 +00:00
|
|
|
#########################################################################
|
|
|
|
## MPC85xx Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2007-12-21 15:36:37 +00:00
|
|
|
ATUM8548_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc85xx atum8548
|
2007-12-21 15:36:37 +00:00
|
|
|
|
NAND boot: MPC8536DS support
MPC8536E can support booting from NAND flash which uses the
image u-boot-nand.bin. This image contains two parts: a 4K
NAND loader and a main U-Boot image. The former is appended
to the latter to produce u-boot-nand.bin. The 4K NAND loader
includes the corresponding nand_spl directory, along with the
code twisted by CONFIG_NAND_SPL. The main U-Boot image just
like a general U-Boot image except the parts that included by
CONFIG_SYS_RAMBOOT.
When power on, eLBC will automatically load from bank 0 the
4K NAND loader into the FCM buffer RAM where CPU can execute
the boot code directly. In the first stage, the NAND loader
copies itself to RAM or L2SRAM to free up the FCM buffer RAM,
then loads the main image from NAND flash to RAM or L2SRAM
and boot from it.
This patch implements the NAND loader to load the main image
into L2SRAM, so the main image can configure the RAM by using
SPD EEPROM. In the first stage, the NAND loader copies itself
to the second to last 4K address space, and uses the last 4K
address space as the initial RAM for stack.
Obviously, the size of L2SRAM shouldn't be less than the size
of the image used. If so, the workaround is to generate another
image that includes the code to configure the RAM by SPD and
load it to L2SRAM first, then relocate the main image to RAM
to boot up.
Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2009-09-23 07:20:37 +00:00
|
|
|
MPC8536DS_NAND_config \
|
On-chip ROM boot: MPC8536DS support
The MPC8536E is capable of booting from the on-chip ROM - boot from
eSDHC and boot from eSPI. When power on, the porcessor excutes the
ROM code to initialize the eSPI/eSDHC controller, and loads the mian
U-Boot image from the memory device that interfaced to the controller,
such as the SDCard or SPI EEPROM, to the target memory, e.g. SDRAM or
L2SRAM, then boot from it.
The memory device should contain a specific data structure with control
word and config word at the fixed address. The config word direct the
process how to config the memory device, and the control word direct
the processor where to find the image on the memory device, or where
copy the main image to. The user can use any method to store the data
structure to the memory device, only if store it on the assigned address.
The on-chip ROM code will map the whole 4GB address space by setting
entry0 in the TLB1, so the main image need to switch to Address space 1
to disable this mapping and map the address space again.
This patch implements loading the mian U-Boot image into L2SRAM, so
the image can configure the system memory by using SPD EEPROM.
Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2009-09-23 07:20:38 +00:00
|
|
|
MPC8536DS_SDCARD_config \
|
|
|
|
MPC8536DS_SPIFLASH_config \
|
2009-07-30 20:54:07 +00:00
|
|
|
MPC8536DS_36BIT_config \
|
2008-07-25 18:31:05 +00:00
|
|
|
MPC8536DS_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -t $(@:_config=) MPC8536DS powerpc mpc85xx mpc8536ds freescale
|
2008-07-25 18:31:05 +00:00
|
|
|
|
2004-07-09 23:27:13 +00:00
|
|
|
MPC8540ADS_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc85xx mpc8540ads freescale
|
2003-10-15 23:53:47 +00:00
|
|
|
|
2005-07-29 15:20:29 +00:00
|
|
|
MPC8540EVAL_config \
|
|
|
|
MPC8540EVAL_33_config \
|
|
|
|
MPC8540EVAL_66_config \
|
|
|
|
MPC8540EVAL_33_slave_config \
|
2008-03-04 13:58:31 +00:00
|
|
|
MPC8540EVAL_66_slave_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-09 01:13:19 +00:00
|
|
|
@if [ "$(findstring _33_,$@)" ] ; then \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... 33 MHz PCI" ; \
|
2005-07-29 15:20:29 +00:00
|
|
|
else \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... 66 MHz PCI" ; \
|
2005-07-29 15:20:29 +00:00
|
|
|
fi ; \
|
|
|
|
if [ "$(findstring _slave_,$@)" ] ; then \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) " slave" ; \
|
2005-07-29 15:20:29 +00:00
|
|
|
else \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) " host" ; \
|
2005-07-29 15:20:29 +00:00
|
|
|
fi
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a MPC8540EVAL powerpc mpc85xx mpc8540eval
|
2005-07-29 15:20:29 +00:00
|
|
|
|
2004-07-09 23:27:13 +00:00
|
|
|
MPC8560ADS_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc85xx mpc8560ads freescale
|
2003-10-15 23:53:47 +00:00
|
|
|
|
2007-02-28 02:42:22 +00:00
|
|
|
MPC8541CDS_legacy_config \
|
2004-10-10 21:21:55 +00:00
|
|
|
MPC8541CDS_config: unconfig
|
2007-02-28 02:42:22 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-09 01:13:19 +00:00
|
|
|
@if [ "$(findstring _legacy_,$@)" ] ; then \
|
2007-02-28 02:42:22 +00:00
|
|
|
echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... legacy" ; \
|
2007-02-28 02:42:22 +00:00
|
|
|
fi
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a MPC8541CDS powerpc mpc85xx mpc8541cds freescale
|
2004-10-10 21:21:55 +00:00
|
|
|
|
2007-04-23 07:24:28 +00:00
|
|
|
MPC8544DS_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc85xx mpc8544ds freescale
|
2007-04-23 07:24:28 +00:00
|
|
|
|
2007-02-28 02:42:22 +00:00
|
|
|
MPC8548CDS_legacy_config \
|
2005-07-25 19:05:07 +00:00
|
|
|
MPC8548CDS_config: unconfig
|
2007-02-28 02:42:22 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-09 01:13:19 +00:00
|
|
|
@if [ "$(findstring _legacy_,$@)" ] ; then \
|
2007-02-28 02:42:22 +00:00
|
|
|
echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... legacy" ; \
|
2007-02-28 02:42:22 +00:00
|
|
|
fi
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a MPC8548CDS powerpc mpc85xx mpc8548cds freescale
|
2005-07-25 19:05:07 +00:00
|
|
|
|
2007-02-28 02:42:22 +00:00
|
|
|
MPC8555CDS_legacy_config \
|
2004-10-10 21:21:55 +00:00
|
|
|
MPC8555CDS_config: unconfig
|
2007-02-28 02:42:22 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-09 01:13:19 +00:00
|
|
|
@if [ "$(findstring _legacy_,$@)" ] ; then \
|
2007-02-28 02:42:22 +00:00
|
|
|
echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... legacy" ; \
|
2007-02-28 02:42:22 +00:00
|
|
|
fi
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a MPC8555CDS powerpc mpc85xx mpc8555cds freescale
|
2004-04-18 21:45:42 +00:00
|
|
|
|
2007-04-23 07:54:25 +00:00
|
|
|
MPC8568MDS_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc85xx mpc8568mds freescale
|
2007-04-23 07:54:25 +00:00
|
|
|
|
2009-11-27 07:31:52 +00:00
|
|
|
MPC8569MDS_ATM_config \
|
2010-01-18 11:03:28 +00:00
|
|
|
MPC8569MDS_NAND_config \
|
2009-03-27 21:02:45 +00:00
|
|
|
MPC8569MDS_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -t $(@:_config=) MPC8569MDS powerpc mpc85xx mpc8569mds freescale
|
2009-03-27 21:02:45 +00:00
|
|
|
|
2009-01-23 20:22:14 +00:00
|
|
|
MPC8572DS_36BIT_config \
|
2008-08-12 16:13:08 +00:00
|
|
|
MPC8572DS_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -t $(@:_config=) MPC8572DS powerpc mpc85xx mpc8572ds freescale
|
2008-08-12 16:13:08 +00:00
|
|
|
|
2009-04-03 20:36:13 +00:00
|
|
|
P2020DS_36BIT_config \
|
|
|
|
P2020DS_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -t $(@:_config=) P2020DS powerpc mpc85xx p2020ds freescale
|
2009-04-03 20:36:13 +00:00
|
|
|
|
2009-09-10 21:31:53 +00:00
|
|
|
P1011RDB_config \
|
2009-10-08 08:03:18 +00:00
|
|
|
P1011RDB_NAND_config \
|
2009-10-08 08:03:29 +00:00
|
|
|
P1011RDB_SDCARD_config \
|
|
|
|
P1011RDB_SPIFLASH_config \
|
2009-09-10 21:31:53 +00:00
|
|
|
P1020RDB_config \
|
2009-10-08 08:03:18 +00:00
|
|
|
P1020RDB_NAND_config \
|
2009-10-08 08:03:29 +00:00
|
|
|
P1020RDB_SDCARD_config \
|
|
|
|
P1020RDB_SPIFLASH_config \
|
2009-09-10 21:31:53 +00:00
|
|
|
P2010RDB_config \
|
2009-10-08 08:03:18 +00:00
|
|
|
P2010RDB_NAND_config \
|
2009-10-08 08:03:29 +00:00
|
|
|
P2010RDB_SDCARD_config \
|
|
|
|
P2010RDB_SPIFLASH_config \
|
2009-10-08 08:03:18 +00:00
|
|
|
P2020RDB_config \
|
2009-10-08 08:03:29 +00:00
|
|
|
P2020RDB_NAND_config \
|
|
|
|
P2020RDB_SDCARD_config \
|
|
|
|
P2020RDB_SPIFLASH_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -t $(@:_config=) P1_P2_RDB powerpc mpc85xx p1_p2_rdb freescale
|
2009-08-05 07:59:24 +00:00
|
|
|
|
2005-04-03 22:35:21 +00:00
|
|
|
PM854_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc85xx pm854
|
2005-04-03 22:35:21 +00:00
|
|
|
|
2005-08-05 10:19:30 +00:00
|
|
|
PM856_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc85xx pm856
|
2005-08-05 10:19:30 +00:00
|
|
|
|
2004-10-10 22:44:24 +00:00
|
|
|
sbc8540_config \
|
|
|
|
sbc8540_33_config \
|
|
|
|
sbc8540_66_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -t $(@:_config=) SBC8540 powerpc mpc85xx sbc8560
|
2004-10-10 22:44:24 +00:00
|
|
|
|
2009-09-21 00:36:06 +00:00
|
|
|
sbc8548_config \
|
|
|
|
sbc8548_PCI_33_config \
|
|
|
|
sbc8548_PCI_66_config \
|
|
|
|
sbc8548_PCI_33_PCIE_config \
|
|
|
|
sbc8548_PCI_66_PCIE_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -t $(@:_config=) sbc8548 powerpc mpc85xx sbc8548
|
2007-12-13 12:45:08 +00:00
|
|
|
|
2004-07-10 22:35:59 +00:00
|
|
|
sbc8560_config \
|
|
|
|
sbc8560_33_config \
|
2008-03-04 13:58:31 +00:00
|
|
|
sbc8560_66_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -t $(@:_config=) sbc8560 powerpc mpc85xx sbc8560
|
2004-07-10 21:45:47 +00:00
|
|
|
|
2008-04-30 09:42:50 +00:00
|
|
|
socrates_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc85xx socrates
|
2008-04-30 09:42:50 +00:00
|
|
|
|
2004-10-10 21:21:55 +00:00
|
|
|
stxgp3_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc85xx stxgp3 stx
|
2004-10-10 21:21:55 +00:00
|
|
|
|
2007-05-31 15:20:09 +00:00
|
|
|
stxssa_config \
|
|
|
|
stxssa_4M_config: unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@if [ "$(findstring _4M_,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_STXSSA_4M" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with 4 MiB flash memory" ; \
|
2007-05-31 15:20:09 +00:00
|
|
|
fi
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a stxssa powerpc mpc85xx stxssa stx
|
2007-01-05 08:15:34 +00:00
|
|
|
|
2005-11-30 12:06:40 +00:00
|
|
|
TQM8540_config \
|
|
|
|
TQM8541_config \
|
2008-06-05 11:12:07 +00:00
|
|
|
TQM8548_config \
|
2009-02-11 17:38:22 +00:00
|
|
|
TQM8548_AG_config \
|
2009-02-11 17:38:21 +00:00
|
|
|
TQM8548_BE_config \
|
2005-11-30 12:06:40 +00:00
|
|
|
TQM8555_config \
|
|
|
|
TQM8560_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2009-02-11 17:38:21 +00:00
|
|
|
@BTYPE=$(@:_config=); \
|
2009-02-11 17:38:22 +00:00
|
|
|
CTYPE=$(subst TQM,,$(subst _AG,,$(subst _BE,,$(@:_config=)))); \
|
2009-02-11 17:38:21 +00:00
|
|
|
$(XECHO) "... "$${BTYPE}" (MPC"$${CTYPE}")"; \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \
|
2009-02-11 17:38:21 +00:00
|
|
|
echo "#define CONFIG_$${BTYPE}">>$(obj)include/config.h; \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \
|
2009-02-11 17:38:21 +00:00
|
|
|
echo "#define CONFIG_BOARDNAME \"$${BTYPE}\"">>$(obj)include/config.h;
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a TQM85xx powerpc mpc85xx tqm85xx tqc
|
2009-02-11 17:38:21 +00:00
|
|
|
@echo "CONFIG_$(@:_config=) = y">>$(obj)include/config.mk;
|
2005-04-05 16:26:47 +00:00
|
|
|
|
2008-12-01 19:47:13 +00:00
|
|
|
XPEDITE5200_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc85xx xpedite5200 xes
|
2008-12-01 19:47:13 +00:00
|
|
|
|
2008-12-17 22:36:23 +00:00
|
|
|
XPEDITE5370_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc85xx xpedite5370 xes
|
2008-12-17 22:36:23 +00:00
|
|
|
|
2006-04-26 22:58:56 +00:00
|
|
|
#########################################################################
|
|
|
|
## MPC86xx Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2007-10-16 20:27:43 +00:00
|
|
|
MPC8610HPCD_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc86xx mpc8610hpcd freescale
|
2007-10-16 20:27:43 +00:00
|
|
|
|
2008-11-06 19:04:09 +00:00
|
|
|
MPC8641HPCN_36BIT_config \
|
2006-04-26 22:58:56 +00:00
|
|
|
MPC8641HPCN_config: unconfig
|
2008-11-06 19:04:09 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@if [ "$(findstring _36BIT_,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_PHYS_64BIT" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... enabling 36-bit physical addressing." ; \
|
|
|
|
fi
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a MPC8641HPCN powerpc mpc86xx mpc8641hpcn freescale
|
2006-04-26 22:58:56 +00:00
|
|
|
|
2007-08-09 20:11:03 +00:00
|
|
|
sbc8641d_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc86xx sbc8641d
|
2006-04-26 22:58:56 +00:00
|
|
|
|
2009-06-30 22:26:01 +00:00
|
|
|
XPEDITE5170_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc mpc86xx xpedite5170 xes
|
2009-06-30 22:26:01 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
## 74xx/7xx Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2002-11-19 11:04:11 +00:00
|
|
|
AmigaOneG3SE_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc 74xx_7xx AmigaOneG3SE MAI
|
2002-11-19 11:04:11 +00:00
|
|
|
|
2003-10-09 19:00:25 +00:00
|
|
|
BAB7xx_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc 74xx_7xx bab7xx eltec
|
2003-10-09 19:00:25 +00:00
|
|
|
|
2007-10-20 23:01:17 +00:00
|
|
|
CPCI750_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) CPCI750 powerpc 74xx_7xx cpci750 esd
|
2004-12-16 18:44:40 +00:00
|
|
|
|
2007-10-20 23:01:17 +00:00
|
|
|
DB64360_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) DB64360 powerpc 74xx_7xx db64360 Marvell
|
2004-01-03 00:43:19 +00:00
|
|
|
|
2007-10-20 23:01:17 +00:00
|
|
|
DB64460_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) DB64460 powerpc 74xx_7xx db64460 Marvell
|
2004-01-03 00:43:19 +00:00
|
|
|
|
2003-10-09 19:00:25 +00:00
|
|
|
ELPPC_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc 74xx_7xx elppc eltec
|
2003-10-09 19:00:25 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
EVB64260_config \
|
|
|
|
EVB64260_750CX_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) EVB64260 powerpc 74xx_7xx evb64260
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-11-02 10:49:51 +00:00
|
|
|
mpc7448hpc2_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc 74xx_7xx mpc7448hpc2 freescale
|
2006-11-02 10:49:51 +00:00
|
|
|
|
2003-10-09 19:00:25 +00:00
|
|
|
P3G4_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc 74xx_7xx evb64260
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-11-29 14:42:37 +00:00
|
|
|
p3m750_config \
|
|
|
|
p3m7448_config: unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@if [ "$(findstring 750_,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_P3M750" >>$(obj)include/config.h ; \
|
|
|
|
else \
|
|
|
|
echo "#define CONFIG_P3M7448" >>$(obj)include/config.h ; \
|
|
|
|
fi
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) -a p3mx powerpc 74xx_7xx p3mx prodrive
|
2006-11-29 14:42:37 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
PCIPPC2_config \
|
|
|
|
PCIPPC6_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc 74xx_7xx pcippc2
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-06-19 09:02:41 +00:00
|
|
|
ppmc7xx_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc 74xx_7xx ppmc7xx
|
2006-07-19 11:50:38 +00:00
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
ZUMA_config: unconfig
|
2010-04-15 14:07:28 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) powerpc 74xx_7xx evb64260
|
2008-07-15 20:22:44 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#========================================================================
|
|
|
|
# ARM
|
|
|
|
#========================================================================
|
|
|
|
#########################################################################
|
|
|
|
## StrongARM Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2004-04-15 23:23:39 +00:00
|
|
|
assabet_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm sa1100 assabet
|
2004-04-15 23:23:39 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
dnp1110_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2004-03-14 18:23:55 +00:00
|
|
|
gcplus_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm sa1100 gcplus
|
2004-03-14 18:23:55 +00:00
|
|
|
|
|
|
|
lart_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm sa1100 lart
|
2004-03-14 18:23:55 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
shannon_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm sa1100 shannon
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
#########################################################################
|
2003-07-15 20:04:06 +00:00
|
|
|
## ARM92xT Systems
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
|
2009-11-11 09:27:30 +00:00
|
|
|
a320evb_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t a320evb faraday a320
|
|
|
|
|
2008-04-12 18:56:03 +00:00
|
|
|
#########################################################################
|
|
|
|
## Atmel AT91RM9200 Systems
|
|
|
|
#########################################################################
|
2008-01-20 19:49:21 +00:00
|
|
|
|
2005-04-06 13:52:31 +00:00
|
|
|
at91rm9200dk_config : unconfig
|
2008-02-22 11:40:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk atmel at91rm9200
|
2005-04-06 13:52:31 +00:00
|
|
|
|
2009-03-27 22:26:43 +00:00
|
|
|
at91rm9200ek_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200ek atmel at91rm9200
|
|
|
|
|
2005-04-06 13:52:31 +00:00
|
|
|
cmc_pu2_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
|
2005-04-06 13:52:31 +00:00
|
|
|
|
2009-09-27 12:47:24 +00:00
|
|
|
CPUAT91_RAM_config \
|
|
|
|
CPUAT91_config : unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
|
|
|
|
@$(MKCONFIG) -a cpuat91 arm arm920t cpuat91 eukrea at91rm9200
|
|
|
|
|
2005-10-05 00:00:09 +00:00
|
|
|
csb637_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200
|
2005-10-05 00:00:09 +00:00
|
|
|
|
2010-02-03 21:48:09 +00:00
|
|
|
eb_cpux9k2_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t eb_cpux9k2 BuS at91
|
|
|
|
|
2008-04-12 18:56:03 +00:00
|
|
|
kb9202_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200
|
|
|
|
|
2008-02-01 10:09:03 +00:00
|
|
|
m501sk_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t m501sk NULL at91rm9200
|
2004-03-14 15:06:13 +00:00
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
mp2usb_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200
|
|
|
|
|
2008-04-12 18:56:03 +00:00
|
|
|
#########################################################################
|
2010-01-18 09:58:13 +00:00
|
|
|
## ARM926EJ-S Systems
|
2008-04-12 18:56:03 +00:00
|
|
|
#########################################################################
|
|
|
|
|
2008-10-31 11:28:43 +00:00
|
|
|
afeb9260_config: unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs afeb9260 NULL at91
|
|
|
|
|
2008-04-12 18:56:03 +00:00
|
|
|
at91cap9adk_config : unconfig
|
2008-07-05 21:11:11 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs at91cap9adk atmel at91
|
2008-04-12 18:56:03 +00:00
|
|
|
|
2008-12-06 12:11:14 +00:00
|
|
|
at91sam9260ek_nandflash_config \
|
|
|
|
at91sam9260ek_dataflash_cs0_config \
|
|
|
|
at91sam9260ek_dataflash_cs1_config \
|
2009-03-22 13:48:16 +00:00
|
|
|
at91sam9260ek_config \
|
|
|
|
at91sam9g20ek_nandflash_config \
|
|
|
|
at91sam9g20ek_dataflash_cs0_config \
|
|
|
|
at91sam9g20ek_dataflash_cs1_config \
|
|
|
|
at91sam9g20ek_config : unconfig
|
2009-01-03 16:22:24 +00:00
|
|
|
@mkdir -p $(obj)include
|
2009-03-22 13:48:16 +00:00
|
|
|
@if [ "$(findstring 9g20,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_AT91SAM9G20EK 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... 9G20 Variant" ; \
|
|
|
|
else \
|
|
|
|
echo "#define CONFIG_AT91SAM9260EK 1" >>$(obj)include/config.h ; \
|
|
|
|
fi;
|
2008-12-06 12:11:14 +00:00
|
|
|
@if [ "$(findstring _nandflash,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... with environment variable in NAND FLASH" ; \
|
|
|
|
elif [ "$(findstring dataflash_cs0,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... with environment variable in SPI DATAFLASH CS0" ; \
|
|
|
|
else \
|
|
|
|
echo "#define CONFIG_SYS_USE_DATAFLASH_CS1 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... with environment variable in SPI DATAFLASH CS1" ; \
|
|
|
|
fi;
|
|
|
|
@$(MKCONFIG) -a at91sam9260ek arm arm926ejs at91sam9260ek atmel at91
|
|
|
|
|
2009-01-06 20:13:14 +00:00
|
|
|
at91sam9xeek_nandflash_config \
|
|
|
|
at91sam9xeek_dataflash_cs0_config \
|
|
|
|
at91sam9xeek_dataflash_cs1_config \
|
|
|
|
at91sam9xeek_config : unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@if [ "$(findstring _nandflash,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... with environment variable in NAND FLASH" ; \
|
|
|
|
elif [ "$(findstring dataflash_cs0,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... with environment variable in SPI DATAFLASH CS0" ; \
|
|
|
|
else \
|
|
|
|
echo "#define CONFIG_SYS_USE_DATAFLASH_CS1 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... with environment variable in SPI DATAFLASH CS1" ; \
|
|
|
|
fi;
|
2009-01-11 02:32:01 +00:00
|
|
|
@$(MKCONFIG) -n at91sam9xeek -a at91sam9260ek arm arm926ejs at91sam9260ek atmel at91
|
2009-01-06 20:13:14 +00:00
|
|
|
|
2008-12-06 12:11:14 +00:00
|
|
|
at91sam9261ek_nandflash_config \
|
|
|
|
at91sam9261ek_dataflash_cs0_config \
|
|
|
|
at91sam9261ek_dataflash_cs3_config \
|
2009-06-25 15:04:15 +00:00
|
|
|
at91sam9261ek_config \
|
|
|
|
at91sam9g10ek_nandflash_config \
|
|
|
|
at91sam9g10ek_dataflash_cs0_config \
|
|
|
|
at91sam9g10ek_dataflash_cs3_config \
|
|
|
|
at91sam9g10ek_config : unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@if [ "$(findstring 9g10,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_AT91SAM9G10EK 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... 9G10 Variant" ; \
|
|
|
|
else \
|
|
|
|
echo "#define CONFIG_AT91SAM9261EK 1" >>$(obj)include/config.h ; \
|
|
|
|
fi;
|
2008-12-06 12:11:14 +00:00
|
|
|
@if [ "$(findstring _nandflash,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... with environment variable in NAND FLASH" ; \
|
2009-06-25 15:04:15 +00:00
|
|
|
elif [ "$(findstring dataflash_cs0,$@)" ] ; then \
|
2008-12-06 12:11:14 +00:00
|
|
|
echo "#define CONFIG_SYS_USE_DATAFLASH_CS3 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... with environment variable in SPI DATAFLASH CS3" ; \
|
|
|
|
else \
|
|
|
|
echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... with environment variable in SPI DATAFLASH CS0" ; \
|
|
|
|
fi;
|
|
|
|
@$(MKCONFIG) -a at91sam9261ek arm arm926ejs at91sam9261ek atmel at91
|
|
|
|
|
2009-06-13 10:48:36 +00:00
|
|
|
at91sam9263ek_norflash_config \
|
|
|
|
at91sam9263ek_norflash_boot_config \
|
2008-12-06 12:11:14 +00:00
|
|
|
at91sam9263ek_nandflash_config \
|
|
|
|
at91sam9263ek_dataflash_config \
|
|
|
|
at91sam9263ek_dataflash_cs0_config \
|
2008-11-01 09:47:59 +00:00
|
|
|
at91sam9263ek_config : unconfig
|
2009-01-03 16:22:24 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-12-06 12:11:14 +00:00
|
|
|
@if [ "$(findstring _nandflash,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... with environment variable in NAND FLASH" ; \
|
2009-06-13 10:48:36 +00:00
|
|
|
elif [ "$(findstring norflash,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_SYS_USE_NORFLASH 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... with environment variable in NOR FLASH" ; \
|
2008-12-06 12:11:14 +00:00
|
|
|
else \
|
|
|
|
echo "#define CONFIG_SYS_USE_DATAFLASH 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... with environment variable in SPI DATAFLASH CS0" ; \
|
|
|
|
fi;
|
2009-06-13 10:48:36 +00:00
|
|
|
@if [ "$(findstring norflash_boot,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_SYS_USE_BOOT_NORFLASH 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... and boot from NOR FLASH" ; \
|
|
|
|
fi;
|
2008-12-06 12:11:14 +00:00
|
|
|
@$(MKCONFIG) -a at91sam9263ek arm arm926ejs at91sam9263ek atmel at91
|
|
|
|
|
|
|
|
at91sam9rlek_nandflash_config \
|
|
|
|
at91sam9rlek_dataflash_config \
|
|
|
|
at91sam9rlek_dataflash_cs0_config \
|
2008-11-01 09:47:59 +00:00
|
|
|
at91sam9rlek_config : unconfig
|
2009-01-03 16:22:24 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-12-06 12:11:14 +00:00
|
|
|
@if [ "$(findstring _nandflash,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... with environment variable in NAND FLASH" ; \
|
|
|
|
else \
|
|
|
|
echo "#define CONFIG_SYS_USE_DATAFLASH 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... with environment variable in SPI DATAFLASH CS0" ; \
|
|
|
|
fi;
|
|
|
|
@$(MKCONFIG) -a at91sam9rlek arm arm926ejs at91sam9rlek atmel at91
|
2008-11-01 09:47:59 +00:00
|
|
|
|
2009-09-27 16:10:09 +00:00
|
|
|
CPU9G20_128M_config \
|
|
|
|
CPU9G20_config \
|
|
|
|
CPU9260_128M_config \
|
|
|
|
CPU9260_config : unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
|
|
|
|
@$(MKCONFIG) -a cpu9260 arm arm926ejs cpu9260 eukrea at91
|
|
|
|
|
2009-06-30 19:03:37 +00:00
|
|
|
meesc_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs meesc esd at91
|
|
|
|
|
2009-06-12 19:20:39 +00:00
|
|
|
pm9261_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs pm9261 ronetix at91
|
|
|
|
|
2009-07-09 08:16:29 +00:00
|
|
|
at91sam9m10g45ek_nandflash_config \
|
|
|
|
at91sam9m10g45ek_dataflash_config \
|
|
|
|
at91sam9m10g45ek_dataflash_cs0_config \
|
|
|
|
at91sam9m10g45ek_config \
|
|
|
|
at91sam9g45ekes_nandflash_config \
|
|
|
|
at91sam9g45ekes_dataflash_config \
|
|
|
|
at91sam9g45ekes_dataflash_cs0_config \
|
|
|
|
at91sam9g45ekes_config : unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@if [ "$(findstring 9m10,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_AT91SAM9M10G45EK 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... 9M10G45 Variant" ; \
|
|
|
|
else \
|
|
|
|
echo "#define CONFIG_AT91SAM9G45EKES 1" >>$(obj)include/config.h ; \
|
|
|
|
fi;
|
|
|
|
|
|
|
|
@if [ "$(findstring _nandflash,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... with environment variable in NAND FLASH" ; \
|
|
|
|
else \
|
|
|
|
echo "#define CONFIG_ATMEL_SPI 1" >>$(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... with environment variable in SPI DATAFLASH CS0" ; \
|
|
|
|
fi;
|
|
|
|
@$(MKCONFIG) -a at91sam9m10g45ek arm arm926ejs at91sam9m10g45ek atmel at91
|
|
|
|
|
2010-01-25 09:50:41 +00:00
|
|
|
otc570_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs otc570 esd at91
|
|
|
|
|
2009-04-16 19:30:48 +00:00
|
|
|
pm9263_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs pm9263 ronetix at91
|
|
|
|
|
2009-08-24 16:03:26 +00:00
|
|
|
SBC35_A9G20_NANDFLASH_config \
|
|
|
|
SBC35_A9G20_EEPROM_config \
|
|
|
|
SBC35_A9G20_config : unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
|
|
|
|
@$(MKCONFIG) -a sbc35_a9g20 arm arm926ejs sbc35_a9g20 calao at91
|
|
|
|
|
2009-08-20 14:04:49 +00:00
|
|
|
TNY_A9G20_NANDFLASH_config \
|
|
|
|
TNY_A9G20_EEPROM_config \
|
|
|
|
TNY_A9G20_config \
|
|
|
|
TNY_A9260_NANDFLASH_config \
|
|
|
|
TNY_A9260_EEPROM_config \
|
|
|
|
TNY_A9260_config : unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
|
|
|
|
@$(MKCONFIG) -a tny_a9260 arm arm926ejs tny_a9260 calao at91
|
|
|
|
|
2005-10-06 15:08:18 +00:00
|
|
|
########################################################################
|
|
|
|
## ARM Integrator boards - see doc/README-integrator for more info.
|
|
|
|
integratorap_config \
|
|
|
|
ap_config \
|
|
|
|
ap966_config \
|
|
|
|
ap922_config \
|
|
|
|
ap922_XA10_config \
|
|
|
|
ap7_config \
|
2006-11-30 17:02:20 +00:00
|
|
|
ap720t_config \
|
2005-10-06 15:08:18 +00:00
|
|
|
ap920t_config \
|
|
|
|
ap926ejs_config \
|
|
|
|
ap946es_config: unconfig
|
2009-05-16 22:58:37 +00:00
|
|
|
@board/armltd/integrator/split_by_variant.sh ap $@
|
2005-10-06 15:08:18 +00:00
|
|
|
|
|
|
|
integratorcp_config \
|
|
|
|
cp_config \
|
|
|
|
cp920t_config \
|
|
|
|
cp926ejs_config \
|
|
|
|
cp946es_config \
|
|
|
|
cp1136_config \
|
|
|
|
cp966_config \
|
|
|
|
cp922_config \
|
|
|
|
cp922_XA10_config \
|
|
|
|
cp1026_config: unconfig
|
2009-05-16 22:58:37 +00:00
|
|
|
@board/armltd/integrator/split_by_variant.sh cp $@
|
2004-12-10 11:40:40 +00:00
|
|
|
|
2009-11-12 16:09:25 +00:00
|
|
|
da830evm_config: unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs da830evm davinci davinci
|
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
davinci_dvevm_config : unconfig
|
2008-08-27 19:35:52 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs dvevm davinci davinci
|
2008-07-15 20:22:44 +00:00
|
|
|
|
|
|
|
davinci_schmoogie_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs schmoogie davinci davinci
|
|
|
|
|
|
|
|
davinci_sffsdr_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs sffsdr davinci davinci
|
|
|
|
|
|
|
|
davinci_sonata_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs sonata davinci davinci
|
|
|
|
|
2009-05-15 21:48:37 +00:00
|
|
|
davinci_dm355evm_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs dm355evm davinci davinci
|
|
|
|
|
2009-10-10 17:37:10 +00:00
|
|
|
davinci_dm355leopard_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs dm355leopard davinci davinci
|
|
|
|
|
2009-08-15 15:20:58 +00:00
|
|
|
davinci_dm365evm_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs dm365evm davinci davinci
|
|
|
|
|
2009-10-10 16:00:47 +00:00
|
|
|
davinci_dm6467evm_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs dm6467evm davinci davinci
|
|
|
|
|
2010-03-18 14:55:40 +00:00
|
|
|
guruplug_config: unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs $(@:_config=) Marvell kirkwood
|
|
|
|
|
2010-03-05 06:36:33 +00:00
|
|
|
magnesium_config \
|
2009-08-10 22:32:09 +00:00
|
|
|
imx27lite_config: unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs imx27lite logicpd mx27
|
|
|
|
|
2004-06-10 21:55:33 +00:00
|
|
|
lpd7a400_config \
|
|
|
|
lpd7a404_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm lh7a40x lpd7a40x
|
2004-03-14 15:06:13 +00:00
|
|
|
|
2009-07-16 15:28:01 +00:00
|
|
|
mv88f6281gtw_ge_config: unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs $(@:_config=) Marvell kirkwood
|
|
|
|
|
2004-08-01 22:48:16 +00:00
|
|
|
mx1ads_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx
|
2004-08-01 22:48:16 +00:00
|
|
|
|
|
|
|
mx1fs2_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx
|
2004-08-01 22:48:16 +00:00
|
|
|
|
2005-09-14 21:53:32 +00:00
|
|
|
netstar_config: unconfig
|
2008-02-01 16:49:08 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm925t netstar
|
2005-09-14 21:53:32 +00:00
|
|
|
|
2009-06-22 07:18:37 +00:00
|
|
|
nhk8815_config \
|
|
|
|
nhk8815_onenand_config: unconfig
|
2009-01-24 17:10:37 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@ > $(obj)include/config.h
|
|
|
|
@if [ "$(findstring _onenand, $@)" ] ; then \
|
|
|
|
echo "#define CONFIG_BOOT_ONENAND" >> $(obj)include/config.h; \
|
2009-06-22 07:18:57 +00:00
|
|
|
$(XECHO) "... configured to boot from OneNand Flash"; \
|
2009-01-24 17:10:37 +00:00
|
|
|
else \
|
2009-06-22 07:18:57 +00:00
|
|
|
$(XECHO) "... configured to boot from Nand Flash"; \
|
2009-01-24 17:10:37 +00:00
|
|
|
fi
|
2009-06-22 07:18:37 +00:00
|
|
|
@$(MKCONFIG) -a nhk8815 arm arm926ejs nhk8815 st nomadik
|
2009-01-24 17:10:37 +00:00
|
|
|
|
2003-07-15 20:04:06 +00:00
|
|
|
omap1510inn_config : unconfig
|
2009-08-23 14:32:38 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn ti
|
2003-07-15 20:04:06 +00:00
|
|
|
|
2008-04-12 18:56:03 +00:00
|
|
|
xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
|
|
|
|
|
2004-02-23 22:22:28 +00:00
|
|
|
omap1610inn_config \
|
|
|
|
omap1610inn_cs0boot_config \
|
|
|
|
omap1610inn_cs3boot_config \
|
2004-06-09 15:25:53 +00:00
|
|
|
omap1610inn_cs_autoboot_config \
|
2004-02-23 22:22:28 +00:00
|
|
|
omap1610h2_config \
|
|
|
|
omap1610h2_cs0boot_config \
|
2004-06-09 15:25:53 +00:00
|
|
|
omap1610h2_cs3boot_config \
|
|
|
|
omap1610h2_cs_autoboot_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2004-02-23 22:22:28 +00:00
|
|
|
@if [ "$(findstring _cs0boot_, $@)" ] ; then \
|
2007-08-01 22:48:45 +00:00
|
|
|
echo "#define CONFIG_CS0_BOOT" >> .$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... configured for CS0 boot"; \
|
2004-06-09 15:25:53 +00:00
|
|
|
elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
|
2007-08-01 22:48:45 +00:00
|
|
|
echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... configured for CS_AUTO boot"; \
|
2004-02-23 22:22:28 +00:00
|
|
|
else \
|
2007-08-01 22:48:45 +00:00
|
|
|
echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... configured for CS3 boot"; \
|
2004-02-23 22:22:28 +00:00
|
|
|
fi;
|
2009-08-23 14:32:38 +00:00
|
|
|
@$(MKCONFIG) -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn ti omap
|
2003-08-29 22:00:43 +00:00
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
omap5912osk_config : unconfig
|
2009-08-23 14:32:38 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk ti omap
|
2008-07-15 20:22:44 +00:00
|
|
|
|
2009-09-21 22:31:01 +00:00
|
|
|
openrd_base_config: unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs $(@:_config=) Marvell kirkwood
|
|
|
|
|
2008-04-12 18:56:03 +00:00
|
|
|
xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
|
|
|
|
|
2004-06-06 23:13:55 +00:00
|
|
|
omap730p2_config \
|
|
|
|
omap730p2_cs0boot_config \
|
|
|
|
omap730p2_cs3boot_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2004-06-06 23:13:55 +00:00
|
|
|
@if [ "$(findstring _cs0boot_, $@)" ] ; then \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... configured for CS0 boot"; \
|
2004-06-06 23:13:55 +00:00
|
|
|
else \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... configured for CS3 boot"; \
|
2004-06-06 23:13:55 +00:00
|
|
|
fi;
|
2009-08-23 14:32:38 +00:00
|
|
|
@$(MKCONFIG) -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 ti omap
|
2004-06-06 23:13:55 +00:00
|
|
|
|
2009-07-16 15:32:24 +00:00
|
|
|
rd6281a_config: unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs $(@:_config=) Marvell kirkwood
|
|
|
|
|
2006-07-21 09:31:42 +00:00
|
|
|
sbc2410x_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
|
2006-07-21 09:31:42 +00:00
|
|
|
|
2004-08-01 22:48:16 +00:00
|
|
|
scb9328_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx
|
2004-08-01 22:48:16 +00:00
|
|
|
|
2009-07-16 15:28:00 +00:00
|
|
|
sheevaplug_config: unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs $(@:_config=) Marvell kirkwood
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
smdk2400_config : unconfig
|
2009-01-28 20:57:59 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 samsung s3c24x0
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
smdk2410_config : unconfig
|
2009-01-28 20:57:59 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 samsung s3c24x0
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2010-01-15 13:45:52 +00:00
|
|
|
spear300_config \
|
2010-01-15 13:45:53 +00:00
|
|
|
spear310_config \
|
|
|
|
spear320_config : unconfig
|
2010-01-15 13:45:50 +00:00
|
|
|
@$(MKCONFIG) -n $@ -t $(@:_config=) spear3xx arm arm926ejs $(@:_config=) spear spear
|
|
|
|
|
2010-01-15 13:45:48 +00:00
|
|
|
spear600_config : unconfig
|
|
|
|
@$(MKCONFIG) -n $@ -t $(@:_config=) spear6xx arm arm926ejs $(@:_config=) spear spear
|
|
|
|
|
2010-02-22 11:13:02 +00:00
|
|
|
suen3_config: unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs km_arm keymile kirkwood
|
|
|
|
|
2009-01-28 20:58:03 +00:00
|
|
|
SX1_stdout_serial_config \
|
|
|
|
SX1_config: unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@if [ "$(findstring _stdout_serial_, $@)" ] ; then \
|
|
|
|
echo "#undef CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... configured for stdout serial"; \
|
|
|
|
else \
|
|
|
|
echo "#define CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... configured for stdout usbtty"; \
|
|
|
|
fi;
|
|
|
|
@$(MKCONFIG) SX1 arm arm925t sx1
|
2004-06-09 21:50:45 +00:00
|
|
|
|
2003-12-20 22:45:10 +00:00
|
|
|
# TRAB default configuration: 8 MB Flash, 32 MB RAM
|
2008-04-12 18:56:03 +00:00
|
|
|
xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
|
|
|
|
|
2003-03-06 00:02:04 +00:00
|
|
|
trab_config \
|
2003-09-17 22:48:07 +00:00
|
|
|
trab_bigram_config \
|
|
|
|
trab_bigflash_config \
|
2003-09-17 15:10:32 +00:00
|
|
|
trab_old_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@mkdir -p $(obj)board/trab
|
2003-09-17 22:48:07 +00:00
|
|
|
@[ -z "$(findstring _bigram,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
|
|
|
|
echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with 8 MB Flash, 32 MB RAM" ; \
|
2003-09-17 22:48:07 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring _bigflash,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \
|
|
|
|
echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with 16 MB Flash, 16 MB RAM" ; \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
|
2003-09-17 22:48:07 +00:00
|
|
|
}
|
2003-09-17 15:10:32 +00:00
|
|
|
@[ -z "$(findstring _old,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
|
|
|
|
echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with 8 MB Flash, 16 MB RAM" ; \
|
2006-09-01 17:49:50 +00:00
|
|
|
echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
|
2003-03-06 00:02:04 +00:00
|
|
|
}
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2010-01-26 06:12:58 +00:00
|
|
|
tx25_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm926ejs tx25 karo mx25
|
|
|
|
@echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
|
|
|
|
|
2003-03-06 21:55:29 +00:00
|
|
|
VCMA9_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0
|
2003-03-06 21:55:29 +00:00
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
#########################################################################
|
2005-10-06 15:08:18 +00:00
|
|
|
# ARM supplied Versatile development boards
|
2008-07-15 20:22:44 +00:00
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
cm4008_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695
|
|
|
|
|
|
|
|
cm41xx_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695
|
|
|
|
|
2005-10-06 15:08:18 +00:00
|
|
|
versatile_config \
|
|
|
|
versatileab_config \
|
|
|
|
versatilepb_config : unconfig
|
2009-01-29 11:07:21 +00:00
|
|
|
@board/armltd/versatile/split_by_variant.sh $@
|
2004-02-24 00:16:43 +00:00
|
|
|
|
2005-04-05 23:32:21 +00:00
|
|
|
voiceblue_config: unconfig
|
2007-12-06 23:42:32 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm925t voiceblue
|
2005-04-05 23:32:21 +00:00
|
|
|
|
2004-02-24 00:16:43 +00:00
|
|
|
#########################################################################
|
|
|
|
## S3C44B0 Systems
|
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
B2_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave
|
2004-02-24 00:16:43 +00:00
|
|
|
|
2004-06-09 21:50:45 +00:00
|
|
|
#########################################################################
|
|
|
|
## ARM720T Systems
|
|
|
|
#########################################################################
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2005-09-25 23:06:33 +00:00
|
|
|
armadillo_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm720t armadillo
|
2005-09-25 23:06:33 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
ep7312_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm720t ep7312
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2004-06-09 21:50:45 +00:00
|
|
|
impa7_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm720t impa7
|
2004-06-09 21:50:45 +00:00
|
|
|
|
* Patch by Thomas Elste, 10 Feb 2004:
Add support for NET+50 CPU and ModNET50 board
* Patch by Sam Song, 10 Feb 2004:
Fix typos in cfi_flash.c
* Patch by Leon Kukovec, 10 Feb 2004
Fixed long dir entry slot id calculation in get_vfatname
* Patch by Robin Gilks, 10 Feb 2004:
add "itest" command (operators: -eq, -ne, -lt, -gt, -le, -ge, ==,
!=, <>, <, >, <=, >=)
2004-02-23 19:30:57 +00:00
|
|
|
modnet50_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm720t modnet50
|
* Patch by Thomas Elste, 10 Feb 2004:
Add support for NET+50 CPU and ModNET50 board
* Patch by Sam Song, 10 Feb 2004:
Fix typos in cfi_flash.c
* Patch by Leon Kukovec, 10 Feb 2004
Fixed long dir entry slot id calculation in get_vfatname
* Patch by Robin Gilks, 10 Feb 2004:
add "itest" command (operators: -eq, -ne, -lt, -gt, -le, -ge, ==,
!=, <>, <, >, <=, >=)
2004-02-23 19:30:57 +00:00
|
|
|
|
2004-07-01 16:30:44 +00:00
|
|
|
evb4510_config : unconfig
|
2009-03-29 21:01:36 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm720t evb4510 NULL s3c4510b
|
2004-07-01 16:30:44 +00:00
|
|
|
|
2007-01-24 11:16:56 +00:00
|
|
|
lpc2292sodimm_config: unconfig
|
2007-05-09 10:37:56 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm720t lpc2292sodimm NULL lpc2292
|
|
|
|
|
|
|
|
SMN42_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm720t SMN42 siemens lpc2292
|
2007-01-24 11:16:56 +00:00
|
|
|
|
2009-01-27 17:19:12 +00:00
|
|
|
#########################################################################
|
|
|
|
## ARM CORTEX Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2009-08-23 10:56:42 +00:00
|
|
|
devkit8000_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm_cortexa8 devkit8000 timll omap3
|
|
|
|
|
2009-01-27 17:19:12 +00:00
|
|
|
omap3_beagle_config : unconfig
|
2009-08-23 14:32:38 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm_cortexa8 beagle ti omap3
|
2009-01-27 17:19:12 +00:00
|
|
|
|
2009-01-28 20:39:57 +00:00
|
|
|
omap3_overo_config : unconfig
|
2009-08-23 14:32:40 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm_cortexa8 overo NULL omap3
|
2009-01-28 20:39:57 +00:00
|
|
|
|
2009-01-28 20:39:58 +00:00
|
|
|
omap3_evm_config : unconfig
|
2009-08-23 14:32:38 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm_cortexa8 evm ti omap3
|
2009-01-28 20:39:58 +00:00
|
|
|
|
2009-01-28 20:39:58 +00:00
|
|
|
omap3_pandora_config : unconfig
|
2009-08-23 14:32:40 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm_cortexa8 pandora NULL omap3
|
2009-01-28 20:39:58 +00:00
|
|
|
|
2009-10-17 17:41:06 +00:00
|
|
|
omap3_sdp3430_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm_cortexa8 sdp3430 ti omap3
|
|
|
|
|
2009-01-28 20:40:16 +00:00
|
|
|
omap3_zoom1_config : unconfig
|
2009-08-23 14:32:39 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm_cortexa8 zoom1 logicpd omap3
|
2009-01-28 20:40:16 +00:00
|
|
|
|
2009-05-15 21:48:36 +00:00
|
|
|
omap3_zoom2_config : unconfig
|
2009-08-23 14:32:39 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm_cortexa8 zoom2 logicpd omap3
|
2009-05-15 21:48:36 +00:00
|
|
|
|
2009-10-01 08:20:40 +00:00
|
|
|
smdkc100_config: unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm_cortexa8 smdkc100 samsung s5pc1xx
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
2003-03-06 00:02:04 +00:00
|
|
|
## XScale Systems
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
|
2008-01-17 23:04:28 +00:00
|
|
|
actux1_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm ixp actux1
|
|
|
|
|
|
|
|
actux2_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm ixp actux2
|
|
|
|
|
|
|
|
actux3_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm ixp actux3
|
|
|
|
|
|
|
|
actux4_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm ixp actux4
|
|
|
|
|
2004-07-10 23:11:10 +00:00
|
|
|
cerf250_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm pxa cerf250
|
2004-07-10 23:11:10 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
cradle_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm pxa cradle
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
csb226_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm pxa csb226
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2008-03-02 15:12:31 +00:00
|
|
|
delta_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm pxa delta
|
2006-03-06 23:22:36 +00:00
|
|
|
|
2003-03-06 00:02:04 +00:00
|
|
|
innokom_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm pxa innokom
|
2003-03-06 00:02:04 +00:00
|
|
|
|
2003-10-14 19:43:55 +00:00
|
|
|
ixdp425_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm ixp ixdp425
|
2003-10-14 19:43:55 +00:00
|
|
|
|
2006-05-30 13:56:48 +00:00
|
|
|
ixdpg425_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm ixp ixdp425
|
2006-05-30 13:56:48 +00:00
|
|
|
|
2003-03-06 00:02:04 +00:00
|
|
|
lubbock_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm pxa lubbock
|
2003-03-06 00:02:04 +00:00
|
|
|
|
2006-05-02 05:51:46 +00:00
|
|
|
pleb2_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm pxa pleb2
|
2006-05-02 05:51:46 +00:00
|
|
|
|
2003-06-19 23:04:19 +00:00
|
|
|
logodl_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm pxa logodl
|
2003-06-19 23:04:19 +00:00
|
|
|
|
2007-01-18 15:05:47 +00:00
|
|
|
pdnb3_config \
|
2008-03-04 13:58:31 +00:00
|
|
|
scpu_config: unconfig
|
2007-08-01 22:48:45 +00:00
|
|
|
@mkdir -p $(obj)include
|
2007-01-18 15:05:47 +00:00
|
|
|
@if [ "$(findstring scpu_,$@)" ] ; then \
|
2008-03-04 13:58:31 +00:00
|
|
|
echo "#define CONFIG_SCPU" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... on SCPU board variant" ; \
|
2007-01-18 15:05:47 +00:00
|
|
|
fi
|
|
|
|
@$(MKCONFIG) -a pdnb3 arm ixp pdnb3 prodrive
|
2006-05-30 13:56:48 +00:00
|
|
|
|
2005-10-12 23:45:54 +00:00
|
|
|
pxa255_idp_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp
|
2005-10-12 23:45:54 +00:00
|
|
|
|
2009-07-01 18:40:41 +00:00
|
|
|
polaris_config \
|
2007-08-30 21:01:49 +00:00
|
|
|
trizepsiv_config : unconfig
|
2009-07-01 18:40:41 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@if [ "$(findstring polaris,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_POLARIS 1" >>$(obj)include/config.h ; \
|
|
|
|
fi;
|
|
|
|
@$(MKCONFIG) -a trizepsiv arm pxa trizepsiv
|
2007-08-30 21:01:49 +00:00
|
|
|
|
2003-04-05 00:53:31 +00:00
|
|
|
wepep250_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm pxa wepep250
|
2003-04-05 00:53:31 +00:00
|
|
|
|
2004-09-28 16:44:41 +00:00
|
|
|
xaeniax_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm pxa xaeniax
|
2004-09-28 16:44:41 +00:00
|
|
|
|
2004-03-23 20:18:25 +00:00
|
|
|
xm250_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm pxa xm250
|
2004-03-23 20:18:25 +00:00
|
|
|
|
2004-06-09 15:37:23 +00:00
|
|
|
xsengine_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm pxa xsengine
|
2004-06-09 15:37:23 +00:00
|
|
|
|
2006-02-07 19:04:48 +00:00
|
|
|
zylonite_config :
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm pxa zylonite
|
2006-02-07 19:04:48 +00:00
|
|
|
|
2005-01-09 23:16:25 +00:00
|
|
|
#########################################################################
|
|
|
|
## ARM1136 Systems
|
|
|
|
#########################################################################
|
|
|
|
|
2007-11-09 15:24:26 +00:00
|
|
|
apollon_config : unconfig
|
2009-12-05 23:26:19 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-01-17 07:43:25 +00:00
|
|
|
@echo "#define CONFIG_ONENAND_U_BOOT" > $(obj)include/config.h
|
2008-03-26 19:40:36 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm1136 apollon NULL omap24xx
|
2008-01-17 07:43:25 +00:00
|
|
|
@echo "CONFIG_ONENAND_U_BOOT = y" >> $(obj)include/config.mk
|
2007-11-09 15:24:26 +00:00
|
|
|
|
2008-03-26 19:41:09 +00:00
|
|
|
imx31_litekit_config : unconfig
|
2009-08-23 14:32:39 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm1136 imx31_litekit logicpd mx31
|
2008-03-26 19:41:09 +00:00
|
|
|
|
2009-02-24 09:44:02 +00:00
|
|
|
imx31_phycore_eet_config \
|
2008-03-26 19:41:17 +00:00
|
|
|
imx31_phycore_config : unconfig
|
2009-04-04 22:37:07 +00:00
|
|
|
@mkdir -p $(obj)include
|
2009-02-24 09:44:02 +00:00
|
|
|
@if [ -n "$(findstring _eet_,$@)" ]; then \
|
|
|
|
echo "#define CONFIG_IMX31_PHYCORE_EET" >> $(obj)include/config.h; \
|
|
|
|
fi
|
|
|
|
@$(MKCONFIG) -a imx31_phycore arm arm1136 imx31_phycore NULL mx31
|
2008-03-26 19:41:17 +00:00
|
|
|
|
2008-04-14 08:53:12 +00:00
|
|
|
mx31ads_config : unconfig
|
2008-08-12 23:40:09 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm1136 mx31ads freescale mx31
|
2008-04-14 08:53:12 +00:00
|
|
|
|
2009-07-04 08:31:24 +00:00
|
|
|
mx31pdk_config \
|
|
|
|
mx31pdk_nand_config : unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@if [ -n "$(findstring _nand_,$@)" ]; then \
|
|
|
|
echo "#define CONFIG_NAND_U_BOOT" >> $(obj)include/config.h; \
|
|
|
|
else \
|
|
|
|
echo "#define CONFIG_SKIP_LOWLEVEL_INIT" >> $(obj)include/config.h; \
|
|
|
|
echo "#define CONFIG_SKIP_RELOCATE_UBOOT" >> $(obj)include/config.h; \
|
|
|
|
fi
|
|
|
|
@$(MKCONFIG) -a mx31pdk arm arm1136 mx31pdk freescale mx31
|
2009-06-30 23:07:55 +00:00
|
|
|
|
2010-02-05 14:13:58 +00:00
|
|
|
mx51evk_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm_cortexa8 mx51evk freescale mx51
|
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
omap2420h4_config : unconfig
|
2009-08-23 14:32:38 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4 ti omap24xx
|
2008-07-15 20:22:44 +00:00
|
|
|
|
2009-02-09 23:22:31 +00:00
|
|
|
qong_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) arm arm1136 qong davedenx mx31
|
|
|
|
|
2008-08-30 22:39:47 +00:00
|
|
|
#########################################################################
|
|
|
|
## ARM1176 Systems
|
|
|
|
#########################################################################
|
|
|
|
smdk6400_noUSB_config \
|
|
|
|
smdk6400_config : unconfig
|
|
|
|
@mkdir -p $(obj)include $(obj)board/samsung/smdk6400
|
|
|
|
@mkdir -p $(obj)nand_spl/board/samsung/smdk6400
|
|
|
|
@echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
|
|
|
|
@if [ -z "$(findstring smdk6400_noUSB_config,$@)" ]; then \
|
|
|
|
echo "RAM_TEXT = 0x57e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
|
|
|
|
$(MKCONFIG) $(@:_config=) arm arm1176 smdk6400 samsung s3c64xx; \
|
|
|
|
else \
|
|
|
|
echo "RAM_TEXT = 0xc7e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
|
|
|
|
$(MKCONFIG) $(@:_noUSB_config=) arm arm1176 smdk6400 samsung s3c64xx; \
|
|
|
|
fi
|
|
|
|
@echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
|
|
|
|
|
2002-11-18 00:14:45 +00:00
|
|
|
#========================================================================
|
|
|
|
# i386
|
|
|
|
#========================================================================
|
|
|
|
#########################################################################
|
2003-03-06 21:55:29 +00:00
|
|
|
## AMD SC520 CDP
|
2002-11-18 00:14:45 +00:00
|
|
|
#########################################################################
|
2008-12-06 23:28:57 +00:00
|
|
|
eNET_config : unconfig
|
2008-12-06 23:29:00 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) i386 i386 eNET NULL sc520
|
2008-12-06 23:28:57 +00:00
|
|
|
|
2009-01-24 00:01:49 +00:00
|
|
|
sc520_cdp_config : unconfig
|
2008-12-06 23:29:00 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp NULL sc520
|
2009-01-24 00:01:49 +00:00
|
|
|
|
2003-05-31 18:35:21 +00:00
|
|
|
sc520_spunk_config : unconfig
|
2008-12-06 23:29:00 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk NULL sc520
|
2003-05-31 18:35:21 +00:00
|
|
|
|
|
|
|
sc520_spunk_rel_config : unconfig
|
2008-12-06 23:29:00 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk NULL sc520
|
2003-05-31 18:35:21 +00:00
|
|
|
|
2003-03-06 00:02:04 +00:00
|
|
|
#========================================================================
|
|
|
|
# MIPS
|
|
|
|
#========================================================================
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
2003-03-06 00:02:04 +00:00
|
|
|
## MIPS32 4Kc
|
|
|
|
#########################################################################
|
|
|
|
|
2003-08-17 18:55:18 +00:00
|
|
|
xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
|
|
|
|
|
|
|
|
incaip_100MHz_config \
|
|
|
|
incaip_133MHz_config \
|
|
|
|
incaip_150MHz_config \
|
|
|
|
incaip_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2003-08-17 18:55:18 +00:00
|
|
|
@[ -z "$(findstring _100MHz,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with 100MHz system clock" ; \
|
2003-08-17 18:55:18 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring _133MHz,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with 133MHz system clock" ; \
|
2003-08-17 18:55:18 +00:00
|
|
|
}
|
|
|
|
@[ -z "$(findstring _150MHz,$@)" ] || \
|
2006-09-01 17:49:50 +00:00
|
|
|
{ echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
$(XECHO) "... with 150MHz system clock" ; \
|
2003-08-17 18:55:18 +00:00
|
|
|
}
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) -a $(call xtract_incaip,$@) mips mips incaip
|
2003-08-17 18:55:18 +00:00
|
|
|
|
2004-02-07 01:27:10 +00:00
|
|
|
tb0229_config: unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) mips mips tb0229
|
2004-02-07 01:27:10 +00:00
|
|
|
|
2009-01-21 16:25:01 +00:00
|
|
|
vct_premium_config \
|
|
|
|
vct_premium_small_config \
|
|
|
|
vct_premium_onenand_config \
|
|
|
|
vct_premium_onenand_small_config \
|
|
|
|
vct_platinum_config \
|
|
|
|
vct_platinum_small_config \
|
|
|
|
vct_platinum_onenand_config \
|
|
|
|
vct_platinum_onenand_small_config \
|
|
|
|
vct_platinumavc_config \
|
|
|
|
vct_platinumavc_small_config \
|
|
|
|
vct_platinumavc_onenand_config \
|
|
|
|
vct_platinumavc_onenand_small_config: unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@if [ "$(findstring _premium,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_VCT_PREMIUM" > $(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... on Premium board variant" ; \
|
|
|
|
fi
|
|
|
|
@if [ "$(findstring _platinum_,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_VCT_PLATINUM" > $(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... on Platinum board variant" ; \
|
|
|
|
fi
|
|
|
|
@if [ "$(findstring _platinumavc,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_VCT_PLATINUMAVC" > $(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... on PlatinumAVC board variant" ; \
|
|
|
|
fi
|
|
|
|
@if [ "$(findstring _onenand,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_VCT_ONENAND" >> $(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... on OneNAND board variant" ; \
|
|
|
|
fi
|
|
|
|
@if [ "$(findstring _small,$@)" ] ; then \
|
|
|
|
echo "#define CONFIG_VCT_SMALL_IMAGE" >> $(obj)include/config.h ; \
|
|
|
|
$(XECHO) "... stripped down image variant" ; \
|
|
|
|
fi
|
|
|
|
@$(MKCONFIG) -a vct mips mips vct micronas
|
|
|
|
|
2004-05-29 16:53:29 +00:00
|
|
|
#########################################################################
|
|
|
|
## MIPS32 AU1X00
|
|
|
|
#########################################################################
|
2008-07-15 20:22:44 +00:00
|
|
|
|
2006-11-30 17:02:20 +00:00
|
|
|
dbau1000_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-08 23:06:09 +00:00
|
|
|
@echo "#define CONFIG_DBAU1000 1" >$(obj)include/config.h
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
|
2004-05-29 16:53:29 +00:00
|
|
|
|
2006-11-30 17:02:20 +00:00
|
|
|
dbau1100_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-08 23:06:09 +00:00
|
|
|
@echo "#define CONFIG_DBAU1100 1" >$(obj)include/config.h
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
|
2004-05-29 16:53:29 +00:00
|
|
|
|
2006-11-30 17:02:20 +00:00
|
|
|
dbau1500_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-08 23:06:09 +00:00
|
|
|
@echo "#define CONFIG_DBAU1500 1" >$(obj)include/config.h
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
|
2004-05-29 16:53:29 +00:00
|
|
|
|
2005-01-09 22:28:56 +00:00
|
|
|
dbau1550_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-08 23:06:09 +00:00
|
|
|
@echo "#define CONFIG_DBAU1550 1" >$(obj)include/config.h
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
|
2005-01-09 22:28:56 +00:00
|
|
|
|
|
|
|
dbau1550_el_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-08 23:06:09 +00:00
|
|
|
@echo "#define CONFIG_DBAU1550 1" >$(obj)include/config.h
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
|
2005-01-09 22:28:56 +00:00
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
gth2_config : unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_GTH2 1" >$(obj)include/config.h
|
|
|
|
@$(MKCONFIG) -a gth2 mips mips gth2
|
|
|
|
|
2006-11-30 17:02:20 +00:00
|
|
|
pb1000_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-08 23:06:09 +00:00
|
|
|
@echo "#define CONFIG_PB1000 1" >$(obj)include/config.h
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) -a pb1x00 mips mips pb1x00
|
2005-09-24 22:53:22 +00:00
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
qemu_mips_config : unconfig
|
2008-01-16 17:27:51 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-08 23:06:09 +00:00
|
|
|
@echo "#define CONFIG_QEMU_MIPS 1" >$(obj)include/config.h
|
2008-01-16 17:27:51 +00:00
|
|
|
@$(MKCONFIG) -a qemu-mips mips mips qemu-mips
|
|
|
|
|
2003-08-17 18:55:18 +00:00
|
|
|
#########################################################################
|
|
|
|
## MIPS64 5Kc
|
|
|
|
#########################################################################
|
2003-03-06 00:02:04 +00:00
|
|
|
|
2003-04-05 00:53:31 +00:00
|
|
|
purple_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) mips mips purple
|
2003-03-06 00:02:04 +00:00
|
|
|
|
2003-10-08 23:26:14 +00:00
|
|
|
#========================================================================
|
|
|
|
# Nios
|
|
|
|
#========================================================================
|
|
|
|
|
2004-10-10 21:27:30 +00:00
|
|
|
#########################################################################
|
|
|
|
## Nios-II
|
|
|
|
#########################################################################
|
|
|
|
|
2006-06-08 17:37:39 +00:00
|
|
|
EP1C20_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera
|
2006-06-08 17:37:39 +00:00
|
|
|
|
|
|
|
EP1S10_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera
|
2006-06-08 17:37:39 +00:00
|
|
|
|
|
|
|
EP1S40_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera
|
2006-06-08 17:37:39 +00:00
|
|
|
|
2004-10-10 21:27:30 +00:00
|
|
|
PK1C20_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent
|
2004-10-10 21:27:30 +00:00
|
|
|
|
|
|
|
PCI5441_config : unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
@$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent
|
2003-10-08 23:26:14 +00:00
|
|
|
|
2010-04-21 00:40:59 +00:00
|
|
|
# nios2 generic boards
|
|
|
|
NIOS2_GENERIC = nios2-generic
|
|
|
|
|
|
|
|
$(NIOS2_GENERIC:%=%_config) : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) nios2 nios2 nios2-generic altera
|
|
|
|
|
2004-04-18 21:13:41 +00:00
|
|
|
#========================================================================
|
|
|
|
## Microblaze
|
2008-07-15 20:22:44 +00:00
|
|
|
#========================================================================
|
2004-04-18 21:13:41 +00:00
|
|
|
|
2008-12-19 12:14:05 +00:00
|
|
|
microblaze-generic_config: unconfig
|
2007-08-01 22:48:45 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-12-19 12:14:05 +00:00
|
|
|
@$(MKCONFIG) -a $(@:_config=) microblaze microblaze microblaze-generic xilinx
|
2007-03-11 12:48:24 +00:00
|
|
|
|
2008-02-05 00:26:55 +00:00
|
|
|
#========================================================================
|
|
|
|
# Blackfin
|
|
|
|
#========================================================================
|
2006-03-12 01:10:00 +00:00
|
|
|
|
2008-02-05 00:26:55 +00:00
|
|
|
# Analog Devices boards
|
2008-10-13 01:32:52 +00:00
|
|
|
BFIN_BOARDS = bf518f-ezbrd bf526-ezbrd bf527-ezkit bf533-ezkit bf533-stamp \
|
2008-10-13 03:08:03 +00:00
|
|
|
bf537-pnav bf537-stamp bf538f-ezkit bf548-ezkit bf561-ezkit
|
2006-03-12 01:10:00 +00:00
|
|
|
|
2008-10-13 01:36:22 +00:00
|
|
|
# Bluetechnix tinyboards
|
2010-01-13 14:04:53 +00:00
|
|
|
BFIN_BOARDS += cm-bf527 cm-bf533 cm-bf537e cm-bf537u cm-bf548 cm-bf561 \
|
|
|
|
tcm-bf518 tcm-bf537
|
2008-10-13 01:36:22 +00:00
|
|
|
|
2008-10-13 03:16:52 +00:00
|
|
|
# Misc third party boards
|
2010-03-24 21:41:33 +00:00
|
|
|
BFIN_BOARDS += bf537-minotaur bf537-srv1 bf561-acvilon blackstamp ip04
|
2008-10-13 03:16:52 +00:00
|
|
|
|
2009-01-19 03:44:17 +00:00
|
|
|
# I-SYST Micromodule
|
|
|
|
BFIN_BOARDS += ibf-dsp561
|
|
|
|
|
2008-02-05 00:26:55 +00:00
|
|
|
$(BFIN_BOARDS:%=%_config) : unconfig
|
2008-03-30 19:46:13 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) blackfin blackfin $(@:_config=)
|
2006-03-12 01:10:00 +00:00
|
|
|
|
2009-12-10 09:19:21 +00:00
|
|
|
bf527-ezkit-v2_config : unconfig
|
|
|
|
@$(MKCONFIG) -t BF527_EZKIT_REV_2_1 \
|
|
|
|
bf527-ezkit blackfin blackfin bf527-ezkit
|
|
|
|
|
2006-10-25 13:48:59 +00:00
|
|
|
#========================================================================
|
|
|
|
# AVR32
|
|
|
|
#========================================================================
|
2008-07-15 20:22:44 +00:00
|
|
|
|
|
|
|
atngw100_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) avr32 at32ap atngw100 atmel at32ap700x
|
2006-10-25 13:48:59 +00:00
|
|
|
|
|
|
|
atstk1002_config : unconfig
|
2007-10-29 12:09:56 +00:00
|
|
|
@$(MKCONFIG) $(@:_config=) avr32 at32ap atstk1000 atmel at32ap700x
|
2006-10-25 13:48:59 +00:00
|
|
|
|
2007-10-29 12:02:54 +00:00
|
|
|
atstk1003_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) avr32 at32ap atstk1000 atmel at32ap700x
|
|
|
|
|
2007-10-29 12:02:54 +00:00
|
|
|
atstk1004_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) avr32 at32ap atstk1000 atmel at32ap700x
|
2006-10-25 13:48:59 +00:00
|
|
|
|
2007-11-22 11:14:11 +00:00
|
|
|
atstk1006_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) avr32 at32ap atstk1000 atmel at32ap700x
|
|
|
|
|
avr32: add support for EarthLCD Favr-32 board
This patch adds support for the Favr-32 board made by EarthLCD.
This kit, which is also called ezLCD-101 when running with EarthLCD firmware,
has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash,
Ethernet, audio out, USB device, SD-card slot, USART and various other
connectors for cennecting stuff to SPI, I2C, GPIO, etc.
Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
2008-08-06 12:42:13 +00:00
|
|
|
favr-32-ezkit_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) avr32 at32ap favr-32-ezkit earthlcd at32ap700x
|
|
|
|
|
2008-06-23 11:57:52 +00:00
|
|
|
hammerhead_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) avr32 at32ap hammerhead miromico at32ap700x
|
|
|
|
|
2008-07-30 12:07:27 +00:00
|
|
|
mimc200_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) avr32 at32ap mimc200 mimc at32ap700x
|
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
#========================================================================
|
|
|
|
# SH3 (SuperH)
|
|
|
|
#========================================================================
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2008-08-31 14:02:04 +00:00
|
|
|
#########################################################################
|
|
|
|
## sh2 (Renesas SuperH)
|
|
|
|
#########################################################################
|
|
|
|
rsk7203_config: unconfig
|
2008-12-30 01:16:03 +00:00
|
|
|
@mkdir -p $(obj)include
|
2009-02-10 16:44:45 +00:00
|
|
|
@echo "#define CONFIG_RSK7203 1" > $(obj)include/config.h
|
2008-11-11 21:20:15 +00:00
|
|
|
@$(MKCONFIG) -a $(@:_config=) sh sh2 rsk7203 renesas
|
2008-08-31 14:02:04 +00:00
|
|
|
|
2007-12-03 13:58:50 +00:00
|
|
|
#########################################################################
|
|
|
|
## sh3 (Renesas SuperH)
|
|
|
|
#########################################################################
|
2008-07-15 20:22:44 +00:00
|
|
|
|
2008-03-10 10:37:10 +00:00
|
|
|
mpr2_config: unconfig
|
2008-07-06 22:45:03 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_MPR2 1" > $(obj)include/config.h
|
2008-03-10 10:37:10 +00:00
|
|
|
@$(MKCONFIG) -a $(@:_config=) sh sh3 mpr2
|
|
|
|
|
2007-12-03 13:58:50 +00:00
|
|
|
ms7720se_config: unconfig
|
2008-07-06 22:45:03 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_MS7720SE 1" > $(obj)include/config.h
|
2008-03-02 15:12:31 +00:00
|
|
|
@$(MKCONFIG) -a $(@:_config=) sh sh3 ms7720se
|
2007-12-03 13:58:50 +00:00
|
|
|
|
2007-05-13 12:01:03 +00:00
|
|
|
#########################################################################
|
|
|
|
## sh4 (Renesas SuperH)
|
|
|
|
#########################################################################
|
2008-07-15 20:22:44 +00:00
|
|
|
|
|
|
|
MigoR_config : unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_MIGO_R 1" > $(obj)include/config.h
|
2008-11-11 21:20:15 +00:00
|
|
|
@$(MKCONFIG) -a $(@:_config=) sh sh4 MigoR renesas
|
2008-07-15 20:22:44 +00:00
|
|
|
|
2007-05-13 12:01:03 +00:00
|
|
|
ms7750se_config: unconfig
|
2008-07-06 22:45:03 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-08 23:06:09 +00:00
|
|
|
@echo "#define CONFIG_MS7750SE 1" > $(obj)include/config.h
|
2008-03-02 15:12:31 +00:00
|
|
|
@$(MKCONFIG) -a $(@:_config=) sh sh4 ms7750se
|
2007-05-13 12:01:03 +00:00
|
|
|
|
2008-03-04 13:58:31 +00:00
|
|
|
ms7722se_config : unconfig
|
2008-07-06 22:45:03 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-03-08 23:06:09 +00:00
|
|
|
@echo "#define CONFIG_MS7722SE 1" > $(obj)include/config.h
|
2008-03-02 15:12:31 +00:00
|
|
|
@$(MKCONFIG) -a $(@:_config=) sh sh4 ms7722se
|
2006-10-25 13:48:59 +00:00
|
|
|
|
2008-07-15 20:22:44 +00:00
|
|
|
r2dplus_config : unconfig
|
2008-07-06 22:45:03 +00:00
|
|
|
@mkdir -p $(obj)include
|
2008-07-15 20:22:44 +00:00
|
|
|
@echo "#define CONFIG_R2DPLUS 1" > $(obj)include/config.h
|
2008-10-24 01:39:44 +00:00
|
|
|
@$(MKCONFIG) -a $(@:_config=) sh sh4 r2dplus renesas
|
2008-01-25 11:46:36 +00:00
|
|
|
|
2008-03-11 03:55:12 +00:00
|
|
|
r7780mp_config: unconfig
|
2008-07-06 22:45:03 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_R7780MP 1" > $(obj)include/config.h
|
2008-10-24 01:34:21 +00:00
|
|
|
@$(MKCONFIG) -a $(@:_config=) sh sh4 r7780mp renesas
|
2008-03-11 03:55:12 +00:00
|
|
|
|
2008-06-09 04:39:57 +00:00
|
|
|
sh7763rdp_config : unconfig
|
2008-07-06 22:45:03 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_SH7763RDP 1" > $(obj)include/config.h
|
2008-10-24 01:36:13 +00:00
|
|
|
@$(MKCONFIG) -a $(@:_config=) sh sh4 sh7763rdp renesas
|
2008-06-09 04:39:57 +00:00
|
|
|
|
2009-03-03 06:11:17 +00:00
|
|
|
xtract_sh7785lcr = $(subst _32bit,,$(subst _config,,$1))
|
|
|
|
sh7785lcr_32bit_config \
|
2008-08-31 13:45:08 +00:00
|
|
|
sh7785lcr_config : unconfig
|
2009-06-04 10:06:43 +00:00
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@mkdir -p $(obj)board/renesas/sh7785lcr
|
|
|
|
@echo "#define CONFIG_SH7785LCR 1" > $(obj)include/config.h
|
2009-03-03 06:11:17 +00:00
|
|
|
@if [ "$(findstring 32bit, $@)" ] ; then \
|
|
|
|
echo "#define CONFIG_SH_32BIT 1" >> $(obj)include/config.h ; \
|
|
|
|
echo "TEXT_BASE = 0x8ff80000" > \
|
|
|
|
$(obj)board/renesas/sh7785lcr/config.tmp ; \
|
|
|
|
$(XECHO) " ... enable 32-Bit Address Extended Mode" ; \
|
|
|
|
fi
|
|
|
|
@$(MKCONFIG) -a $(call xtract_sh7785lcr,$@) sh sh4 sh7785lcr renesas
|
2008-08-31 13:45:08 +00:00
|
|
|
|
2008-08-22 08:39:09 +00:00
|
|
|
ap325rxa_config : unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_AP325RXA 1" > $(obj)include/config.h
|
2008-10-24 01:32:14 +00:00
|
|
|
@$(MKCONFIG) -a $(@:_config=) sh sh4 ap325rxa renesas
|
2008-08-22 08:39:09 +00:00
|
|
|
|
2009-06-25 07:31:26 +00:00
|
|
|
espt_config : unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@echo "#define CONFIG_ESPT 1" > $(obj)include/config.h
|
|
|
|
@$(MKCONFIG) -a $(@:_config=) sh sh4 espt
|
|
|
|
|
2008-03-28 08:47:00 +00:00
|
|
|
#========================================================================
|
|
|
|
# SPARC
|
|
|
|
#========================================================================
|
2008-07-15 20:22:44 +00:00
|
|
|
|
2008-03-26 21:51:29 +00:00
|
|
|
#########################################################################
|
|
|
|
## LEON3
|
|
|
|
#########################################################################
|
2008-03-28 08:47:00 +00:00
|
|
|
|
2008-03-26 22:26:48 +00:00
|
|
|
# Gaisler GR-XC3S-1500 board
|
|
|
|
gr_xc3s_1500_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) sparc leon3 gr_xc3s_1500 gaisler
|
|
|
|
|
2008-03-26 22:38:48 +00:00
|
|
|
# Gaisler GR-CPCI-AX2000 board, a General purpose FPGA-AX system
|
|
|
|
gr_cpci_ax2000_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) sparc leon3 gr_cpci_ax2000 gaisler
|
|
|
|
|
2008-03-26 22:34:47 +00:00
|
|
|
# Gaisler GRLIB template design (GPL SPARC/LEON3) for Altera NIOS
|
|
|
|
# Development board Stratix II edition, FPGA Device EP2S60.
|
|
|
|
gr_ep2s60_config: unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) sparc leon3 gr_ep2s60 gaisler
|
|
|
|
|
2008-03-28 09:06:52 +00:00
|
|
|
# Gaisler LEON3 GRSIM simulator
|
|
|
|
grsim_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) sparc leon3 grsim gaisler
|
|
|
|
|
2008-03-28 09:00:33 +00:00
|
|
|
#########################################################################
|
|
|
|
## LEON2
|
|
|
|
#########################################################################
|
|
|
|
|
2008-03-28 09:20:43 +00:00
|
|
|
# Gaisler LEON2 GRSIM simulator
|
|
|
|
grsim_leon2_config : unconfig
|
|
|
|
@$(MKCONFIG) $(@:_config=) sparc leon2 grsim_leon2 gaisler
|
|
|
|
|
2006-03-12 01:10:00 +00:00
|
|
|
#########################################################################
|
2003-04-05 00:53:31 +00:00
|
|
|
#########################################################################
|
|
|
|
#########################################################################
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
clean:
|
2009-07-10 16:03:19 +00:00
|
|
|
@rm -f $(obj)examples/standalone/82559_eeprom \
|
2009-09-07 21:52:31 +00:00
|
|
|
$(obj)examples/standalone/atmel_df_pow2 \
|
2009-07-10 16:03:19 +00:00
|
|
|
$(obj)examples/standalone/eepro100_eeprom \
|
|
|
|
$(obj)examples/standalone/hello_world \
|
|
|
|
$(obj)examples/standalone/interrupt \
|
|
|
|
$(obj)examples/standalone/mem_to_mem_idma2intr \
|
|
|
|
$(obj)examples/standalone/sched \
|
|
|
|
$(obj)examples/standalone/smc91111_eeprom \
|
|
|
|
$(obj)examples/standalone/test_burst \
|
|
|
|
$(obj)examples/standalone/timer
|
2009-07-21 00:02:21 +00:00
|
|
|
@rm -f $(obj)examples/api/demo{,.bin}
|
2008-03-04 13:58:31 +00:00
|
|
|
@rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \
|
|
|
|
$(obj)tools/env/{fw_printenv,fw_setenv} \
|
|
|
|
$(obj)tools/envcrc \
|
|
|
|
$(obj)tools/gdb/{astest,gdbcont,gdbsend} \
|
|
|
|
$(obj)tools/gen_eth_addr $(obj)tools/img2srec \
|
|
|
|
$(obj)tools/mkimage $(obj)tools/mpc86x_clk \
|
|
|
|
$(obj)tools/ncb $(obj)tools/ubsha1
|
|
|
|
@rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \
|
|
|
|
$(obj)board/netstar/{eeprom,crcek,crcit,*.srec,*.bin} \
|
|
|
|
$(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom \
|
2009-02-22 00:17:47 +00:00
|
|
|
$(obj)board/armltd/{integratorap,integratorcp}/u-boot.lds \
|
2010-04-13 03:28:04 +00:00
|
|
|
$(obj)arch/blackfin/lib/u-boot.lds \
|
2009-08-17 12:00:53 +00:00
|
|
|
$(obj)u-boot.lds \
|
2010-04-13 03:28:13 +00:00
|
|
|
$(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs]
|
2008-04-20 22:39:38 +00:00
|
|
|
@rm -f $(obj)include/bmp_logo.h
|
2009-08-17 12:00:53 +00:00
|
|
|
@rm -f $(obj)nand_spl/{u-boot.lds,u-boot-spl,u-boot-spl.map,System.map}
|
2009-09-22 00:05:00 +00:00
|
|
|
@rm -f $(obj)onenand_ipl/onenand-{ipl,ipl.bin,ipl.map}
|
|
|
|
@rm -f $(ONENAND_BIN)
|
2009-08-17 12:00:53 +00:00
|
|
|
@rm -f $(obj)onenand_ipl/u-boot.lds
|
2009-07-21 00:02:21 +00:00
|
|
|
@rm -f $(TIMESTAMP_FILE) $(VERSION_FILE)
|
2008-01-12 23:59:21 +00:00
|
|
|
@find $(OBJTREE) -type f \
|
2002-11-02 23:17:16 +00:00
|
|
|
\( -name 'core' -o -name '*.bak' -o -name '*~' \
|
2009-03-13 23:54:26 +00:00
|
|
|
-o -name '*.o' -o -name '*.a' -o -name '*.exe' \) -print \
|
2002-11-02 23:17:16 +00:00
|
|
|
| xargs rm -f
|
|
|
|
|
|
|
|
clobber: clean
|
2008-01-12 23:59:21 +00:00
|
|
|
@find $(OBJTREE) -type f \( -name .depend \
|
2004-06-09 17:34:58 +00:00
|
|
|
-o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
|
|
|
|
-print0 \
|
|
|
|
| xargs -0 rm -f
|
2008-02-29 03:46:05 +00:00
|
|
|
@rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \
|
2008-03-02 21:45:33 +00:00
|
|
|
$(obj)cscope.* $(obj)*.*~
|
2008-01-12 23:59:21 +00:00
|
|
|
@rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL)
|
2009-09-07 09:35:02 +00:00
|
|
|
@rm -f $(obj)u-boot.kwb
|
2010-02-05 14:13:58 +00:00
|
|
|
@rm -f $(obj)u-boot.imx
|
2009-03-13 23:54:47 +00:00
|
|
|
@rm -f $(obj)tools/{env/crc32.c,inca-swap-bytes}
|
2010-04-15 14:07:28 +00:00
|
|
|
@rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c
|
2008-01-12 23:59:21 +00:00
|
|
|
@rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
|
2008-08-16 16:54:27 +00:00
|
|
|
@[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f
|
|
|
|
@[ ! -d $(obj)onenand_ipl ] || find $(obj)onenand_ipl -name "*" -type l -print | xargs rm -f
|
2006-09-01 17:49:50 +00:00
|
|
|
|
|
|
|
ifeq ($(OBJTREE),$(SRCTREE))
|
2002-11-02 23:17:16 +00:00
|
|
|
mrproper \
|
|
|
|
distclean: clobber unconfig
|
2006-09-01 17:49:50 +00:00
|
|
|
else
|
|
|
|
mrproper \
|
|
|
|
distclean: clobber unconfig
|
2008-01-12 23:59:21 +00:00
|
|
|
rm -rf $(obj)*
|
2006-09-01 17:49:50 +00:00
|
|
|
endif
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
backup:
|
|
|
|
F=`basename $(TOPDIR)` ; cd .. ; \
|
|
|
|
gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
|
|
|
|
|
|
|
|
#########################################################################
|