blob: 67eb0dc0bbcc5dc332f139721bd58f7057b23363 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
Wolfgang Denk4d1d9a32006-02-21 17:33:04 +01002# (C) Copyright 2000-2006
wdenk7ebf7442002-11-02 23:17:16 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
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 Denk4d1d9a32006-02-21 17:33:04 +010024VERSION = 1
25PATCHLEVEL = 1
26SUBLEVEL = 4
27EXTRAVERSION =
28U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
29VERSION_FILE = include/version_autogenerated.h
30
wdenk7ebf7442002-11-02 23:17:16 +000031HOSTARCH := $(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 Denkaf03f732005-08-12 23:23:46 +020039HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
wdenk7ebf7442002-11-02 23:17:16 +000040 sed -e 's/\(cygwin\).*/cygwin/')
41
Wolfgang Denkaf03f732005-08-12 23:23:46 +020042export HOSTARCH HOSTOS
wdenk7ebf7442002-11-02 23:17:16 +000043
44# Deal with colliding definitions from tcsh etc.
45VENDOR=
46
47#########################################################################
48
49TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
50export TOPDIR
51
52ifeq (include/config.mk,$(wildcard include/config.mk))
53# load ARCH, BOARD, and CPU configuration
54include include/config.mk
wdenkf8e9a232004-10-09 22:21:29 +000055export ARCH CPU BOARD VENDOR SOC
wdenk7ebf7442002-11-02 23:17:16 +000056# load other configuration
57include $(TOPDIR)/config.mk
58
59ifndef CROSS_COMPILE
60ifeq ($(HOSTARCH),ppc)
61CROSS_COMPILE =
62else
wdenk7ebf7442002-11-02 23:17:16 +000063ifeq ($(ARCH),ppc)
Eran Liberty9095d4a2005-07-28 10:08:46 -050064CROSS_COMPILE = powerpc-linux-
wdenk7ebf7442002-11-02 23:17:16 +000065endif
66ifeq ($(ARCH),arm)
wdenkc8434db2003-03-26 06:55:25 +000067CROSS_COMPILE = arm-linux-
wdenk7ebf7442002-11-02 23:17:16 +000068endif
wdenk591dda52002-11-18 00:14:45 +000069ifeq ($(ARCH),i386)
wdenkabda5ca2003-05-31 18:35:21 +000070ifeq ($(HOSTARCH),i386)
71CROSS_COMPILE =
72else
73CROSS_COMPILE = i386-linux-
74endif
wdenk7ebf7442002-11-02 23:17:16 +000075endif
wdenk4a5c8a72003-03-06 00:02:04 +000076ifeq ($(ARCH),mips)
77CROSS_COMPILE = mips_4KC-
wdenk7ebf7442002-11-02 23:17:16 +000078endif
wdenk60164a82003-10-08 23:26:14 +000079ifeq ($(ARCH),nios)
80CROSS_COMPILE = nios-elf-
wdenk591dda52002-11-18 00:14:45 +000081endif
wdenkef3386f2004-10-10 21:27:30 +000082ifeq ($(ARCH),nios2)
83CROSS_COMPILE = nios2-elf-
84endif
wdenkabf7a7c2003-12-08 01:34:36 +000085ifeq ($(ARCH),m68k)
86CROSS_COMPILE = m68k-elf-
wdenk4a5c8a72003-03-06 00:02:04 +000087endif
wdenk12490652004-04-18 21:13:41 +000088ifeq ($(ARCH),microblaze)
89CROSS_COMPILE = mb-
wdenk60164a82003-10-08 23:26:14 +000090endif
wdenkabf7a7c2003-12-08 01:34:36 +000091endif
wdenk12490652004-04-18 21:13:41 +000092endif
wdenk7ebf7442002-11-02 23:17:16 +000093
94export CROSS_COMPILE
95
wdenk7ebf7442002-11-02 23:17:16 +000096#########################################################################
97# U-Boot objects....order is important (i.e. start must be first)
98
wdenk7f00b942003-12-07 23:55:12 +000099OBJS = cpu/$(CPU)/start.o
wdenk591dda52002-11-18 00:14:45 +0000100ifeq ($(CPU),i386)
wdenk7f00b942003-12-07 23:55:12 +0000101OBJS += cpu/$(CPU)/start16.o
102OBJS += cpu/$(CPU)/reset.o
wdenk591dda52002-11-18 00:14:45 +0000103endif
wdenk7ebf7442002-11-02 23:17:16 +0000104ifeq ($(CPU),ppc4xx)
wdenk7f00b942003-12-07 23:55:12 +0000105OBJS += cpu/$(CPU)/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +0000106endif
Eran Liberty9095d4a2005-07-28 10:08:46 -0500107ifeq ($(CPU),mpc83xx)
108OBJS += cpu/$(CPU)/resetvec.o
109endif
wdenk9c53f402003-10-15 23:53:47 +0000110ifeq ($(CPU),mpc85xx)
111OBJS += cpu/$(CPU)/resetvec.o
112endif
wdenk7ebf7442002-11-02 23:17:16 +0000113
wdenk7f00b942003-12-07 23:55:12 +0000114LIBS = lib_generic/libgeneric.a
115LIBS += board/$(BOARDDIR)/lib$(BOARD).a
wdenk7ebf7442002-11-02 23:17:16 +0000116LIBS += cpu/$(CPU)/lib$(CPU).a
wdenkf8e9a232004-10-09 22:21:29 +0000117ifdef SOC
118LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
119endif
wdenk7ebf7442002-11-02 23:17:16 +0000120LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk4d01d9e2004-03-25 14:59:05 +0000121LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
stroese05b88912004-12-16 18:44:40 +0000122 fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a
wdenk7ebf7442002-11-02 23:17:16 +0000123LIBS += net/libnet.a
124LIBS += disk/libdisk.a
125LIBS += rtc/librtc.a
126LIBS += dtt/libdtt.a
127LIBS += drivers/libdrivers.a
wdenkeb20ad32003-09-05 23:19:14 +0000128LIBS += drivers/sk98lin/libsk98lin.a
wdenk7ebf7442002-11-02 23:17:16 +0000129LIBS += post/libpost.a post/cpu/libcpu.a
130LIBS += common/libcommon.a
Bartlomiej Sieka6eed2ab2006-02-24 09:37:22 +0100131LIBS += $(BOARDLIBS)
wdenk7f00b942003-12-07 23:55:12 +0000132.PHONY : $(LIBS)
wdenkc0aa5c52003-12-06 19:49:23 +0000133
wdenk4cc02a82003-09-11 23:06:34 +0000134# Add GCC lib
wdenkf1276d42005-02-03 23:00:49 +0000135PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
wdenk4989f872004-03-14 15:06:13 +0000136
wdenk7ebf7442002-11-02 23:17:16 +0000137
wdenkc0aa5c52003-12-06 19:49:23 +0000138# The "tools" are needed early, so put this first
139# Don't include stuff already done in $(LIBS)
140SUBDIRS = tools \
141 examples \
142 post \
143 post/cpu
wdenk444f22b2003-12-07 21:39:28 +0000144.PHONY : $(SUBDIRS)
wdenkc0aa5c52003-12-06 19:49:23 +0000145
wdenk7ebf7442002-11-02 23:17:16 +0000146#########################################################################
wdenk0a658552003-08-05 17:43:17 +0000147#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000148
wdenk0a658552003-08-05 17:43:17 +0000149ALL = u-boot.srec u-boot.bin System.map
wdenk7ebf7442002-11-02 23:17:16 +0000150
wdenk0a658552003-08-05 17:43:17 +0000151all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000152
wdenk68005192005-01-09 21:28:15 +0000153u-boot.hex: u-boot
154 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
155
wdenk7ebf7442002-11-02 23:17:16 +0000156u-boot.srec: u-boot
157 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
158
159u-boot.bin: u-boot
160 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
161
wdenk0a658552003-08-05 17:43:17 +0000162u-boot.img: u-boot.bin
163 ./tools/mkimage -A $(ARCH) -T firmware -C none \
164 -a $(TEXT_BASE) -e 0 \
Wolfgang Denk4d1d9a32006-02-21 17:33:04 +0100165 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenk0a658552003-08-05 17:43:17 +0000166 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
167 -d $< $@
168
wdenk7ebf7442002-11-02 23:17:16 +0000169u-boot.dis: u-boot
170 $(OBJDUMP) -d $< > $@
171
Wolfgang Denk4d1d9a32006-02-21 17:33:04 +0100172u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
wdenk57b2d802003-06-27 21:31:46 +0000173 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
174 $(LD) $(LDFLAGS) $$UNDEF_SYM $(OBJS) \
wdenkf1276d42005-02-03 23:00:49 +0000175 --start-group $(LIBS) --end-group $(PLATFORM_LIBS) \
wdenk67ff36c2002-11-19 23:01:07 +0000176 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000177
wdenkc0aa5c52003-12-06 19:49:23 +0000178$(LIBS):
179 $(MAKE) -C `dirname $@`
180
181$(SUBDIRS):
wdenk444f22b2003-12-07 21:39:28 +0000182 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000183
Wolfgang Denk4d1d9a32006-02-21 17:33:04 +0100184version:
185 @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \
186 echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \
187 echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \
188 $(TOPDIR)) >> $(VERSION_FILE); \
189 echo "\"" >> $(VERSION_FILE)
190
dzu9b10ef982003-08-07 14:20:31 +0000191gdbtools:
192 $(MAKE) -C tools/gdb || exit 1
193
wdenk7ebf7442002-11-02 23:17:16 +0000194depend dep:
195 @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done
196
197tags:
198 ctags -w `find $(SUBDIRS) include \
wdenk270a8bd2004-04-15 21:58:11 +0000199 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
200 fs/cramfs fs/fat fs/fdos fs/jffs2 \
201 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000202 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
203
204etags:
205 etags -a `find $(SUBDIRS) include \
wdenka0ebde52004-09-08 22:03:11 +0000206 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
207 fs/cramfs fs/fat fs/fdos fs/jffs2 \
208 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000209 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
210
Markus Klotzbücherf4a5c612006-02-28 18:05:25 +0100211ctags:
212 ctags -Re
213
wdenk7ebf7442002-11-02 23:17:16 +0000214System.map: u-boot
215 @$(NM) $< | \
216 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
217 sort > System.map
218
219#########################################################################
220else
221all install u-boot u-boot.srec depend dep:
222 @echo "System not configured - see README" >&2
223 @ exit 1
224endif
225
226#########################################################################
227
228unconfig:
wdenk9c07bf62004-04-10 20:43:50 +0000229 @rm -f include/config.h include/config.mk board/*/config.tmp
wdenk7ebf7442002-11-02 23:17:16 +0000230
231#========================================================================
232# PowerPC
233#========================================================================
wdenk359733b2003-03-31 17:27:09 +0000234
235#########################################################################
236## MPC5xx Systems
237#########################################################################
238
wdenkf1d0ff42005-04-13 23:15:10 +0000239canmb_config: unconfig
240 @./mkconfig -a canmb ppc mpc5xxx canmb
241
wdenk359733b2003-03-31 17:27:09 +0000242cmi_mpc5xx_config: unconfig
243 @./mkconfig $(@:_config=) ppc mpc5xx cmi
244
wdenk634d2f72004-04-15 23:14:49 +0000245PATI_config: unconfig
wdenkbc01dd52004-01-02 16:05:07 +0000246 @./mkconfig $(@:_config=) ppc mpc5xx pati mpl
247
wdenk7ebf7442002-11-02 23:17:16 +0000248#########################################################################
wdenk21136db2003-07-16 21:53:01 +0000249## MPC5xxx Systems
250#########################################################################
wdenk8d414a72005-06-10 10:00:19 +0000251
Wolfgang Denk3863d6b2005-08-12 00:22:49 +0200252aev_config: unconfig
253 @./mkconfig -a aev ppc mpc5xxx tqm5200
254
Stefan Roese99200d22005-08-22 17:51:53 +0200255cpci5200_config: unconfig
256 @./mkconfig -a cpci5200 ppc mpc5xxx cpci5200 esd
257
wdenk8d414a72005-06-10 10:00:19 +0000258hmi1001_config: unconfig
259 @./mkconfig hmi1001 ppc mpc5xxx hmi1001
260
wdenke44b9112004-04-18 23:32:11 +0000261Lite5200_config \
262Lite5200_LOWBOOT_config \
263Lite5200_LOWBOOT08_config \
264icecube_5200_config \
265icecube_5200_LOWBOOT_config \
266icecube_5200_LOWBOOT08_config \
267icecube_5200_DDR_config \
268icecube_5200_DDR_LOWBOOT_config \
269icecube_5200_DDR_LOWBOOT08_config \
270icecube_5100_config: unconfig
wdenk21136db2003-07-16 21:53:01 +0000271 @ >include/config.h
wdenk9c07bf62004-04-10 20:43:50 +0000272 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
273 { if [ "$(findstring DDR,$@)" ] ; \
274 then echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
275 else echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \
276 fi ; \
wdenk4b16c2e2003-11-07 13:42:26 +0000277 echo "... with LOWBOOT configuration" ; \
278 }
279 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
280 { echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
281 echo "... with 8 MB flash only" ; \
wdenk9c07bf62004-04-10 20:43:50 +0000282 echo "... with LOWBOOT configuration" ; \
wdenk4b16c2e2003-11-07 13:42:26 +0000283 }
wdenk236d3fc2003-12-20 22:45:10 +0000284 @[ -z "$(findstring DDR,$@)" ] || \
285 { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
286 echo "... DDR memory revision" ; \
287 }
wdenk1ebf41e2004-01-02 14:00:00 +0000288 @[ -z "$(findstring 5200,$@)" ] || \
289 { echo "#define CONFIG_MPC5200" >>include/config.h ; \
290 echo "... with MPC5200 processor" ; \
291 }
wdenk55618472003-10-28 09:14:21 +0000292 @[ -z "$(findstring 5100,$@)" ] || \
wdenk21136db2003-07-16 21:53:01 +0000293 { echo "#define CONFIG_MGT5100" >>include/config.h ; \
294 echo "... with MGT5100 processor" ; \
295 }
296 @./mkconfig -a IceCube ppc mpc5xxx icecube
297
Wolfgang Denk07ad17c2006-02-22 00:43:16 +0100298inka4x0_config: unconfig
wdenk4ca32362004-12-16 15:52:40 +0000299 @./mkconfig inka4x0 ppc mpc5xxx inka4x0
300
Stefan Roese531e94c2006-03-04 14:57:03 +0100301mcc200_config \
302mcc200_lowboot_config: unconfig
303 @ >include/config.h
304 @[ -z "$(findstring lowboot_,$@)" ] || \
305 { echo "TEXT_BASE = 0xFE000000" >board/mcc200/config.tmp ; \
306 echo "... with lowboot configuration" ; \
307 }
Wolfgang Denk07ad17c2006-02-22 00:43:16 +0100308 @./mkconfig mcc200 ppc mpc5xxx mcc200
309
Wolfgang Denk672f2e82005-08-18 01:22:22 +0200310o2dnt_config:
Wolfgang Denk07ad17c2006-02-22 00:43:16 +0100311 @./mkconfig o2dnt ppc mpc5xxx o2dnt
Wolfgang Denk672f2e82005-08-18 01:22:22 +0200312
Stefan Roese99200d22005-08-22 17:51:53 +0200313pf5200_config: unconfig
Wolfgang Denk07ad17c2006-02-22 00:43:16 +0100314 @./mkconfig pf5200 ppc mpc5xxx pf5200 esd
Stefan Roese99200d22005-08-22 17:51:53 +0200315
wdenkda54bc92004-08-04 21:56:49 +0000316PM520_config \
317PM520_DDR_config \
318PM520_ROMBOOT_config \
319PM520_ROMBOOT_DDR_config: unconfig
320 @ >include/config.h
321 @[ -z "$(findstring DDR,$@)" ] || \
322 { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
323 echo "... DDR memory revision" ; \
324 }
325 @[ -z "$(findstring ROMBOOT,$@)" ] || \
326 { echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
327 echo "... booting from 8-bit flash" ; \
328 }
329 @./mkconfig -a PM520 ppc mpc5xxx pm520
330
Wolfgang Denkea055ba2006-02-22 10:25:39 +0100331smmaco4_config: unconfig
332 @./mkconfig -a smmaco4 ppc mpc5xxx tqm5200
Wolfgang Denk2a61ee82006-02-22 01:59:13 +0100333
334spieval_config: unconfig
335 echo "#define CONFIG_CS_AUTOCONF">>include/config.h
336 echo "... with automatic CS configuration"
337 @./mkconfig -a spieval ppc mpc5xxx tqm5200
338
wdenk1ebf41e2004-01-02 14:00:00 +0000339MINI5200_config \
340EVAL5200_config \
341TOP5200_config: unconfig
342 @ echo "#define CONFIG_$(@:_config=) 1" >include/config.h
343 @./mkconfig -a TOP5200 ppc mpc5xxx top5200 emk
344
wdenkcc3f8a92004-07-11 19:17:20 +0000345Total5100_config \
346Total5200_config \
347Total5200_lowboot_config \
348Total5200_Rev2_config \
349Total5200_Rev2_lowboot_config: unconfig
350 @ >include/config.h
351 @[ -z "$(findstring 5100,$@)" ] || \
352 { echo "#define CONFIG_MGT5100" >>include/config.h ; \
353 echo "... with MGT5100 processor" ; \
354 }
355 @[ -z "$(findstring 5200,$@)" ] || \
356 { echo "#define CONFIG_MPC5200" >>include/config.h ; \
357 echo "... with MPC5200 processor" ; \
358 }
359 @[ -n "$(findstring Rev,$@)" ] || \
360 { echo "#define CONFIG_TOTAL5200_REV 1" >>include/config.h ; \
361 echo "... revision 1 board" ; \
362 }
363 @[ -z "$(findstring Rev2_,$@)" ] || \
364 { echo "#define CONFIG_TOTAL5200_REV 2" >>include/config.h ; \
365 echo "... revision 2 board" ; \
366 }
367 @[ -z "$(findstring lowboot_,$@)" ] || \
368 { echo "TEXT_BASE = 0xFE000000" >board/total5200/config.tmp ; \
369 echo "... with lowboot configuration" ; \
370 }
371 @./mkconfig -a Total5200 ppc mpc5xxx total5200
372
Wolfgang Denk4361d522005-08-18 00:06:50 +0200373TQM5200_auto_config \
wdenk64519362004-07-11 17:40:54 +0000374TQM5200_AA_config \
375TQM5200_AB_config \
376TQM5200_AC_config \
377MiniFAP_config: unconfig
378 @ >include/config.h
wdenkda54bc92004-08-04 21:56:49 +0000379 @[ -z "$(findstring MiniFAP,$@)" ] || \
wdenk64519362004-07-11 17:40:54 +0000380 { echo "#define CONFIG_MINIFAP" >>include/config.h ; \
381 echo "#define CONFIG_TQM5200_AC" >>include/config.h ; \
wdenkda54bc92004-08-04 21:56:49 +0000382 echo "... TQM5200_AC on MiniFAP" ; \
wdenk64519362004-07-11 17:40:54 +0000383 }
384 @[ -z "$(findstring AA,$@)" ] || \
385 { echo "#define CONFIG_TQM5200_AA" >>include/config.h ; \
386 echo "... with 4 MB Flash, 16 MB SDRAM, 32 kB EEPROM" ; \
387 }
388 @[ -z "$(findstring AB,$@)" ] || \
389 { echo "#define CONFIG_TQM5200_AB" >>include/config.h ; \
390 echo "... with 64 MB Flash, 64 MB SDRAM, 32 kB EEPROM, 512 kB SRAM" ; \
wdenk79cf7572004-08-28 21:09:14 +0000391 echo "... with Graphics Controller"; \
wdenk64519362004-07-11 17:40:54 +0000392 }
393 @[ -z "$(findstring AC,$@)" ] || \
394 { echo "#define CONFIG_TQM5200_AC" >>include/config.h ; \
395 echo "... with 4 MB Flash, 128 MB SDRAM" ; \
wdenk79cf7572004-08-28 21:09:14 +0000396 echo "... with Graphics Controller"; \
wdenk64519362004-07-11 17:40:54 +0000397 }
wdenkdc130442004-12-12 22:06:17 +0000398 @[ -z "$(findstring auto,$@)" ] || \
399 { echo "#define CONFIG_CS_AUTOCONF" >>include/config.h ; \
400 echo "... with automatic CS configuration" ; \
401 }
wdenk64519362004-07-11 17:40:54 +0000402 @./mkconfig -a TQM5200 ppc mpc5xxx tqm5200
403
wdenk21136db2003-07-16 21:53:01 +0000404#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000405## MPC8xx Systems
406#########################################################################
407
wdenk9f664dd2004-06-09 21:50:45 +0000408Adder_config \
409Adder87x_config \
wdenkec5dc0d2004-07-09 22:51:01 +0000410AdderII_config \
wdenk9f664dd2004-06-09 21:50:45 +0000411 : unconfig
wdenkec5dc0d2004-07-09 22:51:01 +0000412 $(if $(findstring AdderII,$@), \
wdenk9f664dd2004-06-09 21:50:45 +0000413 @echo "#define CONFIG_MPC852T" > include/config.h)
414 @./mkconfig -a Adder ppc mpc8xx adder
415
wdenkad276f22004-01-04 16:28:35 +0000416ADS860_config \
wdenkad276f22004-01-04 16:28:35 +0000417FADS823_config \
418FADS850SAR_config \
419MPC86xADS_config \
wdenka7556b22004-06-06 21:35:06 +0000420MPC885ADS_config \
wdenkad276f22004-01-04 16:28:35 +0000421FADS860T_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000422 @./mkconfig $(@:_config=) ppc mpc8xx fads
423
424AMX860_config : unconfig
425 @./mkconfig $(@:_config=) ppc mpc8xx amx860 westel
426
427c2mon_config: unconfig
428 @./mkconfig $(@:_config=) ppc mpc8xx c2mon
429
430CCM_config: unconfig
431 @./mkconfig $(@:_config=) ppc mpc8xx CCM siemens
432
433cogent_mpc8xx_config: unconfig
434 @./mkconfig $(@:_config=) ppc mpc8xx cogent
435
wdenkef5fe752003-03-12 10:41:04 +0000436ELPT860_config: unconfig
437 @./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX
438
wdenk7ebf7442002-11-02 23:17:16 +0000439ESTEEM192E_config: unconfig
440 @./mkconfig $(@:_config=) ppc mpc8xx esteem192e
441
442ETX094_config : unconfig
443 @./mkconfig $(@:_config=) ppc mpc8xx etx094
444
wdenk7ebf7442002-11-02 23:17:16 +0000445FLAGADM_config: unconfig
446 @./mkconfig $(@:_config=) ppc mpc8xx flagadm
447
wdenk541a76d2003-05-03 15:50:43 +0000448xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
449
450GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000451GEN860T_config: unconfig
wdenk541a76d2003-05-03 15:50:43 +0000452 @ >include/config.h
453 @[ -z "$(findstring _SC,$@)" ] || \
454 { echo "#define CONFIG_SC" >>include/config.h ; \
455 echo "With reduced H/W feature set (SC)..." ; \
456 }
457 @./mkconfig -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000458
459GENIETV_config: unconfig
460 @./mkconfig $(@:_config=) ppc mpc8xx genietv
461
462GTH_config: unconfig
463 @./mkconfig $(@:_config=) ppc mpc8xx gth
464
465hermes_config : unconfig
466 @./mkconfig $(@:_config=) ppc mpc8xx hermes
467
wdenkf602aa02004-03-13 23:29:43 +0000468HMI10_config : unconfig
469 @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
470
wdenk7ebf7442002-11-02 23:17:16 +0000471IAD210_config: unconfig
472 @./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens
473
474xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
475
476ICU862_100MHz_config \
477ICU862_config: unconfig
478 @ >include/config.h
479 @[ -z "$(findstring _100MHz,$@)" ] || \
480 { echo "#define CONFIG_100MHz" >>include/config.h ; \
481 echo "... with 100MHz system clock" ; \
482 }
483 @./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
484
485IP860_config : unconfig
486 @./mkconfig $(@:_config=) ppc mpc8xx ip860
487
488IVML24_256_config \
489IVML24_128_config \
490IVML24_config: unconfig
491 @ >include/config.h
492 @[ -z "$(findstring IVML24_config,$@)" ] || \
493 { echo "#define CONFIG_IVML24_16M" >>include/config.h ; \
494 }
495 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
496 { echo "#define CONFIG_IVML24_32M" >>include/config.h ; \
497 }
498 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
499 { echo "#define CONFIG_IVML24_64M" >>include/config.h ; \
500 }
501 @./mkconfig -a IVML24 ppc mpc8xx ivm
502
503IVMS8_256_config \
504IVMS8_128_config \
505IVMS8_config: unconfig
506 @ >include/config.h
507 @[ -z "$(findstring IVMS8_config,$@)" ] || \
508 { echo "#define CONFIG_IVMS8_16M" >>include/config.h ; \
509 }
510 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
511 { echo "#define CONFIG_IVMS8_32M" >>include/config.h ; \
512 }
513 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
514 { echo "#define CONFIG_IVMS8_64M" >>include/config.h ; \
515 }
516 @./mkconfig -a IVMS8 ppc mpc8xx ivm
517
wdenk56f94be2002-11-05 16:35:14 +0000518KUP4K_config : unconfig
wdenk65faef92004-03-25 19:29:38 +0000519 @./mkconfig $(@:_config=) ppc mpc8xx kup4k kup
520
521KUP4X_config : unconfig
522 @./mkconfig $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000523
wdenk7ebf7442002-11-02 23:17:16 +0000524LANTEC_config : unconfig
525 @./mkconfig $(@:_config=) ppc mpc8xx lantec
526
527lwmon_config: unconfig
528 @./mkconfig $(@:_config=) ppc mpc8xx lwmon
529
530MBX_config \
531MBX860T_config: unconfig
532 @./mkconfig $(@:_config=) ppc mpc8xx mbx8xx
533
534MHPC_config: unconfig
535 @./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec
536
537MVS1_config : unconfig
538 @./mkconfig $(@:_config=) ppc mpc8xx mvs1
539
wdenk70764a32003-06-26 22:04:09 +0000540xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
541
542NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000543NETVIA_config: unconfig
wdenk70764a32003-06-26 22:04:09 +0000544 @ >include/config.h
545 @[ -z "$(findstring NETVIA_config,$@)" ] || \
546 { echo "#define CONFIG_NETVIA_VERSION 1" >>include/config.h ; \
547 echo "... Version 1" ; \
548 }
549 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
550 { echo "#define CONFIG_NETVIA_VERSION 2" >>include/config.h ; \
551 echo "... Version 2" ; \
552 }
553 @./mkconfig -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000554
wdenk6203e402004-04-18 10:13:26 +0000555xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
556
557NETPHONE_V2_config \
wdenk3902d702004-04-15 18:22:41 +0000558NETPHONE_config: unconfig
wdenk6203e402004-04-18 10:13:26 +0000559 @ >include/config.h
560 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
561 { echo "#define CONFIG_NETPHONE_VERSION 1" >>include/config.h ; \
562 }
563 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
564 { echo "#define CONFIG_NETPHONE_VERSION 2" >>include/config.h ; \
565 }
566 @./mkconfig -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk3902d702004-04-15 18:22:41 +0000567
wdenkc4e854f2004-06-07 23:46:25 +0000568xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk3902d702004-04-15 18:22:41 +0000569
wdenkc4e854f2004-06-07 23:46:25 +0000570NETTA_ISDN_6412_SWAPHOOK_config \
571NETTA_ISDN_SWAPHOOK_config \
572NETTA_6412_SWAPHOOK_config \
573NETTA_SWAPHOOK_config \
574NETTA_ISDN_6412_config \
wdenk3902d702004-04-15 18:22:41 +0000575NETTA_ISDN_config \
wdenkc4e854f2004-06-07 23:46:25 +0000576NETTA_6412_config \
wdenk3902d702004-04-15 18:22:41 +0000577NETTA_config: unconfig
578 @ >include/config.h
wdenkc4e854f2004-06-07 23:46:25 +0000579 @[ -z "$(findstring ISDN_,$@)" ] || \
580 { echo "#define CONFIG_NETTA_ISDN 1" >>include/config.h ; \
581 }
582 @[ -n "$(findstring ISDN_,$@)" ] || \
wdenk3902d702004-04-15 18:22:41 +0000583 { echo "#undef CONFIG_NETTA_ISDN" >>include/config.h ; \
584 }
wdenkc4e854f2004-06-07 23:46:25 +0000585 @[ -z "$(findstring 6412_,$@)" ] || \
586 { echo "#define CONFIG_NETTA_6412 1" >>include/config.h ; \
587 }
588 @[ -n "$(findstring 6412_,$@)" ] || \
589 { echo "#undef CONFIG_NETTA_6412" >>include/config.h ; \
590 }
591 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
592 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>include/config.h ; \
593 }
594 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
595 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>include/config.h ; \
wdenk3902d702004-04-15 18:22:41 +0000596 }
597 @./mkconfig -a $(call xtract_NETTA,$@) ppc mpc8xx netta
598
wdenkc4e854f2004-06-07 23:46:25 +0000599xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
600
601NETTA2_V2_config \
602NETTA2_config: unconfig
603 @ >include/config.h
604 @[ -z "$(findstring NETTA2_config,$@)" ] || \
605 { echo "#define CONFIG_NETTA2_VERSION 1" >>include/config.h ; \
606 }
607 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
608 { echo "#define CONFIG_NETTA2_VERSION 2" >>include/config.h ; \
609 }
610 @./mkconfig -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
611
wdenk0bbcbd22004-08-28 22:45:57 +0000612NC650_config: unconfig
613 @./mkconfig $(@:_config=) ppc mpc8xx nc650
614
wdenk7ebf7442002-11-02 23:17:16 +0000615NX823_config: unconfig
616 @./mkconfig $(@:_config=) ppc mpc8xx nx823
617
618pcu_e_config: unconfig
619 @./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens
620
wdenk174e0e52003-12-07 22:27:15 +0000621QS850_config: unconfig
622 @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
623
624QS823_config: unconfig
625 @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
626
627QS860T_config: unconfig
628 @./mkconfig $(@:_config=) ppc mpc8xx qs860t snmc
629
wdenk7d1eb822004-09-29 11:02:56 +0000630quantum_config: unconfig
631 @./mkconfig $(@:_config=) ppc mpc8xx quantum
632
wdenk7ebf7442002-11-02 23:17:16 +0000633R360MPI_config: unconfig
634 @./mkconfig $(@:_config=) ppc mpc8xx r360mpi
635
wdenk4e112c12003-06-03 23:54:09 +0000636RBC823_config: unconfig
637 @./mkconfig $(@:_config=) ppc mpc8xx rbc823
638
wdenk7ebf7442002-11-02 23:17:16 +0000639RPXClassic_config: unconfig
640 @./mkconfig $(@:_config=) ppc mpc8xx RPXClassic
641
642RPXlite_config: unconfig
643 @./mkconfig $(@:_config=) ppc mpc8xx RPXlite
644
wdenkec432742004-06-09 21:04:48 +0000645RPXlite_DW_64_config \
646RPXlite_DW_LCD_config \
647RPXlite_DW_64_LCD_config \
648RPXlite_DW_NVRAM_config \
649RPXlite_DW_NVRAM_64_config \
650RPXlite_DW_NVRAM_LCD_config \
651RPXlite_DW_NVRAM_64_LCD_config \
652RPXlite_DW_config: unconfig
653 @ >include/config.h
654 @[ -z "$(findstring _64,$@)" ] || \
655 { echo "#define RPXlite_64MHz" >>include/config.h ; \
656 echo "... with 64MHz system clock ..."; \
657 }
658 @[ -z "$(findstring _LCD,$@)" ] || \
659 { echo "#define CONFIG_LCD" >>include/config.h ; \
660 echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
661 echo "... with LCD display ..."; \
662 }
663 @[ -z "$(findstring _NVRAM,$@)" ] || \
664 { echo "#define CFG_ENV_IS_IN_NVRAM" >>include/config.h ; \
665 echo "... with ENV in NVRAM ..."; \
666 }
667 @./mkconfig -a RPXlite_DW ppc mpc8xx RPXlite_dw
668
wdenke6466f62003-06-05 19:27:42 +0000669rmu_config: unconfig
670 @./mkconfig $(@:_config=) ppc mpc8xx rmu
671
wdenk7ebf7442002-11-02 23:17:16 +0000672RRvision_config: unconfig
673 @./mkconfig $(@:_config=) ppc mpc8xx RRvision
674
675RRvision_LCD_config: unconfig
676 @echo "#define CONFIG_LCD" >include/config.h
677 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
678 @./mkconfig -a RRvision ppc mpc8xx RRvision
679
680SM850_config : unconfig
681 @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
682
683SPD823TS_config: unconfig
684 @./mkconfig $(@:_config=) ppc mpc8xx spd8xx
685
Wolfgang Denk72fdb6c2005-08-15 15:55:00 +0200686stxxtc_config: unconfig
687 @./mkconfig $(@:_config=) ppc mpc8xx stxxtc
688
wdenkc8434db2003-03-26 06:55:25 +0000689svm_sc8xx_config: unconfig
690 @ >include/config.h
691 @./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx
692
wdenk7ebf7442002-11-02 23:17:16 +0000693SXNI855T_config: unconfig
694 @./mkconfig $(@:_config=) ppc mpc8xx sixnet
695
wdenkb666c8f2003-03-06 00:58:30 +0000696# EMK MPC8xx based modules
697TOP860_config: unconfig
698 @./mkconfig $(@:_config=) ppc mpc8xx top860 emk
699
wdenk7ebf7442002-11-02 23:17:16 +0000700# Play some tricks for configuration selection
wdenkc78bf132004-04-24 23:23:30 +0000701# Only 855 and 860 boards may come with FEC
702# and only 823 boards may have LCD support
703xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +0000704
705FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000706FPS860L_config \
wdenk69141282003-07-07 20:07:54 +0000707NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +0000708TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000709TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +0000710TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000711TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000712TQM860L_config \
wdenk6bd14892003-04-10 11:18:18 +0000713TQM862L_config \
wdenkfb229ae2003-08-07 22:18:11 +0000714TQM823M_config \
wdenkfb229ae2003-08-07 22:18:11 +0000715TQM850M_config \
wdenk69141282003-07-07 20:07:54 +0000716TQM855M_config \
wdenk69141282003-07-07 20:07:54 +0000717TQM860M_config \
wdenk69141282003-07-07 20:07:54 +0000718TQM862M_config \
wdenkb50cde52004-01-24 20:25:54 +0000719TQM866M_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000720 @ >include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000721 @[ -z "$(findstring _LCD,$@)" ] || \
722 { echo "#define CONFIG_LCD" >>include/config.h ; \
wdenkc0d54ae2003-11-25 16:55:19 +0000723 echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000724 echo "... with LCD display" ; \
725 }
726 @./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
727
728TTTech_config: unconfig
729 @echo "#define CONFIG_LCD" >include/config.h
730 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
731 @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
732
wdenk11392db2004-12-19 09:58:11 +0000733uc100_config : unconfig
wdenk51242782004-12-18 22:35:43 +0000734 @./mkconfig $(@:_config=) ppc mpc8xx uc100
735
wdenk2dad91b2003-01-13 23:54:46 +0000736v37_config: unconfig
737 @echo "#define CONFIG_LCD" >include/config.h
738 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h
739 @./mkconfig $(@:_config=) ppc mpc8xx v37
740
dzu69438f62003-09-25 22:32:40 +0000741wtk_config: unconfig
742 @echo "#define CONFIG_LCD" >include/config.h
743 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>include/config.h
744 @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
745
wdenk7ebf7442002-11-02 23:17:16 +0000746#########################################################################
747## PPC4xx Systems
748#########################################################################
wdenk99874b42004-07-01 21:40:08 +0000749xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +0000750
751ADCIOP_config: unconfig
752 @./mkconfig $(@:_config=) ppc ppc4xx adciop esd
753
Wolfgang Denk56811f62005-10-09 01:04:33 +0200754AP1000_config:unconfig
755 @./mkconfig $(@:_config=) ppc ppc4xx ap1000 amirix
756
stroese05b88912004-12-16 18:44:40 +0000757APC405_config: unconfig
758 @./mkconfig $(@:_config=) ppc ppc4xx apc405 esd
759
wdenk7ebf7442002-11-02 23:17:16 +0000760AR405_config: unconfig
761 @./mkconfig $(@:_config=) ppc ppc4xx ar405 esd
762
stroesebfcc82b2003-05-23 11:41:44 +0000763ASH405_config: unconfig
764 @./mkconfig $(@:_config=) ppc ppc4xx ash405 esd
765
Stefan Roese3e1f1b32005-08-01 16:49:12 +0200766bamboo_config: unconfig
767 @./mkconfig $(@:_config=) ppc ppc4xx bamboo amcc
768
769bubinga_config: unconfig
770 @./mkconfig $(@:_config=) ppc ppc4xx bubinga amcc
stroesebfcc82b2003-05-23 11:41:44 +0000771
wdenk7ebf7442002-11-02 23:17:16 +0000772CANBT_config: unconfig
773 @./mkconfig $(@:_config=) ppc ppc4xx canbt esd
774
wdenk9e7130b2004-09-09 17:44:35 +0000775CATcenter_config \
776CATcenter_25_config \
777CATcenter_33_config: unconfig
wdenkbb33bab2004-05-13 13:23:58 +0000778 @ echo "/* CATcenter uses PPChameleon Model ME */" > include/config.h
779 @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> include/config.h
wdenk9e7130b2004-09-09 17:44:35 +0000780 @[ -z "$(findstring _25,$@)" ] || \
781 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>include/config.h ; \
782 echo "SysClk = 25MHz" ; \
783 }
784 @[ -z "$(findstring _33,$@)" ] || \
785 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>include/config.h ; \
786 echo "SysClk = 33MHz" ; \
787 }
wdenkbb33bab2004-05-13 13:23:58 +0000788 @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
789
Stefan Roesea34997d2005-09-22 09:16:57 +0200790CPCI2DP_config: unconfig
791 @./mkconfig $(@:_config=) ppc ppc4xx cpci2dp esd
792
stroesebfcc82b2003-05-23 11:41:44 +0000793CPCI405_config \
794CPCI4052_config \
stroese05b88912004-12-16 18:44:40 +0000795CPCI405DT_config \
stroesebfcc82b2003-05-23 11:41:44 +0000796CPCI405AB_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000797 @./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd
798 @echo "BOARD_REVISION = $(@:_config=)" >>include/config.mk
799
800CPCI440_config: unconfig
801 @./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd
802
803CPCIISER4_config: unconfig
804 @./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd
805
wdenk634d2f72004-04-15 23:14:49 +0000806CRAYL1_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000807 @./mkconfig $(@:_config=) ppc ppc4xx L1 cray
808
wdenkf70cbb22004-02-23 20:48:38 +0000809csb272_config: unconfig
810 @./mkconfig $(@:_config=) ppc ppc4xx csb272
811
wdenk7e920de2004-06-09 12:47:02 +0000812csb472_config: unconfig
813 @./mkconfig $(@:_config=) ppc ppc4xx csb472
814
wdenk7ebf7442002-11-02 23:17:16 +0000815DASA_SIM_config: unconfig
816 @./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd
817
stroese3361eb72003-09-12 08:57:15 +0000818DP405_config: unconfig
819 @./mkconfig $(@:_config=) ppc ppc4xx dp405 esd
820
wdenk7ebf7442002-11-02 23:17:16 +0000821DU405_config: unconfig
822 @./mkconfig $(@:_config=) ppc ppc4xx du405 esd
823
Stefan Roese3e1f1b32005-08-01 16:49:12 +0200824ebony_config: unconfig
825 @./mkconfig $(@:_config=) ppc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +0000826
wdenk634d2f72004-04-15 23:14:49 +0000827ERIC_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000828 @./mkconfig $(@:_config=) ppc ppc4xx eric
829
wdenk634d2f72004-04-15 23:14:49 +0000830EXBITGEN_config: unconfig
wdenkd9fce812003-06-28 17:24:46 +0000831 @./mkconfig $(@:_config=) ppc ppc4xx exbitgen
832
stroese05b88912004-12-16 18:44:40 +0000833G2000_config: unconfig
834 @./mkconfig $(@:_config=) ppc ppc4xx g2000
835
836HH405_config: unconfig
837 @./mkconfig $(@:_config=) ppc ppc4xx hh405 esd
838
stroese3361eb72003-09-12 08:57:15 +0000839HUB405_config: unconfig
840 @./mkconfig $(@:_config=) ppc ppc4xx hub405 esd
841
wdenk634d2f72004-04-15 23:14:49 +0000842JSE_config: unconfig
843 @./mkconfig $(@:_config=) ppc ppc4xx jse
844
Stefan Roese5ff4c3f2005-08-15 12:31:23 +0200845KAREF_config: unconfig
846 @./mkconfig $(@:_config=) ppc ppc4xx karef sandburst
847
Stefan Roese99644742005-11-29 18:18:21 +0100848luan_config: unconfig
849 @./mkconfig $(@:_config=) ppc ppc4xx luan amcc
850
Stefan Roese5ff4c3f2005-08-15 12:31:23 +0200851METROBOX_config: unconfig
852 @./mkconfig $(@:_config=) ppc ppc4xx metrobox sandburst
853
wdenk634d2f72004-04-15 23:14:49 +0000854MIP405_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000855 @./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl
856
wdenk634d2f72004-04-15 23:14:49 +0000857MIP405T_config: unconfig
wdenke39c2842003-06-04 15:05:30 +0000858 @echo "#define CONFIG_MIP405T" >include/config.h
859 @echo "Enable subset config for MIP405T"
860 @./mkconfig -a MIP405 ppc ppc4xx mip405 mpl
861
wdenk634d2f72004-04-15 23:14:49 +0000862ML2_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000863 @./mkconfig $(@:_config=) ppc ppc4xx ml2
864
wdenk634d2f72004-04-15 23:14:49 +0000865ml300_config: unconfig
wdenke537b3b2004-02-23 23:54:43 +0000866 @./mkconfig $(@:_config=) ppc ppc4xx ml300 xilinx
867
Stefan Roese3e1f1b32005-08-01 16:49:12 +0200868ocotea_config: unconfig
869 @./mkconfig $(@:_config=) ppc ppc4xx ocotea amcc
wdenk00fe1612004-03-14 00:07:33 +0000870
wdenk7ebf7442002-11-02 23:17:16 +0000871OCRTC_config \
872ORSG_config: unconfig
873 @./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd
874
Stefan Roesec443fe92005-11-22 13:20:42 +0100875p3p440_config: unconfig
876 @./mkconfig $(@:_config=) ppc ppc4xx p3p440 prodrive
877
wdenk7ebf7442002-11-02 23:17:16 +0000878PCI405_config: unconfig
879 @./mkconfig $(@:_config=) ppc ppc4xx pci405 esd
880
wdenk634d2f72004-04-15 23:14:49 +0000881PIP405_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000882 @./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl
883
stroese3361eb72003-09-12 08:57:15 +0000884PLU405_config: unconfig
885 @./mkconfig $(@:_config=) ppc ppc4xx plu405 esd
886
stroesebfcc82b2003-05-23 11:41:44 +0000887PMC405_config: unconfig
888 @./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd
889
wdenk7ac16102004-08-01 22:48:16 +0000890PPChameleonEVB_config \
wdenk99874b42004-07-01 21:40:08 +0000891PPChameleonEVB_BA_25_config \
892PPChameleonEVB_ME_25_config \
893PPChameleonEVB_HI_25_config \
894PPChameleonEVB_BA_33_config \
895PPChameleonEVB_ME_33_config \
896PPChameleonEVB_HI_33_config: unconfig
wdenk7182b0f2003-10-06 21:55:32 +0000897 @ >include/config.h
wdenk9e7130b2004-09-09 17:44:35 +0000898 @[ -z "$(findstring EVB_BA,$@)" ] || \
wdenk7182b0f2003-10-06 21:55:32 +0000899 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>include/config.h ; \
900 echo "... BASIC model" ; \
901 }
wdenk9e7130b2004-09-09 17:44:35 +0000902 @[ -z "$(findstring EVB_ME,$@)" ] || \
wdenk7182b0f2003-10-06 21:55:32 +0000903 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>include/config.h ; \
904 echo "... MEDIUM model" ; \
905 }
wdenk9e7130b2004-09-09 17:44:35 +0000906 @[ -z "$(findstring EVB_HI,$@)" ] || \
wdenk7182b0f2003-10-06 21:55:32 +0000907 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>include/config.h ; \
908 echo "... HIGH-END model" ; \
909 }
wdenk99874b42004-07-01 21:40:08 +0000910 @[ -z "$(findstring _25,$@)" ] || \
911 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>include/config.h ; \
wdenk9e7130b2004-09-09 17:44:35 +0000912 echo "SysClk = 25MHz" ; \
wdenk99874b42004-07-01 21:40:08 +0000913 }
914 @[ -z "$(findstring _33,$@)" ] || \
915 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>include/config.h ; \
wdenk9e7130b2004-09-09 17:44:35 +0000916 echo "SysClk = 33MHz" ; \
wdenk99874b42004-07-01 21:40:08 +0000917 }
wdenk7182b0f2003-10-06 21:55:32 +0000918 @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk232fe0b2003-09-02 22:48:03 +0000919
wdenkd3341052005-01-09 23:48:14 +0000920sbc405_config: unconfig
921 @./mkconfig $(@:_config=) ppc ppc4xx sbc405
922
Stefan Roese3e1f1b32005-08-01 16:49:12 +0200923sycamore_config: unconfig
924 @echo "Configuring for sycamore board as subset of walnut..."
925 @./mkconfig -a walnut ppc ppc4xx walnut amcc
926
stroese3361eb72003-09-12 08:57:15 +0000927VOH405_config: unconfig
928 @./mkconfig $(@:_config=) ppc ppc4xx voh405 esd
929
stroese05b88912004-12-16 18:44:40 +0000930VOM405_config: unconfig
931 @./mkconfig $(@:_config=) ppc ppc4xx vom405 esd
932
Stefan Roesef2303272005-11-15 10:35:59 +0100933CMS700_config: unconfig
934 @./mkconfig $(@:_config=) ppc ppc4xx cms700 esd
935
wdenk7ebf7442002-11-02 23:17:16 +0000936W7OLMC_config \
937W7OLMG_config: unconfig
938 @./mkconfig $(@:_config=) ppc ppc4xx w7o
939
Stefan Roese3e1f1b32005-08-01 16:49:12 +0200940walnut_config: unconfig
941 @./mkconfig $(@:_config=) ppc ppc4xx walnut amcc
wdenk7ebf7442002-11-02 23:17:16 +0000942
stroese05b88912004-12-16 18:44:40 +0000943WUH405_config: unconfig
944 @./mkconfig $(@:_config=) ppc ppc4xx wuh405 esd
945
wdenk634d2f72004-04-15 23:14:49 +0000946XPEDITE1K_config: unconfig
wdenk544e9732004-02-06 23:19:44 +0000947 @./mkconfig $(@:_config=) ppc ppc4xx xpedite1k
948
Stefan Roese3e1f1b32005-08-01 16:49:12 +0200949yosemite_config: unconfig
950 @./mkconfig $(@:_config=) ppc ppc4xx yosemite amcc
951
952yellowstone_config: unconfig
953 @./mkconfig $(@:_config=) ppc ppc4xx yellowstone amcc
954
wdenk7ebf7442002-11-02 23:17:16 +0000955#########################################################################
wdenk337f5652004-10-28 00:09:35 +0000956## MPC8220 Systems
957#########################################################################
Wolfgang Denkdb5f3862005-08-03 22:32:02 +0200958
959Alaska8220_config \
960Yukon8220_config: unconfig
wdenk337f5652004-10-28 00:09:35 +0000961 @./mkconfig $(@:_config=) ppc mpc8220 alaska
962
wdenkccfe25d2005-04-05 21:57:18 +0000963sorcery_config: unconfig
964 @./mkconfig $(@:_config=) ppc mpc8220 sorcery
965
wdenk337f5652004-10-28 00:09:35 +0000966#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000967## MPC824x Systems
968#########################################################################
wdenkc12081a2004-03-23 20:18:25 +0000969xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenkef5fe752003-03-12 10:41:04 +0000970
wdenk8aeb24e2003-06-20 22:36:30 +0000971A3000_config: unconfig
972 @./mkconfig $(@:_config=) ppc mpc824x a3000
973
Wolfgang Denka48c7252005-09-25 18:59:36 +0200974barco_config: unconfig
975 @./mkconfig $(@:_config=) ppc mpc824x barco
976
wdenk7ebf7442002-11-02 23:17:16 +0000977BMW_config: unconfig
978 @./mkconfig $(@:_config=) ppc mpc824x bmw
979
wdenkef5fe752003-03-12 10:41:04 +0000980CPC45_config \
981CPC45_ROMBOOT_config: unconfig
982 @./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45
983 @cd ./include ; \
984 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
985 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
986 echo "... booting from 8-bit flash" ; \
987 else \
988 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
989 echo "... booting from 64-bit flash" ; \
990 fi; \
991 echo "export CONFIG_BOOT_ROM" >> config.mk;
992
wdenk7ebf7442002-11-02 23:17:16 +0000993CU824_config: unconfig
994 @./mkconfig $(@:_config=) ppc mpc824x cu824
995
wdenk78924a72004-04-18 21:45:42 +0000996debris_config: unconfig
997 @./mkconfig $(@:_config=) ppc mpc824x debris etin
998
wdenk5f495752004-02-26 23:46:20 +0000999eXalion_config: unconfig
1000 @./mkconfig $(@:_config=) ppc mpc824x eXalion
1001
wdenke0c812a2005-04-03 15:51:42 +00001002HIDDEN_DRAGON_config: unconfig
1003 @./mkconfig $(@:_config=) ppc mpc824x hidden_dragon
1004
wdenk7ebf7442002-11-02 23:17:16 +00001005MOUSSE_config: unconfig
1006 @./mkconfig $(@:_config=) ppc mpc824x mousse
1007
1008MUSENKI_config: unconfig
1009 @./mkconfig $(@:_config=) ppc mpc824x musenki
1010
wdenk4e7a58a2003-12-07 19:24:00 +00001011MVBLUE_config: unconfig
1012 @./mkconfig $(@:_config=) ppc mpc824x mvblue
1013
wdenk7ebf7442002-11-02 23:17:16 +00001014OXC_config: unconfig
1015 @./mkconfig $(@:_config=) ppc mpc824x oxc
1016
1017PN62_config: unconfig
1018 @./mkconfig $(@:_config=) ppc mpc824x pn62
1019
1020Sandpoint8240_config: unconfig
1021 @./mkconfig $(@:_config=) ppc mpc824x sandpoint
1022
1023Sandpoint8245_config: unconfig
1024 @./mkconfig $(@:_config=) ppc mpc824x sandpoint
1025
wdenk265d2172004-07-10 22:35:59 +00001026sbc8240_config: unconfig
1027 @./mkconfig $(@:_config=) ppc mpc824x sbc8240
1028
wdenkd9fce812003-06-28 17:24:46 +00001029SL8245_config: unconfig
1030 @./mkconfig $(@:_config=) ppc mpc824x sl8245
1031
wdenk7ebf7442002-11-02 23:17:16 +00001032utx8245_config: unconfig
1033 @./mkconfig $(@:_config=) ppc mpc824x utx8245
1034
1035#########################################################################
1036## MPC8260 Systems
1037#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001038
wdenk2f0812d2003-10-08 22:45:44 +00001039atc_config: unconfig
1040 @./mkconfig $(@:_config=) ppc mpc8260 atc
1041
wdenk7ebf7442002-11-02 23:17:16 +00001042cogent_mpc8260_config: unconfig
1043 @./mkconfig $(@:_config=) ppc mpc8260 cogent
1044
1045CPU86_config \
1046CPU86_ROMBOOT_config: unconfig
1047 @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86
1048 @cd ./include ; \
1049 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1050 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1051 echo "... booting from 8-bit flash" ; \
1052 else \
1053 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1054 echo "... booting from 64-bit flash" ; \
1055 fi; \
1056 echo "export CONFIG_BOOT_ROM" >> config.mk;
1057
wdenk6d3c6d12005-04-03 22:35:21 +00001058CPU87_config \
1059CPU87_ROMBOOT_config: unconfig
1060 @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu87
1061 @cd ./include ; \
1062 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1063 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1064 echo "... booting from 8-bit flash" ; \
1065 else \
1066 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1067 echo "... booting from 64-bit flash" ; \
1068 fi; \
1069 echo "export CONFIG_BOOT_ROM" >> config.mk;
1070
Wolfgang Denk8dd4d332005-08-06 01:42:58 +02001071ep8248_config \
1072ep8248E_config : unconfig
1073 @./mkconfig ep8248 ppc mpc8260 ep8248
1074
wdenk7ebf7442002-11-02 23:17:16 +00001075ep8260_config: unconfig
1076 @./mkconfig $(@:_config=) ppc mpc8260 ep8260
1077
1078gw8260_config: unconfig
1079 @./mkconfig $(@:_config=) ppc mpc8260 gw8260
1080
1081hymod_config: unconfig
1082 @./mkconfig $(@:_config=) ppc mpc8260 hymod
1083
wdenka7316b02005-05-12 22:48:09 +00001084IDS8247_config: unconfig
1085 @./mkconfig $(@:_config=) ppc mpc8260 ids8247
1086
wdenk7ebf7442002-11-02 23:17:16 +00001087IPHASE4539_config: unconfig
1088 @./mkconfig $(@:_config=) ppc mpc8260 iphase4539
1089
wdenk76dd6c72004-06-09 14:47:54 +00001090ISPAN_config \
1091ISPAN_REVB_config: unconfig
1092 @if [ "$(findstring _REVB_,$@)" ] ; then \
1093 echo "#define CFG_REV_B" > include/config.h ; \
1094 fi
1095 @./mkconfig -a ISPAN ppc mpc8260 ispan
1096
wdenk3902d702004-04-15 18:22:41 +00001097MPC8260ADS_config \
wdenk874c6752005-04-03 23:22:21 +00001098MPC8260ADS_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001099MPC8260ADS_33MHz_config \
wdenk874c6752005-04-03 23:22:21 +00001100MPC8260ADS_33MHz_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001101MPC8260ADS_40MHz_config \
wdenk874c6752005-04-03 23:22:21 +00001102MPC8260ADS_40MHz_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001103MPC8272ADS_config \
wdenk874c6752005-04-03 23:22:21 +00001104MPC8272ADS_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001105PQ2FADS_config \
wdenk874c6752005-04-03 23:22:21 +00001106PQ2FADS_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001107PQ2FADS-VR_config \
wdenk874c6752005-04-03 23:22:21 +00001108PQ2FADS-VR_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001109PQ2FADS-ZU_config \
wdenk874c6752005-04-03 23:22:21 +00001110PQ2FADS-ZU_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001111PQ2FADS-ZU_66MHz_config \
wdenk874c6752005-04-03 23:22:21 +00001112PQ2FADS-ZU_66MHz_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001113 : unconfig
1114 $(if $(findstring PQ2FADS,$@), \
1115 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > include/config.h, \
1116 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > include/config.h)
1117 $(if $(findstring MHz,$@), \
1118 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> include/config.h, \
1119 $(if $(findstring VR,$@), \
1120 @echo "#define CONFIG_8260_CLKIN 66000000" >> include/config.h))
wdenk874c6752005-04-03 23:22:21 +00001121 @[ -z "$(findstring lowboot_,$@)" ] || \
1122 { echo "TEXT_BASE = 0xFF800000" >board/mpc8260ads/config.tmp ; \
1123 echo "... with lowboot configuration" ; \
1124 }
wdenk3902d702004-04-15 18:22:41 +00001125 @./mkconfig -a MPC8260ADS ppc mpc8260 mpc8260ads
wdenk7ebf7442002-11-02 23:17:16 +00001126
wdenkb666c8f2003-03-06 00:58:30 +00001127MPC8266ADS_config: unconfig
1128 @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads
1129
wdenkc12081a2004-03-23 20:18:25 +00001130# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk4b57dcc2003-03-25 18:06:06 +00001131PM825_config \
wdenkc12081a2004-03-23 20:18:25 +00001132PM825_ROMBOOT_config \
1133PM825_BIGFLASH_config \
1134PM825_ROMBOOT_BIGFLASH_config \
1135PM826_config \
1136PM826_ROMBOOT_config \
1137PM826_BIGFLASH_config \
1138PM826_ROMBOOT_BIGFLASH_config: unconfig
1139 @if [ "$(findstring PM825_,$@)" ] ; then \
1140 echo "#define CONFIG_PCI" >include/config.h ; \
1141 else \
1142 >include/config.h ; \
1143 fi
1144 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
wdenk4b57dcc2003-03-25 18:06:06 +00001145 echo "... booting from 8-bit flash" ; \
wdenkc12081a2004-03-23 20:18:25 +00001146 echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
1147 echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
1148 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1149 echo "... with 32 MB Flash" ; \
1150 echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
1151 fi; \
wdenk4b57dcc2003-03-25 18:06:06 +00001152 else \
wdenk4b57dcc2003-03-25 18:06:06 +00001153 echo "... booting from 64-bit flash" ; \
wdenkc12081a2004-03-23 20:18:25 +00001154 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1155 echo "... with 32 MB Flash" ; \
1156 echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
1157 echo "TEXT_BASE = 0x40000000" >board/pm826/config.tmp ; \
1158 else \
1159 echo "TEXT_BASE = 0xFF000000" >board/pm826/config.tmp ; \
1160 fi; \
1161 fi
1162 @./mkconfig -a PM826 ppc mpc8260 pm826
wdenk4b57dcc2003-03-25 18:06:06 +00001163
wdenkc12081a2004-03-23 20:18:25 +00001164PM828_config \
1165PM828_PCI_config \
1166PM828_ROMBOOT_config \
1167PM828_ROMBOOT_PCI_config: unconfig
1168 @if [ -z "$(findstring _PCI_,$@)" ] ; then \
1169 echo "#define CONFIG_PCI" >>include/config.h ; \
1170 echo "... with PCI enabled" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001171 else \
wdenkc12081a2004-03-23 20:18:25 +00001172 >include/config.h ; \
1173 fi
1174 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1175 echo "... booting from 8-bit flash" ; \
1176 echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
1177 echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
1178 fi
1179 @./mkconfig -a PM828 ppc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +00001180
1181ppmc8260_config: unconfig
1182 @./mkconfig $(@:_config=) ppc mpc8260 ppmc8260
1183
wdenkbc3202a2005-04-03 23:11:38 +00001184Rattler8248_config \
1185Rattler_config: unconfig
1186 $(if $(findstring 8248,$@), \
1187 @echo "#define CONFIG_MPC8248" > include/config.h)
1188 @./mkconfig -a Rattler ppc mpc8260 rattler
1189
wdenk7ebf7442002-11-02 23:17:16 +00001190RPXsuper_config: unconfig
1191 @./mkconfig $(@:_config=) ppc mpc8260 rpxsuper
1192
1193rsdproto_config: unconfig
1194 @./mkconfig $(@:_config=) ppc mpc8260 rsdproto
1195
1196sacsng_config: unconfig
1197 @./mkconfig $(@:_config=) ppc mpc8260 sacsng
1198
1199sbc8260_config: unconfig
1200 @./mkconfig $(@:_config=) ppc mpc8260 sbc8260
1201
1202SCM_config: unconfig
1203 @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens
1204
wdenk874ac262003-07-24 23:38:38 +00001205TQM8255_AA_config \
1206TQM8260_AA_config \
1207TQM8260_AB_config \
1208TQM8260_AC_config \
1209TQM8260_AD_config \
1210TQM8260_AE_config \
1211TQM8260_AF_config \
1212TQM8260_AG_config \
1213TQM8260_AH_config \
1214TQM8265_AA_config: unconfig
1215 @case "$@" in \
1216 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
1217 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
1218 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1219 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1220 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1221 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
1222 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1223 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
1224 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
1225 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
1226 esac; \
1227 >include/config.h ; \
1228 if [ "$${CTYPE}" != "MPC8260" ] ; then \
1229 echo "#define CONFIG_$${CTYPE}" >>include/config.h ; \
1230 fi; \
1231 echo "#define CONFIG_$${CFREQ}MHz" >>include/config.h ; \
1232 echo "... with $${CFREQ}MHz system clock" ; \
1233 if [ "$${CACHE}" == "yes" ] ; then \
wdenk7ebf7442002-11-02 23:17:16 +00001234 echo "#define CONFIG_L2_CACHE" >>include/config.h ; \
wdenk874ac262003-07-24 23:38:38 +00001235 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001236 else \
1237 echo "#undef CONFIG_L2_CACHE" >>include/config.h ; \
1238 echo "... without L2 Cache support" ; \
wdenk874ac262003-07-24 23:38:38 +00001239 fi; \
1240 if [ "$${BMODE}" == "60x" ] ; then \
1241 echo "#define CONFIG_BUSMODE_60x" >>include/config.h ; \
1242 echo "... with 60x Bus Mode" ; \
1243 else \
1244 echo "#undef CONFIG_BUSMODE_60x" >>include/config.h ; \
1245 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001246 fi
wdenkc08f1582003-04-27 22:52:51 +00001247 @./mkconfig -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +00001248
wdenkc28149c2005-05-30 23:55:42 +00001249VoVPN-GW_66MHz_config \
1250VoVPN-GW_100MHz_config: unconfig
1251 @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > include/config.h
1252 @./mkconfig -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
1253
wdenk2f0812d2003-10-08 22:45:44 +00001254ZPC1900_config: unconfig
1255 @./mkconfig $(@:_config=) ppc mpc8260 zpc1900
wdenk541a76d2003-05-03 15:50:43 +00001256
wdenkabf7a7c2003-12-08 01:34:36 +00001257#========================================================================
1258# M68K
1259#========================================================================
1260#########################################################################
1261## Coldfire
1262#########################################################################
1263
Wolfgang Denkaaa7c002005-12-12 16:06:05 +01001264cobra5272_config : unconfig
1265 @./mkconfig $(@:_config=) m68k mcf52x2 cobra5272
1266
wdenkabf7a7c2003-12-08 01:34:36 +00001267M5272C3_config : unconfig
wdenke65527f2004-02-12 00:47:09 +00001268 @./mkconfig $(@:_config=) m68k mcf52x2 m5272c3
wdenkabf7a7c2003-12-08 01:34:36 +00001269
1270M5282EVB_config : unconfig
wdenke65527f2004-02-12 00:47:09 +00001271 @./mkconfig $(@:_config=) m68k mcf52x2 m5282evb
wdenkabf7a7c2003-12-08 01:34:36 +00001272
stroese05b88912004-12-16 18:44:40 +00001273TASREG_config : unconfig
1274 @./mkconfig $(@:_config=) m68k mcf52x2 tasreg esd
1275
wdenk7ebf7442002-11-02 23:17:16 +00001276#########################################################################
Eran Liberty9095d4a2005-07-28 10:08:46 -05001277## MPC83xx Systems
1278#########################################################################
1279
1280MPC8349ADS_config: unconfig
1281 @./mkconfig $(@:_config=) ppc mpc83xx mpc8349ads
1282
Marian Balakowicz513b4a12005-10-11 19:09:42 +02001283TQM834x_config: unconfig
1284 @./mkconfig $(@:_config=) ppc mpc83xx tqm834x
1285
Eran Liberty9095d4a2005-07-28 10:08:46 -05001286#########################################################################
wdenk9c53f402003-10-15 23:53:47 +00001287## MPC85xx Systems
1288#########################################################################
1289
wdenk13eb2212004-07-09 23:27:13 +00001290MPC8540ADS_config: unconfig
wdenk9c53f402003-10-15 23:53:47 +00001291 @./mkconfig $(@:_config=) ppc mpc85xx mpc8540ads
1292
Lunsheng Wang61e61952005-07-29 10:20:29 -05001293MPC8540EVAL_config \
1294MPC8540EVAL_33_config \
1295MPC8540EVAL_66_config \
1296MPC8540EVAL_33_slave_config \
1297MPC8540EVAL_66_slave_config: unconfig
1298 @echo "" >include/config.h ; \
1299 if [ "$(findstring _33_,$@)" ] ; then \
1300 echo -n "... 33 MHz PCI" ; \
1301 else \
1302 echo "#define CONFIG_SYSCLK_66M" >>include/config.h ; \
1303 echo -n "... 66 MHz PCI" ; \
1304 fi ; \
1305 if [ "$(findstring _slave_,$@)" ] ; then \
1306 echo "#define CONFIG_PCI_SLAVE" >>include/config.h ; \
1307 echo " slave" ; \
1308 else \
1309 echo " host" ; \
1310 fi
1311 @./mkconfig -a MPC8540EVAL ppc mpc85xx mpc8540eval
1312
wdenk13eb2212004-07-09 23:27:13 +00001313MPC8560ADS_config: unconfig
wdenk9c53f402003-10-15 23:53:47 +00001314 @./mkconfig $(@:_config=) ppc mpc85xx mpc8560ads
1315
wdenk0aeb8532004-10-10 21:21:55 +00001316MPC8541CDS_config: unconfig
1317 @./mkconfig $(@:_config=) ppc mpc85xx mpc8541cds cds
1318
Jon Loeliger77a4f6e2005-07-25 14:05:07 -05001319MPC8548CDS_config: unconfig
1320 @./mkconfig $(@:_config=) ppc mpc85xx mpc8548cds cds
1321
wdenk0aeb8532004-10-10 21:21:55 +00001322MPC8555CDS_config: unconfig
1323 @./mkconfig $(@:_config=) ppc mpc85xx mpc8555cds cds
wdenk78924a72004-04-18 21:45:42 +00001324
wdenk6d3c6d12005-04-03 22:35:21 +00001325PM854_config: unconfig
1326 @./mkconfig $(@:_config=) ppc mpc85xx pm854
1327
Wolfgang Denk9733b3c2005-08-05 12:19:30 +02001328PM856_config: unconfig
1329 @./mkconfig $(@:_config=) ppc mpc85xx pm856
1330
wdenkadf849c2004-10-10 22:44:24 +00001331sbc8540_config \
1332sbc8540_33_config \
1333sbc8540_66_config: unconfig
1334 @if [ "$(findstring _66_,$@)" ] ; then \
1335 echo "#define CONFIG_PCI_66" >>include/config.h ; \
1336 echo "... 66 MHz PCI" ; \
1337 else \
1338 >include/config.h ; \
1339 echo "... 33 MHz PCI" ; \
1340 fi
1341 @./mkconfig -a SBC8540 ppc mpc85xx sbc8560
1342
wdenk265d2172004-07-10 22:35:59 +00001343sbc8560_config \
1344sbc8560_33_config \
1345sbc8560_66_config: unconfig
wdenk3203c8f2004-07-10 21:45:47 +00001346 @if [ "$(findstring _66_,$@)" ] ; then \
wdenkadf849c2004-10-10 22:44:24 +00001347 echo "#define CONFIG_PCI_66" >>include/config.h ; \
wdenk3203c8f2004-07-10 21:45:47 +00001348 echo "... 66 MHz PCI" ; \
1349 else \
1350 >include/config.h ; \
1351 echo "... 33 MHz PCI" ; \
1352 fi
wdenk265d2172004-07-10 22:35:59 +00001353 @./mkconfig -a sbc8560 ppc mpc85xx sbc8560
wdenk3203c8f2004-07-10 21:45:47 +00001354
wdenk0aeb8532004-10-10 21:21:55 +00001355stxgp3_config: unconfig
1356 @./mkconfig $(@:_config=) ppc mpc85xx stxgp3
1357
Stefan Roese09554022005-11-30 13:06:40 +01001358TQM8540_config \
1359TQM8541_config \
1360TQM8555_config \
1361TQM8560_config: unconfig
Wolfgang Denk3bd697b2005-12-06 15:02:31 +01001362 @CTYPE=$(subst TQM,,$(@:_config=)); \
Stefan Roese09554022005-11-30 13:06:40 +01001363 >include/config.h ; \
1364 echo "... TQM"$${CTYPE}; \
1365 echo "#define CONFIG_MPC$${CTYPE}">>include/config.h; \
1366 echo "#define CONFIG_TQM$${CTYPE}">>include/config.h; \
1367 echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>include/config.h; \
1368 echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>include/config.h; \
1369 echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>include/config.h
1370 @./mkconfig -a TQM85xx ppc mpc85xx tqm85xx
wdenk8e5263c2005-04-05 16:26:47 +00001371
wdenk9c53f402003-10-15 23:53:47 +00001372#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001373## 74xx/7xx Systems
1374#########################################################################
1375
wdenk452cfd62002-11-19 11:04:11 +00001376AmigaOneG3SE_config: unconfig
1377 @./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
1378
wdenk9f837932003-10-09 19:00:25 +00001379BAB7xx_config: unconfig
1380 @./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec
1381
stroese05b88912004-12-16 18:44:40 +00001382CPCI750_config: unconfig
1383 @./mkconfig CPCI750 ppc 74xx_7xx cpci750 esd
1384
wdenk5da7f2f2004-01-03 00:43:19 +00001385DB64360_config: unconfig
1386 @./mkconfig DB64360 ppc 74xx_7xx db64360 Marvell
1387
1388DB64460_config: unconfig
1389 @./mkconfig DB64460 ppc 74xx_7xx db64460 Marvell
1390
wdenk9f837932003-10-09 19:00:25 +00001391ELPPC_config: unconfig
1392 @./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec
1393
wdenk7ebf7442002-11-02 23:17:16 +00001394EVB64260_config \
1395EVB64260_750CX_config: unconfig
1396 @./mkconfig EVB64260 ppc 74xx_7xx evb64260
1397
wdenk9f837932003-10-09 19:00:25 +00001398P3G4_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +00001399 @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
1400
1401PCIPPC2_config \
1402PCIPPC6_config: unconfig
1403 @./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2
1404
wdenk9f837932003-10-09 19:00:25 +00001405ZUMA_config: unconfig
wdenk232fe0b2003-09-02 22:48:03 +00001406 @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
1407
wdenk7ebf7442002-11-02 23:17:16 +00001408#========================================================================
1409# ARM
1410#========================================================================
1411#########################################################################
1412## StrongARM Systems
1413#########################################################################
1414
wdenke5cda752004-04-15 23:23:39 +00001415assabet_config : unconfig
1416 @./mkconfig $(@:_config=) arm sa1100 assabet
1417
wdenk7ebf7442002-11-02 23:17:16 +00001418dnp1110_config : unconfig
1419 @./mkconfig $(@:_config=) arm sa1100 dnp1110
1420
wdenked2ac4b2004-03-14 18:23:55 +00001421gcplus_config : unconfig
1422 @./mkconfig $(@:_config=) arm sa1100 gcplus
1423
1424lart_config : unconfig
1425 @./mkconfig $(@:_config=) arm sa1100 lart
1426
wdenk7ebf7442002-11-02 23:17:16 +00001427shannon_config : unconfig
1428 @./mkconfig $(@:_config=) arm sa1100 shannon
1429
1430#########################################################################
wdenkf6f96f72003-07-15 20:04:06 +00001431## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00001432#########################################################################
1433
wdenkb6b2f0e2003-09-17 22:48:07 +00001434xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk4a5c8a72003-03-06 00:02:04 +00001435
wdenk920e91b2004-06-09 15:25:53 +00001436xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
wdenke97d3d92004-02-23 22:22:28 +00001437
wdenke3a06802004-06-06 23:13:55 +00001438xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1439
wdenk91fcc952005-04-06 13:52:31 +00001440at91rm9200dk_config : unconfig
1441 @./mkconfig $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
1442
1443cmc_pu2_config : unconfig
1444 @./mkconfig $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
1445
Wolfgang Denke35470b2005-10-05 02:00:09 +02001446csb637_config : unconfig
1447 @./mkconfig $(@:_config=) arm arm920t csb637 NULL at91rm9200
1448
Wolfgang Denk756bfd72005-09-26 01:14:38 +02001449mp2usb_config : unconfig
1450 @./mkconfig $(@:_config=) arm arm920t mp2usb NULL at91rm9200
1451
Wolfgang Denkadf20a12005-09-25 01:48:28 +02001452
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +02001453########################################################################
1454## ARM Integrator boards - see doc/README-integrator for more info.
1455integratorap_config \
1456ap_config \
1457ap966_config \
1458ap922_config \
1459ap922_XA10_config \
1460ap7_config \
1461ap720t_config \
1462ap920t_config \
1463ap926ejs_config \
1464ap946es_config: unconfig
Wolfgang Denk88bd7432005-10-09 00:22:48 +02001465 @board/integratorap/split_by_variant.sh $@
wdenk4989f872004-03-14 15:06:13 +00001466
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +02001467integratorcp_config \
1468cp_config \
1469cp920t_config \
1470cp926ejs_config \
1471cp946es_config \
1472cp1136_config \
1473cp966_config \
1474cp922_config \
1475cp922_XA10_config \
1476cp1026_config: unconfig
Wolfgang Denk88bd7432005-10-09 00:22:48 +02001477 @board/integratorcp/split_by_variant.sh $@
wdenkb3a4a702004-12-10 11:40:40 +00001478
Wolfgang Denk9da240c2005-10-05 00:19:34 +02001479kb9202_config : unconfig
1480 @./mkconfig $(@:_config=) arm arm920t kb9202 NULL at91rm9200
1481
wdenk37bdfdf2004-06-10 21:55:33 +00001482lpd7a400_config \
1483lpd7a404_config: unconfig
wdenk9f664dd2004-06-09 21:50:45 +00001484 @./mkconfig $(@:_config=) arm lh7a40x lpd7a40x
wdenk4989f872004-03-14 15:06:13 +00001485
wdenk7ac16102004-08-01 22:48:16 +00001486mx1ads_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001487 @./mkconfig $(@:_config=) arm arm920t mx1ads NULL imx
wdenk7ac16102004-08-01 22:48:16 +00001488
1489mx1fs2_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001490 @./mkconfig $(@:_config=) arm arm920t mx1fs2 NULL imx
wdenk7ac16102004-08-01 22:48:16 +00001491
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001492netstar_32_config \
1493netstar_config: unconfig
1494 @if [ "$(findstring _32_,$@)" ] ; then \
1495 echo "... 32MB SDRAM" ; \
1496 echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>include/config.h ; \
1497 else \
1498 echo "... 64MB SDRAM" ; \
1499 echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>include/config.h ; \
1500 fi
1501 @./mkconfig -a netstar arm arm925t netstar
1502
wdenkf6f96f72003-07-15 20:04:06 +00001503omap1510inn_config : unconfig
1504 @./mkconfig $(@:_config=) arm arm925t omap1510inn
1505
wdenk914be132004-06-08 00:22:43 +00001506omap5912osk_config : unconfig
1507 @./mkconfig $(@:_config=) arm arm926ejs omap5912osk
1508
wdenke97d3d92004-02-23 22:22:28 +00001509omap1610inn_config \
1510omap1610inn_cs0boot_config \
1511omap1610inn_cs3boot_config \
wdenk920e91b2004-06-09 15:25:53 +00001512omap1610inn_cs_autoboot_config \
wdenke97d3d92004-02-23 22:22:28 +00001513omap1610h2_config \
1514omap1610h2_cs0boot_config \
wdenk920e91b2004-06-09 15:25:53 +00001515omap1610h2_cs3boot_config \
1516omap1610h2_cs_autoboot_config: unconfig
wdenke97d3d92004-02-23 22:22:28 +00001517 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
1518 echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
wdenkd3602132004-03-25 15:14:43 +00001519 echo "... configured for CS0 boot"; \
wdenk920e91b2004-06-09 15:25:53 +00001520 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
1521 echo "#define CONFIG_CS_AUTOBOOT" >> ./include/config.h ; \
1522 echo "... configured for CS_AUTO boot"; \
wdenke97d3d92004-02-23 22:22:28 +00001523 else \
1524 echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
wdenkd3602132004-03-25 15:14:43 +00001525 echo "... configured for CS3 boot"; \
wdenke97d3d92004-02-23 22:22:28 +00001526 fi;
1527 @./mkconfig -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn
wdenk7eaacc52003-08-29 22:00:43 +00001528
wdenke3a06802004-06-06 23:13:55 +00001529omap730p2_config \
1530omap730p2_cs0boot_config \
1531omap730p2_cs3boot_config : unconfig
1532 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
1533 echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
1534 echo "... configured for CS0 boot"; \
1535 else \
1536 echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
1537 echo "... configured for CS3 boot"; \
1538 fi;
1539 @./mkconfig -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2
1540
wdenk7ac16102004-08-01 22:48:16 +00001541scb9328_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001542 @./mkconfig $(@:_config=) arm arm920t scb9328 NULL imx
wdenk7ac16102004-08-01 22:48:16 +00001543
wdenk7ebf7442002-11-02 23:17:16 +00001544smdk2400_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001545 @./mkconfig $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001546
1547smdk2410_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001548 @./mkconfig $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001549
wdenk9f664dd2004-06-09 21:50:45 +00001550SX1_config : unconfig
1551 @./mkconfig $(@:_config=) arm arm925t sx1
1552
wdenk236d3fc2003-12-20 22:45:10 +00001553# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk4a5c8a72003-03-06 00:02:04 +00001554trab_config \
wdenkb6b2f0e2003-09-17 22:48:07 +00001555trab_bigram_config \
1556trab_bigflash_config \
wdenkf6a6ac12003-09-17 15:10:32 +00001557trab_old_config: unconfig
wdenk4a5c8a72003-03-06 00:02:04 +00001558 @ >include/config.h
wdenkb6b2f0e2003-09-17 22:48:07 +00001559 @[ -z "$(findstring _bigram,$@)" ] || \
wdenk236d3fc2003-12-20 22:45:10 +00001560 { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
1561 echo "#define CONFIG_RAM_32MB" >>include/config.h ; \
wdenkb6b2f0e2003-09-17 22:48:07 +00001562 echo "... with 8 MB Flash, 32 MB RAM" ; \
1563 }
1564 @[ -z "$(findstring _bigflash,$@)" ] || \
wdenk236d3fc2003-12-20 22:45:10 +00001565 { echo "#define CONFIG_FLASH_16MB" >>include/config.h ; \
1566 echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
wdenkb6b2f0e2003-09-17 22:48:07 +00001567 echo "... with 16 MB Flash, 16 MB RAM" ; \
wdenkc0aa5c52003-12-06 19:49:23 +00001568 echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
wdenkb6b2f0e2003-09-17 22:48:07 +00001569 }
wdenkf6a6ac12003-09-17 15:10:32 +00001570 @[ -z "$(findstring _old,$@)" ] || \
wdenk236d3fc2003-12-20 22:45:10 +00001571 { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
1572 echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
1573 echo "... with 8 MB Flash, 16 MB RAM" ; \
wdenkc0aa5c52003-12-06 19:49:23 +00001574 echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
wdenk4a5c8a72003-03-06 00:02:04 +00001575 }
wdenkf8e9a232004-10-09 22:21:29 +00001576 @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001577
wdenk1fe2c702003-03-06 21:55:29 +00001578VCMA9_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001579 @./mkconfig $(@:_config=) arm arm920t vcma9 mpl s3c24x0
wdenk1fe2c702003-03-06 21:55:29 +00001580
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +02001581#========================================================================
1582# ARM supplied Versatile development boards
1583#========================================================================
1584versatile_config \
1585versatileab_config \
1586versatilepb_config : unconfig
Wolfgang Denk88bd7432005-10-09 00:22:48 +02001587 @board/versatile/split_by_variant.sh $@
wdenkb98ac282004-02-24 00:16:43 +00001588
wdenke085e5b2005-04-05 23:32:21 +00001589voiceblue_smallflash_config \
1590voiceblue_config: unconfig
1591 @if [ "$(findstring _smallflash_,$@)" ] ; then \
1592 echo "... boot from lower flash bank" ; \
1593 echo "#define VOICEBLUE_SMALL_FLASH" >>include/config.h ; \
1594 echo "VOICEBLUE_SMALL_FLASH=y" >board/voiceblue/config.tmp ; \
1595 else \
1596 echo "... boot from upper flash bank" ; \
1597 >include/config.h ; \
1598 echo "VOICEBLUE_SMALL_FLASH=n" >board/voiceblue/config.tmp ; \
1599 fi
1600 @./mkconfig -a voiceblue arm arm925t voiceblue
1601
wdenk62cb5cf2005-05-19 22:46:33 +00001602cm4008_config : unconfig
1603 @./mkconfig $(@:_config=) arm arm920t cm4008 NULL ks8695
1604
1605cm41xx_config : unconfig
1606 @./mkconfig $(@:_config=) arm arm920t cm41xx NULL ks8695
1607
wdenkb98ac282004-02-24 00:16:43 +00001608#########################################################################
1609## S3C44B0 Systems
1610#########################################################################
1611
1612B2_config : unconfig
1613 @./mkconfig $(@:_config=) arm s3c44b0 B2 dave
1614
wdenk7ebf7442002-11-02 23:17:16 +00001615#########################################################################
wdenk9f664dd2004-06-09 21:50:45 +00001616## ARM720T Systems
1617#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001618
Wolfgang Denk4dc11462005-09-26 01:06:33 +02001619armadillo_config: unconfig
1620 @./mkconfig $(@:_config=) arm arm720t armadillo
1621
wdenk7ebf7442002-11-02 23:17:16 +00001622ep7312_config : unconfig
1623 @./mkconfig $(@:_config=) arm arm720t ep7312
1624
wdenk9f664dd2004-06-09 21:50:45 +00001625impa7_config : unconfig
1626 @./mkconfig $(@:_config=) arm arm720t impa7
1627
wdenk2ebee312004-02-23 19:30:57 +00001628modnet50_config : unconfig
1629 @./mkconfig $(@:_config=) arm arm720t modnet50
1630
wdenkf2140d52004-07-01 16:30:44 +00001631evb4510_config : unconfig
1632 @./mkconfig $(@:_config=) arm arm720t evb4510
1633
wdenk7ebf7442002-11-02 23:17:16 +00001634#########################################################################
wdenk4a5c8a72003-03-06 00:02:04 +00001635## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00001636#########################################################################
1637
wdenk2a831612005-04-06 00:04:16 +00001638adsvix_config : unconfig
1639 @./mkconfig $(@:_config=) arm pxa adsvix
1640
wdenkb5bb1392004-07-10 23:11:10 +00001641cerf250_config : unconfig
1642 @./mkconfig $(@:_config=) arm pxa cerf250
1643
wdenk7ebf7442002-11-02 23:17:16 +00001644cradle_config : unconfig
wdenk57b2d802003-06-27 21:31:46 +00001645 @./mkconfig $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00001646
Markus Klotzbücher20e3b322006-02-20 16:37:37 +01001647delta_config :
1648 @./mkconfig $(@:_config=) arm pxa delta
1649
wdenk7ebf7442002-11-02 23:17:16 +00001650csb226_config : unconfig
wdenk0463e042003-05-23 12:36:20 +00001651 @./mkconfig $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00001652
wdenk4a5c8a72003-03-06 00:02:04 +00001653innokom_config : unconfig
wdenk0463e042003-05-23 12:36:20 +00001654 @./mkconfig $(@:_config=) arm pxa innokom
wdenk4a5c8a72003-03-06 00:02:04 +00001655
wdenkbd1575f2003-10-14 19:43:55 +00001656ixdp425_config : unconfig
1657 @./mkconfig $(@:_config=) arm ixp ixdp425
1658
wdenk4a5c8a72003-03-06 00:02:04 +00001659lubbock_config : unconfig
wdenk0463e042003-05-23 12:36:20 +00001660 @./mkconfig $(@:_config=) arm pxa lubbock
wdenk4a5c8a72003-03-06 00:02:04 +00001661
wdenk88e72a32003-06-19 23:04:19 +00001662logodl_config : unconfig
1663 @./mkconfig $(@:_config=) arm pxa logodl
1664
Wolfgang Denk27a5b0b2005-10-13 01:45:54 +02001665pxa255_idp_config: unconfig
1666 @./mkconfig $(@:_config=) arm pxa pxa255_idp
1667
wdenkb02744a2003-04-05 00:53:31 +00001668wepep250_config : unconfig
wdenk0463e042003-05-23 12:36:20 +00001669 @./mkconfig $(@:_config=) arm pxa wepep250
wdenkb02744a2003-04-05 00:53:31 +00001670
wdenkfa89d7c2004-09-28 16:44:41 +00001671xaeniax_config : unconfig
1672 @./mkconfig $(@:_config=) arm pxa xaeniax
1673
wdenkc12081a2004-03-23 20:18:25 +00001674xm250_config : unconfig
1675 @./mkconfig $(@:_config=) arm pxa xm250
1676
wdenk51108172004-06-09 15:37:23 +00001677xsengine_config : unconfig
1678 @./mkconfig $(@:_config=) arm pxa xsengine
1679
Markus Klotzbücher21e69a02006-02-07 20:04:48 +01001680zylonite_config :
1681 @./mkconfig $(@:_config=) arm pxa zylonite
1682
wdenkf8062712005-01-09 23:16:25 +00001683#########################################################################
1684## ARM1136 Systems
1685#########################################################################
1686omap2420h4_config : unconfig
1687 @./mkconfig $(@:_config=) arm arm1136 omap2420h4
1688
wdenk591dda52002-11-18 00:14:45 +00001689#========================================================================
1690# i386
1691#========================================================================
1692#########################################################################
wdenk1fe2c702003-03-06 21:55:29 +00001693## AMD SC520 CDP
wdenk591dda52002-11-18 00:14:45 +00001694#########################################################################
1695sc520_cdp_config : unconfig
1696 @./mkconfig $(@:_config=) i386 i386 sc520_cdp
1697
wdenkabda5ca2003-05-31 18:35:21 +00001698sc520_spunk_config : unconfig
1699 @./mkconfig $(@:_config=) i386 i386 sc520_spunk
1700
1701sc520_spunk_rel_config : unconfig
1702 @./mkconfig $(@:_config=) i386 i386 sc520_spunk
1703
wdenk4a5c8a72003-03-06 00:02:04 +00001704#========================================================================
1705# MIPS
1706#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00001707#########################################################################
wdenk4a5c8a72003-03-06 00:02:04 +00001708## MIPS32 4Kc
1709#########################################################################
1710
wdenk5d841732003-08-17 18:55:18 +00001711xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
1712
1713incaip_100MHz_config \
1714incaip_133MHz_config \
1715incaip_150MHz_config \
1716incaip_config: unconfig
1717 @ >include/config.h
1718 @[ -z "$(findstring _100MHz,$@)" ] || \
1719 { echo "#define CPU_CLOCK_RATE 100000000" >>include/config.h ; \
1720 echo "... with 100MHz system clock" ; \
1721 }
1722 @[ -z "$(findstring _133MHz,$@)" ] || \
1723 { echo "#define CPU_CLOCK_RATE 133000000" >>include/config.h ; \
1724 echo "... with 133MHz system clock" ; \
1725 }
1726 @[ -z "$(findstring _150MHz,$@)" ] || \
1727 { echo "#define CPU_CLOCK_RATE 150000000" >>include/config.h ; \
1728 echo "... with 150MHz system clock" ; \
1729 }
1730 @./mkconfig -a $(call xtract_incaip,$@) mips mips incaip
1731
wdenk5401de42004-02-07 01:27:10 +00001732tb0229_config: unconfig
1733 @./mkconfig $(@:_config=) mips mips tb0229
1734
wdenk5d841732003-08-17 18:55:18 +00001735#########################################################################
wdenkcd914452004-05-29 16:53:29 +00001736## MIPS32 AU1X00
1737#########################################################################
1738dbau1000_config : unconfig
1739 @ >include/config.h
1740 @echo "#define CONFIG_DBAU1000 1" >>include/config.h
1741 @./mkconfig -a dbau1x00 mips mips dbau1x00
1742
1743dbau1100_config : unconfig
1744 @ >include/config.h
1745 @echo "#define CONFIG_DBAU1100 1" >>include/config.h
1746 @./mkconfig -a dbau1x00 mips mips dbau1x00
1747
1748dbau1500_config : unconfig
1749 @ >include/config.h
1750 @echo "#define CONFIG_DBAU1500 1" >>include/config.h
1751 @./mkconfig -a dbau1x00 mips mips dbau1x00
1752
wdenk96c7a8c2005-01-09 22:28:56 +00001753dbau1550_config : unconfig
1754 @ >include/config.h
1755 @echo "#define CONFIG_DBAU1550 1" >>include/config.h
1756 @./mkconfig -a dbau1x00 mips mips dbau1x00
1757
1758dbau1550_el_config : unconfig
1759 @ >include/config.h
1760 @echo "#define CONFIG_DBAU1550 1" >>include/config.h
Wolfgang Denk09a4ebb2005-08-08 23:06:32 +02001761 @./mkconfig -a dbau1x00 mips mips dbau1x00
wdenk96c7a8c2005-01-09 22:28:56 +00001762
Wolfgang Denk0cbaf642005-09-25 00:53:22 +02001763pb1000_config : unconfig
1764 @ >include/config.h
1765 @echo "#define CONFIG_PB1000 1" >>include/config.h
1766 @./mkconfig -a pb1x00 mips mips pb1x00
1767
wdenkcd914452004-05-29 16:53:29 +00001768#########################################################################
wdenk5d841732003-08-17 18:55:18 +00001769## MIPS64 5Kc
1770#########################################################################
wdenk4a5c8a72003-03-06 00:02:04 +00001771
wdenkb02744a2003-04-05 00:53:31 +00001772purple_config : unconfig
1773 @./mkconfig $(@:_config=) mips mips purple
wdenk4a5c8a72003-03-06 00:02:04 +00001774
wdenk60164a82003-10-08 23:26:14 +00001775#========================================================================
1776# Nios
1777#========================================================================
1778#########################################################################
1779## Nios32
1780#########################################################################
1781
wdenk3be717f2004-01-03 19:43:48 +00001782DK1C20_safe_32_config \
1783DK1C20_standard_32_config \
wdenk60164a82003-10-08 23:26:14 +00001784DK1C20_config: unconfig
wdenk3be717f2004-01-03 19:43:48 +00001785 @ >include/config.h
1786 @[ -z "$(findstring _safe_32,$@)" ] || \
1787 { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
1788 echo "... NIOS 'safe_32' configuration" ; \
1789 }
1790 @[ -z "$(findstring _standard_32,$@)" ] || \
1791 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1792 echo "... NIOS 'standard_32' configuration" ; \
1793 }
1794 @[ -z "$(findstring DK1C20_config,$@)" ] || \
1795 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1796 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
1797 }
1798 @./mkconfig -a DK1C20 nios nios dk1c20 altera
1799
1800DK1S10_safe_32_config \
1801DK1S10_standard_32_config \
wdenkc0bc2e12004-02-09 23:12:24 +00001802DK1S10_mtx_ldk_20_config \
wdenk3be717f2004-01-03 19:43:48 +00001803DK1S10_config: unconfig
1804 @ >include/config.h
1805 @[ -z "$(findstring _safe_32,$@)" ] || \
1806 { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
1807 echo "... NIOS 'safe_32' configuration" ; \
1808 }
1809 @[ -z "$(findstring _standard_32,$@)" ] || \
1810 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1811 echo "... NIOS 'standard_32' configuration" ; \
1812 }
wdenkc0bc2e12004-02-09 23:12:24 +00001813 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
1814 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>include/config.h ; \
1815 echo "... NIOS 'mtx_ldk_20' configuration" ; \
1816 }
wdenk3be717f2004-01-03 19:43:48 +00001817 @[ -z "$(findstring DK1S10_config,$@)" ] || \
1818 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1819 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
1820 }
1821 @./mkconfig -a DK1S10 nios nios dk1s10 altera
wdenk60164a82003-10-08 23:26:14 +00001822
wdenke28cf632004-03-14 15:20:55 +00001823ADNPESC1_DNPEVA2_base_32_config \
1824ADNPESC1_base_32_config \
1825ADNPESC1_config: unconfig
1826 @ >include/config.h
1827 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
wdenkc35ba4e2004-03-14 22:25:36 +00001828 { echo "#define CONFIG_DNPEVA2 1" >>include/config.h ; \
1829 echo "... DNP/EVA2 configuration" ; \
1830 }
wdenke28cf632004-03-14 15:20:55 +00001831 @[ -z "$(findstring _base_32,$@)" ] || \
wdenkc35ba4e2004-03-14 22:25:36 +00001832 { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
1833 echo "... NIOS 'base_32' configuration" ; \
1834 }
wdenke28cf632004-03-14 15:20:55 +00001835 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
wdenkc35ba4e2004-03-14 22:25:36 +00001836 { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
1837 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
1838 }
wdenke28cf632004-03-14 15:20:55 +00001839 @./mkconfig -a ADNPESC1 nios nios adnpesc1 ssv
1840
wdenkef3386f2004-10-10 21:27:30 +00001841#########################################################################
1842## Nios-II
1843#########################################################################
1844
1845PK1C20_config : unconfig
1846 @./mkconfig PK1C20 nios2 nios2 pk1c20 psyent
1847
1848PCI5441_config : unconfig
1849 @./mkconfig PCI5441 nios2 nios2 pci5441 psyent
wdenk12490652004-04-18 21:13:41 +00001850
1851#========================================================================
1852# MicroBlaze
1853#========================================================================
1854#########################################################################
1855## Microblaze
1856#########################################################################
1857suzaku_config: unconfig
1858 @ >include/config.h
1859 @echo "#define CONFIG_SUZAKU 1" >> include/config.h
1860 @./mkconfig -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
wdenk60164a82003-10-08 23:26:14 +00001861
wdenkb02744a2003-04-05 00:53:31 +00001862#########################################################################
1863#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001864
1865clean:
1866 find . -type f \
1867 \( -name 'core' -o -name '*.bak' -o -name '*~' \
1868 -o -name '*.o' -o -name '*.a' \) -print \
1869 | xargs rm -f
wdenk8dba0502003-03-31 16:34:49 +00001870 rm -f examples/hello_world examples/timer \
wdenkb02744a2003-04-05 00:53:31 +00001871 examples/eepro100_eeprom examples/sched \
wdenkeb8f2fb2005-05-09 10:17:32 +00001872 examples/mem_to_mem_idma2intr examples/82559_eeprom \
1873 examples/test_burst
wdenk7ebf7442002-11-02 23:17:16 +00001874 rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr
wdenka0ebde52004-09-08 22:03:11 +00001875 rm -f tools/mpc86x_clk tools/ncb
wdenk7ebf7442002-11-02 23:17:16 +00001876 rm -f tools/easylogo/easylogo tools/bmp_logo
1877 rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend
wdenk9dfa8d12002-12-08 09:53:23 +00001878 rm -f tools/env/fw_printenv tools/env/fw_setenv
wdenk0893c472003-05-20 14:25:27 +00001879 rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image
Wolfgang Denkfc27b5b2005-08-13 18:36:17 +02001880 rm -f board/trab/trab_fkt board/voiceblue/eeprom
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +02001881 rm -f board/integratorap/u-boot.lds board/integratorcp/u-boot.lds
wdenk7ebf7442002-11-02 23:17:16 +00001882
1883clobber: clean
wdenkaeba06f2004-06-09 17:34:58 +00001884 find . -type f \( -name .depend \
1885 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
1886 -print0 \
1887 | xargs -0 rm -f
Wolfgang Denk4d1d9a32006-02-21 17:33:04 +01001888 rm -f $(OBJS) *.bak tags TAGS include/version_autogenerated.h
wdenk7ebf7442002-11-02 23:17:16 +00001889 rm -fr *.*~
wdenk68005192005-01-09 21:28:15 +00001890 rm -f u-boot u-boot.map u-boot.hex $(ALL)
wdenk9dfa8d12002-12-08 09:53:23 +00001891 rm -f tools/crc32.c tools/environment.c tools/env/crc32.c
wdenkb02744a2003-04-05 00:53:31 +00001892 rm -f tools/inca-swap-bytes cpu/mpc824x/bedbug_603e.c
wdenkbb2d9272003-06-25 22:26:29 +00001893 rm -f include/asm/proc include/asm/arch include/asm
wdenk7ebf7442002-11-02 23:17:16 +00001894
1895mrproper \
1896distclean: clobber unconfig
1897
1898backup:
1899 F=`basename $(TOPDIR)` ; cd .. ; \
1900 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
1901
1902#########################################################################