wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1 | # |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 2 | # (C) Copyright 2000-2006 |
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 |
| 25 | PATCHLEVEL = 1 |
| 26 | SUBLEVEL = 4 |
| 27 | EXTRAVERSION = |
| 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/ \ |
| 37 | -e s/macppc/ppc/) |
| 38 | |
Wolfgang Denk | f9d77ed | 2005-08-12 23:23:46 +0200 | [diff] [blame] | 39 | HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 40 | sed -e 's/\(cygwin\).*/cygwin/') |
| 41 | |
Wolfgang Denk | f9d77ed | 2005-08-12 23:23:46 +0200 | [diff] [blame] | 42 | export HOSTARCH HOSTOS |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 43 | |
| 44 | # Deal with colliding definitions from tcsh etc. |
| 45 | VENDOR= |
| 46 | |
| 47 | ######################################################################### |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 48 | # |
| 49 | # U-boot build supports producing a object files to the separate external |
| 50 | # directory. Two use cases are supported: |
| 51 | # |
| 52 | # 1) Add O= to the make command line |
| 53 | # 'make O=/tmp/build all' |
| 54 | # |
| 55 | # 2) Set environement variable BUILD_DIR to point to the desired location |
| 56 | # 'export BUILD_DIR=/tmp/build' |
| 57 | # 'make' |
| 58 | # |
| 59 | # The second approach can also be used with a MAKEALL script |
| 60 | # 'export BUILD_DIR=/tmp/build' |
| 61 | # './MAKEALL' |
| 62 | # |
| 63 | # Command line 'O=' setting overrides BUILD_DIR environent variable. |
| 64 | # |
| 65 | # When none of the above methods is used the local build is performed and |
| 66 | # the object files are placed in the source directory. |
| 67 | # |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 68 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 69 | ifdef O |
| 70 | ifeq ("$(origin O)", "command line") |
| 71 | BUILD_DIR := $(O) |
| 72 | endif |
| 73 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 74 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 75 | ifneq ($(BUILD_DIR),) |
| 76 | saved-output := $(BUILD_DIR) |
Marian Balakowicz | 4f0645e | 2006-09-07 12:05:53 +0200 | [diff] [blame^] | 77 | |
| 78 | # Attempt to create a output directory. |
| 79 | $(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR}) |
| 80 | |
| 81 | # Verify if it was successful. |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 82 | BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd) |
| 83 | $(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist)) |
| 84 | endif # ifneq ($(BUILD_DIR),) |
| 85 | |
| 86 | OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR)) |
| 87 | SRCTREE := $(CURDIR) |
| 88 | TOPDIR := $(SRCTREE) |
| 89 | LNDIR := $(OBJTREE) |
| 90 | export TOPDIR SRCTREE OBJTREE |
| 91 | |
| 92 | MKCONFIG := $(SRCTREE)/mkconfig |
| 93 | export MKCONFIG |
| 94 | |
| 95 | ifneq ($(OBJTREE),$(SRCTREE)) |
| 96 | REMOTE_BUILD := 1 |
| 97 | export REMOTE_BUILD |
| 98 | endif |
| 99 | |
| 100 | # $(obj) and (src) are defined in config.mk but here in main Makefile |
| 101 | # we also need them before config.mk is included which is the case for |
| 102 | # some targets like unconfig, clean, clobber, distclean, etc. |
| 103 | ifneq ($(OBJTREE),$(SRCTREE)) |
| 104 | obj := $(OBJTREE)/ |
| 105 | src := $(SRCTREE)/ |
| 106 | else |
| 107 | obj := |
| 108 | src := |
| 109 | endif |
| 110 | export obj src |
| 111 | |
| 112 | ######################################################################### |
| 113 | |
| 114 | ifeq ($(OBJTREE)/include/config.mk,$(wildcard $(OBJTREE)/include/config.mk)) |
| 115 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 116 | # load ARCH, BOARD, and CPU configuration |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 117 | include $(OBJTREE)/include/config.mk |
wdenk | 1d9f410 | 2004-10-09 22:21:29 +0000 | [diff] [blame] | 118 | export ARCH CPU BOARD VENDOR SOC |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 119 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 120 | ifndef CROSS_COMPILE |
| 121 | ifeq ($(HOSTARCH),ppc) |
| 122 | CROSS_COMPILE = |
| 123 | else |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 124 | ifeq ($(ARCH),ppc) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 125 | CROSS_COMPILE = powerpc-linux- |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 126 | endif |
| 127 | ifeq ($(ARCH),arm) |
wdenk | dc7c9a1 | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 128 | CROSS_COMPILE = arm-linux- |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 129 | endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 130 | ifeq ($(ARCH),i386) |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 131 | ifeq ($(HOSTARCH),i386) |
| 132 | CROSS_COMPILE = |
| 133 | else |
| 134 | CROSS_COMPILE = i386-linux- |
| 135 | endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 136 | endif |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 137 | ifeq ($(ARCH),mips) |
| 138 | CROSS_COMPILE = mips_4KC- |
| 139 | endif |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 140 | ifeq ($(ARCH),nios) |
| 141 | CROSS_COMPILE = nios-elf- |
| 142 | endif |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 143 | ifeq ($(ARCH),nios2) |
| 144 | CROSS_COMPILE = nios2-elf- |
| 145 | endif |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 146 | ifeq ($(ARCH),m68k) |
| 147 | CROSS_COMPILE = m68k-elf- |
| 148 | endif |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 149 | ifeq ($(ARCH),microblaze) |
| 150 | CROSS_COMPILE = mb- |
| 151 | endif |
Wolfgang Denk | 0afe519 | 2006-03-12 02:10:00 +0100 | [diff] [blame] | 152 | ifeq ($(ARCH),blackfin) |
| 153 | CROSS_COMPILE = bfin-elf- |
| 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 |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 174 | ifeq ($(CPU),mpc83xx) |
| 175 | OBJS += cpu/$(CPU)/resetvec.o |
| 176 | endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 177 | ifeq ($(CPU),mpc85xx) |
| 178 | OBJS += cpu/$(CPU)/resetvec.o |
| 179 | endif |
Wolfgang Denk | 0afe519 | 2006-03-12 02:10:00 +0100 | [diff] [blame] | 180 | ifeq ($(CPU),bf533) |
| 181 | OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o |
| 182 | OBJS += cpu/$(CPU)/cplbhdlr.o cpu/$(CPU)/cplbmgr.o cpu/$(CPU)/flush.o |
| 183 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 184 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 185 | OBJS := $(addprefix $(obj),$(OBJS)) |
| 186 | |
wdenk | 9fd5e31 | 2003-12-07 23:55:12 +0000 | [diff] [blame] | 187 | LIBS = lib_generic/libgeneric.a |
| 188 | LIBS += board/$(BOARDDIR)/lib$(BOARD).a |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 189 | LIBS += cpu/$(CPU)/lib$(CPU).a |
wdenk | 1d9f410 | 2004-10-09 22:21:29 +0000 | [diff] [blame] | 190 | ifdef SOC |
| 191 | LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a |
| 192 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 193 | LIBS += lib_$(ARCH)/lib$(ARCH).a |
wdenk | 518e2e1 | 2004-03-25 14:59:05 +0000 | [diff] [blame] | 194 | 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] | 195 | fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 196 | LIBS += net/libnet.a |
| 197 | LIBS += disk/libdisk.a |
| 198 | LIBS += rtc/librtc.a |
| 199 | LIBS += dtt/libdtt.a |
| 200 | LIBS += drivers/libdrivers.a |
Marian Balakowicz | 6db3970 | 2006-04-08 19:08:06 +0200 | [diff] [blame] | 201 | LIBS += drivers/nand/libnand.a |
| 202 | LIBS += drivers/nand_legacy/libnand_legacy.a |
wdenk | 7152b1d | 2003-09-05 23:19:14 +0000 | [diff] [blame] | 203 | LIBS += drivers/sk98lin/libsk98lin.a |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 204 | LIBS += post/libpost.a post/cpu/libcpu.a |
| 205 | LIBS += common/libcommon.a |
Bartlomiej Sieka | 038ccac | 2006-02-24 09:37:22 +0100 | [diff] [blame] | 206 | LIBS += $(BOARDLIBS) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 207 | |
| 208 | LIBS := $(addprefix $(obj),$(LIBS)) |
wdenk | 9fd5e31 | 2003-12-07 23:55:12 +0000 | [diff] [blame] | 209 | .PHONY : $(LIBS) |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 210 | |
wdenk | 4f7cb08 | 2003-09-11 23:06:34 +0000 | [diff] [blame] | 211 | # Add GCC lib |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 212 | PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 213 | |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 214 | # The "tools" are needed early, so put this first |
| 215 | # Don't include stuff already done in $(LIBS) |
| 216 | SUBDIRS = tools \ |
| 217 | examples \ |
| 218 | post \ |
| 219 | post/cpu |
wdenk | b028f71 | 2003-12-07 21:39:28 +0000 | [diff] [blame] | 220 | .PHONY : $(SUBDIRS) |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 221 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 222 | __OBJS := $(subst $(obj),,$(OBJS)) |
| 223 | __LIBS := $(subst $(obj),,$(LIBS)) |
| 224 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 225 | ######################################################################### |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 226 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 227 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 228 | ALL = $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 229 | |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 230 | all: $(ALL) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 231 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 232 | $(obj)u-boot.hex: $(obj)u-boot |
wdenk | 6310eb9 | 2005-01-09 21:28:15 +0000 | [diff] [blame] | 233 | $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ |
| 234 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 235 | $(obj)u-boot.srec: $(obj)u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 236 | $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ |
| 237 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 238 | $(obj)u-boot.bin: $(obj)u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 239 | $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ |
| 240 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 241 | $(obj)u-boot.img: $(obj)u-boot.bin |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 242 | ./tools/mkimage -A $(ARCH) -T firmware -C none \ |
| 243 | -a $(TEXT_BASE) -e 0 \ |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 244 | -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \ |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 245 | sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \ |
| 246 | -d $< $@ |
| 247 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 248 | $(obj)u-boot.dis: $(obj)u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 249 | $(OBJDUMP) -d $< > $@ |
| 250 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 251 | $(obj)u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 252 | 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] | 253 | cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \ |
| 254 | --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \ |
wdenk | b2184c3 | 2002-11-19 23:01:07 +0000 | [diff] [blame] | 255 | -Map u-boot.map -o u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 256 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 257 | $(OBJS): |
| 258 | $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@)) |
| 259 | |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 260 | $(LIBS): |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 261 | $(MAKE) -C $(dir $(subst $(obj),,$@)) |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 262 | |
| 263 | $(SUBDIRS): |
wdenk | b028f71 | 2003-12-07 21:39:28 +0000 | [diff] [blame] | 264 | $(MAKE) -C $@ all |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 265 | |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 266 | version: |
| 267 | @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \ |
| 268 | echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \ |
| 269 | echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \ |
| 270 | $(TOPDIR)) >> $(VERSION_FILE); \ |
| 271 | echo "\"" >> $(VERSION_FILE) |
| 272 | |
dzu | 8f713fd | 2003-08-07 14:20:31 +0000 | [diff] [blame] | 273 | gdbtools: |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 274 | $(MAKE) -C tools/gdb all || exit 1 |
| 275 | |
| 276 | updater: |
| 277 | $(MAKE) -C tools/updater all || exit 1 |
| 278 | |
| 279 | env: |
| 280 | $(MAKE) -C tools/env all || exit 1 |
dzu | 8f713fd | 2003-08-07 14:20:31 +0000 | [diff] [blame] | 281 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 282 | depend dep: |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 283 | for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir _depend ; done |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 284 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 285 | tags ctags: |
| 286 | ctags -w -o $(OBJTREE)/ctags `find $(SUBDIRS) include \ |
wdenk | bda6c8a | 2004-04-15 21:58:11 +0000 | [diff] [blame] | 287 | lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \ |
| 288 | fs/cramfs fs/fat fs/fdos fs/jffs2 \ |
| 289 | net disk rtc dtt drivers drivers/sk98lin common \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 290 | \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)` |
| 291 | |
| 292 | etags: |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 293 | etags -a -o $(OBJTREE)/etags `find $(SUBDIRS) include \ |
wdenk | eedcd07 | 2004-09-08 22:03:11 +0000 | [diff] [blame] | 294 | lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \ |
| 295 | fs/cramfs fs/fat fs/fdos fs/jffs2 \ |
| 296 | net disk rtc dtt drivers drivers/sk98lin common \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 297 | \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)` |
| 298 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 299 | $(obj)System.map: $(obj)u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 300 | @$(NM) $< | \ |
| 301 | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 302 | sort > $(obj)System.map |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 303 | |
| 304 | ######################################################################### |
| 305 | else |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 306 | all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \ |
| 307 | $(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \ |
| 308 | $(SUBDIRS) version gdbtools updater env depend \ |
| 309 | dep tags ctags etags $(obj)System.map: |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 310 | @echo "System not configured - see README" >&2 |
| 311 | @ exit 1 |
| 312 | endif |
| 313 | |
| 314 | ######################################################################### |
| 315 | |
| 316 | unconfig: |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 317 | @rm -f $(obj)include/config.h $(obj)include/config.mk $(obj)board/*/config.tmp |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 318 | |
| 319 | #======================================================================== |
| 320 | # PowerPC |
| 321 | #======================================================================== |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 322 | |
| 323 | ######################################################################### |
| 324 | ## MPC5xx Systems |
| 325 | ######################################################################### |
| 326 | |
wdenk | 5e5f9ed | 2005-04-13 23:15:10 +0000 | [diff] [blame] | 327 | canmb_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 328 | @$(MKCONFIG) -a canmb ppc mpc5xxx canmb |
wdenk | 5e5f9ed | 2005-04-13 23:15:10 +0000 | [diff] [blame] | 329 | |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 330 | cmi_mpc5xx_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 331 | @$(MKCONFIG) $(@:_config=) ppc mpc5xx cmi |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 332 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 333 | PATI_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 334 | @$(MKCONFIG) $(@:_config=) ppc mpc5xx pati mpl |
wdenk | b6e4c40 | 2004-01-02 16:05:07 +0000 | [diff] [blame] | 335 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 336 | ######################################################################### |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 337 | ## MPC5xxx Systems |
| 338 | ######################################################################### |
wdenk | a87589d | 2005-06-10 10:00:19 +0000 | [diff] [blame] | 339 | |
Wolfgang Denk | dafba16 | 2005-08-12 00:22:49 +0200 | [diff] [blame] | 340 | aev_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 341 | @$(MKCONFIG) -a aev ppc mpc5xxx tqm5200 |
Wolfgang Denk | dafba16 | 2005-08-12 00:22:49 +0200 | [diff] [blame] | 342 | |
dzu@denx.de | 6ca24c6 | 2006-04-21 18:30:47 +0200 | [diff] [blame] | 343 | BC3450_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 344 | @$(MKCONFIG) -a BC3450 ppc mpc5xxx bc3450 |
dzu@denx.de | 6ca24c6 | 2006-04-21 18:30:47 +0200 | [diff] [blame] | 345 | |
Stefan Roese | 5e4b336 | 2005-08-22 17:51:53 +0200 | [diff] [blame] | 346 | cpci5200_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 347 | @$(MKCONFIG) -a cpci5200 ppc mpc5xxx cpci5200 esd |
Stefan Roese | 5e4b336 | 2005-08-22 17:51:53 +0200 | [diff] [blame] | 348 | |
wdenk | a87589d | 2005-06-10 10:00:19 +0000 | [diff] [blame] | 349 | hmi1001_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 350 | @$(MKCONFIG) hmi1001 ppc mpc5xxx hmi1001 |
wdenk | a87589d | 2005-06-10 10:00:19 +0000 | [diff] [blame] | 351 | |
wdenk | e35745b | 2004-04-18 23:32:11 +0000 | [diff] [blame] | 352 | Lite5200_config \ |
| 353 | Lite5200_LOWBOOT_config \ |
| 354 | Lite5200_LOWBOOT08_config \ |
| 355 | icecube_5200_config \ |
| 356 | icecube_5200_LOWBOOT_config \ |
| 357 | icecube_5200_LOWBOOT08_config \ |
| 358 | icecube_5200_DDR_config \ |
| 359 | icecube_5200_DDR_LOWBOOT_config \ |
| 360 | icecube_5200_DDR_LOWBOOT08_config \ |
| 361 | icecube_5100_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 362 | @mkdir -p $(obj)include |
| 363 | @mkdir -p $(obj)board/icecube |
| 364 | @ >$(obj)include/config.h |
wdenk | 17d704e | 2004-04-10 20:43:50 +0000 | [diff] [blame] | 365 | @[ -z "$(findstring LOWBOOT_,$@)" ] || \ |
| 366 | { if [ "$(findstring DDR,$@)" ] ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 367 | then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \ |
| 368 | else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \ |
wdenk | 17d704e | 2004-04-10 20:43:50 +0000 | [diff] [blame] | 369 | fi ; \ |
wdenk | 5cf9da4 | 2003-11-07 13:42:26 +0000 | [diff] [blame] | 370 | echo "... with LOWBOOT configuration" ; \ |
| 371 | } |
| 372 | @[ -z "$(findstring LOWBOOT08,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 373 | { echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \ |
wdenk | 5cf9da4 | 2003-11-07 13:42:26 +0000 | [diff] [blame] | 374 | echo "... with 8 MB flash only" ; \ |
wdenk | 17d704e | 2004-04-10 20:43:50 +0000 | [diff] [blame] | 375 | echo "... with LOWBOOT configuration" ; \ |
wdenk | 5cf9da4 | 2003-11-07 13:42:26 +0000 | [diff] [blame] | 376 | } |
wdenk | b2001f2 | 2003-12-20 22:45:10 +0000 | [diff] [blame] | 377 | @[ -z "$(findstring DDR,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 378 | { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \ |
wdenk | b2001f2 | 2003-12-20 22:45:10 +0000 | [diff] [blame] | 379 | echo "... DDR memory revision" ; \ |
| 380 | } |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 381 | @[ -z "$(findstring 5200,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 382 | { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \ |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 383 | echo "... with MPC5200 processor" ; \ |
| 384 | } |
wdenk | a0f2fe5 | 2003-10-28 09:14:21 +0000 | [diff] [blame] | 385 | @[ -z "$(findstring 5100,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 386 | { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \ |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 387 | echo "... with MGT5100 processor" ; \ |
| 388 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 389 | @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 390 | |
Wolfgang Denk | 86ea5f9 | 2006-02-22 00:43:16 +0100 | [diff] [blame] | 391 | inka4x0_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 392 | @$(MKCONFIG) inka4x0 ppc mpc5xxx inka4x0 |
wdenk | 138ff60 | 2004-12-16 15:52:40 +0000 | [diff] [blame] | 393 | |
Wolfgang Denk | 09e4b0c | 2006-03-17 11:42:53 +0100 | [diff] [blame] | 394 | lite5200b_config \ |
| 395 | lite5200b_LOWBOOT_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 396 | @mkdir -p $(obj)include |
| 397 | @mkdir -p $(obj)board/icecube |
| 398 | @ >$(obj)include/config.h |
| 399 | @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h |
Wolfgang Denk | 09e4b0c | 2006-03-17 11:42:53 +0100 | [diff] [blame] | 400 | @ echo "... DDR memory revision" |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 401 | @ echo "#define CONFIG_MPC5200" >>$(obj)include/config.h |
| 402 | @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h |
Wolfgang Denk | 09e4b0c | 2006-03-17 11:42:53 +0100 | [diff] [blame] | 403 | @[ -z "$(findstring LOWBOOT_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 404 | { echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \ |
Wolfgang Denk | 09e4b0c | 2006-03-17 11:42:53 +0100 | [diff] [blame] | 405 | echo "... with LOWBOOT configuration" ; \ |
| 406 | } |
| 407 | @ echo "... with MPC5200B processor" |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 408 | @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube |
Wolfgang Denk | 09e4b0c | 2006-03-17 11:42:53 +0100 | [diff] [blame] | 409 | |
Stefan Roese | f1ee982 | 2006-03-04 14:57:03 +0100 | [diff] [blame] | 410 | mcc200_config \ |
Wolfgang Denk | ed1cf84 | 2006-08-24 00:26:42 +0200 | [diff] [blame] | 411 | mcc200_SDRAM_config \ |
| 412 | mcc200_highboot_config \ |
| 413 | mcc200_COM12_config \ |
| 414 | mcc200_COM12_SDRAM_config \ |
Wolfgang Denk | 113f64e | 2006-08-25 01:38:04 +0200 | [diff] [blame] | 415 | mcc200_COM12_highboot_config \ |
| 416 | mcc200_COM12_highboot_SDRAM_config \ |
Wolfgang Denk | ed1cf84 | 2006-08-24 00:26:42 +0200 | [diff] [blame] | 417 | mcc200_highboot_SDRAM_config \ |
| 418 | prs200_config \ |
| 419 | prs200_DDR_config \ |
| 420 | prs200_highboot_config \ |
| 421 | prs200_highboot_DDR_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 422 | @mkdir -p $(obj)include |
| 423 | @mkdir -p $(obj)board/mcc200 |
| 424 | @ >$(obj)include/config.h |
Wolfgang Denk | 4819fad | 2006-07-23 22:40:51 +0200 | [diff] [blame] | 425 | @[ -n "$(findstring highboot,$@)" ] || \ |
| 426 | { echo "... with lowboot configuration" ; \ |
Stefan Roese | f1ee982 | 2006-03-04 14:57:03 +0100 | [diff] [blame] | 427 | } |
Wolfgang Denk | 4819fad | 2006-07-23 22:40:51 +0200 | [diff] [blame] | 428 | @[ -z "$(findstring highboot,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 429 | { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \ |
Wolfgang Denk | 4819fad | 2006-07-23 22:40:51 +0200 | [diff] [blame] | 430 | echo "... with highboot configuration" ; \ |
| 431 | } |
| 432 | @[ -n "$(findstring _SDRAM,$@)" ] || \ |
Wolfgang Denk | ed1cf84 | 2006-08-24 00:26:42 +0200 | [diff] [blame] | 433 | { if [ -n "$(findstring mcc200,$@)" ]; \ |
| 434 | then \ |
| 435 | echo "... with DDR" ; \ |
| 436 | else \ |
| 437 | if [ -n "$(findstring _DDR,$@)" ];\ |
| 438 | then \ |
| 439 | echo "... with DDR" ; \ |
| 440 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 441 | echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\ |
Wolfgang Denk | ed1cf84 | 2006-08-24 00:26:42 +0200 | [diff] [blame] | 442 | echo "... with SDRAM" ; \ |
| 443 | fi; \ |
| 444 | fi; \ |
Wolfgang Denk | 4819fad | 2006-07-23 22:40:51 +0200 | [diff] [blame] | 445 | } |
| 446 | @[ -z "$(findstring _SDRAM,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 447 | { echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \ |
Wolfgang Denk | 4819fad | 2006-07-23 22:40:51 +0200 | [diff] [blame] | 448 | echo "... with SDRAM" ; \ |
| 449 | } |
Wolfgang Denk | 463764c | 2006-08-17 00:36:51 +0200 | [diff] [blame] | 450 | @[ -z "$(findstring COM12,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 451 | { echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \ |
Wolfgang Denk | 463764c | 2006-08-17 00:36:51 +0200 | [diff] [blame] | 452 | echo "... with console on COM12" ; \ |
| 453 | } |
Wolfgang Denk | ed1cf84 | 2006-08-24 00:26:42 +0200 | [diff] [blame] | 454 | @[ -z "$(findstring prs200,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 455 | { echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\ |
Wolfgang Denk | ed1cf84 | 2006-08-24 00:26:42 +0200 | [diff] [blame] | 456 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 457 | @$(MKCONFIG) -n $@ -a mcc200 ppc mpc5xxx mcc200 |
Wolfgang Denk | 86ea5f9 | 2006-02-22 00:43:16 +0100 | [diff] [blame] | 458 | |
Wolfgang Denk | df04a3d | 2005-08-18 01:22:22 +0200 | [diff] [blame] | 459 | o2dnt_config: |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 460 | @$(MKCONFIG) o2dnt ppc mpc5xxx o2dnt |
Wolfgang Denk | df04a3d | 2005-08-18 01:22:22 +0200 | [diff] [blame] | 461 | |
Stefan Roese | 5e4b336 | 2005-08-22 17:51:53 +0200 | [diff] [blame] | 462 | pf5200_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 463 | @$(MKCONFIG) pf5200 ppc mpc5xxx pf5200 esd |
Stefan Roese | 5e4b336 | 2005-08-22 17:51:53 +0200 | [diff] [blame] | 464 | |
wdenk | 8939404 | 2004-08-04 21:56:49 +0000 | [diff] [blame] | 465 | PM520_config \ |
| 466 | PM520_DDR_config \ |
| 467 | PM520_ROMBOOT_config \ |
| 468 | PM520_ROMBOOT_DDR_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 469 | @mkdir -p $(obj)include |
| 470 | @ >$(obj)include/config.h |
wdenk | 8939404 | 2004-08-04 21:56:49 +0000 | [diff] [blame] | 471 | @[ -z "$(findstring DDR,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 472 | { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \ |
wdenk | 8939404 | 2004-08-04 21:56:49 +0000 | [diff] [blame] | 473 | echo "... DDR memory revision" ; \ |
| 474 | } |
| 475 | @[ -z "$(findstring ROMBOOT,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 476 | { echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \ |
wdenk | 8939404 | 2004-08-04 21:56:49 +0000 | [diff] [blame] | 477 | echo "... booting from 8-bit flash" ; \ |
| 478 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 479 | @$(MKCONFIG) -a PM520 ppc mpc5xxx pm520 |
wdenk | 8939404 | 2004-08-04 21:56:49 +0000 | [diff] [blame] | 480 | |
Wolfgang Denk | 6624b68 | 2006-02-22 10:25:39 +0100 | [diff] [blame] | 481 | smmaco4_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 482 | @$(MKCONFIG) -a smmaco4 ppc mpc5xxx tqm5200 |
Wolfgang Denk | 9cdc838 | 2006-02-22 01:59:13 +0100 | [diff] [blame] | 483 | |
| 484 | spieval_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 485 | @$(MKCONFIG) -a spieval ppc mpc5xxx tqm5200 |
Wolfgang Denk | 9cdc838 | 2006-02-22 01:59:13 +0100 | [diff] [blame] | 486 | |
Wolfgang Denk | 45a212c | 2006-07-19 17:52:30 +0200 | [diff] [blame] | 487 | TB5200_B_config \ |
Wolfgang Denk | b87dfd2 | 2006-07-19 13:50:38 +0200 | [diff] [blame] | 488 | TB5200_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 489 | @mkdir -p $(obj)include |
Wolfgang Denk | 45a212c | 2006-07-19 17:52:30 +0200 | [diff] [blame] | 490 | @[ -z "$(findstring _B,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 491 | { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \ |
Wolfgang Denk | 45a212c | 2006-07-19 17:52:30 +0200 | [diff] [blame] | 492 | echo "... with MPC5200B processor" ; \ |
| 493 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 494 | @$(MKCONFIG) -n $@ -a TB5200 ppc mpc5xxx tqm5200 |
Wolfgang Denk | b87dfd2 | 2006-07-19 13:50:38 +0200 | [diff] [blame] | 495 | |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 496 | MINI5200_config \ |
| 497 | EVAL5200_config \ |
| 498 | TOP5200_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 499 | @mkdir -p $(obj)include |
| 500 | @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h |
| 501 | @$(MKCONFIG) -n $@ -a TOP5200 ppc mpc5xxx top5200 emk |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 502 | |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 503 | Total5100_config \ |
| 504 | Total5200_config \ |
| 505 | Total5200_lowboot_config \ |
| 506 | Total5200_Rev2_config \ |
| 507 | Total5200_Rev2_lowboot_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 508 | @mkdir -p $(obj)include |
| 509 | @mkdir -p $(obj)board/total5200 |
| 510 | @ >$(obj)include/config.h |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 511 | @[ -z "$(findstring 5100,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 512 | { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \ |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 513 | echo "... with MGT5100 processor" ; \ |
| 514 | } |
| 515 | @[ -z "$(findstring 5200,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 516 | { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \ |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 517 | echo "... with MPC5200 processor" ; \ |
| 518 | } |
| 519 | @[ -n "$(findstring Rev,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 520 | { echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h ; \ |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 521 | echo "... revision 1 board" ; \ |
| 522 | } |
| 523 | @[ -z "$(findstring Rev2_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 524 | { echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h ; \ |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 525 | echo "... revision 2 board" ; \ |
| 526 | } |
| 527 | @[ -z "$(findstring lowboot_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 528 | { echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp ; \ |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 529 | echo "... with lowboot configuration" ; \ |
| 530 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 531 | @$(MKCONFIG) -a Total5200 ppc mpc5xxx total5200 |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 532 | |
Wolfgang Denk | 5196a7a | 2006-08-18 23:27:33 +0200 | [diff] [blame] | 533 | cam5200_config \ |
| 534 | fo300_config \ |
| 535 | MiniFAP_config \ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 536 | TQM5200S_config \ |
| 537 | TQM5200S_HIGHBOOT_config \ |
Wolfgang Denk | 5196a7a | 2006-08-18 23:27:33 +0200 | [diff] [blame] | 538 | TQM5200_B_config \ |
| 539 | TQM5200_B_HIGHBOOT_config \ |
| 540 | TQM5200_config \ |
| 541 | TQM5200_STK100_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 542 | @mkdir -p $(obj)include |
| 543 | @mkdir -p $(obj)board/tqm5200 |
| 544 | @ >$(obj)include/config.h |
Wolfgang Denk | 5196a7a | 2006-08-18 23:27:33 +0200 | [diff] [blame] | 545 | @[ -z "$(findstring cam5200,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 546 | { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \ |
| 547 | echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \ |
| 548 | echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \ |
Wolfgang Denk | 5196a7a | 2006-08-18 23:27:33 +0200 | [diff] [blame] | 549 | echo "... TQM5200S on Cam5200" ; \ |
| 550 | } |
Marian Balakowicz | 6d3bc9b | 2006-08-18 19:14:46 +0200 | [diff] [blame] | 551 | @[ -z "$(findstring fo300,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 552 | { echo "#define CONFIG_FO300" >>$(obj)include/config.h ; \ |
Marian Balakowicz | 6d3bc9b | 2006-08-18 19:14:46 +0200 | [diff] [blame] | 553 | echo "... TQM5200 on FO300" ; \ |
| 554 | } |
wdenk | 8939404 | 2004-08-04 21:56:49 +0000 | [diff] [blame] | 555 | @[ -z "$(findstring MiniFAP,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 556 | { echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h ; \ |
wdenk | 8939404 | 2004-08-04 21:56:49 +0000 | [diff] [blame] | 557 | echo "... TQM5200_AC on MiniFAP" ; \ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 558 | } |
Wolfgang Denk | cd65a3d | 2006-06-16 16:11:34 +0200 | [diff] [blame] | 559 | @[ -z "$(findstring STK100,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 560 | { echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h ; \ |
Wolfgang Denk | cd65a3d | 2006-06-16 16:11:34 +0200 | [diff] [blame] | 561 | echo "... on a STK52XX.100 base board" ; \ |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 562 | } |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 563 | @[ -z "$(findstring TQM5200_B,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 564 | { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \ |
Wolfgang Denk | 5078cce | 2006-07-21 11:16:34 +0200 | [diff] [blame] | 565 | } |
| 566 | @[ -z "$(findstring TQM5200S,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 567 | { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \ |
| 568 | echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \ |
Wolfgang Denk | 45a212c | 2006-07-19 17:52:30 +0200 | [diff] [blame] | 569 | } |
Wolfgang Denk | 978b109 | 2006-07-19 18:01:38 +0200 | [diff] [blame] | 570 | @[ -z "$(findstring HIGHBOOT,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 571 | { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp ; \ |
Wolfgang Denk | 978b109 | 2006-07-19 18:01:38 +0200 | [diff] [blame] | 572 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 573 | @$(MKCONFIG) -n $@ -a TQM5200 ppc mpc5xxx tqm5200 |
wdenk | 56523f1 | 2004-07-11 17:40:54 +0000 | [diff] [blame] | 574 | |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 575 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 576 | ## MPC8xx Systems |
| 577 | ######################################################################### |
| 578 | |
wdenk | 2d24a3a | 2004-06-09 21:50:45 +0000 | [diff] [blame] | 579 | Adder_config \ |
| 580 | Adder87x_config \ |
wdenk | 2623813 | 2004-07-09 22:51:01 +0000 | [diff] [blame] | 581 | AdderII_config \ |
wdenk | 2d24a3a | 2004-06-09 21:50:45 +0000 | [diff] [blame] | 582 | : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 583 | @mkdir -p $(obj)include |
wdenk | 2623813 | 2004-07-09 22:51:01 +0000 | [diff] [blame] | 584 | $(if $(findstring AdderII,$@), \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 585 | @echo "#define CONFIG_MPC852T" > $(obj)include/config.h) |
| 586 | @$(MKCONFIG) -a Adder ppc mpc8xx adder |
wdenk | 2d24a3a | 2004-06-09 21:50:45 +0000 | [diff] [blame] | 587 | |
wdenk | 180d3f7 | 2004-01-04 16:28:35 +0000 | [diff] [blame] | 588 | ADS860_config \ |
wdenk | 180d3f7 | 2004-01-04 16:28:35 +0000 | [diff] [blame] | 589 | FADS823_config \ |
| 590 | FADS850SAR_config \ |
| 591 | MPC86xADS_config \ |
wdenk | 1114257 | 2004-06-06 21:35:06 +0000 | [diff] [blame] | 592 | MPC885ADS_config \ |
wdenk | 180d3f7 | 2004-01-04 16:28:35 +0000 | [diff] [blame] | 593 | FADS860T_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 594 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx fads |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 595 | |
| 596 | AMX860_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 597 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx amx860 westel |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 598 | |
| 599 | c2mon_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 600 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx c2mon |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 601 | |
| 602 | CCM_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 603 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx CCM siemens |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 604 | |
| 605 | cogent_mpc8xx_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 606 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx cogent |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 607 | |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 608 | ELPT860_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 609 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx elpt860 LEOX |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 610 | |
Wolfgang Denk | 84c960c | 2006-03-12 23:17:31 +0100 | [diff] [blame] | 611 | EP88x_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 612 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx ep88x |
Wolfgang Denk | 84c960c | 2006-03-12 23:17:31 +0100 | [diff] [blame] | 613 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 614 | ESTEEM192E_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 615 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx esteem192e |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 616 | |
| 617 | ETX094_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 618 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx etx094 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 619 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 620 | FLAGADM_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 621 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx flagadm |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 622 | |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 623 | xtract_GEN860T = $(subst _SC,,$(subst _config,,$1)) |
| 624 | |
| 625 | GEN860T_SC_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 626 | GEN860T_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 627 | @mkdir -p $(obj)include |
| 628 | @ >$(obj)include/config.h |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 629 | @[ -z "$(findstring _SC,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 630 | { echo "#define CONFIG_SC" >>$(obj)include/config.h ; \ |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 631 | echo "With reduced H/W feature set (SC)..." ; \ |
| 632 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 633 | @$(MKCONFIG) -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 634 | |
| 635 | GENIETV_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 636 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx genietv |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 637 | |
| 638 | GTH_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 639 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx gth |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 640 | |
| 641 | hermes_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 642 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx hermes |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 643 | |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 644 | HMI10_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 645 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 646 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 647 | IAD210_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 648 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx IAD210 siemens |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 649 | |
| 650 | xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1)) |
| 651 | |
| 652 | ICU862_100MHz_config \ |
| 653 | ICU862_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 654 | @mkdir -p $(obj)include |
| 655 | @ >$(obj)include/config.h |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 656 | @[ -z "$(findstring _100MHz,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 657 | { echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 658 | echo "... with 100MHz system clock" ; \ |
| 659 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 660 | @$(MKCONFIG) -a $(call xtract_ICU862,$@) ppc mpc8xx icu862 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 661 | |
| 662 | IP860_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 663 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx ip860 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 664 | |
| 665 | IVML24_256_config \ |
| 666 | IVML24_128_config \ |
| 667 | IVML24_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 668 | @mkdir -p $(obj)include |
| 669 | @ >$(obj)include/config.h |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 670 | @[ -z "$(findstring IVML24_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 671 | { echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 672 | } |
| 673 | @[ -z "$(findstring IVML24_128_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 674 | { echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 675 | } |
| 676 | @[ -z "$(findstring IVML24_256_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 677 | { echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 678 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 679 | @$(MKCONFIG) -a IVML24 ppc mpc8xx ivm |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 680 | |
| 681 | IVMS8_256_config \ |
| 682 | IVMS8_128_config \ |
| 683 | IVMS8_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 684 | @mkdir -p $(obj)include |
| 685 | @ >$(obj)include/config.h |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 686 | @[ -z "$(findstring IVMS8_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 687 | { echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 688 | } |
| 689 | @[ -z "$(findstring IVMS8_128_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 690 | { echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 691 | } |
| 692 | @[ -z "$(findstring IVMS8_256_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 693 | { echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 694 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 695 | @$(MKCONFIG) -a IVMS8 ppc mpc8xx ivm |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 696 | |
wdenk | 56f94be | 2002-11-05 16:35:14 +0000 | [diff] [blame] | 697 | KUP4K_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 698 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4k kup |
wdenk | 0608e04 | 2004-03-25 19:29:38 +0000 | [diff] [blame] | 699 | |
| 700 | KUP4X_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 701 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4x kup |
wdenk | 56f94be | 2002-11-05 16:35:14 +0000 | [diff] [blame] | 702 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 703 | LANTEC_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 704 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx lantec |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 705 | |
| 706 | lwmon_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 707 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx lwmon |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 708 | |
| 709 | MBX_config \ |
| 710 | MBX860T_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 711 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx mbx8xx |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 712 | |
| 713 | MHPC_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 714 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx mhpc eltec |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 715 | |
| 716 | MVS1_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 717 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx mvs1 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 718 | |
wdenk | 993cad9 | 2003-06-26 22:04:09 +0000 | [diff] [blame] | 719 | xtract_NETVIA = $(subst _V2,,$(subst _config,,$1)) |
| 720 | |
| 721 | NETVIA_V2_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 722 | NETVIA_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 723 | @mkdir -p $(obj)include |
| 724 | @ >$(obj)include/config.h |
wdenk | 993cad9 | 2003-06-26 22:04:09 +0000 | [diff] [blame] | 725 | @[ -z "$(findstring NETVIA_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 726 | { echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \ |
wdenk | 993cad9 | 2003-06-26 22:04:09 +0000 | [diff] [blame] | 727 | echo "... Version 1" ; \ |
| 728 | } |
| 729 | @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 730 | { echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \ |
wdenk | 993cad9 | 2003-06-26 22:04:09 +0000 | [diff] [blame] | 731 | echo "... Version 2" ; \ |
| 732 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 733 | @$(MKCONFIG) -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 734 | |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 735 | xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1)) |
| 736 | |
| 737 | NETPHONE_V2_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 738 | NETPHONE_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 739 | @mkdir -p $(obj)include |
| 740 | @ >$(obj)include/config.h |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 741 | @[ -z "$(findstring NETPHONE_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 742 | { echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \ |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 743 | } |
| 744 | @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 745 | { echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \ |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 746 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 747 | @$(MKCONFIG) -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 748 | |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 749 | xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1)))) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 750 | |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 751 | NETTA_ISDN_6412_SWAPHOOK_config \ |
| 752 | NETTA_ISDN_SWAPHOOK_config \ |
| 753 | NETTA_6412_SWAPHOOK_config \ |
| 754 | NETTA_SWAPHOOK_config \ |
| 755 | NETTA_ISDN_6412_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 756 | NETTA_ISDN_config \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 757 | NETTA_6412_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 758 | NETTA_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 759 | @mkdir -p $(obj)include |
| 760 | @ >$(obj)include/config.h |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 761 | @[ -z "$(findstring ISDN_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 762 | { echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 763 | } |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 764 | @[ -n "$(findstring ISDN_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 765 | { echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 766 | } |
| 767 | @[ -z "$(findstring 6412_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 768 | { echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 769 | } |
| 770 | @[ -n "$(findstring 6412_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 771 | { echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 772 | } |
| 773 | @[ -z "$(findstring SWAPHOOK_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 774 | { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 775 | } |
| 776 | @[ -n "$(findstring SWAPHOOK_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 777 | { echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 778 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 779 | @$(MKCONFIG) -a $(call xtract_NETTA,$@) ppc mpc8xx netta |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 780 | |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 781 | xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1)) |
| 782 | |
| 783 | NETTA2_V2_config \ |
| 784 | NETTA2_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 785 | @mkdir -p $(obj)include |
| 786 | @ >$(obj)include/config.h |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 787 | @[ -z "$(findstring NETTA2_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 788 | { echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 789 | } |
| 790 | @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 791 | { echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \ |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 792 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 793 | @$(MKCONFIG) -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2 |
wdenk | 79fa88f | 2004-06-07 23:46:25 +0000 | [diff] [blame] | 794 | |
dzu@denx.de | a367d42 | 2006-04-19 11:52:46 +0200 | [diff] [blame] | 795 | NC650_Rev1_config \ |
| 796 | NC650_Rev2_config \ |
| 797 | CP850_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 798 | @mkdir -p $(obj)include |
| 799 | @ >$(obj)include/config.h |
dzu@denx.de | a367d42 | 2006-04-19 11:52:46 +0200 | [diff] [blame] | 800 | @[ -z "$(findstring CP850,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 801 | { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \ |
| 802 | echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \ |
dzu@denx.de | a367d42 | 2006-04-19 11:52:46 +0200 | [diff] [blame] | 803 | } |
| 804 | @[ -z "$(findstring Rev1,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 805 | { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \ |
dzu@denx.de | a367d42 | 2006-04-19 11:52:46 +0200 | [diff] [blame] | 806 | } |
| 807 | @[ -z "$(findstring Rev2,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 808 | { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \ |
dzu@denx.de | a367d42 | 2006-04-19 11:52:46 +0200 | [diff] [blame] | 809 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 810 | @$(MKCONFIG) -a NC650 ppc mpc8xx nc650 |
wdenk | 7ca202f | 2004-08-28 22:45:57 +0000 | [diff] [blame] | 811 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 812 | NX823_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 813 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx nx823 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 814 | |
| 815 | pcu_e_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 816 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx pcu_e siemens |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 817 | |
wdenk | 3bbc899 | 2003-12-07 22:27:15 +0000 | [diff] [blame] | 818 | QS850_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 819 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc |
wdenk | 3bbc899 | 2003-12-07 22:27:15 +0000 | [diff] [blame] | 820 | |
| 821 | QS823_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 822 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc |
wdenk | 3bbc899 | 2003-12-07 22:27:15 +0000 | [diff] [blame] | 823 | |
| 824 | QS860T_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 825 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs860t snmc |
wdenk | 3bbc899 | 2003-12-07 22:27:15 +0000 | [diff] [blame] | 826 | |
wdenk | da93ed8 | 2004-09-29 11:02:56 +0000 | [diff] [blame] | 827 | quantum_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 828 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx quantum |
wdenk | da93ed8 | 2004-09-29 11:02:56 +0000 | [diff] [blame] | 829 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 830 | R360MPI_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 831 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx r360mpi |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 832 | |
wdenk | 682011f | 2003-06-03 23:54:09 +0000 | [diff] [blame] | 833 | RBC823_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 834 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx rbc823 |
wdenk | 682011f | 2003-06-03 23:54:09 +0000 | [diff] [blame] | 835 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 836 | RPXClassic_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 837 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXClassic |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 838 | |
| 839 | RPXlite_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 840 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXlite |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 841 | |
wdenk | e63c8ee | 2004-06-09 21:04:48 +0000 | [diff] [blame] | 842 | RPXlite_DW_64_config \ |
| 843 | RPXlite_DW_LCD_config \ |
| 844 | RPXlite_DW_64_LCD_config \ |
| 845 | RPXlite_DW_NVRAM_config \ |
| 846 | RPXlite_DW_NVRAM_64_config \ |
| 847 | RPXlite_DW_NVRAM_LCD_config \ |
| 848 | RPXlite_DW_NVRAM_64_LCD_config \ |
| 849 | RPXlite_DW_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 850 | @mkdir -p $(obj)include |
| 851 | @ >$(obj)include/config.h |
wdenk | e63c8ee | 2004-06-09 21:04:48 +0000 | [diff] [blame] | 852 | @[ -z "$(findstring _64,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 853 | { echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \ |
wdenk | e63c8ee | 2004-06-09 21:04:48 +0000 | [diff] [blame] | 854 | echo "... with 64MHz system clock ..."; \ |
| 855 | } |
| 856 | @[ -z "$(findstring _LCD,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 857 | { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \ |
| 858 | echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \ |
wdenk | e63c8ee | 2004-06-09 21:04:48 +0000 | [diff] [blame] | 859 | echo "... with LCD display ..."; \ |
| 860 | } |
| 861 | @[ -z "$(findstring _NVRAM,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 862 | { echo "#define CFG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \ |
wdenk | e63c8ee | 2004-06-09 21:04:48 +0000 | [diff] [blame] | 863 | echo "... with ENV in NVRAM ..."; \ |
| 864 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 865 | @$(MKCONFIG) -a RPXlite_DW ppc mpc8xx RPXlite_dw |
wdenk | e63c8ee | 2004-06-09 21:04:48 +0000 | [diff] [blame] | 866 | |
wdenk | 73a8b27 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 867 | rmu_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 868 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx rmu |
wdenk | 73a8b27 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 869 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 870 | RRvision_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 871 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx RRvision |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 872 | |
| 873 | RRvision_LCD_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 874 | @mkdir -p $(obj)include |
| 875 | @echo "#define CONFIG_LCD" >$(obj)include/config.h |
| 876 | @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h |
| 877 | @$(MKCONFIG) -a RRvision ppc mpc8xx RRvision |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 878 | |
| 879 | SM850_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 880 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 881 | |
Markus Klotzbuecher | b02d017 | 2006-07-12 08:48:24 +0200 | [diff] [blame] | 882 | spc1920_config: |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 883 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx spc1920 |
Markus Klotzbuecher | b02d017 | 2006-07-12 08:48:24 +0200 | [diff] [blame] | 884 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 885 | SPD823TS_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 886 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx spd8xx |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 887 | |
Wolfgang Denk | 6bdf430 | 2005-08-15 15:55:00 +0200 | [diff] [blame] | 888 | stxxtc_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 889 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx stxxtc |
Wolfgang Denk | 6bdf430 | 2005-08-15 15:55:00 +0200 | [diff] [blame] | 890 | |
wdenk | dc7c9a1 | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 891 | svm_sc8xx_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 892 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx svm_sc8xx |
wdenk | dc7c9a1 | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 893 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 894 | SXNI855T_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 895 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx sixnet |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 896 | |
wdenk | db2f721f | 2003-03-06 00:58:30 +0000 | [diff] [blame] | 897 | # EMK MPC8xx based modules |
| 898 | TOP860_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 899 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx top860 emk |
wdenk | db2f721f | 2003-03-06 00:58:30 +0000 | [diff] [blame] | 900 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 901 | # Play some tricks for configuration selection |
wdenk | e9132ea | 2004-04-24 23:23:30 +0000 | [diff] [blame] | 902 | # Only 855 and 860 boards may come with FEC |
| 903 | # and only 823 boards may have LCD support |
| 904 | xtract_8xx = $(subst _LCD,,$(subst _config,,$1)) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 905 | |
| 906 | FPS850L_config \ |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 907 | FPS860L_config \ |
wdenk | f12e568 | 2003-07-07 20:07:54 +0000 | [diff] [blame] | 908 | NSCU_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 909 | TQM823L_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 910 | TQM823L_LCD_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 911 | TQM850L_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 912 | TQM855L_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 913 | TQM860L_config \ |
wdenk | d126bfb | 2003-04-10 11:18:18 +0000 | [diff] [blame] | 914 | TQM862L_config \ |
wdenk | ae3af05 | 2003-08-07 22:18:11 +0000 | [diff] [blame] | 915 | TQM823M_config \ |
wdenk | ae3af05 | 2003-08-07 22:18:11 +0000 | [diff] [blame] | 916 | TQM850M_config \ |
wdenk | f12e568 | 2003-07-07 20:07:54 +0000 | [diff] [blame] | 917 | TQM855M_config \ |
wdenk | f12e568 | 2003-07-07 20:07:54 +0000 | [diff] [blame] | 918 | TQM860M_config \ |
wdenk | f12e568 | 2003-07-07 20:07:54 +0000 | [diff] [blame] | 919 | TQM862M_config \ |
Wolfgang Denk | 8cba090 | 2006-05-12 16:15:46 +0200 | [diff] [blame] | 920 | TQM866M_config \ |
Markus Klotzbuecher | 090eb73 | 2006-07-12 15:26:01 +0200 | [diff] [blame] | 921 | TQM885D_config \ |
Wolfgang Denk | 8cba090 | 2006-05-12 16:15:46 +0200 | [diff] [blame] | 922 | virtlab2_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 923 | @mkdir -p $(obj)include |
| 924 | @ >$(obj)include/config.h |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 925 | @[ -z "$(findstring _LCD,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 926 | { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \ |
| 927 | echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 928 | echo "... with LCD display" ; \ |
| 929 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 930 | @$(MKCONFIG) -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 931 | |
| 932 | TTTech_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 933 | @mkdir -p $(obj)include |
| 934 | @echo "#define CONFIG_LCD" >$(obj)include/config.h |
| 935 | @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h |
| 936 | @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 937 | |
wdenk | ec0aee7 | 2004-12-19 09:58:11 +0000 | [diff] [blame] | 938 | uc100_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 939 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx uc100 |
wdenk | f7d1572 | 2004-12-18 22:35:43 +0000 | [diff] [blame] | 940 | |
wdenk | 608c914 | 2003-01-13 23:54:46 +0000 | [diff] [blame] | 941 | v37_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 942 | @mkdir -p $(obj)include |
| 943 | @echo "#define CONFIG_LCD" >$(obj)include/config.h |
| 944 | @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h |
| 945 | @$(MKCONFIG) $(@:_config=) ppc mpc8xx v37 |
wdenk | 608c914 | 2003-01-13 23:54:46 +0000 | [diff] [blame] | 946 | |
dzu | 91e940d | 2003-09-25 22:32:40 +0000 | [diff] [blame] | 947 | wtk_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 948 | @mkdir -p $(obj)include |
| 949 | @echo "#define CONFIG_LCD" >$(obj)include/config.h |
| 950 | @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h |
| 951 | @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx |
dzu | 91e940d | 2003-09-25 22:32:40 +0000 | [diff] [blame] | 952 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 953 | ######################################################################### |
| 954 | ## PPC4xx Systems |
| 955 | ######################################################################### |
wdenk | e55ca7e | 2004-07-01 21:40:08 +0000 | [diff] [blame] | 956 | 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] | 957 | |
| 958 | ADCIOP_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 959 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx adciop esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 960 | |
Wolfgang Denk | 7521af1 | 2005-10-09 01:04:33 +0200 | [diff] [blame] | 961 | AP1000_config:unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 962 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx ap1000 amirix |
Wolfgang Denk | 7521af1 | 2005-10-09 01:04:33 +0200 | [diff] [blame] | 963 | |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 964 | APC405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 965 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx apc405 esd |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 966 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 967 | AR405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 968 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx ar405 esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 969 | |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 970 | ASH405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 971 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx ash405 esd |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 972 | |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 973 | bamboo_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 974 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx bamboo amcc |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 975 | |
| 976 | bubinga_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 977 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx bubinga amcc |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 978 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 979 | CANBT_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 980 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx canbt esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 981 | |
wdenk | 1d6f972 | 2004-09-09 17:44:35 +0000 | [diff] [blame] | 982 | CATcenter_config \ |
| 983 | CATcenter_25_config \ |
| 984 | CATcenter_33_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 985 | @mkdir -p $(obj)include |
| 986 | @ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h |
| 987 | @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h |
wdenk | 1d6f972 | 2004-09-09 17:44:35 +0000 | [diff] [blame] | 988 | @[ -z "$(findstring _25,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 989 | { echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \ |
wdenk | 1d6f972 | 2004-09-09 17:44:35 +0000 | [diff] [blame] | 990 | echo "SysClk = 25MHz" ; \ |
| 991 | } |
| 992 | @[ -z "$(findstring _33,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 993 | { echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \ |
wdenk | 1d6f972 | 2004-09-09 17:44:35 +0000 | [diff] [blame] | 994 | echo "SysClk = 33MHz" ; \ |
| 995 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 996 | @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave |
wdenk | 10767cc | 2004-05-13 13:23:58 +0000 | [diff] [blame] | 997 | |
Stefan Roese | 7644f16 | 2005-09-22 09:16:57 +0200 | [diff] [blame] | 998 | CPCI2DP_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 999 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd |
Stefan Roese | 7644f16 | 2005-09-22 09:16:57 +0200 | [diff] [blame] | 1000 | |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 1001 | CPCI405_config \ |
| 1002 | CPCI4052_config \ |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1003 | CPCI405DT_config \ |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 1004 | CPCI405AB_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1005 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci405 esd |
| 1006 | @echo "BOARD_REVISION = $(@:_config=)" >> $(obj)include/config.mk |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1007 | |
| 1008 | CPCI440_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1009 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci440 esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1010 | |
| 1011 | CPCIISER4_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1012 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpciiser4 esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1013 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1014 | CRAYL1_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1015 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx L1 cray |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1016 | |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 1017 | csb272_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1018 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb272 |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 1019 | |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 1020 | csb472_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1021 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb472 |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 1022 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1023 | DASA_SIM_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1024 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx dasa_sim esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1025 | |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 1026 | DP405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1027 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx dp405 esd |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 1028 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1029 | DU405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1030 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx du405 esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1031 | |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 1032 | ebony_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1033 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx ebony amcc |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1034 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1035 | ERIC_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1036 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx eric |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1037 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1038 | EXBITGEN_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1039 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx exbitgen |
wdenk | d1cbe85 | 2003-06-28 17:24:46 +0000 | [diff] [blame] | 1040 | |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1041 | G2000_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1042 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx g2000 |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1043 | |
| 1044 | HH405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1045 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx hh405 esd |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1046 | |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 1047 | HUB405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1048 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 1049 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1050 | JSE_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1051 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx jse |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1052 | |
Stefan Roese | b79316f | 2005-08-15 12:31:23 +0200 | [diff] [blame] | 1053 | KAREF_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1054 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx karef sandburst |
Stefan Roese | b79316f | 2005-08-15 12:31:23 +0200 | [diff] [blame] | 1055 | |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 1056 | luan_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1057 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx luan amcc |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 1058 | |
Stefan Roese | b79316f | 2005-08-15 12:31:23 +0200 | [diff] [blame] | 1059 | METROBOX_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1060 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx metrobox sandburst |
Stefan Roese | b79316f | 2005-08-15 12:31:23 +0200 | [diff] [blame] | 1061 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1062 | MIP405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1063 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx mip405 mpl |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1064 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1065 | MIP405T_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1066 | @mkdir -p $(obj)include |
| 1067 | @echo "#define CONFIG_MIP405T" >$(obj)include/config.h |
wdenk | f3e0de6 | 2003-06-04 15:05:30 +0000 | [diff] [blame] | 1068 | @echo "Enable subset config for MIP405T" |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1069 | @$(MKCONFIG) -a MIP405 ppc ppc4xx mip405 mpl |
wdenk | f3e0de6 | 2003-06-04 15:05:30 +0000 | [diff] [blame] | 1070 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1071 | ML2_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1072 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml2 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1073 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1074 | ml300_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1075 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml300 xilinx |
wdenk | 028ab6b | 2004-02-23 23:54:43 +0000 | [diff] [blame] | 1076 | |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 1077 | ocotea_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1078 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocotea amcc |
wdenk | 0e6d798 | 2004-03-14 00:07:33 +0000 | [diff] [blame] | 1079 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1080 | OCRTC_config \ |
| 1081 | ORSG_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1082 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocrtc esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1083 | |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 1084 | p3p440_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1085 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx p3p440 prodrive |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 1086 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1087 | PCI405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1088 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx pci405 esd |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1089 | |
Stefan Roese | a4c8d13 | 2006-06-02 16:18:04 +0200 | [diff] [blame] | 1090 | pcs440ep_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1091 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx pcs440ep |
Stefan Roese | a4c8d13 | 2006-06-02 16:18:04 +0200 | [diff] [blame] | 1092 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1093 | PIP405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1094 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx pip405 mpl |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1095 | |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 1096 | PLU405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1097 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx plu405 esd |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 1098 | |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 1099 | PMC405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1100 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx pmc405 esd |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 1101 | |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 1102 | PPChameleonEVB_config \ |
wdenk | e55ca7e | 2004-07-01 21:40:08 +0000 | [diff] [blame] | 1103 | PPChameleonEVB_BA_25_config \ |
| 1104 | PPChameleonEVB_ME_25_config \ |
| 1105 | PPChameleonEVB_HI_25_config \ |
| 1106 | PPChameleonEVB_BA_33_config \ |
| 1107 | PPChameleonEVB_ME_33_config \ |
| 1108 | PPChameleonEVB_HI_33_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1109 | @mkdir -p $(obj)include |
| 1110 | @ >$(obj)include/config.h |
wdenk | 1d6f972 | 2004-09-09 17:44:35 +0000 | [diff] [blame] | 1111 | @[ -z "$(findstring EVB_BA,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1112 | { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h ; \ |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 1113 | echo "... BASIC model" ; \ |
| 1114 | } |
wdenk | 1d6f972 | 2004-09-09 17:44:35 +0000 | [diff] [blame] | 1115 | @[ -z "$(findstring EVB_ME,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1116 | { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h ; \ |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 1117 | echo "... MEDIUM model" ; \ |
| 1118 | } |
wdenk | 1d6f972 | 2004-09-09 17:44:35 +0000 | [diff] [blame] | 1119 | @[ -z "$(findstring EVB_HI,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1120 | { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h ; \ |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 1121 | echo "... HIGH-END model" ; \ |
| 1122 | } |
wdenk | e55ca7e | 2004-07-01 21:40:08 +0000 | [diff] [blame] | 1123 | @[ -z "$(findstring _25,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1124 | { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h ; \ |
wdenk | 1d6f972 | 2004-09-09 17:44:35 +0000 | [diff] [blame] | 1125 | echo "SysClk = 25MHz" ; \ |
wdenk | e55ca7e | 2004-07-01 21:40:08 +0000 | [diff] [blame] | 1126 | } |
| 1127 | @[ -z "$(findstring _33,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1128 | { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h ; \ |
wdenk | 1d6f972 | 2004-09-09 17:44:35 +0000 | [diff] [blame] | 1129 | echo "SysClk = 33MHz" ; \ |
wdenk | e55ca7e | 2004-07-01 21:40:08 +0000 | [diff] [blame] | 1130 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1131 | @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave |
wdenk | 12f3424 | 2003-09-02 22:48:03 +0000 | [diff] [blame] | 1132 | |
wdenk | 652a10c | 2005-01-09 23:48:14 +0000 | [diff] [blame] | 1133 | sbc405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1134 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx sbc405 |
wdenk | 652a10c | 2005-01-09 23:48:14 +0000 | [diff] [blame] | 1135 | |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 1136 | sycamore_config: unconfig |
| 1137 | @echo "Configuring for sycamore board as subset of walnut..." |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1138 | @$(MKCONFIG) -a walnut ppc ppc4xx walnut amcc |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 1139 | |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 1140 | VOH405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1141 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx voh405 esd |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 1142 | |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1143 | VOM405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1144 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx vom405 esd |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1145 | |
Stefan Roese | feaedfc | 2005-11-15 10:35:59 +0100 | [diff] [blame] | 1146 | CMS700_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1147 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd |
Stefan Roese | feaedfc | 2005-11-15 10:35:59 +0100 | [diff] [blame] | 1148 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1149 | W7OLMC_config \ |
| 1150 | W7OLMG_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1151 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx w7o |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1152 | |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 1153 | walnut_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1154 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx walnut amcc |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1155 | |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1156 | WUH405_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1157 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx wuh405 esd |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1158 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1159 | XPEDITE1K_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1160 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx xpedite1k |
wdenk | ba56f62 | 2004-02-06 23:19:44 +0000 | [diff] [blame] | 1161 | |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 1162 | yosemite_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1163 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx yosemite amcc |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 1164 | |
| 1165 | yellowstone_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1166 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx yellowstone amcc |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 1167 | |
Marian Balakowicz | 6c5879f | 2006-06-30 16:30:46 +0200 | [diff] [blame] | 1168 | yucca_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1169 | @$(MKCONFIG) $(@:_config=) ppc ppc4xx yucca amcc |
Marian Balakowicz | 6c5879f | 2006-06-30 16:30:46 +0200 | [diff] [blame] | 1170 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1171 | ######################################################################### |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 1172 | ## MPC8220 Systems |
| 1173 | ######################################################################### |
Wolfgang Denk | dc17fb6 | 2005-08-03 22:32:02 +0200 | [diff] [blame] | 1174 | |
| 1175 | Alaska8220_config \ |
| 1176 | Yukon8220_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1177 | @$(MKCONFIG) $(@:_config=) ppc mpc8220 alaska |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 1178 | |
wdenk | 12b43d5 | 2005-04-05 21:57:18 +0000 | [diff] [blame] | 1179 | sorcery_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1180 | @$(MKCONFIG) $(@:_config=) ppc mpc8220 sorcery |
wdenk | 12b43d5 | 2005-04-05 21:57:18 +0000 | [diff] [blame] | 1181 | |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 1182 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1183 | ## MPC824x Systems |
| 1184 | ######################################################################### |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1185 | xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1)))))) |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 1186 | |
wdenk | 0332990 | 2003-06-20 22:36:30 +0000 | [diff] [blame] | 1187 | A3000_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1188 | @$(MKCONFIG) $(@:_config=) ppc mpc824x a3000 |
wdenk | 0332990 | 2003-06-20 22:36:30 +0000 | [diff] [blame] | 1189 | |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 1190 | barco_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1191 | @$(MKCONFIG) $(@:_config=) ppc mpc824x barco |
Wolfgang Denk | 8e6f1a8 | 2005-09-25 18:59:36 +0200 | [diff] [blame] | 1192 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1193 | BMW_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1194 | @$(MKCONFIG) $(@:_config=) ppc mpc824x bmw |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1195 | |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 1196 | CPC45_config \ |
| 1197 | CPC45_ROMBOOT_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1198 | @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc824x cpc45 |
| 1199 | @cd $(obj)include ; \ |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 1200 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ |
| 1201 | echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ |
| 1202 | echo "... booting from 8-bit flash" ; \ |
| 1203 | else \ |
| 1204 | echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ |
| 1205 | echo "... booting from 64-bit flash" ; \ |
| 1206 | fi; \ |
| 1207 | echo "export CONFIG_BOOT_ROM" >> config.mk; |
| 1208 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1209 | CU824_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1210 | @$(MKCONFIG) $(@:_config=) ppc mpc824x cu824 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1211 | |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 1212 | debris_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1213 | @$(MKCONFIG) $(@:_config=) ppc mpc824x debris etin |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 1214 | |
wdenk | 80885a9 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 1215 | eXalion_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1216 | @$(MKCONFIG) $(@:_config=) ppc mpc824x eXalion |
wdenk | 80885a9 | 2004-02-26 23:46:20 +0000 | [diff] [blame] | 1217 | |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 1218 | HIDDEN_DRAGON_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1219 | @$(MKCONFIG) $(@:_config=) ppc mpc824x hidden_dragon |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 1220 | |
Wolfgang Denk | 53dd6ce | 2006-07-21 11:29:20 +0200 | [diff] [blame] | 1221 | kvme080_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1222 | @$(MKCONFIG) $(@:_config=) ppc mpc824x kvme080 etin |
Wolfgang Denk | 53dd6ce | 2006-07-21 11:29:20 +0200 | [diff] [blame] | 1223 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1224 | MOUSSE_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1225 | @$(MKCONFIG) $(@:_config=) ppc mpc824x mousse |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1226 | |
| 1227 | MUSENKI_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1228 | @$(MKCONFIG) $(@:_config=) ppc mpc824x musenki |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1229 | |
wdenk | b4676a2 | 2003-12-07 19:24:00 +0000 | [diff] [blame] | 1230 | MVBLUE_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1231 | @$(MKCONFIG) $(@:_config=) ppc mpc824x mvblue |
wdenk | b4676a2 | 2003-12-07 19:24:00 +0000 | [diff] [blame] | 1232 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1233 | OXC_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1234 | @$(MKCONFIG) $(@:_config=) ppc mpc824x oxc |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1235 | |
| 1236 | PN62_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1237 | @$(MKCONFIG) $(@:_config=) ppc mpc824x pn62 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1238 | |
| 1239 | Sandpoint8240_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1240 | @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1241 | |
| 1242 | Sandpoint8245_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1243 | @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1244 | |
wdenk | 466b741 | 2004-07-10 22:35:59 +0000 | [diff] [blame] | 1245 | sbc8240_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1246 | @$(MKCONFIG) $(@:_config=) ppc mpc824x sbc8240 |
wdenk | 466b741 | 2004-07-10 22:35:59 +0000 | [diff] [blame] | 1247 | |
wdenk | d1cbe85 | 2003-06-28 17:24:46 +0000 | [diff] [blame] | 1248 | SL8245_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1249 | @$(MKCONFIG) $(@:_config=) ppc mpc824x sl8245 |
wdenk | d1cbe85 | 2003-06-28 17:24:46 +0000 | [diff] [blame] | 1250 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1251 | utx8245_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1252 | @$(MKCONFIG) $(@:_config=) ppc mpc824x utx8245 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1253 | |
| 1254 | ######################################################################### |
| 1255 | ## MPC8260 Systems |
| 1256 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1257 | |
wdenk | 54387ac | 2003-10-08 22:45:44 +0000 | [diff] [blame] | 1258 | atc_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1259 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 atc |
wdenk | 54387ac | 2003-10-08 22:45:44 +0000 | [diff] [blame] | 1260 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1261 | cogent_mpc8260_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1262 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 cogent |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1263 | |
| 1264 | CPU86_config \ |
| 1265 | CPU86_ROMBOOT_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1266 | @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu86 |
| 1267 | @cd $(obj)include ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1268 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ |
| 1269 | echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ |
| 1270 | echo "... booting from 8-bit flash" ; \ |
| 1271 | else \ |
| 1272 | echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ |
| 1273 | echo "... booting from 64-bit flash" ; \ |
| 1274 | fi; \ |
| 1275 | echo "export CONFIG_BOOT_ROM" >> config.mk; |
| 1276 | |
wdenk | 384cc68 | 2005-04-03 22:35:21 +0000 | [diff] [blame] | 1277 | CPU87_config \ |
| 1278 | CPU87_ROMBOOT_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1279 | @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu87 |
| 1280 | @cd $(obj)include ; \ |
wdenk | 384cc68 | 2005-04-03 22:35:21 +0000 | [diff] [blame] | 1281 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ |
| 1282 | echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ |
| 1283 | echo "... booting from 8-bit flash" ; \ |
| 1284 | else \ |
| 1285 | echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ |
| 1286 | echo "... booting from 64-bit flash" ; \ |
| 1287 | fi; \ |
| 1288 | echo "export CONFIG_BOOT_ROM" >> config.mk; |
| 1289 | |
Wolfgang Denk | f901a83 | 2005-08-06 01:42:58 +0200 | [diff] [blame] | 1290 | ep8248_config \ |
| 1291 | ep8248E_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1292 | @$(MKCONFIG) ep8248 ppc mpc8260 ep8248 |
Wolfgang Denk | f901a83 | 2005-08-06 01:42:58 +0200 | [diff] [blame] | 1293 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1294 | ep8260_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1295 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep8260 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1296 | |
| 1297 | gw8260_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1298 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 gw8260 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1299 | |
| 1300 | hymod_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1301 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 hymod |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1302 | |
wdenk | 9dd41a7 | 2005-05-12 22:48:09 +0000 | [diff] [blame] | 1303 | IDS8247_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1304 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 ids8247 |
wdenk | 9dd41a7 | 2005-05-12 22:48:09 +0000 | [diff] [blame] | 1305 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1306 | IPHASE4539_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1307 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 iphase4539 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1308 | |
wdenk | c3c7f86 | 2004-06-09 14:47:54 +0000 | [diff] [blame] | 1309 | ISPAN_config \ |
| 1310 | ISPAN_REVB_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1311 | @mkdir -p $(obj)include |
wdenk | c3c7f86 | 2004-06-09 14:47:54 +0000 | [diff] [blame] | 1312 | @if [ "$(findstring _REVB_,$@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1313 | echo "#define CFG_REV_B" > $(obj)include/config.h ; \ |
wdenk | c3c7f86 | 2004-06-09 14:47:54 +0000 | [diff] [blame] | 1314 | fi |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1315 | @$(MKCONFIG) -a ISPAN ppc mpc8260 ispan |
wdenk | c3c7f86 | 2004-06-09 14:47:54 +0000 | [diff] [blame] | 1316 | |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1317 | MPC8260ADS_config \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1318 | MPC8260ADS_lowboot_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1319 | MPC8260ADS_33MHz_config \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1320 | MPC8260ADS_33MHz_lowboot_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1321 | MPC8260ADS_40MHz_config \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1322 | MPC8260ADS_40MHz_lowboot_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1323 | MPC8272ADS_config \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1324 | MPC8272ADS_lowboot_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1325 | PQ2FADS_config \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1326 | PQ2FADS_lowboot_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1327 | PQ2FADS-VR_config \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1328 | PQ2FADS-VR_lowboot_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1329 | PQ2FADS-ZU_config \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1330 | PQ2FADS-ZU_lowboot_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1331 | PQ2FADS-ZU_66MHz_config \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1332 | PQ2FADS-ZU_66MHz_lowboot_config \ |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1333 | : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1334 | @mkdir -p $(obj)include |
| 1335 | @mkdir -p $(obj)board/mpc8260ads |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 1336 | $(if $(findstring PQ2FADS,$@), \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1337 | @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > $(obj)include/config.h, \ |
| 1338 | @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] | 1339 | $(if $(findstring MHz,$@), \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1340 | @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] | 1341 | $(if $(findstring VR,$@), \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1342 | @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h)) |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1343 | @[ -z "$(findstring lowboot_,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1344 | { echo "TEXT_BASE = 0xFF800000" >$(obj)board/mpc8260ads/config.tmp ; \ |
wdenk | 901787d | 2005-04-03 23:22:21 +0000 | [diff] [blame] | 1345 | echo "... with lowboot configuration" ; \ |
| 1346 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1347 | @$(MKCONFIG) -a MPC8260ADS ppc mpc8260 mpc8260ads |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1348 | |
wdenk | db2f721f | 2003-03-06 00:58:30 +0000 | [diff] [blame] | 1349 | MPC8266ADS_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1350 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 mpc8266ads |
wdenk | db2f721f | 2003-03-06 00:58:30 +0000 | [diff] [blame] | 1351 | |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1352 | # PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash |
wdenk | 10f6701 | 2003-03-25 18:06:06 +0000 | [diff] [blame] | 1353 | PM825_config \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1354 | PM825_ROMBOOT_config \ |
| 1355 | PM825_BIGFLASH_config \ |
| 1356 | PM825_ROMBOOT_BIGFLASH_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1357 | PM826_config \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1358 | PM826_ROMBOOT_config \ |
| 1359 | PM826_BIGFLASH_config \ |
| 1360 | PM826_ROMBOOT_BIGFLASH_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1361 | @mkdir -p $(obj)include |
| 1362 | @mkdir -p $(obj)board/pm826 |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1363 | @if [ "$(findstring PM825_,$@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1364 | echo "#define CONFIG_PCI" >$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1365 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1366 | >$(obj)include/config.h ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1367 | fi |
| 1368 | @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ |
| 1369 | echo "... booting from 8-bit flash" ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1370 | echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \ |
| 1371 | echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1372 | if [ "$(findstring _BIGFLASH_,$@)" ] ; then \ |
| 1373 | echo "... with 32 MB Flash" ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1374 | echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1375 | fi; \ |
| 1376 | else \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1377 | echo "... booting from 64-bit flash" ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1378 | if [ "$(findstring _BIGFLASH_,$@)" ] ; then \ |
| 1379 | echo "... with 32 MB Flash" ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1380 | echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \ |
| 1381 | echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1382 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1383 | echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1384 | fi; \ |
| 1385 | fi |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1386 | @$(MKCONFIG) -a PM826 ppc mpc8260 pm826 |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1387 | |
| 1388 | PM828_config \ |
| 1389 | PM828_PCI_config \ |
| 1390 | PM828_ROMBOOT_config \ |
| 1391 | PM828_ROMBOOT_PCI_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1392 | @mkdir -p $(obj)include |
| 1393 | @mkdir -p $(obj)board/pm826 |
Marian Balakowicz | 1707626 | 2006-04-05 20:37:11 +0200 | [diff] [blame] | 1394 | @if [ "$(findstring _PCI_,$@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1395 | echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1396 | echo "... with PCI enabled" ; \ |
| 1397 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1398 | >$(obj)include/config.h ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1399 | fi |
| 1400 | @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ |
| 1401 | echo "... booting from 8-bit flash" ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1402 | echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \ |
| 1403 | echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \ |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1404 | fi |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1405 | @$(MKCONFIG) -a PM828 ppc mpc8260 pm828 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1406 | |
| 1407 | ppmc8260_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1408 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 ppmc8260 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1409 | |
wdenk | 8b0bfc6 | 2005-04-03 23:11:38 +0000 | [diff] [blame] | 1410 | Rattler8248_config \ |
| 1411 | Rattler_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1412 | @mkdir -p $(obj)include |
wdenk | 8b0bfc6 | 2005-04-03 23:11:38 +0000 | [diff] [blame] | 1413 | $(if $(findstring 8248,$@), \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1414 | @echo "#define CONFIG_MPC8248" > $(obj)include/config.h) |
| 1415 | @$(MKCONFIG) -a Rattler ppc mpc8260 rattler |
wdenk | 8b0bfc6 | 2005-04-03 23:11:38 +0000 | [diff] [blame] | 1416 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1417 | RPXsuper_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1418 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 rpxsuper |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1419 | |
| 1420 | rsdproto_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1421 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 rsdproto |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1422 | |
| 1423 | sacsng_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1424 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 sacsng |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1425 | |
| 1426 | sbc8260_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1427 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 sbc8260 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1428 | |
| 1429 | SCM_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1430 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 SCM siemens |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1431 | |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1432 | TQM8255_AA_config \ |
| 1433 | TQM8260_AA_config \ |
| 1434 | TQM8260_AB_config \ |
| 1435 | TQM8260_AC_config \ |
| 1436 | TQM8260_AD_config \ |
| 1437 | TQM8260_AE_config \ |
| 1438 | TQM8260_AF_config \ |
| 1439 | TQM8260_AG_config \ |
| 1440 | TQM8260_AH_config \ |
Wolfgang Denk | 1f62bc2 | 2006-03-07 00:32:07 +0100 | [diff] [blame] | 1441 | TQM8260_AI_config \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1442 | TQM8265_AA_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1443 | @mkdir -p $(obj)include |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1444 | @case "$@" in \ |
Wolfgang Denk | 1f62bc2 | 2006-03-07 00:32:07 +0100 | [diff] [blame] | 1445 | TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \ |
| 1446 | TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \ |
| 1447 | TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \ |
| 1448 | TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \ |
| 1449 | TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \ |
| 1450 | TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \ |
| 1451 | TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \ |
| 1452 | TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \ |
| 1453 | TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \ |
| 1454 | TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \ |
| 1455 | TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1456 | esac; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1457 | >$(obj)include/config.h ; \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1458 | if [ "$${CTYPE}" != "MPC8260" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1459 | echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1460 | fi; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1461 | echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1462 | echo "... with $${CFREQ}MHz system clock" ; \ |
| 1463 | if [ "$${CACHE}" == "yes" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1464 | echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1465 | echo "... with L2 Cache support" ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1466 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1467 | echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1468 | echo "... without L2 Cache support" ; \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1469 | fi; \ |
| 1470 | if [ "$${BMODE}" == "60x" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1471 | echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1472 | echo "... with 60x Bus Mode" ; \ |
| 1473 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1474 | echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 1475 | echo "... without 60x Bus Mode" ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1476 | fi |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1477 | @$(MKCONFIG) -a TQM8260 ppc mpc8260 tqm8260 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1478 | |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 1479 | VoVPN-GW_66MHz_config \ |
| 1480 | VoVPN-GW_100MHz_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1481 | @mkdir -p $(obj)include |
| 1482 | @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h |
| 1483 | @$(MKCONFIG) -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk |
wdenk | ba91e26 | 2005-05-30 23:55:42 +0000 | [diff] [blame] | 1484 | |
wdenk | 54387ac | 2003-10-08 22:45:44 +0000 | [diff] [blame] | 1485 | ZPC1900_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1486 | @$(MKCONFIG) $(@:_config=) ppc mpc8260 zpc1900 |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 1487 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 1488 | ######################################################################### |
| 1489 | ## Coldfire |
| 1490 | ######################################################################### |
| 1491 | |
Wolfgang Denk | 7481266 | 2005-12-12 16:06:05 +0100 | [diff] [blame] | 1492 | cobra5272_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1493 | @$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272 |
Wolfgang Denk | 7481266 | 2005-12-12 16:06:05 +0100 | [diff] [blame] | 1494 | |
Wolfgang Denk | 4176c79 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 1495 | EB+MCF-EV123_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1496 | @mkdir -p $(obj)include |
| 1497 | @mkdir -p $(obj)board/BuS/EB+MCF-EV123 |
| 1498 | @ >$(obj)include/config.h |
| 1499 | @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk |
| 1500 | @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS |
Wolfgang Denk | 4176c79 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 1501 | |
| 1502 | EB+MCF-EV123_internal_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1503 | @mkdir -p $(obj)include |
| 1504 | @mkdir -p $(obj)board/BuS/EB+MCF-EV123 |
| 1505 | @ >$(obj)include/config.h |
| 1506 | @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk |
| 1507 | @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS |
Wolfgang Denk | 4176c79 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 1508 | |
| 1509 | M5271EVB_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1510 | @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb |
Wolfgang Denk | 4176c79 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 1511 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 1512 | M5272C3_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1513 | @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3 |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 1514 | |
| 1515 | M5282EVB_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1516 | @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 1517 | |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1518 | TASREG_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1519 | @$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1520 | |
Zachary P. Landau | 3a108ed | 2006-01-26 17:37:59 -0500 | [diff] [blame] | 1521 | r5200_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1522 | @$(MKCONFIG) $(@:_config=) m68k mcf52x2 r5200 |
Zachary P. Landau | 3a108ed | 2006-01-26 17:37:59 -0500 | [diff] [blame] | 1523 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1524 | ######################################################################### |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1525 | ## MPC83xx Systems |
| 1526 | ######################################################################### |
| 1527 | |
| 1528 | MPC8349ADS_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1529 | @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349ads |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1530 | |
Marian Balakowicz | e6f2e90 | 2005-10-11 19:09:42 +0200 | [diff] [blame] | 1531 | TQM834x_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1532 | @$(MKCONFIG) $(@:_config=) ppc mpc83xx tqm834x |
Marian Balakowicz | e6f2e90 | 2005-10-11 19:09:42 +0200 | [diff] [blame] | 1533 | |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 1534 | MPC8349EMDS_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1535 | @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349emds |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 1536 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1537 | ######################################################################### |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1538 | ## MPC85xx Systems |
| 1539 | ######################################################################### |
| 1540 | |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 1541 | MPC8540ADS_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1542 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8540ads |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1543 | |
Lunsheng Wang | b0e3294 | 2005-07-29 10:20:29 -0500 | [diff] [blame] | 1544 | MPC8540EVAL_config \ |
| 1545 | MPC8540EVAL_33_config \ |
| 1546 | MPC8540EVAL_66_config \ |
| 1547 | MPC8540EVAL_33_slave_config \ |
| 1548 | MPC8540EVAL_66_slave_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1549 | @mkdir -p $(obj)include |
| 1550 | @echo "" >$(obj)include/config.h ; \ |
Lunsheng Wang | b0e3294 | 2005-07-29 10:20:29 -0500 | [diff] [blame] | 1551 | if [ "$(findstring _33_,$@)" ] ; then \ |
| 1552 | echo -n "... 33 MHz PCI" ; \ |
| 1553 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1554 | echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \ |
Lunsheng Wang | b0e3294 | 2005-07-29 10:20:29 -0500 | [diff] [blame] | 1555 | echo -n "... 66 MHz PCI" ; \ |
| 1556 | fi ; \ |
| 1557 | if [ "$(findstring _slave_,$@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1558 | echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \ |
Lunsheng Wang | b0e3294 | 2005-07-29 10:20:29 -0500 | [diff] [blame] | 1559 | echo " slave" ; \ |
| 1560 | else \ |
| 1561 | echo " host" ; \ |
| 1562 | fi |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1563 | @$(MKCONFIG) -a MPC8540EVAL ppc mpc85xx mpc8540eval |
Lunsheng Wang | b0e3294 | 2005-07-29 10:20:29 -0500 | [diff] [blame] | 1564 | |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 1565 | MPC8560ADS_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1566 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8560ads |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1567 | |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 1568 | MPC8541CDS_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1569 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8541cds cds |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 1570 | |
Jon Loeliger | d9b94f2 | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 1571 | MPC8548CDS_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1572 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8548cds cds |
Jon Loeliger | d9b94f2 | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 1573 | |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 1574 | MPC8555CDS_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1575 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8555cds cds |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 1576 | |
wdenk | 384cc68 | 2005-04-03 22:35:21 +0000 | [diff] [blame] | 1577 | PM854_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1578 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm854 |
wdenk | 384cc68 | 2005-04-03 22:35:21 +0000 | [diff] [blame] | 1579 | |
Wolfgang Denk | b20d003 | 2005-08-05 12:19:30 +0200 | [diff] [blame] | 1580 | PM856_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1581 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm856 |
Wolfgang Denk | b20d003 | 2005-08-05 12:19:30 +0200 | [diff] [blame] | 1582 | |
wdenk | c15f312 | 2004-10-10 22:44:24 +0000 | [diff] [blame] | 1583 | sbc8540_config \ |
| 1584 | sbc8540_33_config \ |
| 1585 | sbc8540_66_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1586 | @mkdir -p $(obj)include |
wdenk | c15f312 | 2004-10-10 22:44:24 +0000 | [diff] [blame] | 1587 | @if [ "$(findstring _66_,$@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1588 | echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \ |
wdenk | c15f312 | 2004-10-10 22:44:24 +0000 | [diff] [blame] | 1589 | echo "... 66 MHz PCI" ; \ |
| 1590 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1591 | >$(obj)include/config.h ; \ |
wdenk | c15f312 | 2004-10-10 22:44:24 +0000 | [diff] [blame] | 1592 | echo "... 33 MHz PCI" ; \ |
| 1593 | fi |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1594 | @$(MKCONFIG) -a SBC8540 ppc mpc85xx sbc8560 |
wdenk | c15f312 | 2004-10-10 22:44:24 +0000 | [diff] [blame] | 1595 | |
wdenk | 466b741 | 2004-07-10 22:35:59 +0000 | [diff] [blame] | 1596 | sbc8560_config \ |
| 1597 | sbc8560_33_config \ |
| 1598 | sbc8560_66_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1599 | @mkdir -p $(obj)include |
wdenk | 8b07a11 | 2004-07-10 21:45:47 +0000 | [diff] [blame] | 1600 | @if [ "$(findstring _66_,$@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1601 | echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \ |
wdenk | 8b07a11 | 2004-07-10 21:45:47 +0000 | [diff] [blame] | 1602 | echo "... 66 MHz PCI" ; \ |
| 1603 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1604 | >$(obj)include/config.h ; \ |
wdenk | 8b07a11 | 2004-07-10 21:45:47 +0000 | [diff] [blame] | 1605 | echo "... 33 MHz PCI" ; \ |
| 1606 | fi |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1607 | @$(MKCONFIG) -a sbc8560 ppc mpc85xx sbc8560 |
wdenk | 8b07a11 | 2004-07-10 21:45:47 +0000 | [diff] [blame] | 1608 | |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 1609 | stxgp3_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1610 | @$(MKCONFIG) $(@:_config=) ppc mpc85xx stxgp3 |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 1611 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 1612 | TQM8540_config \ |
| 1613 | TQM8541_config \ |
| 1614 | TQM8555_config \ |
| 1615 | TQM8560_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1616 | @mkdir -p $(obj)include |
Wolfgang Denk | a889bd2 | 2005-12-06 15:02:31 +0100 | [diff] [blame] | 1617 | @CTYPE=$(subst TQM,,$(@:_config=)); \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1618 | >$(obj)include/config.h ; \ |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 1619 | echo "... TQM"$${CTYPE}; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1620 | echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \ |
| 1621 | echo "#define CONFIG_TQM$${CTYPE}">>$(obj)include/config.h; \ |
| 1622 | echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \ |
| 1623 | echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>$(obj)include/config.h; \ |
| 1624 | echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>$(obj)include/config.h |
| 1625 | @$(MKCONFIG) -a TQM85xx ppc mpc85xx tqm85xx |
wdenk | f5c5ef4 | 2005-04-05 16:26:47 +0000 | [diff] [blame] | 1626 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1627 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1628 | ## 74xx/7xx Systems |
| 1629 | ######################################################################### |
| 1630 | |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1631 | AmigaOneG3SE_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1632 | @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1633 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 1634 | BAB7xx_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1635 | @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx bab7xx eltec |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 1636 | |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1637 | CPCI750_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1638 | @$(MKCONFIG) CPCI750 ppc 74xx_7xx cpci750 esd |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 1639 | |
wdenk | 3a473b2 | 2004-01-03 00:43:19 +0000 | [diff] [blame] | 1640 | DB64360_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1641 | @$(MKCONFIG) DB64360 ppc 74xx_7xx db64360 Marvell |
wdenk | 3a473b2 | 2004-01-03 00:43:19 +0000 | [diff] [blame] | 1642 | |
| 1643 | DB64460_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1644 | @$(MKCONFIG) DB64460 ppc 74xx_7xx db64460 Marvell |
wdenk | 3a473b2 | 2004-01-03 00:43:19 +0000 | [diff] [blame] | 1645 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 1646 | ELPPC_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1647 | @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx elppc eltec |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 1648 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1649 | EVB64260_config \ |
| 1650 | EVB64260_750CX_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1651 | @$(MKCONFIG) EVB64260 ppc 74xx_7xx evb64260 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1652 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 1653 | P3G4_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1654 | @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1655 | |
| 1656 | PCIPPC2_config \ |
| 1657 | PCIPPC6_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1658 | @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx pcippc2 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1659 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 1660 | ZUMA_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1661 | @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260 |
wdenk | 12f3424 | 2003-09-02 22:48:03 +0000 | [diff] [blame] | 1662 | |
Heiko Schocher | f5e0d03 | 2006-06-19 11:02:41 +0200 | [diff] [blame] | 1663 | ppmc7xx_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1664 | @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx ppmc7xx |
Wolfgang Denk | b87dfd2 | 2006-07-19 13:50:38 +0200 | [diff] [blame] | 1665 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1666 | #======================================================================== |
| 1667 | # ARM |
| 1668 | #======================================================================== |
| 1669 | ######################################################################### |
| 1670 | ## StrongARM Systems |
| 1671 | ######################################################################### |
| 1672 | |
wdenk | ea66bc8 | 2004-04-15 23:23:39 +0000 | [diff] [blame] | 1673 | assabet_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1674 | @$(MKCONFIG) $(@:_config=) arm sa1100 assabet |
wdenk | ea66bc8 | 2004-04-15 23:23:39 +0000 | [diff] [blame] | 1675 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1676 | dnp1110_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1677 | @$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1678 | |
wdenk | 855a496 | 2004-03-14 18:23:55 +0000 | [diff] [blame] | 1679 | gcplus_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1680 | @$(MKCONFIG) $(@:_config=) arm sa1100 gcplus |
wdenk | 855a496 | 2004-03-14 18:23:55 +0000 | [diff] [blame] | 1681 | |
| 1682 | lart_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1683 | @$(MKCONFIG) $(@:_config=) arm sa1100 lart |
wdenk | 855a496 | 2004-03-14 18:23:55 +0000 | [diff] [blame] | 1684 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1685 | shannon_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1686 | @$(MKCONFIG) $(@:_config=) arm sa1100 shannon |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1687 | |
| 1688 | ######################################################################### |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 1689 | ## ARM92xT Systems |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1690 | ######################################################################### |
| 1691 | |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 1692 | xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1)))) |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 1693 | |
wdenk | 3ff02c2 | 2004-06-09 15:25:53 +0000 | [diff] [blame] | 1694 | xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1)))) |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 1695 | |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 1696 | xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1))) |
| 1697 | |
wdenk | a85f9f2 | 2005-04-06 13:52:31 +0000 | [diff] [blame] | 1698 | at91rm9200dk_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1699 | @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200 |
wdenk | a85f9f2 | 2005-04-06 13:52:31 +0000 | [diff] [blame] | 1700 | |
| 1701 | cmc_pu2_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1702 | @$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200 |
wdenk | a85f9f2 | 2005-04-06 13:52:31 +0000 | [diff] [blame] | 1703 | |
Wolfgang Denk | 645da51 | 2005-10-05 02:00:09 +0200 | [diff] [blame] | 1704 | csb637_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1705 | @$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200 |
Wolfgang Denk | 645da51 | 2005-10-05 02:00:09 +0200 | [diff] [blame] | 1706 | |
Wolfgang Denk | 0e4018d | 2005-09-26 01:14:38 +0200 | [diff] [blame] | 1707 | mp2usb_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1708 | @$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200 |
Wolfgang Denk | 0e4018d | 2005-09-26 01:14:38 +0200 | [diff] [blame] | 1709 | |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 1710 | |
Wolfgang Denk | 74f4304 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 1711 | ######################################################################## |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 1712 | ## ARM Integrator boards - see doc/README-integrator for more info. |
| 1713 | integratorap_config \ |
| 1714 | ap_config \ |
| 1715 | ap966_config \ |
| 1716 | ap922_config \ |
| 1717 | ap922_XA10_config \ |
| 1718 | ap7_config \ |
| 1719 | ap720t_config \ |
| 1720 | ap920t_config \ |
| 1721 | ap926ejs_config \ |
| 1722 | ap946es_config: unconfig |
Wolfgang Denk | 96782c6 | 2005-10-09 00:22:48 +0200 | [diff] [blame] | 1723 | @board/integratorap/split_by_variant.sh $@ |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 1724 | |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 1725 | integratorcp_config \ |
| 1726 | cp_config \ |
| 1727 | cp920t_config \ |
| 1728 | cp926ejs_config \ |
| 1729 | cp946es_config \ |
| 1730 | cp1136_config \ |
| 1731 | cp966_config \ |
| 1732 | cp922_config \ |
| 1733 | cp922_XA10_config \ |
| 1734 | cp1026_config: unconfig |
Wolfgang Denk | 96782c6 | 2005-10-09 00:22:48 +0200 | [diff] [blame] | 1735 | @board/integratorcp/split_by_variant.sh $@ |
wdenk | 25d6712 | 2004-12-10 11:40:40 +0000 | [diff] [blame] | 1736 | |
Wolfgang Denk | 99b0d28 | 2005-10-05 00:19:34 +0200 | [diff] [blame] | 1737 | kb9202_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1738 | @$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200 |
Wolfgang Denk | 99b0d28 | 2005-10-05 00:19:34 +0200 | [diff] [blame] | 1739 | |
wdenk | f832d8a | 2004-06-10 21:55:33 +0000 | [diff] [blame] | 1740 | lpd7a400_config \ |
| 1741 | lpd7a404_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1742 | @$(MKCONFIG) $(@:_config=) arm lh7a40x lpd7a40x |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 1743 | |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 1744 | mx1ads_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1745 | @$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 1746 | |
| 1747 | mx1fs2_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1748 | @$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 1749 | |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1750 | netstar_32_config \ |
| 1751 | netstar_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1752 | @mkdir -p $(obj)include |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1753 | @if [ "$(findstring _32_,$@)" ] ; then \ |
| 1754 | echo "... 32MB SDRAM" ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1755 | echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1756 | else \ |
| 1757 | echo "... 64MB SDRAM" ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1758 | echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>$(obj)include/config.h ; \ |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1759 | fi |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1760 | @$(MKCONFIG) -a netstar arm arm925t netstar |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1761 | |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 1762 | omap1510inn_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1763 | @$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 1764 | |
wdenk | 1eaeb58 | 2004-06-08 00:22:43 +0000 | [diff] [blame] | 1765 | omap5912osk_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1766 | @$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk NULL omap |
wdenk | 1eaeb58 | 2004-06-08 00:22:43 +0000 | [diff] [blame] | 1767 | |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 1768 | omap1610inn_config \ |
| 1769 | omap1610inn_cs0boot_config \ |
| 1770 | omap1610inn_cs3boot_config \ |
wdenk | 3ff02c2 | 2004-06-09 15:25:53 +0000 | [diff] [blame] | 1771 | omap1610inn_cs_autoboot_config \ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 1772 | omap1610h2_config \ |
| 1773 | omap1610h2_cs0boot_config \ |
wdenk | 3ff02c2 | 2004-06-09 15:25:53 +0000 | [diff] [blame] | 1774 | omap1610h2_cs3boot_config \ |
| 1775 | omap1610h2_cs_autoboot_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1776 | @mkdir -p $(obj)include |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 1777 | @if [ "$(findstring _cs0boot_, $@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1778 | echo "#define CONFIG_CS0_BOOT" >> .$(obj)/include/config.h ; \ |
wdenk | b79a11c | 2004-03-25 15:14:43 +0000 | [diff] [blame] | 1779 | echo "... configured for CS0 boot"; \ |
wdenk | 3ff02c2 | 2004-06-09 15:25:53 +0000 | [diff] [blame] | 1780 | elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1781 | echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)./include/config.h ; \ |
wdenk | 3ff02c2 | 2004-06-09 15:25:53 +0000 | [diff] [blame] | 1782 | echo "... configured for CS_AUTO boot"; \ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 1783 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1784 | echo "#define CONFIG_CS3_BOOT" >> $(obj)./include/config.h ; \ |
wdenk | b79a11c | 2004-03-25 15:14:43 +0000 | [diff] [blame] | 1785 | echo "... configured for CS3 boot"; \ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 1786 | fi; |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1787 | @$(MKCONFIG) -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 1788 | |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 1789 | omap730p2_config \ |
| 1790 | omap730p2_cs0boot_config \ |
| 1791 | omap730p2_cs3boot_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1792 | @mkdir -p $(obj)include |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 1793 | @if [ "$(findstring _cs0boot_, $@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1794 | echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \ |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 1795 | echo "... configured for CS0 boot"; \ |
| 1796 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1797 | echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \ |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 1798 | echo "... configured for CS3 boot"; \ |
| 1799 | fi; |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1800 | @$(MKCONFIG) -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 1801 | |
Wolfgang Denk | 32cb2c7 | 2006-07-21 11:31:42 +0200 | [diff] [blame] | 1802 | sbc2410x_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1803 | @$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0 |
Wolfgang Denk | 32cb2c7 | 2006-07-21 11:31:42 +0200 | [diff] [blame] | 1804 | |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 1805 | scb9328_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1806 | @$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 1807 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1808 | smdk2400_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1809 | @$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 NULL s3c24x0 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1810 | |
| 1811 | smdk2410_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1812 | @$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 NULL s3c24x0 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1813 | |
wdenk | 2d24a3a | 2004-06-09 21:50:45 +0000 | [diff] [blame] | 1814 | SX1_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1815 | @$(MKCONFIG) $(@:_config=) arm arm925t sx1 |
wdenk | 2d24a3a | 2004-06-09 21:50:45 +0000 | [diff] [blame] | 1816 | |
wdenk | b2001f2 | 2003-12-20 22:45:10 +0000 | [diff] [blame] | 1817 | # TRAB default configuration: 8 MB Flash, 32 MB RAM |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 1818 | trab_config \ |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 1819 | trab_bigram_config \ |
| 1820 | trab_bigflash_config \ |
wdenk | f54ebdf | 2003-09-17 15:10:32 +0000 | [diff] [blame] | 1821 | trab_old_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1822 | @mkdir -p $(obj)include |
| 1823 | @mkdir -p $(obj)board/trab |
| 1824 | @ >$(obj)include/config.h |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 1825 | @[ -z "$(findstring _bigram,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1826 | { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \ |
| 1827 | echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \ |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 1828 | echo "... with 8 MB Flash, 32 MB RAM" ; \ |
| 1829 | } |
| 1830 | @[ -z "$(findstring _bigflash,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1831 | { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \ |
| 1832 | echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \ |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 1833 | echo "... with 16 MB Flash, 16 MB RAM" ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1834 | echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \ |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 1835 | } |
wdenk | f54ebdf | 2003-09-17 15:10:32 +0000 | [diff] [blame] | 1836 | @[ -z "$(findstring _old,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1837 | { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \ |
| 1838 | echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \ |
wdenk | b2001f2 | 2003-12-20 22:45:10 +0000 | [diff] [blame] | 1839 | echo "... with 8 MB Flash, 16 MB RAM" ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1840 | echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \ |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 1841 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1842 | @$(MKCONFIG) -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1843 | |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 1844 | VCMA9_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1845 | @$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0 |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 1846 | |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 1847 | #======================================================================== |
| 1848 | # ARM supplied Versatile development boards |
| 1849 | #======================================================================== |
| 1850 | versatile_config \ |
| 1851 | versatileab_config \ |
| 1852 | versatilepb_config : unconfig |
Wolfgang Denk | 96782c6 | 2005-10-09 00:22:48 +0200 | [diff] [blame] | 1853 | @board/versatile/split_by_variant.sh $@ |
wdenk | 074cff0 | 2004-02-24 00:16:43 +0000 | [diff] [blame] | 1854 | |
wdenk | 3c2b3d4 | 2005-04-05 23:32:21 +0000 | [diff] [blame] | 1855 | voiceblue_smallflash_config \ |
| 1856 | voiceblue_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1857 | @mkdir -p $(obj)include |
| 1858 | @mkdir -p $(obj)board/voiceblue |
wdenk | 3c2b3d4 | 2005-04-05 23:32:21 +0000 | [diff] [blame] | 1859 | @if [ "$(findstring _smallflash_,$@)" ] ; then \ |
| 1860 | echo "... boot from lower flash bank" ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1861 | echo "#define VOICEBLUE_SMALL_FLASH" >>$(obj)include/config.h ; \ |
| 1862 | echo "VOICEBLUE_SMALL_FLASH=y" >$(obj)board/voiceblue/config.tmp ; \ |
wdenk | 3c2b3d4 | 2005-04-05 23:32:21 +0000 | [diff] [blame] | 1863 | else \ |
| 1864 | echo "... boot from upper flash bank" ; \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1865 | >$(obj)include/config.h ; \ |
| 1866 | echo "VOICEBLUE_SMALL_FLASH=n" >$(obj)board/voiceblue/config.tmp ; \ |
wdenk | 3c2b3d4 | 2005-04-05 23:32:21 +0000 | [diff] [blame] | 1867 | fi |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1868 | @$(MKCONFIG) -a voiceblue arm arm925t voiceblue |
wdenk | 3c2b3d4 | 2005-04-05 23:32:21 +0000 | [diff] [blame] | 1869 | |
wdenk | 16b013e | 2005-05-19 22:46:33 +0000 | [diff] [blame] | 1870 | cm4008_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1871 | @$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695 |
wdenk | 16b013e | 2005-05-19 22:46:33 +0000 | [diff] [blame] | 1872 | |
| 1873 | cm41xx_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1874 | @$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695 |
wdenk | 16b013e | 2005-05-19 22:46:33 +0000 | [diff] [blame] | 1875 | |
Wolfgang Denk | 0c32d96 | 2006-06-16 17:32:31 +0200 | [diff] [blame] | 1876 | gth2_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1877 | @mkdir -p $(obj)include |
| 1878 | @ >$(obj)include/config.h |
| 1879 | @echo "#define CONFIG_GTH2 1" >>$(obj)include/config.h |
| 1880 | @$(MKCONFIG) -a gth2 mips mips gth2 |
Wolfgang Denk | 0c32d96 | 2006-06-16 17:32:31 +0200 | [diff] [blame] | 1881 | |
wdenk | 074cff0 | 2004-02-24 00:16:43 +0000 | [diff] [blame] | 1882 | ######################################################################### |
| 1883 | ## S3C44B0 Systems |
| 1884 | ######################################################################### |
| 1885 | |
| 1886 | B2_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1887 | @$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave |
wdenk | 074cff0 | 2004-02-24 00:16:43 +0000 | [diff] [blame] | 1888 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1889 | ######################################################################### |
| 1890 | ## ARM720T Systems |
| 1891 | ######################################################################### |
| 1892 | |
Wolfgang Denk | c570b2f | 2005-09-26 01:06:33 +0200 | [diff] [blame] | 1893 | armadillo_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1894 | @$(MKCONFIG) $(@:_config=) arm arm720t armadillo |
Wolfgang Denk | c570b2f | 2005-09-26 01:06:33 +0200 | [diff] [blame] | 1895 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1896 | ep7312_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1897 | @$(MKCONFIG) $(@:_config=) arm arm720t ep7312 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1898 | |
wdenk | 2d24a3a | 2004-06-09 21:50:45 +0000 | [diff] [blame] | 1899 | impa7_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1900 | @$(MKCONFIG) $(@:_config=) arm arm720t impa7 |
wdenk | 2d24a3a | 2004-06-09 21:50:45 +0000 | [diff] [blame] | 1901 | |
wdenk | 2d1a537 | 2004-02-23 19:30:57 +0000 | [diff] [blame] | 1902 | modnet50_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1903 | @$(MKCONFIG) $(@:_config=) arm arm720t modnet50 |
wdenk | 2d1a537 | 2004-02-23 19:30:57 +0000 | [diff] [blame] | 1904 | |
wdenk | 3953988 | 2004-07-01 16:30:44 +0000 | [diff] [blame] | 1905 | evb4510_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1906 | @$(MKCONFIG) $(@:_config=) arm arm720t evb4510 |
wdenk | 3953988 | 2004-07-01 16:30:44 +0000 | [diff] [blame] | 1907 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1908 | ######################################################################### |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 1909 | ## XScale Systems |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1910 | ######################################################################### |
| 1911 | |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 1912 | adsvix_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1913 | @$(MKCONFIG) $(@:_config=) arm pxa adsvix |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 1914 | |
wdenk | fabd46a | 2004-07-10 23:11:10 +0000 | [diff] [blame] | 1915 | cerf250_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1916 | @$(MKCONFIG) $(@:_config=) arm pxa cerf250 |
wdenk | fabd46a | 2004-07-10 23:11:10 +0000 | [diff] [blame] | 1917 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1918 | cradle_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1919 | @$(MKCONFIG) $(@:_config=) arm pxa cradle |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1920 | |
| 1921 | csb226_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1922 | @$(MKCONFIG) $(@:_config=) arm pxa csb226 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1923 | |
Wolfgang Denk | 0be248f | 2006-03-07 00:22:36 +0100 | [diff] [blame] | 1924 | delta_config : |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1925 | @$(MKCONFIG) $(@:_config=) arm pxa delta |
Wolfgang Denk | 0be248f | 2006-03-07 00:22:36 +0100 | [diff] [blame] | 1926 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 1927 | innokom_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1928 | @$(MKCONFIG) $(@:_config=) arm pxa innokom |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 1929 | |
wdenk | 2d5b561 | 2003-10-14 19:43:55 +0000 | [diff] [blame] | 1930 | ixdp425_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1931 | @$(MKCONFIG) $(@:_config=) arm ixp ixdp425 |
wdenk | 2d5b561 | 2003-10-14 19:43:55 +0000 | [diff] [blame] | 1932 | |
Wolfgang Denk | ba94a1b | 2006-05-30 15:56:48 +0200 | [diff] [blame] | 1933 | ixdpg425_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1934 | @$(MKCONFIG) $(@:_config=) arm ixp ixdp425 |
Wolfgang Denk | ba94a1b | 2006-05-30 15:56:48 +0200 | [diff] [blame] | 1935 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 1936 | lubbock_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1937 | @$(MKCONFIG) $(@:_config=) arm pxa lubbock |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 1938 | |
Heiko Schocher | 5720df7 | 2006-05-02 07:51:46 +0200 | [diff] [blame] | 1939 | pleb2_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1940 | @$(MKCONFIG) $(@:_config=) arm pxa pleb2 |
Heiko Schocher | 5720df7 | 2006-05-02 07:51:46 +0200 | [diff] [blame] | 1941 | |
wdenk | 52f52c1 | 2003-06-19 23:04:19 +0000 | [diff] [blame] | 1942 | logodl_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1943 | @$(MKCONFIG) $(@:_config=) arm pxa logodl |
wdenk | 52f52c1 | 2003-06-19 23:04:19 +0000 | [diff] [blame] | 1944 | |
Wolfgang Denk | ba94a1b | 2006-05-30 15:56:48 +0200 | [diff] [blame] | 1945 | pdnb3_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1946 | @$(MKCONFIG) $(@:_config=) arm ixp pdnb3 prodrive |
Wolfgang Denk | ba94a1b | 2006-05-30 15:56:48 +0200 | [diff] [blame] | 1947 | |
Wolfgang Denk | f57f70a | 2005-10-13 01:45:54 +0200 | [diff] [blame] | 1948 | pxa255_idp_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1949 | @$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp |
Wolfgang Denk | f57f70a | 2005-10-13 01:45:54 +0200 | [diff] [blame] | 1950 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 1951 | wepep250_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1952 | @$(MKCONFIG) $(@:_config=) arm pxa wepep250 |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 1953 | |
wdenk | 4ec3a7f | 2004-09-28 16:44:41 +0000 | [diff] [blame] | 1954 | xaeniax_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1955 | @$(MKCONFIG) $(@:_config=) arm pxa xaeniax |
wdenk | 4ec3a7f | 2004-09-28 16:44:41 +0000 | [diff] [blame] | 1956 | |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1957 | xm250_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1958 | @$(MKCONFIG) $(@:_config=) arm pxa xm250 |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1959 | |
wdenk | ca0e774 | 2004-06-09 15:37:23 +0000 | [diff] [blame] | 1960 | xsengine_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1961 | @$(MKCONFIG) $(@:_config=) arm pxa xsengine |
wdenk | ca0e774 | 2004-06-09 15:37:23 +0000 | [diff] [blame] | 1962 | |
Markus Klotzbücher | e026957 | 2006-02-07 20:04:48 +0100 | [diff] [blame] | 1963 | zylonite_config : |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1964 | @$(MKCONFIG) $(@:_config=) arm pxa zylonite |
Markus Klotzbücher | e026957 | 2006-02-07 20:04:48 +0100 | [diff] [blame] | 1965 | |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 1966 | ######################################################################### |
| 1967 | ## ARM1136 Systems |
| 1968 | ######################################################################### |
| 1969 | omap2420h4_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1970 | @$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4 |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 1971 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1972 | #======================================================================== |
| 1973 | # i386 |
| 1974 | #======================================================================== |
| 1975 | ######################################################################### |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 1976 | ## AMD SC520 CDP |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1977 | ######################################################################### |
| 1978 | sc520_cdp_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1979 | @$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1980 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 1981 | sc520_spunk_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1982 | @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 1983 | |
| 1984 | sc520_spunk_rel_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1985 | @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 1986 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 1987 | #======================================================================== |
| 1988 | # MIPS |
| 1989 | #======================================================================== |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1990 | ######################################################################### |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 1991 | ## MIPS32 4Kc |
| 1992 | ######################################################################### |
| 1993 | |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 1994 | xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1)))) |
| 1995 | |
| 1996 | incaip_100MHz_config \ |
| 1997 | incaip_133MHz_config \ |
| 1998 | incaip_150MHz_config \ |
| 1999 | incaip_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2000 | @mkdir -p $(obj)include |
| 2001 | @ >$(obj)include/config.h |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 2002 | @[ -z "$(findstring _100MHz,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2003 | { echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h ; \ |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 2004 | echo "... with 100MHz system clock" ; \ |
| 2005 | } |
| 2006 | @[ -z "$(findstring _133MHz,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2007 | { echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h ; \ |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 2008 | echo "... with 133MHz system clock" ; \ |
| 2009 | } |
| 2010 | @[ -z "$(findstring _150MHz,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2011 | { echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h ; \ |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 2012 | echo "... with 150MHz system clock" ; \ |
| 2013 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2014 | @$(MKCONFIG) -a $(call xtract_incaip,$@) mips mips incaip |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 2015 | |
wdenk | f4863a7 | 2004-02-07 01:27:10 +0000 | [diff] [blame] | 2016 | tb0229_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2017 | @$(MKCONFIG) $(@:_config=) mips mips tb0229 |
wdenk | f4863a7 | 2004-02-07 01:27:10 +0000 | [diff] [blame] | 2018 | |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 2019 | ######################################################################### |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 2020 | ## MIPS32 AU1X00 |
| 2021 | ######################################################################### |
| 2022 | dbau1000_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2023 | @mkdir -p $(obj)include |
| 2024 | @ >$(obj)include/config.h |
| 2025 | @echo "#define CONFIG_DBAU1000 1" >>$(obj)include/config.h |
| 2026 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 2027 | |
| 2028 | dbau1100_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2029 | @mkdir -p $(obj)include |
| 2030 | @ >$(obj)include/config.h |
| 2031 | @echo "#define CONFIG_DBAU1100 1" >>$(obj)include/config.h |
| 2032 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 2033 | |
| 2034 | dbau1500_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2035 | @mkdir -p $(obj)include |
| 2036 | @ >$(obj)include/config.h |
| 2037 | @echo "#define CONFIG_DBAU1500 1" >>$(obj)include/config.h |
| 2038 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 2039 | |
wdenk | ff36fd8 | 2005-01-09 22:28:56 +0000 | [diff] [blame] | 2040 | dbau1550_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2041 | @mkdir -p $(obj)include |
| 2042 | @ >$(obj)include/config.h |
| 2043 | @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h |
| 2044 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 |
wdenk | ff36fd8 | 2005-01-09 22:28:56 +0000 | [diff] [blame] | 2045 | |
| 2046 | dbau1550_el_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2047 | @mkdir -p $(obj)include |
| 2048 | @ >$(obj)include/config.h |
| 2049 | @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h |
| 2050 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 |
wdenk | ff36fd8 | 2005-01-09 22:28:56 +0000 | [diff] [blame] | 2051 | |
Wolfgang Denk | 265817c | 2005-09-25 00:53:22 +0200 | [diff] [blame] | 2052 | pb1000_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2053 | @mkdir -p $(obj)include |
| 2054 | @ >$(obj)include/config.h |
| 2055 | @echo "#define CONFIG_PB1000 1" >>$(obj)include/config.h |
| 2056 | @$(MKCONFIG) -a pb1x00 mips mips pb1x00 |
Wolfgang Denk | 265817c | 2005-09-25 00:53:22 +0200 | [diff] [blame] | 2057 | |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 2058 | ######################################################################### |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 2059 | ## MIPS64 5Kc |
| 2060 | ######################################################################### |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 2061 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 2062 | purple_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2063 | @$(MKCONFIG) $(@:_config=) mips mips purple |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 2064 | |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 2065 | #======================================================================== |
| 2066 | # Nios |
| 2067 | #======================================================================== |
| 2068 | ######################################################################### |
| 2069 | ## Nios32 |
| 2070 | ######################################################################### |
| 2071 | |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2072 | DK1C20_safe_32_config \ |
| 2073 | DK1C20_standard_32_config \ |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 2074 | DK1C20_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2075 | @mkdir -p $(obj)include |
| 2076 | @ >$(obj)include/config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2077 | @[ -z "$(findstring _safe_32,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2078 | { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2079 | echo "... NIOS 'safe_32' configuration" ; \ |
| 2080 | } |
| 2081 | @[ -z "$(findstring _standard_32,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2082 | { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2083 | echo "... NIOS 'standard_32' configuration" ; \ |
| 2084 | } |
| 2085 | @[ -z "$(findstring DK1C20_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2086 | { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2087 | echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \ |
| 2088 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2089 | @$(MKCONFIG) -a DK1C20 nios nios dk1c20 altera |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2090 | |
| 2091 | DK1S10_safe_32_config \ |
| 2092 | DK1S10_standard_32_config \ |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 2093 | DK1S10_mtx_ldk_20_config \ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2094 | DK1S10_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2095 | @mkdir -p $(obj)include |
| 2096 | @ >$(obj)include/config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2097 | @[ -z "$(findstring _safe_32,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2098 | { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2099 | echo "... NIOS 'safe_32' configuration" ; \ |
| 2100 | } |
| 2101 | @[ -z "$(findstring _standard_32,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2102 | { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2103 | echo "... NIOS 'standard_32' configuration" ; \ |
| 2104 | } |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 2105 | @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2106 | { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>$(obj)include/config.h ; \ |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 2107 | echo "... NIOS 'mtx_ldk_20' configuration" ; \ |
| 2108 | } |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2109 | @[ -z "$(findstring DK1S10_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2110 | { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 2111 | echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \ |
| 2112 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2113 | @$(MKCONFIG) -a DK1S10 nios nios dk1s10 altera |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 2114 | |
wdenk | aaf224a | 2004-03-14 15:20:55 +0000 | [diff] [blame] | 2115 | ADNPESC1_DNPEVA2_base_32_config \ |
| 2116 | ADNPESC1_base_32_config \ |
| 2117 | ADNPESC1_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2118 | @mkdir -p $(obj)include |
| 2119 | @ >$(obj)include/config.h |
wdenk | aaf224a | 2004-03-14 15:20:55 +0000 | [diff] [blame] | 2120 | @[ -z "$(findstring _DNPEVA2,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2121 | { echo "#define CONFIG_DNPEVA2 1" >>$(obj)include/config.h ; \ |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 2122 | echo "... DNP/EVA2 configuration" ; \ |
| 2123 | } |
wdenk | aaf224a | 2004-03-14 15:20:55 +0000 | [diff] [blame] | 2124 | @[ -z "$(findstring _base_32,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2125 | { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \ |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 2126 | echo "... NIOS 'base_32' configuration" ; \ |
| 2127 | } |
wdenk | aaf224a | 2004-03-14 15:20:55 +0000 | [diff] [blame] | 2128 | @[ -z "$(findstring ADNPESC1_config,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2129 | { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \ |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 2130 | echo "... NIOS 'base_32' configuration (DEFAULT)" ; \ |
| 2131 | } |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2132 | @$(MKCONFIG) -a ADNPESC1 nios nios adnpesc1 ssv |
wdenk | aaf224a | 2004-03-14 15:20:55 +0000 | [diff] [blame] | 2133 | |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 2134 | ######################################################################### |
| 2135 | ## Nios-II |
| 2136 | ######################################################################### |
| 2137 | |
Scott McNutt | 9cc8337 | 2006-06-08 13:37:39 -0400 | [diff] [blame] | 2138 | EP1C20_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2139 | @$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera |
Scott McNutt | 9cc8337 | 2006-06-08 13:37:39 -0400 | [diff] [blame] | 2140 | |
| 2141 | EP1S10_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2142 | @$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera |
Scott McNutt | 9cc8337 | 2006-06-08 13:37:39 -0400 | [diff] [blame] | 2143 | |
| 2144 | EP1S40_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2145 | @$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera |
Scott McNutt | 9cc8337 | 2006-06-08 13:37:39 -0400 | [diff] [blame] | 2146 | |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 2147 | PK1C20_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2148 | @$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 2149 | |
| 2150 | PCI5441_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2151 | @$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 2152 | |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 2153 | #======================================================================== |
| 2154 | # MicroBlaze |
| 2155 | #======================================================================== |
| 2156 | ######################################################################### |
| 2157 | ## Microblaze |
| 2158 | ######################################################################### |
| 2159 | suzaku_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2160 | @mkdir -p $(obj)include |
| 2161 | @ >$(obj)include/config.h |
| 2162 | @echo "#define CONFIG_SUZAKU 1" >> $(obj)include/config.h |
| 2163 | @$(MKCONFIG) -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 2164 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 2165 | ######################################################################### |
Wolfgang Denk | 0afe519 | 2006-03-12 02:10:00 +0100 | [diff] [blame] | 2166 | ## Blackfin |
| 2167 | ######################################################################### |
| 2168 | ezkit533_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2169 | @$(MKCONFIG) $(@:_config=) blackfin bf533 ezkit533 |
Wolfgang Denk | 0afe519 | 2006-03-12 02:10:00 +0100 | [diff] [blame] | 2170 | |
| 2171 | stamp_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2172 | @$(MKCONFIG) $(@:_config=) blackfin bf533 stamp |
Wolfgang Denk | 0afe519 | 2006-03-12 02:10:00 +0100 | [diff] [blame] | 2173 | |
| 2174 | dspstamp_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2175 | @$(MKCONFIG) $(@:_config=) blackfin bf533 dsp_stamp |
Wolfgang Denk | 0afe519 | 2006-03-12 02:10:00 +0100 | [diff] [blame] | 2176 | |
| 2177 | ######################################################################### |
| 2178 | ######################################################################### |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 2179 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2180 | |
| 2181 | clean: |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2182 | find $(OBJTREE) -type f \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2183 | \( -name 'core' -o -name '*.bak' -o -name '*~' \ |
| 2184 | -o -name '*.o' -o -name '*.a' \) -print \ |
| 2185 | | xargs rm -f |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2186 | rm -f $(obj)examples/hello_world $(obj)examples/timer \ |
| 2187 | $(obj)examples/eepro100_eeprom $(obj)examples/sched \ |
| 2188 | $(obj)examples/mem_to_mem_idma2intr $(obj)examples/82559_eeprom \ |
| 2189 | $(obj)examples/smc91111_eeprom \ |
| 2190 | $(obj)examples/test_burst |
| 2191 | rm -f $(obj)tools/img2srec $(obj)tools/mkimage $(obj)tools/envcrc \ |
| 2192 | $(obj)tools/gen_eth_addr |
| 2193 | rm -f $(obj)tools/mpc86x_clk $(obj)tools/ncb |
| 2194 | rm -f $(obj)tools/easylogo/easylogo $(obj)tools/bmp_logo |
| 2195 | rm -f $(obj)tools/gdb/astest $(obj)tools/gdb/gdbcont $(obj)tools/gdb/gdbsend |
| 2196 | rm -f $(obj)tools/env/fw_printenv $(obj)tools/env/fw_setenv |
| 2197 | rm -f $(obj)board/cray/L1/bootscript.c $(obj)board/cray/L1/bootscript.image |
| 2198 | rm -f $(obj)board/netstar/eeprom $(obj)board/netstar/crcek $(obj)board/netstar/crcit |
| 2199 | rm -f $(obj)board/netstar/*.srec $(obj)board/netstar/*.bin |
| 2200 | rm -f $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom |
| 2201 | rm -f $(obj)board/integratorap/u-boot.lds $(obj)board/integratorcp/u-boot.lds |
| 2202 | rm -f $(obj)include/bmp_logo.h |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2203 | |
| 2204 | clobber: clean |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2205 | find $(OBJTREE) -type f \( -name .depend \ |
wdenk | 4c0d4c3 | 2004-06-09 17:34:58 +0000 | [diff] [blame] | 2206 | -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \ |
| 2207 | -print0 \ |
| 2208 | | xargs -0 rm -f |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2209 | rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS $(obj)include/version_autogenerated.h |
| 2210 | rm -fr $(obj)*.*~ |
| 2211 | rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL) |
| 2212 | rm -f $(obj)tools/crc32.c $(obj)tools/environment.c $(obj)tools/env/crc32.c |
| 2213 | rm -f $(obj)tools/inca-swap-bytes $(obj)cpu/mpc824x/bedbug_603e.c |
| 2214 | rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2215 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2216 | ifeq ($(OBJTREE),$(SRCTREE)) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2217 | mrproper \ |
| 2218 | distclean: clobber unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2219 | else |
| 2220 | mrproper \ |
| 2221 | distclean: clobber unconfig |
| 2222 | rm -rf $(OBJTREE)/* |
| 2223 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2224 | |
| 2225 | backup: |
| 2226 | F=`basename $(TOPDIR)` ; cd .. ; \ |
| 2227 | gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F |
| 2228 | |
| 2229 | ######################################################################### |