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