]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - Makefile
* Configure PPChameleon board to use redundand environment in flash
[karo-tx-uboot.git] / Makefile
1 #
2 # (C) Copyright 2000-2004
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # See file CREDITS for list of people who contributed to this
6 # project.
7 #
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License as
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
24 HOSTARCH := $(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
32 HOSTOS := $(shell uname -s | tr A-Z a-z | \
33             sed -e 's/\(cygwin\).*/cygwin/')
34
35 export  HOSTARCH
36
37 # Deal with colliding definitions from tcsh etc.
38 VENDOR=
39
40 #########################################################################
41
42 TOPDIR  := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
43 export  TOPDIR
44
45 ifeq (include/config.mk,$(wildcard include/config.mk))
46 # load ARCH, BOARD, and CPU configuration
47 include include/config.mk
48 export  ARCH CPU BOARD VENDOR
49 # load other configuration
50 include $(TOPDIR)/config.mk
51
52 ifndef CROSS_COMPILE
53 ifeq ($(HOSTARCH),ppc)
54 CROSS_COMPILE =
55 else
56 ifeq ($(ARCH),ppc)
57 CROSS_COMPILE = ppc_8xx-
58 endif
59 ifeq ($(ARCH),arm)
60 CROSS_COMPILE = arm-linux-
61 endif
62 ifeq ($(ARCH),i386)
63 ifeq ($(HOSTARCH),i386)
64 CROSS_COMPILE =
65 else
66 CROSS_COMPILE = i386-linux-
67 endif
68 endif
69 ifeq ($(ARCH),mips)
70 CROSS_COMPILE = mips_4KC-
71 endif
72 ifeq ($(ARCH),nios)
73 CROSS_COMPILE = nios-elf-
74 endif
75 ifeq ($(ARCH),m68k)
76 CROSS_COMPILE = m68k-elf-
77 endif
78 endif
79 endif
80
81 export  CROSS_COMPILE
82
83 #########################################################################
84 # U-Boot objects....order is important (i.e. start must be first)
85
86 OBJS  = cpu/$(CPU)/start.o
87 ifeq ($(CPU),i386)
88 OBJS += cpu/$(CPU)/start16.o
89 OBJS += cpu/$(CPU)/reset.o
90 endif
91 ifeq ($(CPU),ppc4xx)
92 OBJS += cpu/$(CPU)/resetvec.o
93 endif
94 ifeq ($(CPU),mpc85xx)
95 OBJS += cpu/$(CPU)/resetvec.o
96 endif
97
98 LIBS  = lib_generic/libgeneric.a
99 LIBS += board/$(BOARDDIR)/lib$(BOARD).a
100 LIBS += cpu/$(CPU)/lib$(CPU).a
101 LIBS += lib_$(ARCH)/lib$(ARCH).a
102 LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
103         fs/reiserfs/libreiserfs.a
104 LIBS += net/libnet.a
105 LIBS += disk/libdisk.a
106 LIBS += rtc/librtc.a
107 LIBS += dtt/libdtt.a
108 LIBS += drivers/libdrivers.a
109 LIBS += drivers/sk98lin/libsk98lin.a
110 LIBS += post/libpost.a post/cpu/libcpu.a
111 LIBS += common/libcommon.a
112 .PHONY : $(LIBS)
113
114 # Add GCC lib
115 PLATFORM_LIBS += --no-warn-mismatch -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
116
117
118 # The "tools" are needed early, so put this first
119 # Don't include stuff already done in $(LIBS)
120 SUBDIRS = tools \
121           examples \
122           post \
123           post/cpu
124 .PHONY : $(SUBDIRS)
125
126 #########################################################################
127 #########################################################################
128
129 ALL = u-boot.srec u-boot.bin System.map
130
131 all:            $(ALL)
132
133 u-boot.srec:    u-boot
134                 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
135
136 u-boot.bin:     u-boot
137                 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
138
139 u-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
146 u-boot.dis:     u-boot
147                 $(OBJDUMP) -d $< > $@
148
149 u-boot:         depend $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
150                 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed  -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
151                 $(LD) $(LDFLAGS) $$UNDEF_SYM $(OBJS) \
152                         --start-group $(LIBS) $(PLATFORM_LIBS) --end-group \
153                         -Map u-boot.map -o u-boot
154
155 $(LIBS):
156                 $(MAKE) -C `dirname $@`
157
158 $(SUBDIRS):
159                 $(MAKE) -C $@ all
160
161 gdbtools:
162                 $(MAKE) -C tools/gdb || exit 1
163
164 depend dep:
165                 @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done
166
167 tags:
168                 ctags -w `find $(SUBDIRS) include \
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 \
172                         \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
173
174 etags:
175                 etags -a `find $(SUBDIRS) include \
176                         \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
177
178 System.map:     u-boot
179                 @$(NM) $< | \
180                 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
181                 sort > System.map
182
183 #########################################################################
184 else
185 all install u-boot u-boot.srec depend dep:
186         @echo "System not configured - see README" >&2
187         @ exit 1
188 endif
189
190 #########################################################################
191
192 unconfig:
193         @rm -f include/config.h include/config.mk board/*/config.tmp
194
195 #========================================================================
196 # PowerPC
197 #========================================================================
198
199 #########################################################################
200 ## MPC5xx Systems
201 #########################################################################
202
203 cmi_mpc5xx_config:      unconfig
204         @./mkconfig $(@:_config=) ppc mpc5xx cmi
205
206 PATI_config:            unconfig
207         @./mkconfig $(@:_config=) ppc mpc5xx pati mpl
208
209 #########################################################################
210 ## MPC5xxx Systems
211 #########################################################################
212 MPC5200LITE_config              \
213 MPC5200LITE_LOWBOOT_config      \
214 MPC5200LITE_LOWBOOT08_config    \
215 icecube_5200_DDR_config         \
216 IceCube_5200_DDR_config         \
217 icecube_5200_DDR_LOWBOOT_config \
218 icecube_5200_DDR_LOWBOOT08_config \
219 icecube_5200_config             \
220 IceCube_5200_config             \
221 IceCube_5100_config:            unconfig
222         @ >include/config.h
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 ; \
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" ; \
233                   echo "... with LOWBOOT configuration" ; \
234                 }
235         @[ -z "$(findstring DDR,$@)" ] || \
236                 { echo "#define CONFIG_MPC5200_DDR"     >>include/config.h ; \
237                   echo "... DDR memory revision" ; \
238                 }
239         @[ -z "$(findstring 5200,$@)" ] || \
240                 { echo "#define CONFIG_MPC5200"         >>include/config.h ; \
241                   echo "... with MPC5200 processor" ; \
242                 }
243         @[ -z "$(findstring 5100,$@)" ] || \
244                 { echo "#define CONFIG_MGT5100"         >>include/config.h ; \
245                   echo "... with MGT5100 processor" ; \
246                 }
247         @./mkconfig -a IceCube ppc mpc5xxx icecube
248
249 MINI5200_config \
250 EVAL5200_config \
251 TOP5200_config: unconfig
252         @ echo "#define CONFIG_$(@:_config=) 1" >include/config.h
253         @./mkconfig -a TOP5200 ppc mpc5xxx top5200 emk
254
255 PM520_config:   unconfig
256         @./mkconfig $(@:_config=) ppc mpc5xxx pm520
257
258 #########################################################################
259 ## MPC8xx Systems
260 #########################################################################
261
262 AdderII_config: unconfig
263         @./mkconfig $(@:_config=) ppc mpc8xx adderII
264
265 ADS860_config     \
266 DUET_ADS_config   \
267 FADS823_config    \
268 FADS850SAR_config \
269 MPC86xADS_config  \
270 FADS860T_config:        unconfig
271         @./mkconfig $(@:_config=) ppc mpc8xx fads
272
273 AMX860_config   :       unconfig
274         @./mkconfig $(@:_config=) ppc mpc8xx amx860 westel
275
276 c2mon_config:           unconfig
277         @./mkconfig $(@:_config=) ppc mpc8xx c2mon
278
279 CCM_config:             unconfig
280         @./mkconfig $(@:_config=) ppc mpc8xx CCM siemens
281
282 cogent_mpc8xx_config:   unconfig
283         @./mkconfig $(@:_config=) ppc mpc8xx cogent
284
285 ELPT860_config:         unconfig
286         @./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX
287
288 ESTEEM192E_config:      unconfig
289         @./mkconfig $(@:_config=) ppc mpc8xx esteem192e
290
291 ETX094_config   :       unconfig
292         @./mkconfig $(@:_config=) ppc mpc8xx etx094
293
294 FLAGADM_config: unconfig
295         @./mkconfig $(@:_config=) ppc mpc8xx flagadm
296
297 xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
298
299 GEN860T_SC_config       \
300 GEN860T_config: unconfig
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
307
308 GENIETV_config: unconfig
309         @./mkconfig $(@:_config=) ppc mpc8xx genietv
310
311 GTH_config:     unconfig
312         @./mkconfig $(@:_config=) ppc mpc8xx gth
313
314 hermes_config   :       unconfig
315         @./mkconfig $(@:_config=) ppc mpc8xx hermes
316
317 HMI10_config    :       unconfig
318         @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
319
320 IAD210_config: unconfig
321         @./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens
322
323 xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
324
325 ICU862_100MHz_config    \
326 ICU862_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
334 IP860_config    :       unconfig
335         @./mkconfig $(@:_config=) ppc mpc8xx ip860
336
337 IVML24_256_config \
338 IVML24_128_config \
339 IVML24_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
352 IVMS8_256_config \
353 IVMS8_128_config \
354 IVMS8_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
367 KUP4K_config    :       unconfig
368         @./mkconfig $(@:_config=) ppc mpc8xx kup4k kup
369
370 KUP4X_config    :       unconfig
371         @./mkconfig $(@:_config=) ppc mpc8xx kup4x kup
372
373 LANTEC_config   :       unconfig
374         @./mkconfig $(@:_config=) ppc mpc8xx lantec
375
376 lwmon_config:           unconfig
377         @./mkconfig $(@:_config=) ppc mpc8xx lwmon
378
379 MBX_config      \
380 MBX860T_config: unconfig
381         @./mkconfig $(@:_config=) ppc mpc8xx mbx8xx
382
383 MHPC_config:            unconfig
384         @./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec
385
386 MVS1_config :           unconfig
387         @./mkconfig $(@:_config=) ppc mpc8xx mvs1
388
389 xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
390
391 NETVIA_V2_config \
392 NETVIA_config:          unconfig
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
403
404 xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
405
406 NETPHONE_V2_config \
407 NETPHONE_config:        unconfig
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
416
417 xtract_NETTA = $(subst _ISDN,,$(subst _config,,$1))
418
419 NETTA_ISDN_config \
420 NETTA_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
430 NX823_config:           unconfig
431         @./mkconfig $(@:_config=) ppc mpc8xx nx823
432
433 pcu_e_config:           unconfig
434         @./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens
435
436 QS850_config:   unconfig
437         @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
438
439 QS823_config:   unconfig
440         @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
441
442 QS860T_config:  unconfig
443         @./mkconfig $(@:_config=) ppc mpc8xx qs860t snmc
444
445 R360MPI_config: unconfig
446         @./mkconfig $(@:_config=) ppc mpc8xx r360mpi
447
448 RBC823_config:  unconfig
449         @./mkconfig $(@:_config=) ppc mpc8xx rbc823
450
451 RPXClassic_config:      unconfig
452         @./mkconfig $(@:_config=) ppc mpc8xx RPXClassic
453
454 RPXlite_config:         unconfig
455         @./mkconfig $(@:_config=) ppc mpc8xx RPXlite
456
457 rmu_config:     unconfig
458         @./mkconfig $(@:_config=) ppc mpc8xx rmu
459
460 RRvision_config:        unconfig
461         @./mkconfig $(@:_config=) ppc mpc8xx RRvision
462
463 RRvision_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
468 SM850_config    :       unconfig
469         @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
470
471 SPD823TS_config:        unconfig
472         @./mkconfig $(@:_config=) ppc mpc8xx spd8xx
473
474 svm_sc8xx_config:       unconfig
475         @ >include/config.h
476         @./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx
477
478 SXNI855T_config:        unconfig
479         @./mkconfig $(@:_config=) ppc mpc8xx sixnet
480
481 # EMK MPC8xx based modules
482 TOP860_config:          unconfig
483         @./mkconfig $(@:_config=) ppc mpc8xx top860 emk
484
485 # Play some tricks for configuration selection
486 # All boards can come with 50 MHz (default), 66MHz, 80MHz or 100 MHz clock,
487 # but only 855 and 860 boards may come with FEC
488 # and 823 boards may have LCD support
489 xtract_8xx = $(subst _66MHz,,$(subst _80MHz,,$(subst _100MHz,,$(subst _133MHz,,$(subst _LCD,,$(subst _config,,$1))))))
490
491 FPS850L_config          \
492 FPS860L_config          \
493 NSCU_config             \
494 TQM823L_config          \
495 TQM823L_66MHz_config    \
496 TQM823L_80MHz_config    \
497 TQM823L_LCD_config      \
498 TQM823L_LCD_66MHz_config \
499 TQM823L_LCD_80MHz_config \
500 TQM850L_config          \
501 TQM850L_66MHz_config    \
502 TQM850L_80MHz_config    \
503 TQM855L_config          \
504 TQM855L_66MHz_config    \
505 TQM855L_80MHz_config    \
506 TQM860L_config          \
507 TQM860L_66MHz_config    \
508 TQM860L_80MHz_config    \
509 TQM862L_config          \
510 TQM862L_66MHz_config    \
511 TQM862L_80MHz_config    \
512 TQM823M_config          \
513 TQM823M_66MHz_config    \
514 TQM823M_80MHz_config    \
515 TQM850M_config          \
516 TQM850M_66MHz_config    \
517 TQM850M_80MHz_config    \
518 TQM855M_config          \
519 TQM855M_66MHz_config    \
520 TQM855M_80MHz_config    \
521 TQM860M_config          \
522 TQM860M_66MHz_config    \
523 TQM860M_80MHz_config    \
524 TQM862M_config          \
525 TQM862M_66MHz_config    \
526 TQM862M_80MHz_config    \
527 TQM862M_100MHz_config   \
528 TQM866M_config:         unconfig
529         @ >include/config.h
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                 }
538         @[ -z "$(findstring _100MHz,$@)" ] || \
539                 { echo "#define CONFIG_100MHz"          >>include/config.h ; \
540                   echo "... with 100MHz system clock" ; \
541                 }
542         @[ -z "$(findstring _133MHz,$@)" ] || \
543                 { echo "#define CONFIG_133MHz"          >>include/config.h ; \
544                   echo "... with 133MHz system clock" ; \
545                 }
546         @[ -z "$(findstring _LCD,$@)" ] || \
547                 { echo "#define CONFIG_LCD"             >>include/config.h ; \
548                   echo "#define CONFIG_NEC_NL6448BC20"  >>include/config.h ; \
549                   echo "... with LCD display" ; \
550                 }
551         @./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
552
553 TTTech_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
558 v37_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
563 wtk_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
568 #########################################################################
569 ## PPC4xx Systems
570 #########################################################################
571 xtract_4xx = $(subst _MODEL_BA,,$(subst _MODEL_ME,,$(subst _MODEL_HI,,$(subst _config,,$1))))
572
573 ADCIOP_config:  unconfig
574         @./mkconfig $(@:_config=) ppc ppc4xx adciop esd
575
576 AR405_config:   unconfig
577         @./mkconfig $(@:_config=) ppc ppc4xx ar405 esd
578
579 ASH405_config:  unconfig
580         @./mkconfig $(@:_config=) ppc ppc4xx ash405 esd
581
582 BUBINGA405EP_config:    unconfig
583         @./mkconfig $(@:_config=) ppc ppc4xx bubinga405ep
584
585 CANBT_config:   unconfig
586         @./mkconfig $(@:_config=) ppc ppc4xx canbt esd
587
588 CPCI405_config  \
589 CPCI4052_config \
590 CPCI405AB_config:       unconfig
591         @./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd
592         @echo "BOARD_REVISION = $(@:_config=)"  >>include/config.mk
593
594 CPCI440_config: unconfig
595         @./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd
596
597 CPCIISER4_config:       unconfig
598         @./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd
599
600 CRAYL1_config:  unconfig
601         @./mkconfig $(@:_config=) ppc ppc4xx L1 cray
602
603 csb272_config:  unconfig
604         @./mkconfig $(@:_config=) ppc ppc4xx csb272
605
606 DASA_SIM_config: unconfig
607         @./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd
608
609 DP405_config:   unconfig
610         @./mkconfig $(@:_config=) ppc ppc4xx dp405 esd
611
612 DU405_config:   unconfig
613         @./mkconfig $(@:_config=) ppc ppc4xx du405 esd
614
615 EBONY_config:   unconfig
616         @./mkconfig $(@:_config=) ppc ppc4xx ebony
617
618 ERIC_config:    unconfig
619         @./mkconfig $(@:_config=) ppc ppc4xx eric
620
621 EXBITGEN_config:        unconfig
622         @./mkconfig $(@:_config=) ppc ppc4xx exbitgen
623
624 HUB405_config:  unconfig
625         @./mkconfig $(@:_config=) ppc ppc4xx hub405 esd
626
627 JSE_config:     unconfig
628         @./mkconfig $(@:_config=) ppc ppc4xx jse
629
630 MIP405_config:  unconfig
631         @./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl
632
633 MIP405T_config: unconfig
634         @echo "#define CONFIG_MIP405T" >include/config.h
635         @echo "Enable subset config for MIP405T"
636         @./mkconfig -a MIP405 ppc ppc4xx mip405 mpl
637
638 ML2_config:     unconfig
639         @./mkconfig $(@:_config=) ppc ppc4xx ml2
640
641 ml300_config:   unconfig
642         @./mkconfig $(@:_config=) ppc ppc4xx ml300 xilinx
643
644 OCOTEA_config:  unconfig
645         @./mkconfig $(@:_config=) ppc ppc4xx ocotea
646
647 OCRTC_config            \
648 ORSG_config:    unconfig
649         @./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd
650
651 PCI405_config:  unconfig
652         @./mkconfig $(@:_config=) ppc ppc4xx pci405 esd
653
654 PIP405_config:  unconfig
655         @./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl
656
657 PLU405_config:  unconfig
658         @./mkconfig $(@:_config=) ppc ppc4xx plu405 esd
659
660 PMC405_config:  unconfig
661         @./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd
662
663 PPChameleonEVB_MODEL_BA_config  \
664 PPChameleonEVB_MODEL_ME_config  \
665 PPChameleonEVB_MODEL_HI_config  \
666 PPChameleonEVB_config:  unconfig
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
681
682 VOH405_config:  unconfig
683         @./mkconfig $(@:_config=) ppc ppc4xx voh405 esd
684
685 W7OLMC_config   \
686 W7OLMG_config: unconfig
687         @./mkconfig $(@:_config=) ppc ppc4xx w7o
688
689 WALNUT405_config:       unconfig
690         @./mkconfig $(@:_config=) ppc ppc4xx walnut405
691
692 XPEDITE1K_config:       unconfig
693         @./mkconfig $(@:_config=) ppc ppc4xx xpedite1k
694
695 #########################################################################
696 ## MPC824x Systems
697 #########################################################################
698 xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
699
700 A3000_config: unconfig
701         @./mkconfig $(@:_config=) ppc mpc824x a3000
702
703 BMW_config: unconfig
704         @./mkconfig $(@:_config=) ppc mpc824x bmw
705
706 CPC45_config    \
707 CPC45_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
719 CU824_config: unconfig
720         @./mkconfig $(@:_config=) ppc mpc824x cu824
721
722 eXalion_config: unconfig
723         @./mkconfig $(@:_config=) ppc mpc824x eXalion
724
725 MOUSSE_config: unconfig
726         @./mkconfig $(@:_config=) ppc mpc824x mousse
727
728 MUSENKI_config: unconfig
729         @./mkconfig $(@:_config=) ppc mpc824x musenki
730
731 MVBLUE_config:  unconfig
732         @./mkconfig $(@:_config=) ppc mpc824x mvblue
733
734 OXC_config: unconfig
735         @./mkconfig $(@:_config=) ppc mpc824x oxc
736
737 PN62_config: unconfig
738         @./mkconfig $(@:_config=) ppc mpc824x pn62
739
740 Sandpoint8240_config: unconfig
741         @./mkconfig $(@:_config=) ppc mpc824x sandpoint
742
743 Sandpoint8245_config: unconfig
744         @./mkconfig $(@:_config=) ppc mpc824x sandpoint
745
746 SL8245_config: unconfig
747         @./mkconfig $(@:_config=) ppc mpc824x sl8245
748
749 utx8245_config: unconfig
750         @./mkconfig $(@:_config=) ppc mpc824x utx8245
751
752 #########################################################################
753 ## MPC8260 Systems
754 #########################################################################
755
756 atc_config:     unconfig
757         @./mkconfig $(@:_config=) ppc mpc8260 atc
758
759 cogent_mpc8260_config:  unconfig
760         @./mkconfig $(@:_config=) ppc mpc8260 cogent
761
762 CPU86_config    \
763 CPU86_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
775 ep8260_config:  unconfig
776         @./mkconfig $(@:_config=) ppc mpc8260 ep8260
777
778 gw8260_config:  unconfig
779         @./mkconfig $(@:_config=) ppc mpc8260 gw8260
780
781 hymod_config:   unconfig
782         @./mkconfig $(@:_config=) ppc mpc8260 hymod
783
784 IPHASE4539_config:      unconfig
785         @./mkconfig $(@:_config=) ppc mpc8260 iphase4539
786
787 MPC8260ADS_config       \
788 MPC8260ADS_33MHz_config \
789 MPC8260ADS_40MHz_config \
790 MPC8272ADS_config       \
791 PQ2FADS_config          \
792 PQ2FADS-VR_config       \
793 PQ2FADS-ZU_config       \
794 PQ2FADS-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
804
805 MPC8266ADS_config:      unconfig
806         @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads
807
808 # PM825/PM826 default configuration:  small (= 8 MB) Flash / boot from 64-bit flash
809 PM825_config    \
810 PM825_ROMBOOT_config    \
811 PM825_BIGFLASH_config   \
812 PM825_ROMBOOT_BIGFLASH_config   \
813 PM826_config    \
814 PM826_ROMBOOT_config    \
815 PM826_BIGFLASH_config   \
816 PM826_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 \
823                 echo "... booting from 8-bit flash" ; \
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; \
830         else \
831                 echo "... booting from 64-bit flash" ; \
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
841
842 PM828_config    \
843 PM828_PCI_config        \
844 PM828_ROMBOOT_config    \
845 PM828_ROMBOOT_PCI_config:       unconfig
846         @if [ -z "$(findstring _PCI_,$@)" ] ; then \
847                 echo "#define CONFIG_PCI"  >>include/config.h ; \
848                 echo "... with PCI enabled" ; \
849         else \
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
858
859 ppmc8260_config:        unconfig
860         @./mkconfig $(@:_config=) ppc mpc8260 ppmc8260
861
862 RPXsuper_config:        unconfig
863         @./mkconfig $(@:_config=) ppc mpc8260 rpxsuper
864
865 rsdproto_config:        unconfig
866         @./mkconfig $(@:_config=) ppc mpc8260 rsdproto
867
868 sacsng_config:  unconfig
869         @./mkconfig $(@:_config=) ppc mpc8260 sacsng
870
871 sbc8260_config: unconfig
872         @./mkconfig $(@:_config=) ppc mpc8260 sbc8260
873
874 SCM_config:             unconfig
875         @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens
876
877 TQM8255_AA_config \
878 TQM8260_AA_config \
879 TQM8260_AB_config \
880 TQM8260_AC_config \
881 TQM8260_AD_config \
882 TQM8260_AE_config \
883 TQM8260_AF_config \
884 TQM8260_AG_config \
885 TQM8260_AH_config \
886 TQM8265_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 \
906                 echo "#define CONFIG_L2_CACHE"  >>include/config.h ; \
907                 echo "... with L2 Cache support" ; \
908         else \
909                 echo "#undef CONFIG_L2_CACHE"   >>include/config.h ; \
910                 echo "... without L2 Cache support" ; \
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" ; \
918         fi
919         @./mkconfig -a TQM8260 ppc mpc8260 tqm8260
920
921 ZPC1900_config: unconfig
922         @./mkconfig $(@:_config=) ppc mpc8260 zpc1900
923
924 #========================================================================
925 # M68K
926 #========================================================================
927 #########################################################################
928 ## Coldfire
929 #########################################################################
930
931 M5272C3_config :                unconfig
932         @./mkconfig $(@:_config=) m68k mcf52x2 m5272c3
933
934 M5282EVB_config :               unconfig
935         @./mkconfig $(@:_config=) m68k mcf52x2 m5282evb
936
937 #########################################################################
938 ## MPC85xx Systems
939 #########################################################################
940
941 MPC8540ADS_config:      unconfig
942         @./mkconfig $(@:_config=) ppc mpc85xx mpc8540ads
943
944 MPC8560ADS_config:      unconfig
945         @./mkconfig $(@:_config=) ppc mpc85xx mpc8560ads
946
947 #########################################################################
948 ## 74xx/7xx Systems
949 #########################################################################
950
951 AmigaOneG3SE_config:    unconfig
952         @./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
953
954 BAB7xx_config: unconfig
955         @./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec
956
957 DB64360_config:  unconfig
958         @./mkconfig DB64360 ppc 74xx_7xx db64360 Marvell
959
960 DB64460_config:  unconfig
961         @./mkconfig DB64460 ppc 74xx_7xx db64460 Marvell
962
963 debris_config: unconfig
964         @./mkconfig $(@:_config=) ppc mpc824x debris etin
965
966 ELPPC_config: unconfig
967         @./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec
968
969 EVB64260_config \
970 EVB64260_750CX_config:  unconfig
971         @./mkconfig EVB64260 ppc 74xx_7xx evb64260
972
973 P3G4_config: unconfig
974         @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
975
976 PCIPPC2_config \
977 PCIPPC6_config: unconfig
978         @./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2
979
980 ZUMA_config:    unconfig
981         @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
982
983 #========================================================================
984 # ARM
985 #========================================================================
986 #########################################################################
987 ## StrongARM Systems
988 #########################################################################
989
990 assabet_config  :       unconfig
991         @./mkconfig $(@:_config=) arm sa1100 assabet
992
993 dnp1110_config  :       unconfig
994         @./mkconfig $(@:_config=) arm sa1100 dnp1110
995
996 gcplus_config   :       unconfig
997         @./mkconfig $(@:_config=) arm sa1100 gcplus
998
999 lart_config     :       unconfig
1000         @./mkconfig $(@:_config=) arm sa1100 lart
1001
1002 shannon_config  :       unconfig
1003         @./mkconfig $(@:_config=) arm sa1100 shannon
1004
1005 #########################################################################
1006 ## ARM92xT Systems
1007 #########################################################################
1008
1009 xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
1010
1011 xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1012
1013 SX1_config :            unconfig
1014         @./mkconfig $(@:_config=) arm arm925t sx1
1015
1016 integratorcp_config :   unconfig
1017         @./mkconfig $(@:_config=) arm arm926ejs integratorcp
1018
1019 integratorap_config :   unconfig
1020         @./mkconfig $(@:_config=) arm arm926ejs integratorap
1021
1022 versatile_config :      unconfig
1023         @./mkconfig $(@:_config=) arm arm926ejs versatile
1024
1025 omap1510inn_config :    unconfig
1026         @./mkconfig $(@:_config=) arm arm925t omap1510inn
1027
1028 omap1610inn_config \
1029 omap1610inn_cs0boot_config \
1030 omap1610inn_cs3boot_config \
1031 omap1610h2_config \
1032 omap1610h2_cs0boot_config \
1033 omap1610h2_cs3boot_config :     unconfig
1034         @if [ "$(findstring _cs0boot_, $@)" ] ; then \
1035                 echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
1036                 echo "... configured for CS0 boot"; \
1037         else \
1038                 echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
1039                 echo "... configured for CS3 boot"; \
1040         fi;
1041         @./mkconfig -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn
1042
1043 smdk2400_config :       unconfig
1044         @./mkconfig $(@:_config=) arm arm920t smdk2400
1045
1046 smdk2410_config :       unconfig
1047         @./mkconfig $(@:_config=) arm arm920t smdk2410
1048
1049 # TRAB default configuration:   8 MB Flash, 32 MB RAM
1050 trab_config \
1051 trab_bigram_config \
1052 trab_bigflash_config \
1053 trab_old_config:        unconfig
1054         @ >include/config.h
1055         @[ -z "$(findstring _bigram,$@)" ] || \
1056                 { echo "#define CONFIG_FLASH_8MB"  >>include/config.h ; \
1057                   echo "#define CONFIG_RAM_32MB"   >>include/config.h ; \
1058                   echo "... with 8 MB Flash, 32 MB RAM" ; \
1059                 }
1060         @[ -z "$(findstring _bigflash,$@)" ] || \
1061                 { echo "#define CONFIG_FLASH_16MB" >>include/config.h ; \
1062                   echo "#define CONFIG_RAM_16MB"   >>include/config.h ; \
1063                   echo "... with 16 MB Flash, 16 MB RAM" ; \
1064                   echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
1065                 }
1066         @[ -z "$(findstring _old,$@)" ] || \
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" ; \
1070                   echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
1071                 }
1072         @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab
1073
1074 VCMA9_config    :       unconfig
1075         @./mkconfig $(@:_config=) arm arm920t vcma9 mpl
1076
1077
1078 #########################################################################
1079 ## S3C44B0 Systems
1080 #########################################################################
1081
1082 B2_config       :       unconfig
1083         @./mkconfig $(@:_config=) arm s3c44b0 B2 dave
1084
1085 #########################################################################
1086 ## ARM720T Systems
1087 #########################################################################
1088
1089 impa7_config    :       unconfig
1090         @./mkconfig $(@:_config=) arm arm720t impa7
1091
1092 ep7312_config   :       unconfig
1093         @./mkconfig $(@:_config=) arm arm720t ep7312
1094
1095 modnet50_config :       unconfig
1096         @./mkconfig $(@:_config=) arm arm720t modnet50
1097
1098 #########################################################################
1099 ## AT91RM9200 Systems
1100 #########################################################################
1101
1102 at91rm9200dk_config     :       unconfig
1103         @./mkconfig $(@:_config=) arm at91rm9200 at91rm9200dk
1104
1105 #########################################################################
1106 ## XScale Systems
1107 #########################################################################
1108
1109 cradle_config   :       unconfig
1110         @./mkconfig $(@:_config=) arm pxa cradle
1111
1112 csb226_config   :       unconfig
1113         @./mkconfig $(@:_config=) arm pxa csb226
1114
1115 innokom_config  :       unconfig
1116         @./mkconfig $(@:_config=) arm pxa innokom
1117
1118 ixdp425_config  :       unconfig
1119         @./mkconfig $(@:_config=) arm ixp ixdp425
1120
1121 lubbock_config  :       unconfig
1122         @./mkconfig $(@:_config=) arm pxa lubbock
1123
1124 logodl_config   :       unconfig
1125         @./mkconfig $(@:_config=) arm pxa logodl
1126
1127 wepep250_config :       unconfig
1128         @./mkconfig $(@:_config=) arm pxa wepep250
1129
1130 xm250_config    :       unconfig
1131         @./mkconfig $(@:_config=) arm pxa xm250
1132
1133 #========================================================================
1134 # i386
1135 #========================================================================
1136 #########################################################################
1137 ## AMD SC520 CDP
1138 #########################################################################
1139 sc520_cdp_config        :       unconfig
1140         @./mkconfig $(@:_config=) i386 i386 sc520_cdp
1141
1142 sc520_spunk_config      :       unconfig
1143         @./mkconfig $(@:_config=) i386 i386 sc520_spunk
1144
1145 sc520_spunk_rel_config  :       unconfig
1146         @./mkconfig $(@:_config=) i386 i386 sc520_spunk
1147
1148 #========================================================================
1149 # MIPS
1150 #========================================================================
1151 #########################################################################
1152 ## MIPS32 4Kc
1153 #########################################################################
1154
1155 xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
1156
1157 incaip_100MHz_config    \
1158 incaip_133MHz_config    \
1159 incaip_150MHz_config    \
1160 incaip_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
1176 tb0229_config: unconfig
1177         @./mkconfig $(@:_config=) mips mips tb0229
1178
1179 #########################################################################
1180 ## MIPS64 5Kc
1181 #########################################################################
1182
1183 purple_config :         unconfig
1184         @./mkconfig $(@:_config=) mips mips purple
1185
1186 #========================================================================
1187 # Nios
1188 #========================================================================
1189 #########################################################################
1190 ## Nios32
1191 #########################################################################
1192
1193 DK1C20_safe_32_config           \
1194 DK1C20_standard_32_config       \
1195 DK1C20_config:  unconfig
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
1211 DK1S10_safe_32_config           \
1212 DK1S10_standard_32_config       \
1213 DK1S10_mtx_ldk_20_config        \
1214 DK1S10_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                 }
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                 }
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
1233
1234 ADNPESC1_DNPEVA2_base_32_config \
1235 ADNPESC1_base_32_config         \
1236 ADNPESC1_config: unconfig
1237         @ >include/config.h
1238         @[ -z "$(findstring _DNPEVA2,$@)" ] || \
1239                 { echo "#define CONFIG_DNPEVA2 1" >>include/config.h ; \
1240                   echo "... DNP/EVA2 configuration" ; \
1241                 }
1242         @[ -z "$(findstring _base_32,$@)" ] || \
1243                 { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
1244                   echo "... NIOS 'base_32' configuration" ; \
1245                 }
1246         @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
1247                 { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
1248                   echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
1249                 }
1250         @./mkconfig -a ADNPESC1 nios nios adnpesc1 ssv
1251
1252
1253 #########################################################################
1254 ## MIPS32 AU1X00
1255 #########################################################################
1256 dbau1000_config         :       unconfig
1257         @ >include/config.h
1258         @echo "#define CONFIG_DBAU1000 1" >>include/config.h
1259         @./mkconfig -a dbau1x00 mips mips dbau1x00
1260
1261 dbau1100_config         :       unconfig
1262         @ >include/config.h
1263         @echo "#define CONFIG_DBAU1100 1" >>include/config.h
1264         @./mkconfig -a dbau1x00 mips mips dbau1x00
1265
1266 dbau1500_config         :       unconfig
1267         @ >include/config.h
1268         @echo "#define CONFIG_DBAU1500 1" >>include/config.h
1269         @./mkconfig -a dbau1x00 mips mips dbau1x00
1270
1271 #########################################################################
1272 #########################################################################
1273
1274 clean:
1275         find . -type f \
1276                 \( -name 'core' -o -name '*.bak' -o -name '*~' \
1277                 -o -name '*.o'  -o -name '*.a'  \) -print \
1278                 | xargs rm -f
1279         rm -f examples/hello_world examples/timer \
1280               examples/eepro100_eeprom examples/sched \
1281               examples/mem_to_mem_idma2intr examples/82559_eeprom
1282         rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr
1283         rm -f tools/mpc86x_clk
1284         rm -f tools/easylogo/easylogo tools/bmp_logo
1285         rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend
1286         rm -f tools/env/fw_printenv tools/env/fw_setenv
1287         rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image
1288         rm -f board/trab/trab_fkt
1289
1290 clobber:        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 *.*~
1297         rm -f u-boot u-boot.map $(ALL)
1298         rm -f tools/crc32.c tools/environment.c tools/env/crc32.c
1299         rm -f tools/inca-swap-bytes cpu/mpc824x/bedbug_603e.c
1300         rm -f include/asm/proc include/asm/arch include/asm
1301
1302 mrproper \
1303 distclean:      clobber unconfig
1304
1305 backup:
1306         F=`basename $(TOPDIR)` ; cd .. ; \
1307         gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
1308
1309 #########################################################################