blob: 516bf2c192d77f31153be9b6342a590f0336541f [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
211System.map: u-boot
212 @$(NM) $< | \
213 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
214 sort > System.map
215
216#########################################################################
217else
218all install u-boot u-boot.srec depend dep:
219 @echo "System not configured - see README" >&2
220 @ exit 1
221endif
222
223#########################################################################
224
225unconfig:
wdenk9c07bf62004-04-10 20:43:50 +0000226 @rm -f include/config.h include/config.mk board/*/config.tmp
wdenk7ebf7442002-11-02 23:17:16 +0000227
228#========================================================================
229# PowerPC
230#========================================================================
wdenk359733b2003-03-31 17:27:09 +0000231
232#########################################################################
233## MPC5xx Systems
234#########################################################################
235
wdenkf1d0ff42005-04-13 23:15:10 +0000236canmb_config: unconfig
237 @./mkconfig -a canmb ppc mpc5xxx canmb
238
wdenk359733b2003-03-31 17:27:09 +0000239cmi_mpc5xx_config: unconfig
240 @./mkconfig $(@:_config=) ppc mpc5xx cmi
241
wdenk634d2f72004-04-15 23:14:49 +0000242PATI_config: unconfig
wdenkbc01dd52004-01-02 16:05:07 +0000243 @./mkconfig $(@:_config=) ppc mpc5xx pati mpl
244
wdenk7ebf7442002-11-02 23:17:16 +0000245#########################################################################
wdenk21136db2003-07-16 21:53:01 +0000246## MPC5xxx Systems
247#########################################################################
wdenk8d414a72005-06-10 10:00:19 +0000248
Wolfgang Denk3863d6b2005-08-12 00:22:49 +0200249aev_config: unconfig
250 @./mkconfig -a aev ppc mpc5xxx tqm5200
251
Stefan Roese99200d22005-08-22 17:51:53 +0200252cpci5200_config: unconfig
253 @./mkconfig -a cpci5200 ppc mpc5xxx cpci5200 esd
254
wdenk8d414a72005-06-10 10:00:19 +0000255hmi1001_config: unconfig
256 @./mkconfig hmi1001 ppc mpc5xxx hmi1001
257
wdenke44b9112004-04-18 23:32:11 +0000258Lite5200_config \
259Lite5200_LOWBOOT_config \
260Lite5200_LOWBOOT08_config \
261icecube_5200_config \
262icecube_5200_LOWBOOT_config \
263icecube_5200_LOWBOOT08_config \
264icecube_5200_DDR_config \
265icecube_5200_DDR_LOWBOOT_config \
266icecube_5200_DDR_LOWBOOT08_config \
267icecube_5100_config: unconfig
wdenk21136db2003-07-16 21:53:01 +0000268 @ >include/config.h
wdenk9c07bf62004-04-10 20:43:50 +0000269 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
270 { if [ "$(findstring DDR,$@)" ] ; \
271 then echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
272 else echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \
273 fi ; \
wdenk4b16c2e2003-11-07 13:42:26 +0000274 echo "... with LOWBOOT configuration" ; \
275 }
276 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
277 { echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
278 echo "... with 8 MB flash only" ; \
wdenk9c07bf62004-04-10 20:43:50 +0000279 echo "... with LOWBOOT configuration" ; \
wdenk4b16c2e2003-11-07 13:42:26 +0000280 }
wdenk236d3fc2003-12-20 22:45:10 +0000281 @[ -z "$(findstring DDR,$@)" ] || \
282 { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
283 echo "... DDR memory revision" ; \
284 }
wdenk1ebf41e2004-01-02 14:00:00 +0000285 @[ -z "$(findstring 5200,$@)" ] || \
286 { echo "#define CONFIG_MPC5200" >>include/config.h ; \
287 echo "... with MPC5200 processor" ; \
288 }
wdenk55618472003-10-28 09:14:21 +0000289 @[ -z "$(findstring 5100,$@)" ] || \
wdenk21136db2003-07-16 21:53:01 +0000290 { echo "#define CONFIG_MGT5100" >>include/config.h ; \
291 echo "... with MGT5100 processor" ; \
292 }
293 @./mkconfig -a IceCube ppc mpc5xxx icecube
294
wdenk4ca32362004-12-16 15:52:40 +0000295inka4x0_config: unconfig
296 @./mkconfig inka4x0 ppc mpc5xxx inka4x0
297
Wolfgang Denk672f2e82005-08-18 01:22:22 +0200298o2dnt_config:
299 @./mkconfig -a o2dnt ppc mpc5xxx o2dnt
300
Stefan Roese99200d22005-08-22 17:51:53 +0200301pf5200_config: unconfig
302 @./mkconfig -a pf5200 ppc mpc5xxx pf5200 esd
303
wdenkda54bc92004-08-04 21:56:49 +0000304PM520_config \
305PM520_DDR_config \
306PM520_ROMBOOT_config \
307PM520_ROMBOOT_DDR_config: unconfig
308 @ >include/config.h
309 @[ -z "$(findstring DDR,$@)" ] || \
310 { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
311 echo "... DDR memory revision" ; \
312 }
313 @[ -z "$(findstring ROMBOOT,$@)" ] || \
314 { echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
315 echo "... booting from 8-bit flash" ; \
316 }
317 @./mkconfig -a PM520 ppc mpc5xxx pm520
318
Wolfgang Denkea055ba2006-02-22 10:25:39 +0100319smmaco4_config: unconfig
320 @./mkconfig -a smmaco4 ppc mpc5xxx tqm5200
Wolfgang Denk2a61ee82006-02-22 01:59:13 +0100321
322spieval_config: unconfig
323 echo "#define CONFIG_CS_AUTOCONF">>include/config.h
324 echo "... with automatic CS configuration"
325 @./mkconfig -a spieval ppc mpc5xxx tqm5200
326
wdenk1ebf41e2004-01-02 14:00:00 +0000327MINI5200_config \
328EVAL5200_config \
329TOP5200_config: unconfig
330 @ echo "#define CONFIG_$(@:_config=) 1" >include/config.h
331 @./mkconfig -a TOP5200 ppc mpc5xxx top5200 emk
332
wdenkcc3f8a92004-07-11 19:17:20 +0000333Total5100_config \
334Total5200_config \
335Total5200_lowboot_config \
336Total5200_Rev2_config \
337Total5200_Rev2_lowboot_config: unconfig
338 @ >include/config.h
339 @[ -z "$(findstring 5100,$@)" ] || \
340 { echo "#define CONFIG_MGT5100" >>include/config.h ; \
341 echo "... with MGT5100 processor" ; \
342 }
343 @[ -z "$(findstring 5200,$@)" ] || \
344 { echo "#define CONFIG_MPC5200" >>include/config.h ; \
345 echo "... with MPC5200 processor" ; \
346 }
347 @[ -n "$(findstring Rev,$@)" ] || \
348 { echo "#define CONFIG_TOTAL5200_REV 1" >>include/config.h ; \
349 echo "... revision 1 board" ; \
350 }
351 @[ -z "$(findstring Rev2_,$@)" ] || \
352 { echo "#define CONFIG_TOTAL5200_REV 2" >>include/config.h ; \
353 echo "... revision 2 board" ; \
354 }
355 @[ -z "$(findstring lowboot_,$@)" ] || \
356 { echo "TEXT_BASE = 0xFE000000" >board/total5200/config.tmp ; \
357 echo "... with lowboot configuration" ; \
358 }
359 @./mkconfig -a Total5200 ppc mpc5xxx total5200
360
Wolfgang Denk4361d522005-08-18 00:06:50 +0200361TQM5200_auto_config \
wdenk64519362004-07-11 17:40:54 +0000362TQM5200_AA_config \
363TQM5200_AB_config \
364TQM5200_AC_config \
365MiniFAP_config: unconfig
366 @ >include/config.h
wdenkda54bc92004-08-04 21:56:49 +0000367 @[ -z "$(findstring MiniFAP,$@)" ] || \
wdenk64519362004-07-11 17:40:54 +0000368 { echo "#define CONFIG_MINIFAP" >>include/config.h ; \
369 echo "#define CONFIG_TQM5200_AC" >>include/config.h ; \
wdenkda54bc92004-08-04 21:56:49 +0000370 echo "... TQM5200_AC on MiniFAP" ; \
wdenk64519362004-07-11 17:40:54 +0000371 }
372 @[ -z "$(findstring AA,$@)" ] || \
373 { echo "#define CONFIG_TQM5200_AA" >>include/config.h ; \
374 echo "... with 4 MB Flash, 16 MB SDRAM, 32 kB EEPROM" ; \
375 }
376 @[ -z "$(findstring AB,$@)" ] || \
377 { echo "#define CONFIG_TQM5200_AB" >>include/config.h ; \
378 echo "... with 64 MB Flash, 64 MB SDRAM, 32 kB EEPROM, 512 kB SRAM" ; \
wdenk79cf7572004-08-28 21:09:14 +0000379 echo "... with Graphics Controller"; \
wdenk64519362004-07-11 17:40:54 +0000380 }
381 @[ -z "$(findstring AC,$@)" ] || \
382 { echo "#define CONFIG_TQM5200_AC" >>include/config.h ; \
383 echo "... with 4 MB Flash, 128 MB SDRAM" ; \
wdenk79cf7572004-08-28 21:09:14 +0000384 echo "... with Graphics Controller"; \
wdenk64519362004-07-11 17:40:54 +0000385 }
wdenkdc130442004-12-12 22:06:17 +0000386 @[ -z "$(findstring auto,$@)" ] || \
387 { echo "#define CONFIG_CS_AUTOCONF" >>include/config.h ; \
388 echo "... with automatic CS configuration" ; \
389 }
wdenk64519362004-07-11 17:40:54 +0000390 @./mkconfig -a TQM5200 ppc mpc5xxx tqm5200
391
wdenk21136db2003-07-16 21:53:01 +0000392#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000393## MPC8xx Systems
394#########################################################################
395
wdenk9f664dd2004-06-09 21:50:45 +0000396Adder_config \
397Adder87x_config \
wdenkec5dc0d2004-07-09 22:51:01 +0000398AdderII_config \
wdenk9f664dd2004-06-09 21:50:45 +0000399 : unconfig
wdenkec5dc0d2004-07-09 22:51:01 +0000400 $(if $(findstring AdderII,$@), \
wdenk9f664dd2004-06-09 21:50:45 +0000401 @echo "#define CONFIG_MPC852T" > include/config.h)
402 @./mkconfig -a Adder ppc mpc8xx adder
403
wdenkad276f22004-01-04 16:28:35 +0000404ADS860_config \
wdenkad276f22004-01-04 16:28:35 +0000405FADS823_config \
406FADS850SAR_config \
407MPC86xADS_config \
wdenka7556b22004-06-06 21:35:06 +0000408MPC885ADS_config \
wdenkad276f22004-01-04 16:28:35 +0000409FADS860T_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000410 @./mkconfig $(@:_config=) ppc mpc8xx fads
411
412AMX860_config : unconfig
413 @./mkconfig $(@:_config=) ppc mpc8xx amx860 westel
414
415c2mon_config: unconfig
416 @./mkconfig $(@:_config=) ppc mpc8xx c2mon
417
418CCM_config: unconfig
419 @./mkconfig $(@:_config=) ppc mpc8xx CCM siemens
420
421cogent_mpc8xx_config: unconfig
422 @./mkconfig $(@:_config=) ppc mpc8xx cogent
423
wdenkef5fe752003-03-12 10:41:04 +0000424ELPT860_config: unconfig
425 @./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX
426
wdenk7ebf7442002-11-02 23:17:16 +0000427ESTEEM192E_config: unconfig
428 @./mkconfig $(@:_config=) ppc mpc8xx esteem192e
429
430ETX094_config : unconfig
431 @./mkconfig $(@:_config=) ppc mpc8xx etx094
432
wdenk7ebf7442002-11-02 23:17:16 +0000433FLAGADM_config: unconfig
434 @./mkconfig $(@:_config=) ppc mpc8xx flagadm
435
wdenk541a76d2003-05-03 15:50:43 +0000436xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
437
438GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000439GEN860T_config: unconfig
wdenk541a76d2003-05-03 15:50:43 +0000440 @ >include/config.h
441 @[ -z "$(findstring _SC,$@)" ] || \
442 { echo "#define CONFIG_SC" >>include/config.h ; \
443 echo "With reduced H/W feature set (SC)..." ; \
444 }
445 @./mkconfig -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000446
447GENIETV_config: unconfig
448 @./mkconfig $(@:_config=) ppc mpc8xx genietv
449
450GTH_config: unconfig
451 @./mkconfig $(@:_config=) ppc mpc8xx gth
452
453hermes_config : unconfig
454 @./mkconfig $(@:_config=) ppc mpc8xx hermes
455
wdenkf602aa02004-03-13 23:29:43 +0000456HMI10_config : unconfig
457 @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
458
wdenk7ebf7442002-11-02 23:17:16 +0000459IAD210_config: unconfig
460 @./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens
461
462xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
463
464ICU862_100MHz_config \
465ICU862_config: unconfig
466 @ >include/config.h
467 @[ -z "$(findstring _100MHz,$@)" ] || \
468 { echo "#define CONFIG_100MHz" >>include/config.h ; \
469 echo "... with 100MHz system clock" ; \
470 }
471 @./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
472
473IP860_config : unconfig
474 @./mkconfig $(@:_config=) ppc mpc8xx ip860
475
476IVML24_256_config \
477IVML24_128_config \
478IVML24_config: unconfig
479 @ >include/config.h
480 @[ -z "$(findstring IVML24_config,$@)" ] || \
481 { echo "#define CONFIG_IVML24_16M" >>include/config.h ; \
482 }
483 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
484 { echo "#define CONFIG_IVML24_32M" >>include/config.h ; \
485 }
486 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
487 { echo "#define CONFIG_IVML24_64M" >>include/config.h ; \
488 }
489 @./mkconfig -a IVML24 ppc mpc8xx ivm
490
491IVMS8_256_config \
492IVMS8_128_config \
493IVMS8_config: unconfig
494 @ >include/config.h
495 @[ -z "$(findstring IVMS8_config,$@)" ] || \
496 { echo "#define CONFIG_IVMS8_16M" >>include/config.h ; \
497 }
498 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
499 { echo "#define CONFIG_IVMS8_32M" >>include/config.h ; \
500 }
501 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
502 { echo "#define CONFIG_IVMS8_64M" >>include/config.h ; \
503 }
504 @./mkconfig -a IVMS8 ppc mpc8xx ivm
505
wdenk56f94be2002-11-05 16:35:14 +0000506KUP4K_config : unconfig
wdenk65faef92004-03-25 19:29:38 +0000507 @./mkconfig $(@:_config=) ppc mpc8xx kup4k kup
508
509KUP4X_config : unconfig
510 @./mkconfig $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000511
wdenk7ebf7442002-11-02 23:17:16 +0000512LANTEC_config : unconfig
513 @./mkconfig $(@:_config=) ppc mpc8xx lantec
514
515lwmon_config: unconfig
516 @./mkconfig $(@:_config=) ppc mpc8xx lwmon
517
518MBX_config \
519MBX860T_config: unconfig
520 @./mkconfig $(@:_config=) ppc mpc8xx mbx8xx
521
522MHPC_config: unconfig
523 @./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec
524
525MVS1_config : unconfig
526 @./mkconfig $(@:_config=) ppc mpc8xx mvs1
527
wdenk70764a32003-06-26 22:04:09 +0000528xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
529
530NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000531NETVIA_config: unconfig
wdenk70764a32003-06-26 22:04:09 +0000532 @ >include/config.h
533 @[ -z "$(findstring NETVIA_config,$@)" ] || \
534 { echo "#define CONFIG_NETVIA_VERSION 1" >>include/config.h ; \
535 echo "... Version 1" ; \
536 }
537 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
538 { echo "#define CONFIG_NETVIA_VERSION 2" >>include/config.h ; \
539 echo "... Version 2" ; \
540 }
541 @./mkconfig -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000542
wdenk6203e402004-04-18 10:13:26 +0000543xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
544
545NETPHONE_V2_config \
wdenk3902d702004-04-15 18:22:41 +0000546NETPHONE_config: unconfig
wdenk6203e402004-04-18 10:13:26 +0000547 @ >include/config.h
548 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
549 { echo "#define CONFIG_NETPHONE_VERSION 1" >>include/config.h ; \
550 }
551 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
552 { echo "#define CONFIG_NETPHONE_VERSION 2" >>include/config.h ; \
553 }
554 @./mkconfig -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk3902d702004-04-15 18:22:41 +0000555
wdenkc4e854f2004-06-07 23:46:25 +0000556xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk3902d702004-04-15 18:22:41 +0000557
wdenkc4e854f2004-06-07 23:46:25 +0000558NETTA_ISDN_6412_SWAPHOOK_config \
559NETTA_ISDN_SWAPHOOK_config \
560NETTA_6412_SWAPHOOK_config \
561NETTA_SWAPHOOK_config \
562NETTA_ISDN_6412_config \
wdenk3902d702004-04-15 18:22:41 +0000563NETTA_ISDN_config \
wdenkc4e854f2004-06-07 23:46:25 +0000564NETTA_6412_config \
wdenk3902d702004-04-15 18:22:41 +0000565NETTA_config: unconfig
566 @ >include/config.h
wdenkc4e854f2004-06-07 23:46:25 +0000567 @[ -z "$(findstring ISDN_,$@)" ] || \
568 { echo "#define CONFIG_NETTA_ISDN 1" >>include/config.h ; \
569 }
570 @[ -n "$(findstring ISDN_,$@)" ] || \
wdenk3902d702004-04-15 18:22:41 +0000571 { echo "#undef CONFIG_NETTA_ISDN" >>include/config.h ; \
572 }
wdenkc4e854f2004-06-07 23:46:25 +0000573 @[ -z "$(findstring 6412_,$@)" ] || \
574 { echo "#define CONFIG_NETTA_6412 1" >>include/config.h ; \
575 }
576 @[ -n "$(findstring 6412_,$@)" ] || \
577 { echo "#undef CONFIG_NETTA_6412" >>include/config.h ; \
578 }
579 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
580 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>include/config.h ; \
581 }
582 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
583 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>include/config.h ; \
wdenk3902d702004-04-15 18:22:41 +0000584 }
585 @./mkconfig -a $(call xtract_NETTA,$@) ppc mpc8xx netta
586
wdenkc4e854f2004-06-07 23:46:25 +0000587xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
588
589NETTA2_V2_config \
590NETTA2_config: unconfig
591 @ >include/config.h
592 @[ -z "$(findstring NETTA2_config,$@)" ] || \
593 { echo "#define CONFIG_NETTA2_VERSION 1" >>include/config.h ; \
594 }
595 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
596 { echo "#define CONFIG_NETTA2_VERSION 2" >>include/config.h ; \
597 }
598 @./mkconfig -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
599
wdenk0bbcbd22004-08-28 22:45:57 +0000600NC650_config: unconfig
601 @./mkconfig $(@:_config=) ppc mpc8xx nc650
602
wdenk7ebf7442002-11-02 23:17:16 +0000603NX823_config: unconfig
604 @./mkconfig $(@:_config=) ppc mpc8xx nx823
605
606pcu_e_config: unconfig
607 @./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens
608
wdenk174e0e52003-12-07 22:27:15 +0000609QS850_config: unconfig
610 @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
611
612QS823_config: unconfig
613 @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
614
615QS860T_config: unconfig
616 @./mkconfig $(@:_config=) ppc mpc8xx qs860t snmc
617
wdenk7d1eb822004-09-29 11:02:56 +0000618quantum_config: unconfig
619 @./mkconfig $(@:_config=) ppc mpc8xx quantum
620
wdenk7ebf7442002-11-02 23:17:16 +0000621R360MPI_config: unconfig
622 @./mkconfig $(@:_config=) ppc mpc8xx r360mpi
623
wdenk4e112c12003-06-03 23:54:09 +0000624RBC823_config: unconfig
625 @./mkconfig $(@:_config=) ppc mpc8xx rbc823
626
wdenk7ebf7442002-11-02 23:17:16 +0000627RPXClassic_config: unconfig
628 @./mkconfig $(@:_config=) ppc mpc8xx RPXClassic
629
630RPXlite_config: unconfig
631 @./mkconfig $(@:_config=) ppc mpc8xx RPXlite
632
wdenkec432742004-06-09 21:04:48 +0000633RPXlite_DW_64_config \
634RPXlite_DW_LCD_config \
635RPXlite_DW_64_LCD_config \
636RPXlite_DW_NVRAM_config \
637RPXlite_DW_NVRAM_64_config \
638RPXlite_DW_NVRAM_LCD_config \
639RPXlite_DW_NVRAM_64_LCD_config \
640RPXlite_DW_config: unconfig
641 @ >include/config.h
642 @[ -z "$(findstring _64,$@)" ] || \
643 { echo "#define RPXlite_64MHz" >>include/config.h ; \
644 echo "... with 64MHz system clock ..."; \
645 }
646 @[ -z "$(findstring _LCD,$@)" ] || \
647 { echo "#define CONFIG_LCD" >>include/config.h ; \
648 echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
649 echo "... with LCD display ..."; \
650 }
651 @[ -z "$(findstring _NVRAM,$@)" ] || \
652 { echo "#define CFG_ENV_IS_IN_NVRAM" >>include/config.h ; \
653 echo "... with ENV in NVRAM ..."; \
654 }
655 @./mkconfig -a RPXlite_DW ppc mpc8xx RPXlite_dw
656
wdenke6466f62003-06-05 19:27:42 +0000657rmu_config: unconfig
658 @./mkconfig $(@:_config=) ppc mpc8xx rmu
659
wdenk7ebf7442002-11-02 23:17:16 +0000660RRvision_config: unconfig
661 @./mkconfig $(@:_config=) ppc mpc8xx RRvision
662
663RRvision_LCD_config: unconfig
664 @echo "#define CONFIG_LCD" >include/config.h
665 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
666 @./mkconfig -a RRvision ppc mpc8xx RRvision
667
668SM850_config : unconfig
669 @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
670
671SPD823TS_config: unconfig
672 @./mkconfig $(@:_config=) ppc mpc8xx spd8xx
673
Wolfgang Denk72fdb6c2005-08-15 15:55:00 +0200674stxxtc_config: unconfig
675 @./mkconfig $(@:_config=) ppc mpc8xx stxxtc
676
wdenkc8434db2003-03-26 06:55:25 +0000677svm_sc8xx_config: unconfig
678 @ >include/config.h
679 @./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx
680
wdenk7ebf7442002-11-02 23:17:16 +0000681SXNI855T_config: unconfig
682 @./mkconfig $(@:_config=) ppc mpc8xx sixnet
683
wdenkb666c8f2003-03-06 00:58:30 +0000684# EMK MPC8xx based modules
685TOP860_config: unconfig
686 @./mkconfig $(@:_config=) ppc mpc8xx top860 emk
687
wdenk7ebf7442002-11-02 23:17:16 +0000688# Play some tricks for configuration selection
wdenkc78bf132004-04-24 23:23:30 +0000689# Only 855 and 860 boards may come with FEC
690# and only 823 boards may have LCD support
691xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +0000692
693FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000694FPS860L_config \
wdenk69141282003-07-07 20:07:54 +0000695NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +0000696TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000697TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +0000698TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000699TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000700TQM860L_config \
wdenk6bd14892003-04-10 11:18:18 +0000701TQM862L_config \
wdenkfb229ae2003-08-07 22:18:11 +0000702TQM823M_config \
wdenkfb229ae2003-08-07 22:18:11 +0000703TQM850M_config \
wdenk69141282003-07-07 20:07:54 +0000704TQM855M_config \
wdenk69141282003-07-07 20:07:54 +0000705TQM860M_config \
wdenk69141282003-07-07 20:07:54 +0000706TQM862M_config \
wdenkb50cde52004-01-24 20:25:54 +0000707TQM866M_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000708 @ >include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000709 @[ -z "$(findstring _LCD,$@)" ] || \
710 { echo "#define CONFIG_LCD" >>include/config.h ; \
wdenkc0d54ae2003-11-25 16:55:19 +0000711 echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000712 echo "... with LCD display" ; \
713 }
714 @./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
715
716TTTech_config: unconfig
717 @echo "#define CONFIG_LCD" >include/config.h
718 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
719 @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
720
wdenk11392db2004-12-19 09:58:11 +0000721uc100_config : unconfig
wdenk51242782004-12-18 22:35:43 +0000722 @./mkconfig $(@:_config=) ppc mpc8xx uc100
723
wdenk2dad91b2003-01-13 23:54:46 +0000724v37_config: unconfig
725 @echo "#define CONFIG_LCD" >include/config.h
726 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h
727 @./mkconfig $(@:_config=) ppc mpc8xx v37
728
dzu69438f62003-09-25 22:32:40 +0000729wtk_config: unconfig
730 @echo "#define CONFIG_LCD" >include/config.h
731 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>include/config.h
732 @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
733
wdenk7ebf7442002-11-02 23:17:16 +0000734#########################################################################
735## PPC4xx Systems
736#########################################################################
wdenk99874b42004-07-01 21:40:08 +0000737xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +0000738
739ADCIOP_config: unconfig
740 @./mkconfig $(@:_config=) ppc ppc4xx adciop esd
741
Wolfgang Denk56811f62005-10-09 01:04:33 +0200742AP1000_config:unconfig
743 @./mkconfig $(@:_config=) ppc ppc4xx ap1000 amirix
744
stroese05b88912004-12-16 18:44:40 +0000745APC405_config: unconfig
746 @./mkconfig $(@:_config=) ppc ppc4xx apc405 esd
747
wdenk7ebf7442002-11-02 23:17:16 +0000748AR405_config: unconfig
749 @./mkconfig $(@:_config=) ppc ppc4xx ar405 esd
750
stroesebfcc82b2003-05-23 11:41:44 +0000751ASH405_config: unconfig
752 @./mkconfig $(@:_config=) ppc ppc4xx ash405 esd
753
Stefan Roese3e1f1b32005-08-01 16:49:12 +0200754bamboo_config: unconfig
755 @./mkconfig $(@:_config=) ppc ppc4xx bamboo amcc
756
757bubinga_config: unconfig
758 @./mkconfig $(@:_config=) ppc ppc4xx bubinga amcc
stroesebfcc82b2003-05-23 11:41:44 +0000759
wdenk7ebf7442002-11-02 23:17:16 +0000760CANBT_config: unconfig
761 @./mkconfig $(@:_config=) ppc ppc4xx canbt esd
762
wdenk9e7130b2004-09-09 17:44:35 +0000763CATcenter_config \
764CATcenter_25_config \
765CATcenter_33_config: unconfig
wdenkbb33bab2004-05-13 13:23:58 +0000766 @ echo "/* CATcenter uses PPChameleon Model ME */" > include/config.h
767 @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> include/config.h
wdenk9e7130b2004-09-09 17:44:35 +0000768 @[ -z "$(findstring _25,$@)" ] || \
769 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>include/config.h ; \
770 echo "SysClk = 25MHz" ; \
771 }
772 @[ -z "$(findstring _33,$@)" ] || \
773 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>include/config.h ; \
774 echo "SysClk = 33MHz" ; \
775 }
wdenkbb33bab2004-05-13 13:23:58 +0000776 @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
777
Stefan Roesea34997d2005-09-22 09:16:57 +0200778CPCI2DP_config: unconfig
779 @./mkconfig $(@:_config=) ppc ppc4xx cpci2dp esd
780
stroesebfcc82b2003-05-23 11:41:44 +0000781CPCI405_config \
782CPCI4052_config \
stroese05b88912004-12-16 18:44:40 +0000783CPCI405DT_config \
stroesebfcc82b2003-05-23 11:41:44 +0000784CPCI405AB_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000785 @./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd
786 @echo "BOARD_REVISION = $(@:_config=)" >>include/config.mk
787
788CPCI440_config: unconfig
789 @./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd
790
791CPCIISER4_config: unconfig
792 @./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd
793
wdenk634d2f72004-04-15 23:14:49 +0000794CRAYL1_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000795 @./mkconfig $(@:_config=) ppc ppc4xx L1 cray
796
wdenkf70cbb22004-02-23 20:48:38 +0000797csb272_config: unconfig
798 @./mkconfig $(@:_config=) ppc ppc4xx csb272
799
wdenk7e920de2004-06-09 12:47:02 +0000800csb472_config: unconfig
801 @./mkconfig $(@:_config=) ppc ppc4xx csb472
802
wdenk7ebf7442002-11-02 23:17:16 +0000803DASA_SIM_config: unconfig
804 @./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd
805
stroese3361eb72003-09-12 08:57:15 +0000806DP405_config: unconfig
807 @./mkconfig $(@:_config=) ppc ppc4xx dp405 esd
808
wdenk7ebf7442002-11-02 23:17:16 +0000809DU405_config: unconfig
810 @./mkconfig $(@:_config=) ppc ppc4xx du405 esd
811
Stefan Roese3e1f1b32005-08-01 16:49:12 +0200812ebony_config: unconfig
813 @./mkconfig $(@:_config=) ppc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +0000814
wdenk634d2f72004-04-15 23:14:49 +0000815ERIC_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000816 @./mkconfig $(@:_config=) ppc ppc4xx eric
817
wdenk634d2f72004-04-15 23:14:49 +0000818EXBITGEN_config: unconfig
wdenkd9fce812003-06-28 17:24:46 +0000819 @./mkconfig $(@:_config=) ppc ppc4xx exbitgen
820
stroese05b88912004-12-16 18:44:40 +0000821G2000_config: unconfig
822 @./mkconfig $(@:_config=) ppc ppc4xx g2000
823
824HH405_config: unconfig
825 @./mkconfig $(@:_config=) ppc ppc4xx hh405 esd
826
stroese3361eb72003-09-12 08:57:15 +0000827HUB405_config: unconfig
828 @./mkconfig $(@:_config=) ppc ppc4xx hub405 esd
829
wdenk634d2f72004-04-15 23:14:49 +0000830JSE_config: unconfig
831 @./mkconfig $(@:_config=) ppc ppc4xx jse
832
Stefan Roese5ff4c3f2005-08-15 12:31:23 +0200833KAREF_config: unconfig
834 @./mkconfig $(@:_config=) ppc ppc4xx karef sandburst
835
Stefan Roese99644742005-11-29 18:18:21 +0100836luan_config: unconfig
837 @./mkconfig $(@:_config=) ppc ppc4xx luan amcc
838
Stefan Roese5ff4c3f2005-08-15 12:31:23 +0200839METROBOX_config: unconfig
840 @./mkconfig $(@:_config=) ppc ppc4xx metrobox sandburst
841
wdenk634d2f72004-04-15 23:14:49 +0000842MIP405_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000843 @./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl
844
wdenk634d2f72004-04-15 23:14:49 +0000845MIP405T_config: unconfig
wdenke39c2842003-06-04 15:05:30 +0000846 @echo "#define CONFIG_MIP405T" >include/config.h
847 @echo "Enable subset config for MIP405T"
848 @./mkconfig -a MIP405 ppc ppc4xx mip405 mpl
849
wdenk634d2f72004-04-15 23:14:49 +0000850ML2_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000851 @./mkconfig $(@:_config=) ppc ppc4xx ml2
852
wdenk634d2f72004-04-15 23:14:49 +0000853ml300_config: unconfig
wdenke537b3b2004-02-23 23:54:43 +0000854 @./mkconfig $(@:_config=) ppc ppc4xx ml300 xilinx
855
Stefan Roese3e1f1b32005-08-01 16:49:12 +0200856ocotea_config: unconfig
857 @./mkconfig $(@:_config=) ppc ppc4xx ocotea amcc
wdenk00fe1612004-03-14 00:07:33 +0000858
wdenk7ebf7442002-11-02 23:17:16 +0000859OCRTC_config \
860ORSG_config: unconfig
861 @./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd
862
Stefan Roesec443fe92005-11-22 13:20:42 +0100863p3p440_config: unconfig
864 @./mkconfig $(@:_config=) ppc ppc4xx p3p440 prodrive
865
wdenk7ebf7442002-11-02 23:17:16 +0000866PCI405_config: unconfig
867 @./mkconfig $(@:_config=) ppc ppc4xx pci405 esd
868
wdenk634d2f72004-04-15 23:14:49 +0000869PIP405_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000870 @./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl
871
stroese3361eb72003-09-12 08:57:15 +0000872PLU405_config: unconfig
873 @./mkconfig $(@:_config=) ppc ppc4xx plu405 esd
874
stroesebfcc82b2003-05-23 11:41:44 +0000875PMC405_config: unconfig
876 @./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd
877
wdenk7ac16102004-08-01 22:48:16 +0000878PPChameleonEVB_config \
wdenk99874b42004-07-01 21:40:08 +0000879PPChameleonEVB_BA_25_config \
880PPChameleonEVB_ME_25_config \
881PPChameleonEVB_HI_25_config \
882PPChameleonEVB_BA_33_config \
883PPChameleonEVB_ME_33_config \
884PPChameleonEVB_HI_33_config: unconfig
wdenk7182b0f2003-10-06 21:55:32 +0000885 @ >include/config.h
wdenk9e7130b2004-09-09 17:44:35 +0000886 @[ -z "$(findstring EVB_BA,$@)" ] || \
wdenk7182b0f2003-10-06 21:55:32 +0000887 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>include/config.h ; \
888 echo "... BASIC model" ; \
889 }
wdenk9e7130b2004-09-09 17:44:35 +0000890 @[ -z "$(findstring EVB_ME,$@)" ] || \
wdenk7182b0f2003-10-06 21:55:32 +0000891 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>include/config.h ; \
892 echo "... MEDIUM model" ; \
893 }
wdenk9e7130b2004-09-09 17:44:35 +0000894 @[ -z "$(findstring EVB_HI,$@)" ] || \
wdenk7182b0f2003-10-06 21:55:32 +0000895 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>include/config.h ; \
896 echo "... HIGH-END model" ; \
897 }
wdenk99874b42004-07-01 21:40:08 +0000898 @[ -z "$(findstring _25,$@)" ] || \
899 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>include/config.h ; \
wdenk9e7130b2004-09-09 17:44:35 +0000900 echo "SysClk = 25MHz" ; \
wdenk99874b42004-07-01 21:40:08 +0000901 }
902 @[ -z "$(findstring _33,$@)" ] || \
903 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>include/config.h ; \
wdenk9e7130b2004-09-09 17:44:35 +0000904 echo "SysClk = 33MHz" ; \
wdenk99874b42004-07-01 21:40:08 +0000905 }
wdenk7182b0f2003-10-06 21:55:32 +0000906 @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk232fe0b2003-09-02 22:48:03 +0000907
wdenkd3341052005-01-09 23:48:14 +0000908sbc405_config: unconfig
909 @./mkconfig $(@:_config=) ppc ppc4xx sbc405
910
Stefan Roese3e1f1b32005-08-01 16:49:12 +0200911sycamore_config: unconfig
912 @echo "Configuring for sycamore board as subset of walnut..."
913 @./mkconfig -a walnut ppc ppc4xx walnut amcc
914
stroese3361eb72003-09-12 08:57:15 +0000915VOH405_config: unconfig
916 @./mkconfig $(@:_config=) ppc ppc4xx voh405 esd
917
stroese05b88912004-12-16 18:44:40 +0000918VOM405_config: unconfig
919 @./mkconfig $(@:_config=) ppc ppc4xx vom405 esd
920
Stefan Roesef2303272005-11-15 10:35:59 +0100921CMS700_config: unconfig
922 @./mkconfig $(@:_config=) ppc ppc4xx cms700 esd
923
wdenk7ebf7442002-11-02 23:17:16 +0000924W7OLMC_config \
925W7OLMG_config: unconfig
926 @./mkconfig $(@:_config=) ppc ppc4xx w7o
927
Stefan Roese3e1f1b32005-08-01 16:49:12 +0200928walnut_config: unconfig
929 @./mkconfig $(@:_config=) ppc ppc4xx walnut amcc
wdenk7ebf7442002-11-02 23:17:16 +0000930
stroese05b88912004-12-16 18:44:40 +0000931WUH405_config: unconfig
932 @./mkconfig $(@:_config=) ppc ppc4xx wuh405 esd
933
wdenk634d2f72004-04-15 23:14:49 +0000934XPEDITE1K_config: unconfig
wdenk544e9732004-02-06 23:19:44 +0000935 @./mkconfig $(@:_config=) ppc ppc4xx xpedite1k
936
Stefan Roese3e1f1b32005-08-01 16:49:12 +0200937yosemite_config: unconfig
938 @./mkconfig $(@:_config=) ppc ppc4xx yosemite amcc
939
940yellowstone_config: unconfig
941 @./mkconfig $(@:_config=) ppc ppc4xx yellowstone amcc
942
wdenk7ebf7442002-11-02 23:17:16 +0000943#########################################################################
wdenk337f5652004-10-28 00:09:35 +0000944## MPC8220 Systems
945#########################################################################
Wolfgang Denkdb5f3862005-08-03 22:32:02 +0200946
947Alaska8220_config \
948Yukon8220_config: unconfig
wdenk337f5652004-10-28 00:09:35 +0000949 @./mkconfig $(@:_config=) ppc mpc8220 alaska
950
wdenkccfe25d2005-04-05 21:57:18 +0000951sorcery_config: unconfig
952 @./mkconfig $(@:_config=) ppc mpc8220 sorcery
953
wdenk337f5652004-10-28 00:09:35 +0000954#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000955## MPC824x Systems
956#########################################################################
wdenkc12081a2004-03-23 20:18:25 +0000957xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenkef5fe752003-03-12 10:41:04 +0000958
wdenk8aeb24e2003-06-20 22:36:30 +0000959A3000_config: unconfig
960 @./mkconfig $(@:_config=) ppc mpc824x a3000
961
Wolfgang Denka48c7252005-09-25 18:59:36 +0200962barco_config: unconfig
963 @./mkconfig $(@:_config=) ppc mpc824x barco
964
wdenk7ebf7442002-11-02 23:17:16 +0000965BMW_config: unconfig
966 @./mkconfig $(@:_config=) ppc mpc824x bmw
967
wdenkef5fe752003-03-12 10:41:04 +0000968CPC45_config \
969CPC45_ROMBOOT_config: unconfig
970 @./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45
971 @cd ./include ; \
972 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
973 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
974 echo "... booting from 8-bit flash" ; \
975 else \
976 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
977 echo "... booting from 64-bit flash" ; \
978 fi; \
979 echo "export CONFIG_BOOT_ROM" >> config.mk;
980
wdenk7ebf7442002-11-02 23:17:16 +0000981CU824_config: unconfig
982 @./mkconfig $(@:_config=) ppc mpc824x cu824
983
wdenk78924a72004-04-18 21:45:42 +0000984debris_config: unconfig
985 @./mkconfig $(@:_config=) ppc mpc824x debris etin
986
wdenk5f495752004-02-26 23:46:20 +0000987eXalion_config: unconfig
988 @./mkconfig $(@:_config=) ppc mpc824x eXalion
989
wdenke0c812a2005-04-03 15:51:42 +0000990HIDDEN_DRAGON_config: unconfig
991 @./mkconfig $(@:_config=) ppc mpc824x hidden_dragon
992
wdenk7ebf7442002-11-02 23:17:16 +0000993MOUSSE_config: unconfig
994 @./mkconfig $(@:_config=) ppc mpc824x mousse
995
996MUSENKI_config: unconfig
997 @./mkconfig $(@:_config=) ppc mpc824x musenki
998
wdenk4e7a58a2003-12-07 19:24:00 +0000999MVBLUE_config: unconfig
1000 @./mkconfig $(@:_config=) ppc mpc824x mvblue
1001
wdenk7ebf7442002-11-02 23:17:16 +00001002OXC_config: unconfig
1003 @./mkconfig $(@:_config=) ppc mpc824x oxc
1004
1005PN62_config: unconfig
1006 @./mkconfig $(@:_config=) ppc mpc824x pn62
1007
1008Sandpoint8240_config: unconfig
1009 @./mkconfig $(@:_config=) ppc mpc824x sandpoint
1010
1011Sandpoint8245_config: unconfig
1012 @./mkconfig $(@:_config=) ppc mpc824x sandpoint
1013
wdenk265d2172004-07-10 22:35:59 +00001014sbc8240_config: unconfig
1015 @./mkconfig $(@:_config=) ppc mpc824x sbc8240
1016
wdenkd9fce812003-06-28 17:24:46 +00001017SL8245_config: unconfig
1018 @./mkconfig $(@:_config=) ppc mpc824x sl8245
1019
wdenk7ebf7442002-11-02 23:17:16 +00001020utx8245_config: unconfig
1021 @./mkconfig $(@:_config=) ppc mpc824x utx8245
1022
1023#########################################################################
1024## MPC8260 Systems
1025#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001026
wdenk2f0812d2003-10-08 22:45:44 +00001027atc_config: unconfig
1028 @./mkconfig $(@:_config=) ppc mpc8260 atc
1029
wdenk7ebf7442002-11-02 23:17:16 +00001030cogent_mpc8260_config: unconfig
1031 @./mkconfig $(@:_config=) ppc mpc8260 cogent
1032
1033CPU86_config \
1034CPU86_ROMBOOT_config: unconfig
1035 @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86
1036 @cd ./include ; \
1037 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1038 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1039 echo "... booting from 8-bit flash" ; \
1040 else \
1041 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1042 echo "... booting from 64-bit flash" ; \
1043 fi; \
1044 echo "export CONFIG_BOOT_ROM" >> config.mk;
1045
wdenk6d3c6d12005-04-03 22:35:21 +00001046CPU87_config \
1047CPU87_ROMBOOT_config: unconfig
1048 @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu87
1049 @cd ./include ; \
1050 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1051 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1052 echo "... booting from 8-bit flash" ; \
1053 else \
1054 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1055 echo "... booting from 64-bit flash" ; \
1056 fi; \
1057 echo "export CONFIG_BOOT_ROM" >> config.mk;
1058
Wolfgang Denk8dd4d332005-08-06 01:42:58 +02001059ep8248_config \
1060ep8248E_config : unconfig
1061 @./mkconfig ep8248 ppc mpc8260 ep8248
1062
wdenk7ebf7442002-11-02 23:17:16 +00001063ep8260_config: unconfig
1064 @./mkconfig $(@:_config=) ppc mpc8260 ep8260
1065
1066gw8260_config: unconfig
1067 @./mkconfig $(@:_config=) ppc mpc8260 gw8260
1068
1069hymod_config: unconfig
1070 @./mkconfig $(@:_config=) ppc mpc8260 hymod
1071
wdenka7316b02005-05-12 22:48:09 +00001072IDS8247_config: unconfig
1073 @./mkconfig $(@:_config=) ppc mpc8260 ids8247
1074
wdenk7ebf7442002-11-02 23:17:16 +00001075IPHASE4539_config: unconfig
1076 @./mkconfig $(@:_config=) ppc mpc8260 iphase4539
1077
wdenk76dd6c72004-06-09 14:47:54 +00001078ISPAN_config \
1079ISPAN_REVB_config: unconfig
1080 @if [ "$(findstring _REVB_,$@)" ] ; then \
1081 echo "#define CFG_REV_B" > include/config.h ; \
1082 fi
1083 @./mkconfig -a ISPAN ppc mpc8260 ispan
1084
wdenk3902d702004-04-15 18:22:41 +00001085MPC8260ADS_config \
wdenk874c6752005-04-03 23:22:21 +00001086MPC8260ADS_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001087MPC8260ADS_33MHz_config \
wdenk874c6752005-04-03 23:22:21 +00001088MPC8260ADS_33MHz_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001089MPC8260ADS_40MHz_config \
wdenk874c6752005-04-03 23:22:21 +00001090MPC8260ADS_40MHz_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001091MPC8272ADS_config \
wdenk874c6752005-04-03 23:22:21 +00001092MPC8272ADS_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001093PQ2FADS_config \
wdenk874c6752005-04-03 23:22:21 +00001094PQ2FADS_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001095PQ2FADS-VR_config \
wdenk874c6752005-04-03 23:22:21 +00001096PQ2FADS-VR_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001097PQ2FADS-ZU_config \
wdenk874c6752005-04-03 23:22:21 +00001098PQ2FADS-ZU_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001099PQ2FADS-ZU_66MHz_config \
wdenk874c6752005-04-03 23:22:21 +00001100PQ2FADS-ZU_66MHz_lowboot_config \
wdenk3902d702004-04-15 18:22:41 +00001101 : unconfig
1102 $(if $(findstring PQ2FADS,$@), \
1103 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > include/config.h, \
1104 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > include/config.h)
1105 $(if $(findstring MHz,$@), \
1106 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> include/config.h, \
1107 $(if $(findstring VR,$@), \
1108 @echo "#define CONFIG_8260_CLKIN 66000000" >> include/config.h))
wdenk874c6752005-04-03 23:22:21 +00001109 @[ -z "$(findstring lowboot_,$@)" ] || \
1110 { echo "TEXT_BASE = 0xFF800000" >board/mpc8260ads/config.tmp ; \
1111 echo "... with lowboot configuration" ; \
1112 }
wdenk3902d702004-04-15 18:22:41 +00001113 @./mkconfig -a MPC8260ADS ppc mpc8260 mpc8260ads
wdenk7ebf7442002-11-02 23:17:16 +00001114
wdenkb666c8f2003-03-06 00:58:30 +00001115MPC8266ADS_config: unconfig
1116 @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads
1117
wdenkc12081a2004-03-23 20:18:25 +00001118# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk4b57dcc2003-03-25 18:06:06 +00001119PM825_config \
wdenkc12081a2004-03-23 20:18:25 +00001120PM825_ROMBOOT_config \
1121PM825_BIGFLASH_config \
1122PM825_ROMBOOT_BIGFLASH_config \
1123PM826_config \
1124PM826_ROMBOOT_config \
1125PM826_BIGFLASH_config \
1126PM826_ROMBOOT_BIGFLASH_config: unconfig
1127 @if [ "$(findstring PM825_,$@)" ] ; then \
1128 echo "#define CONFIG_PCI" >include/config.h ; \
1129 else \
1130 >include/config.h ; \
1131 fi
1132 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
wdenk4b57dcc2003-03-25 18:06:06 +00001133 echo "... booting from 8-bit flash" ; \
wdenkc12081a2004-03-23 20:18:25 +00001134 echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
1135 echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
1136 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1137 echo "... with 32 MB Flash" ; \
1138 echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
1139 fi; \
wdenk4b57dcc2003-03-25 18:06:06 +00001140 else \
wdenk4b57dcc2003-03-25 18:06:06 +00001141 echo "... booting from 64-bit flash" ; \
wdenkc12081a2004-03-23 20:18:25 +00001142 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1143 echo "... with 32 MB Flash" ; \
1144 echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
1145 echo "TEXT_BASE = 0x40000000" >board/pm826/config.tmp ; \
1146 else \
1147 echo "TEXT_BASE = 0xFF000000" >board/pm826/config.tmp ; \
1148 fi; \
1149 fi
1150 @./mkconfig -a PM826 ppc mpc8260 pm826
wdenk4b57dcc2003-03-25 18:06:06 +00001151
wdenkc12081a2004-03-23 20:18:25 +00001152PM828_config \
1153PM828_PCI_config \
1154PM828_ROMBOOT_config \
1155PM828_ROMBOOT_PCI_config: unconfig
1156 @if [ -z "$(findstring _PCI_,$@)" ] ; then \
1157 echo "#define CONFIG_PCI" >>include/config.h ; \
1158 echo "... with PCI enabled" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001159 else \
wdenkc12081a2004-03-23 20:18:25 +00001160 >include/config.h ; \
1161 fi
1162 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1163 echo "... booting from 8-bit flash" ; \
1164 echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
1165 echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
1166 fi
1167 @./mkconfig -a PM828 ppc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +00001168
1169ppmc8260_config: unconfig
1170 @./mkconfig $(@:_config=) ppc mpc8260 ppmc8260
1171
wdenkbc3202a2005-04-03 23:11:38 +00001172Rattler8248_config \
1173Rattler_config: unconfig
1174 $(if $(findstring 8248,$@), \
1175 @echo "#define CONFIG_MPC8248" > include/config.h)
1176 @./mkconfig -a Rattler ppc mpc8260 rattler
1177
wdenk7ebf7442002-11-02 23:17:16 +00001178RPXsuper_config: unconfig
1179 @./mkconfig $(@:_config=) ppc mpc8260 rpxsuper
1180
1181rsdproto_config: unconfig
1182 @./mkconfig $(@:_config=) ppc mpc8260 rsdproto
1183
1184sacsng_config: unconfig
1185 @./mkconfig $(@:_config=) ppc mpc8260 sacsng
1186
1187sbc8260_config: unconfig
1188 @./mkconfig $(@:_config=) ppc mpc8260 sbc8260
1189
1190SCM_config: unconfig
1191 @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens
1192
wdenk874ac262003-07-24 23:38:38 +00001193TQM8255_AA_config \
1194TQM8260_AA_config \
1195TQM8260_AB_config \
1196TQM8260_AC_config \
1197TQM8260_AD_config \
1198TQM8260_AE_config \
1199TQM8260_AF_config \
1200TQM8260_AG_config \
1201TQM8260_AH_config \
1202TQM8265_AA_config: unconfig
1203 @case "$@" in \
1204 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
1205 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
1206 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1207 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1208 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1209 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
1210 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1211 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
1212 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
1213 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
1214 esac; \
1215 >include/config.h ; \
1216 if [ "$${CTYPE}" != "MPC8260" ] ; then \
1217 echo "#define CONFIG_$${CTYPE}" >>include/config.h ; \
1218 fi; \
1219 echo "#define CONFIG_$${CFREQ}MHz" >>include/config.h ; \
1220 echo "... with $${CFREQ}MHz system clock" ; \
1221 if [ "$${CACHE}" == "yes" ] ; then \
wdenk7ebf7442002-11-02 23:17:16 +00001222 echo "#define CONFIG_L2_CACHE" >>include/config.h ; \
wdenk874ac262003-07-24 23:38:38 +00001223 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001224 else \
1225 echo "#undef CONFIG_L2_CACHE" >>include/config.h ; \
1226 echo "... without L2 Cache support" ; \
wdenk874ac262003-07-24 23:38:38 +00001227 fi; \
1228 if [ "$${BMODE}" == "60x" ] ; then \
1229 echo "#define CONFIG_BUSMODE_60x" >>include/config.h ; \
1230 echo "... with 60x Bus Mode" ; \
1231 else \
1232 echo "#undef CONFIG_BUSMODE_60x" >>include/config.h ; \
1233 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001234 fi
wdenkc08f1582003-04-27 22:52:51 +00001235 @./mkconfig -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +00001236
wdenkc28149c2005-05-30 23:55:42 +00001237VoVPN-GW_66MHz_config \
1238VoVPN-GW_100MHz_config: unconfig
1239 @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > include/config.h
1240 @./mkconfig -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
1241
wdenk2f0812d2003-10-08 22:45:44 +00001242ZPC1900_config: unconfig
1243 @./mkconfig $(@:_config=) ppc mpc8260 zpc1900
wdenk541a76d2003-05-03 15:50:43 +00001244
wdenkabf7a7c2003-12-08 01:34:36 +00001245#========================================================================
1246# M68K
1247#========================================================================
1248#########################################################################
1249## Coldfire
1250#########################################################################
1251
Wolfgang Denkaaa7c002005-12-12 16:06:05 +01001252cobra5272_config : unconfig
1253 @./mkconfig $(@:_config=) m68k mcf52x2 cobra5272
1254
wdenkabf7a7c2003-12-08 01:34:36 +00001255M5272C3_config : unconfig
wdenke65527f2004-02-12 00:47:09 +00001256 @./mkconfig $(@:_config=) m68k mcf52x2 m5272c3
wdenkabf7a7c2003-12-08 01:34:36 +00001257
1258M5282EVB_config : unconfig
wdenke65527f2004-02-12 00:47:09 +00001259 @./mkconfig $(@:_config=) m68k mcf52x2 m5282evb
wdenkabf7a7c2003-12-08 01:34:36 +00001260
stroese05b88912004-12-16 18:44:40 +00001261TASREG_config : unconfig
1262 @./mkconfig $(@:_config=) m68k mcf52x2 tasreg esd
1263
wdenk7ebf7442002-11-02 23:17:16 +00001264#########################################################################
Eran Liberty9095d4a2005-07-28 10:08:46 -05001265## MPC83xx Systems
1266#########################################################################
1267
1268MPC8349ADS_config: unconfig
1269 @./mkconfig $(@:_config=) ppc mpc83xx mpc8349ads
1270
Marian Balakowicz513b4a12005-10-11 19:09:42 +02001271TQM834x_config: unconfig
1272 @./mkconfig $(@:_config=) ppc mpc83xx tqm834x
1273
Eran Liberty9095d4a2005-07-28 10:08:46 -05001274#########################################################################
wdenk9c53f402003-10-15 23:53:47 +00001275## MPC85xx Systems
1276#########################################################################
1277
wdenk13eb2212004-07-09 23:27:13 +00001278MPC8540ADS_config: unconfig
wdenk9c53f402003-10-15 23:53:47 +00001279 @./mkconfig $(@:_config=) ppc mpc85xx mpc8540ads
1280
Lunsheng Wang61e61952005-07-29 10:20:29 -05001281MPC8540EVAL_config \
1282MPC8540EVAL_33_config \
1283MPC8540EVAL_66_config \
1284MPC8540EVAL_33_slave_config \
1285MPC8540EVAL_66_slave_config: unconfig
1286 @echo "" >include/config.h ; \
1287 if [ "$(findstring _33_,$@)" ] ; then \
1288 echo -n "... 33 MHz PCI" ; \
1289 else \
1290 echo "#define CONFIG_SYSCLK_66M" >>include/config.h ; \
1291 echo -n "... 66 MHz PCI" ; \
1292 fi ; \
1293 if [ "$(findstring _slave_,$@)" ] ; then \
1294 echo "#define CONFIG_PCI_SLAVE" >>include/config.h ; \
1295 echo " slave" ; \
1296 else \
1297 echo " host" ; \
1298 fi
1299 @./mkconfig -a MPC8540EVAL ppc mpc85xx mpc8540eval
1300
wdenk13eb2212004-07-09 23:27:13 +00001301MPC8560ADS_config: unconfig
wdenk9c53f402003-10-15 23:53:47 +00001302 @./mkconfig $(@:_config=) ppc mpc85xx mpc8560ads
1303
wdenk0aeb8532004-10-10 21:21:55 +00001304MPC8541CDS_config: unconfig
1305 @./mkconfig $(@:_config=) ppc mpc85xx mpc8541cds cds
1306
Jon Loeliger77a4f6e2005-07-25 14:05:07 -05001307MPC8548CDS_config: unconfig
1308 @./mkconfig $(@:_config=) ppc mpc85xx mpc8548cds cds
1309
wdenk0aeb8532004-10-10 21:21:55 +00001310MPC8555CDS_config: unconfig
1311 @./mkconfig $(@:_config=) ppc mpc85xx mpc8555cds cds
wdenk78924a72004-04-18 21:45:42 +00001312
wdenk6d3c6d12005-04-03 22:35:21 +00001313PM854_config: unconfig
1314 @./mkconfig $(@:_config=) ppc mpc85xx pm854
1315
Wolfgang Denk9733b3c2005-08-05 12:19:30 +02001316PM856_config: unconfig
1317 @./mkconfig $(@:_config=) ppc mpc85xx pm856
1318
wdenkadf849c2004-10-10 22:44:24 +00001319sbc8540_config \
1320sbc8540_33_config \
1321sbc8540_66_config: unconfig
1322 @if [ "$(findstring _66_,$@)" ] ; then \
1323 echo "#define CONFIG_PCI_66" >>include/config.h ; \
1324 echo "... 66 MHz PCI" ; \
1325 else \
1326 >include/config.h ; \
1327 echo "... 33 MHz PCI" ; \
1328 fi
1329 @./mkconfig -a SBC8540 ppc mpc85xx sbc8560
1330
wdenk265d2172004-07-10 22:35:59 +00001331sbc8560_config \
1332sbc8560_33_config \
1333sbc8560_66_config: unconfig
wdenk3203c8f2004-07-10 21:45:47 +00001334 @if [ "$(findstring _66_,$@)" ] ; then \
wdenkadf849c2004-10-10 22:44:24 +00001335 echo "#define CONFIG_PCI_66" >>include/config.h ; \
wdenk3203c8f2004-07-10 21:45:47 +00001336 echo "... 66 MHz PCI" ; \
1337 else \
1338 >include/config.h ; \
1339 echo "... 33 MHz PCI" ; \
1340 fi
wdenk265d2172004-07-10 22:35:59 +00001341 @./mkconfig -a sbc8560 ppc mpc85xx sbc8560
wdenk3203c8f2004-07-10 21:45:47 +00001342
wdenk0aeb8532004-10-10 21:21:55 +00001343stxgp3_config: unconfig
1344 @./mkconfig $(@:_config=) ppc mpc85xx stxgp3
1345
Stefan Roese09554022005-11-30 13:06:40 +01001346TQM8540_config \
1347TQM8541_config \
1348TQM8555_config \
1349TQM8560_config: unconfig
Wolfgang Denk3bd697b2005-12-06 15:02:31 +01001350 @CTYPE=$(subst TQM,,$(@:_config=)); \
Stefan Roese09554022005-11-30 13:06:40 +01001351 >include/config.h ; \
1352 echo "... TQM"$${CTYPE}; \
1353 echo "#define CONFIG_MPC$${CTYPE}">>include/config.h; \
1354 echo "#define CONFIG_TQM$${CTYPE}">>include/config.h; \
1355 echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>include/config.h; \
1356 echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>include/config.h; \
1357 echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>include/config.h
1358 @./mkconfig -a TQM85xx ppc mpc85xx tqm85xx
wdenk8e5263c2005-04-05 16:26:47 +00001359
wdenk9c53f402003-10-15 23:53:47 +00001360#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001361## 74xx/7xx Systems
1362#########################################################################
1363
wdenk452cfd62002-11-19 11:04:11 +00001364AmigaOneG3SE_config: unconfig
1365 @./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
1366
wdenk9f837932003-10-09 19:00:25 +00001367BAB7xx_config: unconfig
1368 @./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec
1369
stroese05b88912004-12-16 18:44:40 +00001370CPCI750_config: unconfig
1371 @./mkconfig CPCI750 ppc 74xx_7xx cpci750 esd
1372
wdenk5da7f2f2004-01-03 00:43:19 +00001373DB64360_config: unconfig
1374 @./mkconfig DB64360 ppc 74xx_7xx db64360 Marvell
1375
1376DB64460_config: unconfig
1377 @./mkconfig DB64460 ppc 74xx_7xx db64460 Marvell
1378
wdenk9f837932003-10-09 19:00:25 +00001379ELPPC_config: unconfig
1380 @./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec
1381
wdenk7ebf7442002-11-02 23:17:16 +00001382EVB64260_config \
1383EVB64260_750CX_config: unconfig
1384 @./mkconfig EVB64260 ppc 74xx_7xx evb64260
1385
wdenk9f837932003-10-09 19:00:25 +00001386P3G4_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +00001387 @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
1388
1389PCIPPC2_config \
1390PCIPPC6_config: unconfig
1391 @./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2
1392
wdenk9f837932003-10-09 19:00:25 +00001393ZUMA_config: unconfig
wdenk232fe0b2003-09-02 22:48:03 +00001394 @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
1395
wdenk7ebf7442002-11-02 23:17:16 +00001396#========================================================================
1397# ARM
1398#========================================================================
1399#########################################################################
1400## StrongARM Systems
1401#########################################################################
1402
wdenke5cda752004-04-15 23:23:39 +00001403assabet_config : unconfig
1404 @./mkconfig $(@:_config=) arm sa1100 assabet
1405
wdenk7ebf7442002-11-02 23:17:16 +00001406dnp1110_config : unconfig
1407 @./mkconfig $(@:_config=) arm sa1100 dnp1110
1408
wdenked2ac4b2004-03-14 18:23:55 +00001409gcplus_config : unconfig
1410 @./mkconfig $(@:_config=) arm sa1100 gcplus
1411
1412lart_config : unconfig
1413 @./mkconfig $(@:_config=) arm sa1100 lart
1414
wdenk7ebf7442002-11-02 23:17:16 +00001415shannon_config : unconfig
1416 @./mkconfig $(@:_config=) arm sa1100 shannon
1417
1418#########################################################################
wdenkf6f96f72003-07-15 20:04:06 +00001419## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00001420#########################################################################
1421
wdenkb6b2f0e2003-09-17 22:48:07 +00001422xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk4a5c8a72003-03-06 00:02:04 +00001423
wdenk920e91b2004-06-09 15:25:53 +00001424xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
wdenke97d3d92004-02-23 22:22:28 +00001425
wdenke3a06802004-06-06 23:13:55 +00001426xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1427
wdenk91fcc952005-04-06 13:52:31 +00001428at91rm9200dk_config : unconfig
1429 @./mkconfig $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
1430
1431cmc_pu2_config : unconfig
1432 @./mkconfig $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
1433
Wolfgang Denke35470b2005-10-05 02:00:09 +02001434csb637_config : unconfig
1435 @./mkconfig $(@:_config=) arm arm920t csb637 NULL at91rm9200
1436
Wolfgang Denk756bfd72005-09-26 01:14:38 +02001437mp2usb_config : unconfig
1438 @./mkconfig $(@:_config=) arm arm920t mp2usb NULL at91rm9200
1439
Wolfgang Denkadf20a12005-09-25 01:48:28 +02001440
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +02001441########################################################################
1442## ARM Integrator boards - see doc/README-integrator for more info.
1443integratorap_config \
1444ap_config \
1445ap966_config \
1446ap922_config \
1447ap922_XA10_config \
1448ap7_config \
1449ap720t_config \
1450ap920t_config \
1451ap926ejs_config \
1452ap946es_config: unconfig
Wolfgang Denk88bd7432005-10-09 00:22:48 +02001453 @board/integratorap/split_by_variant.sh $@
wdenk4989f872004-03-14 15:06:13 +00001454
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +02001455integratorcp_config \
1456cp_config \
1457cp920t_config \
1458cp926ejs_config \
1459cp946es_config \
1460cp1136_config \
1461cp966_config \
1462cp922_config \
1463cp922_XA10_config \
1464cp1026_config: unconfig
Wolfgang Denk88bd7432005-10-09 00:22:48 +02001465 @board/integratorcp/split_by_variant.sh $@
wdenkb3a4a702004-12-10 11:40:40 +00001466
Wolfgang Denk9da240c2005-10-05 00:19:34 +02001467kb9202_config : unconfig
1468 @./mkconfig $(@:_config=) arm arm920t kb9202 NULL at91rm9200
1469
wdenk37bdfdf2004-06-10 21:55:33 +00001470lpd7a400_config \
1471lpd7a404_config: unconfig
wdenk9f664dd2004-06-09 21:50:45 +00001472 @./mkconfig $(@:_config=) arm lh7a40x lpd7a40x
wdenk4989f872004-03-14 15:06:13 +00001473
wdenk7ac16102004-08-01 22:48:16 +00001474mx1ads_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001475 @./mkconfig $(@:_config=) arm arm920t mx1ads NULL imx
wdenk7ac16102004-08-01 22:48:16 +00001476
1477mx1fs2_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001478 @./mkconfig $(@:_config=) arm arm920t mx1fs2 NULL imx
wdenk7ac16102004-08-01 22:48:16 +00001479
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001480netstar_32_config \
1481netstar_config: unconfig
1482 @if [ "$(findstring _32_,$@)" ] ; then \
1483 echo "... 32MB SDRAM" ; \
1484 echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>include/config.h ; \
1485 else \
1486 echo "... 64MB SDRAM" ; \
1487 echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>include/config.h ; \
1488 fi
1489 @./mkconfig -a netstar arm arm925t netstar
1490
wdenkf6f96f72003-07-15 20:04:06 +00001491omap1510inn_config : unconfig
1492 @./mkconfig $(@:_config=) arm arm925t omap1510inn
1493
wdenk914be132004-06-08 00:22:43 +00001494omap5912osk_config : unconfig
1495 @./mkconfig $(@:_config=) arm arm926ejs omap5912osk
1496
wdenke97d3d92004-02-23 22:22:28 +00001497omap1610inn_config \
1498omap1610inn_cs0boot_config \
1499omap1610inn_cs3boot_config \
wdenk920e91b2004-06-09 15:25:53 +00001500omap1610inn_cs_autoboot_config \
wdenke97d3d92004-02-23 22:22:28 +00001501omap1610h2_config \
1502omap1610h2_cs0boot_config \
wdenk920e91b2004-06-09 15:25:53 +00001503omap1610h2_cs3boot_config \
1504omap1610h2_cs_autoboot_config: unconfig
wdenke97d3d92004-02-23 22:22:28 +00001505 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
1506 echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
wdenkd3602132004-03-25 15:14:43 +00001507 echo "... configured for CS0 boot"; \
wdenk920e91b2004-06-09 15:25:53 +00001508 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
1509 echo "#define CONFIG_CS_AUTOBOOT" >> ./include/config.h ; \
1510 echo "... configured for CS_AUTO boot"; \
wdenke97d3d92004-02-23 22:22:28 +00001511 else \
1512 echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
wdenkd3602132004-03-25 15:14:43 +00001513 echo "... configured for CS3 boot"; \
wdenke97d3d92004-02-23 22:22:28 +00001514 fi;
1515 @./mkconfig -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn
wdenk7eaacc52003-08-29 22:00:43 +00001516
wdenke3a06802004-06-06 23:13:55 +00001517omap730p2_config \
1518omap730p2_cs0boot_config \
1519omap730p2_cs3boot_config : unconfig
1520 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
1521 echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
1522 echo "... configured for CS0 boot"; \
1523 else \
1524 echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
1525 echo "... configured for CS3 boot"; \
1526 fi;
1527 @./mkconfig -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2
1528
wdenk7ac16102004-08-01 22:48:16 +00001529scb9328_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001530 @./mkconfig $(@:_config=) arm arm920t scb9328 NULL imx
wdenk7ac16102004-08-01 22:48:16 +00001531
wdenk7ebf7442002-11-02 23:17:16 +00001532smdk2400_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001533 @./mkconfig $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001534
1535smdk2410_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001536 @./mkconfig $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001537
wdenk9f664dd2004-06-09 21:50:45 +00001538SX1_config : unconfig
1539 @./mkconfig $(@:_config=) arm arm925t sx1
1540
wdenk236d3fc2003-12-20 22:45:10 +00001541# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk4a5c8a72003-03-06 00:02:04 +00001542trab_config \
wdenkb6b2f0e2003-09-17 22:48:07 +00001543trab_bigram_config \
1544trab_bigflash_config \
wdenkf6a6ac12003-09-17 15:10:32 +00001545trab_old_config: unconfig
wdenk4a5c8a72003-03-06 00:02:04 +00001546 @ >include/config.h
wdenkb6b2f0e2003-09-17 22:48:07 +00001547 @[ -z "$(findstring _bigram,$@)" ] || \
wdenk236d3fc2003-12-20 22:45:10 +00001548 { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
1549 echo "#define CONFIG_RAM_32MB" >>include/config.h ; \
wdenkb6b2f0e2003-09-17 22:48:07 +00001550 echo "... with 8 MB Flash, 32 MB RAM" ; \
1551 }
1552 @[ -z "$(findstring _bigflash,$@)" ] || \
wdenk236d3fc2003-12-20 22:45:10 +00001553 { echo "#define CONFIG_FLASH_16MB" >>include/config.h ; \
1554 echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
wdenkb6b2f0e2003-09-17 22:48:07 +00001555 echo "... with 16 MB Flash, 16 MB RAM" ; \
wdenkc0aa5c52003-12-06 19:49:23 +00001556 echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
wdenkb6b2f0e2003-09-17 22:48:07 +00001557 }
wdenkf6a6ac12003-09-17 15:10:32 +00001558 @[ -z "$(findstring _old,$@)" ] || \
wdenk236d3fc2003-12-20 22:45:10 +00001559 { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
1560 echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
1561 echo "... with 8 MB Flash, 16 MB RAM" ; \
wdenkc0aa5c52003-12-06 19:49:23 +00001562 echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
wdenk4a5c8a72003-03-06 00:02:04 +00001563 }
wdenkf8e9a232004-10-09 22:21:29 +00001564 @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001565
wdenk1fe2c702003-03-06 21:55:29 +00001566VCMA9_config : unconfig
wdenkf8e9a232004-10-09 22:21:29 +00001567 @./mkconfig $(@:_config=) arm arm920t vcma9 mpl s3c24x0
wdenk1fe2c702003-03-06 21:55:29 +00001568
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +02001569#========================================================================
1570# ARM supplied Versatile development boards
1571#========================================================================
1572versatile_config \
1573versatileab_config \
1574versatilepb_config : unconfig
Wolfgang Denk88bd7432005-10-09 00:22:48 +02001575 @board/versatile/split_by_variant.sh $@
wdenkb98ac282004-02-24 00:16:43 +00001576
wdenke085e5b2005-04-05 23:32:21 +00001577voiceblue_smallflash_config \
1578voiceblue_config: unconfig
1579 @if [ "$(findstring _smallflash_,$@)" ] ; then \
1580 echo "... boot from lower flash bank" ; \
1581 echo "#define VOICEBLUE_SMALL_FLASH" >>include/config.h ; \
1582 echo "VOICEBLUE_SMALL_FLASH=y" >board/voiceblue/config.tmp ; \
1583 else \
1584 echo "... boot from upper flash bank" ; \
1585 >include/config.h ; \
1586 echo "VOICEBLUE_SMALL_FLASH=n" >board/voiceblue/config.tmp ; \
1587 fi
1588 @./mkconfig -a voiceblue arm arm925t voiceblue
1589
wdenk62cb5cf2005-05-19 22:46:33 +00001590cm4008_config : unconfig
1591 @./mkconfig $(@:_config=) arm arm920t cm4008 NULL ks8695
1592
1593cm41xx_config : unconfig
1594 @./mkconfig $(@:_config=) arm arm920t cm41xx NULL ks8695
1595
wdenkb98ac282004-02-24 00:16:43 +00001596#########################################################################
1597## S3C44B0 Systems
1598#########################################################################
1599
1600B2_config : unconfig
1601 @./mkconfig $(@:_config=) arm s3c44b0 B2 dave
1602
wdenk7ebf7442002-11-02 23:17:16 +00001603#########################################################################
wdenk9f664dd2004-06-09 21:50:45 +00001604## ARM720T Systems
1605#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001606
Wolfgang Denk4dc11462005-09-26 01:06:33 +02001607armadillo_config: unconfig
1608 @./mkconfig $(@:_config=) arm arm720t armadillo
1609
wdenk7ebf7442002-11-02 23:17:16 +00001610ep7312_config : unconfig
1611 @./mkconfig $(@:_config=) arm arm720t ep7312
1612
wdenk9f664dd2004-06-09 21:50:45 +00001613impa7_config : unconfig
1614 @./mkconfig $(@:_config=) arm arm720t impa7
1615
wdenk2ebee312004-02-23 19:30:57 +00001616modnet50_config : unconfig
1617 @./mkconfig $(@:_config=) arm arm720t modnet50
1618
wdenkf2140d52004-07-01 16:30:44 +00001619evb4510_config : unconfig
1620 @./mkconfig $(@:_config=) arm arm720t evb4510
1621
wdenk7ebf7442002-11-02 23:17:16 +00001622#########################################################################
wdenk4a5c8a72003-03-06 00:02:04 +00001623## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00001624#########################################################################
1625
wdenk2a831612005-04-06 00:04:16 +00001626adsvix_config : unconfig
1627 @./mkconfig $(@:_config=) arm pxa adsvix
1628
wdenkb5bb1392004-07-10 23:11:10 +00001629cerf250_config : unconfig
1630 @./mkconfig $(@:_config=) arm pxa cerf250
1631
wdenk7ebf7442002-11-02 23:17:16 +00001632cradle_config : unconfig
wdenk57b2d802003-06-27 21:31:46 +00001633 @./mkconfig $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00001634
Markus Klotzbücher20e3b322006-02-20 16:37:37 +01001635delta_config :
1636 @./mkconfig $(@:_config=) arm pxa delta
1637
wdenk7ebf7442002-11-02 23:17:16 +00001638csb226_config : unconfig
wdenk0463e042003-05-23 12:36:20 +00001639 @./mkconfig $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00001640
wdenk4a5c8a72003-03-06 00:02:04 +00001641innokom_config : unconfig
wdenk0463e042003-05-23 12:36:20 +00001642 @./mkconfig $(@:_config=) arm pxa innokom
wdenk4a5c8a72003-03-06 00:02:04 +00001643
wdenkbd1575f2003-10-14 19:43:55 +00001644ixdp425_config : unconfig
1645 @./mkconfig $(@:_config=) arm ixp ixdp425
1646
wdenk4a5c8a72003-03-06 00:02:04 +00001647lubbock_config : unconfig
wdenk0463e042003-05-23 12:36:20 +00001648 @./mkconfig $(@:_config=) arm pxa lubbock
wdenk4a5c8a72003-03-06 00:02:04 +00001649
wdenk88e72a32003-06-19 23:04:19 +00001650logodl_config : unconfig
1651 @./mkconfig $(@:_config=) arm pxa logodl
1652
Wolfgang Denk27a5b0b2005-10-13 01:45:54 +02001653pxa255_idp_config: unconfig
1654 @./mkconfig $(@:_config=) arm pxa pxa255_idp
1655
wdenkb02744a2003-04-05 00:53:31 +00001656wepep250_config : unconfig
wdenk0463e042003-05-23 12:36:20 +00001657 @./mkconfig $(@:_config=) arm pxa wepep250
wdenkb02744a2003-04-05 00:53:31 +00001658
wdenkfa89d7c2004-09-28 16:44:41 +00001659xaeniax_config : unconfig
1660 @./mkconfig $(@:_config=) arm pxa xaeniax
1661
wdenkc12081a2004-03-23 20:18:25 +00001662xm250_config : unconfig
1663 @./mkconfig $(@:_config=) arm pxa xm250
1664
wdenk51108172004-06-09 15:37:23 +00001665xsengine_config : unconfig
1666 @./mkconfig $(@:_config=) arm pxa xsengine
1667
Markus Klotzbücher21e69a02006-02-07 20:04:48 +01001668zylonite_config :
1669 @./mkconfig $(@:_config=) arm pxa zylonite
1670
wdenkf8062712005-01-09 23:16:25 +00001671#########################################################################
1672## ARM1136 Systems
1673#########################################################################
1674omap2420h4_config : unconfig
1675 @./mkconfig $(@:_config=) arm arm1136 omap2420h4
1676
wdenk591dda52002-11-18 00:14:45 +00001677#========================================================================
1678# i386
1679#========================================================================
1680#########################################################################
wdenk1fe2c702003-03-06 21:55:29 +00001681## AMD SC520 CDP
wdenk591dda52002-11-18 00:14:45 +00001682#########################################################################
1683sc520_cdp_config : unconfig
1684 @./mkconfig $(@:_config=) i386 i386 sc520_cdp
1685
wdenkabda5ca2003-05-31 18:35:21 +00001686sc520_spunk_config : unconfig
1687 @./mkconfig $(@:_config=) i386 i386 sc520_spunk
1688
1689sc520_spunk_rel_config : unconfig
1690 @./mkconfig $(@:_config=) i386 i386 sc520_spunk
1691
wdenk4a5c8a72003-03-06 00:02:04 +00001692#========================================================================
1693# MIPS
1694#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00001695#########################################################################
wdenk4a5c8a72003-03-06 00:02:04 +00001696## MIPS32 4Kc
1697#########################################################################
1698
wdenk5d841732003-08-17 18:55:18 +00001699xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
1700
1701incaip_100MHz_config \
1702incaip_133MHz_config \
1703incaip_150MHz_config \
1704incaip_config: unconfig
1705 @ >include/config.h
1706 @[ -z "$(findstring _100MHz,$@)" ] || \
1707 { echo "#define CPU_CLOCK_RATE 100000000" >>include/config.h ; \
1708 echo "... with 100MHz system clock" ; \
1709 }
1710 @[ -z "$(findstring _133MHz,$@)" ] || \
1711 { echo "#define CPU_CLOCK_RATE 133000000" >>include/config.h ; \
1712 echo "... with 133MHz system clock" ; \
1713 }
1714 @[ -z "$(findstring _150MHz,$@)" ] || \
1715 { echo "#define CPU_CLOCK_RATE 150000000" >>include/config.h ; \
1716 echo "... with 150MHz system clock" ; \
1717 }
1718 @./mkconfig -a $(call xtract_incaip,$@) mips mips incaip
1719
wdenk5401de42004-02-07 01:27:10 +00001720tb0229_config: unconfig
1721 @./mkconfig $(@:_config=) mips mips tb0229
1722
wdenk5d841732003-08-17 18:55:18 +00001723#########################################################################
wdenkcd914452004-05-29 16:53:29 +00001724## MIPS32 AU1X00
1725#########################################################################
1726dbau1000_config : unconfig
1727 @ >include/config.h
1728 @echo "#define CONFIG_DBAU1000 1" >>include/config.h
1729 @./mkconfig -a dbau1x00 mips mips dbau1x00
1730
1731dbau1100_config : unconfig
1732 @ >include/config.h
1733 @echo "#define CONFIG_DBAU1100 1" >>include/config.h
1734 @./mkconfig -a dbau1x00 mips mips dbau1x00
1735
1736dbau1500_config : unconfig
1737 @ >include/config.h
1738 @echo "#define CONFIG_DBAU1500 1" >>include/config.h
1739 @./mkconfig -a dbau1x00 mips mips dbau1x00
1740
wdenk96c7a8c2005-01-09 22:28:56 +00001741dbau1550_config : unconfig
1742 @ >include/config.h
1743 @echo "#define CONFIG_DBAU1550 1" >>include/config.h
1744 @./mkconfig -a dbau1x00 mips mips dbau1x00
1745
1746dbau1550_el_config : unconfig
1747 @ >include/config.h
1748 @echo "#define CONFIG_DBAU1550 1" >>include/config.h
Wolfgang Denk09a4ebb2005-08-08 23:06:32 +02001749 @./mkconfig -a dbau1x00 mips mips dbau1x00
wdenk96c7a8c2005-01-09 22:28:56 +00001750
Wolfgang Denk0cbaf642005-09-25 00:53:22 +02001751pb1000_config : unconfig
1752 @ >include/config.h
1753 @echo "#define CONFIG_PB1000 1" >>include/config.h
1754 @./mkconfig -a pb1x00 mips mips pb1x00
1755
wdenkcd914452004-05-29 16:53:29 +00001756#########################################################################
wdenk5d841732003-08-17 18:55:18 +00001757## MIPS64 5Kc
1758#########################################################################
wdenk4a5c8a72003-03-06 00:02:04 +00001759
wdenkb02744a2003-04-05 00:53:31 +00001760purple_config : unconfig
1761 @./mkconfig $(@:_config=) mips mips purple
wdenk4a5c8a72003-03-06 00:02:04 +00001762
wdenk60164a82003-10-08 23:26:14 +00001763#========================================================================
1764# Nios
1765#========================================================================
1766#########################################################################
1767## Nios32
1768#########################################################################
1769
wdenk3be717f2004-01-03 19:43:48 +00001770DK1C20_safe_32_config \
1771DK1C20_standard_32_config \
wdenk60164a82003-10-08 23:26:14 +00001772DK1C20_config: unconfig
wdenk3be717f2004-01-03 19:43:48 +00001773 @ >include/config.h
1774 @[ -z "$(findstring _safe_32,$@)" ] || \
1775 { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
1776 echo "... NIOS 'safe_32' configuration" ; \
1777 }
1778 @[ -z "$(findstring _standard_32,$@)" ] || \
1779 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1780 echo "... NIOS 'standard_32' configuration" ; \
1781 }
1782 @[ -z "$(findstring DK1C20_config,$@)" ] || \
1783 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1784 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
1785 }
1786 @./mkconfig -a DK1C20 nios nios dk1c20 altera
1787
1788DK1S10_safe_32_config \
1789DK1S10_standard_32_config \
wdenkc0bc2e12004-02-09 23:12:24 +00001790DK1S10_mtx_ldk_20_config \
wdenk3be717f2004-01-03 19:43:48 +00001791DK1S10_config: unconfig
1792 @ >include/config.h
1793 @[ -z "$(findstring _safe_32,$@)" ] || \
1794 { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
1795 echo "... NIOS 'safe_32' configuration" ; \
1796 }
1797 @[ -z "$(findstring _standard_32,$@)" ] || \
1798 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1799 echo "... NIOS 'standard_32' configuration" ; \
1800 }
wdenkc0bc2e12004-02-09 23:12:24 +00001801 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
1802 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>include/config.h ; \
1803 echo "... NIOS 'mtx_ldk_20' configuration" ; \
1804 }
wdenk3be717f2004-01-03 19:43:48 +00001805 @[ -z "$(findstring DK1S10_config,$@)" ] || \
1806 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1807 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
1808 }
1809 @./mkconfig -a DK1S10 nios nios dk1s10 altera
wdenk60164a82003-10-08 23:26:14 +00001810
wdenke28cf632004-03-14 15:20:55 +00001811ADNPESC1_DNPEVA2_base_32_config \
1812ADNPESC1_base_32_config \
1813ADNPESC1_config: unconfig
1814 @ >include/config.h
1815 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
wdenkc35ba4e2004-03-14 22:25:36 +00001816 { echo "#define CONFIG_DNPEVA2 1" >>include/config.h ; \
1817 echo "... DNP/EVA2 configuration" ; \
1818 }
wdenke28cf632004-03-14 15:20:55 +00001819 @[ -z "$(findstring _base_32,$@)" ] || \
wdenkc35ba4e2004-03-14 22:25:36 +00001820 { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
1821 echo "... NIOS 'base_32' configuration" ; \
1822 }
wdenke28cf632004-03-14 15:20:55 +00001823 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
wdenkc35ba4e2004-03-14 22:25:36 +00001824 { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
1825 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
1826 }
wdenke28cf632004-03-14 15:20:55 +00001827 @./mkconfig -a ADNPESC1 nios nios adnpesc1 ssv
1828
wdenkef3386f2004-10-10 21:27:30 +00001829#########################################################################
1830## Nios-II
1831#########################################################################
1832
1833PK1C20_config : unconfig
1834 @./mkconfig PK1C20 nios2 nios2 pk1c20 psyent
1835
1836PCI5441_config : unconfig
1837 @./mkconfig PCI5441 nios2 nios2 pci5441 psyent
wdenk12490652004-04-18 21:13:41 +00001838
1839#========================================================================
1840# MicroBlaze
1841#========================================================================
1842#########################################################################
1843## Microblaze
1844#########################################################################
1845suzaku_config: unconfig
1846 @ >include/config.h
1847 @echo "#define CONFIG_SUZAKU 1" >> include/config.h
1848 @./mkconfig -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
wdenk60164a82003-10-08 23:26:14 +00001849
wdenkb02744a2003-04-05 00:53:31 +00001850#########################################################################
1851#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001852
1853clean:
1854 find . -type f \
1855 \( -name 'core' -o -name '*.bak' -o -name '*~' \
1856 -o -name '*.o' -o -name '*.a' \) -print \
1857 | xargs rm -f
wdenk8dba0502003-03-31 16:34:49 +00001858 rm -f examples/hello_world examples/timer \
wdenkb02744a2003-04-05 00:53:31 +00001859 examples/eepro100_eeprom examples/sched \
wdenkeb8f2fb2005-05-09 10:17:32 +00001860 examples/mem_to_mem_idma2intr examples/82559_eeprom \
1861 examples/test_burst
wdenk7ebf7442002-11-02 23:17:16 +00001862 rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr
wdenka0ebde52004-09-08 22:03:11 +00001863 rm -f tools/mpc86x_clk tools/ncb
wdenk7ebf7442002-11-02 23:17:16 +00001864 rm -f tools/easylogo/easylogo tools/bmp_logo
1865 rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend
wdenk9dfa8d12002-12-08 09:53:23 +00001866 rm -f tools/env/fw_printenv tools/env/fw_setenv
wdenk0893c472003-05-20 14:25:27 +00001867 rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image
Wolfgang Denkfc27b5b2005-08-13 18:36:17 +02001868 rm -f board/trab/trab_fkt board/voiceblue/eeprom
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +02001869 rm -f board/integratorap/u-boot.lds board/integratorcp/u-boot.lds
Markus Klotzbüchered29b6d2006-02-22 14:05:44 +01001870 rm -f u-boot.objdump-*
wdenk7ebf7442002-11-02 23:17:16 +00001871
1872clobber: clean
wdenkaeba06f2004-06-09 17:34:58 +00001873 find . -type f \( -name .depend \
1874 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
1875 -print0 \
1876 | xargs -0 rm -f
Wolfgang Denk4d1d9a32006-02-21 17:33:04 +01001877 rm -f $(OBJS) *.bak tags TAGS include/version_autogenerated.h
Markus Klotzbücherc1212142006-02-24 11:34:34 +01001878
wdenk7ebf7442002-11-02 23:17:16 +00001879 rm -fr *.*~
wdenk68005192005-01-09 21:28:15 +00001880 rm -f u-boot u-boot.map u-boot.hex $(ALL)
wdenk9dfa8d12002-12-08 09:53:23 +00001881 rm -f tools/crc32.c tools/environment.c tools/env/crc32.c
wdenkb02744a2003-04-05 00:53:31 +00001882 rm -f tools/inca-swap-bytes cpu/mpc824x/bedbug_603e.c
wdenkbb2d9272003-06-25 22:26:29 +00001883 rm -f include/asm/proc include/asm/arch include/asm
wdenk7ebf7442002-11-02 23:17:16 +00001884
1885mrproper \
1886distclean: clobber unconfig
1887
1888backup:
1889 F=`basename $(TOPDIR)` ; cd .. ; \
1890 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
1891
1892#########################################################################