]> Git Repo - J-u-boot.git/blame - Makefile
* Configure PPChameleon board to use redundand environment in flash
[J-u-boot.git] / Makefile
CommitLineData
7ebf7443 1#
d4ca31c4 2# (C) Copyright 2000-2004
7ebf7443
WD
3# Wolfgang Denk, DENX Software Engineering, [email protected].
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
7ebf7443
WD
56ifeq ($(ARCH),ppc)
57CROSS_COMPILE = ppc_8xx-
58endif
59ifeq ($(ARCH),arm)
dc7c9a1a 60CROSS_COMPILE = arm-linux-
7ebf7443 61endif
2262cfee 62ifeq ($(ARCH),i386)
7a8e9bed
WD
63ifeq ($(HOSTARCH),i386)
64CROSS_COMPILE =
65else
66CROSS_COMPILE = i386-linux-
67endif
2262cfee 68endif
43d9616c
WD
69ifeq ($(ARCH),mips)
70CROSS_COMPILE = mips_4KC-
71endif
4a551709
WD
72ifeq ($(ARCH),nios)
73CROSS_COMPILE = nios-elf-
74endif
4e5ca3eb
WD
75ifeq ($(ARCH),m68k)
76CROSS_COMPILE = m68k-elf-
77endif
7ebf7443
WD
78endif
79endif
80
81export CROSS_COMPILE
82
7ebf7443
WD
83#########################################################################
84# U-Boot objects....order is important (i.e. start must be first)
85
9fd5e31f 86OBJS = cpu/$(CPU)/start.o
2262cfee 87ifeq ($(CPU),i386)
9fd5e31f
WD
88OBJS += cpu/$(CPU)/start16.o
89OBJS += cpu/$(CPU)/reset.o
2262cfee 90endif
7ebf7443 91ifeq ($(CPU),ppc4xx)
9fd5e31f 92OBJS += cpu/$(CPU)/resetvec.o
7ebf7443 93endif
42d1f039
WD
94ifeq ($(CPU),mpc85xx)
95OBJS += cpu/$(CPU)/resetvec.o
96endif
7ebf7443 97
9fd5e31f
WD
98LIBS = lib_generic/libgeneric.a
99LIBS += board/$(BOARDDIR)/lib$(BOARD).a
7ebf7443
WD
100LIBS += cpu/$(CPU)/lib$(CPU).a
101LIBS += lib_$(ARCH)/lib$(ARCH).a
518e2e1a 102LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
b79a11cc 103 fs/reiserfs/libreiserfs.a
7ebf7443
WD
104LIBS += net/libnet.a
105LIBS += disk/libdisk.a
106LIBS += rtc/librtc.a
107LIBS += dtt/libdtt.a
108LIBS += drivers/libdrivers.a
7152b1d0 109LIBS += drivers/sk98lin/libsk98lin.a
7ebf7443
WD
110LIBS += post/libpost.a post/cpu/libcpu.a
111LIBS += common/libcommon.a
9fd5e31f 112.PHONY : $(LIBS)
a8c7c708 113
4f7cb08e 114# Add GCC lib
3d3befa7
WD
115PLATFORM_LIBS += --no-warn-mismatch -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
116
7ebf7443 117
a8c7c708
WD
118# The "tools" are needed early, so put this first
119# Don't include stuff already done in $(LIBS)
120SUBDIRS = tools \
121 examples \
122 post \
123 post/cpu
b028f715 124.PHONY : $(SUBDIRS)
a8c7c708 125
bdccc4fe 126#########################################################################
7ebf7443
WD
127#########################################################################
128
bdccc4fe 129ALL = u-boot.srec u-boot.bin System.map
7ebf7443 130
bdccc4fe 131all: $(ALL)
7ebf7443
WD
132
133u-boot.srec: u-boot
134 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
135
136u-boot.bin: u-boot
137 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
138
bdccc4fe
WD
139u-boot.img: u-boot.bin
140 ./tools/mkimage -A $(ARCH) -T firmware -C none \
141 -a $(TEXT_BASE) -e 0 \
142 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' include/version.h | \
143 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
144 -d $< $@
145
7ebf7443
WD
146u-boot.dis: u-boot
147 $(OBJDUMP) -d $< > $@
148
a8c7c708 149u-boot: depend $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
8bde7f77
WD
150 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
151 $(LD) $(LDFLAGS) $$UNDEF_SYM $(OBJS) \
7152b1d0 152 --start-group $(LIBS) $(PLATFORM_LIBS) --end-group \
b2184c31 153 -Map u-boot.map -o u-boot
7ebf7443 154
a8c7c708
WD
155$(LIBS):
156 $(MAKE) -C `dirname $@`
157
158$(SUBDIRS):
b028f715 159 $(MAKE) -C $@ all
7ebf7443 160
8f713fdf 161gdbtools:
162 $(MAKE) -C tools/gdb || exit 1
163
7ebf7443
WD
164depend dep:
165 @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done
166
167tags:
168 ctags -w `find $(SUBDIRS) include \
bda6c8ae
WD
169 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
170 fs/cramfs fs/fat fs/fdos fs/jffs2 \
171 net disk rtc dtt drivers drivers/sk98lin common \
7ebf7443
WD
172 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
173
174etags:
175 etags -a `find $(SUBDIRS) include \
176 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
177
178System.map: u-boot
179 @$(NM) $< | \
180 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
181 sort > System.map
182
183#########################################################################
184else
185all install u-boot u-boot.srec depend dep:
186 @echo "System not configured - see README" >&2
187 @ exit 1
188endif
189
190#########################################################################
191
192unconfig:
17d704eb 193 @rm -f include/config.h include/config.mk board/*/config.tmp
7ebf7443
WD
194
195#========================================================================
196# PowerPC
197#========================================================================
0db5bca8
WD
198
199#########################################################################
200## MPC5xx Systems
201#########################################################################
202
203cmi_mpc5xx_config: unconfig
204 @./mkconfig $(@:_config=) ppc mpc5xx cmi
205
db01a2ea 206PATI_config: unconfig
b6e4c403
WD
207 @./mkconfig $(@:_config=) ppc mpc5xx pati mpl
208
945af8d7
WD
209#########################################################################
210## MPC5xxx Systems
211#########################################################################
5cf9da48
WD
212MPC5200LITE_config \
213MPC5200LITE_LOWBOOT_config \
214MPC5200LITE_LOWBOOT08_config \
b2001f27
WD
215icecube_5200_DDR_config \
216IceCube_5200_DDR_config \
79d696fc
WD
217icecube_5200_DDR_LOWBOOT_config \
218icecube_5200_DDR_LOWBOOT08_config \
5cf9da48
WD
219icecube_5200_config \
220IceCube_5200_config \
945af8d7
WD
221IceCube_5100_config: unconfig
222 @ >include/config.h
17d704eb
WD
223 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
224 { if [ "$(findstring DDR,$@)" ] ; \
225 then echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
226 else echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \
227 fi ; \
5cf9da48
WD
228 echo "... with LOWBOOT configuration" ; \
229 }
230 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
231 { echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
232 echo "... with 8 MB flash only" ; \
17d704eb 233 echo "... with LOWBOOT configuration" ; \
5cf9da48 234 }
b2001f27
WD
235 @[ -z "$(findstring DDR,$@)" ] || \
236 { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
237 echo "... DDR memory revision" ; \
238 }
d4ca31c4
WD
239 @[ -z "$(findstring 5200,$@)" ] || \
240 { echo "#define CONFIG_MPC5200" >>include/config.h ; \
241 echo "... with MPC5200 processor" ; \
242 }
a0f2fe52 243 @[ -z "$(findstring 5100,$@)" ] || \
945af8d7
WD
244 { echo "#define CONFIG_MGT5100" >>include/config.h ; \
245 echo "... with MGT5100 processor" ; \
246 }
247 @./mkconfig -a IceCube ppc mpc5xxx icecube
248
d4ca31c4
WD
249MINI5200_config \
250EVAL5200_config \
251TOP5200_config: unconfig
252 @ echo "#define CONFIG_$(@:_config=) 1" >include/config.h
253 @./mkconfig -a TOP5200 ppc mpc5xxx top5200 emk
254
efa329cb
WD
255PM520_config: unconfig
256 @./mkconfig $(@:_config=) ppc mpc5xxx pm520
257
7ebf7443
WD
258#########################################################################
259## MPC8xx Systems
260#########################################################################
261
0cb61d7d
WD
262AdderII_config: unconfig
263 @./mkconfig $(@:_config=) ppc mpc8xx adderII
264
180d3f74
WD
265ADS860_config \
266DUET_ADS_config \
267FADS823_config \
268FADS850SAR_config \
269MPC86xADS_config \
270FADS860T_config: unconfig
7ebf7443
WD
271 @./mkconfig $(@:_config=) ppc mpc8xx fads
272
273AMX860_config : unconfig
274 @./mkconfig $(@:_config=) ppc mpc8xx amx860 westel
275
276c2mon_config: unconfig
277 @./mkconfig $(@:_config=) ppc mpc8xx c2mon
278
279CCM_config: unconfig
280 @./mkconfig $(@:_config=) ppc mpc8xx CCM siemens
281
282cogent_mpc8xx_config: unconfig
283 @./mkconfig $(@:_config=) ppc mpc8xx cogent
284
3bac3513
WD
285ELPT860_config: unconfig
286 @./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX
287
7ebf7443
WD
288ESTEEM192E_config: unconfig
289 @./mkconfig $(@:_config=) ppc mpc8xx esteem192e
290
291ETX094_config : unconfig
292 @./mkconfig $(@:_config=) ppc mpc8xx etx094
293
7ebf7443
WD
294FLAGADM_config: unconfig
295 @./mkconfig $(@:_config=) ppc mpc8xx flagadm
296
7aa78614
WD
297xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
298
299GEN860T_SC_config \
7ebf7443 300GEN860T_config: unconfig
7aa78614
WD
301 @ >include/config.h
302 @[ -z "$(findstring _SC,$@)" ] || \
303 { echo "#define CONFIG_SC" >>include/config.h ; \
304 echo "With reduced H/W feature set (SC)..." ; \
305 }
306 @./mkconfig -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
7ebf7443
WD
307
308GENIETV_config: unconfig
309 @./mkconfig $(@:_config=) ppc mpc8xx genietv
310
311GTH_config: unconfig
312 @./mkconfig $(@:_config=) ppc mpc8xx gth
313
314hermes_config : unconfig
315 @./mkconfig $(@:_config=) ppc mpc8xx hermes
316
c40b2956
WD
317HMI10_config : unconfig
318 @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
319
7ebf7443
WD
320IAD210_config: unconfig
321 @./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens
322
323xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
324
325ICU862_100MHz_config \
326ICU862_config: unconfig
327 @ >include/config.h
328 @[ -z "$(findstring _100MHz,$@)" ] || \
329 { echo "#define CONFIG_100MHz" >>include/config.h ; \
330 echo "... with 100MHz system clock" ; \
331 }
332 @./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
333
334IP860_config : unconfig
335 @./mkconfig $(@:_config=) ppc mpc8xx ip860
336
337IVML24_256_config \
338IVML24_128_config \
339IVML24_config: unconfig
340 @ >include/config.h
341 @[ -z "$(findstring IVML24_config,$@)" ] || \
342 { echo "#define CONFIG_IVML24_16M" >>include/config.h ; \
343 }
344 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
345 { echo "#define CONFIG_IVML24_32M" >>include/config.h ; \
346 }
347 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
348 { echo "#define CONFIG_IVML24_64M" >>include/config.h ; \
349 }
350 @./mkconfig -a IVML24 ppc mpc8xx ivm
351
352IVMS8_256_config \
353IVMS8_128_config \
354IVMS8_config: unconfig
355 @ >include/config.h
356 @[ -z "$(findstring IVMS8_config,$@)" ] || \
357 { echo "#define CONFIG_IVMS8_16M" >>include/config.h ; \
358 }
359 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
360 { echo "#define CONFIG_IVMS8_32M" >>include/config.h ; \
361 }
362 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
363 { echo "#define CONFIG_IVMS8_64M" >>include/config.h ; \
364 }
365 @./mkconfig -a IVMS8 ppc mpc8xx ivm
366
56f94be3 367KUP4K_config : unconfig
0608e04d
WD
368 @./mkconfig $(@:_config=) ppc mpc8xx kup4k kup
369
370KUP4X_config : unconfig
371 @./mkconfig $(@:_config=) ppc mpc8xx kup4x kup
56f94be3 372
7ebf7443
WD
373LANTEC_config : unconfig
374 @./mkconfig $(@:_config=) ppc mpc8xx lantec
375
376lwmon_config: unconfig
377 @./mkconfig $(@:_config=) ppc mpc8xx lwmon
378
379MBX_config \
380MBX860T_config: unconfig
381 @./mkconfig $(@:_config=) ppc mpc8xx mbx8xx
382
383MHPC_config: unconfig
384 @./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec
385
386MVS1_config : unconfig
387 @./mkconfig $(@:_config=) ppc mpc8xx mvs1
388
993cad93
WD
389xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
390
391NETVIA_V2_config \
7ebf7443 392NETVIA_config: unconfig
993cad93
WD
393 @ >include/config.h
394 @[ -z "$(findstring NETVIA_config,$@)" ] || \
395 { echo "#define CONFIG_NETVIA_VERSION 1" >>include/config.h ; \
396 echo "... Version 1" ; \
397 }
398 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
399 { echo "#define CONFIG_NETVIA_VERSION 2" >>include/config.h ; \
400 echo "... Version 2" ; \
401 }
402 @./mkconfig -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
7ebf7443 403
c26e454d
WD
404xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
405
406NETPHONE_V2_config \
04a85b3b 407NETPHONE_config: unconfig
c26e454d
WD
408 @ >include/config.h
409 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
410 { echo "#define CONFIG_NETPHONE_VERSION 1" >>include/config.h ; \
411 }
412 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
413 { echo "#define CONFIG_NETPHONE_VERSION 2" >>include/config.h ; \
414 }
415 @./mkconfig -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
04a85b3b
WD
416
417xtract_NETTA = $(subst _ISDN,,$(subst _config,,$1))
418
419NETTA_ISDN_config \
420NETTA_config: unconfig
421 @ >include/config.h
422 @[ -z "$(findstring NETTA_config,$@)" ] || \
423 { echo "#undef CONFIG_NETTA_ISDN" >>include/config.h ; \
424 }
425 @[ -z "$(findstring NETTA_ISDN_config,$@)" ] || \
426 { echo "#define CONFIG_NETTA_ISDN 1" >>include/config.h ; \
427 }
428 @./mkconfig -a $(call xtract_NETTA,$@) ppc mpc8xx netta
429
7ebf7443
WD
430NX823_config: unconfig
431 @./mkconfig $(@:_config=) ppc mpc8xx nx823
432
433pcu_e_config: unconfig
434 @./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens
435
3bbc899f
WD
436QS850_config: unconfig
437 @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
438
439QS823_config: unconfig
440 @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
441
442QS860T_config: unconfig
443 @./mkconfig $(@:_config=) ppc mpc8xx qs860t snmc
444
7ebf7443
WD
445R360MPI_config: unconfig
446 @./mkconfig $(@:_config=) ppc mpc8xx r360mpi
447
682011ff
WD
448RBC823_config: unconfig
449 @./mkconfig $(@:_config=) ppc mpc8xx rbc823
450
7ebf7443
WD
451RPXClassic_config: unconfig
452 @./mkconfig $(@:_config=) ppc mpc8xx RPXClassic
453
454RPXlite_config: unconfig
455 @./mkconfig $(@:_config=) ppc mpc8xx RPXlite
456
73a8b27c
WD
457rmu_config: unconfig
458 @./mkconfig $(@:_config=) ppc mpc8xx rmu
459
7ebf7443
WD
460RRvision_config: unconfig
461 @./mkconfig $(@:_config=) ppc mpc8xx RRvision
462
463RRvision_LCD_config: unconfig
464 @echo "#define CONFIG_LCD" >include/config.h
465 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
466 @./mkconfig -a RRvision ppc mpc8xx RRvision
467
468SM850_config : unconfig
469 @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
470
471SPD823TS_config: unconfig
472 @./mkconfig $(@:_config=) ppc mpc8xx spd8xx
473
dc7c9a1a
WD
474svm_sc8xx_config: unconfig
475 @ >include/config.h
476 @./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx
477
7ebf7443
WD
478SXNI855T_config: unconfig
479 @./mkconfig $(@:_config=) ppc mpc8xx sixnet
480
db2f721f
WD
481# EMK MPC8xx based modules
482TOP860_config: unconfig
483 @./mkconfig $(@:_config=) ppc mpc8xx top860 emk
484
7ebf7443 485# Play some tricks for configuration selection
73a8b27c 486# All boards can come with 50 MHz (default), 66MHz, 80MHz or 100 MHz clock,
7ebf7443
WD
487# but only 855 and 860 boards may come with FEC
488# and 823 boards may have LCD support
d4ca31c4 489xtract_8xx = $(subst _66MHz,,$(subst _80MHz,,$(subst _100MHz,,$(subst _133MHz,,$(subst _LCD,,$(subst _config,,$1))))))
7ebf7443
WD
490
491FPS850L_config \
384ae025 492FPS860L_config \
f12e568c 493NSCU_config \
7ebf7443
WD
494TQM823L_config \
495TQM823L_66MHz_config \
496TQM823L_80MHz_config \
497TQM823L_LCD_config \
498TQM823L_LCD_66MHz_config \
499TQM823L_LCD_80MHz_config \
500TQM850L_config \
501TQM850L_66MHz_config \
502TQM850L_80MHz_config \
503TQM855L_config \
504TQM855L_66MHz_config \
505TQM855L_80MHz_config \
7ebf7443
WD
506TQM860L_config \
507TQM860L_66MHz_config \
508TQM860L_80MHz_config \
d126bfbd
WD
509TQM862L_config \
510TQM862L_66MHz_config \
73a8b27c 511TQM862L_80MHz_config \
ae3af05e
WD
512TQM823M_config \
513TQM823M_66MHz_config \
514TQM823M_80MHz_config \
515TQM850M_config \
516TQM850M_66MHz_config \
517TQM850M_80MHz_config \
f12e568c
WD
518TQM855M_config \
519TQM855M_66MHz_config \
520TQM855M_80MHz_config \
521TQM860M_config \
522TQM860M_66MHz_config \
523TQM860M_80MHz_config \
524TQM862M_config \
525TQM862M_66MHz_config \
526TQM862M_80MHz_config \
d4ca31c4 527TQM862M_100MHz_config \
c178d3da 528TQM866M_config: unconfig
7ebf7443 529 @ >include/config.h
7ebf7443
WD
530 @[ -z "$(findstring _66MHz,$@)" ] || \
531 { echo "#define CONFIG_66MHz" >>include/config.h ; \
532 echo "... with 66MHz system clock" ; \
533 }
534 @[ -z "$(findstring _80MHz,$@)" ] || \
535 { echo "#define CONFIG_80MHz" >>include/config.h ; \
536 echo "... with 80MHz system clock" ; \
537 }
73a8b27c
WD
538 @[ -z "$(findstring _100MHz,$@)" ] || \
539 { echo "#define CONFIG_100MHz" >>include/config.h ; \
540 echo "... with 100MHz system clock" ; \
541 }
d4ca31c4
WD
542 @[ -z "$(findstring _133MHz,$@)" ] || \
543 { echo "#define CONFIG_133MHz" >>include/config.h ; \
544 echo "... with 133MHz system clock" ; \
545 }
7ebf7443
WD
546 @[ -z "$(findstring _LCD,$@)" ] || \
547 { echo "#define CONFIG_LCD" >>include/config.h ; \
fd3103bb 548 echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
7ebf7443
WD
549 echo "... with LCD display" ; \
550 }
551 @./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
552
553TTTech_config: unconfig
554 @echo "#define CONFIG_LCD" >include/config.h
555 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
556 @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
557
608c9146
WD
558v37_config: unconfig
559 @echo "#define CONFIG_LCD" >include/config.h
560 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h
561 @./mkconfig $(@:_config=) ppc mpc8xx v37
562
91e940d9 563wtk_config: unconfig
564 @echo "#define CONFIG_LCD" >include/config.h
565 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>include/config.h
566 @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
567
7ebf7443
WD
568#########################################################################
569## PPC4xx Systems
570#########################################################################
fbe4b5cb 571xtract_4xx = $(subst _MODEL_BA,,$(subst _MODEL_ME,,$(subst _MODEL_HI,,$(subst _config,,$1))))
7ebf7443
WD
572
573ADCIOP_config: unconfig
574 @./mkconfig $(@:_config=) ppc ppc4xx adciop esd
575
576AR405_config: unconfig
577 @./mkconfig $(@:_config=) ppc ppc4xx ar405 esd
578
549826ea
SR
579ASH405_config: unconfig
580 @./mkconfig $(@:_config=) ppc ppc4xx ash405 esd
581
db01a2ea 582BUBINGA405EP_config: unconfig
549826ea
SR
583 @./mkconfig $(@:_config=) ppc ppc4xx bubinga405ep
584
7ebf7443
WD
585CANBT_config: unconfig
586 @./mkconfig $(@:_config=) ppc ppc4xx canbt esd
587
549826ea
SR
588CPCI405_config \
589CPCI4052_config \
590CPCI405AB_config: unconfig
7ebf7443
WD
591 @./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd
592 @echo "BOARD_REVISION = $(@:_config=)" >>include/config.mk
593
594CPCI440_config: unconfig
595 @./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd
596
597CPCIISER4_config: unconfig
598 @./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd
599
db01a2ea 600CRAYL1_config: unconfig
7ebf7443
WD
601 @./mkconfig $(@:_config=) ppc ppc4xx L1 cray
602
cd0a9de6
WD
603csb272_config: unconfig
604 @./mkconfig $(@:_config=) ppc ppc4xx csb272
605
7ebf7443
WD
606DASA_SIM_config: unconfig
607 @./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd
608
72cd5aa7
SR
609DP405_config: unconfig
610 @./mkconfig $(@:_config=) ppc ppc4xx dp405 esd
611
7ebf7443
WD
612DU405_config: unconfig
613 @./mkconfig $(@:_config=) ppc ppc4xx du405 esd
614
db01a2ea 615EBONY_config: unconfig
7ebf7443
WD
616 @./mkconfig $(@:_config=) ppc ppc4xx ebony
617
db01a2ea 618ERIC_config: unconfig
7ebf7443
WD
619 @./mkconfig $(@:_config=) ppc ppc4xx eric
620
db01a2ea 621EXBITGEN_config: unconfig
d1cbe85b
WD
622 @./mkconfig $(@:_config=) ppc ppc4xx exbitgen
623
72cd5aa7
SR
624HUB405_config: unconfig
625 @./mkconfig $(@:_config=) ppc ppc4xx hub405 esd
626
db01a2ea
WD
627JSE_config: unconfig
628 @./mkconfig $(@:_config=) ppc ppc4xx jse
629
630MIP405_config: unconfig
7ebf7443
WD
631 @./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl
632
db01a2ea 633MIP405T_config: unconfig
f3e0de60
WD
634 @echo "#define CONFIG_MIP405T" >include/config.h
635 @echo "Enable subset config for MIP405T"
636 @./mkconfig -a MIP405 ppc ppc4xx mip405 mpl
637
db01a2ea 638ML2_config: unconfig
7ebf7443
WD
639 @./mkconfig $(@:_config=) ppc ppc4xx ml2
640
db01a2ea 641ml300_config: unconfig
028ab6b5
WD
642 @./mkconfig $(@:_config=) ppc ppc4xx ml300 xilinx
643
db01a2ea 644OCOTEA_config: unconfig
0e6d798c
WD
645 @./mkconfig $(@:_config=) ppc ppc4xx ocotea
646
7ebf7443
WD
647OCRTC_config \
648ORSG_config: unconfig
649 @./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd
650
651PCI405_config: unconfig
652 @./mkconfig $(@:_config=) ppc ppc4xx pci405 esd
653
db01a2ea 654PIP405_config: unconfig
7ebf7443
WD
655 @./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl
656
72cd5aa7
SR
657PLU405_config: unconfig
658 @./mkconfig $(@:_config=) ppc ppc4xx plu405 esd
659
549826ea
SR
660PMC405_config: unconfig
661 @./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd
662
fbe4b5cb
WD
663PPChameleonEVB_MODEL_BA_config \
664PPChameleonEVB_MODEL_ME_config \
665PPChameleonEVB_MODEL_HI_config \
12f34241 666PPChameleonEVB_config: unconfig
fbe4b5cb
WD
667 @ >include/config.h
668 @[ -z "$(findstring _MODEL_BA,$@)" ] || \
669 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>include/config.h ; \
670 echo "... BASIC model" ; \
671 }
672 @[ -z "$(findstring _MODEL_ME,$@)" ] || \
673 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>include/config.h ; \
674 echo "... MEDIUM model" ; \
675 }
676 @[ -z "$(findstring _MODEL_HI,$@)" ] || \
677 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>include/config.h ; \
678 echo "... HIGH-END model" ; \
679 }
680 @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
12f34241 681
72cd5aa7
SR
682VOH405_config: unconfig
683 @./mkconfig $(@:_config=) ppc ppc4xx voh405 esd
684
7ebf7443
WD
685W7OLMC_config \
686W7OLMG_config: unconfig
687 @./mkconfig $(@:_config=) ppc ppc4xx w7o
688
db01a2ea 689WALNUT405_config: unconfig
7ebf7443
WD
690 @./mkconfig $(@:_config=) ppc ppc4xx walnut405
691
db01a2ea 692XPEDITE1K_config: unconfig
ba56f625
WD
693 @./mkconfig $(@:_config=) ppc ppc4xx xpedite1k
694
7ebf7443
WD
695#########################################################################
696## MPC824x Systems
697#########################################################################
efa329cb 698xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
3bac3513 699
0332990b
WD
700A3000_config: unconfig
701 @./mkconfig $(@:_config=) ppc mpc824x a3000
702
7ebf7443
WD
703BMW_config: unconfig
704 @./mkconfig $(@:_config=) ppc mpc824x bmw
705
3bac3513
WD
706CPC45_config \
707CPC45_ROMBOOT_config: unconfig
708 @./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45
709 @cd ./include ; \
710 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
711 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
712 echo "... booting from 8-bit flash" ; \
713 else \
714 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
715 echo "... booting from 64-bit flash" ; \
716 fi; \
717 echo "export CONFIG_BOOT_ROM" >> config.mk;
718
7ebf7443
WD
719CU824_config: unconfig
720 @./mkconfig $(@:_config=) ppc mpc824x cu824
721
80885a9d
WD
722eXalion_config: unconfig
723 @./mkconfig $(@:_config=) ppc mpc824x eXalion
724
7ebf7443
WD
725MOUSSE_config: unconfig
726 @./mkconfig $(@:_config=) ppc mpc824x mousse
727
728MUSENKI_config: unconfig
729 @./mkconfig $(@:_config=) ppc mpc824x musenki
730
b4676a25
WD
731MVBLUE_config: unconfig
732 @./mkconfig $(@:_config=) ppc mpc824x mvblue
733
7ebf7443
WD
734OXC_config: unconfig
735 @./mkconfig $(@:_config=) ppc mpc824x oxc
736
737PN62_config: unconfig
738 @./mkconfig $(@:_config=) ppc mpc824x pn62
739
740Sandpoint8240_config: unconfig
741 @./mkconfig $(@:_config=) ppc mpc824x sandpoint
742
743Sandpoint8245_config: unconfig
744 @./mkconfig $(@:_config=) ppc mpc824x sandpoint
745
d1cbe85b
WD
746SL8245_config: unconfig
747 @./mkconfig $(@:_config=) ppc mpc824x sl8245
748
7ebf7443
WD
749utx8245_config: unconfig
750 @./mkconfig $(@:_config=) ppc mpc824x utx8245
751
752#########################################################################
753## MPC8260 Systems
754#########################################################################
7ebf7443 755
54387ac9
WD
756atc_config: unconfig
757 @./mkconfig $(@:_config=) ppc mpc8260 atc
758
7ebf7443
WD
759cogent_mpc8260_config: unconfig
760 @./mkconfig $(@:_config=) ppc mpc8260 cogent
761
762CPU86_config \
763CPU86_ROMBOOT_config: unconfig
764 @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86
765 @cd ./include ; \
766 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
767 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
768 echo "... booting from 8-bit flash" ; \
769 else \
770 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
771 echo "... booting from 64-bit flash" ; \
772 fi; \
773 echo "export CONFIG_BOOT_ROM" >> config.mk;
774
775ep8260_config: unconfig
776 @./mkconfig $(@:_config=) ppc mpc8260 ep8260
777
778gw8260_config: unconfig
779 @./mkconfig $(@:_config=) ppc mpc8260 gw8260
780
781hymod_config: unconfig
782 @./mkconfig $(@:_config=) ppc mpc8260 hymod
783
784IPHASE4539_config: unconfig
785 @./mkconfig $(@:_config=) ppc mpc8260 iphase4539
786
04a85b3b
WD
787MPC8260ADS_config \
788MPC8260ADS_33MHz_config \
789MPC8260ADS_40MHz_config \
790MPC8272ADS_config \
791PQ2FADS_config \
792PQ2FADS-VR_config \
793PQ2FADS-ZU_config \
794PQ2FADS-ZU_66MHz_config \
795 : unconfig
796 $(if $(findstring PQ2FADS,$@), \
797 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > include/config.h, \
798 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > include/config.h)
799 $(if $(findstring MHz,$@), \
800 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> include/config.h, \
801 $(if $(findstring VR,$@), \
802 @echo "#define CONFIG_8260_CLKIN 66000000" >> include/config.h))
803 @./mkconfig -a MPC8260ADS ppc mpc8260 mpc8260ads
7ebf7443 804
db2f721f
WD
805MPC8266ADS_config: unconfig
806 @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads
807
efa329cb 808# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
10f67017 809PM825_config \
efa329cb
WD
810PM825_ROMBOOT_config \
811PM825_BIGFLASH_config \
812PM825_ROMBOOT_BIGFLASH_config \
813PM826_config \
814PM826_ROMBOOT_config \
815PM826_BIGFLASH_config \
816PM826_ROMBOOT_BIGFLASH_config: unconfig
817 @if [ "$(findstring PM825_,$@)" ] ; then \
818 echo "#define CONFIG_PCI" >include/config.h ; \
819 else \
820 >include/config.h ; \
821 fi
822 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
10f67017 823 echo "... booting from 8-bit flash" ; \
efa329cb
WD
824 echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
825 echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
826 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
827 echo "... with 32 MB Flash" ; \
828 echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
829 fi; \
10f67017 830 else \
10f67017 831 echo "... booting from 64-bit flash" ; \
efa329cb
WD
832 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
833 echo "... with 32 MB Flash" ; \
834 echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
835 echo "TEXT_BASE = 0x40000000" >board/pm826/config.tmp ; \
836 else \
837 echo "TEXT_BASE = 0xFF000000" >board/pm826/config.tmp ; \
838 fi; \
839 fi
840 @./mkconfig -a PM826 ppc mpc8260 pm826
10f67017 841
efa329cb
WD
842PM828_config \
843PM828_PCI_config \
844PM828_ROMBOOT_config \
845PM828_ROMBOOT_PCI_config: unconfig
846 @if [ -z "$(findstring _PCI_,$@)" ] ; then \
847 echo "#define CONFIG_PCI" >>include/config.h ; \
848 echo "... with PCI enabled" ; \
7ebf7443 849 else \
efa329cb
WD
850 >include/config.h ; \
851 fi
852 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
853 echo "... booting from 8-bit flash" ; \
854 echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
855 echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
856 fi
857 @./mkconfig -a PM828 ppc mpc8260 pm828
7ebf7443
WD
858
859ppmc8260_config: unconfig
860 @./mkconfig $(@:_config=) ppc mpc8260 ppmc8260
861
862RPXsuper_config: unconfig
863 @./mkconfig $(@:_config=) ppc mpc8260 rpxsuper
864
865rsdproto_config: unconfig
866 @./mkconfig $(@:_config=) ppc mpc8260 rsdproto
867
868sacsng_config: unconfig
869 @./mkconfig $(@:_config=) ppc mpc8260 sacsng
870
871sbc8260_config: unconfig
872 @./mkconfig $(@:_config=) ppc mpc8260 sbc8260
873
874SCM_config: unconfig
875 @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens
876
27b207fd
WD
877TQM8255_AA_config \
878TQM8260_AA_config \
879TQM8260_AB_config \
880TQM8260_AC_config \
881TQM8260_AD_config \
882TQM8260_AE_config \
883TQM8260_AF_config \
884TQM8260_AG_config \
885TQM8260_AH_config \
886TQM8265_AA_config: unconfig
887 @case "$@" in \
888 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
889 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
890 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
891 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
892 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
893 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
894 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
895 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
896 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
897 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
898 esac; \
899 >include/config.h ; \
900 if [ "$${CTYPE}" != "MPC8260" ] ; then \
901 echo "#define CONFIG_$${CTYPE}" >>include/config.h ; \
902 fi; \
903 echo "#define CONFIG_$${CFREQ}MHz" >>include/config.h ; \
904 echo "... with $${CFREQ}MHz system clock" ; \
905 if [ "$${CACHE}" == "yes" ] ; then \
7ebf7443 906 echo "#define CONFIG_L2_CACHE" >>include/config.h ; \
27b207fd 907 echo "... with L2 Cache support" ; \
7ebf7443
WD
908 else \
909 echo "#undef CONFIG_L2_CACHE" >>include/config.h ; \
910 echo "... without L2 Cache support" ; \
27b207fd
WD
911 fi; \
912 if [ "$${BMODE}" == "60x" ] ; then \
913 echo "#define CONFIG_BUSMODE_60x" >>include/config.h ; \
914 echo "... with 60x Bus Mode" ; \
915 else \
916 echo "#undef CONFIG_BUSMODE_60x" >>include/config.h ; \
917 echo "... without 60x Bus Mode" ; \
7ebf7443 918 fi
4532cb69 919 @./mkconfig -a TQM8260 ppc mpc8260 tqm8260
7ebf7443 920
54387ac9
WD
921ZPC1900_config: unconfig
922 @./mkconfig $(@:_config=) ppc mpc8260 zpc1900
7aa78614 923
4e5ca3eb
WD
924#========================================================================
925# M68K
926#========================================================================
927#########################################################################
928## Coldfire
929#########################################################################
930
931M5272C3_config : unconfig
bf9e3b38 932 @./mkconfig $(@:_config=) m68k mcf52x2 m5272c3
4e5ca3eb
WD
933
934M5282EVB_config : unconfig
bf9e3b38 935 @./mkconfig $(@:_config=) m68k mcf52x2 m5282evb
4e5ca3eb 936
42d1f039
WD
937#########################################################################
938## MPC85xx Systems
939#########################################################################
940
941MPC8540ADS_config: unconfig
942 @./mkconfig $(@:_config=) ppc mpc85xx mpc8540ads
943
944MPC8560ADS_config: unconfig
945 @./mkconfig $(@:_config=) ppc mpc85xx mpc8560ads
946
7ebf7443
WD
947#########################################################################
948## 74xx/7xx Systems
949#########################################################################
950
c7de829c
WD
951AmigaOneG3SE_config: unconfig
952 @./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
953
15647dc7
WD
954BAB7xx_config: unconfig
955 @./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec
956
3a473b2a
WD
957DB64360_config: unconfig
958 @./mkconfig DB64360 ppc 74xx_7xx db64360 Marvell
959
960DB64460_config: unconfig
961 @./mkconfig DB64460 ppc 74xx_7xx db64460 Marvell
962
15647dc7
WD
963debris_config: unconfig
964 @./mkconfig $(@:_config=) ppc mpc824x debris etin
965
966ELPPC_config: unconfig
967 @./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec
968
7ebf7443
WD
969EVB64260_config \
970EVB64260_750CX_config: unconfig
971 @./mkconfig EVB64260 ppc 74xx_7xx evb64260
972
15647dc7 973P3G4_config: unconfig
7ebf7443
WD
974 @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
975
976PCIPPC2_config \
977PCIPPC6_config: unconfig
978 @./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2
979
15647dc7 980ZUMA_config: unconfig
12f34241
WD
981 @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
982
7ebf7443
WD
983#========================================================================
984# ARM
985#========================================================================
986#########################################################################
987## StrongARM Systems
988#########################################################################
989
ea66bc88
WD
990assabet_config : unconfig
991 @./mkconfig $(@:_config=) arm sa1100 assabet
992
7ebf7443
WD
993dnp1110_config : unconfig
994 @./mkconfig $(@:_config=) arm sa1100 dnp1110
995
855a496f
WD
996gcplus_config : unconfig
997 @./mkconfig $(@:_config=) arm sa1100 gcplus
998
999lart_config : unconfig
1000 @./mkconfig $(@:_config=) arm sa1100 lart
1001
7ebf7443
WD
1002shannon_config : unconfig
1003 @./mkconfig $(@:_config=) arm sa1100 shannon
1004
1005#########################################################################
2e5983d2 1006## ARM92xT Systems
7ebf7443
WD
1007#########################################################################
1008
b0639ca3 1009xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
43d9616c 1010
63e73c9a
WD
1011xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1012
232c150a
WD
1013SX1_config : unconfig
1014 @./mkconfig $(@:_config=) arm arm925t sx1
1015
3d3befa7
WD
1016integratorcp_config : unconfig
1017 @./mkconfig $(@:_config=) arm arm926ejs integratorcp
1018
1019integratorap_config : unconfig
1020 @./mkconfig $(@:_config=) arm arm926ejs integratorap
1021
1022versatile_config : unconfig
1023 @./mkconfig $(@:_config=) arm arm926ejs versatile
1024
2e5983d2
WD
1025omap1510inn_config : unconfig
1026 @./mkconfig $(@:_config=) arm arm925t omap1510inn
1027
63e73c9a
WD
1028omap1610inn_config \
1029omap1610inn_cs0boot_config \
1030omap1610inn_cs3boot_config \
1031omap1610h2_config \
1032omap1610h2_cs0boot_config \
1033omap1610h2_cs3boot_config : unconfig
1034 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
1035 echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
b79a11cc 1036 echo "... configured for CS0 boot"; \
63e73c9a
WD
1037 else \
1038 echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
b79a11cc 1039 echo "... configured for CS3 boot"; \
63e73c9a
WD
1040 fi;
1041 @./mkconfig -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn
6f21347d 1042
7ebf7443
WD
1043smdk2400_config : unconfig
1044 @./mkconfig $(@:_config=) arm arm920t smdk2400
1045
1046smdk2410_config : unconfig
1047 @./mkconfig $(@:_config=) arm arm920t smdk2410
1048
b2001f27 1049# TRAB default configuration: 8 MB Flash, 32 MB RAM
43d9616c 1050trab_config \
b0639ca3
WD
1051trab_bigram_config \
1052trab_bigflash_config \
f54ebdfa 1053trab_old_config: unconfig
43d9616c 1054 @ >include/config.h
b0639ca3 1055 @[ -z "$(findstring _bigram,$@)" ] || \
b2001f27
WD
1056 { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
1057 echo "#define CONFIG_RAM_32MB" >>include/config.h ; \
b0639ca3
WD
1058 echo "... with 8 MB Flash, 32 MB RAM" ; \
1059 }
1060 @[ -z "$(findstring _bigflash,$@)" ] || \
b2001f27
WD
1061 { echo "#define CONFIG_FLASH_16MB" >>include/config.h ; \
1062 echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
b0639ca3 1063 echo "... with 16 MB Flash, 16 MB RAM" ; \
a8c7c708 1064 echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
b0639ca3 1065 }
f54ebdfa 1066 @[ -z "$(findstring _old,$@)" ] || \
b2001f27
WD
1067 { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
1068 echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
1069 echo "... with 8 MB Flash, 16 MB RAM" ; \
a8c7c708 1070 echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
43d9616c
WD
1071 }
1072 @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab
7ebf7443 1073
1cb8e980
WD
1074VCMA9_config : unconfig
1075 @./mkconfig $(@:_config=) arm arm920t vcma9 mpl
1076
074cff0d
WD
1077
1078#########################################################################
1079## S3C44B0 Systems
1080#########################################################################
1081
1082B2_config : unconfig
1083 @./mkconfig $(@:_config=) arm s3c44b0 B2 dave
1084
7ebf7443
WD
1085#########################################################################
1086## ARM720T Systems
1087#########################################################################
1088
1089impa7_config : unconfig
1090 @./mkconfig $(@:_config=) arm arm720t impa7
1091
1092ep7312_config : unconfig
1093 @./mkconfig $(@:_config=) arm arm720t ep7312
1094
2d1a537d
WD
1095modnet50_config : unconfig
1096 @./mkconfig $(@:_config=) arm arm720t modnet50
1097
d9df1f4e
WD
1098#########################################################################
1099## AT91RM9200 Systems
1100#########################################################################
1101
1102at91rm9200dk_config : unconfig
1103 @./mkconfig $(@:_config=) arm at91rm9200 at91rm9200dk
1104
7ebf7443 1105#########################################################################
43d9616c 1106## XScale Systems
7ebf7443
WD
1107#########################################################################
1108
7ebf7443 1109cradle_config : unconfig
8bde7f77 1110 @./mkconfig $(@:_config=) arm pxa cradle
7ebf7443
WD
1111
1112csb226_config : unconfig
4c3b21a5 1113 @./mkconfig $(@:_config=) arm pxa csb226
7ebf7443 1114
43d9616c 1115innokom_config : unconfig
4c3b21a5 1116 @./mkconfig $(@:_config=) arm pxa innokom
43d9616c 1117
2d5b561e
WD
1118ixdp425_config : unconfig
1119 @./mkconfig $(@:_config=) arm ixp ixdp425
1120
43d9616c 1121lubbock_config : unconfig
4c3b21a5 1122 @./mkconfig $(@:_config=) arm pxa lubbock
43d9616c 1123
52f52c14
WD
1124logodl_config : unconfig
1125 @./mkconfig $(@:_config=) arm pxa logodl
1126
3e38691e 1127wepep250_config : unconfig
4c3b21a5 1128 @./mkconfig $(@:_config=) arm pxa wepep250
3e38691e 1129
efa329cb
WD
1130xm250_config : unconfig
1131 @./mkconfig $(@:_config=) arm pxa xm250
1132
2262cfee
WD
1133#========================================================================
1134# i386
1135#========================================================================
1136#########################################################################
1cb8e980 1137## AMD SC520 CDP
2262cfee
WD
1138#########################################################################
1139sc520_cdp_config : unconfig
1140 @./mkconfig $(@:_config=) i386 i386 sc520_cdp
1141
7a8e9bed
WD
1142sc520_spunk_config : unconfig
1143 @./mkconfig $(@:_config=) i386 i386 sc520_spunk
1144
1145sc520_spunk_rel_config : unconfig
1146 @./mkconfig $(@:_config=) i386 i386 sc520_spunk
1147
43d9616c
WD
1148#========================================================================
1149# MIPS
1150#========================================================================
7ebf7443 1151#########################################################################
43d9616c
WD
1152## MIPS32 4Kc
1153#########################################################################
1154
e0ac62d7
WD
1155xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
1156
1157incaip_100MHz_config \
1158incaip_133MHz_config \
1159incaip_150MHz_config \
1160incaip_config: unconfig
1161 @ >include/config.h
1162 @[ -z "$(findstring _100MHz,$@)" ] || \
1163 { echo "#define CPU_CLOCK_RATE 100000000" >>include/config.h ; \
1164 echo "... with 100MHz system clock" ; \
1165 }
1166 @[ -z "$(findstring _133MHz,$@)" ] || \
1167 { echo "#define CPU_CLOCK_RATE 133000000" >>include/config.h ; \
1168 echo "... with 133MHz system clock" ; \
1169 }
1170 @[ -z "$(findstring _150MHz,$@)" ] || \
1171 { echo "#define CPU_CLOCK_RATE 150000000" >>include/config.h ; \
1172 echo "... with 150MHz system clock" ; \
1173 }
1174 @./mkconfig -a $(call xtract_incaip,$@) mips mips incaip
1175
f4863a7a
WD
1176tb0229_config: unconfig
1177 @./mkconfig $(@:_config=) mips mips tb0229
1178
e0ac62d7
WD
1179#########################################################################
1180## MIPS64 5Kc
1181#########################################################################
43d9616c 1182
3e38691e
WD
1183purple_config : unconfig
1184 @./mkconfig $(@:_config=) mips mips purple
43d9616c 1185
4a551709
WD
1186#========================================================================
1187# Nios
1188#========================================================================
1189#########################################################################
1190## Nios32
1191#########################################################################
1192
c935d3bd
WD
1193DK1C20_safe_32_config \
1194DK1C20_standard_32_config \
4a551709 1195DK1C20_config: unconfig
c935d3bd
WD
1196 @ >include/config.h
1197 @[ -z "$(findstring _safe_32,$@)" ] || \
1198 { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
1199 echo "... NIOS 'safe_32' configuration" ; \
1200 }
1201 @[ -z "$(findstring _standard_32,$@)" ] || \
1202 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1203 echo "... NIOS 'standard_32' configuration" ; \
1204 }
1205 @[ -z "$(findstring DK1C20_config,$@)" ] || \
1206 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1207 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
1208 }
1209 @./mkconfig -a DK1C20 nios nios dk1c20 altera
1210
1211DK1S10_safe_32_config \
1212DK1S10_standard_32_config \
ec4c544b 1213DK1S10_mtx_ldk_20_config \
c935d3bd
WD
1214DK1S10_config: unconfig
1215 @ >include/config.h
1216 @[ -z "$(findstring _safe_32,$@)" ] || \
1217 { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
1218 echo "... NIOS 'safe_32' configuration" ; \
1219 }
1220 @[ -z "$(findstring _standard_32,$@)" ] || \
1221 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1222 echo "... NIOS 'standard_32' configuration" ; \
1223 }
ec4c544b
WD
1224 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
1225 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>include/config.h ; \
1226 echo "... NIOS 'mtx_ldk_20' configuration" ; \
1227 }
c935d3bd
WD
1228 @[ -z "$(findstring DK1S10_config,$@)" ] || \
1229 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1230 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
1231 }
1232 @./mkconfig -a DK1S10 nios nios dk1s10 altera
4a551709 1233
aaf224ab
WD
1234ADNPESC1_DNPEVA2_base_32_config \
1235ADNPESC1_base_32_config \
1236ADNPESC1_config: unconfig
1237 @ >include/config.h
1238 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
42dfe7a1
WD
1239 { echo "#define CONFIG_DNPEVA2 1" >>include/config.h ; \
1240 echo "... DNP/EVA2 configuration" ; \
1241 }
aaf224ab 1242 @[ -z "$(findstring _base_32,$@)" ] || \
42dfe7a1
WD
1243 { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
1244 echo "... NIOS 'base_32' configuration" ; \
1245 }
aaf224ab 1246 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
42dfe7a1
WD
1247 { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
1248 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
1249 }
aaf224ab
WD
1250 @./mkconfig -a ADNPESC1 nios nios adnpesc1 ssv
1251
4a551709 1252
5da627a4 1253#########################################################################
a2663ea4 1254## MIPS32 AU1X00
5da627a4 1255#########################################################################
a2663ea4
WD
1256dbau1000_config : unconfig
1257 @ >include/config.h
1258 @echo "#define CONFIG_DBAU1000 1" >>include/config.h
1259 @./mkconfig -a dbau1x00 mips mips dbau1x00
1260
1261dbau1100_config : unconfig
1262 @ >include/config.h
1263 @echo "#define CONFIG_DBAU1100 1" >>include/config.h
1264 @./mkconfig -a dbau1x00 mips mips dbau1x00
1265
1266dbau1500_config : unconfig
1267 @ >include/config.h
1268 @echo "#define CONFIG_DBAU1500 1" >>include/config.h
1269 @./mkconfig -a dbau1x00 mips mips dbau1x00
5da627a4 1270
3e38691e
WD
1271#########################################################################
1272#########################################################################
7ebf7443
WD
1273
1274clean:
1275 find . -type f \
1276 \( -name 'core' -o -name '*.bak' -o -name '*~' \
1277 -o -name '*.o' -o -name '*.a' \) -print \
1278 | xargs rm -f
85ec0bcc 1279 rm -f examples/hello_world examples/timer \
3e38691e 1280 examples/eepro100_eeprom examples/sched \
7a8e9bed 1281 examples/mem_to_mem_idma2intr examples/82559_eeprom
7ebf7443 1282 rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr
bda6c8ae 1283 rm -f tools/mpc86x_clk
7ebf7443
WD
1284 rm -f tools/easylogo/easylogo tools/bmp_logo
1285 rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend
228f29ac 1286 rm -f tools/env/fw_printenv tools/env/fw_setenv
7f70e853 1287 rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image
7e780369 1288 rm -f board/trab/trab_fkt
7ebf7443
WD
1289
1290clobber: clean
1291 find . -type f \
1292 \( -name .depend -o -name '*.srec' -o -name '*.bin' \) \
1293 -print \
1294 | xargs rm -f
1295 rm -f $(OBJS) *.bak tags TAGS
1296 rm -fr *.*~
bdccc4fe 1297 rm -f u-boot u-boot.map $(ALL)
228f29ac 1298 rm -f tools/crc32.c tools/environment.c tools/env/crc32.c
3e38691e 1299 rm -f tools/inca-swap-bytes cpu/mpc824x/bedbug_603e.c
b783edae 1300 rm -f include/asm/proc include/asm/arch include/asm
7ebf7443
WD
1301
1302mrproper \
1303distclean: clobber unconfig
1304
1305backup:
1306 F=`basename $(TOPDIR)` ; cd .. ; \
1307 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
1308
1309#########################################################################
This page took 0.247291 seconds and 4 git commands to generate.