blob: bb62b0e25d16a572b655247101513a78fef8bf45 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
wdenk1ebf41e2004-01-02 14:00:00 +00002# (C) Copyright 2000-2004
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
24HOSTARCH := $(shell uname -m | \
25 sed -e s/i.86/i386/ \
26 -e s/sun4u/sparc64/ \
27 -e s/arm.*/arm/ \
28 -e s/sa110/arm/ \
29 -e s/powerpc/ppc/ \
30 -e s/macppc/ppc/)
31
32HOSTOS := $(shell uname -s | tr A-Z a-z | \
33 sed -e 's/\(cygwin\).*/cygwin/')
34
35export HOSTARCH
36
37# Deal with colliding definitions from tcsh etc.
38VENDOR=
39
40#########################################################################
41
42TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
43export TOPDIR
44
45ifeq (include/config.mk,$(wildcard include/config.mk))
46# load ARCH, BOARD, and CPU configuration
47include include/config.mk
48export ARCH CPU BOARD VENDOR
49# load other configuration
50include $(TOPDIR)/config.mk
51
52ifndef CROSS_COMPILE
53ifeq ($(HOSTARCH),ppc)
54CROSS_COMPILE =
55else
wdenk7ebf7442002-11-02 23:17:16 +000056ifeq ($(ARCH),ppc)
57CROSS_COMPILE = ppc_8xx-
58endif
59ifeq ($(ARCH),arm)
wdenkc8434db2003-03-26 06:55:25 +000060CROSS_COMPILE = arm-linux-
wdenk7ebf7442002-11-02 23:17:16 +000061endif
wdenk591dda52002-11-18 00:14:45 +000062ifeq ($(ARCH),i386)
wdenkabda5ca2003-05-31 18:35:21 +000063ifeq ($(HOSTARCH),i386)
64CROSS_COMPILE =
65else
66CROSS_COMPILE = i386-linux-
67endif
wdenk7ebf7442002-11-02 23:17:16 +000068endif
wdenk4a5c8a72003-03-06 00:02:04 +000069ifeq ($(ARCH),mips)
70CROSS_COMPILE = mips_4KC-
wdenk7ebf7442002-11-02 23:17:16 +000071endif
wdenk60164a82003-10-08 23:26:14 +000072ifeq ($(ARCH),nios)
73CROSS_COMPILE = nios-elf-
wdenk591dda52002-11-18 00:14:45 +000074endif
wdenkabf7a7c2003-12-08 01:34:36 +000075ifeq ($(ARCH),m68k)
76CROSS_COMPILE = m68k-elf-
wdenk4a5c8a72003-03-06 00:02:04 +000077endif
wdenk60164a82003-10-08 23:26:14 +000078endif
wdenkabf7a7c2003-12-08 01:34:36 +000079endif
wdenk7ebf7442002-11-02 23:17:16 +000080
81export CROSS_COMPILE
82
wdenk7ebf7442002-11-02 23:17:16 +000083#########################################################################
84# U-Boot objects....order is important (i.e. start must be first)
85
wdenk7f00b942003-12-07 23:55:12 +000086OBJS = cpu/$(CPU)/start.o
wdenk591dda52002-11-18 00:14:45 +000087ifeq ($(CPU),i386)
wdenk7f00b942003-12-07 23:55:12 +000088OBJS += cpu/$(CPU)/start16.o
89OBJS += cpu/$(CPU)/reset.o
wdenk591dda52002-11-18 00:14:45 +000090endif
wdenk7ebf7442002-11-02 23:17:16 +000091ifeq ($(CPU),ppc4xx)
wdenk7f00b942003-12-07 23:55:12 +000092OBJS += cpu/$(CPU)/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +000093endif
wdenk9c53f402003-10-15 23:53:47 +000094ifeq ($(CPU),mpc85xx)
95OBJS += cpu/$(CPU)/resetvec.o
96endif
wdenk7ebf7442002-11-02 23:17:16 +000097
wdenk7f00b942003-12-07 23:55:12 +000098LIBS = lib_generic/libgeneric.a
99LIBS += board/$(BOARDDIR)/lib$(BOARD).a
wdenk7ebf7442002-11-02 23:17:16 +0000100LIBS += cpu/$(CPU)/lib$(CPU).a
101LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk7a428cc2003-06-15 22:40:42 +0000102LIBS += fs/jffs2/libjffs2.a fs/fdos/libfdos.a fs/fat/libfat.a
wdenk7ebf7442002-11-02 23:17:16 +0000103LIBS += net/libnet.a
104LIBS += disk/libdisk.a
105LIBS += rtc/librtc.a
106LIBS += dtt/libdtt.a
107LIBS += drivers/libdrivers.a
wdenkeb20ad32003-09-05 23:19:14 +0000108LIBS += drivers/sk98lin/libsk98lin.a
wdenk7ebf7442002-11-02 23:17:16 +0000109LIBS += post/libpost.a post/cpu/libcpu.a
110LIBS += common/libcommon.a
wdenk7f00b942003-12-07 23:55:12 +0000111.PHONY : $(LIBS)
wdenkc0aa5c52003-12-06 19:49:23 +0000112
wdenk4cc02a82003-09-11 23:06:34 +0000113# Add GCC lib
wdenk49c3f672003-10-08 22:33:00 +0000114PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
wdenk7ebf7442002-11-02 23:17:16 +0000115
wdenkc0aa5c52003-12-06 19:49:23 +0000116# The "tools" are needed early, so put this first
117# Don't include stuff already done in $(LIBS)
118SUBDIRS = tools \
119 examples \
120 post \
121 post/cpu
wdenk444f22b2003-12-07 21:39:28 +0000122.PHONY : $(SUBDIRS)
wdenkc0aa5c52003-12-06 19:49:23 +0000123
wdenk7ebf7442002-11-02 23:17:16 +0000124#########################################################################
wdenk0a658552003-08-05 17:43:17 +0000125#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000126
wdenk0a658552003-08-05 17:43:17 +0000127ALL = u-boot.srec u-boot.bin System.map
wdenk7ebf7442002-11-02 23:17:16 +0000128
wdenk0a658552003-08-05 17:43:17 +0000129all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000130
131u-boot.srec: u-boot
132 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
133
134u-boot.bin: u-boot
135 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
136
wdenk0a658552003-08-05 17:43:17 +0000137u-boot.img: u-boot.bin
138 ./tools/mkimage -A $(ARCH) -T firmware -C none \
139 -a $(TEXT_BASE) -e 0 \
140 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' include/version.h | \
141 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
142 -d $< $@
143
wdenk7ebf7442002-11-02 23:17:16 +0000144u-boot.dis: u-boot
145 $(OBJDUMP) -d $< > $@
146
wdenkc0aa5c52003-12-06 19:49:23 +0000147u-boot: depend $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
wdenk57b2d802003-06-27 21:31:46 +0000148 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
149 $(LD) $(LDFLAGS) $$UNDEF_SYM $(OBJS) \
wdenkeb20ad32003-09-05 23:19:14 +0000150 --start-group $(LIBS) $(PLATFORM_LIBS) --end-group \
wdenk67ff36c2002-11-19 23:01:07 +0000151 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000152
wdenkc0aa5c52003-12-06 19:49:23 +0000153$(LIBS):
154 $(MAKE) -C `dirname $@`
155
156$(SUBDIRS):
wdenk444f22b2003-12-07 21:39:28 +0000157 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000158
dzu9b10ef982003-08-07 14:20:31 +0000159gdbtools:
160 $(MAKE) -C tools/gdb || exit 1
161
wdenk7ebf7442002-11-02 23:17:16 +0000162depend dep:
163 @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done
164
165tags:
166 ctags -w `find $(SUBDIRS) include \
167 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
168
169etags:
170 etags -a `find $(SUBDIRS) include \
171 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
172
173System.map: u-boot
174 @$(NM) $< | \
175 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
176 sort > System.map
177
178#########################################################################
179else
180all install u-boot u-boot.srec depend dep:
181 @echo "System not configured - see README" >&2
182 @ exit 1
183endif
184
185#########################################################################
186
187unconfig:
188 rm -f include/config.h include/config.mk
189
190#========================================================================
191# PowerPC
192#========================================================================
wdenk359733b2003-03-31 17:27:09 +0000193
194#########################################################################
195## MPC5xx Systems
196#########################################################################
197
198cmi_mpc5xx_config: unconfig
199 @./mkconfig $(@:_config=) ppc mpc5xx cmi
200
wdenk7ebf7442002-11-02 23:17:16 +0000201#########################################################################
wdenk21136db2003-07-16 21:53:01 +0000202## MPC5xxx Systems
203#########################################################################
wdenk4b16c2e2003-11-07 13:42:26 +0000204MPC5200LITE_config \
205MPC5200LITE_LOWBOOT_config \
206MPC5200LITE_LOWBOOT08_config \
wdenk1ebf41e2004-01-02 14:00:00 +0000207icecube_5200_DDR_LOWBOOT_config \
wdenk236d3fc2003-12-20 22:45:10 +0000208icecube_5200_DDR_config \
209IceCube_5200_DDR_config \
wdenk4b16c2e2003-11-07 13:42:26 +0000210icecube_5200_config \
211IceCube_5200_config \
wdenk21136db2003-07-16 21:53:01 +0000212IceCube_5100_config: unconfig
213 @ >include/config.h
wdenk4b16c2e2003-11-07 13:42:26 +0000214 @[ -z "$(findstring LOWBOOT,$@)" ] || \
215 { echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \
216 echo "... with LOWBOOT configuration" ; \
217 }
218 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
219 { echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
220 echo "... with 8 MB flash only" ; \
221 }
wdenk236d3fc2003-12-20 22:45:10 +0000222 @[ -z "$(findstring DDR,$@)" ] || \
223 { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
224 echo "... DDR memory revision" ; \
225 }
wdenk1ebf41e2004-01-02 14:00:00 +0000226 @[ -z "$(findstring 5200,$@)" ] || \
227 { echo "#define CONFIG_MPC5200" >>include/config.h ; \
228 echo "... with MPC5200 processor" ; \
229 }
wdenk55618472003-10-28 09:14:21 +0000230 @[ -z "$(findstring 5100,$@)" ] || \
wdenk21136db2003-07-16 21:53:01 +0000231 { echo "#define CONFIG_MGT5100" >>include/config.h ; \
232 echo "... with MGT5100 processor" ; \
233 }
234 @./mkconfig -a IceCube ppc mpc5xxx icecube
235
wdenk1ebf41e2004-01-02 14:00:00 +0000236MINI5200_config \
237EVAL5200_config \
238TOP5200_config: unconfig
239 @ echo "#define CONFIG_$(@:_config=) 1" >include/config.h
240 @./mkconfig -a TOP5200 ppc mpc5xxx top5200 emk
241
wdenk21136db2003-07-16 21:53:01 +0000242#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000243## MPC8xx Systems
244#########################################################################
245
wdenk84650f52003-08-30 00:05:50 +0000246AdderII_config: unconfig
247 @./mkconfig $(@:_config=) ppc mpc8xx adderII
248
wdenk7ebf7442002-11-02 23:17:16 +0000249ADS860_config: unconfig
250 @./mkconfig $(@:_config=) ppc mpc8xx fads
251
252AMX860_config : unconfig
253 @./mkconfig $(@:_config=) ppc mpc8xx amx860 westel
254
wdenkc0d54ae2003-11-25 16:55:19 +0000255bms2003_config : unconfig
256 @echo "#define CONFIG_BMS2003" >include/config.h
257 @echo "#define CONFIG_LCD" >>include/config.h
258 @echo "#define CONFIG_NEC_NL6448BC33_54" >>include/config.h
259 @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
260
wdenk7ebf7442002-11-02 23:17:16 +0000261c2mon_config: unconfig
262 @./mkconfig $(@:_config=) ppc mpc8xx c2mon
263
264CCM_config: unconfig
265 @./mkconfig $(@:_config=) ppc mpc8xx CCM siemens
266
267cogent_mpc8xx_config: unconfig
268 @./mkconfig $(@:_config=) ppc mpc8xx cogent
269
wdenkef5fe752003-03-12 10:41:04 +0000270ELPT860_config: unconfig
271 @./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX
272
wdenk7ebf7442002-11-02 23:17:16 +0000273ESTEEM192E_config: unconfig
274 @./mkconfig $(@:_config=) ppc mpc8xx esteem192e
275
276ETX094_config : unconfig
277 @./mkconfig $(@:_config=) ppc mpc8xx etx094
278
279FADS823_config \
280FADS850SAR_config \
wdenk2bb11052003-07-17 23:16:40 +0000281MPC86xADS_config \
wdenk7ebf7442002-11-02 23:17:16 +0000282FADS860T_config: unconfig
283 @./mkconfig $(@:_config=) ppc mpc8xx fads
284
285FLAGADM_config: unconfig
286 @./mkconfig $(@:_config=) ppc mpc8xx flagadm
287
wdenk541a76d2003-05-03 15:50:43 +0000288xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
289
290GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000291GEN860T_config: unconfig
wdenk541a76d2003-05-03 15:50:43 +0000292 @ >include/config.h
293 @[ -z "$(findstring _SC,$@)" ] || \
294 { echo "#define CONFIG_SC" >>include/config.h ; \
295 echo "With reduced H/W feature set (SC)..." ; \
296 }
297 @./mkconfig -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000298
299GENIETV_config: unconfig
300 @./mkconfig $(@:_config=) ppc mpc8xx genietv
301
302GTH_config: unconfig
303 @./mkconfig $(@:_config=) ppc mpc8xx gth
304
305hermes_config : unconfig
306 @./mkconfig $(@:_config=) ppc mpc8xx hermes
307
308IAD210_config: unconfig
309 @./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens
310
311xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
312
313ICU862_100MHz_config \
314ICU862_config: unconfig
315 @ >include/config.h
316 @[ -z "$(findstring _100MHz,$@)" ] || \
317 { echo "#define CONFIG_100MHz" >>include/config.h ; \
318 echo "... with 100MHz system clock" ; \
319 }
320 @./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
321
322IP860_config : unconfig
323 @./mkconfig $(@:_config=) ppc mpc8xx ip860
324
325IVML24_256_config \
326IVML24_128_config \
327IVML24_config: unconfig
328 @ >include/config.h
329 @[ -z "$(findstring IVML24_config,$@)" ] || \
330 { echo "#define CONFIG_IVML24_16M" >>include/config.h ; \
331 }
332 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
333 { echo "#define CONFIG_IVML24_32M" >>include/config.h ; \
334 }
335 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
336 { echo "#define CONFIG_IVML24_64M" >>include/config.h ; \
337 }
338 @./mkconfig -a IVML24 ppc mpc8xx ivm
339
340IVMS8_256_config \
341IVMS8_128_config \
342IVMS8_config: unconfig
343 @ >include/config.h
344 @[ -z "$(findstring IVMS8_config,$@)" ] || \
345 { echo "#define CONFIG_IVMS8_16M" >>include/config.h ; \
346 }
347 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
348 { echo "#define CONFIG_IVMS8_32M" >>include/config.h ; \
349 }
350 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
351 { echo "#define CONFIG_IVMS8_64M" >>include/config.h ; \
352 }
353 @./mkconfig -a IVMS8 ppc mpc8xx ivm
354
wdenk56f94be2002-11-05 16:35:14 +0000355KUP4K_config : unconfig
356 @./mkconfig $(@:_config=) ppc mpc8xx kup4k
357
wdenk7ebf7442002-11-02 23:17:16 +0000358LANTEC_config : unconfig
359 @./mkconfig $(@:_config=) ppc mpc8xx lantec
360
361lwmon_config: unconfig
362 @./mkconfig $(@:_config=) ppc mpc8xx lwmon
363
364MBX_config \
365MBX860T_config: unconfig
366 @./mkconfig $(@:_config=) ppc mpc8xx mbx8xx
367
368MHPC_config: unconfig
369 @./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec
370
371MVS1_config : unconfig
372 @./mkconfig $(@:_config=) ppc mpc8xx mvs1
373
wdenk70764a32003-06-26 22:04:09 +0000374xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
375
376NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000377NETVIA_config: unconfig
wdenk70764a32003-06-26 22:04:09 +0000378 @ >include/config.h
379 @[ -z "$(findstring NETVIA_config,$@)" ] || \
380 { echo "#define CONFIG_NETVIA_VERSION 1" >>include/config.h ; \
381 echo "... Version 1" ; \
382 }
383 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
384 { echo "#define CONFIG_NETVIA_VERSION 2" >>include/config.h ; \
385 echo "... Version 2" ; \
386 }
387 @./mkconfig -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000388
389NX823_config: unconfig
390 @./mkconfig $(@:_config=) ppc mpc8xx nx823
391
392pcu_e_config: unconfig
393 @./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens
394
wdenk174e0e52003-12-07 22:27:15 +0000395QS850_config: unconfig
396 @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
397
398QS823_config: unconfig
399 @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
400
401QS860T_config: unconfig
402 @./mkconfig $(@:_config=) ppc mpc8xx qs860t snmc
403
wdenk7ebf7442002-11-02 23:17:16 +0000404R360MPI_config: unconfig
405 @./mkconfig $(@:_config=) ppc mpc8xx r360mpi
406
wdenk4e112c12003-06-03 23:54:09 +0000407RBC823_config: unconfig
408 @./mkconfig $(@:_config=) ppc mpc8xx rbc823
409
wdenk7ebf7442002-11-02 23:17:16 +0000410RPXClassic_config: unconfig
411 @./mkconfig $(@:_config=) ppc mpc8xx RPXClassic
412
413RPXlite_config: unconfig
414 @./mkconfig $(@:_config=) ppc mpc8xx RPXlite
415
wdenke6466f62003-06-05 19:27:42 +0000416rmu_config: unconfig
417 @./mkconfig $(@:_config=) ppc mpc8xx rmu
418
wdenk7ebf7442002-11-02 23:17:16 +0000419RRvision_config: unconfig
420 @./mkconfig $(@:_config=) ppc mpc8xx RRvision
421
422RRvision_LCD_config: unconfig
423 @echo "#define CONFIG_LCD" >include/config.h
424 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
425 @./mkconfig -a RRvision ppc mpc8xx RRvision
426
427SM850_config : unconfig
428 @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
429
430SPD823TS_config: unconfig
431 @./mkconfig $(@:_config=) ppc mpc8xx spd8xx
432
wdenkc8434db2003-03-26 06:55:25 +0000433svm_sc8xx_config: unconfig
434 @ >include/config.h
435 @./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx
436
wdenk7ebf7442002-11-02 23:17:16 +0000437SXNI855T_config: unconfig
438 @./mkconfig $(@:_config=) ppc mpc8xx sixnet
439
wdenkb666c8f2003-03-06 00:58:30 +0000440# EMK MPC8xx based modules
441TOP860_config: unconfig
442 @./mkconfig $(@:_config=) ppc mpc8xx top860 emk
443
wdenk7ebf7442002-11-02 23:17:16 +0000444# Play some tricks for configuration selection
wdenke6466f62003-06-05 19:27:42 +0000445# All boards can come with 50 MHz (default), 66MHz, 80MHz or 100 MHz clock,
wdenk7ebf7442002-11-02 23:17:16 +0000446# but only 855 and 860 boards may come with FEC
447# and 823 boards may have LCD support
wdenk1ebf41e2004-01-02 14:00:00 +0000448xtract_8xx = $(subst _66MHz,,$(subst _80MHz,,$(subst _100MHz,,$(subst _133MHz,,$(subst _LCD,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +0000449
450FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000451FPS860L_config \
wdenk69141282003-07-07 20:07:54 +0000452NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +0000453TQM823L_config \
454TQM823L_66MHz_config \
455TQM823L_80MHz_config \
456TQM823L_LCD_config \
457TQM823L_LCD_66MHz_config \
458TQM823L_LCD_80MHz_config \
459TQM850L_config \
460TQM850L_66MHz_config \
461TQM850L_80MHz_config \
462TQM855L_config \
463TQM855L_66MHz_config \
464TQM855L_80MHz_config \
wdenk7ebf7442002-11-02 23:17:16 +0000465TQM860L_config \
466TQM860L_66MHz_config \
467TQM860L_80MHz_config \
wdenk6bd14892003-04-10 11:18:18 +0000468TQM862L_config \
469TQM862L_66MHz_config \
wdenke6466f62003-06-05 19:27:42 +0000470TQM862L_80MHz_config \
wdenkfb229ae2003-08-07 22:18:11 +0000471TQM823M_config \
472TQM823M_66MHz_config \
473TQM823M_80MHz_config \
474TQM850M_config \
475TQM850M_66MHz_config \
476TQM850M_80MHz_config \
wdenk69141282003-07-07 20:07:54 +0000477TQM855M_config \
478TQM855M_66MHz_config \
479TQM855M_80MHz_config \
480TQM860M_config \
481TQM860M_66MHz_config \
482TQM860M_80MHz_config \
483TQM862M_config \
484TQM862M_66MHz_config \
485TQM862M_80MHz_config \
wdenk1ebf41e2004-01-02 14:00:00 +0000486TQM862M_100MHz_config \
487TQM866M_config \
488TQM866M_66MHz_config \
489TQM866M_80MHz_config \
490TQM866M_100MHz_config \
491TQM866M_133MHz_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000492 @ >include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000493 @[ -z "$(findstring _66MHz,$@)" ] || \
494 { echo "#define CONFIG_66MHz" >>include/config.h ; \
495 echo "... with 66MHz system clock" ; \
496 }
497 @[ -z "$(findstring _80MHz,$@)" ] || \
498 { echo "#define CONFIG_80MHz" >>include/config.h ; \
499 echo "... with 80MHz system clock" ; \
500 }
wdenke6466f62003-06-05 19:27:42 +0000501 @[ -z "$(findstring _100MHz,$@)" ] || \
502 { echo "#define CONFIG_100MHz" >>include/config.h ; \
503 echo "... with 100MHz system clock" ; \
504 }
wdenk1ebf41e2004-01-02 14:00:00 +0000505 @[ -z "$(findstring _133MHz,$@)" ] || \
506 { echo "#define CONFIG_133MHz" >>include/config.h ; \
507 echo "... with 133MHz system clock" ; \
508 }
wdenk7ebf7442002-11-02 23:17:16 +0000509 @[ -z "$(findstring _LCD,$@)" ] || \
510 { echo "#define CONFIG_LCD" >>include/config.h ; \
wdenkc0d54ae2003-11-25 16:55:19 +0000511 echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000512 echo "... with LCD display" ; \
513 }
514 @./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
515
516TTTech_config: unconfig
517 @echo "#define CONFIG_LCD" >include/config.h
518 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
519 @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
520
wdenk2dad91b2003-01-13 23:54:46 +0000521v37_config: unconfig
522 @echo "#define CONFIG_LCD" >include/config.h
523 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h
524 @./mkconfig $(@:_config=) ppc mpc8xx v37
525
dzu69438f62003-09-25 22:32:40 +0000526wtk_config: unconfig
527 @echo "#define CONFIG_LCD" >include/config.h
528 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>include/config.h
529 @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
530
wdenk7ebf7442002-11-02 23:17:16 +0000531#########################################################################
532## PPC4xx Systems
533#########################################################################
wdenk7182b0f2003-10-06 21:55:32 +0000534xtract_4xx = $(subst _MODEL_BA,,$(subst _MODEL_ME,,$(subst _MODEL_HI,,$(subst _config,,$1))))
wdenk7ebf7442002-11-02 23:17:16 +0000535
536ADCIOP_config: unconfig
537 @./mkconfig $(@:_config=) ppc ppc4xx adciop esd
538
539AR405_config: unconfig
540 @./mkconfig $(@:_config=) ppc ppc4xx ar405 esd
541
stroesebfcc82b2003-05-23 11:41:44 +0000542ASH405_config: unconfig
543 @./mkconfig $(@:_config=) ppc ppc4xx ash405 esd
544
545BUBINGA405EP_config:unconfig
546 @./mkconfig $(@:_config=) ppc ppc4xx bubinga405ep
547
wdenk7ebf7442002-11-02 23:17:16 +0000548CANBT_config: unconfig
549 @./mkconfig $(@:_config=) ppc ppc4xx canbt esd
550
stroesebfcc82b2003-05-23 11:41:44 +0000551CPCI405_config \
552CPCI4052_config \
553CPCI405AB_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000554 @./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd
555 @echo "BOARD_REVISION = $(@:_config=)" >>include/config.mk
556
557CPCI440_config: unconfig
558 @./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd
559
560CPCIISER4_config: unconfig
561 @./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd
562
563CRAYL1_config:unconfig
564 @./mkconfig $(@:_config=) ppc ppc4xx L1 cray
565
566DASA_SIM_config: unconfig
567 @./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd
568
stroese3361eb72003-09-12 08:57:15 +0000569DP405_config: unconfig
570 @./mkconfig $(@:_config=) ppc ppc4xx dp405 esd
571
wdenk7ebf7442002-11-02 23:17:16 +0000572DU405_config: unconfig
573 @./mkconfig $(@:_config=) ppc ppc4xx du405 esd
574
575EBONY_config:unconfig
576 @./mkconfig $(@:_config=) ppc ppc4xx ebony
577
578ERIC_config:unconfig
579 @./mkconfig $(@:_config=) ppc ppc4xx eric
580
wdenkd9fce812003-06-28 17:24:46 +0000581EXBITGEN_config:unconfig
582 @./mkconfig $(@:_config=) ppc ppc4xx exbitgen
583
stroese3361eb72003-09-12 08:57:15 +0000584HUB405_config: unconfig
585 @./mkconfig $(@:_config=) ppc ppc4xx hub405 esd
586
wdenk7ebf7442002-11-02 23:17:16 +0000587MIP405_config:unconfig
588 @./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl
589
wdenke39c2842003-06-04 15:05:30 +0000590MIP405T_config:unconfig
591 @echo "#define CONFIG_MIP405T" >include/config.h
592 @echo "Enable subset config for MIP405T"
593 @./mkconfig -a MIP405 ppc ppc4xx mip405 mpl
594
wdenk7ebf7442002-11-02 23:17:16 +0000595ML2_config:unconfig
596 @./mkconfig $(@:_config=) ppc ppc4xx ml2
597
598OCRTC_config \
599ORSG_config: unconfig
600 @./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd
601
602PCI405_config: unconfig
603 @./mkconfig $(@:_config=) ppc ppc4xx pci405 esd
604
605PIP405_config:unconfig
606 @./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl
607
stroese3361eb72003-09-12 08:57:15 +0000608PLU405_config: unconfig
609 @./mkconfig $(@:_config=) ppc ppc4xx plu405 esd
610
stroesebfcc82b2003-05-23 11:41:44 +0000611PMC405_config: unconfig
612 @./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd
613
wdenk7182b0f2003-10-06 21:55:32 +0000614PPChameleonEVB_MODEL_BA_config \
615PPChameleonEVB_MODEL_ME_config \
616PPChameleonEVB_MODEL_HI_config \
wdenk232fe0b2003-09-02 22:48:03 +0000617PPChameleonEVB_config: unconfig
wdenk7182b0f2003-10-06 21:55:32 +0000618 @ >include/config.h
619 @[ -z "$(findstring _MODEL_BA,$@)" ] || \
620 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>include/config.h ; \
621 echo "... BASIC model" ; \
622 }
623 @[ -z "$(findstring _MODEL_ME,$@)" ] || \
624 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>include/config.h ; \
625 echo "... MEDIUM model" ; \
626 }
627 @[ -z "$(findstring _MODEL_HI,$@)" ] || \
628 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>include/config.h ; \
629 echo "... HIGH-END model" ; \
630 }
631 @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk232fe0b2003-09-02 22:48:03 +0000632
stroese3361eb72003-09-12 08:57:15 +0000633VOH405_config: unconfig
634 @./mkconfig $(@:_config=) ppc ppc4xx voh405 esd
635
wdenk7ebf7442002-11-02 23:17:16 +0000636W7OLMC_config \
637W7OLMG_config: unconfig
638 @./mkconfig $(@:_config=) ppc ppc4xx w7o
639
640WALNUT405_config:unconfig
641 @./mkconfig $(@:_config=) ppc ppc4xx walnut405
642
643#########################################################################
644## MPC824x Systems
645#########################################################################
wdenkef5fe752003-03-12 10:41:04 +0000646xtract_82xx = $(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1)))))
647
wdenk8aeb24e2003-06-20 22:36:30 +0000648A3000_config: unconfig
649 @./mkconfig $(@:_config=) ppc mpc824x a3000
650
wdenk7ebf7442002-11-02 23:17:16 +0000651BMW_config: unconfig
652 @./mkconfig $(@:_config=) ppc mpc824x bmw
653
wdenkef5fe752003-03-12 10:41:04 +0000654CPC45_config \
655CPC45_ROMBOOT_config: unconfig
656 @./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45
657 @cd ./include ; \
658 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
659 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
660 echo "... booting from 8-bit flash" ; \
661 else \
662 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
663 echo "... booting from 64-bit flash" ; \
664 fi; \
665 echo "export CONFIG_BOOT_ROM" >> config.mk;
666
wdenk7ebf7442002-11-02 23:17:16 +0000667CU824_config: unconfig
668 @./mkconfig $(@:_config=) ppc mpc824x cu824
669
670MOUSSE_config: unconfig
671 @./mkconfig $(@:_config=) ppc mpc824x mousse
672
673MUSENKI_config: unconfig
674 @./mkconfig $(@:_config=) ppc mpc824x musenki
675
wdenk4e7a58a2003-12-07 19:24:00 +0000676MVBLUE_config: unconfig
677 @./mkconfig $(@:_config=) ppc mpc824x mvblue
678
wdenk7ebf7442002-11-02 23:17:16 +0000679OXC_config: unconfig
680 @./mkconfig $(@:_config=) ppc mpc824x oxc
681
682PN62_config: unconfig
683 @./mkconfig $(@:_config=) ppc mpc824x pn62
684
685Sandpoint8240_config: unconfig
686 @./mkconfig $(@:_config=) ppc mpc824x sandpoint
687
688Sandpoint8245_config: unconfig
689 @./mkconfig $(@:_config=) ppc mpc824x sandpoint
690
wdenkd9fce812003-06-28 17:24:46 +0000691SL8245_config: unconfig
692 @./mkconfig $(@:_config=) ppc mpc824x sl8245
693
wdenk7ebf7442002-11-02 23:17:16 +0000694utx8245_config: unconfig
695 @./mkconfig $(@:_config=) ppc mpc824x utx8245
696
697#########################################################################
698## MPC8260 Systems
699#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000700
wdenk2f0812d2003-10-08 22:45:44 +0000701atc_config: unconfig
702 @./mkconfig $(@:_config=) ppc mpc8260 atc
703
wdenk7ebf7442002-11-02 23:17:16 +0000704cogent_mpc8260_config: unconfig
705 @./mkconfig $(@:_config=) ppc mpc8260 cogent
706
707CPU86_config \
708CPU86_ROMBOOT_config: unconfig
709 @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86
710 @cd ./include ; \
711 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
712 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
713 echo "... booting from 8-bit flash" ; \
714 else \
715 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
716 echo "... booting from 64-bit flash" ; \
717 fi; \
718 echo "export CONFIG_BOOT_ROM" >> config.mk;
719
720ep8260_config: unconfig
721 @./mkconfig $(@:_config=) ppc mpc8260 ep8260
722
723gw8260_config: unconfig
724 @./mkconfig $(@:_config=) ppc mpc8260 gw8260
725
726hymod_config: unconfig
727 @./mkconfig $(@:_config=) ppc mpc8260 hymod
728
729IPHASE4539_config: unconfig
730 @./mkconfig $(@:_config=) ppc mpc8260 iphase4539
731
732MPC8260ADS_config: unconfig
733 @./mkconfig $(@:_config=) ppc mpc8260 mpc8260ads
734
wdenkb666c8f2003-03-06 00:58:30 +0000735MPC8266ADS_config: unconfig
736 @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads
737
wdenk4b57dcc2003-03-25 18:06:06 +0000738PM825_config \
739PM825_ROMBOOT_config: unconfig
740 @echo "#define CONFIG_PCI" >include/config.h
741 @./mkconfig -a PM826 ppc mpc8260 pm826
742 @cd ./include ; \
743 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
744 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
745 echo "... booting from 8-bit flash" ; \
746 else \
747 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
748 echo "... booting from 64-bit flash" ; \
749 fi; \
750 echo "export CONFIG_BOOT_ROM" >> config.mk; \
751
wdenk7ebf7442002-11-02 23:17:16 +0000752PM826_config \
753PM826_ROMBOOT_config: unconfig
754 @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 pm826
755 @cd ./include ; \
756 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
757 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
758 echo "... booting from 8-bit flash" ; \
759 else \
760 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
761 echo "... booting from 64-bit flash" ; \
762 fi; \
763 echo "export CONFIG_BOOT_ROM" >> config.mk; \
764
765ppmc8260_config: unconfig
766 @./mkconfig $(@:_config=) ppc mpc8260 ppmc8260
767
768RPXsuper_config: unconfig
769 @./mkconfig $(@:_config=) ppc mpc8260 rpxsuper
770
771rsdproto_config: unconfig
772 @./mkconfig $(@:_config=) ppc mpc8260 rsdproto
773
774sacsng_config: unconfig
775 @./mkconfig $(@:_config=) ppc mpc8260 sacsng
776
777sbc8260_config: unconfig
778 @./mkconfig $(@:_config=) ppc mpc8260 sbc8260
779
780SCM_config: unconfig
781 @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens
782
wdenk874ac262003-07-24 23:38:38 +0000783TQM8255_AA_config \
784TQM8260_AA_config \
785TQM8260_AB_config \
786TQM8260_AC_config \
787TQM8260_AD_config \
788TQM8260_AE_config \
789TQM8260_AF_config \
790TQM8260_AG_config \
791TQM8260_AH_config \
792TQM8265_AA_config: unconfig
793 @case "$@" in \
794 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
795 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
796 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
797 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
798 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
799 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
800 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
801 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
802 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
803 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
804 esac; \
805 >include/config.h ; \
806 if [ "$${CTYPE}" != "MPC8260" ] ; then \
807 echo "#define CONFIG_$${CTYPE}" >>include/config.h ; \
808 fi; \
809 echo "#define CONFIG_$${CFREQ}MHz" >>include/config.h ; \
810 echo "... with $${CFREQ}MHz system clock" ; \
811 if [ "$${CACHE}" == "yes" ] ; then \
wdenk7ebf7442002-11-02 23:17:16 +0000812 echo "#define CONFIG_L2_CACHE" >>include/config.h ; \
wdenk874ac262003-07-24 23:38:38 +0000813 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +0000814 else \
815 echo "#undef CONFIG_L2_CACHE" >>include/config.h ; \
816 echo "... without L2 Cache support" ; \
wdenk874ac262003-07-24 23:38:38 +0000817 fi; \
818 if [ "$${BMODE}" == "60x" ] ; then \
819 echo "#define CONFIG_BUSMODE_60x" >>include/config.h ; \
820 echo "... with 60x Bus Mode" ; \
821 else \
822 echo "#undef CONFIG_BUSMODE_60x" >>include/config.h ; \
823 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +0000824 fi
wdenkc08f1582003-04-27 22:52:51 +0000825 @./mkconfig -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +0000826
wdenk2f0812d2003-10-08 22:45:44 +0000827ZPC1900_config: unconfig
828 @./mkconfig $(@:_config=) ppc mpc8260 zpc1900
wdenk541a76d2003-05-03 15:50:43 +0000829
wdenkabf7a7c2003-12-08 01:34:36 +0000830#========================================================================
831# M68K
832#========================================================================
833#########################################################################
834## Coldfire
835#########################################################################
836
837M5272C3_config : unconfig
838 @./mkconfig $(@:_config=) m68k coldfire m5272c3
839
840M5282EVB_config : unconfig
841 @./mkconfig $(@:_config=) m68k coldfire m5282evb
842
wdenk7ebf7442002-11-02 23:17:16 +0000843#########################################################################
wdenk9c53f402003-10-15 23:53:47 +0000844## MPC85xx Systems
845#########################################################################
846
847MPC8540ADS_config: unconfig
848 @./mkconfig $(@:_config=) ppc mpc85xx mpc8540ads
849
850MPC8560ADS_config: unconfig
851 @./mkconfig $(@:_config=) ppc mpc85xx mpc8560ads
852
853#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000854## 74xx/7xx Systems
855#########################################################################
856
wdenk452cfd62002-11-19 11:04:11 +0000857AmigaOneG3SE_config: unconfig
858 @./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
859
wdenk9f837932003-10-09 19:00:25 +0000860BAB7xx_config: unconfig
861 @./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec
862
863debris_config: unconfig
864 @./mkconfig $(@:_config=) ppc mpc824x debris etin
865
866ELPPC_config: unconfig
867 @./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec
868
wdenk7ebf7442002-11-02 23:17:16 +0000869EVB64260_config \
870EVB64260_750CX_config: unconfig
871 @./mkconfig EVB64260 ppc 74xx_7xx evb64260
872
wdenk9f837932003-10-09 19:00:25 +0000873P3G4_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000874 @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
875
876PCIPPC2_config \
877PCIPPC6_config: unconfig
878 @./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2
879
wdenk9f837932003-10-09 19:00:25 +0000880ZUMA_config: unconfig
wdenk232fe0b2003-09-02 22:48:03 +0000881 @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
882
wdenk7ebf7442002-11-02 23:17:16 +0000883#========================================================================
884# ARM
885#========================================================================
886#########################################################################
887## StrongARM Systems
888#########################################################################
889
wdenkc8434db2003-03-26 06:55:25 +0000890at91rm9200dk_config : unconfig
891 @./mkconfig $(@:_config=) arm at91rm9200 at91rm9200dk
892
wdenk7ebf7442002-11-02 23:17:16 +0000893lart_config : unconfig
894 @./mkconfig $(@:_config=) arm sa1100 lart
895
896dnp1110_config : unconfig
897 @./mkconfig $(@:_config=) arm sa1100 dnp1110
898
899shannon_config : unconfig
900 @./mkconfig $(@:_config=) arm sa1100 shannon
901
902#########################################################################
wdenkf6f96f72003-07-15 20:04:06 +0000903## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +0000904#########################################################################
905
wdenkb6b2f0e2003-09-17 22:48:07 +0000906xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk4a5c8a72003-03-06 00:02:04 +0000907
wdenkf6f96f72003-07-15 20:04:06 +0000908omap1510inn_config : unconfig
909 @./mkconfig $(@:_config=) arm arm925t omap1510inn
910
wdenk7eaacc52003-08-29 22:00:43 +0000911omap1610inn_config : unconfig
912 @./mkconfig $(@:_config=) arm arm926ejs omap1610inn
913
wdenk7ebf7442002-11-02 23:17:16 +0000914smdk2400_config : unconfig
915 @./mkconfig $(@:_config=) arm arm920t smdk2400
916
917smdk2410_config : unconfig
918 @./mkconfig $(@:_config=) arm arm920t smdk2410
919
wdenk236d3fc2003-12-20 22:45:10 +0000920# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk4a5c8a72003-03-06 00:02:04 +0000921trab_config \
wdenkb6b2f0e2003-09-17 22:48:07 +0000922trab_bigram_config \
923trab_bigflash_config \
wdenkf6a6ac12003-09-17 15:10:32 +0000924trab_old_config: unconfig
wdenk4a5c8a72003-03-06 00:02:04 +0000925 @ >include/config.h
wdenkb6b2f0e2003-09-17 22:48:07 +0000926 @[ -z "$(findstring _bigram,$@)" ] || \
wdenk236d3fc2003-12-20 22:45:10 +0000927 { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
928 echo "#define CONFIG_RAM_32MB" >>include/config.h ; \
wdenkb6b2f0e2003-09-17 22:48:07 +0000929 echo "... with 8 MB Flash, 32 MB RAM" ; \
930 }
931 @[ -z "$(findstring _bigflash,$@)" ] || \
wdenk236d3fc2003-12-20 22:45:10 +0000932 { echo "#define CONFIG_FLASH_16MB" >>include/config.h ; \
933 echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
wdenkb6b2f0e2003-09-17 22:48:07 +0000934 echo "... with 16 MB Flash, 16 MB RAM" ; \
wdenkc0aa5c52003-12-06 19:49:23 +0000935 echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
wdenkb6b2f0e2003-09-17 22:48:07 +0000936 }
wdenkf6a6ac12003-09-17 15:10:32 +0000937 @[ -z "$(findstring _old,$@)" ] || \
wdenk236d3fc2003-12-20 22:45:10 +0000938 { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
939 echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
940 echo "... with 8 MB Flash, 16 MB RAM" ; \
wdenkc0aa5c52003-12-06 19:49:23 +0000941 echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
wdenk4a5c8a72003-03-06 00:02:04 +0000942 }
943 @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab
wdenk7ebf7442002-11-02 23:17:16 +0000944
wdenk1fe2c702003-03-06 21:55:29 +0000945VCMA9_config : unconfig
946 @./mkconfig $(@:_config=) arm arm920t vcma9 mpl
947
wdenk7ebf7442002-11-02 23:17:16 +0000948#########################################################################
949## ARM720T Systems
950#########################################################################
951
952impa7_config : unconfig
953 @./mkconfig $(@:_config=) arm arm720t impa7
954
955ep7312_config : unconfig
956 @./mkconfig $(@:_config=) arm arm720t ep7312
957
958#########################################################################
wdenk4a5c8a72003-03-06 00:02:04 +0000959## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +0000960#########################################################################
961
wdenk7ebf7442002-11-02 23:17:16 +0000962cradle_config : unconfig
wdenk57b2d802003-06-27 21:31:46 +0000963 @./mkconfig $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +0000964
965csb226_config : unconfig
wdenk0463e042003-05-23 12:36:20 +0000966 @./mkconfig $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +0000967
wdenk4a5c8a72003-03-06 00:02:04 +0000968innokom_config : unconfig
wdenk0463e042003-05-23 12:36:20 +0000969 @./mkconfig $(@:_config=) arm pxa innokom
wdenk4a5c8a72003-03-06 00:02:04 +0000970
wdenkbd1575f2003-10-14 19:43:55 +0000971ixdp425_config : unconfig
972 @./mkconfig $(@:_config=) arm ixp ixdp425
973
wdenk4a5c8a72003-03-06 00:02:04 +0000974lubbock_config : unconfig
wdenk0463e042003-05-23 12:36:20 +0000975 @./mkconfig $(@:_config=) arm pxa lubbock
wdenk4a5c8a72003-03-06 00:02:04 +0000976
wdenk88e72a32003-06-19 23:04:19 +0000977logodl_config : unconfig
978 @./mkconfig $(@:_config=) arm pxa logodl
979
wdenkb02744a2003-04-05 00:53:31 +0000980wepep250_config : unconfig
wdenk0463e042003-05-23 12:36:20 +0000981 @./mkconfig $(@:_config=) arm pxa wepep250
wdenkb02744a2003-04-05 00:53:31 +0000982
wdenk591dda52002-11-18 00:14:45 +0000983#========================================================================
984# i386
985#========================================================================
986#########################################################################
wdenk1fe2c702003-03-06 21:55:29 +0000987## AMD SC520 CDP
wdenk591dda52002-11-18 00:14:45 +0000988#########################################################################
989sc520_cdp_config : unconfig
990 @./mkconfig $(@:_config=) i386 i386 sc520_cdp
991
wdenkabda5ca2003-05-31 18:35:21 +0000992sc520_spunk_config : unconfig
993 @./mkconfig $(@:_config=) i386 i386 sc520_spunk
994
995sc520_spunk_rel_config : unconfig
996 @./mkconfig $(@:_config=) i386 i386 sc520_spunk
997
wdenk4a5c8a72003-03-06 00:02:04 +0000998#========================================================================
999# MIPS
1000#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00001001#########################################################################
wdenk4a5c8a72003-03-06 00:02:04 +00001002## MIPS32 4Kc
1003#########################################################################
1004
wdenk5d841732003-08-17 18:55:18 +00001005xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
1006
1007incaip_100MHz_config \
1008incaip_133MHz_config \
1009incaip_150MHz_config \
1010incaip_config: unconfig
1011 @ >include/config.h
1012 @[ -z "$(findstring _100MHz,$@)" ] || \
1013 { echo "#define CPU_CLOCK_RATE 100000000" >>include/config.h ; \
1014 echo "... with 100MHz system clock" ; \
1015 }
1016 @[ -z "$(findstring _133MHz,$@)" ] || \
1017 { echo "#define CPU_CLOCK_RATE 133000000" >>include/config.h ; \
1018 echo "... with 133MHz system clock" ; \
1019 }
1020 @[ -z "$(findstring _150MHz,$@)" ] || \
1021 { echo "#define CPU_CLOCK_RATE 150000000" >>include/config.h ; \
1022 echo "... with 150MHz system clock" ; \
1023 }
1024 @./mkconfig -a $(call xtract_incaip,$@) mips mips incaip
1025
1026#########################################################################
1027## MIPS64 5Kc
1028#########################################################################
wdenk4a5c8a72003-03-06 00:02:04 +00001029
wdenkb02744a2003-04-05 00:53:31 +00001030purple_config : unconfig
1031 @./mkconfig $(@:_config=) mips mips purple
wdenk4a5c8a72003-03-06 00:02:04 +00001032
wdenk60164a82003-10-08 23:26:14 +00001033#========================================================================
1034# Nios
1035#========================================================================
1036#########################################################################
1037## Nios32
1038#########################################################################
1039
1040DK1C20_config: unconfig
1041 @./mkconfig $(@:_config=) nios nios dk1c20
1042
1043
wdenkb02744a2003-04-05 00:53:31 +00001044#########################################################################
wdenk4ea537d2003-12-07 18:32:37 +00001045## MIPS32 AU1X00
wdenk9b7f3842003-10-09 20:09:04 +00001046#########################################################################
wdenk4ea537d2003-12-07 18:32:37 +00001047dbau1000_config : unconfig
1048 @ >include/config.h
1049 @echo "#define CONFIG_DBAU1000 1" >>include/config.h
1050 @./mkconfig -a dbau1x00 mips mips dbau1x00
1051
1052dbau1100_config : unconfig
1053 @ >include/config.h
1054 @echo "#define CONFIG_DBAU1100 1" >>include/config.h
1055 @./mkconfig -a dbau1x00 mips mips dbau1x00
1056
1057dbau1500_config : unconfig
1058 @ >include/config.h
1059 @echo "#define CONFIG_DBAU1500 1" >>include/config.h
1060 @./mkconfig -a dbau1x00 mips mips dbau1x00
wdenk9b7f3842003-10-09 20:09:04 +00001061
1062#########################################################################
wdenkb02744a2003-04-05 00:53:31 +00001063#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001064
1065clean:
1066 find . -type f \
1067 \( -name 'core' -o -name '*.bak' -o -name '*~' \
1068 -o -name '*.o' -o -name '*.a' \) -print \
1069 | xargs rm -f
wdenk8dba0502003-03-31 16:34:49 +00001070 rm -f examples/hello_world examples/timer \
wdenkb02744a2003-04-05 00:53:31 +00001071 examples/eepro100_eeprom examples/sched \
wdenkabda5ca2003-05-31 18:35:21 +00001072 examples/mem_to_mem_idma2intr examples/82559_eeprom
1073
wdenk7ebf7442002-11-02 23:17:16 +00001074 rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr
1075 rm -f tools/easylogo/easylogo tools/bmp_logo
1076 rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend
wdenk9dfa8d12002-12-08 09:53:23 +00001077 rm -f tools/env/fw_printenv tools/env/fw_setenv
wdenk0893c472003-05-20 14:25:27 +00001078 rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image
wdenk4b16c2e2003-11-07 13:42:26 +00001079 rm -f board/trab/trab_fkt board/*/config.tmp
wdenk7ebf7442002-11-02 23:17:16 +00001080
1081clobber: clean
1082 find . -type f \
1083 \( -name .depend -o -name '*.srec' -o -name '*.bin' \) \
1084 -print \
1085 | xargs rm -f
1086 rm -f $(OBJS) *.bak tags TAGS
1087 rm -fr *.*~
wdenk0a658552003-08-05 17:43:17 +00001088 rm -f u-boot u-boot.map $(ALL)
wdenk9dfa8d12002-12-08 09:53:23 +00001089 rm -f tools/crc32.c tools/environment.c tools/env/crc32.c
wdenkb02744a2003-04-05 00:53:31 +00001090 rm -f tools/inca-swap-bytes cpu/mpc824x/bedbug_603e.c
wdenkbb2d9272003-06-25 22:26:29 +00001091 rm -f include/asm/proc include/asm/arch include/asm
wdenk7ebf7442002-11-02 23:17:16 +00001092
1093mrproper \
1094distclean: clobber unconfig
1095
1096backup:
1097 F=`basename $(TOPDIR)` ; cd .. ; \
1098 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
1099
1100#########################################################################