wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1 | # |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2 | # (C) Copyright 2000-2008 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
| 5 | # See file CREDITS for list of people who contributed to this |
| 6 | # project. |
| 7 | # |
| 8 | # This program is free software; you can redistribute it and/or |
| 9 | # modify it under the terms of the GNU General Public License as |
Wolfgang Denk | 45a212c | 2006-07-19 17:52:30 +0200 | [diff] [blame] | 10 | # published by the Free Software Foundatio; either version 2 of |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 11 | # the License, or (at your option) any later version. |
| 12 | # |
| 13 | # This program is distributed in the hope that it will be useful, |
| 14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 16 | # GNU General Public License for more details. |
| 17 | # |
| 18 | # You should have received a copy of the GNU General Public License |
| 19 | # along with this program; if not, write to the Free Software |
| 20 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | # MA 02111-1307 USA |
| 22 | # |
| 23 | |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 24 | VERSION = 1 |
Wolfgang Denk | 754bac4 | 2007-09-10 20:42:31 +0200 | [diff] [blame] | 25 | PATCHLEVEL = 3 |
Wolfgang Denk | fd7531c | 2008-04-26 01:55:00 +0200 | [diff] [blame] | 26 | SUBLEVEL = 3 |
Wolfgang Denk | 180a90a | 2008-05-19 12:47:11 +0200 | [diff] [blame] | 27 | EXTRAVERSION = |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 28 | U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 29 | VERSION_FILE = $(obj)include/version_autogenerated.h |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 30 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 31 | HOSTARCH := $(shell uname -m | \ |
| 32 | sed -e s/i.86/i386/ \ |
| 33 | -e s/sun4u/sparc64/ \ |
| 34 | -e s/arm.*/arm/ \ |
| 35 | -e s/sa110/arm/ \ |
| 36 | -e s/powerpc/ppc/ \ |
Kumar Gala | a228064 | 2007-08-08 04:14:28 -0500 | [diff] [blame] | 37 | -e s/ppc64/ppc/ \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 38 | -e s/macppc/ppc/) |
| 39 | |
Wolfgang Denk | f9d77ed | 2005-08-12 23:23:46 +0200 | [diff] [blame] | 40 | HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 41 | sed -e 's/\(cygwin\).*/cygwin/') |
| 42 | |
Wolfgang Denk | f9d77ed | 2005-08-12 23:23:46 +0200 | [diff] [blame] | 43 | export HOSTARCH HOSTOS |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 44 | |
| 45 | # Deal with colliding definitions from tcsh etc. |
| 46 | VENDOR= |
| 47 | |
| 48 | ######################################################################### |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 49 | # Allow for silent builds |
| 50 | ifeq (,$(findstring s,$(MAKEFLAGS))) |
| 51 | XECHO = echo |
| 52 | else |
| 53 | XECHO = : |
| 54 | endif |
| 55 | |
| 56 | ######################################################################### |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 57 | # |
| 58 | # U-boot build supports producing a object files to the separate external |
| 59 | # directory. Two use cases are supported: |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 60 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 61 | # 1) Add O= to the make command line |
| 62 | # 'make O=/tmp/build all' |
| 63 | # |
| 64 | # 2) Set environement variable BUILD_DIR to point to the desired location |
| 65 | # 'export BUILD_DIR=/tmp/build' |
| 66 | # 'make' |
| 67 | # |
| 68 | # The second approach can also be used with a MAKEALL script |
| 69 | # 'export BUILD_DIR=/tmp/build' |
| 70 | # './MAKEALL' |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 71 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 72 | # Command line 'O=' setting overrides BUILD_DIR environent variable. |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 73 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 74 | # When none of the above methods is used the local build is performed and |
| 75 | # the object files are placed in the source directory. |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 76 | # |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 77 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 78 | ifdef O |
| 79 | ifeq ("$(origin O)", "command line") |
| 80 | BUILD_DIR := $(O) |
| 81 | endif |
| 82 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 83 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 84 | ifneq ($(BUILD_DIR),) |
| 85 | saved-output := $(BUILD_DIR) |
Marian Balakowicz | 4f0645e | 2006-09-07 12:05:53 +0200 | [diff] [blame] | 86 | |
| 87 | # Attempt to create a output directory. |
| 88 | $(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR}) |
| 89 | |
Stefan Roese | a73c8db | 2006-09-12 08:49:07 +0200 | [diff] [blame] | 90 | # Verify if it was successful. |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 91 | BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd) |
| 92 | $(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist)) |
| 93 | endif # ifneq ($(BUILD_DIR),) |
| 94 | |
| 95 | OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR)) |
| 96 | SRCTREE := $(CURDIR) |
| 97 | TOPDIR := $(SRCTREE) |
| 98 | LNDIR := $(OBJTREE) |
| 99 | export TOPDIR SRCTREE OBJTREE |
| 100 | |
| 101 | MKCONFIG := $(SRCTREE)/mkconfig |
| 102 | export MKCONFIG |
| 103 | |
| 104 | ifneq ($(OBJTREE),$(SRCTREE)) |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 105 | REMOTE_BUILD := 1 |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 106 | export REMOTE_BUILD |
| 107 | endif |
| 108 | |
| 109 | # $(obj) and (src) are defined in config.mk but here in main Makefile |
| 110 | # we also need them before config.mk is included which is the case for |
| 111 | # some targets like unconfig, clean, clobber, distclean, etc. |
| 112 | ifneq ($(OBJTREE),$(SRCTREE)) |
| 113 | obj := $(OBJTREE)/ |
| 114 | src := $(SRCTREE)/ |
| 115 | else |
| 116 | obj := |
| 117 | src := |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 118 | endif |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 119 | export obj src |
| 120 | |
Wolfgang Denk | 5013c09 | 2008-03-02 22:45:33 +0100 | [diff] [blame] | 121 | # Make sure CDPATH settings don't interfere |
| 122 | unexport CDPATH |
| 123 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 124 | ######################################################################### |
| 125 | |
Kumar Gala | f8f9dc9 | 2008-03-31 11:59:27 -0500 | [diff] [blame] | 126 | ifeq ($(ARCH),powerpc) |
| 127 | ARCH = ppc |
| 128 | endif |
| 129 | |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 130 | ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk)) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 131 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 132 | # load ARCH, BOARD, and CPU configuration |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 133 | include $(obj)include/config.mk |
wdenk | 1d9f410 | 2004-10-09 22:21:29 +0000 | [diff] [blame] | 134 | export ARCH CPU BOARD VENDOR SOC |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 135 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 136 | ifndef CROSS_COMPILE |
Wolfgang Denk | a5284ef | 2007-03-06 18:01:47 +0100 | [diff] [blame] | 137 | ifeq ($(HOSTARCH),$(ARCH)) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 138 | CROSS_COMPILE = |
| 139 | else |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 140 | ifeq ($(ARCH),ppc) |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 141 | CROSS_COMPILE = ppc_8xx- |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 142 | endif |
| 143 | ifeq ($(ARCH),arm) |
wdenk | dc7c9a1 | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 144 | CROSS_COMPILE = arm-linux- |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 145 | endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 146 | ifeq ($(ARCH),i386) |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 147 | CROSS_COMPILE = i386-linux- |
| 148 | endif |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 149 | ifeq ($(ARCH),mips) |
| 150 | CROSS_COMPILE = mips_4KC- |
| 151 | endif |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 152 | ifeq ($(ARCH),nios) |
| 153 | CROSS_COMPILE = nios-elf- |
| 154 | endif |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 155 | ifeq ($(ARCH),nios2) |
| 156 | CROSS_COMPILE = nios2-elf- |
| 157 | endif |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 158 | ifeq ($(ARCH),m68k) |
| 159 | CROSS_COMPILE = m68k-elf- |
| 160 | endif |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 161 | ifeq ($(ARCH),microblaze) |
| 162 | CROSS_COMPILE = mb- |
| 163 | endif |
Wolfgang Denk | 0afe519 | 2006-03-12 02:10:00 +0100 | [diff] [blame] | 164 | ifeq ($(ARCH),blackfin) |
Aubrey.Li | ef26a08 | 2007-03-09 13:40:56 +0800 | [diff] [blame] | 165 | CROSS_COMPILE = bfin-uclinux- |
Wolfgang Denk | 0afe519 | 2006-03-12 02:10:00 +0100 | [diff] [blame] | 166 | endif |
Wolfgang Denk | 7b64fef | 2006-10-24 14:21:16 +0200 | [diff] [blame] | 167 | ifeq ($(ARCH),avr32) |
Haavard Skinnemoen | 5374b36 | 2006-11-18 17:24:31 +0100 | [diff] [blame] | 168 | CROSS_COMPILE = avr32-linux- |
Wolfgang Denk | 7b64fef | 2006-10-24 14:21:16 +0200 | [diff] [blame] | 169 | endif |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 170 | ifeq ($(ARCH),sh) |
| 171 | CROSS_COMPILE = sh4-linux- |
Daniel Hellstrom | c2f02da | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 172 | endif |
| 173 | ifeq ($(ARCH),sparc) |
| 174 | CROSS_COMPILE = sparc-elf- |
| 175 | endif # sparc |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 176 | endif # HOSTARCH,ARCH |
| 177 | endif # CROSS_COMPILE |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 178 | |
| 179 | export CROSS_COMPILE |
| 180 | |
Wolfgang Denk | 92b197f | 2006-03-12 01:37:50 +0100 | [diff] [blame] | 181 | # load other configuration |
| 182 | include $(TOPDIR)/config.mk |
| 183 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 184 | ######################################################################### |
| 185 | # U-Boot objects....order is important (i.e. start must be first) |
| 186 | |
wdenk | 9fd5e31 | 2003-12-07 23:55:12 +0000 | [diff] [blame] | 187 | OBJS = cpu/$(CPU)/start.o |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 188 | ifeq ($(CPU),i386) |
wdenk | 9fd5e31 | 2003-12-07 23:55:12 +0000 | [diff] [blame] | 189 | OBJS += cpu/$(CPU)/start16.o |
| 190 | OBJS += cpu/$(CPU)/reset.o |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 191 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 192 | ifeq ($(CPU),ppc4xx) |
wdenk | 9fd5e31 | 2003-12-07 23:55:12 +0000 | [diff] [blame] | 193 | OBJS += cpu/$(CPU)/resetvec.o |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 194 | endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 195 | ifeq ($(CPU),mpc85xx) |
| 196 | OBJS += cpu/$(CPU)/resetvec.o |
| 197 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 198 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 199 | OBJS := $(addprefix $(obj),$(OBJS)) |
| 200 | |
wdenk | 9fd5e31 | 2003-12-07 23:55:12 +0000 | [diff] [blame] | 201 | LIBS = lib_generic/libgeneric.a |
Kim Phillips | 7608d75 | 2007-08-21 17:00:17 -0500 | [diff] [blame] | 202 | LIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \ |
| 203 | "board/$(VENDOR)/common/lib$(VENDOR).a"; fi) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 204 | LIBS += cpu/$(CPU)/lib$(CPU).a |
wdenk | 1d9f410 | 2004-10-09 22:21:29 +0000 | [diff] [blame] | 205 | ifdef SOC |
| 206 | LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a |
| 207 | endif |
Stefan Roese | 323bfa8 | 2007-04-23 12:00:22 +0200 | [diff] [blame] | 208 | ifeq ($(CPU),ixp) |
| 209 | LIBS += cpu/ixp/npe/libnpe.a |
| 210 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 211 | LIBS += lib_$(ARCH)/lib$(ARCH).a |
wdenk | 518e2e1 | 2004-03-25 14:59:05 +0000 | [diff] [blame] | 212 | LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \ |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 213 | fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 214 | LIBS += net/libnet.a |
| 215 | LIBS += disk/libdisk.a |
Jason Jin | 0f460a1 | 2007-07-13 12:14:58 +0800 | [diff] [blame] | 216 | LIBS += drivers/bios_emulator/libatibiosemu.a |
Jean-Christophe PLAGNIOL-VILLARD | 33daf5b | 2007-11-24 21:13:59 +0100 | [diff] [blame] | 217 | LIBS += drivers/block/libblock.a |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 218 | LIBS += drivers/dma/libdma.a |
Jean-Christophe PLAGNIOL-VILLARD | f868cc5 | 2007-11-24 20:14:44 +0100 | [diff] [blame] | 219 | LIBS += drivers/hwmon/libhwmon.a |
Jean-Christophe PLAGNIOL-VILLARD | 080c646 | 2007-11-20 20:14:18 +0100 | [diff] [blame] | 220 | LIBS += drivers/i2c/libi2c.a |
Jean-Christophe PLAGNIOL-VILLARD | 16b195c | 2007-11-24 19:46:45 +0100 | [diff] [blame] | 221 | LIBS += drivers/input/libinput.a |
Jean-Christophe PLAGNIOL-VILLARD | 318c0b9 | 2007-11-24 21:17:55 +0100 | [diff] [blame] | 222 | LIBS += drivers/misc/libmisc.a |
Jean-Christophe PLAGNIOL-VILLARD | 59829cc | 2007-11-24 21:26:56 +0100 | [diff] [blame] | 223 | LIBS += drivers/mtd/libmtd.a |
| 224 | LIBS += drivers/mtd/nand/libnand.a |
| 225 | LIBS += drivers/mtd/nand_legacy/libnand_legacy.a |
| 226 | LIBS += drivers/mtd/onenand/libonenand.a |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 227 | LIBS += drivers/net/libnet.a |
Jean-Christophe PLAGNIOL-VILLARD | 2439e4b | 2007-11-21 21:19:24 +0100 | [diff] [blame] | 228 | LIBS += drivers/net/sk98lin/libsk98lin.a |
Jean-Christophe PLAGNIOL-VILLARD | 93a686e | 2007-11-20 20:28:09 +0100 | [diff] [blame] | 229 | LIBS += drivers/pci/libpci.a |
Jean-Christophe PLAGNIOL-VILLARD | 7364621 | 2007-11-20 20:33:09 +0100 | [diff] [blame] | 230 | LIBS += drivers/pcmcia/libpcmcia.a |
Ben Warren | 04a9e11 | 2008-01-16 22:37:35 -0500 | [diff] [blame] | 231 | LIBS += drivers/spi/libspi.a |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 232 | ifeq ($(CPU),mpc83xx) |
| 233 | LIBS += drivers/qe/qe.a |
| 234 | endif |
Andy Fleming | da9d461 | 2007-08-14 00:14:25 -0500 | [diff] [blame] | 235 | ifeq ($(CPU),mpc85xx) |
| 236 | LIBS += drivers/qe/qe.a |
| 237 | endif |
Jean-Christophe PLAGNIOL-VILLARD | 59829cc | 2007-11-24 21:26:56 +0100 | [diff] [blame] | 238 | LIBS += drivers/rtc/librtc.a |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 239 | LIBS += drivers/serial/libserial.a |
Jean-Christophe PLAGNIOL-VILLARD | 59829cc | 2007-11-24 21:26:56 +0100 | [diff] [blame] | 240 | LIBS += drivers/usb/libusb.a |
| 241 | LIBS += drivers/video/libvideo.a |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 242 | LIBS += common/libcommon.a |
Gerald Van Baren | 7651f8b | 2007-04-19 23:14:39 -0400 | [diff] [blame] | 243 | LIBS += libfdt/libfdt.a |
Rafal Jaworowski | 500856e | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 244 | LIBS += api/libapi.a |
Yuri Tikhonov | 2d2b994 | 2008-03-31 10:51:37 +0200 | [diff] [blame] | 245 | LIBS += post/libpost.a |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 246 | |
| 247 | LIBS := $(addprefix $(obj),$(LIBS)) |
Stefano Babic | 019895a | 2008-02-18 08:03:51 +0100 | [diff] [blame] | 248 | .PHONY : $(LIBS) $(VERSION_FILE) |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 249 | |
Wolfgang Denk | de109d9 | 2008-04-30 17:25:07 +0200 | [diff] [blame] | 250 | LIBBOARD = board/$(BOARDDIR)/lib$(BOARD).a |
| 251 | LIBBOARD := $(addprefix $(obj),$(LIBBOARD)) |
| 252 | |
wdenk | 4f7cb08 | 2003-09-11 23:06:34 +0000 | [diff] [blame] | 253 | # Add GCC lib |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 254 | PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 255 | |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 256 | # The "tools" are needed early, so put this first |
| 257 | # Don't include stuff already done in $(LIBS) |
| 258 | SUBDIRS = tools \ |
Rafal Jaworowski | 0dc1fc2 | 2008-01-29 16:57:38 +0100 | [diff] [blame] | 259 | examples \ |
| 260 | api_examples |
Rafal Jaworowski | 500856e | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 261 | |
wdenk | b028f71 | 2003-12-07 21:39:28 +0000 | [diff] [blame] | 262 | .PHONY : $(SUBDIRS) |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 263 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 264 | ifeq ($(CONFIG_NAND_U_BOOT),y) |
| 265 | NAND_SPL = nand_spl |
| 266 | U_BOOT_NAND = $(obj)u-boot-nand.bin |
| 267 | endif |
| 268 | |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 269 | ifeq ($(CONFIG_ONENAND_U_BOOT),y) |
| 270 | ONENAND_IPL = onenand_ipl |
| 271 | U_BOOT_ONENAND = $(obj)u-boot-onenand.bin |
| 272 | endif |
| 273 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 274 | __OBJS := $(subst $(obj),,$(OBJS)) |
Wolfgang Denk | de109d9 | 2008-04-30 17:25:07 +0200 | [diff] [blame] | 275 | __LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD)) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 276 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 277 | ######################################################################### |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 278 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 279 | |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 280 | ALL += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND) $(U_BOOT_ONENAND) |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 281 | ifeq ($(ARCH),blackfin) |
| 282 | ALL += $(obj)u-boot.ldr |
| 283 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 284 | |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 285 | all: $(ALL) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 286 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 287 | $(obj)u-boot.hex: $(obj)u-boot |
wdenk | 6310eb9 | 2005-01-09 21:28:15 +0000 | [diff] [blame] | 288 | $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ |
| 289 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 290 | $(obj)u-boot.srec: $(obj)u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 291 | $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ |
| 292 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 293 | $(obj)u-boot.bin: $(obj)u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 294 | $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ |
| 295 | |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 296 | $(obj)u-boot.ldr: $(obj)u-boot |
| 297 | $(LDR) -T $(CONFIG_BFIN_CPU) -f -c $@ $< $(LDR_FLAGS) |
| 298 | |
| 299 | $(obj)u-boot.ldr.hex: $(obj)u-boot.ldr |
| 300 | $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary |
| 301 | |
| 302 | $(obj)u-boot.ldr.srec: $(obj)u-boot.ldr |
| 303 | $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary |
| 304 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 305 | $(obj)u-boot.img: $(obj)u-boot.bin |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 306 | ./tools/mkimage -A $(ARCH) -T firmware -C none \ |
| 307 | -a $(TEXT_BASE) -e 0 \ |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 308 | -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \ |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 309 | sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \ |
| 310 | -d $< $@ |
| 311 | |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 312 | $(obj)u-boot.sha1: $(obj)u-boot.bin |
Heiko Schocher | 0115953 | 2007-07-14 01:06:58 +0200 | [diff] [blame] | 313 | $(obj)tools/ubsha1 $(obj)u-boot.bin |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 314 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 315 | $(obj)u-boot.dis: $(obj)u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 316 | $(OBJDUMP) -d $< > $@ |
| 317 | |
Wolfgang Denk | de109d9 | 2008-04-30 17:25:07 +0200 | [diff] [blame] | 318 | $(obj)u-boot: depend $(SUBDIRS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) |
| 319 | UNDEF_SYM=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \ |
| 320 | sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 321 | cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \ |
| 322 | --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \ |
wdenk | b2184c3 | 2002-11-19 23:01:07 +0000 | [diff] [blame] | 323 | -Map u-boot.map -o u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 324 | |
Johannes Stezenbach | 88f7252 | 2008-01-29 00:11:25 +0100 | [diff] [blame] | 325 | $(OBJS): depend $(obj)include/autoconf.mk |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 326 | $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@)) |
| 327 | |
Johannes Stezenbach | 88f7252 | 2008-01-29 00:11:25 +0100 | [diff] [blame] | 328 | $(LIBS): depend $(obj)include/autoconf.mk |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 329 | $(MAKE) -C $(dir $(subst $(obj),,$@)) |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 330 | |
Wolfgang Denk | de109d9 | 2008-04-30 17:25:07 +0200 | [diff] [blame] | 331 | $(LIBBOARD): depend $(LIBS) $(obj)include/autoconf.mk |
| 332 | $(MAKE) -C $(dir $(subst $(obj),,$@)) |
| 333 | |
Johannes Stezenbach | 88f7252 | 2008-01-29 00:11:25 +0100 | [diff] [blame] | 334 | $(SUBDIRS): depend $(obj)include/autoconf.mk |
wdenk | b028f71 | 2003-12-07 21:39:28 +0000 | [diff] [blame] | 335 | $(MAKE) -C $@ all |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 336 | |
Mike Frysinger | f65c981 | 2008-02-16 02:12:37 -0500 | [diff] [blame] | 337 | $(LDSCRIPT): depend $(obj)include/autoconf.mk |
| 338 | $(MAKE) -C $(dir $@) $(notdir $@) |
| 339 | |
Wolfgang Denk | dd531aa | 2008-01-13 21:05:52 +0100 | [diff] [blame] | 340 | $(NAND_SPL): $(VERSION_FILE) $(obj)include/autoconf.mk |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 341 | $(MAKE) -C nand_spl/board/$(BOARDDIR) all |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 342 | |
Wolfgang Denk | dd531aa | 2008-01-13 21:05:52 +0100 | [diff] [blame] | 343 | $(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin $(obj)include/autoconf.mk |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 344 | cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 345 | |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 346 | $(ONENAND_IPL): $(VERSION_FILE) $(obj)include/autoconf.mk |
Kyungmin Park | 1bb707c | 2008-03-17 08:54:06 +0900 | [diff] [blame] | 347 | $(MAKE) -C $(obj)onenand_ipl/board/$(BOARDDIR) all |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 348 | |
| 349 | $(U_BOOT_ONENAND): $(ONENAND_IPL) $(obj)u-boot.bin $(obj)include/autoconf.mk |
Kyungmin Park | 1bb707c | 2008-03-17 08:54:06 +0900 | [diff] [blame] | 350 | $(MAKE) -C $(obj)onenand_ipl/board/$(BOARDDIR) all |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 351 | cat $(obj)onenand_ipl/onenand-ipl-2k.bin $(obj)u-boot.bin > $(obj)u-boot-onenand.bin |
Kyungmin Park | 1bb707c | 2008-03-17 08:54:06 +0900 | [diff] [blame] | 352 | cat $(obj)onenand_ipl/onenand-ipl-4k.bin $(obj)u-boot.bin > $(obj)u-boot-flexonenand.bin |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 353 | |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 354 | $(VERSION_FILE): |
Mike Frysinger | aa73794 | 2008-05-02 21:45:12 -0400 | [diff] [blame] | 355 | @( printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' "$(U_BOOT_VERSION)" \ |
| 356 | '$(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion $(TOPDIR))' \ |
| 357 | ) > $@.tmp |
Mike Frysinger | 0ec7a06 | 2008-02-04 17:44:23 -0500 | [diff] [blame] | 358 | @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@ |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 359 | |
dzu | 8f713fd | 2003-08-07 14:20:31 +0000 | [diff] [blame] | 360 | gdbtools: |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 361 | $(MAKE) -C tools/gdb all || exit 1 |
| 362 | |
| 363 | updater: |
| 364 | $(MAKE) -C tools/updater all || exit 1 |
| 365 | |
| 366 | env: |
Markus Klotzbücher | 64b3727 | 2007-11-27 10:23:20 +0100 | [diff] [blame] | 367 | $(MAKE) -C tools/env all MTD_VERSION=${MTD_VERSION} || exit 1 |
dzu | 8f713fd | 2003-08-07 14:20:31 +0000 | [diff] [blame] | 368 | |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 369 | depend dep: $(VERSION_FILE) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 370 | for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir _depend ; done |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 371 | |
Jean-Christophe PLAGNIOL-VILLARD | a340c32 | 2007-11-25 18:45:47 +0100 | [diff] [blame] | 372 | TAG_SUBDIRS += include |
| 373 | TAG_SUBDIRS += lib_generic board/$(BOARDDIR) |
| 374 | TAG_SUBDIRS += cpu/$(CPU) |
| 375 | TAG_SUBDIRS += lib_$(ARCH) |
| 376 | TAG_SUBDIRS += fs/cramfs |
| 377 | TAG_SUBDIRS += fs/fat |
| 378 | TAG_SUBDIRS += fs/fdos |
| 379 | TAG_SUBDIRS += fs/jffs2 |
| 380 | TAG_SUBDIRS += net |
| 381 | TAG_SUBDIRS += disk |
| 382 | TAG_SUBDIRS += common |
| 383 | TAG_SUBDIRS += drivers/bios_emulator |
| 384 | TAG_SUBDIRS += drivers/block |
| 385 | TAG_SUBDIRS += drivers/hwmon |
| 386 | TAG_SUBDIRS += drivers/i2c |
| 387 | TAG_SUBDIRS += drivers/input |
| 388 | TAG_SUBDIRS += drivers/misc |
| 389 | TAG_SUBDIRS += drivers/mtd |
| 390 | TAG_SUBDIRS += drivers/mtd/nand |
| 391 | TAG_SUBDIRS += drivers/mtd/nand_legacy |
| 392 | TAG_SUBDIRS += drivers/mtd/onenand |
| 393 | TAG_SUBDIRS += drivers/net |
| 394 | TAG_SUBDIRS += drivers/net/sk98lin |
| 395 | TAG_SUBDIRS += drivers/pci |
| 396 | TAG_SUBDIRS += drivers/pcmcia |
| 397 | TAG_SUBDIRS += drivers/qe |
| 398 | TAG_SUBDIRS += drivers/rtc |
| 399 | TAG_SUBDIRS += drivers/serial |
Ben Warren | 04a9e11 | 2008-01-16 22:37:35 -0500 | [diff] [blame] | 400 | TAG_SUBDIRS += drivers/spi |
Jean-Christophe PLAGNIOL-VILLARD | a340c32 | 2007-11-25 18:45:47 +0100 | [diff] [blame] | 401 | TAG_SUBDIRS += drivers/usb |
| 402 | TAG_SUBDIRS += drivers/video |
| 403 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 404 | tags ctags: |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 405 | ctags -w -o $(obj)ctags `find $(SUBDIRS) $(TAG_SUBDIRS) \ |
Wolfgang Denk | 88fed9a | 2007-11-26 22:57:53 +0100 | [diff] [blame] | 406 | -name '*.[ch]' -print` |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 407 | |
| 408 | etags: |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 409 | etags -a -o $(obj)etags `find $(SUBDIRS) $(TAG_SUBDIRS) \ |
Wolfgang Denk | 88fed9a | 2007-11-26 22:57:53 +0100 | [diff] [blame] | 410 | -name '*.[ch]' -print` |
Li Yang | ffda586 | 2008-02-29 11:46:05 +0800 | [diff] [blame] | 411 | cscope: |
| 412 | find $(SUBDIRS) $(TAG_SUBDIRS) -name '*.[ch]' -print \ |
| 413 | > cscope.files |
| 414 | cscope -b -q -k |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 415 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 416 | $(obj)System.map: $(obj)u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 417 | @$(NM) $< | \ |
| 418 | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 419 | sort > $(obj)System.map |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 420 | |
Grant Likely | 2f155f6 | 2007-09-24 09:05:31 -0600 | [diff] [blame] | 421 | # |
| 422 | # Auto-generate the autoconf.mk file (which is included by all makefiles) |
| 423 | # |
| 424 | # This target actually generates 2 files; autoconf.mk and autoconf.mk.dep. |
| 425 | # the dep file is only include in this top level makefile to determine when |
| 426 | # to regenerate the autoconf.mk file. |
Wolfgang Denk | 1510b82 | 2008-05-13 23:15:52 +0200 | [diff] [blame] | 427 | $(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h |
| 428 | @$(XECHO) Generating $@ ; \ |
Mike Frysinger | 16fe777 | 2008-02-18 05:10:07 -0500 | [diff] [blame] | 429 | set -e ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 430 | : Generate the dependancies ; \ |
Wolfgang Denk | 1510b82 | 2008-05-13 23:15:52 +0200 | [diff] [blame] | 431 | $(CC) -x c -DDO_DEPS_ONLY -M $(HOST_CFLAGS) $(CPPFLAGS) \ |
| 432 | -MQ $(obj)include/autoconf.mk include/common.h > $@ |
| 433 | |
| 434 | $(obj)include/autoconf.mk: $(obj)include/config.h |
| 435 | @$(XECHO) Generating $@ ; \ |
| 436 | set -e ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 437 | : Extract the config macros ; \ |
Wolfgang Denk | 1510b82 | 2008-05-13 23:15:52 +0200 | [diff] [blame] | 438 | $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \ |
| 439 | sed -n -f tools/scripts/define2mk.sed > $@ |
Grant Likely | 2f155f6 | 2007-09-24 09:05:31 -0600 | [diff] [blame] | 440 | |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 441 | sinclude $(obj)include/autoconf.mk.dep |
Grant Likely | 2f155f6 | 2007-09-24 09:05:31 -0600 | [diff] [blame] | 442 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 443 | ######################################################################### |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 444 | else # !config.mk |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 445 | all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \ |
| 446 | $(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 447 | $(SUBDIRS) $(VERSION_FILE) gdbtools updater env depend \ |
Li Yang | ffda586 | 2008-02-29 11:46:05 +0800 | [diff] [blame] | 448 | dep tags ctags etags cscope $(obj)System.map: |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 449 | @echo "System not configured - see README" >&2 |
| 450 | @ exit 1 |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 451 | endif # config.mk |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 452 | |
Wolfgang Denk | 4e53a25 | 2006-10-25 00:43:17 +0200 | [diff] [blame] | 453 | .PHONY : CHANGELOG |
| 454 | CHANGELOG: |
Ben Warren | b985b5d | 2006-10-26 14:38:25 -0400 | [diff] [blame] | 455 | git log --no-merges U-Boot-1_1_5.. | \ |
| 456 | unexpand -a | sed -e 's/\s\s*$$//' > $@ |
Wolfgang Denk | 4e53a25 | 2006-10-25 00:43:17 +0200 | [diff] [blame] | 457 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 458 | ######################################################################### |
| 459 | |
| 460 | unconfig: |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 461 | @rm -f $(obj)include/config.h $(obj)include/config.mk \ |
Grant Likely | 2f155f6 | 2007-09-24 09:05:31 -0600 | [diff] [blame] | 462 | $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \ |
| 463 | $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 464 | |
| 465 | #======================================================================== |
| 466 | # PowerPC |
| 467 | #======================================================================== |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 468 | |
| 469 | ######################################################################### |
| 470 | ## MPC5xx Systems |
| 471 | ######################################################################### |
| 472 | |
wdenk | 5e5f9ed | 2005-04-13 23:15:10 +0000 | [diff] [blame] | 473 | canmb_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 474 | @$(MKCONFIG) -a canmb ppc mpc5xxx canmb |
wdenk | 5e5f9ed | 2005-04-13 23:15:10 +0000 | [diff] [blame] | 475 | |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 476 | cmi_mpc5xx_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 477 | @$(MKCONFIG) $(@:_config=) ppc mpc5xx cmi |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 478 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 479 | PATI_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 480 | @$(MKCONFIG) $(@:_config=) ppc mpc5xx pati mpl |
wdenk | b6e4c40 | 2004-01-02 16:05:07 +0000 | [diff] [blame] | 481 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 482 | ######################################################################### |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 483 | ## MPC5xxx Systems |
| 484 | ######################################################################### |
wdenk | a87589d | 2005-06-10 10:00:19 +0000 | [diff] [blame] | 485 | |
Wolfgang Denk | dafba16 | 2005-08-12 00:22:49 +0200 | [diff] [blame] | 486 | aev_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 487 | @$(MKCONFIG) -a aev ppc mpc5xxx tqm5200 |
Wolfgang Denk | dafba16 | 2005-08-12 00:22:49 +0200 | [diff] [blame] | 488 | |
dzu@denx.de | 6ca24c6 | 2006-04-21 18:30:47 +0200 | [diff] [blame] | 489 | BC3450_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 490 | @$(MKCONFIG) -a BC3450 ppc mpc5xxx bc3450 |
dzu@denx.de | 6ca24c6 | 2006-04-21 18:30:47 +0200 | [diff] [blame] | 491 | |
Stefan Roese | 5e4b336 | 2005-08-22 17:51:53 +0200 | [diff] [blame] | 492 | cpci5200_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 493 | @$(MKCONFIG) -a cpci5200 ppc mpc5xxx cpci5200 esd |
Stefan Roese | 5e4b336 | 2005-08-22 17:51:53 +0200 | [diff] [blame] | 494 | |
Wolfgang Denk | 05bf491 | 2007-10-21 01:01:17 +0200 | [diff] [blame] | 495 | hmi1001_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 496 | @$(MKCONFIG) hmi1001 ppc mpc5xxx hmi1001 |
wdenk | a87589d | 2005-06-10 10:00:19 +0000 | [diff] [blame] | 497 | |
wdenk | e35745b | 2004-04-18 23:32:11 +0000 | [diff] [blame] | 498 | Lite5200_config \ |
| 499 | Lite5200_LOWBOOT_config \ |
| 500 | Lite5200_LOWBOOT08_config \ |
| 501 | icecube_5200_config \ |
| 502 | icecube_5200_LOWBOOT_config \ |
| 503 | icecube_5200_LOWBOOT08_config \ |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 504 | icecube_5200_DDR_config \ |
| 505 | icecube_5200_DDR_LOWBOOT_config \ |
wdenk | e35745b | 2004-04-18 23:32:11 +0000 | [diff] [blame] | 506 | icecube_5200_DDR_LOWBOOT08_config \ |
| 507 | icecube_5100_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 508 | @mkdir -p $(obj)include |
| 509 | @mkdir -p $(obj)board/icecube |
wdenk | 17d704e | 2004-04-10 20:43:50 +0000 | [diff] [blame] | 510 | @[ -z "$(findstring LOWBOOT_,$@)" ] || \ |
| 511 | { if [ "$(findstring DDR,$@)" ] ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 512 | then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \ |
| 513 | else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \ |
wdenk | 17d704e | 2004-04-10 20:43:50 +0000 | [diff] [blame] | 514 | fi ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 515 | $(XECHO) "... with LOWBOOT configuration" ; \ |
wdenk | 5cf9da4 | 2003-11-07 13:42:26 +0000 | [diff] [blame] | 516 | } |
| 517 | @[ -z "$(findstring LOWBOOT08,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 518 | { echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \ |
wdenk | 5cf9da4 | 2003-11-07 13:42:26 +0000 | [diff] [blame] | 519 | echo "... with 8 MB flash only" ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 520 | $(XECHO) "... with LOWBOOT configuration" ; \ |
wdenk | 5cf9da4 | 2003-11-07 13:42:26 +0000 | [diff] [blame] | 521 | } |
wdenk | b2001f2 | 2003-12-20 22:45:10 +0000 | [diff] [blame] | 522 | @[ -z "$(findstring DDR,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 523 | { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 524 | $(XECHO) "... DDR memory revision" ; \ |
wdenk | b2001f2 | 2003-12-20 22:45:10 +0000 | [diff] [blame] | 525 | } |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 526 | @[ -z "$(findstring 5200,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 527 | { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 528 | $(XECHO) "... with MPC5200 processor" ; \ |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 529 | } |
wdenk | a0f2fe5 | 2003-10-28 09:14:21 +0000 | [diff] [blame] | 530 | @[ -z "$(findstring 5100,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 531 | { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 532 | $(XECHO) "... with MGT5100 processor" ; \ |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 533 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 534 | @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 535 | |
Wolfgang Denk | 05bf491 | 2007-10-21 01:01:17 +0200 | [diff] [blame] | 536 | jupiter_config: unconfig |
Heiko Schocher | 2605e90 | 2007-02-16 07:57:42 +0100 | [diff] [blame] | 537 | @$(MKCONFIG) jupiter ppc mpc5xxx jupiter |
| 538 | |
Bartlomiej Sieka | 4707fb5 | 2006-10-13 21:09:09 +0200 | [diff] [blame] | 539 | v38b_config: unconfig |
Grant Likely | 90b1b2d | 2007-07-03 00:17:28 -0600 | [diff] [blame] | 540 | @$(MKCONFIG) -a v38b ppc mpc5xxx v38b |
Bartlomiej Sieka | 4707fb5 | 2006-10-13 21:09:09 +0200 | [diff] [blame] | 541 | |
Wolfgang Denk | 86ea5f9 | 2006-02-22 00:43:16 +0100 | [diff] [blame] | 542 | inka4x0_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 543 | @$(MKCONFIG) inka4x0 ppc mpc5xxx inka4x0 |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 544 | |
Wolfgang Denk | 09e4b0c | 2006-03-17 11:42:53 +0100 | [diff] [blame] | 545 | lite5200b_config \ |
Domen Puncer | d3832e8 | 2007-04-16 14:00:13 +0200 | [diff] [blame] | 546 | lite5200b_PM_config \ |
Wolfgang Denk | 09e4b0c | 2006-03-17 11:42:53 +0100 | [diff] [blame] | 547 | lite5200b_LOWBOOT_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 548 | @mkdir -p $(obj)include |
| 549 | @mkdir -p $(obj)board/icecube |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 550 | @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 551 | @ $(XECHO) "... DDR memory revision" |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 552 | @ echo "#define CONFIG_MPC5200" >>$(obj)include/config.h |
| 553 | @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h |
Domen Puncer | d3832e8 | 2007-04-16 14:00:13 +0200 | [diff] [blame] | 554 | @[ -z "$(findstring _PM_,$@)" ] || \ |
| 555 | { echo "#define CONFIG_LITE5200B_PM" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 556 | $(XECHO) "... with power management (low-power mode) support" ; \ |
Domen Puncer | d3832e8 | 2007-04-16 14:00:13 +0200 | [diff] [blame] | 557 | } |
Wolfgang Denk | 09e4b0c | 2006-03-17 11:42:53 +0100 | [diff] [blame] | 558 | @[ -z "$(findstring LOWBOOT_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 559 | { echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 560 | $(XECHO) "... with LOWBOOT configuration" ; \ |
Wolfgang Denk | 09e4b0c | 2006-03-17 11:42:53 +0100 | [diff] [blame] | 561 | } |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 562 | @ $(XECHO) "... with MPC5200B processor" |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 563 | @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube |
Wolfgang Denk | 09e4b0c | 2006-03-17 11:42:53 +0100 | [diff] [blame] | 564 | |
Stefan Roese | f1ee982 | 2006-03-04 14:57:03 +0100 | [diff] [blame] | 565 | mcc200_config \ |
Wolfgang Denk | ed1cf84 | 2006-08-24 00:26:42 +0200 | [diff] [blame] | 566 | mcc200_SDRAM_config \ |
| 567 | mcc200_highboot_config \ |
| 568 | mcc200_COM12_config \ |
| 569 | mcc200_COM12_SDRAM_config \ |
Wolfgang Denk | 113f64e | 2006-08-25 01:38:04 +0200 | [diff] [blame] | 570 | mcc200_COM12_highboot_config \ |
| 571 | mcc200_COM12_highboot_SDRAM_config \ |
Wolfgang Denk | ed1cf84 | 2006-08-24 00:26:42 +0200 | [diff] [blame] | 572 | mcc200_highboot_SDRAM_config \ |
| 573 | prs200_config \ |
| 574 | prs200_DDR_config \ |
| 575 | prs200_highboot_config \ |
| 576 | prs200_highboot_DDR_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 577 | @mkdir -p $(obj)include |
| 578 | @mkdir -p $(obj)board/mcc200 |
Wolfgang Denk | 4819fad | 2006-07-23 22:40:51 +0200 | [diff] [blame] | 579 | @[ -n "$(findstring highboot,$@)" ] || \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 580 | { $(XECHO) "... with lowboot configuration" ; \ |
Stefan Roese | f1ee982 | 2006-03-04 14:57:03 +0100 | [diff] [blame] | 581 | } |
Wolfgang Denk | 4819fad | 2006-07-23 22:40:51 +0200 | [diff] [blame] | 582 | @[ -z "$(findstring highboot,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 583 | { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 584 | $(XECHO) "... with highboot configuration" ; \ |
Wolfgang Denk | 4819fad | 2006-07-23 22:40:51 +0200 | [diff] [blame] | 585 | } |
| 586 | @[ -n "$(findstring _SDRAM,$@)" ] || \ |
Wolfgang Denk | ed1cf84 | 2006-08-24 00:26:42 +0200 | [diff] [blame] | 587 | { if [ -n "$(findstring mcc200,$@)" ]; \ |
| 588 | then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 589 | $(XECHO) "... with DDR" ; \ |
Wolfgang Denk | ed1cf84 | 2006-08-24 00:26:42 +0200 | [diff] [blame] | 590 | else \ |
| 591 | if [ -n "$(findstring _DDR,$@)" ];\ |
| 592 | then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 593 | $(XECHO) "... with DDR" ; \ |
Wolfgang Denk | ed1cf84 | 2006-08-24 00:26:42 +0200 | [diff] [blame] | 594 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 595 | echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 596 | $(XECHO) "... with SDRAM" ; \ |
Wolfgang Denk | ed1cf84 | 2006-08-24 00:26:42 +0200 | [diff] [blame] | 597 | fi; \ |
| 598 | fi; \ |
Wolfgang Denk | 4819fad | 2006-07-23 22:40:51 +0200 | [diff] [blame] | 599 | } |
| 600 | @[ -z "$(findstring _SDRAM,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 601 | { echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 602 | $(XECHO) "... with SDRAM" ; \ |
Wolfgang Denk | 4819fad | 2006-07-23 22:40:51 +0200 | [diff] [blame] | 603 | } |
Wolfgang Denk | 463764c | 2006-08-17 00:36:51 +0200 | [diff] [blame] | 604 | @[ -z "$(findstring COM12,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 605 | { echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 606 | $(XECHO) "... with console on COM12" ; \ |
Wolfgang Denk | 463764c | 2006-08-17 00:36:51 +0200 | [diff] [blame] | 607 | } |
Wolfgang Denk | ed1cf84 | 2006-08-24 00:26:42 +0200 | [diff] [blame] | 608 | @[ -z "$(findstring prs200,$@)" ] || \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 609 | { echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\ |
Wolfgang Denk | ed1cf84 | 2006-08-24 00:26:42 +0200 | [diff] [blame] | 610 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 611 | @$(MKCONFIG) -n $@ -a mcc200 ppc mpc5xxx mcc200 |
Wolfgang Denk | 86ea5f9 | 2006-02-22 00:43:16 +0100 | [diff] [blame] | 612 | |
Stefan Roese | 8b7d1f0 | 2007-01-31 16:37:34 +0100 | [diff] [blame] | 613 | mecp5200_config: unconfig |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 614 | @$(MKCONFIG) mecp5200 ppc mpc5xxx mecp5200 esd |
Stefan Roese | 8b7d1f0 | 2007-01-31 16:37:34 +0100 | [diff] [blame] | 615 | |
Heiko Schocher | 6341d9d | 2008-01-11 15:15:14 +0100 | [diff] [blame] | 616 | munices_config: unconfig |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 617 | @$(MKCONFIG) munices ppc mpc5xxx munices |
Heiko Schocher | 6341d9d | 2008-01-11 15:15:14 +0100 | [diff] [blame] | 618 | |
Jean-Christophe PLAGNIOL-VILLARD | 91c8207 | 2008-03-02 16:12:31 +0100 | [diff] [blame] | 619 | o2dnt_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 620 | @$(MKCONFIG) o2dnt ppc mpc5xxx o2dnt |
Wolfgang Denk | df04a3d | 2005-08-18 01:22:22 +0200 | [diff] [blame] | 621 | |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 622 | pf5200_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 623 | @$(MKCONFIG) pf5200 ppc mpc5xxx pf5200 esd |
Stefan Roese | 5e4b336 | 2005-08-22 17:51:53 +0200 | [diff] [blame] | 624 | |
wdenk | 8939404 | 2004-08-04 21:56:49 +0000 | [diff] [blame] | 625 | PM520_config \ |
| 626 | PM520_DDR_config \ |
| 627 | PM520_ROMBOOT_config \ |
| 628 | PM520_ROMBOOT_DDR_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 629 | @mkdir -p $(obj)include |
wdenk | 8939404 | 2004-08-04 21:56:49 +0000 | [diff] [blame] | 630 | @[ -z "$(findstring DDR,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 631 | { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 632 | $(XECHO) "... DDR memory revision" ; \ |
wdenk | 8939404 | 2004-08-04 21:56:49 +0000 | [diff] [blame] | 633 | } |
| 634 | @[ -z "$(findstring ROMBOOT,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 635 | { echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 636 | $(XECHO) "... booting from 8-bit flash" ; \ |
wdenk | 8939404 | 2004-08-04 21:56:49 +0000 | [diff] [blame] | 637 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 638 | @$(MKCONFIG) -a PM520 ppc mpc5xxx pm520 |
wdenk | 8939404 | 2004-08-04 21:56:49 +0000 | [diff] [blame] | 639 | |
Wolfgang Denk | 6624b68 | 2006-02-22 10:25:39 +0100 | [diff] [blame] | 640 | smmaco4_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 641 | @$(MKCONFIG) -a smmaco4 ppc mpc5xxx tqm5200 |
Wolfgang Denk | 9cdc838 | 2006-02-22 01:59:13 +0100 | [diff] [blame] | 642 | |
Bartlomiej Sieka | 86b116b | 2007-08-03 12:08:16 +0200 | [diff] [blame] | 643 | cm5200_config: unconfig |
Jean-Christophe PLAGNIOL-VILLARD | 91c8207 | 2008-03-02 16:12:31 +0100 | [diff] [blame] | 644 | @$(MKCONFIG) -a cm5200 ppc mpc5xxx cm5200 |
Bartlomiej Sieka | fa1df30 | 2007-07-11 20:11:07 +0200 | [diff] [blame] | 645 | |
Wolfgang Denk | 9cdc838 | 2006-02-22 01:59:13 +0100 | [diff] [blame] | 646 | spieval_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 647 | @$(MKCONFIG) -a spieval ppc mpc5xxx tqm5200 |
Wolfgang Denk | 9cdc838 | 2006-02-22 01:59:13 +0100 | [diff] [blame] | 648 | |
Wolfgang Denk | 45a212c | 2006-07-19 17:52:30 +0200 | [diff] [blame] | 649 | TB5200_B_config \ |
Wolfgang Denk | b87dfd2 | 2006-07-19 13:50:38 +0200 | [diff] [blame] | 650 | TB5200_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 651 | @mkdir -p $(obj)include |
Wolfgang Denk | 45a212c | 2006-07-19 17:52:30 +0200 | [diff] [blame] | 652 | @[ -z "$(findstring _B,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 653 | { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 654 | $(XECHO) "... with MPC5200B processor" ; \ |
Wolfgang Denk | 45a212c | 2006-07-19 17:52:30 +0200 | [diff] [blame] | 655 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 656 | @$(MKCONFIG) -n $@ -a TB5200 ppc mpc5xxx tqm5200 |
Wolfgang Denk | b87dfd2 | 2006-07-19 13:50:38 +0200 | [diff] [blame] | 657 | |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 658 | MINI5200_config \ |
| 659 | EVAL5200_config \ |
| 660 | TOP5200_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 661 | @mkdir -p $(obj)include |
| 662 | @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h |
| 663 | @$(MKCONFIG) -n $@ -a TOP5200 ppc mpc5xxx top5200 emk |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 664 | |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 665 | Total5100_config \ |
| 666 | Total5200_config \ |
| 667 | Total5200_lowboot_config \ |
| 668 | Total5200_Rev2_config \ |
| 669 | Total5200_Rev2_lowboot_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 670 | @mkdir -p $(obj)include |
| 671 | @mkdir -p $(obj)board/total5200 |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 672 | @[ -z "$(findstring 5100,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 673 | { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 674 | $(XECHO) "... with MGT5100 processor" ; \ |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 675 | } |
| 676 | @[ -z "$(findstring 5200,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 677 | { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 678 | $(XECHO) "... with MPC5200 processor" ; \ |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 679 | } |
| 680 | @[ -n "$(findstring Rev,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 681 | { echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 682 | $(XECHO) "... revision 1 board" ; \ |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 683 | } |
| 684 | @[ -z "$(findstring Rev2_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 685 | { echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 686 | $(XECHO) "... revision 2 board" ; \ |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 687 | } |
| 688 | @[ -z "$(findstring lowboot_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 689 | { echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 690 | $(XECHO) "... with lowboot configuration" ; \ |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 691 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 692 | @$(MKCONFIG) -a Total5200 ppc mpc5xxx total5200 |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 693 | |
Wolfgang Denk | 5196a7a | 2006-08-18 23:27:33 +0200 | [diff] [blame] | 694 | cam5200_config \ |
Marian Balakowicz | d9384de | 2007-01-10 00:26:15 +0100 | [diff] [blame] | 695 | cam5200_niosflash_config \ |
Wolfgang Denk | 5196a7a | 2006-08-18 23:27:33 +0200 | [diff] [blame] | 696 | fo300_config \ |
| 697 | MiniFAP_config \ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 698 | TQM5200S_config \ |
| 699 | TQM5200S_HIGHBOOT_config \ |
Wolfgang Denk | 5196a7a | 2006-08-18 23:27:33 +0200 | [diff] [blame] | 700 | TQM5200_B_config \ |
| 701 | TQM5200_B_HIGHBOOT_config \ |
| 702 | TQM5200_config \ |
| 703 | TQM5200_STK100_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 704 | @mkdir -p $(obj)include |
| 705 | @mkdir -p $(obj)board/tqm5200 |
Wolfgang Denk | 135ae00 | 2006-07-22 01:20:03 +0200 | [diff] [blame] | 706 | @[ -z "$(findstring cam5200,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 707 | { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \ |
| 708 | echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \ |
| 709 | echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 710 | $(XECHO) "... TQM5200S on Cam5200" ; \ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 711 | } |
Marian Balakowicz | d9384de | 2007-01-10 00:26:15 +0100 | [diff] [blame] | 712 | @[ -z "$(findstring niosflash,$@)" ] || \ |
| 713 | { echo "#define CONFIG_CAM5200_NIOSFLASH" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 714 | $(XECHO) "... with NIOS flash driver" ; \ |
Marian Balakowicz | d9384de | 2007-01-10 00:26:15 +0100 | [diff] [blame] | 715 | } |
Marian Balakowicz | 6d3bc9b | 2006-08-18 19:14:46 +0200 | [diff] [blame] | 716 | @[ -z "$(findstring fo300,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 717 | { echo "#define CONFIG_FO300" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 718 | $(XECHO) "... TQM5200 on FO300" ; \ |
Marian Balakowicz | 6d3bc9b | 2006-08-18 19:14:46 +0200 | [diff] [blame] | 719 | } |
Wolfgang Denk | cd65a3d | 2006-06-16 16:11:34 +0200 | [diff] [blame] | 720 | @[ -z "$(findstring MiniFAP,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 721 | { echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 722 | $(XECHO) "... TQM5200_AC on MiniFAP" ; \ |
Wolfgang Denk | 978b109 | 2006-07-19 18:01:38 +0200 | [diff] [blame] | 723 | } |
Wolfgang Denk | cd65a3d | 2006-06-16 16:11:34 +0200 | [diff] [blame] | 724 | @[ -z "$(findstring STK100,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 725 | { echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 726 | $(XECHO) "... on a STK52XX.100 base board" ; \ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 727 | } |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 728 | @[ -z "$(findstring TQM5200_B,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 729 | { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 730 | } |
| 731 | @[ -z "$(findstring TQM5200S,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 732 | { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \ |
| 733 | echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \ |
Wolfgang Denk | 45a212c | 2006-07-19 17:52:30 +0200 | [diff] [blame] | 734 | } |
Wolfgang Denk | 978b109 | 2006-07-19 18:01:38 +0200 | [diff] [blame] | 735 | @[ -z "$(findstring HIGHBOOT,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 736 | { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp ; \ |
Wolfgang Denk | 978b109 | 2006-07-19 18:01:38 +0200 | [diff] [blame] | 737 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 738 | @$(MKCONFIG) -n $@ -a TQM5200 ppc mpc5xxx tqm5200 |
Wolfgang Denk | 05bf491 | 2007-10-21 01:01:17 +0200 | [diff] [blame] | 739 | uc101_config: unconfig |
Heiko Schocher | 6dedf3d | 2006-12-21 16:14:48 +0100 | [diff] [blame] | 740 | @$(MKCONFIG) uc101 ppc mpc5xxx uc101 |
Wolfgang Denk | 05bf491 | 2007-10-21 01:01:17 +0200 | [diff] [blame] | 741 | motionpro_config: unconfig |
Bartlomiej Sieka | 53d4a49 | 2007-02-09 10:45:42 +0100 | [diff] [blame] | 742 | @$(MKCONFIG) motionpro ppc mpc5xxx motionpro |
| 743 | |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 744 | |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 745 | ######################################################################### |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 746 | ## MPC512x Systems |
| 747 | ######################################################################### |
John Rigby | 5f91db7 | 2008-02-26 09:38:14 -0700 | [diff] [blame] | 748 | ads5121_config \ |
| 749 | ads5121_PCI_config \ |
| 750 | : unconfig |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 751 | @mkdir -p $(obj)include |
John Rigby | 5f91db7 | 2008-02-26 09:38:14 -0700 | [diff] [blame] | 752 | @if [ "$(findstring _PCI_,$@)" ] ; then \ |
| 753 | echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ |
| 754 | $(XECHO) "... with PCI enabled" ; \ |
| 755 | fi |
| 756 | @$(MKCONFIG) -a ads5121 ppc mpc512x ads5121 |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 757 | |
| 758 | |
| 759 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 760 | ## MPC8xx Systems |
| 761 | ######################################################################### |
| 762 | |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 763 | Adder_config \ |
wdenk | 2d24a3a | 2004-06-09 21:50:45 +0000 | [diff] [blame] | 764 | Adder87x_config \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 765 | AdderII_config \ |
wdenk | 2d24a3a | 2004-06-09 21:50:45 +0000 | [diff] [blame] | 766 | : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 767 | @mkdir -p $(obj)include |
wdenk | 2623813 | 2004-07-09 22:51:01 +0000 | [diff] [blame] | 768 | $(if $(findstring AdderII,$@), \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 769 | @echo "#define CONFIG_MPC852T" > $(obj)include/config.h) |
| 770 | @$(MKCONFIG) -a Adder ppc mpc8xx adder |
wdenk | 2d24a3a | 2004-06-09 21:50:45 +0000 | [diff] [blame] | 771 | |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 772 | AdderUSB_config: unconfig |
Jean-Christophe PLAGNIOL-VILLARD | 91c8207 | 2008-03-02 16:12:31 +0100 | [diff] [blame] | 773 | @$(MKCONFIG) -a AdderUSB ppc mpc8xx adder |
Wolfgang Denk | 16c8d5e | 2006-06-14 17:45:53 +0200 | [diff] [blame] | 774 | |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 775 | ADS860_config \ |
| 776 | FADS823_config \ |
wdenk | 180d3f7 | 2004-01-04 16:28:35 +0000 | [diff] [blame] | 777 | FADS850SAR_config \ |
| 778 | MPC86xADS_config \ |
wdenk | 1114257 | 2004-06-06 21:35:06 +0000 | [diff] [blame] | 779 | MPC885ADS_config \ |
wdenk | 180d3f7 | 2004-01-04 16:28:35 +0000 | [diff] [blame] | 780 | FADS860T_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 781 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx fads |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 782 | |
| 783 | AMX860_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 784 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx amx860 westel |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 785 | |
| 786 | c2mon_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 787 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx c2mon |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 788 | |
| 789 | CCM_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 790 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx CCM siemens |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 791 | |
| 792 | cogent_mpc8xx_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 793 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx cogent |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 794 | |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 795 | ELPT860_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 796 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx elpt860 LEOX |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 797 | |
Wolfgang Denk | 84c960c | 2006-03-12 23:17:31 +0100 | [diff] [blame] | 798 | EP88x_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 799 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx ep88x |
Wolfgang Denk | 84c960c | 2006-03-12 23:17:31 +0100 | [diff] [blame] | 800 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 801 | ESTEEM192E_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 802 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx esteem192e |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 803 | |
| 804 | ETX094_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 805 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx etx094 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 806 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 807 | FLAGADM_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 808 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx flagadm |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 809 | |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 810 | xtract_GEN860T = $(subst _SC,,$(subst _config,,$1)) |
| 811 | |
| 812 | GEN860T_SC_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 813 | GEN860T_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 814 | @mkdir -p $(obj)include |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 815 | @[ -z "$(findstring _SC,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 816 | { echo "#define CONFIG_SC" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 817 | $(XECHO) "With reduced H/W feature set (SC)..." ; \ |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 818 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 819 | @$(MKCONFIG) -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 820 | |
| 821 | GENIETV_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 822 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx genietv |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 823 | |
| 824 | GTH_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 825 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx gth |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 826 | |
| 827 | hermes_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 828 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx hermes |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 829 | |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 830 | HMI10_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 831 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 832 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 833 | IAD210_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 834 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx IAD210 siemens |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 835 | |
| 836 | xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1)) |
| 837 | |
| 838 | ICU862_100MHz_config \ |
| 839 | ICU862_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 840 | @mkdir -p $(obj)include |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 841 | @[ -z "$(findstring _100MHz,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 842 | { echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 843 | $(XECHO) "... with 100MHz system clock" ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 844 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 845 | @$(MKCONFIG) -a $(call xtract_ICU862,$@) ppc mpc8xx icu862 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 846 | |
| 847 | IP860_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 848 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx ip860 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 849 | |
| 850 | IVML24_256_config \ |
| 851 | IVML24_128_config \ |
| 852 | IVML24_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 853 | @mkdir -p $(obj)include |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 854 | @[ -z "$(findstring IVML24_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 855 | { echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 856 | } |
| 857 | @[ -z "$(findstring IVML24_128_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 858 | { echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 859 | } |
| 860 | @[ -z "$(findstring IVML24_256_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 861 | { echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 862 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 863 | @$(MKCONFIG) -a IVML24 ppc mpc8xx ivm |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 864 | |
| 865 | IVMS8_256_config \ |
| 866 | IVMS8_128_config \ |
| 867 | IVMS8_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 868 | @mkdir -p $(obj)include |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 869 | @[ -z "$(findstring IVMS8_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 870 | { echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 871 | } |
| 872 | @[ -z "$(findstring IVMS8_128_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 873 | { echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 874 | } |
| 875 | @[ -z "$(findstring IVMS8_256_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 876 | { echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 877 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 878 | @$(MKCONFIG) -a IVMS8 ppc mpc8xx ivm |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 879 | |
wdenk | 56f94be | 2002-11-05 16:35:14 +0000 | [diff] [blame] | 880 | KUP4K_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 881 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4k kup |
wdenk | 0608e04 | 2004-03-25 19:29:38 +0000 | [diff] [blame] | 882 | |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 883 | KUP4X_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 884 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4x kup |
wdenk | 56f94be | 2002-11-05 16:35:14 +0000 | [diff] [blame] | 885 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 886 | LANTEC_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 887 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx lantec |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 888 | |
| 889 | lwmon_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 890 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx lwmon |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 891 | |
| 892 | MBX_config \ |
| 893 | MBX860T_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 894 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx mbx8xx |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 895 | |
Heiko Schocher | 381e4e6 | 2008-01-11 01:12:06 +0100 | [diff] [blame] | 896 | mgsuvd_config: unconfig |
| 897 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx mgsuvd |
| 898 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 899 | MHPC_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 900 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx mhpc eltec |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 901 | |
| 902 | MVS1_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 903 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx mvs1 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 904 | |
wdenk | 993cad9 | 2003-06-26 22:04:09 +0000 | [diff] [blame] | 905 | xtract_NETVIA = $(subst _V2,,$(subst _config,,$1)) |
| 906 | |
| 907 | NETVIA_V2_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 908 | NETVIA_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 909 | @mkdir -p $(obj)include |
wdenk | 993cad9 | 2003-06-26 22:04:09 +0000 | [diff] [blame] | 910 | @[ -z "$(findstring NETVIA_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 911 | { echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 912 | $(XECHO) "... Version 1" ; \ |
wdenk | 993cad9 | 2003-06-26 22:04:09 +0000 | [diff] [blame] | 913 | } |
| 914 | @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 915 | { echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 916 | $(XECHO) "... Version 2" ; \ |
wdenk | 993cad9 | 2003-06-26 22:04:09 +0000 | [diff] [blame] | 917 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 918 | @$(MKCONFIG) -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 919 | |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 920 | xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1)) |
| 921 | |
| 922 | NETPHONE_V2_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 923 | NETPHONE_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 924 | @mkdir -p $(obj)include |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 925 | @[ -z "$(findstring NETPHONE_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 926 | { echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \ |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 927 | } |
| 928 | @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 929 | { echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \ |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 930 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 931 | @$(MKCONFIG) -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 932 | |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 933 | xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1)))) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 934 | |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 935 | NETTA_ISDN_6412_SWAPHOOK_config \ |
| 936 | NETTA_ISDN_SWAPHOOK_config \ |
| 937 | NETTA_6412_SWAPHOOK_config \ |
| 938 | NETTA_SWAPHOOK_config \ |
| 939 | NETTA_ISDN_6412_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 940 | NETTA_ISDN_config \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 941 | NETTA_6412_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 942 | NETTA_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 943 | @mkdir -p $(obj)include |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 944 | @[ -z "$(findstring ISDN_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 945 | { echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 946 | } |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 947 | @[ -n "$(findstring ISDN_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 948 | { echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 949 | } |
| 950 | @[ -z "$(findstring 6412_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 951 | { echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 952 | } |
| 953 | @[ -n "$(findstring 6412_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 954 | { echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 955 | } |
| 956 | @[ -z "$(findstring SWAPHOOK_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 957 | { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 958 | } |
| 959 | @[ -n "$(findstring SWAPHOOK_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 960 | { echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 961 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 962 | @$(MKCONFIG) -a $(call xtract_NETTA,$@) ppc mpc8xx netta |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 963 | |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 964 | xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1)) |
| 965 | |
| 966 | NETTA2_V2_config \ |
| 967 | NETTA2_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 968 | @mkdir -p $(obj)include |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 969 | @[ -z "$(findstring NETTA2_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 970 | { echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 971 | } |
| 972 | @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 973 | { echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 974 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 975 | @$(MKCONFIG) -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2 |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 976 | |
dzu@denx.de | a367d42 | 2006-04-19 11:52:46 +0200 | [diff] [blame] | 977 | NC650_Rev1_config \ |
| 978 | NC650_Rev2_config \ |
| 979 | CP850_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 980 | @mkdir -p $(obj)include |
dzu@denx.de | a367d42 | 2006-04-19 11:52:46 +0200 | [diff] [blame] | 981 | @[ -z "$(findstring CP850,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 982 | { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \ |
| 983 | echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \ |
dzu@denx.de | a367d42 | 2006-04-19 11:52:46 +0200 | [diff] [blame] | 984 | } |
| 985 | @[ -z "$(findstring Rev1,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 986 | { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \ |
dzu@denx.de | a367d42 | 2006-04-19 11:52:46 +0200 | [diff] [blame] | 987 | } |
| 988 | @[ -z "$(findstring Rev2,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 989 | { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \ |
dzu@denx.de | a367d42 | 2006-04-19 11:52:46 +0200 | [diff] [blame] | 990 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 991 | @$(MKCONFIG) -a NC650 ppc mpc8xx nc650 |
wdenk | 7ca202f | 2004-08-28 22:45:57 +0000 | [diff] [blame] | 992 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 993 | NX823_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 994 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx nx823 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 995 | |
| 996 | pcu_e_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 997 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx pcu_e siemens |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 998 | |
wdenk | 3bbc899 | 2003-12-07 22:27:15 +0000 | [diff] [blame] | 999 | QS850_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1000 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc |
wdenk | 3bbc899 | 2003-12-07 22:27:15 +0000 | [diff] [blame] | 1001 | |
| 1002 | QS823_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1003 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc |
wdenk | 3bbc899 | 2003-12-07 22:27:15 +0000 | [diff] [blame] | 1004 | |
| 1005 | QS860T_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1006 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs860t snmc |
wdenk | 3bbc899 | 2003-12-07 22:27:15 +0000 | [diff] [blame] | 1007 | |
wdenk | da93ed8 | 2004-09-29 11:02:56 +0000 | [diff] [blame] | 1008 | quantum_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1009 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx quantum |
wdenk | da93ed8 | 2004-09-29 11:02:56 +0000 | [diff] [blame] | 1010 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1011 | R360MPI_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1012 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx r360mpi |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1013 | |
wdenk | 682011f | 2003-06-03 23:54:09 +0000 | [diff] [blame] | 1014 | RBC823_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1015 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx rbc823 |
wdenk | 682011f | 2003-06-03 23:54:09 +0000 | [diff] [blame] | 1016 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1017 | RPXClassic_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1018 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXClassic |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1019 | |
| 1020 | RPXlite_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1021 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXlite |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1022 | |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 1023 | RPXlite_DW_64_config \ |
| 1024 | RPXlite_DW_LCD_config \ |
| 1025 | RPXlite_DW_64_LCD_config \ |
wdenk | e63c8ee | 2004-06-09 21:04:48 +0000 | [diff] [blame] | 1026 | RPXlite_DW_NVRAM_config \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 1027 | RPXlite_DW_NVRAM_64_config \ |
wdenk | e63c8ee | 2004-06-09 21:04:48 +0000 | [diff] [blame] | 1028 | RPXlite_DW_NVRAM_LCD_config \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 1029 | RPXlite_DW_NVRAM_64_LCD_config \ |
Wolfgang Denk | 05bf491 | 2007-10-21 01:01:17 +0200 | [diff] [blame] | 1030 | RPXlite_DW_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1031 | @mkdir -p $(obj)include |
wdenk | e63c8ee | 2004-06-09 21:04:48 +0000 | [diff] [blame] | 1032 | @[ -z "$(findstring _64,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1033 | { echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1034 | $(XECHO) "... with 64MHz system clock ..."; \ |
wdenk | e63c8ee | 2004-06-09 21:04:48 +0000 | [diff] [blame] | 1035 | } |
| 1036 | @[ -z "$(findstring _LCD,$@)" ] || \ |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 1037 | { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1038 | echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1039 | $(XECHO) "... with LCD display ..."; \ |
wdenk | e63c8ee | 2004-06-09 21:04:48 +0000 | [diff] [blame] | 1040 | } |
| 1041 | @[ -z "$(findstring _NVRAM,$@)" ] || \ |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 1042 | { echo "#define CFG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1043 | $(XECHO) "... with ENV in NVRAM ..."; \ |
wdenk | e63c8ee | 2004-06-09 21:04:48 +0000 | [diff] [blame] | 1044 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1045 | @$(MKCONFIG) -a RPXlite_DW ppc mpc8xx RPXlite_dw |
wdenk | e63c8ee | 2004-06-09 21:04:48 +0000 | [diff] [blame] | 1046 | |
wdenk | 73a8b27 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 1047 | rmu_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1048 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx rmu |
wdenk | 73a8b27 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 1049 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1050 | RRvision_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1051 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx RRvision |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1052 | |
| 1053 | RRvision_LCD_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1054 | @mkdir -p $(obj)include |
| 1055 | @echo "#define CONFIG_LCD" >$(obj)include/config.h |
| 1056 | @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h |
| 1057 | @$(MKCONFIG) -a RRvision ppc mpc8xx RRvision |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1058 | |
| 1059 | SM850_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1060 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1061 | |
Jean-Christophe PLAGNIOL-VILLARD | 91c8207 | 2008-03-02 16:12:31 +0100 | [diff] [blame] | 1062 | spc1920_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1063 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx spc1920 |
Markus Klotzbuecher | b02d017 | 2006-07-12 08:48:24 +0200 | [diff] [blame] | 1064 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1065 | SPD823TS_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1066 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx spd8xx |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1067 | |
Wolfgang Denk | 6bdf430 | 2005-08-15 15:55:00 +0200 | [diff] [blame] | 1068 | stxxtc_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1069 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx stxxtc |
Wolfgang Denk | 6bdf430 | 2005-08-15 15:55:00 +0200 | [diff] [blame] | 1070 | |
wdenk | dc7c9a1 | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 1071 | svm_sc8xx_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1072 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx svm_sc8xx |
wdenk | dc7c9a1 | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 1073 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1074 | SXNI855T_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1075 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx sixnet |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1076 | |
wdenk | db2f721f | 2003-03-06 00:58:30 +0000 | [diff] [blame] | 1077 | # EMK MPC8xx based modules |
| 1078 | TOP860_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1079 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx top860 emk |
wdenk | db2f721f | 2003-03-06 00:58:30 +0000 | [diff] [blame] | 1080 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1081 | # Play some tricks for configuration selection |
wdenk | e9132ea | 2004-04-24 23:23:30 +0000 | [diff] [blame] | 1082 | # Only 855 and 860 boards may come with FEC |
| 1083 | # and only 823 boards may have LCD support |
| 1084 | xtract_8xx = $(subst _LCD,,$(subst _config,,$1)) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1085 | |
| 1086 | FPS850L_config \ |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 1087 | FPS860L_config \ |
wdenk | f12e568 | 2003-07-07 20:07:54 +0000 | [diff] [blame] | 1088 | NSCU_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1089 | TQM823L_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1090 | TQM823L_LCD_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1091 | TQM850L_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1092 | TQM855L_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1093 | TQM860L_config \ |
wdenk | d126bfb | 2003-04-10 11:18:18 +0000 | [diff] [blame] | 1094 | TQM862L_config \ |
wdenk | ae3af05 | 2003-08-07 22:18:11 +0000 | [diff] [blame] | 1095 | TQM823M_config \ |
wdenk | ae3af05 | 2003-08-07 22:18:11 +0000 | [diff] [blame] | 1096 | TQM850M_config \ |
wdenk | f12e568 | 2003-07-07 20:07:54 +0000 | [diff] [blame] | 1097 | TQM855M_config \ |
wdenk | f12e568 | 2003-07-07 20:07:54 +0000 | [diff] [blame] | 1098 | TQM860M_config \ |
wdenk | f12e568 | 2003-07-07 20:07:54 +0000 | [diff] [blame] | 1099 | TQM862M_config \ |
Wolfgang Denk | 8cba090 | 2006-05-12 16:15:46 +0200 | [diff] [blame] | 1100 | TQM866M_config \ |
Markus Klotzbuecher | 090eb73 | 2006-07-12 15:26:01 +0200 | [diff] [blame] | 1101 | TQM885D_config \ |
Guennadi Liakhovetski | efc6f44 | 2008-01-10 17:59:07 +0100 | [diff] [blame] | 1102 | TK885D_config \ |
Wolfgang Denk | 8cba090 | 2006-05-12 16:15:46 +0200 | [diff] [blame] | 1103 | virtlab2_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1104 | @mkdir -p $(obj)include |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1105 | @[ -z "$(findstring _LCD,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1106 | { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \ |
| 1107 | echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1108 | $(XECHO) "... with LCD display" ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1109 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1110 | @$(MKCONFIG) -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1111 | |
| 1112 | TTTech_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1113 | @mkdir -p $(obj)include |
| 1114 | @echo "#define CONFIG_LCD" >$(obj)include/config.h |
| 1115 | @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h |
| 1116 | @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1117 | |
wdenk | ec0aee7 | 2004-12-19 09:58:11 +0000 | [diff] [blame] | 1118 | uc100_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1119 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx uc100 |
wdenk | f7d1572 | 2004-12-18 22:35:43 +0000 | [diff] [blame] | 1120 | |
wdenk | 608c914 | 2003-01-13 23:54:46 +0000 | [diff] [blame] | 1121 | v37_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1122 | @mkdir -p $(obj)include |
| 1123 | @echo "#define CONFIG_LCD" >$(obj)include/config.h |
| 1124 | @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h |
| 1125 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx v37 |
wdenk | 608c914 | 2003-01-13 23:54:46 +0000 | [diff] [blame] | 1126 | |
dzu | 91e940d | 2003-09-25 22:32:40 +0000 | [diff] [blame] | 1127 | wtk_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1128 | @mkdir -p $(obj)include |
| 1129 | @echo "#define CONFIG_LCD" >$(obj)include/config.h |
| 1130 | @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h |
| 1131 | @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx |
dzu | 91e940d | 2003-09-25 22:32:40 +0000 | [diff] [blame] | 1132 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1133 | ######################################################################### |
| 1134 | ## PPC4xx Systems |
| 1135 | ######################################################################### |
wdenk | e55ca7e | 2004-07-01 21:40:08 +0000 | [diff] [blame] | 1136 | xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1)))))) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1137 | |
Stefan Roese | 16c0cc1 | 2007-03-21 13:39:57 +0100 | [diff] [blame] | 1138 | acadia_config: unconfig |
| 1139 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx acadia amcc |
| 1140 | |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 1141 | acadia_nand_config: unconfig |
Wolfgang Denk | 63e2276 | 2007-08-02 10:11:18 +0200 | [diff] [blame] | 1142 | @mkdir -p $(obj)include $(obj)board/amcc/acadia |
| 1143 | @mkdir -p $(obj)nand_spl/board/amcc/acadia |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 1144 | @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h |
| 1145 | @$(MKCONFIG) -n $@ -a acadia ppc ppc4xx acadia amcc |
| 1146 | @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/acadia/config.tmp |
| 1147 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk |
| 1148 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1149 | ADCIOP_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1150 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx adciop esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1151 | |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 1152 | alpr_config: unconfig |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 1153 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx alpr prodrive |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 1154 | |
Wolfgang Denk | 7521af1 | 2005-10-09 01:04:33 +0200 | [diff] [blame] | 1155 | AP1000_config:unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1156 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx ap1000 amirix |
Wolfgang Denk | 7521af1 | 2005-10-09 01:04:33 +0200 | [diff] [blame] | 1157 | |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1158 | APC405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1159 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx apc405 esd |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1160 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1161 | AR405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1162 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx ar405 esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1163 | |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 1164 | ASH405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1165 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx ash405 esd |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 1166 | |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 1167 | bamboo_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1168 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx bamboo amcc |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 1169 | |
Stefan Roese | cf959c7 | 2007-06-01 15:27:11 +0200 | [diff] [blame] | 1170 | bamboo_nand_config: unconfig |
Wolfgang Denk | 63e2276 | 2007-08-02 10:11:18 +0200 | [diff] [blame] | 1171 | @mkdir -p $(obj)include $(obj)board/amcc/bamboo |
| 1172 | @mkdir -p $(obj)nand_spl/board/amcc/bamboo |
Stefan Roese | cf959c7 | 2007-06-01 15:27:11 +0200 | [diff] [blame] | 1173 | @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h |
Stefan Roese | f3679aa | 2007-06-01 16:15:34 +0200 | [diff] [blame] | 1174 | @$(MKCONFIG) -n $@ -a bamboo ppc ppc4xx bamboo amcc |
Stefan Roese | cf959c7 | 2007-06-01 15:27:11 +0200 | [diff] [blame] | 1175 | @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/bamboo/config.tmp |
| 1176 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk |
| 1177 | |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 1178 | bubinga_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1179 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx bubinga amcc |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 1180 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1181 | CANBT_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1182 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx canbt esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1183 | |
Stefan Roese | 4c9e855 | 2008-03-19 16:20:49 +0100 | [diff] [blame] | 1184 | # Canyonlands & Glacier use different U-Boot images |
| 1185 | canyonlands_config \ |
| 1186 | glacier_config: unconfig |
| 1187 | @mkdir -p $(obj)include |
| 1188 | @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \ |
| 1189 | tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h |
| 1190 | @$(MKCONFIG) -n $@ -a canyonlands ppc ppc4xx canyonlands amcc |
Stefan Roese | c813f1f | 2008-03-11 16:53:00 +0100 | [diff] [blame] | 1191 | |
Stefan Roese | fe7c0db | 2008-04-08 10:33:27 +0200 | [diff] [blame] | 1192 | canyonlands_nand_config \ |
| 1193 | glacier_nand_config: unconfig |
Stefan Roese | 71665eb | 2008-03-03 17:27:02 +0100 | [diff] [blame] | 1194 | @mkdir -p $(obj)include $(obj)board/amcc/canyonlands |
| 1195 | @mkdir -p $(obj)nand_spl/board/amcc/canyonlands |
| 1196 | @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h |
Stefan Roese | fe7c0db | 2008-04-08 10:33:27 +0200 | [diff] [blame] | 1197 | @echo "#define CONFIG_$$(echo $(subst ,,$(@:_nand_config=)) | \ |
| 1198 | tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h |
Stefan Roese | 71665eb | 2008-03-03 17:27:02 +0100 | [diff] [blame] | 1199 | @$(MKCONFIG) -n $@ -a canyonlands ppc ppc4xx canyonlands amcc |
| 1200 | @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/canyonlands/config.tmp |
| 1201 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk |
| 1202 | |
wdenk | 1d6f972 | 2004-09-09 17:44:35 +0000 | [diff] [blame] | 1203 | CATcenter_config \ |
| 1204 | CATcenter_25_config \ |
| 1205 | CATcenter_33_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1206 | @mkdir -p $(obj)include |
| 1207 | @ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h |
| 1208 | @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h |
wdenk | 1d6f972 | 2004-09-09 17:44:35 +0000 | [diff] [blame] | 1209 | @[ -z "$(findstring _25,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1210 | { echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1211 | $(XECHO) "SysClk = 25MHz" ; \ |
wdenk | 1d6f972 | 2004-09-09 17:44:35 +0000 | [diff] [blame] | 1212 | } |
| 1213 | @[ -z "$(findstring _33,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1214 | { echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1215 | $(XECHO) "SysClk = 33MHz" ; \ |
wdenk | 1d6f972 | 2004-09-09 17:44:35 +0000 | [diff] [blame] | 1216 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1217 | @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave |
wdenk | 10767cc | 2004-05-13 13:23:58 +0000 | [diff] [blame] | 1218 | |
Stefan Roese | 7644f16 | 2005-09-22 09:16:57 +0200 | [diff] [blame] | 1219 | CPCI2DP_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1220 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd |
Stefan Roese | 7644f16 | 2005-09-22 09:16:57 +0200 | [diff] [blame] | 1221 | |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 1222 | CPCI405_config \ |
| 1223 | CPCI4052_config \ |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1224 | CPCI405DT_config \ |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 1225 | CPCI405AB_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1226 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci405 esd |
| 1227 | @echo "BOARD_REVISION = $(@:_config=)" >> $(obj)include/config.mk |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1228 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1229 | CPCIISER4_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1230 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpciiser4 esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1231 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1232 | CRAYL1_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1233 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx L1 cray |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1234 | |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 1235 | csb272_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1236 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb272 |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 1237 | |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 1238 | csb472_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1239 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb472 |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 1240 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1241 | DASA_SIM_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1242 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx dasa_sim esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1243 | |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 1244 | DP405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1245 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx dp405 esd |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 1246 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1247 | DU405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1248 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx du405 esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1249 | |
Matthias Fuchs | 1a3ac86 | 2008-01-17 10:53:08 +0100 | [diff] [blame] | 1250 | DU440_config: unconfig |
| 1251 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx du440 esd |
| 1252 | |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 1253 | ebony_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1254 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx ebony amcc |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1255 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1256 | ERIC_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1257 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx eric |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1258 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1259 | EXBITGEN_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1260 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx exbitgen |
wdenk | d1cbe85 | 2003-06-28 17:24:46 +0000 | [diff] [blame] | 1261 | |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1262 | G2000_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1263 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx g2000 |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1264 | |
Niklaus Giger | ac982ea | 2007-07-27 11:28:44 +0200 | [diff] [blame] | 1265 | hcu4_config: unconfig |
Niklaus Giger | b7f6193 | 2008-02-05 10:26:42 +0100 | [diff] [blame] | 1266 | @mkdir -p $(obj)board/netstal/common |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 1267 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx hcu4 netstal |
Niklaus Giger | ac982ea | 2007-07-27 11:28:44 +0200 | [diff] [blame] | 1268 | |
| 1269 | hcu5_config: unconfig |
Niklaus Giger | b7f6193 | 2008-02-05 10:26:42 +0100 | [diff] [blame] | 1270 | @mkdir -p $(obj)board/netstal/common |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 1271 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx hcu5 netstal |
Niklaus Giger | ac982ea | 2007-07-27 11:28:44 +0200 | [diff] [blame] | 1272 | |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1273 | HH405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1274 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx hh405 esd |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1275 | |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 1276 | HUB405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1277 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 1278 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1279 | JSE_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1280 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx jse |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1281 | |
Stefan Roese | b79316f | 2005-08-15 12:31:23 +0200 | [diff] [blame] | 1282 | KAREF_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1283 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx karef sandburst |
Stefan Roese | b79316f | 2005-08-15 12:31:23 +0200 | [diff] [blame] | 1284 | |
Stefan Roese | 4745aca | 2007-02-20 10:57:08 +0100 | [diff] [blame] | 1285 | katmai_config: unconfig |
| 1286 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx katmai amcc |
| 1287 | |
Stefan Roese | 353f268 | 2007-10-23 10:10:08 +0200 | [diff] [blame] | 1288 | # Kilauea & Haleakala images are identical (recognized via PVR) |
| 1289 | kilauea_config \ |
| 1290 | haleakala_config: unconfig |
| 1291 | @$(MKCONFIG) -n $@ -a kilauea ppc ppc4xx kilauea amcc |
Stefan Roese | 566806c | 2007-10-05 17:11:30 +0200 | [diff] [blame] | 1292 | |
Stefan Roese | 3d6cb3b | 2007-11-03 12:08:28 +0100 | [diff] [blame] | 1293 | kilauea_nand_config \ |
| 1294 | haleakala_nand_config: unconfig |
| 1295 | @mkdir -p $(obj)include $(obj)board/amcc/kilauea |
| 1296 | @mkdir -p $(obj)nand_spl/board/amcc/kilauea |
| 1297 | @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h |
| 1298 | @$(MKCONFIG) -n $@ -a kilauea ppc ppc4xx kilauea amcc |
| 1299 | @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/kilauea/config.tmp |
| 1300 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk |
| 1301 | |
Larry Johnson | c591dff | 2007-12-27 11:28:51 -0500 | [diff] [blame] | 1302 | korat_config: unconfig |
| 1303 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx korat |
| 1304 | |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 1305 | luan_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1306 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx luan amcc |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 1307 | |
Stefan Roese | b765ffb | 2007-06-15 08:18:01 +0200 | [diff] [blame] | 1308 | lwmon5_config: unconfig |
| 1309 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx lwmon5 |
| 1310 | |
Stefan Roese | 211ea91 | 2007-10-22 07:34:34 +0200 | [diff] [blame] | 1311 | makalu_config: unconfig |
| 1312 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx makalu amcc |
| 1313 | |
Niklaus Giger | b05f354 | 2008-02-25 18:46:41 +0100 | [diff] [blame] | 1314 | mcu25_config: unconfig |
| 1315 | @mkdir -p $(obj)board/netstal/common |
| 1316 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx mcu25 netstal |
| 1317 | |
Stefan Roese | b79316f | 2005-08-15 12:31:23 +0200 | [diff] [blame] | 1318 | METROBOX_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1319 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx metrobox sandburst |
Stefan Roese | b79316f | 2005-08-15 12:31:23 +0200 | [diff] [blame] | 1320 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1321 | MIP405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1322 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx mip405 mpl |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1323 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1324 | MIP405T_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1325 | @mkdir -p $(obj)include |
| 1326 | @echo "#define CONFIG_MIP405T" >$(obj)include/config.h |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1327 | @$(XECHO) "Enable subset config for MIP405T" |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1328 | @$(MKCONFIG) -a MIP405 ppc ppc4xx mip405 mpl |
wdenk | f3e0de6 | 2003-06-04 15:05:30 +0000 | [diff] [blame] | 1329 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1330 | ML2_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1331 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml2 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1332 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1333 | ml300_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1334 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml300 xilinx |
wdenk | 028ab6b | 2004-02-23 23:54:43 +0000 | [diff] [blame] | 1335 | |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 1336 | ocotea_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1337 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocotea amcc |
wdenk | 0e6d798 | 2004-03-14 00:07:33 +0000 | [diff] [blame] | 1338 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1339 | OCRTC_config \ |
| 1340 | ORSG_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1341 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocrtc esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1342 | |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 1343 | p3p440_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1344 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx p3p440 prodrive |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 1345 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1346 | PCI405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1347 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx pci405 esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1348 | |
Stefan Roese | a4c8d13 | 2006-06-02 16:18:04 +0200 | [diff] [blame] | 1349 | pcs440ep_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1350 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx pcs440ep |
Stefan Roese | a4c8d13 | 2006-06-02 16:18:04 +0200 | [diff] [blame] | 1351 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1352 | PIP405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1353 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx pip405 mpl |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1354 | |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 1355 | PLU405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1356 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx plu405 esd |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 1357 | |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 1358 | PMC405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1359 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx pmc405 esd |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 1360 | |
Matthias Fuchs | 8ba132c | 2007-12-28 17:07:24 +0100 | [diff] [blame] | 1361 | PMC440_config: unconfig |
| 1362 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx pmc440 esd |
| 1363 | |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 1364 | PPChameleonEVB_config \ |
wdenk | e55ca7e | 2004-07-01 21:40:08 +0000 | [diff] [blame] | 1365 | PPChameleonEVB_BA_25_config \ |
| 1366 | PPChameleonEVB_ME_25_config \ |
| 1367 | PPChameleonEVB_HI_25_config \ |
| 1368 | PPChameleonEVB_BA_33_config \ |
| 1369 | PPChameleonEVB_ME_33_config \ |
| 1370 | PPChameleonEVB_HI_33_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1371 | @mkdir -p $(obj)include |
wdenk | 1d6f972 | 2004-09-09 17:44:35 +0000 | [diff] [blame] | 1372 | @[ -z "$(findstring EVB_BA,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1373 | { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1374 | $(XECHO) "... BASIC model" ; \ |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 1375 | } |
wdenk | 1d6f972 | 2004-09-09 17:44:35 +0000 | [diff] [blame] | 1376 | @[ -z "$(findstring EVB_ME,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1377 | { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1378 | $(XECHO) "... MEDIUM model" ; \ |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 1379 | } |
wdenk | 1d6f972 | 2004-09-09 17:44:35 +0000 | [diff] [blame] | 1380 | @[ -z "$(findstring EVB_HI,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1381 | { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1382 | $(XECHO) "... HIGH-END model" ; \ |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 1383 | } |
wdenk | e55ca7e | 2004-07-01 21:40:08 +0000 | [diff] [blame] | 1384 | @[ -z "$(findstring _25,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1385 | { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1386 | $(XECHO) "SysClk = 25MHz" ; \ |
wdenk | e55ca7e | 2004-07-01 21:40:08 +0000 | [diff] [blame] | 1387 | } |
| 1388 | @[ -z "$(findstring _33,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1389 | { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1390 | $(XECHO) "SysClk = 33MHz" ; \ |
wdenk | e55ca7e | 2004-07-01 21:40:08 +0000 | [diff] [blame] | 1391 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1392 | @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave |
wdenk | 12f3424 | 2003-09-02 22:48:03 +0000 | [diff] [blame] | 1393 | |
Gary Jennejohn | 73ccb34 | 2008-04-28 14:04:32 +0200 | [diff] [blame] | 1394 | quad100hd_config: unconfig |
| 1395 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx quad100hd |
| 1396 | |
wdenk | 652a10c | 2005-01-09 23:48:14 +0000 | [diff] [blame] | 1397 | sbc405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1398 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx sbc405 |
wdenk | 652a10c | 2005-01-09 23:48:14 +0000 | [diff] [blame] | 1399 | |
Stefan Roese | 430f1b0 | 2007-03-28 15:03:16 +0200 | [diff] [blame] | 1400 | sequoia_config \ |
| 1401 | rainier_config: unconfig |
| 1402 | @mkdir -p $(obj)include |
| 1403 | @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \ |
| 1404 | tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h |
| 1405 | @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 1406 | |
Stefan Roese | 430f1b0 | 2007-03-28 15:03:16 +0200 | [diff] [blame] | 1407 | sequoia_nand_config \ |
| 1408 | rainier_nand_config: unconfig |
Wolfgang Denk | 63e2276 | 2007-08-02 10:11:18 +0200 | [diff] [blame] | 1409 | @mkdir -p $(obj)include $(obj)board/amcc/sequoia |
| 1410 | @mkdir -p $(obj)nand_spl/board/amcc/sequoia |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 1411 | @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h |
Stefan Roese | 430f1b0 | 2007-03-28 15:03:16 +0200 | [diff] [blame] | 1412 | @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \ |
| 1413 | tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h |
| 1414 | @$(MKCONFIG) -n $@ -a sequoia ppc ppc4xx sequoia amcc |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 1415 | @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp |
| 1416 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 1417 | |
Wolfgang Denk | 6d3e010 | 2007-01-16 18:30:50 +0100 | [diff] [blame] | 1418 | sc3_config:unconfig |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 1419 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx sc3 |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 1420 | |
John Otken | d4024bb | 2007-07-26 17:49:11 +0200 | [diff] [blame] | 1421 | taihu_config: unconfig |
| 1422 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx taihu amcc |
| 1423 | |
Stefan Roese | 5fb692c | 2007-01-18 10:25:34 +0100 | [diff] [blame] | 1424 | taishan_config: unconfig |
| 1425 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx taishan amcc |
| 1426 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1427 | VOH405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1428 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx voh405 esd |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 1429 | |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1430 | VOM405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1431 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx vom405 esd |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1432 | |
Stefan Roese | feaedfc | 2005-11-15 10:35:59 +0100 | [diff] [blame] | 1433 | CMS700_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1434 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd |
Stefan Roese | feaedfc | 2005-11-15 10:35:59 +0100 | [diff] [blame] | 1435 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1436 | W7OLMC_config \ |
| 1437 | W7OLMG_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1438 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx w7o |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1439 | |
Stefan Roese | 430f1b0 | 2007-03-28 15:03:16 +0200 | [diff] [blame] | 1440 | # Walnut & Sycamore images are identical (recognized via PVR) |
| 1441 | walnut_config \ |
| 1442 | sycamore_config: unconfig |
| 1443 | @$(MKCONFIG) -n $@ -a walnut ppc ppc4xx walnut amcc |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1444 | |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1445 | WUH405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1446 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx wuh405 esd |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1447 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1448 | XPEDITE1K_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1449 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx xpedite1k |
wdenk | ba56f62 | 2004-02-06 23:19:44 +0000 | [diff] [blame] | 1450 | |
Stefan Roese | 430f1b0 | 2007-03-28 15:03:16 +0200 | [diff] [blame] | 1451 | yosemite_config \ |
| 1452 | yellowstone_config: unconfig |
Stefan Roese | 700200c | 2007-01-30 17:04:19 +0100 | [diff] [blame] | 1453 | @mkdir -p $(obj)include |
Stefan Roese | 430f1b0 | 2007-03-28 15:03:16 +0200 | [diff] [blame] | 1454 | @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \ |
| 1455 | tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h |
Stefan Roese | 2aa54f6 | 2007-02-02 12:42:08 +0100 | [diff] [blame] | 1456 | @$(MKCONFIG) -n $@ -a yosemite ppc ppc4xx yosemite amcc |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 1457 | |
Marian Balakowicz | 6c5879f | 2006-06-30 16:30:46 +0200 | [diff] [blame] | 1458 | yucca_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1459 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx yucca amcc |
Marian Balakowicz | 6c5879f | 2006-06-30 16:30:46 +0200 | [diff] [blame] | 1460 | |
Stefan Roese | 779e975 | 2007-08-14 14:44:41 +0200 | [diff] [blame] | 1461 | zeus_config: unconfig |
| 1462 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx zeus |
| 1463 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1464 | ######################################################################### |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 1465 | ## MPC8220 Systems |
| 1466 | ######################################################################### |
Wolfgang Denk | dc17fb6 | 2005-08-03 22:32:02 +0200 | [diff] [blame] | 1467 | |
| 1468 | Alaska8220_config \ |
| 1469 | Yukon8220_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1470 | @$(MKCONFIG) $(@:_config=) ppc mpc8220 alaska |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 1471 | |
wdenk | 12b43d5 | 2005-04-05 21:57:18 +0000 | [diff] [blame] | 1472 | sorcery_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1473 | @$(MKCONFIG) $(@:_config=) ppc mpc8220 sorcery |
wdenk | 12b43d5 | 2005-04-05 21:57:18 +0000 | [diff] [blame] | 1474 | |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 1475 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1476 | ## MPC824x Systems |
| 1477 | ######################################################################### |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1478 | xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1)))))) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1479 | |
wdenk | 0332990 | 2003-06-20 22:36:30 +0000 | [diff] [blame] | 1480 | A3000_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1481 | @$(MKCONFIG) $(@:_config=) ppc mpc824x a3000 |
wdenk | 0332990 | 2003-06-20 22:36:30 +0000 | [diff] [blame] | 1482 | |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 1483 | barco_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1484 | @$(MKCONFIG) $(@:_config=) ppc mpc824x barco |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 1485 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1486 | BMW_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1487 | @$(MKCONFIG) $(@:_config=) ppc mpc824x bmw |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1488 | |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 1489 | CPC45_config \ |
| 1490 | CPC45_ROMBOOT_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1491 | @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc824x cpc45 |
| 1492 | @cd $(obj)include ; \ |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 1493 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ |
| 1494 | echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1495 | $(XECHO) "... booting from 8-bit flash" ; \ |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 1496 | else \ |
| 1497 | echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1498 | $(XECHO) "... booting from 64-bit flash" ; \ |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 1499 | fi; \ |
| 1500 | echo "export CONFIG_BOOT_ROM" >> config.mk; |
| 1501 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1502 | CU824_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1503 | @$(MKCONFIG) $(@:_config=) ppc mpc824x cu824 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1504 | |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 1505 | debris_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1506 | @$(MKCONFIG) $(@:_config=) ppc mpc824x debris etin |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 1507 | |
wdenk | 80885a9 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 1508 | eXalion_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1509 | @$(MKCONFIG) $(@:_config=) ppc mpc824x eXalion |
wdenk | 80885a9 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 1510 | |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 1511 | HIDDEN_DRAGON_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1512 | @$(MKCONFIG) $(@:_config=) ppc mpc824x hidden_dragon |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 1513 | |
Wolfgang Denk | 53dd6ce | 2006-07-21 11:29:20 +0200 | [diff] [blame] | 1514 | kvme080_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1515 | @$(MKCONFIG) $(@:_config=) ppc mpc824x kvme080 etin |
Wolfgang Denk | 53dd6ce | 2006-07-21 11:29:20 +0200 | [diff] [blame] | 1516 | |
Guennadi Liakhovetski | 61525f2 | 2008-03-31 01:32:15 +0200 | [diff] [blame] | 1517 | # HDLAN is broken ATM. Should be fixed as soon as hardware is available and as |
| 1518 | # time permits. |
| 1519 | #linkstation_HDLAN_config \ |
| 1520 | # Remove this line when HDLAN is fixed |
| 1521 | linkstation_HGLAN_config: unconfig |
| 1522 | @mkdir -p $(obj)include |
| 1523 | @case $@ in \ |
| 1524 | *HGLAN*) echo "#define CONFIG_HGLAN 1" >$(obj)include/config.h; ;; \ |
| 1525 | *HDLAN*) echo "#define CONFIG_HLAN 1" >$(obj)include/config.h; ;; \ |
| 1526 | esac |
| 1527 | @$(MKCONFIG) -n $@ -a linkstation ppc mpc824x linkstation |
| 1528 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1529 | MOUSSE_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1530 | @$(MKCONFIG) $(@:_config=) ppc mpc824x mousse |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1531 | |
| 1532 | MUSENKI_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1533 | @$(MKCONFIG) $(@:_config=) ppc mpc824x musenki |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1534 | |
wdenk | b4676a2 | 2003-12-07 19:24:00 +0000 | [diff] [blame] | 1535 | MVBLUE_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1536 | @$(MKCONFIG) $(@:_config=) ppc mpc824x mvblue |
wdenk | b4676a2 | 2003-12-07 19:24:00 +0000 | [diff] [blame] | 1537 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1538 | OXC_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1539 | @$(MKCONFIG) $(@:_config=) ppc mpc824x oxc |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1540 | |
| 1541 | PN62_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1542 | @$(MKCONFIG) $(@:_config=) ppc mpc824x pn62 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1543 | |
| 1544 | Sandpoint8240_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1545 | @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1546 | |
| 1547 | Sandpoint8245_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1548 | @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1549 | |
wdenk | 466b741 | 2004-07-10 22:35:59 +0000 | [diff] [blame] | 1550 | sbc8240_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1551 | @$(MKCONFIG) $(@:_config=) ppc mpc824x sbc8240 |
wdenk | 466b741 | 2004-07-10 22:35:59 +0000 | [diff] [blame] | 1552 | |
wdenk | d1cbe85 | 2003-06-28 17:24:46 +0000 | [diff] [blame] | 1553 | SL8245_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1554 | @$(MKCONFIG) $(@:_config=) ppc mpc824x sl8245 |
wdenk | d1cbe85 | 2003-06-28 17:24:46 +0000 | [diff] [blame] | 1555 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1556 | utx8245_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1557 | @$(MKCONFIG) $(@:_config=) ppc mpc824x utx8245 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1558 | |
| 1559 | ######################################################################### |
| 1560 | ## MPC8260 Systems |
| 1561 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1562 | |
wdenk | 54387ac | 2003-10-08 22:45:44 +0000 | [diff] [blame] | 1563 | atc_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1564 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 atc |
wdenk | 54387ac | 2003-10-08 22:45:44 +0000 | [diff] [blame] | 1565 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1566 | cogent_mpc8260_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1567 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 cogent |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1568 | |
| 1569 | CPU86_config \ |
| 1570 | CPU86_ROMBOOT_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1571 | @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu86 |
| 1572 | @cd $(obj)include ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1573 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ |
| 1574 | echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1575 | $(XECHO) "... booting from 8-bit flash" ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1576 | else \ |
| 1577 | echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1578 | $(XECHO) "... booting from 64-bit flash" ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1579 | fi; \ |
| 1580 | echo "export CONFIG_BOOT_ROM" >> config.mk; |
| 1581 | |
wdenk | 384cc68 | 2005-04-03 22:35:21 +0000 | [diff] [blame] | 1582 | CPU87_config \ |
| 1583 | CPU87_ROMBOOT_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1584 | @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu87 |
| 1585 | @cd $(obj)include ; \ |
wdenk | 384cc68 | 2005-04-03 22:35:21 +0000 | [diff] [blame] | 1586 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ |
| 1587 | echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1588 | $(XECHO) "... booting from 8-bit flash" ; \ |
wdenk | 384cc68 | 2005-04-03 22:35:21 +0000 | [diff] [blame] | 1589 | else \ |
| 1590 | echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1591 | $(XECHO) "... booting from 64-bit flash" ; \ |
wdenk | 384cc68 | 2005-04-03 22:35:21 +0000 | [diff] [blame] | 1592 | fi; \ |
| 1593 | echo "export CONFIG_BOOT_ROM" >> config.mk; |
| 1594 | |
Wolfgang Denk | f901a83 | 2005-08-06 01:42:58 +0200 | [diff] [blame] | 1595 | ep8248_config \ |
| 1596 | ep8248E_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1597 | @$(MKCONFIG) ep8248 ppc mpc8260 ep8248 |
Wolfgang Denk | f901a83 | 2005-08-06 01:42:58 +0200 | [diff] [blame] | 1598 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1599 | ep8260_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1600 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep8260 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1601 | |
Wolfgang Denk | 8d4ac79 | 2006-10-09 00:35:30 +0200 | [diff] [blame] | 1602 | ep82xxm_config: unconfig |
Grant Likely | 90b1b2d | 2007-07-03 00:17:28 -0600 | [diff] [blame] | 1603 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep82xxm |
Wolfgang Denk | 8d4ac79 | 2006-10-09 00:35:30 +0200 | [diff] [blame] | 1604 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1605 | gw8260_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1606 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 gw8260 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1607 | |
| 1608 | hymod_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1609 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 hymod |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1610 | |
wdenk | 9dd41a7 | 2005-05-12 22:48:09 +0000 | [diff] [blame] | 1611 | IDS8247_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1612 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 ids8247 |
wdenk | 9dd41a7 | 2005-05-12 22:48:09 +0000 | [diff] [blame] | 1613 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1614 | IPHASE4539_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1615 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 iphase4539 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1616 | |
wdenk | c3c7f86 | 2004-06-09 14:47:54 +0000 | [diff] [blame] | 1617 | ISPAN_config \ |
| 1618 | ISPAN_REVB_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1619 | @mkdir -p $(obj)include |
wdenk | c3c7f86 | 2004-06-09 14:47:54 +0000 | [diff] [blame] | 1620 | @if [ "$(findstring _REVB_,$@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1621 | echo "#define CFG_REV_B" > $(obj)include/config.h ; \ |
wdenk | c3c7f86 | 2004-06-09 14:47:54 +0000 | [diff] [blame] | 1622 | fi |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1623 | @$(MKCONFIG) -a ISPAN ppc mpc8260 ispan |
wdenk | c3c7f86 | 2004-06-09 14:47:54 +0000 | [diff] [blame] | 1624 | |
Heiko Schocher | ac9db06 | 2008-01-11 01:12:08 +0100 | [diff] [blame] | 1625 | mgcoge_config : unconfig |
| 1626 | @$(MKCONFIG) mgcoge ppc mpc8260 mgcoge |
| 1627 | |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1628 | MPC8260ADS_config \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1629 | MPC8260ADS_lowboot_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1630 | MPC8260ADS_33MHz_config \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1631 | MPC8260ADS_33MHz_lowboot_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1632 | MPC8260ADS_40MHz_config \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1633 | MPC8260ADS_40MHz_lowboot_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1634 | MPC8272ADS_config \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1635 | MPC8272ADS_lowboot_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1636 | PQ2FADS_config \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1637 | PQ2FADS_lowboot_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1638 | PQ2FADS-VR_config \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1639 | PQ2FADS-VR_lowboot_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1640 | PQ2FADS-ZU_config \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1641 | PQ2FADS-ZU_lowboot_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1642 | PQ2FADS-ZU_66MHz_config \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1643 | PQ2FADS-ZU_66MHz_lowboot_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1644 | : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1645 | @mkdir -p $(obj)include |
Jon Loeliger | b7e24d2 | 2008-03-05 18:05:45 -0600 | [diff] [blame] | 1646 | @mkdir -p $(obj)board/freescale/mpc8260ads |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1647 | $(if $(findstring PQ2FADS,$@), \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1648 | @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > $(obj)include/config.h, \ |
| 1649 | @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1650 | $(if $(findstring MHz,$@), \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1651 | @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1652 | $(if $(findstring VR,$@), \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1653 | @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h)) |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1654 | @[ -z "$(findstring lowboot_,$@)" ] || \ |
Jon Loeliger | b7e24d2 | 2008-03-05 18:05:45 -0600 | [diff] [blame] | 1655 | { echo "TEXT_BASE = 0xFF800000" >$(obj)board/freescale/mpc8260ads/config.tmp ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1656 | $(XECHO) "... with lowboot configuration" ; \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1657 | } |
Jon Loeliger | b7e24d2 | 2008-03-05 18:05:45 -0600 | [diff] [blame] | 1658 | @$(MKCONFIG) -a MPC8260ADS ppc mpc8260 mpc8260ads freescale |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1659 | |
wdenk | db2f721f | 2003-03-06 00:58:30 +0000 | [diff] [blame] | 1660 | MPC8266ADS_config: unconfig |
Jon Loeliger | aa3511e | 2008-03-05 18:05:46 -0600 | [diff] [blame] | 1661 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 mpc8266ads freescale |
wdenk | db2f721f | 2003-03-06 00:58:30 +0000 | [diff] [blame] | 1662 | |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1663 | # PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash |
wdenk | 10f6701 | 2003-03-25 18:06:06 +0000 | [diff] [blame] | 1664 | PM825_config \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1665 | PM825_ROMBOOT_config \ |
| 1666 | PM825_BIGFLASH_config \ |
| 1667 | PM825_ROMBOOT_BIGFLASH_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1668 | PM826_config \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1669 | PM826_ROMBOOT_config \ |
| 1670 | PM826_BIGFLASH_config \ |
| 1671 | PM826_ROMBOOT_BIGFLASH_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1672 | @mkdir -p $(obj)include |
| 1673 | @mkdir -p $(obj)board/pm826 |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1674 | @if [ "$(findstring PM825_,$@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1675 | echo "#define CONFIG_PCI" >$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1676 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1677 | >$(obj)include/config.h ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1678 | fi |
| 1679 | @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1680 | $(XECHO) "... booting from 8-bit flash" ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1681 | echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \ |
| 1682 | echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1683 | if [ "$(findstring _BIGFLASH_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1684 | $(XECHO) "... with 32 MB Flash" ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1685 | echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1686 | fi; \ |
| 1687 | else \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1688 | $(XECHO) "... booting from 64-bit flash" ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1689 | if [ "$(findstring _BIGFLASH_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1690 | $(XECHO) "... with 32 MB Flash" ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1691 | echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \ |
| 1692 | echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1693 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1694 | echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1695 | fi; \ |
| 1696 | fi |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1697 | @$(MKCONFIG) -a PM826 ppc mpc8260 pm826 |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1698 | |
| 1699 | PM828_config \ |
| 1700 | PM828_PCI_config \ |
| 1701 | PM828_ROMBOOT_config \ |
| 1702 | PM828_ROMBOOT_PCI_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1703 | @mkdir -p $(obj)include |
| 1704 | @mkdir -p $(obj)board/pm826 |
Marian Balakowicz | 1707626 | 2006-04-05 20:37:11 +0200 | [diff] [blame] | 1705 | @if [ "$(findstring _PCI_,$@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1706 | echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1707 | $(XECHO) "... with PCI enabled" ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1708 | fi |
| 1709 | @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1710 | $(XECHO) "... booting from 8-bit flash" ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1711 | echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \ |
| 1712 | echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1713 | fi |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1714 | @$(MKCONFIG) -a PM828 ppc mpc8260 pm828 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1715 | |
| 1716 | ppmc8260_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1717 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 ppmc8260 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1718 | |
wdenk | 8b0bfc6 | 2005-04-03 23:11:38 +0000 | [diff] [blame] | 1719 | Rattler8248_config \ |
| 1720 | Rattler_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1721 | @mkdir -p $(obj)include |
wdenk | 8b0bfc6 | 2005-04-03 23:11:38 +0000 | [diff] [blame] | 1722 | $(if $(findstring 8248,$@), \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1723 | @echo "#define CONFIG_MPC8248" > $(obj)include/config.h) |
| 1724 | @$(MKCONFIG) -a Rattler ppc mpc8260 rattler |
wdenk | 8b0bfc6 | 2005-04-03 23:11:38 +0000 | [diff] [blame] | 1725 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1726 | RPXsuper_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1727 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 rpxsuper |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1728 | |
| 1729 | rsdproto_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1730 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 rsdproto |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1731 | |
| 1732 | sacsng_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1733 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 sacsng |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1734 | |
| 1735 | sbc8260_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1736 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 sbc8260 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1737 | |
| 1738 | SCM_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1739 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 SCM siemens |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1740 | |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1741 | TQM8255_AA_config \ |
| 1742 | TQM8260_AA_config \ |
| 1743 | TQM8260_AB_config \ |
| 1744 | TQM8260_AC_config \ |
| 1745 | TQM8260_AD_config \ |
| 1746 | TQM8260_AE_config \ |
| 1747 | TQM8260_AF_config \ |
| 1748 | TQM8260_AG_config \ |
| 1749 | TQM8260_AH_config \ |
Wolfgang Denk | 1f62bc2 | 2006-03-07 00:32:07 +0100 | [diff] [blame] | 1750 | TQM8260_AI_config \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1751 | TQM8265_AA_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1752 | @mkdir -p $(obj)include |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1753 | @case "$@" in \ |
Wolfgang Denk | 1f62bc2 | 2006-03-07 00:32:07 +0100 | [diff] [blame] | 1754 | TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \ |
| 1755 | TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \ |
| 1756 | TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \ |
| 1757 | TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \ |
| 1758 | TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \ |
| 1759 | TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \ |
| 1760 | TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \ |
| 1761 | TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \ |
| 1762 | TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \ |
| 1763 | TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \ |
| 1764 | TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1765 | esac; \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1766 | if [ "$${CTYPE}" != "MPC8260" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1767 | echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1768 | fi; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1769 | echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1770 | echo "... with $${CFREQ}MHz system clock" ; \ |
Wolfgang Denk | 1aaab9b | 2008-01-02 15:54:45 +0100 | [diff] [blame] | 1771 | if [ "$${CACHE}" = "yes" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1772 | echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1773 | $(XECHO) "... with L2 Cache support" ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1774 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1775 | echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1776 | $(XECHO) "... without L2 Cache support" ; \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1777 | fi; \ |
Wolfgang Denk | 1aaab9b | 2008-01-02 15:54:45 +0100 | [diff] [blame] | 1778 | if [ "$${BMODE}" = "60x" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1779 | echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1780 | $(XECHO) "... with 60x Bus Mode" ; \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1781 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1782 | echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1783 | $(XECHO) "... without 60x Bus Mode" ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1784 | fi |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1785 | @$(MKCONFIG) -a TQM8260 ppc mpc8260 tqm8260 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1786 | |
Heiko Schocher | fa23044 | 2006-12-21 17:17:02 +0100 | [diff] [blame] | 1787 | TQM8272_config: unconfig |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 1788 | @$(MKCONFIG) TQM8272 ppc mpc8260 tqm8272 |
Heiko Schocher | fa23044 | 2006-12-21 17:17:02 +0100 | [diff] [blame] | 1789 | |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 1790 | VoVPN-GW_66MHz_config \ |
| 1791 | VoVPN-GW_100MHz_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1792 | @mkdir -p $(obj)include |
| 1793 | @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h |
| 1794 | @$(MKCONFIG) -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 1795 | |
wdenk | 54387ac | 2003-10-08 22:45:44 +0000 | [diff] [blame] | 1796 | ZPC1900_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1797 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 zpc1900 |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 1798 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 1799 | ######################################################################### |
| 1800 | ## Coldfire |
| 1801 | ######################################################################### |
| 1802 | |
TsiChungLiew | 1552af7 | 2008-01-14 17:43:33 -0600 | [diff] [blame] | 1803 | M52277EVB_config: unconfig |
| 1804 | @$(MKCONFIG) -a M52277EVB m68k mcf5227x m52277evb freescale |
| 1805 | |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 1806 | M5235EVB_config \ |
| 1807 | M5235EVB_Flash16_config \ |
| 1808 | M5235EVB_Flash32_config: unconfig |
| 1809 | @case "$@" in \ |
| 1810 | M5235EVB_config) FLASH=16;; \ |
| 1811 | M5235EVB_Flash16_config) FLASH=16;; \ |
| 1812 | M5235EVB_Flash32_config) FLASH=32;; \ |
| 1813 | esac; \ |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 1814 | if [ "$${FLASH}" != "16" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1815 | echo "#define NORFLASH_PS32BIT 1" >> $(obj)include/config.h ; \ |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 1816 | echo "TEXT_BASE = 0xFFC00000" > $(obj)board/freescale/m5235evb/config.tmp ; \ |
| 1817 | cp $(obj)board/freescale/m5235evb/u-boot.32 $(obj)board/freescale/m5235evb/u-boot.lds ; \ |
| 1818 | else \ |
| 1819 | echo "TEXT_BASE = 0xFFE00000" > $(obj)board/freescale/m5235evb/config.tmp ; \ |
| 1820 | cp $(obj)board/freescale/m5235evb/u-boot.16 $(obj)board/freescale/m5235evb/u-boot.lds ; \ |
| 1821 | fi |
| 1822 | @$(MKCONFIG) -a M5235EVB m68k mcf523x m5235evb freescale |
| 1823 | |
TsiChungLiew | a605aac | 2007-08-16 05:04:31 -0500 | [diff] [blame] | 1824 | M5249EVB_config : unconfig |
| 1825 | @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5249evb freescale |
| 1826 | |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 1827 | M5253EVBE_config : unconfig |
| 1828 | @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5253evbe freescale |
| 1829 | |
Wolfgang Denk | 7481266 | 2005-12-12 16:06:05 +0100 | [diff] [blame] | 1830 | cobra5272_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1831 | @$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272 |
Wolfgang Denk | 7481266 | 2005-12-12 16:06:05 +0100 | [diff] [blame] | 1832 | |
Wolfgang Denk | 4176c79 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 1833 | EB+MCF-EV123_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1834 | @mkdir -p $(obj)include |
| 1835 | @mkdir -p $(obj)board/BuS/EB+MCF-EV123 |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1836 | @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk |
| 1837 | @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS |
Wolfgang Denk | 4176c79 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 1838 | |
| 1839 | EB+MCF-EV123_internal_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1840 | @mkdir -p $(obj)include |
| 1841 | @mkdir -p $(obj)board/BuS/EB+MCF-EV123 |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1842 | @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk |
| 1843 | @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS |
Wolfgang Denk | 4176c79 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 1844 | |
Bartlomiej Sieka | daa6e41 | 2006-12-20 00:27:32 +0100 | [diff] [blame] | 1845 | idmr_config : unconfig |
| 1846 | @$(MKCONFIG) $(@:_config=) m68k mcf52x2 idmr |
| 1847 | |
Wolfgang Denk | 4176c79 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 1848 | M5271EVB_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1849 | @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb |
Wolfgang Denk | 4176c79 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 1850 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 1851 | M5272C3_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1852 | @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3 |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 1853 | |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 1854 | M5275EVB_config : unconfig |
| 1855 | @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5275evb freescale |
| 1856 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 1857 | M5282EVB_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1858 | @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 1859 | |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1860 | TASREG_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1861 | @$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1862 | |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 1863 | M5329AFEE_config \ |
| 1864 | M5329BFEE_config : unconfig |
| 1865 | @case "$@" in \ |
| 1866 | M5329AFEE_config) NAND=0;; \ |
| 1867 | M5329BFEE_config) NAND=16;; \ |
| 1868 | esac; \ |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 1869 | if [ "$${NAND}" != "0" ] ; then \ |
TsiChungLiew | ab77bc5 | 2007-08-15 15:39:17 -0500 | [diff] [blame] | 1870 | echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \ |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 1871 | fi |
| 1872 | @$(MKCONFIG) -a M5329EVB m68k mcf532x m5329evb freescale |
| 1873 | |
TsiChungLiew | aa5f1f9 | 2008-01-14 17:23:08 -0600 | [diff] [blame] | 1874 | M5373EVB_config : unconfig |
| 1875 | @case "$@" in \ |
| 1876 | M5373EVB_config) NAND=16;; \ |
| 1877 | esac; \ |
TsiChungLiew | aa5f1f9 | 2008-01-14 17:23:08 -0600 | [diff] [blame] | 1878 | if [ "$${NAND}" != "0" ] ; then \ |
| 1879 | echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \ |
| 1880 | fi |
| 1881 | @$(MKCONFIG) -a M5373EVB m68k mcf532x m5373evb freescale |
| 1882 | |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 1883 | M54455EVB_config \ |
| 1884 | M54455EVB_atmel_config \ |
| 1885 | M54455EVB_intel_config \ |
| 1886 | M54455EVB_a33_config \ |
| 1887 | M54455EVB_a66_config \ |
| 1888 | M54455EVB_i33_config \ |
| 1889 | M54455EVB_i66_config : unconfig |
| 1890 | @case "$@" in \ |
| 1891 | M54455EVB_config) FLASH=ATMEL; FREQ=33333333;; \ |
| 1892 | M54455EVB_atmel_config) FLASH=ATMEL; FREQ=33333333;; \ |
| 1893 | M54455EVB_intel_config) FLASH=INTEL; FREQ=33333333;; \ |
| 1894 | M54455EVB_a33_config) FLASH=ATMEL; FREQ=33333333;; \ |
| 1895 | M54455EVB_a66_config) FLASH=ATMEL; FREQ=66666666;; \ |
| 1896 | M54455EVB_i33_config) FLASH=INTEL; FREQ=33333333;; \ |
| 1897 | M54455EVB_i66_config) FLASH=INTEL; FREQ=66666666;; \ |
| 1898 | esac; \ |
Wolfgang Denk | 1aaab9b | 2008-01-02 15:54:45 +0100 | [diff] [blame] | 1899 | if [ "$${FLASH}" = "INTEL" ] ; then \ |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 1900 | echo "#undef CFG_ATMEL_BOOT" >> $(obj)include/config.h ; \ |
TsiChungLiew | e8ee8f3 | 2007-10-25 17:16:22 -0500 | [diff] [blame] | 1901 | echo "TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54455evb/config.tmp ; \ |
| 1902 | cp $(obj)board/freescale/m54455evb/u-boot.int $(obj)board/freescale/m54455evb/u-boot.lds ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1903 | $(XECHO) "... with INTEL boot..." ; \ |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 1904 | else \ |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 1905 | echo "#define CFG_ATMEL_BOOT" >> $(obj)include/config.h ; \ |
TsiChungLiew | e8ee8f3 | 2007-10-25 17:16:22 -0500 | [diff] [blame] | 1906 | echo "TEXT_BASE = 0x04000000" > $(obj)board/freescale/m54455evb/config.tmp ; \ |
| 1907 | cp $(obj)board/freescale/m54455evb/u-boot.atm $(obj)board/freescale/m54455evb/u-boot.lds ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1908 | $(XECHO) "... with ATMEL boot..." ; \ |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 1909 | fi; \ |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 1910 | echo "#define CFG_INPUT_CLKSRC $${FREQ}" >> $(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1911 | $(XECHO) "... with $${FREQ}Hz input clock" |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 1912 | @$(MKCONFIG) -a M54455EVB m68k mcf5445x m54455evb freescale |
| 1913 | |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 1914 | M5475AFE_config \ |
| 1915 | M5475BFE_config \ |
| 1916 | M5475CFE_config \ |
| 1917 | M5475DFE_config \ |
| 1918 | M5475EFE_config \ |
| 1919 | M5475FFE_config \ |
| 1920 | M5475GFE_config : unconfig |
| 1921 | @case "$@" in \ |
| 1922 | M5475AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \ |
| 1923 | M5475BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \ |
| 1924 | M5475CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \ |
| 1925 | M5475DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \ |
| 1926 | M5475EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \ |
| 1927 | M5475FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \ |
| 1928 | M5475GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \ |
| 1929 | esac; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 1930 | echo "#define CFG_BUSCLK 133333333" > $(obj)include/config.h ; \ |
| 1931 | echo "#define CFG_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \ |
| 1932 | echo "#define CFG_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \ |
| 1933 | if [ "$${RAM1}" != "0" ] ; then \ |
| 1934 | echo "#define CFG_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \ |
| 1935 | fi; \ |
| 1936 | if [ "$${CODE}" != "0" ] ; then \ |
| 1937 | echo "#define CFG_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \ |
| 1938 | fi; \ |
| 1939 | if [ "$${VID}" == "1" ] ; then \ |
| 1940 | echo "#define CFG_VIDEO" >> $(obj)include/config.h ; \ |
| 1941 | fi; \ |
| 1942 | if [ "$${USB}" == "1" ] ; then \ |
| 1943 | echo "#define CFG_USBCTRL" >> $(obj)include/config.h ; \ |
| 1944 | fi |
| 1945 | @$(MKCONFIG) -a M5475EVB m68k mcf547x_8x m547xevb freescale |
| 1946 | |
| 1947 | M5485AFE_config \ |
| 1948 | M5485BFE_config \ |
| 1949 | M5485CFE_config \ |
| 1950 | M5485DFE_config \ |
| 1951 | M5485EFE_config \ |
| 1952 | M5485FFE_config \ |
| 1953 | M5485GFE_config \ |
| 1954 | M5485HFE_config : unconfig |
| 1955 | @case "$@" in \ |
| 1956 | M5485AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \ |
| 1957 | M5485BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \ |
| 1958 | M5485CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \ |
| 1959 | M5485DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \ |
| 1960 | M5485EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \ |
| 1961 | M5485FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \ |
| 1962 | M5485GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \ |
TsiChungLiew | 4d264ef | 2008-01-30 15:08:15 -0600 | [diff] [blame] | 1963 | M5485HFE_config) BOOT=2;CODE=16;VID=1;USB=0;RAM=64;RAM1=0;; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 1964 | esac; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 1965 | echo "#define CFG_BUSCLK 100000000" > $(obj)include/config.h ; \ |
| 1966 | echo "#define CFG_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \ |
| 1967 | echo "#define CFG_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \ |
| 1968 | if [ "$${RAM1}" != "0" ] ; then \ |
| 1969 | echo "#define CFG_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \ |
| 1970 | fi; \ |
| 1971 | if [ "$${CODE}" != "0" ] ; then \ |
| 1972 | echo "#define CFG_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \ |
| 1973 | fi; \ |
| 1974 | if [ "$${VID}" == "1" ] ; then \ |
| 1975 | echo "#define CFG_VIDEO" >> $(obj)include/config.h ; \ |
| 1976 | fi; \ |
| 1977 | if [ "$${USB}" == "1" ] ; then \ |
| 1978 | echo "#define CFG_USBCTRL" >> $(obj)include/config.h ; \ |
| 1979 | fi |
| 1980 | @$(MKCONFIG) -a M5485EVB m68k mcf547x_8x m548xevb freescale |
| 1981 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1982 | ######################################################################### |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1983 | ## MPC83xx Systems |
| 1984 | ######################################################################### |
| 1985 | |
Kim Phillips | 5c5d324 | 2007-04-25 12:34:38 -0500 | [diff] [blame] | 1986 | MPC8313ERDB_33_config \ |
| 1987 | MPC8313ERDB_66_config: unconfig |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 1988 | @mkdir -p $(obj)include |
Wolfgang Denk | c6fe4da | 2008-03-09 02:13:19 +0100 | [diff] [blame] | 1989 | @if [ "$(findstring _33_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1990 | $(XECHO) -n "...33M ..." ; \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 1991 | echo "#define CFG_33MHZ" >>$(obj)include/config.h ; \ |
Kim Phillips | 5c5d324 | 2007-04-25 12:34:38 -0500 | [diff] [blame] | 1992 | fi ; \ |
| 1993 | if [ "$(findstring _66_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1994 | $(XECHO) -n "...66M..." ; \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 1995 | echo "#define CFG_66MHZ" >>$(obj)include/config.h ; \ |
Kim Phillips | 5c5d324 | 2007-04-25 12:34:38 -0500 | [diff] [blame] | 1996 | fi ; |
Kim Phillips | e58fe95 | 2007-08-16 22:53:09 -0500 | [diff] [blame] | 1997 | @$(MKCONFIG) -a MPC8313ERDB ppc mpc83xx mpc8313erdb freescale |
Kim Phillips | 5c5d324 | 2007-04-25 12:34:38 -0500 | [diff] [blame] | 1998 | |
Dave Liu | 8bd522c | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 1999 | MPC8315ERDB_config: unconfig |
| 2000 | @$(MKCONFIG) -a MPC8315ERDB ppc mpc83xx mpc8315erdb freescale |
| 2001 | |
Kim Phillips | 1c274c4 | 2007-07-25 19:25:33 -0500 | [diff] [blame] | 2002 | MPC8323ERDB_config: unconfig |
| 2003 | @$(MKCONFIG) -a MPC8323ERDB ppc mpc83xx mpc8323erdb freescale |
| 2004 | |
Kim Phillips | 4decd84 | 2007-01-24 17:18:37 -0600 | [diff] [blame] | 2005 | MPC832XEMDS_config \ |
| 2006 | MPC832XEMDS_HOST_33_config \ |
| 2007 | MPC832XEMDS_HOST_66_config \ |
Tony Li | 281df45 | 2007-10-18 17:47:19 +0800 | [diff] [blame] | 2008 | MPC832XEMDS_SLAVE_config \ |
| 2009 | MPC832XEMDS_ATM_config: unconfig |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 2010 | @mkdir -p $(obj)include |
Wolfgang Denk | c6fe4da | 2008-03-09 02:13:19 +0100 | [diff] [blame] | 2011 | @if [ "$(findstring _HOST_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2012 | $(XECHO) -n "... PCI HOST " ; \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 2013 | echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ |
Kim Phillips | 4decd84 | 2007-01-24 17:18:37 -0600 | [diff] [blame] | 2014 | fi ; \ |
| 2015 | if [ "$(findstring _SLAVE_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2016 | $(XECHO) "...PCI SLAVE 66M" ; \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 2017 | echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ |
| 2018 | echo "#define CONFIG_PCISLAVE" >>$(obj)include/config.h ; \ |
Kim Phillips | 4decd84 | 2007-01-24 17:18:37 -0600 | [diff] [blame] | 2019 | fi ; \ |
| 2020 | if [ "$(findstring _33_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2021 | $(XECHO) -n "...33M ..." ; \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 2022 | echo "#define PCI_33M" >>$(obj)include/config.h ; \ |
Tony Li | 281df45 | 2007-10-18 17:47:19 +0800 | [diff] [blame] | 2023 | echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \ |
Kim Phillips | 4decd84 | 2007-01-24 17:18:37 -0600 | [diff] [blame] | 2024 | fi ; \ |
| 2025 | if [ "$(findstring _66_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2026 | $(XECHO) -n "...66M..." ; \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 2027 | echo "#define PCI_66M" >>$(obj)include/config.h ; \ |
Tony Li | 281df45 | 2007-10-18 17:47:19 +0800 | [diff] [blame] | 2028 | echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \ |
| 2029 | fi ; \ |
| 2030 | if [ "$(findstring _ATM_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2031 | $(XECHO) -n "...ATM..." ; \ |
Tony Li | 281df45 | 2007-10-18 17:47:19 +0800 | [diff] [blame] | 2032 | echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 2033 | echo "#define CONFIG_PQ_MDS_PIB_ATM 1" >>$(obj)include/config.h ; \ |
Kim Phillips | 4decd84 | 2007-01-24 17:18:37 -0600 | [diff] [blame] | 2034 | fi ; |
Kim Phillips | e58fe95 | 2007-08-16 22:53:09 -0500 | [diff] [blame] | 2035 | @$(MKCONFIG) -a MPC832XEMDS ppc mpc83xx mpc832xemds freescale |
Marian Balakowicz | e6f2e90 | 2005-10-11 19:09:42 +0200 | [diff] [blame] | 2036 | |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 2037 | MPC8349EMDS_config: unconfig |
Kim Phillips | e58fe95 | 2007-08-16 22:53:09 -0500 | [diff] [blame] | 2038 | @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349emds freescale |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 2039 | |
Timur Tabi | 7a78f14 | 2007-01-31 15:54:29 -0600 | [diff] [blame] | 2040 | MPC8349ITX_config \ |
| 2041 | MPC8349ITX_LOWBOOT_config \ |
| 2042 | MPC8349ITXGP_config: unconfig |
| 2043 | @mkdir -p $(obj)include |
Sam Sparks | e21659e | 2007-09-14 11:14:42 -0600 | [diff] [blame] | 2044 | @mkdir -p $(obj)board/freescale/mpc8349itx |
Timur Tabi | 7a78f14 | 2007-01-31 15:54:29 -0600 | [diff] [blame] | 2045 | @echo "#define CONFIG_$(subst _LOWBOOT,,$(@:_config=))" >> $(obj)include/config.h |
| 2046 | @if [ "$(findstring GP,$@)" ] ; then \ |
Sam Sparks | e21659e | 2007-09-14 11:14:42 -0600 | [diff] [blame] | 2047 | echo "TEXT_BASE = 0xFE000000" >$(obj)board/freescale/mpc8349itx/config.tmp ; \ |
Timur Tabi | 7a78f14 | 2007-01-31 15:54:29 -0600 | [diff] [blame] | 2048 | fi |
| 2049 | @if [ "$(findstring LOWBOOT,$@)" ] ; then \ |
Sam Sparks | e21659e | 2007-09-14 11:14:42 -0600 | [diff] [blame] | 2050 | echo "TEXT_BASE = 0xFE000000" >$(obj)board/freescale/mpc8349itx/config.tmp ; \ |
Timur Tabi | 7a78f14 | 2007-01-31 15:54:29 -0600 | [diff] [blame] | 2051 | fi |
Kim Phillips | e58fe95 | 2007-08-16 22:53:09 -0500 | [diff] [blame] | 2052 | @$(MKCONFIG) -a -n $(@:_config=) MPC8349ITX ppc mpc83xx mpc8349itx freescale |
Kim Phillips | 4decd84 | 2007-01-24 17:18:37 -0600 | [diff] [blame] | 2053 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 2054 | MPC8360EMDS_config \ |
| 2055 | MPC8360EMDS_HOST_33_config \ |
| 2056 | MPC8360EMDS_HOST_66_config \ |
Tony Li | 281df45 | 2007-10-18 17:47:19 +0800 | [diff] [blame] | 2057 | MPC8360EMDS_SLAVE_config \ |
| 2058 | MPC8360EMDS_ATM_config: unconfig |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 2059 | @mkdir -p $(obj)include |
Wolfgang Denk | c6fe4da | 2008-03-09 02:13:19 +0100 | [diff] [blame] | 2060 | @if [ "$(findstring _HOST_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2061 | $(XECHO) -n "... PCI HOST " ; \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 2062 | echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 2063 | fi ; \ |
| 2064 | if [ "$(findstring _SLAVE_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2065 | $(XECHO) "...PCI SLAVE 66M" ; \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 2066 | echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ |
| 2067 | echo "#define CONFIG_PCISLAVE" >>$(obj)include/config.h ; \ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 2068 | fi ; \ |
| 2069 | if [ "$(findstring _33_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2070 | $(XECHO) -n "...33M ..." ; \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 2071 | echo "#define PCI_33M" >>$(obj)include/config.h ; \ |
Tony Li | 281df45 | 2007-10-18 17:47:19 +0800 | [diff] [blame] | 2072 | echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 2073 | fi ; \ |
| 2074 | if [ "$(findstring _66_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2075 | $(XECHO) -n "...66M..." ; \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 2076 | echo "#define PCI_66M" >>$(obj)include/config.h ; \ |
Tony Li | 281df45 | 2007-10-18 17:47:19 +0800 | [diff] [blame] | 2077 | echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \ |
| 2078 | fi ; \ |
| 2079 | if [ "$(findstring _ATM_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2080 | $(XECHO) -n "...ATM..." ; \ |
Tony Li | 281df45 | 2007-10-18 17:47:19 +0800 | [diff] [blame] | 2081 | echo "#define CONFIG_PQ_MDS_PIB 1" >>$(obj)include/config.h ; \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 2082 | echo "#define CONFIG_PQ_MDS_PIB_ATM 1" >>$(obj)include/config.h ; \ |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 2083 | fi ; |
Kim Phillips | e58fe95 | 2007-08-16 22:53:09 -0500 | [diff] [blame] | 2084 | @$(MKCONFIG) -a MPC8360EMDS ppc mpc83xx mpc8360emds freescale |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 2085 | |
Anton Vorontsov | fab6f55 | 2008-01-09 20:57:47 +0300 | [diff] [blame] | 2086 | MPC8360ERDK_33_config \ |
| 2087 | MPC8360ERDK_66_config \ |
Jean-Christophe PLAGNIOL-VILLARD | 91c8207 | 2008-03-02 16:12:31 +0100 | [diff] [blame] | 2088 | MPC8360ERDK_config: unconfig |
Anton Vorontsov | fab6f55 | 2008-01-09 20:57:47 +0300 | [diff] [blame] | 2089 | @mkdir -p $(obj)include |
Wolfgang Denk | c6fe4da | 2008-03-09 02:13:19 +0100 | [diff] [blame] | 2090 | @if [ "$(findstring _33_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2091 | $(XECHO) -n "... CLKIN 33MHz " ; \ |
Anton Vorontsov | fab6f55 | 2008-01-09 20:57:47 +0300 | [diff] [blame] | 2092 | echo "#define CONFIG_CLKIN_33MHZ" >>$(obj)include/config.h ;\ |
| 2093 | fi ; |
| 2094 | @$(MKCONFIG) -a MPC8360ERDK ppc mpc83xx mpc8360erdk freescale |
| 2095 | |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 2096 | MPC837XEMDS_config \ |
| 2097 | MPC837XEMDS_HOST_config: unconfig |
| 2098 | @mkdir -p $(obj)include |
Wolfgang Denk | c6fe4da | 2008-03-09 02:13:19 +0100 | [diff] [blame] | 2099 | @if [ "$(findstring _HOST_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2100 | $(XECHO) -n "... PCI HOST " ; \ |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 2101 | echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ |
| 2102 | fi ; |
| 2103 | @$(MKCONFIG) -a MPC837XEMDS ppc mpc83xx mpc837xemds freescale |
| 2104 | |
Kim Phillips | 5e918a9 | 2008-01-16 00:38:05 -0600 | [diff] [blame] | 2105 | MPC837XERDB_config: unconfig |
| 2106 | @$(MKCONFIG) -a MPC837XERDB ppc mpc83xx mpc837xerdb freescale |
| 2107 | |
Paul Gortmaker | 91e2576 | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 2108 | sbc8349_config: unconfig |
| 2109 | @$(MKCONFIG) $(@:_config=) ppc mpc83xx sbc8349 |
| 2110 | |
Kim Phillips | 4decd84 | 2007-01-24 17:18:37 -0600 | [diff] [blame] | 2111 | TQM834x_config: unconfig |
| 2112 | @$(MKCONFIG) $(@:_config=) ppc mpc83xx tqm834x |
| 2113 | |
Timur Tabi | 2ad6b51 | 2006-10-31 18:44:42 -0600 | [diff] [blame] | 2114 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 2115 | ######################################################################### |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 2116 | ## MPC85xx Systems |
| 2117 | ######################################################################### |
| 2118 | |
robert lazarski | 7bd6104 | 2007-12-21 10:36:37 -0500 | [diff] [blame] | 2119 | ATUM8548_config: unconfig |
| 2120 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx atum8548 |
| 2121 | |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 2122 | MPC8540ADS_config: unconfig |
Kumar Gala | c2d943f | 2007-11-29 10:16:18 -0600 | [diff] [blame] | 2123 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8540ads freescale |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 2124 | |
Lunsheng Wang | b0e3294 | 2005-07-29 10:20:29 -0500 | [diff] [blame] | 2125 | MPC8540EVAL_config \ |
| 2126 | MPC8540EVAL_33_config \ |
| 2127 | MPC8540EVAL_66_config \ |
| 2128 | MPC8540EVAL_33_slave_config \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 2129 | MPC8540EVAL_66_slave_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2130 | @mkdir -p $(obj)include |
Wolfgang Denk | c6fe4da | 2008-03-09 02:13:19 +0100 | [diff] [blame] | 2131 | @if [ "$(findstring _33_,$@)" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2132 | $(XECHO) "... 33 MHz PCI" ; \ |
Lunsheng Wang | b0e3294 | 2005-07-29 10:20:29 -0500 | [diff] [blame] | 2133 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2134 | echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2135 | $(XECHO) "... 66 MHz PCI" ; \ |
Lunsheng Wang | b0e3294 | 2005-07-29 10:20:29 -0500 | [diff] [blame] | 2136 | fi ; \ |
| 2137 | if [ "$(findstring _slave_,$@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2138 | echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2139 | $(XECHO) " slave" ; \ |
Lunsheng Wang | b0e3294 | 2005-07-29 10:20:29 -0500 | [diff] [blame] | 2140 | else \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2141 | $(XECHO) " host" ; \ |
Lunsheng Wang | b0e3294 | 2005-07-29 10:20:29 -0500 | [diff] [blame] | 2142 | fi |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2143 | @$(MKCONFIG) -a MPC8540EVAL ppc mpc85xx mpc8540eval |
Lunsheng Wang | b0e3294 | 2005-07-29 10:20:29 -0500 | [diff] [blame] | 2144 | |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 2145 | MPC8560ADS_config: unconfig |
Kumar Gala | 870ceac | 2007-11-29 10:14:50 -0600 | [diff] [blame] | 2146 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8560ads freescale |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 2147 | |
Randy Vinson | 7f3f2bd | 2007-02-27 19:42:22 -0700 | [diff] [blame] | 2148 | MPC8541CDS_legacy_config \ |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 2149 | MPC8541CDS_config: unconfig |
Randy Vinson | 7f3f2bd | 2007-02-27 19:42:22 -0700 | [diff] [blame] | 2150 | @mkdir -p $(obj)include |
Wolfgang Denk | c6fe4da | 2008-03-09 02:13:19 +0100 | [diff] [blame] | 2151 | @if [ "$(findstring _legacy_,$@)" ] ; then \ |
Randy Vinson | 7f3f2bd | 2007-02-27 19:42:22 -0700 | [diff] [blame] | 2152 | echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2153 | $(XECHO) "... legacy" ; \ |
Randy Vinson | 7f3f2bd | 2007-02-27 19:42:22 -0700 | [diff] [blame] | 2154 | fi |
Kumar Gala | 415a613 | 2007-11-29 10:47:44 -0600 | [diff] [blame] | 2155 | @$(MKCONFIG) -a MPC8541CDS ppc mpc85xx mpc8541cds freescale |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 2156 | |
Andy Fleming | 81f481c | 2007-04-23 02:24:28 -0500 | [diff] [blame] | 2157 | MPC8544DS_config: unconfig |
| 2158 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8544ds freescale |
| 2159 | |
Randy Vinson | 7f3f2bd | 2007-02-27 19:42:22 -0700 | [diff] [blame] | 2160 | MPC8548CDS_legacy_config \ |
Jon Loeliger | d9b94f2 | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 2161 | MPC8548CDS_config: unconfig |
Randy Vinson | 7f3f2bd | 2007-02-27 19:42:22 -0700 | [diff] [blame] | 2162 | @mkdir -p $(obj)include |
Wolfgang Denk | c6fe4da | 2008-03-09 02:13:19 +0100 | [diff] [blame] | 2163 | @if [ "$(findstring _legacy_,$@)" ] ; then \ |
Randy Vinson | 7f3f2bd | 2007-02-27 19:42:22 -0700 | [diff] [blame] | 2164 | echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2165 | $(XECHO) "... legacy" ; \ |
Randy Vinson | 7f3f2bd | 2007-02-27 19:42:22 -0700 | [diff] [blame] | 2166 | fi |
Kumar Gala | 415a613 | 2007-11-29 10:47:44 -0600 | [diff] [blame] | 2167 | @$(MKCONFIG) -a MPC8548CDS ppc mpc85xx mpc8548cds freescale |
Jon Loeliger | d9b94f2 | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 2168 | |
Randy Vinson | 7f3f2bd | 2007-02-27 19:42:22 -0700 | [diff] [blame] | 2169 | MPC8555CDS_legacy_config \ |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 2170 | MPC8555CDS_config: unconfig |
Randy Vinson | 7f3f2bd | 2007-02-27 19:42:22 -0700 | [diff] [blame] | 2171 | @mkdir -p $(obj)include |
Wolfgang Denk | c6fe4da | 2008-03-09 02:13:19 +0100 | [diff] [blame] | 2172 | @if [ "$(findstring _legacy_,$@)" ] ; then \ |
Randy Vinson | 7f3f2bd | 2007-02-27 19:42:22 -0700 | [diff] [blame] | 2173 | echo "#define CONFIG_LEGACY" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2174 | $(XECHO) "... legacy" ; \ |
Randy Vinson | 7f3f2bd | 2007-02-27 19:42:22 -0700 | [diff] [blame] | 2175 | fi |
Kumar Gala | 415a613 | 2007-11-29 10:47:44 -0600 | [diff] [blame] | 2176 | @$(MKCONFIG) -a MPC8555CDS ppc mpc85xx mpc8555cds freescale |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 2177 | |
Andy Fleming | 6743105 | 2007-04-23 02:54:25 -0500 | [diff] [blame] | 2178 | MPC8568MDS_config: unconfig |
Kumar Gala | acbca87 | 2007-11-29 10:13:47 -0600 | [diff] [blame] | 2179 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8568mds freescale |
Andy Fleming | 6743105 | 2007-04-23 02:54:25 -0500 | [diff] [blame] | 2180 | |
wdenk | 384cc68 | 2005-04-03 22:35:21 +0000 | [diff] [blame] | 2181 | PM854_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2182 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm854 |
wdenk | 384cc68 | 2005-04-03 22:35:21 +0000 | [diff] [blame] | 2183 | |
Wolfgang Denk | b20d003 | 2005-08-05 12:19:30 +0200 | [diff] [blame] | 2184 | PM856_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2185 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm856 |
Wolfgang Denk | b20d003 | 2005-08-05 12:19:30 +0200 | [diff] [blame] | 2186 | |
wdenk | c15f312 | 2004-10-10 22:44:24 +0000 | [diff] [blame] | 2187 | sbc8540_config \ |
| 2188 | sbc8540_33_config \ |
| 2189 | sbc8540_66_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2190 | @mkdir -p $(obj)include |
wdenk | c15f312 | 2004-10-10 22:44:24 +0000 | [diff] [blame] | 2191 | @if [ "$(findstring _66_,$@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2192 | echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2193 | $(XECHO) "... 66 MHz PCI" ; \ |
wdenk | c15f312 | 2004-10-10 22:44:24 +0000 | [diff] [blame] | 2194 | else \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2195 | $(XECHO) "... 33 MHz PCI" ; \ |
wdenk | c15f312 | 2004-10-10 22:44:24 +0000 | [diff] [blame] | 2196 | fi |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2197 | @$(MKCONFIG) -a SBC8540 ppc mpc85xx sbc8560 |
wdenk | c15f312 | 2004-10-10 22:44:24 +0000 | [diff] [blame] | 2198 | |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 2199 | sbc8548_config: unconfig |
| 2200 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx sbc8548 |
| 2201 | |
wdenk | 466b741 | 2004-07-10 22:35:59 +0000 | [diff] [blame] | 2202 | sbc8560_config \ |
| 2203 | sbc8560_33_config \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 2204 | sbc8560_66_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2205 | @mkdir -p $(obj)include |
wdenk | 8b07a11 | 2004-07-10 21:45:47 +0000 | [diff] [blame] | 2206 | @if [ "$(findstring _66_,$@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2207 | echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2208 | $(XECHO) "... 66 MHz PCI" ; \ |
wdenk | 8b07a11 | 2004-07-10 21:45:47 +0000 | [diff] [blame] | 2209 | else \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2210 | $(XECHO) "... 33 MHz PCI" ; \ |
wdenk | 8b07a11 | 2004-07-10 21:45:47 +0000 | [diff] [blame] | 2211 | fi |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2212 | @$(MKCONFIG) -a sbc8560 ppc mpc85xx sbc8560 |
wdenk | 8b07a11 | 2004-07-10 21:45:47 +0000 | [diff] [blame] | 2213 | |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 2214 | socrates_config: unconfig |
| 2215 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx socrates |
| 2216 | |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 2217 | stxgp3_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2218 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx stxgp3 |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 2219 | |
Wolfgang Denk | ee15298 | 2007-05-31 17:20:09 +0200 | [diff] [blame] | 2220 | stxssa_config \ |
| 2221 | stxssa_4M_config: unconfig |
| 2222 | @mkdir -p $(obj)include |
| 2223 | @if [ "$(findstring _4M_,$@)" ] ; then \ |
| 2224 | echo "#define CONFIG_STXSSA_4M" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2225 | $(XECHO) "... with 4 MiB flash memory" ; \ |
Wolfgang Denk | ee15298 | 2007-05-31 17:20:09 +0200 | [diff] [blame] | 2226 | fi |
| 2227 | @$(MKCONFIG) -a stxssa ppc mpc85xx stxssa |
Dan Malek | 35171dc | 2007-01-05 09:15:34 +0100 | [diff] [blame] | 2228 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 2229 | TQM8540_config \ |
| 2230 | TQM8541_config \ |
| 2231 | TQM8555_config \ |
| 2232 | TQM8560_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2233 | @mkdir -p $(obj)include |
Wolfgang Denk | a889bd2 | 2005-12-06 15:02:31 +0100 | [diff] [blame] | 2234 | @CTYPE=$(subst TQM,,$(@:_config=)); \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2235 | $(XECHO) "... TQM"$${CTYPE}; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2236 | echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \ |
| 2237 | echo "#define CONFIG_TQM$${CTYPE}">>$(obj)include/config.h; \ |
| 2238 | echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \ |
| 2239 | echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>$(obj)include/config.h; \ |
Grant Likely | 8a783a6 | 2007-09-18 12:24:57 -0600 | [diff] [blame] | 2240 | echo "#define CFG_BOOTFILE_PATH \"/tftpboot/tqm$${CTYPE}/uImage\"">>$(obj)include/config.h |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2241 | @$(MKCONFIG) -a TQM85xx ppc mpc85xx tqm85xx |
wdenk | f5c5ef4 | 2005-04-05 16:26:47 +0000 | [diff] [blame] | 2242 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 2243 | ######################################################################### |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 2244 | ## MPC86xx Systems |
| 2245 | ######################################################################### |
| 2246 | |
Jon Loeliger | 3c89d75 | 2007-10-16 15:27:43 -0500 | [diff] [blame] | 2247 | MPC8610HPCD_config: unconfig |
| 2248 | @$(MKCONFIG) $(@:_config=) ppc mpc86xx mpc8610hpcd freescale |
| 2249 | |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 2250 | MPC8641HPCN_config: unconfig |
Jon Loeliger | 4ce9177 | 2007-08-15 12:20:40 -0500 | [diff] [blame] | 2251 | @$(MKCONFIG) $(@:_config=) ppc mpc86xx mpc8641hpcn freescale |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 2252 | |
Joe Hamman | c646bba | 2007-08-09 15:11:03 -0500 | [diff] [blame] | 2253 | sbc8641d_config: unconfig |
Jean-Christophe PLAGNIOL-VILLARD | 91c8207 | 2008-03-02 16:12:31 +0100 | [diff] [blame] | 2254 | @$(MKCONFIG) $(@:_config=) ppc mpc86xx sbc8641d |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 2255 | |
| 2256 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2257 | ## 74xx/7xx Systems |
| 2258 | ######################################################################### |
| 2259 | |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 2260 | AmigaOneG3SE_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2261 | @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 2262 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 2263 | BAB7xx_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2264 | @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx bab7xx eltec |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 2265 | |
Wolfgang Denk | 05bf491 | 2007-10-21 01:01:17 +0200 | [diff] [blame] | 2266 | CPCI750_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2267 | @$(MKCONFIG) CPCI750 ppc 74xx_7xx cpci750 esd |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 2268 | |
Wolfgang Denk | 05bf491 | 2007-10-21 01:01:17 +0200 | [diff] [blame] | 2269 | DB64360_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2270 | @$(MKCONFIG) DB64360 ppc 74xx_7xx db64360 Marvell |
wdenk | 3a473b2 | 2004-01-03 00:43:19 +0000 | [diff] [blame] | 2271 | |
Wolfgang Denk | 05bf491 | 2007-10-21 01:01:17 +0200 | [diff] [blame] | 2272 | DB64460_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2273 | @$(MKCONFIG) DB64460 ppc 74xx_7xx db64460 Marvell |
wdenk | 3a473b2 | 2004-01-03 00:43:19 +0000 | [diff] [blame] | 2274 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 2275 | ELPPC_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2276 | @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx elppc eltec |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 2277 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2278 | EVB64260_config \ |
| 2279 | EVB64260_750CX_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2280 | @$(MKCONFIG) EVB64260 ppc 74xx_7xx evb64260 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2281 | |
roy zang | 4c52783 | 2006-11-02 18:49:51 +0800 | [diff] [blame] | 2282 | mpc7448hpc2_config: unconfig |
Jon Loeliger | 7f1d846 | 2008-03-05 18:05:47 -0600 | [diff] [blame] | 2283 | @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx mpc7448hpc2 freescale |
roy zang | 4c52783 | 2006-11-02 18:49:51 +0800 | [diff] [blame] | 2284 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 2285 | P3G4_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2286 | @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2287 | |
Stefan Roese | 1eac2a7 | 2006-11-29 15:42:37 +0100 | [diff] [blame] | 2288 | p3m750_config \ |
| 2289 | p3m7448_config: unconfig |
| 2290 | @mkdir -p $(obj)include |
| 2291 | @if [ "$(findstring 750_,$@)" ] ; then \ |
| 2292 | echo "#define CONFIG_P3M750" >>$(obj)include/config.h ; \ |
| 2293 | else \ |
| 2294 | echo "#define CONFIG_P3M7448" >>$(obj)include/config.h ; \ |
| 2295 | fi |
| 2296 | @$(MKCONFIG) -a p3mx ppc 74xx_7xx p3mx prodrive |
| 2297 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2298 | PCIPPC2_config \ |
| 2299 | PCIPPC6_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2300 | @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx pcippc2 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2301 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 2302 | ZUMA_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2303 | @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260 |
wdenk | 12f3424 | 2003-09-02 22:48:03 +0000 | [diff] [blame] | 2304 | |
Heiko Schocher | f5e0d03 | 2006-06-19 11:02:41 +0200 | [diff] [blame] | 2305 | ppmc7xx_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2306 | @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx ppmc7xx |
Wolfgang Denk | b87dfd2 | 2006-07-19 13:50:38 +0200 | [diff] [blame] | 2307 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2308 | #======================================================================== |
| 2309 | # ARM |
| 2310 | #======================================================================== |
| 2311 | ######################################################################### |
| 2312 | ## StrongARM Systems |
| 2313 | ######################################################################### |
| 2314 | |
wdenk | ea66bc8 | 2004-04-15 23:23:39 +0000 | [diff] [blame] | 2315 | assabet_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2316 | @$(MKCONFIG) $(@:_config=) arm sa1100 assabet |
wdenk | ea66bc8 | 2004-04-15 23:23:39 +0000 | [diff] [blame] | 2317 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2318 | dnp1110_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2319 | @$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2320 | |
wdenk | 855a496 | 2004-03-14 18:23:55 +0000 | [diff] [blame] | 2321 | gcplus_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2322 | @$(MKCONFIG) $(@:_config=) arm sa1100 gcplus |
wdenk | 855a496 | 2004-03-14 18:23:55 +0000 | [diff] [blame] | 2323 | |
| 2324 | lart_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2325 | @$(MKCONFIG) $(@:_config=) arm sa1100 lart |
wdenk | 855a496 | 2004-03-14 18:23:55 +0000 | [diff] [blame] | 2326 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2327 | shannon_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2328 | @$(MKCONFIG) $(@:_config=) arm sa1100 shannon |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2329 | |
| 2330 | ######################################################################### |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 2331 | ## ARM92xT Systems |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2332 | ######################################################################### |
| 2333 | |
Ulf Samuelsson | a4b46ed | 2008-04-12 20:56:03 +0200 | [diff] [blame] | 2334 | ######################################################################### |
| 2335 | ## Atmel AT91RM9200 Systems |
| 2336 | ######################################################################### |
Stelian Pop | 20b197c | 2008-01-20 19:49:21 +0000 | [diff] [blame] | 2337 | |
wdenk | a85f9f2 | 2005-04-06 13:52:31 +0000 | [diff] [blame] | 2338 | at91rm9200dk_config : unconfig |
Haavard Skinnemoen | 6523010 | 2008-02-22 11:40:50 +0000 | [diff] [blame] | 2339 | @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk atmel at91rm9200 |
wdenk | a85f9f2 | 2005-04-06 13:52:31 +0000 | [diff] [blame] | 2340 | |
| 2341 | cmc_pu2_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2342 | @$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200 |
wdenk | a85f9f2 | 2005-04-06 13:52:31 +0000 | [diff] [blame] | 2343 | |
Wolfgang Denk | 645da51 | 2005-10-05 02:00:09 +0200 | [diff] [blame] | 2344 | csb637_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2345 | @$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200 |
Wolfgang Denk | 645da51 | 2005-10-05 02:00:09 +0200 | [diff] [blame] | 2346 | |
Ulf Samuelsson | a4b46ed | 2008-04-12 20:56:03 +0200 | [diff] [blame] | 2347 | kb9202_config : unconfig |
| 2348 | @$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200 |
| 2349 | |
Wolfgang Denk | 0e4018d | 2005-09-26 01:14:38 +0200 | [diff] [blame] | 2350 | mp2usb_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2351 | @$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200 |
Wolfgang Denk | 0e4018d | 2005-09-26 01:14:38 +0200 | [diff] [blame] | 2352 | |
Timo Tuunainen | ea8d989 | 2008-02-01 10:09:03 +0000 | [diff] [blame] | 2353 | m501sk_config : unconfig |
| 2354 | @$(MKCONFIG) $(@:_config=) arm arm920t m501sk NULL at91rm9200 |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 2355 | |
Ulf Samuelsson | a4b46ed | 2008-04-12 20:56:03 +0200 | [diff] [blame] | 2356 | ######################################################################### |
| 2357 | ## Atmel ARM926EJ-S Systems |
| 2358 | ######################################################################### |
| 2359 | |
| 2360 | at91cap9adk_config : unconfig |
| 2361 | @$(MKCONFIG) $(@:_config=) arm arm926ejs at91cap9adk atmel at91sam9 |
| 2362 | |
| 2363 | at91sam9260ek_config : unconfig |
| 2364 | @$(MKCONFIG) $(@:_config=) arm arm926ejs at91sam9260ek atmel at91sam9 |
| 2365 | |
Wolfgang Denk | 74f4304 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 2366 | ######################################################################## |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 2367 | ## ARM Integrator boards - see doc/README-integrator for more info. |
| 2368 | integratorap_config \ |
| 2369 | ap_config \ |
| 2370 | ap966_config \ |
| 2371 | ap922_config \ |
| 2372 | ap922_XA10_config \ |
| 2373 | ap7_config \ |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 2374 | ap720t_config \ |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 2375 | ap920t_config \ |
| 2376 | ap926ejs_config \ |
| 2377 | ap946es_config: unconfig |
Wolfgang Denk | 96782c6 | 2005-10-09 00:22:48 +0200 | [diff] [blame] | 2378 | @board/integratorap/split_by_variant.sh $@ |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 2379 | |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 2380 | integratorcp_config \ |
| 2381 | cp_config \ |
| 2382 | cp920t_config \ |
| 2383 | cp926ejs_config \ |
| 2384 | cp946es_config \ |
| 2385 | cp1136_config \ |
| 2386 | cp966_config \ |
| 2387 | cp922_config \ |
| 2388 | cp922_XA10_config \ |
| 2389 | cp1026_config: unconfig |
Wolfgang Denk | 96782c6 | 2005-10-09 00:22:48 +0200 | [diff] [blame] | 2390 | @board/integratorcp/split_by_variant.sh $@ |
wdenk | 25d6712 | 2004-12-10 11:40:40 +0000 | [diff] [blame] | 2391 | |
wdenk | f832d8a | 2004-06-10 21:55:33 +0000 | [diff] [blame] | 2392 | lpd7a400_config \ |
| 2393 | lpd7a404_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2394 | @$(MKCONFIG) $(@:_config=) arm lh7a40x lpd7a40x |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 2395 | |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 2396 | mx1ads_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2397 | @$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 2398 | |
| 2399 | mx1fs2_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2400 | @$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 2401 | |
Wolfgang Denk | ac7eb8a3 | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 2402 | netstar_config: unconfig |
Peter Pearse | f4e7cbf | 2008-02-01 16:49:08 +0000 | [diff] [blame] | 2403 | @$(MKCONFIG) $(@:_config=) arm arm925t netstar |
Wolfgang Denk | ac7eb8a3 | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 2404 | |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 2405 | omap1510inn_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2406 | @$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 2407 | |
wdenk | 1eaeb58 | 2004-06-08 00:22:43 +0000 | [diff] [blame] | 2408 | omap5912osk_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2409 | @$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk NULL omap |
wdenk | 1eaeb58 | 2004-06-08 00:22:43 +0000 | [diff] [blame] | 2410 | |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 2411 | davinci_dvevm_config : unconfig |
| 2412 | @$(MKCONFIG) $(@:_config=) arm arm926ejs dv-evm davinci davinci |
| 2413 | |
| 2414 | davinci_schmoogie_config : unconfig |
| 2415 | @$(MKCONFIG) $(@:_config=) arm arm926ejs schmoogie davinci davinci |
| 2416 | |
| 2417 | davinci_sonata_config : unconfig |
| 2418 | @$(MKCONFIG) $(@:_config=) arm arm926ejs sonata davinci davinci |
| 2419 | |
Ulf Samuelsson | a4b46ed | 2008-04-12 20:56:03 +0200 | [diff] [blame] | 2420 | xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1)))) |
| 2421 | |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 2422 | omap1610inn_config \ |
| 2423 | omap1610inn_cs0boot_config \ |
| 2424 | omap1610inn_cs3boot_config \ |
wdenk | 3ff02c2 | 2004-06-09 15:25:53 +0000 | [diff] [blame] | 2425 | omap1610inn_cs_autoboot_config \ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 2426 | omap1610h2_config \ |
| 2427 | omap1610h2_cs0boot_config \ |
wdenk | 3ff02c2 | 2004-06-09 15:25:53 +0000 | [diff] [blame] | 2428 | omap1610h2_cs3boot_config \ |
| 2429 | omap1610h2_cs_autoboot_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2430 | @mkdir -p $(obj)include |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 2431 | @if [ "$(findstring _cs0boot_, $@)" ] ; then \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 2432 | echo "#define CONFIG_CS0_BOOT" >> .$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2433 | $(XECHO) "... configured for CS0 boot"; \ |
wdenk | 3ff02c2 | 2004-06-09 15:25:53 +0000 | [diff] [blame] | 2434 | elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 2435 | echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2436 | $(XECHO) "... configured for CS_AUTO boot"; \ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 2437 | else \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 2438 | echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2439 | $(XECHO) "... configured for CS3 boot"; \ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 2440 | fi; |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2441 | @$(MKCONFIG) -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 2442 | |
Ulf Samuelsson | a4b46ed | 2008-04-12 20:56:03 +0200 | [diff] [blame] | 2443 | xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1))) |
| 2444 | |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 2445 | omap730p2_config \ |
| 2446 | omap730p2_cs0boot_config \ |
| 2447 | omap730p2_cs3boot_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2448 | @mkdir -p $(obj)include |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 2449 | @if [ "$(findstring _cs0boot_, $@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2450 | echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2451 | $(XECHO) "... configured for CS0 boot"; \ |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 2452 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2453 | echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2454 | $(XECHO) "... configured for CS3 boot"; \ |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 2455 | fi; |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2456 | @$(MKCONFIG) -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 2457 | |
Wolfgang Denk | 32cb2c7 | 2006-07-21 11:31:42 +0200 | [diff] [blame] | 2458 | sbc2410x_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2459 | @$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0 |
Wolfgang Denk | 32cb2c7 | 2006-07-21 11:31:42 +0200 | [diff] [blame] | 2460 | |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 2461 | scb9328_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2462 | @$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 2463 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2464 | smdk2400_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2465 | @$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 NULL s3c24x0 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2466 | |
| 2467 | smdk2410_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2468 | @$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 NULL s3c24x0 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2469 | |
wdenk | 2d24a3a | 2004-06-09 21:50:45 +0000 | [diff] [blame] | 2470 | SX1_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2471 | @$(MKCONFIG) $(@:_config=) arm arm925t sx1 |
wdenk | 2d24a3a | 2004-06-09 21:50:45 +0000 | [diff] [blame] | 2472 | |
wdenk | b2001f2 | 2003-12-20 22:45:10 +0000 | [diff] [blame] | 2473 | # TRAB default configuration: 8 MB Flash, 32 MB RAM |
Ulf Samuelsson | a4b46ed | 2008-04-12 20:56:03 +0200 | [diff] [blame] | 2474 | xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1)))) |
| 2475 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 2476 | trab_config \ |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 2477 | trab_bigram_config \ |
| 2478 | trab_bigflash_config \ |
wdenk | f54ebdf | 2003-09-17 15:10:32 +0000 | [diff] [blame] | 2479 | trab_old_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2480 | @mkdir -p $(obj)include |
| 2481 | @mkdir -p $(obj)board/trab |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 2482 | @[ -z "$(findstring _bigram,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2483 | { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \ |
| 2484 | echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2485 | $(XECHO) "... with 8 MB Flash, 32 MB RAM" ; \ |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 2486 | } |
| 2487 | @[ -z "$(findstring _bigflash,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2488 | { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \ |
| 2489 | echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2490 | $(XECHO) "... with 16 MB Flash, 16 MB RAM" ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2491 | echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \ |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 2492 | } |
wdenk | f54ebdf | 2003-09-17 15:10:32 +0000 | [diff] [blame] | 2493 | @[ -z "$(findstring _old,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2494 | { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \ |
| 2495 | echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2496 | $(XECHO) "... with 8 MB Flash, 16 MB RAM" ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2497 | echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \ |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 2498 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2499 | @$(MKCONFIG) -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2500 | |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 2501 | VCMA9_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2502 | @$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0 |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 2503 | |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 2504 | #======================================================================== |
| 2505 | # ARM supplied Versatile development boards |
| 2506 | #======================================================================== |
| 2507 | versatile_config \ |
| 2508 | versatileab_config \ |
| 2509 | versatilepb_config : unconfig |
Wolfgang Denk | 96782c6 | 2005-10-09 00:22:48 +0200 | [diff] [blame] | 2510 | @board/versatile/split_by_variant.sh $@ |
wdenk | 074cff0 | 2004-02-24 00:16:43 +0000 | [diff] [blame] | 2511 | |
wdenk | 3c2b3d4 | 2005-04-05 23:32:21 +0000 | [diff] [blame] | 2512 | voiceblue_config: unconfig |
Ladislav Michl | 4fedfdd | 2007-12-07 00:42:32 +0100 | [diff] [blame] | 2513 | @$(MKCONFIG) $(@:_config=) arm arm925t voiceblue |
wdenk | 3c2b3d4 | 2005-04-05 23:32:21 +0000 | [diff] [blame] | 2514 | |
wdenk | 16b013e | 2005-05-19 22:46:33 +0000 | [diff] [blame] | 2515 | cm4008_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2516 | @$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695 |
wdenk | 16b013e | 2005-05-19 22:46:33 +0000 | [diff] [blame] | 2517 | |
| 2518 | cm41xx_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2519 | @$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695 |
wdenk | 16b013e | 2005-05-19 22:46:33 +0000 | [diff] [blame] | 2520 | |
wdenk | 074cff0 | 2004-02-24 00:16:43 +0000 | [diff] [blame] | 2521 | ######################################################################### |
| 2522 | ## S3C44B0 Systems |
| 2523 | ######################################################################### |
| 2524 | |
| 2525 | B2_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2526 | @$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave |
wdenk | 074cff0 | 2004-02-24 00:16:43 +0000 | [diff] [blame] | 2527 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2528 | ######################################################################### |
| 2529 | ## ARM720T Systems |
| 2530 | ######################################################################### |
| 2531 | |
Wolfgang Denk | c570b2f | 2005-09-26 01:06:33 +0200 | [diff] [blame] | 2532 | armadillo_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2533 | @$(MKCONFIG) $(@:_config=) arm arm720t armadillo |
Wolfgang Denk | c570b2f | 2005-09-26 01:06:33 +0200 | [diff] [blame] | 2534 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2535 | ep7312_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2536 | @$(MKCONFIG) $(@:_config=) arm arm720t ep7312 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2537 | |
wdenk | 2d24a3a | 2004-06-09 21:50:45 +0000 | [diff] [blame] | 2538 | impa7_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2539 | @$(MKCONFIG) $(@:_config=) arm arm720t impa7 |
wdenk | 2d24a3a | 2004-06-09 21:50:45 +0000 | [diff] [blame] | 2540 | |
wdenk | 2d1a537 | 2004-02-23 19:30:57 +0000 | [diff] [blame] | 2541 | modnet50_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2542 | @$(MKCONFIG) $(@:_config=) arm arm720t modnet50 |
wdenk | 2d1a537 | 2004-02-23 19:30:57 +0000 | [diff] [blame] | 2543 | |
wdenk | 3953988 | 2004-07-01 16:30:44 +0000 | [diff] [blame] | 2544 | evb4510_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2545 | @$(MKCONFIG) $(@:_config=) arm arm720t evb4510 |
wdenk | 3953988 | 2004-07-01 16:30:44 +0000 | [diff] [blame] | 2546 | |
Gary Jennejohn | 6bd2447 | 2007-01-24 12:16:56 +0100 | [diff] [blame] | 2547 | lpc2292sodimm_config: unconfig |
Peter Pearse | b0d8f5b | 2007-05-09 11:37:56 +0100 | [diff] [blame] | 2548 | @$(MKCONFIG) $(@:_config=) arm arm720t lpc2292sodimm NULL lpc2292 |
| 2549 | |
| 2550 | SMN42_config : unconfig |
| 2551 | @$(MKCONFIG) $(@:_config=) arm arm720t SMN42 siemens lpc2292 |
Gary Jennejohn | 6bd2447 | 2007-01-24 12:16:56 +0100 | [diff] [blame] | 2552 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2553 | ######################################################################### |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 2554 | ## XScale Systems |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2555 | ######################################################################### |
| 2556 | |
Michael Schwingen | 799891e | 2008-01-18 00:04:28 +0100 | [diff] [blame] | 2557 | actux1_config : unconfig |
| 2558 | @$(MKCONFIG) $(@:_config=) arm ixp actux1 |
| 2559 | |
| 2560 | actux2_config : unconfig |
| 2561 | @$(MKCONFIG) $(@:_config=) arm ixp actux2 |
| 2562 | |
| 2563 | actux3_config : unconfig |
| 2564 | @$(MKCONFIG) $(@:_config=) arm ixp actux3 |
| 2565 | |
| 2566 | actux4_config : unconfig |
| 2567 | @$(MKCONFIG) $(@:_config=) arm ixp actux4 |
| 2568 | |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 2569 | adsvix_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2570 | @$(MKCONFIG) $(@:_config=) arm pxa adsvix |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 2571 | |
wdenk | fabd46a | 2004-07-10 23:11:10 +0000 | [diff] [blame] | 2572 | cerf250_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2573 | @$(MKCONFIG) $(@:_config=) arm pxa cerf250 |
wdenk | fabd46a | 2004-07-10 23:11:10 +0000 | [diff] [blame] | 2574 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2575 | cradle_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2576 | @$(MKCONFIG) $(@:_config=) arm pxa cradle |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2577 | |
| 2578 | csb226_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2579 | @$(MKCONFIG) $(@:_config=) arm pxa csb226 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2580 | |
Jean-Christophe PLAGNIOL-VILLARD | 91c8207 | 2008-03-02 16:12:31 +0100 | [diff] [blame] | 2581 | delta_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2582 | @$(MKCONFIG) $(@:_config=) arm pxa delta |
Wolfgang Denk | 0be248f | 2006-03-07 00:22:36 +0100 | [diff] [blame] | 2583 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 2584 | innokom_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2585 | @$(MKCONFIG) $(@:_config=) arm pxa innokom |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 2586 | |
wdenk | 2d5b561 | 2003-10-14 19:43:55 +0000 | [diff] [blame] | 2587 | ixdp425_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2588 | @$(MKCONFIG) $(@:_config=) arm ixp ixdp425 |
wdenk | 2d5b561 | 2003-10-14 19:43:55 +0000 | [diff] [blame] | 2589 | |
Wolfgang Denk | ba94a1b | 2006-05-30 15:56:48 +0200 | [diff] [blame] | 2590 | ixdpg425_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2591 | @$(MKCONFIG) $(@:_config=) arm ixp ixdp425 |
Wolfgang Denk | ba94a1b | 2006-05-30 15:56:48 +0200 | [diff] [blame] | 2592 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 2593 | lubbock_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2594 | @$(MKCONFIG) $(@:_config=) arm pxa lubbock |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 2595 | |
Heiko Schocher | 5720df7 | 2006-05-02 07:51:46 +0200 | [diff] [blame] | 2596 | pleb2_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2597 | @$(MKCONFIG) $(@:_config=) arm pxa pleb2 |
Heiko Schocher | 5720df7 | 2006-05-02 07:51:46 +0200 | [diff] [blame] | 2598 | |
wdenk | 52f52c1 | 2003-06-19 23:04:19 +0000 | [diff] [blame] | 2599 | logodl_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2600 | @$(MKCONFIG) $(@:_config=) arm pxa logodl |
wdenk | 52f52c1 | 2003-06-19 23:04:19 +0000 | [diff] [blame] | 2601 | |
Stefan Roese | 9d8d5a5 | 2007-01-18 16:05:47 +0100 | [diff] [blame] | 2602 | pdnb3_config \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 2603 | scpu_config: unconfig |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 2604 | @mkdir -p $(obj)include |
Stefan Roese | 9d8d5a5 | 2007-01-18 16:05:47 +0100 | [diff] [blame] | 2605 | @if [ "$(findstring scpu_,$@)" ] ; then \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 2606 | echo "#define CONFIG_SCPU" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2607 | $(XECHO) "... on SCPU board variant" ; \ |
Stefan Roese | 9d8d5a5 | 2007-01-18 16:05:47 +0100 | [diff] [blame] | 2608 | fi |
| 2609 | @$(MKCONFIG) -a pdnb3 arm ixp pdnb3 prodrive |
Wolfgang Denk | ba94a1b | 2006-05-30 15:56:48 +0200 | [diff] [blame] | 2610 | |
Wolfgang Denk | f57f70a | 2005-10-13 01:45:54 +0200 | [diff] [blame] | 2611 | pxa255_idp_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2612 | @$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp |
Wolfgang Denk | f57f70a | 2005-10-13 01:45:54 +0200 | [diff] [blame] | 2613 | |
stefano babic | 5e5803e | 2007-08-30 23:01:49 +0200 | [diff] [blame] | 2614 | trizepsiv_config : unconfig |
| 2615 | @$(MKCONFIG) $(@:_config=) arm pxa trizepsiv |
| 2616 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 2617 | wepep250_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2618 | @$(MKCONFIG) $(@:_config=) arm pxa wepep250 |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 2619 | |
wdenk | 4ec3a7f | 2004-09-28 16:44:41 +0000 | [diff] [blame] | 2620 | xaeniax_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2621 | @$(MKCONFIG) $(@:_config=) arm pxa xaeniax |
wdenk | 4ec3a7f | 2004-09-28 16:44:41 +0000 | [diff] [blame] | 2622 | |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 2623 | xm250_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2624 | @$(MKCONFIG) $(@:_config=) arm pxa xm250 |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 2625 | |
wdenk | ca0e774 | 2004-06-09 15:37:23 +0000 | [diff] [blame] | 2626 | xsengine_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2627 | @$(MKCONFIG) $(@:_config=) arm pxa xsengine |
wdenk | ca0e774 | 2004-06-09 15:37:23 +0000 | [diff] [blame] | 2628 | |
Markus Klotzbücher | e026957 | 2006-02-07 20:04:48 +0100 | [diff] [blame] | 2629 | zylonite_config : |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2630 | @$(MKCONFIG) $(@:_config=) arm pxa zylonite |
Markus Klotzbücher | e026957 | 2006-02-07 20:04:48 +0100 | [diff] [blame] | 2631 | |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 2632 | ######################################################################### |
| 2633 | ## ARM1136 Systems |
| 2634 | ######################################################################### |
Peter Pearse | 5ca9881 | 2007-11-09 15:24:26 +0000 | [diff] [blame] | 2635 | omap2420h4_config : unconfig |
Sascha Hauer | 5252ed9 | 2008-03-26 20:40:36 +0100 | [diff] [blame] | 2636 | @$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4 NULL omap24xx |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 2637 | |
Peter Pearse | 5ca9881 | 2007-11-09 15:24:26 +0000 | [diff] [blame] | 2638 | apollon_config : unconfig |
Wolfgang Denk | c6fe4da | 2008-03-09 02:13:19 +0100 | [diff] [blame] | 2639 | @mkdir -p $(obj)include |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 2640 | @echo "#define CONFIG_ONENAND_U_BOOT" > $(obj)include/config.h |
Sascha Hauer | 5252ed9 | 2008-03-26 20:40:36 +0100 | [diff] [blame] | 2641 | @$(MKCONFIG) $(@:_config=) arm arm1136 apollon NULL omap24xx |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 2642 | @echo "CONFIG_ONENAND_U_BOOT = y" >> $(obj)include/config.mk |
Peter Pearse | 5ca9881 | 2007-11-09 15:24:26 +0000 | [diff] [blame] | 2643 | |
Sascha Hauer | caebc95 | 2008-03-26 20:41:09 +0100 | [diff] [blame] | 2644 | imx31_litekit_config : unconfig |
| 2645 | @$(MKCONFIG) $(@:_config=) arm arm1136 imx31_litekit NULL mx31 |
| 2646 | |
Sascha Hauer | 5ad8621 | 2008-03-26 20:41:17 +0100 | [diff] [blame] | 2647 | imx31_phycore_config : unconfig |
| 2648 | @$(MKCONFIG) $(@:_config=) arm arm1136 imx31_phycore NULL mx31 |
| 2649 | |
Guennadi Liakhovetski | b5dc9b3 | 2008-04-14 10:53:12 +0200 | [diff] [blame] | 2650 | mx31ads_config : unconfig |
| 2651 | @$(MKCONFIG) $(@:_config=) arm arm1136 mx31ads NULL mx31 |
| 2652 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 2653 | #======================================================================== |
| 2654 | # i386 |
| 2655 | #======================================================================== |
| 2656 | ######################################################################### |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 2657 | ## AMD SC520 CDP |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 2658 | ######################################################################### |
| 2659 | sc520_cdp_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2660 | @$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 2661 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 2662 | sc520_spunk_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2663 | @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 2664 | |
| 2665 | sc520_spunk_rel_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2666 | @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 2667 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 2668 | #======================================================================== |
| 2669 | # MIPS |
| 2670 | #======================================================================== |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2671 | ######################################################################### |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 2672 | ## MIPS32 4Kc |
| 2673 | ######################################################################### |
| 2674 | |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 2675 | xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1)))) |
| 2676 | |
| 2677 | incaip_100MHz_config \ |
| 2678 | incaip_133MHz_config \ |
| 2679 | incaip_150MHz_config \ |
| 2680 | incaip_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2681 | @mkdir -p $(obj)include |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 2682 | @[ -z "$(findstring _100MHz,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2683 | { echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2684 | $(XECHO) "... with 100MHz system clock" ; \ |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 2685 | } |
| 2686 | @[ -z "$(findstring _133MHz,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2687 | { echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2688 | $(XECHO) "... with 133MHz system clock" ; \ |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 2689 | } |
| 2690 | @[ -z "$(findstring _150MHz,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2691 | { echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2692 | $(XECHO) "... with 150MHz system clock" ; \ |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 2693 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2694 | @$(MKCONFIG) -a $(call xtract_incaip,$@) mips mips incaip |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 2695 | |
wdenk | f4863a7 | 2004-02-07 01:27:10 +0000 | [diff] [blame] | 2696 | tb0229_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2697 | @$(MKCONFIG) $(@:_config=) mips mips tb0229 |
wdenk | f4863a7 | 2004-02-07 01:27:10 +0000 | [diff] [blame] | 2698 | |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 2699 | ######################################################################### |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 2700 | ## MIPS32 AU1X00 |
| 2701 | ######################################################################### |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 2702 | dbau1000_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2703 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 2704 | @echo "#define CONFIG_DBAU1000 1" >$(obj)include/config.h |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2705 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 2706 | |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 2707 | dbau1100_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2708 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 2709 | @echo "#define CONFIG_DBAU1100 1" >$(obj)include/config.h |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2710 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 2711 | |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 2712 | dbau1500_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2713 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 2714 | @echo "#define CONFIG_DBAU1500 1" >$(obj)include/config.h |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2715 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 2716 | |
wdenk | ff36fd8 | 2005-01-09 22:28:56 +0000 | [diff] [blame] | 2717 | dbau1550_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2718 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 2719 | @echo "#define CONFIG_DBAU1550 1" >$(obj)include/config.h |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2720 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 |
wdenk | ff36fd8 | 2005-01-09 22:28:56 +0000 | [diff] [blame] | 2721 | |
| 2722 | dbau1550_el_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2723 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 2724 | @echo "#define CONFIG_DBAU1550 1" >$(obj)include/config.h |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2725 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 |
wdenk | ff36fd8 | 2005-01-09 22:28:56 +0000 | [diff] [blame] | 2726 | |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 2727 | pb1000_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2728 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 2729 | @echo "#define CONFIG_PB1000 1" >$(obj)include/config.h |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2730 | @$(MKCONFIG) -a pb1x00 mips mips pb1x00 |
Wolfgang Denk | 265817c | 2005-09-25 00:53:22 +0200 | [diff] [blame] | 2731 | |
Shinya Kuribayashi | 8a77398 | 2008-03-25 21:30:08 +0900 | [diff] [blame] | 2732 | gth2_config: unconfig |
| 2733 | @mkdir -p $(obj)include |
| 2734 | @echo "#define CONFIG_GTH2 1" >$(obj)include/config.h |
| 2735 | @$(MKCONFIG) -a gth2 mips mips gth2 |
| 2736 | |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 2737 | qemu_mips_config: unconfig |
| 2738 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 2739 | @echo "#define CONFIG_QEMU_MIPS 1" >$(obj)include/config.h |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 2740 | @$(MKCONFIG) -a qemu-mips mips mips qemu-mips |
| 2741 | |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 2742 | ######################################################################### |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 2743 | ## MIPS64 5Kc |
| 2744 | ######################################################################### |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 2745 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 2746 | purple_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2747 | @$(MKCONFIG) $(@:_config=) mips mips purple |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 2748 | |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 2749 | #======================================================================== |
| 2750 | # Nios |
| 2751 | #======================================================================== |
| 2752 | ######################################################################### |
| 2753 | ## Nios32 |
| 2754 | ######################################################################### |
| 2755 | |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2756 | DK1C20_safe_32_config \ |
| 2757 | DK1C20_standard_32_config \ |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 2758 | DK1C20_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2759 | @mkdir -p $(obj)include |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2760 | @[ -z "$(findstring _safe_32,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2761 | { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2762 | $(XECHO) "... NIOS 'safe_32' configuration" ; \ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2763 | } |
| 2764 | @[ -z "$(findstring _standard_32,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2765 | { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2766 | $(XECHO) "... NIOS 'standard_32' configuration" ; \ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2767 | } |
| 2768 | @[ -z "$(findstring DK1C20_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2769 | { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2770 | $(XECHO) "... NIOS 'standard_32' configuration (DEFAULT)" ; \ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2771 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2772 | @$(MKCONFIG) -a DK1C20 nios nios dk1c20 altera |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2773 | |
| 2774 | DK1S10_safe_32_config \ |
| 2775 | DK1S10_standard_32_config \ |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 2776 | DK1S10_mtx_ldk_20_config \ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2777 | DK1S10_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2778 | @mkdir -p $(obj)include |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2779 | @[ -z "$(findstring _safe_32,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2780 | { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2781 | $(XECHO) "... NIOS 'safe_32' configuration" ; \ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2782 | } |
| 2783 | @[ -z "$(findstring _standard_32,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2784 | { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2785 | $(XECHO) "... NIOS 'standard_32' configuration" ; \ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2786 | } |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 2787 | @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2788 | { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2789 | $(XECHO) "... NIOS 'mtx_ldk_20' configuration" ; \ |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 2790 | } |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2791 | @[ -z "$(findstring DK1S10_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2792 | { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2793 | $(XECHO) "... NIOS 'standard_32' configuration (DEFAULT)" ; \ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2794 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2795 | @$(MKCONFIG) -a DK1S10 nios nios dk1s10 altera |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 2796 | |
wdenk | aaf224a | 2004-03-14 15:20:55 +0000 | [diff] [blame] | 2797 | ADNPESC1_DNPEVA2_base_32_config \ |
| 2798 | ADNPESC1_base_32_config \ |
| 2799 | ADNPESC1_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2800 | @mkdir -p $(obj)include |
wdenk | aaf224a | 2004-03-14 15:20:55 +0000 | [diff] [blame] | 2801 | @[ -z "$(findstring _DNPEVA2,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2802 | { echo "#define CONFIG_DNPEVA2 1" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2803 | $(XECHO) "... DNP/EVA2 configuration" ; \ |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 2804 | } |
wdenk | aaf224a | 2004-03-14 15:20:55 +0000 | [diff] [blame] | 2805 | @[ -z "$(findstring _base_32,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2806 | { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2807 | $(XECHO) "... NIOS 'base_32' configuration" ; \ |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 2808 | } |
wdenk | aaf224a | 2004-03-14 15:20:55 +0000 | [diff] [blame] | 2809 | @[ -z "$(findstring ADNPESC1_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2810 | { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2811 | $(XECHO) "... NIOS 'base_32' configuration (DEFAULT)" ; \ |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 2812 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2813 | @$(MKCONFIG) -a ADNPESC1 nios nios adnpesc1 ssv |
wdenk | aaf224a | 2004-03-14 15:20:55 +0000 | [diff] [blame] | 2814 | |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 2815 | ######################################################################### |
| 2816 | ## Nios-II |
| 2817 | ######################################################################### |
| 2818 | |
Scott McNutt | 9cc8337 | 2006-06-08 13:37:39 -0400 | [diff] [blame] | 2819 | EP1C20_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2820 | @$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera |
Scott McNutt | 9cc8337 | 2006-06-08 13:37:39 -0400 | [diff] [blame] | 2821 | |
| 2822 | EP1S10_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2823 | @$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera |
Scott McNutt | 9cc8337 | 2006-06-08 13:37:39 -0400 | [diff] [blame] | 2824 | |
| 2825 | EP1S40_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2826 | @$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera |
Scott McNutt | 9cc8337 | 2006-06-08 13:37:39 -0400 | [diff] [blame] | 2827 | |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 2828 | PK1C20_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2829 | @$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 2830 | |
| 2831 | PCI5441_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2832 | @$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 2833 | |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 2834 | #======================================================================== |
| 2835 | # MicroBlaze |
| 2836 | #======================================================================== |
| 2837 | ######################################################################### |
| 2838 | ## Microblaze |
| 2839 | ######################################################################### |
| 2840 | suzaku_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2841 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 2842 | @echo "#define CONFIG_SUZAKU 1" > $(obj)include/config.h |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2843 | @$(MKCONFIG) -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 2844 | |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 2845 | ml401_config: unconfig |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 2846 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 2847 | @echo "#define CONFIG_ML401 1" > $(obj)include/config.h |
Grant Likely | 90b1b2d | 2007-07-03 00:17:28 -0600 | [diff] [blame] | 2848 | @$(MKCONFIG) -a $(@:_config=) microblaze microblaze ml401 xilinx |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 2849 | |
Michal Simek | 1798049 | 2007-03-26 01:39:07 +0200 | [diff] [blame] | 2850 | xupv2p_config: unconfig |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 2851 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 2852 | @echo "#define CONFIG_XUPV2P 1" > $(obj)include/config.h |
Grant Likely | 90b1b2d | 2007-07-03 00:17:28 -0600 | [diff] [blame] | 2853 | @$(MKCONFIG) -a $(@:_config=) microblaze microblaze xupv2p xilinx |
Michal Simek | 1798049 | 2007-03-26 01:39:07 +0200 | [diff] [blame] | 2854 | |
Mike Frysinger | 60fa72d | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 2855 | #======================================================================== |
| 2856 | # Blackfin |
| 2857 | #======================================================================== |
Wolfgang Denk | 0afe519 | 2006-03-12 02:10:00 +0100 | [diff] [blame] | 2858 | |
Mike Frysinger | 60fa72d | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 2859 | # Analog Devices boards |
| 2860 | BFIN_BOARDS = bf533-ezkit bf533-stamp bf537-stamp bf561-ezkit |
Wolfgang Denk | 0afe519 | 2006-03-12 02:10:00 +0100 | [diff] [blame] | 2861 | |
Mike Frysinger | 60fa72d | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 2862 | $(BFIN_BOARDS:%=%_config) : unconfig |
Mike Frysinger | 9171fc8 | 2008-03-30 15:46:13 -0400 | [diff] [blame] | 2863 | @$(MKCONFIG) $(@:_config=) blackfin blackfin $(@:_config=) |
Aubrey Li | 26bf7de | 2007-03-19 01:24:52 +0800 | [diff] [blame] | 2864 | |
Mike Frysinger | 60fa72d | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 2865 | $(BFIN_BOARDS): |
| 2866 | $(MAKE) $@_config |
| 2867 | $(MAKE) |
Wolfgang Denk | 0afe519 | 2006-03-12 02:10:00 +0100 | [diff] [blame] | 2868 | |
Haavard Skinnemoen | 5e3b0bc | 2006-10-25 15:48:59 +0200 | [diff] [blame] | 2869 | #======================================================================== |
| 2870 | # AVR32 |
| 2871 | #======================================================================== |
| 2872 | ######################################################################### |
Ulf Samuelsson | a4b46ed | 2008-04-12 20:56:03 +0200 | [diff] [blame] | 2873 | ## AT32AP70xx |
Haavard Skinnemoen | 5e3b0bc | 2006-10-25 15:48:59 +0200 | [diff] [blame] | 2874 | ######################################################################### |
| 2875 | |
| 2876 | atstk1002_config : unconfig |
Haavard Skinnemoen | 36f28f8 | 2007-10-29 13:09:56 +0100 | [diff] [blame] | 2877 | @$(MKCONFIG) $(@:_config=) avr32 at32ap atstk1000 atmel at32ap700x |
Haavard Skinnemoen | 5e3b0bc | 2006-10-25 15:48:59 +0200 | [diff] [blame] | 2878 | |
Haavard Skinnemoen | 667568d | 2007-10-29 13:02:54 +0100 | [diff] [blame] | 2879 | atstk1003_config : unconfig |
| 2880 | @$(MKCONFIG) $(@:_config=) avr32 at32ap atstk1000 atmel at32ap700x |
| 2881 | |
Haavard Skinnemoen | 64ff235 | 2007-10-29 13:02:54 +0100 | [diff] [blame] | 2882 | atstk1004_config : unconfig |
| 2883 | @$(MKCONFIG) $(@:_config=) avr32 at32ap atstk1000 atmel at32ap700x |
Wolfgang Denk | 0afe519 | 2006-03-12 02:10:00 +0100 | [diff] [blame] | 2884 | |
Haavard Skinnemoen | 6b44394 | 2007-04-14 17:11:49 +0200 | [diff] [blame] | 2885 | atngw100_config : unconfig |
| 2886 | @$(MKCONFIG) $(@:_config=) avr32 at32ap atngw100 atmel at32ap700x |
| 2887 | |
Wolfgang Denk | 0afe519 | 2006-03-12 02:10:00 +0100 | [diff] [blame] | 2888 | ######################################################################### |
| 2889 | ######################################################################### |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 2890 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2891 | |
Nobuhiro Iwamatsu | 69df3c4 | 2007-05-13 21:01:03 +0900 | [diff] [blame] | 2892 | ######################################################################### |
Yoshihiro Shimoda | b2b5e2b | 2007-12-03 22:58:50 +0900 | [diff] [blame] | 2893 | ## sh3 (Renesas SuperH) |
| 2894 | ######################################################################### |
Mark Jonas | 3313e0e | 2008-03-10 11:37:10 +0100 | [diff] [blame] | 2895 | mpr2_config: unconfig |
| 2896 | @ >include/config.h |
| 2897 | @echo "#define CONFIG_MPR2 1" >> include/config.h |
| 2898 | @$(MKCONFIG) -a $(@:_config=) sh sh3 mpr2 |
| 2899 | |
Yoshihiro Shimoda | b2b5e2b | 2007-12-03 22:58:50 +0900 | [diff] [blame] | 2900 | ms7720se_config: unconfig |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 2901 | @echo "#define CONFIG_MS7720SE 1" > include/config.h |
Jean-Christophe PLAGNIOL-VILLARD | 91c8207 | 2008-03-02 16:12:31 +0100 | [diff] [blame] | 2902 | @$(MKCONFIG) -a $(@:_config=) sh sh3 ms7720se |
Yoshihiro Shimoda | b2b5e2b | 2007-12-03 22:58:50 +0900 | [diff] [blame] | 2903 | |
| 2904 | ######################################################################### |
Nobuhiro Iwamatsu | 69df3c4 | 2007-05-13 21:01:03 +0900 | [diff] [blame] | 2905 | ## sh4 (Renesas SuperH) |
| 2906 | ######################################################################### |
| 2907 | ms7750se_config: unconfig |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 2908 | @echo "#define CONFIG_MS7750SE 1" > $(obj)include/config.h |
Jean-Christophe PLAGNIOL-VILLARD | 91c8207 | 2008-03-02 16:12:31 +0100 | [diff] [blame] | 2909 | @$(MKCONFIG) -a $(@:_config=) sh sh4 ms7750se |
Nobuhiro Iwamatsu | 69df3c4 | 2007-05-13 21:01:03 +0900 | [diff] [blame] | 2910 | |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 2911 | ms7722se_config : unconfig |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 2912 | @echo "#define CONFIG_MS7722SE 1" > $(obj)include/config.h |
Jean-Christophe PLAGNIOL-VILLARD | 91c8207 | 2008-03-02 16:12:31 +0100 | [diff] [blame] | 2913 | @$(MKCONFIG) -a $(@:_config=) sh sh4 ms7722se |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 2914 | |
goda.yusuke | c2042f5 | 2008-01-25 20:46:36 +0900 | [diff] [blame] | 2915 | MigoR_config : unconfig |
| 2916 | @ >include/config.h |
| 2917 | @echo "#define CONFIG_MIGO_R 1" >> include/config.h |
| 2918 | @./mkconfig -a $(@:_config=) sh sh4 MigoR |
| 2919 | |
Yusuke Goda | c133c1f | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 2920 | r7780mp_config: unconfig |
| 2921 | @ >include/config.h |
| 2922 | @echo "#define CONFIG_R7780MP 1" >> include/config.h |
| 2923 | @./mkconfig -a $(@:_config=) sh sh4 r7780mp |
| 2924 | |
Nobuhiro Iwamatsu | f5e2466 | 2008-03-25 17:11:24 +0900 | [diff] [blame] | 2925 | r2dplus_config : unconfig |
| 2926 | @ >include/config.h |
| 2927 | @echo "#define CONFIG_R2DPLUS 1" >> include/config.h |
| 2928 | @./mkconfig -a $(@:_config=) sh sh4 r2dplus |
| 2929 | |
Daniel Hellstrom | c2f02da | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 2930 | #======================================================================== |
| 2931 | # SPARC |
| 2932 | #======================================================================== |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 2933 | ######################################################################### |
| 2934 | ## LEON3 |
| 2935 | ######################################################################### |
Daniel Hellstrom | c2f02da | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 2936 | |
Daniel Hellstrom | 71d7e4c | 2008-03-26 23:26:48 +0100 | [diff] [blame] | 2937 | # Gaisler GR-XC3S-1500 board |
| 2938 | gr_xc3s_1500_config : unconfig |
| 2939 | @$(MKCONFIG) $(@:_config=) sparc leon3 gr_xc3s_1500 gaisler |
| 2940 | |
Daniel Hellstrom | 6ed8a43 | 2008-03-26 23:38:48 +0100 | [diff] [blame] | 2941 | # Gaisler GR-CPCI-AX2000 board, a General purpose FPGA-AX system |
| 2942 | gr_cpci_ax2000_config : unconfig |
| 2943 | @$(MKCONFIG) $(@:_config=) sparc leon3 gr_cpci_ax2000 gaisler |
| 2944 | |
Daniel Hellstrom | 6940383 | 2008-03-26 23:34:47 +0100 | [diff] [blame] | 2945 | # Gaisler GRLIB template design (GPL SPARC/LEON3) for Altera NIOS |
| 2946 | # Development board Stratix II edition, FPGA Device EP2S60. |
| 2947 | gr_ep2s60_config: unconfig |
| 2948 | @$(MKCONFIG) $(@:_config=) sparc leon3 gr_ep2s60 gaisler |
| 2949 | |
Daniel Hellstrom | 823edd8 | 2008-03-28 10:06:52 +0100 | [diff] [blame] | 2950 | # Gaisler LEON3 GRSIM simulator |
| 2951 | grsim_config : unconfig |
| 2952 | @$(MKCONFIG) $(@:_config=) sparc leon3 grsim gaisler |
| 2953 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2954 | ######################################################################### |
Daniel Hellstrom | b330990 | 2008-03-28 10:00:33 +0100 | [diff] [blame] | 2955 | ## LEON2 |
| 2956 | ######################################################################### |
| 2957 | |
Daniel Hellstrom | ab68f92 | 2008-03-28 10:20:43 +0100 | [diff] [blame] | 2958 | # Gaisler LEON2 GRSIM simulator |
| 2959 | grsim_leon2_config : unconfig |
| 2960 | @$(MKCONFIG) $(@:_config=) sparc leon2 grsim_leon2 gaisler |
| 2961 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2962 | ######################################################################### |
| 2963 | ######################################################################### |
| 2964 | ######################################################################### |
wdenk | 85ec0bc | 2003-03-31 16:34:49 +0000 | [diff] [blame] | 2965 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 2966 | clean: |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 2967 | @rm -f $(obj)examples/82559_eeprom $(obj)examples/eepro100_eeprom \ |
| 2968 | $(obj)examples/hello_world $(obj)examples/interrupt \ |
| 2969 | $(obj)examples/mem_to_mem_idma2intr \ |
| 2970 | $(obj)examples/sched $(obj)examples/smc91111_eeprom \ |
| 2971 | $(obj)examples/test_burst $(obj)examples/timer |
| 2972 | @rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \ |
| 2973 | $(obj)tools/env/{fw_printenv,fw_setenv} \ |
| 2974 | $(obj)tools/envcrc \ |
| 2975 | $(obj)tools/gdb/{astest,gdbcont,gdbsend} \ |
| 2976 | $(obj)tools/gen_eth_addr $(obj)tools/img2srec \ |
| 2977 | $(obj)tools/mkimage $(obj)tools/mpc86x_clk \ |
| 2978 | $(obj)tools/ncb $(obj)tools/ubsha1 |
| 2979 | @rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \ |
| 2980 | $(obj)board/netstar/{eeprom,crcek,crcit,*.srec,*.bin} \ |
| 2981 | $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom \ |
| 2982 | $(obj)board/{integratorap,integratorcp}/u-boot.lds \ |
Mike Frysinger | 9171fc8 | 2008-03-30 15:46:13 -0400 | [diff] [blame] | 2983 | $(obj)board/{bf533-ezkit,bf533-stamp,bf537-stamp,bf561-ezkit}/u-boot.lds \ |
| 2984 | $(obj)cpu/blackfin/bootrom-asm-offsets.[chs] |
Wolfgang Denk | dc7746d | 2008-04-20 15:39:38 -0700 | [diff] [blame] | 2985 | @rm -f $(obj)include/bmp_logo.h |
| 2986 | @rm -f $(obj)nand_spl/{u-boot-spl,u-boot-spl.map,System.map} |
Kyungmin Park | 1bb707c | 2008-03-17 08:54:06 +0900 | [diff] [blame] | 2987 | @rm -f $(obj)onenand_ipl/onenand-{ipl,ipl.bin,ipl-2k.bin,ipl-4k.bin,ipl.map} |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 2988 | @rm -f $(obj)api_examples/demo $(VERSION_FILE) |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2989 | @find $(OBJTREE) -type f \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2990 | \( -name 'core' -o -name '*.bak' -o -name '*~' \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 2991 | -o -name '*.o' -o -name '*.a' \) -print \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2992 | | xargs rm -f |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2993 | |
| 2994 | clobber: clean |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 2995 | @find $(OBJTREE) -type f \( -name .depend \ |
wdenk | 4c0d4c3 | 2004-06-09 17:34:58 +0000 | [diff] [blame] | 2996 | -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \ |
| 2997 | -print0 \ |
| 2998 | | xargs -0 rm -f |
Li Yang | ffda586 | 2008-02-29 11:46:05 +0800 | [diff] [blame] | 2999 | @rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \ |
Wolfgang Denk | 5013c09 | 2008-03-02 22:45:33 +0100 | [diff] [blame] | 3000 | $(obj)cscope.* $(obj)*.*~ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 3001 | @rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL) |
Bartlomiej Sieka | 766529f | 2008-03-14 16:22:34 +0100 | [diff] [blame] | 3002 | @rm -f $(obj)tools/{crc32.c,environment.c,env/crc32.c,md5.c,sha1.c,inca-swap-bytes} |
Mike Frysinger | 89cdab7 | 2008-03-31 11:02:01 -0400 | [diff] [blame] | 3003 | @rm -f $(obj)tools/{image.c,fdt.c,fdt_ro.c,fdt_rw.c,fdt_strerror.c,zlib.h} |
Marian Balakowicz | 7e492d8 | 2008-03-12 12:23:02 +0100 | [diff] [blame] | 3004 | @rm -f $(obj)tools/{fdt_wip.c,libfdt_internal.h} |
Wolfgang Denk | 5013c09 | 2008-03-02 22:45:33 +0100 | [diff] [blame] | 3005 | @rm -f $(obj)cpu/mpc824x/bedbug_603e.c |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 3006 | @rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm |
| 3007 | @[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -lname "*" -print | xargs rm -f |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 3008 | @[ ! -d $(obj)onenand_ipl ] || find $(obj)onenand_ipl -lname "*" -print | xargs rm -f |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 3009 | @[ ! -d $(obj)api_examples ] || find $(obj)api_examples -lname "*" -print | xargs rm -f |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 3010 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 3011 | ifeq ($(OBJTREE),$(SRCTREE)) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 3012 | mrproper \ |
| 3013 | distclean: clobber unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 3014 | else |
| 3015 | mrproper \ |
| 3016 | distclean: clobber unconfig |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 3017 | rm -rf $(obj)* |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 3018 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 3019 | |
| 3020 | backup: |
| 3021 | F=`basename $(TOPDIR)` ; cd .. ; \ |
| 3022 | gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F |
| 3023 | |
| 3024 | ######################################################################### |