* Add support for PPChameleon Eval Board
[platform/kernel/u-boot.git] / Makefile
1 #
2 # (C) Copyright 2000, 2001, 2002
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 endif
73 endif
74
75 export  CROSS_COMPILE
76
77 # The "tools" are needed early, so put this first
78 SUBDIRS = tools \
79           lib_generic \
80           lib_$(ARCH) \
81           cpu/$(CPU) \
82           board/$(BOARDDIR) \
83           common \
84           disk \
85           fs \
86           net \
87           rtc \
88           dtt \
89           drivers \
90           post \
91           post/cpu \
92           examples
93
94 #########################################################################
95 # U-Boot objects....order is important (i.e. start must be first)
96
97 OBJS  = cpu/$(CPU)/start.o
98 ifeq ($(CPU),i386)
99 OBJS += cpu/$(CPU)/start16.o
100 OBJS += cpu/$(CPU)/reset.o
101 endif
102 ifeq ($(CPU),ppc4xx)
103 OBJS += cpu/$(CPU)/resetvec.o
104 endif
105
106 LIBS  = board/$(BOARDDIR)/lib$(BOARD).a
107 LIBS += cpu/$(CPU)/lib$(CPU).a
108 LIBS += lib_$(ARCH)/lib$(ARCH).a
109 LIBS += fs/jffs2/libjffs2.a fs/fdos/libfdos.a fs/fat/libfat.a
110 LIBS += net/libnet.a
111 LIBS += disk/libdisk.a
112 LIBS += rtc/librtc.a
113 LIBS += dtt/libdtt.a
114 LIBS += drivers/libdrivers.a
115 LIBS += post/libpost.a post/cpu/libcpu.a
116 LIBS += common/libcommon.a
117 LIBS += lib_generic/libgeneric.a
118
119 #########################################################################
120 #########################################################################
121
122 ALL = u-boot.srec u-boot.bin System.map
123
124 all:            $(ALL)
125
126 u-boot.srec:    u-boot
127                 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
128
129 u-boot.bin:     u-boot
130                 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
131
132 u-boot.img:     u-boot.bin
133                 ./tools/mkimage -A $(ARCH) -T firmware -C none \
134                 -a $(TEXT_BASE) -e 0 \
135                 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' include/version.h | \
136                         sed -e 's/"[     ]*$$/ for $(BOARD) board"/') \
137                 -d $< $@
138
139 u-boot.dis:     u-boot
140                 $(OBJDUMP) -d $< > $@
141
142 u-boot:         depend subdirs $(OBJS) $(LIBS) $(LDSCRIPT)
143                 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed  -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
144                 $(LD) $(LDFLAGS) $$UNDEF_SYM $(OBJS) \
145                         --start-group $(LIBS) --end-group \
146                         -Map u-boot.map -o u-boot
147
148 subdirs:
149                 @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir || exit 1 ; done
150
151 gdbtools:
152                 $(MAKE) -C tools/gdb || exit 1
153
154 depend dep:
155                 @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done
156
157 tags:
158                 ctags -w `find $(SUBDIRS) include \
159                         \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
160
161 etags:
162                 etags -a `find $(SUBDIRS) include \
163                         \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
164
165 System.map:     u-boot
166                 @$(NM) $< | \
167                 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
168                 sort > System.map
169
170 #########################################################################
171 else
172 all install u-boot u-boot.srec depend dep:
173         @echo "System not configured - see README" >&2
174         @ exit 1
175 endif
176
177 #########################################################################
178
179 unconfig:
180         rm -f include/config.h include/config.mk
181
182 #========================================================================
183 # PowerPC
184 #========================================================================
185
186 #########################################################################
187 ## MPC5xx Systems
188 #########################################################################
189
190 cmi_mpc5xx_config:      unconfig
191         @./mkconfig $(@:_config=) ppc mpc5xx cmi
192
193 #########################################################################
194 ## MPC5xxx Systems
195 #########################################################################
196 IceCube_5200_config     \
197 IceCube_5100_config:            unconfig
198         @ >include/config.h
199         @[ -z "$(findstring _5200,$@)" ] || \
200                 { echo "#define CONFIG_MPC5200"         >>include/config.h ; \
201                   echo "... with MPC5200 processor" ; \
202                 }
203         @[ -z "$(findstring _5100,$@)" ] || \
204                 { echo "#define CONFIG_MGT5100"         >>include/config.h ; \
205                   echo "... with MGT5100 processor" ; \
206                 }
207         @./mkconfig -a IceCube ppc mpc5xxx icecube
208
209 #########################################################################
210 ## MPC8xx Systems
211 #########################################################################
212
213 AdderII_config: unconfig
214         @./mkconfig $(@:_config=) ppc mpc8xx adderII
215
216 ADS860_config:  unconfig
217         @./mkconfig $(@:_config=) ppc mpc8xx fads
218
219 AMX860_config   :       unconfig
220         @./mkconfig $(@:_config=) ppc mpc8xx amx860 westel
221
222 c2mon_config:           unconfig
223         @./mkconfig $(@:_config=) ppc mpc8xx c2mon
224
225 CCM_config:             unconfig
226         @./mkconfig $(@:_config=) ppc mpc8xx CCM siemens
227
228 cogent_mpc8xx_config:   unconfig
229         @./mkconfig $(@:_config=) ppc mpc8xx cogent
230
231 ELPT860_config:         unconfig
232         @./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX
233
234 ESTEEM192E_config:      unconfig
235         @./mkconfig $(@:_config=) ppc mpc8xx esteem192e
236
237 ETX094_config   :       unconfig
238         @./mkconfig $(@:_config=) ppc mpc8xx etx094
239
240 FADS823_config  \
241 FADS850SAR_config \
242 MPC86xADS_config \
243 FADS860T_config:        unconfig
244         @./mkconfig $(@:_config=) ppc mpc8xx fads
245
246 FLAGADM_config: unconfig
247         @./mkconfig $(@:_config=) ppc mpc8xx flagadm
248
249 xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
250
251 GEN860T_SC_config       \
252 GEN860T_config: unconfig
253         @ >include/config.h
254         @[ -z "$(findstring _SC,$@)" ] || \
255                 { echo "#define CONFIG_SC" >>include/config.h ; \
256                   echo "With reduced H/W feature set (SC)..." ; \
257                 }
258         @./mkconfig -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
259
260 GENIETV_config: unconfig
261         @./mkconfig $(@:_config=) ppc mpc8xx genietv
262
263 GTH_config:     unconfig
264         @./mkconfig $(@:_config=) ppc mpc8xx gth
265
266 hermes_config   :       unconfig
267         @./mkconfig $(@:_config=) ppc mpc8xx hermes
268
269 IAD210_config: unconfig
270         @./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens
271
272 xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
273
274 ICU862_100MHz_config    \
275 ICU862_config: unconfig
276         @ >include/config.h
277         @[ -z "$(findstring _100MHz,$@)" ] || \
278                 { echo "#define CONFIG_100MHz"  >>include/config.h ; \
279                   echo "... with 100MHz system clock" ; \
280                 }
281         @./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
282
283 IP860_config    :       unconfig
284         @./mkconfig $(@:_config=) ppc mpc8xx ip860
285
286 IVML24_256_config \
287 IVML24_128_config \
288 IVML24_config:  unconfig
289         @ >include/config.h
290         @[ -z "$(findstring IVML24_config,$@)" ] || \
291                  { echo "#define CONFIG_IVML24_16M"     >>include/config.h ; \
292                  }
293         @[ -z "$(findstring IVML24_128_config,$@)" ] || \
294                  { echo "#define CONFIG_IVML24_32M"     >>include/config.h ; \
295                  }
296         @[ -z "$(findstring IVML24_256_config,$@)" ] || \
297                  { echo "#define CONFIG_IVML24_64M"     >>include/config.h ; \
298                  }
299         @./mkconfig -a IVML24 ppc mpc8xx ivm
300
301 IVMS8_256_config \
302 IVMS8_128_config \
303 IVMS8_config:   unconfig
304         @ >include/config.h
305         @[ -z "$(findstring IVMS8_config,$@)" ] || \
306                  { echo "#define CONFIG_IVMS8_16M"      >>include/config.h ; \
307                  }
308         @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
309                  { echo "#define CONFIG_IVMS8_32M"      >>include/config.h ; \
310                  }
311         @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
312                  { echo "#define CONFIG_IVMS8_64M"      >>include/config.h ; \
313                  }
314         @./mkconfig -a IVMS8 ppc mpc8xx ivm
315
316 KUP4K_config    :       unconfig
317         @./mkconfig $(@:_config=) ppc mpc8xx kup4k
318
319 LANTEC_config   :       unconfig
320         @./mkconfig $(@:_config=) ppc mpc8xx lantec
321
322 lwmon_config:           unconfig
323         @./mkconfig $(@:_config=) ppc mpc8xx lwmon
324
325 MBX_config      \
326 MBX860T_config: unconfig
327         @./mkconfig $(@:_config=) ppc mpc8xx mbx8xx
328
329 MHPC_config:            unconfig
330         @./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec
331
332 MVS1_config :           unconfig
333         @./mkconfig $(@:_config=) ppc mpc8xx mvs1
334
335 xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
336
337 NETVIA_V2_config \
338 NETVIA_config:          unconfig
339         @ >include/config.h
340         @[ -z "$(findstring NETVIA_config,$@)" ] || \
341                  { echo "#define CONFIG_NETVIA_VERSION 1" >>include/config.h ; \
342                   echo "... Version 1" ; \
343                  }
344         @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
345                  { echo "#define CONFIG_NETVIA_VERSION 2" >>include/config.h ; \
346                   echo "... Version 2" ; \
347                  }
348         @./mkconfig -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
349
350 NX823_config:           unconfig
351         @./mkconfig $(@:_config=) ppc mpc8xx nx823
352
353 pcu_e_config:           unconfig
354         @./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens
355
356 R360MPI_config: unconfig
357         @./mkconfig $(@:_config=) ppc mpc8xx r360mpi
358
359 RBC823_config:  unconfig
360         @./mkconfig $(@:_config=) ppc mpc8xx rbc823
361
362 RPXClassic_config:      unconfig
363         @./mkconfig $(@:_config=) ppc mpc8xx RPXClassic
364
365 RPXlite_config:         unconfig
366         @./mkconfig $(@:_config=) ppc mpc8xx RPXlite
367
368 rmu_config:     unconfig
369         @./mkconfig $(@:_config=) ppc mpc8xx rmu
370
371 RRvision_config:        unconfig
372         @./mkconfig $(@:_config=) ppc mpc8xx RRvision
373
374 RRvision_LCD_config:    unconfig
375         @echo "#define CONFIG_LCD" >include/config.h
376         @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
377         @./mkconfig -a RRvision ppc mpc8xx RRvision
378
379 SM850_config    :       unconfig
380         @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
381
382 SPD823TS_config:        unconfig
383         @./mkconfig $(@:_config=) ppc mpc8xx spd8xx
384
385 svm_sc8xx_config:       unconfig
386         @ >include/config.h
387         @./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx
388
389 SXNI855T_config:        unconfig
390         @./mkconfig $(@:_config=) ppc mpc8xx sixnet
391
392 # EMK MPC8xx based modules
393 TOP860_config:          unconfig
394         @./mkconfig $(@:_config=) ppc mpc8xx top860 emk
395
396 # Play some tricks for configuration selection
397 # All boards can come with 50 MHz (default), 66MHz, 80MHz or 100 MHz clock,
398 # but only 855 and 860 boards may come with FEC
399 # and 823 boards may have LCD support
400 xtract_8xx = $(subst _66MHz,,$(subst _80MHz,,$(subst _100MHz,,$(subst _LCD,,$(subst _config,,$1)))))
401
402 FPS850L_config          \
403 FPS860L_config          \
404 NSCU_config             \
405 TQM823L_config          \
406 TQM823L_66MHz_config    \
407 TQM823L_80MHz_config    \
408 TQM823L_LCD_config      \
409 TQM823L_LCD_66MHz_config \
410 TQM823L_LCD_80MHz_config \
411 TQM850L_config          \
412 TQM850L_66MHz_config    \
413 TQM850L_80MHz_config    \
414 TQM855L_config          \
415 TQM855L_66MHz_config    \
416 TQM855L_80MHz_config    \
417 TQM860L_config          \
418 TQM860L_66MHz_config    \
419 TQM860L_80MHz_config    \
420 TQM862L_config          \
421 TQM862L_66MHz_config    \
422 TQM862L_80MHz_config    \
423 TQM823M_config          \
424 TQM823M_66MHz_config    \
425 TQM823M_80MHz_config    \
426 TQM850M_config          \
427 TQM850M_66MHz_config    \
428 TQM850M_80MHz_config    \
429 TQM855M_config          \
430 TQM855M_66MHz_config    \
431 TQM855M_80MHz_config    \
432 TQM860M_config          \
433 TQM860M_66MHz_config    \
434 TQM860M_80MHz_config    \
435 TQM862M_config          \
436 TQM862M_66MHz_config    \
437 TQM862M_80MHz_config    \
438 TQM862M_100MHz_config:  unconfig
439         @ >include/config.h
440         @[ -z "$(findstring _66MHz,$@)" ] || \
441                 { echo "#define CONFIG_66MHz"           >>include/config.h ; \
442                   echo "... with 66MHz system clock" ; \
443                 }
444         @[ -z "$(findstring _80MHz,$@)" ] || \
445                 { echo "#define CONFIG_80MHz"           >>include/config.h ; \
446                   echo "... with 80MHz system clock" ; \
447                 }
448         @[ -z "$(findstring _100MHz,$@)" ] || \
449                 { echo "#define CONFIG_100MHz"          >>include/config.h ; \
450                   echo "... with 100MHz system clock" ; \
451                 }
452         @[ -z "$(findstring _LCD,$@)" ] || \
453                 { echo "#define CONFIG_LCD"             >>include/config.h ; \
454                   echo "#define CONFIG_NEC_NL6648BC20"  >>include/config.h ; \
455                   echo "... with LCD display" ; \
456                 }
457         @./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
458
459 TTTech_config:  unconfig
460         @echo "#define CONFIG_LCD" >include/config.h
461         @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
462         @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
463
464 v37_config:     unconfig
465         @echo "#define CONFIG_LCD" >include/config.h
466         @echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h
467         @./mkconfig $(@:_config=) ppc mpc8xx v37
468
469 #########################################################################
470 ## PPC4xx Systems
471 #########################################################################
472
473 ADCIOP_config:  unconfig
474         @./mkconfig $(@:_config=) ppc ppc4xx adciop esd
475
476 AR405_config:   unconfig
477         @./mkconfig $(@:_config=) ppc ppc4xx ar405 esd
478
479 ASH405_config:  unconfig
480         @./mkconfig $(@:_config=) ppc ppc4xx ash405 esd
481
482 BUBINGA405EP_config:unconfig
483         @./mkconfig $(@:_config=) ppc ppc4xx bubinga405ep
484
485 CANBT_config:   unconfig
486         @./mkconfig $(@:_config=) ppc ppc4xx canbt esd
487
488 CPCI405_config  \
489 CPCI4052_config \
490 CPCI405AB_config:       unconfig
491         @./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd
492         @echo "BOARD_REVISION = $(@:_config=)"  >>include/config.mk
493
494 CPCI440_config: unconfig
495         @./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd
496
497 CPCIISER4_config:       unconfig
498         @./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd
499
500 CRAYL1_config:unconfig
501         @./mkconfig $(@:_config=) ppc ppc4xx L1 cray
502
503 DASA_SIM_config: unconfig
504         @./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd
505
506 DU405_config:   unconfig
507         @./mkconfig $(@:_config=) ppc ppc4xx du405 esd
508
509 EBONY_config:unconfig
510         @./mkconfig $(@:_config=) ppc ppc4xx ebony
511
512 ERIC_config:unconfig
513         @./mkconfig $(@:_config=) ppc ppc4xx eric
514
515 EXBITGEN_config:unconfig
516         @./mkconfig $(@:_config=) ppc ppc4xx exbitgen
517
518 MIP405_config:unconfig
519         @./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl
520
521 MIP405T_config:unconfig
522         @echo "#define CONFIG_MIP405T" >include/config.h
523         @echo "Enable subset config for MIP405T"
524         @./mkconfig -a MIP405 ppc ppc4xx mip405 mpl
525
526 ML2_config:unconfig
527         @./mkconfig $(@:_config=) ppc ppc4xx ml2
528
529 OCRTC_config            \
530 ORSG_config:    unconfig
531         @./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd
532
533 PCI405_config:  unconfig
534         @./mkconfig $(@:_config=) ppc ppc4xx pci405 esd
535
536 PIP405_config:unconfig
537         @./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl
538
539 PMC405_config:  unconfig
540         @./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd
541
542 PPChameleonEVB_config:  unconfig
543         @./mkconfig $(@:_config=) ppc ppc4xx PPChameleonEVB dave
544
545 W7OLMC_config   \
546 W7OLMG_config: unconfig
547         @./mkconfig $(@:_config=) ppc ppc4xx w7o
548
549 WALNUT405_config:unconfig
550         @./mkconfig $(@:_config=) ppc ppc4xx walnut405
551
552 #########################################################################
553 ## MPC824x Systems
554 #########################################################################
555 xtract_82xx = $(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1)))))
556
557 A3000_config: unconfig
558         @./mkconfig $(@:_config=) ppc mpc824x a3000
559
560 BMW_config: unconfig
561         @./mkconfig $(@:_config=) ppc mpc824x bmw
562
563 CPC45_config    \
564 CPC45_ROMBOOT_config:   unconfig
565         @./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45
566         @cd ./include ;                         \
567         if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
568                 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
569                 echo "... booting from 8-bit flash" ; \
570         else \
571                 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
572                 echo "... booting from 64-bit flash" ; \
573         fi; \
574         echo "export CONFIG_BOOT_ROM" >> config.mk;
575
576 CU824_config: unconfig
577         @./mkconfig $(@:_config=) ppc mpc824x cu824
578
579 MOUSSE_config: unconfig
580         @./mkconfig $(@:_config=) ppc mpc824x mousse
581
582 MUSENKI_config: unconfig
583         @./mkconfig $(@:_config=) ppc mpc824x musenki
584
585 OXC_config: unconfig
586         @./mkconfig $(@:_config=) ppc mpc824x oxc
587
588 PN62_config: unconfig
589         @./mkconfig $(@:_config=) ppc mpc824x pn62
590
591 Sandpoint8240_config: unconfig
592         @./mkconfig $(@:_config=) ppc mpc824x sandpoint
593
594 Sandpoint8245_config: unconfig
595         @./mkconfig $(@:_config=) ppc mpc824x sandpoint
596
597 SL8245_config: unconfig
598         @./mkconfig $(@:_config=) ppc mpc824x sl8245
599
600 utx8245_config: unconfig
601         @./mkconfig $(@:_config=) ppc mpc824x utx8245
602
603 #########################################################################
604 ## MPC8260 Systems
605 #########################################################################
606
607 cogent_mpc8260_config:  unconfig
608         @./mkconfig $(@:_config=) ppc mpc8260 cogent
609
610 CPU86_config    \
611 CPU86_ROMBOOT_config: unconfig
612         @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86
613         @cd ./include ;                         \
614         if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
615                 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
616                 echo "... booting from 8-bit flash" ; \
617         else \
618                 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
619                 echo "... booting from 64-bit flash" ; \
620         fi; \
621         echo "export CONFIG_BOOT_ROM" >> config.mk;
622
623 ep8260_config:  unconfig
624         @./mkconfig $(@:_config=) ppc mpc8260 ep8260
625
626 gw8260_config:  unconfig
627         @./mkconfig $(@:_config=) ppc mpc8260 gw8260
628
629 hymod_config:   unconfig
630         @./mkconfig $(@:_config=) ppc mpc8260 hymod
631
632 IPHASE4539_config:      unconfig
633         @./mkconfig $(@:_config=) ppc mpc8260 iphase4539
634
635 MPC8260ADS_config:      unconfig
636         @./mkconfig $(@:_config=) ppc mpc8260 mpc8260ads
637
638 MPC8266ADS_config:      unconfig
639         @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads
640
641 PM825_config    \
642 PM825_ROMBOOT_config: unconfig
643         @echo "#define CONFIG_PCI"      >include/config.h
644         @./mkconfig -a PM826 ppc mpc8260 pm826
645         @cd ./include ;                         \
646         if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
647                 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
648                 echo "... booting from 8-bit flash" ; \
649         else \
650                 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
651                 echo "... booting from 64-bit flash" ; \
652         fi; \
653         echo "export CONFIG_BOOT_ROM" >> config.mk; \
654
655 PM826_config    \
656 PM826_ROMBOOT_config: unconfig
657         @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 pm826
658         @cd ./include ;                         \
659         if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
660                 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
661                 echo "... booting from 8-bit flash" ; \
662         else \
663                 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
664                 echo "... booting from 64-bit flash" ; \
665         fi; \
666         echo "export CONFIG_BOOT_ROM" >> config.mk; \
667
668 ppmc8260_config:        unconfig
669         @./mkconfig $(@:_config=) ppc mpc8260 ppmc8260
670
671 RPXsuper_config:        unconfig
672         @./mkconfig $(@:_config=) ppc mpc8260 rpxsuper
673
674 rsdproto_config:        unconfig
675         @./mkconfig $(@:_config=) ppc mpc8260 rsdproto
676
677 sacsng_config:  unconfig
678         @./mkconfig $(@:_config=) ppc mpc8260 sacsng
679
680 sbc8260_config: unconfig
681         @./mkconfig $(@:_config=) ppc mpc8260 sbc8260
682
683 SCM_config:             unconfig
684         @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens
685
686 TQM8255_AA_config \
687 TQM8260_AA_config \
688 TQM8260_AB_config \
689 TQM8260_AC_config \
690 TQM8260_AD_config \
691 TQM8260_AE_config \
692 TQM8260_AF_config \
693 TQM8260_AG_config \
694 TQM8260_AH_config \
695 TQM8265_AA_config:  unconfig
696         @case "$@" in \
697         TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no;  BMODE=8260;;  \
698         TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no;  BMODE=8260;; \
699         TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;;  \
700         TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;;  \
701         TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no;  BMODE=60x;;  \
702         TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no;  BMODE=8260;; \
703         TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no;  BMODE=60x;;  \
704         TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no;  BMODE=8260;; \
705         TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;;  \
706         TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no;  BMODE=60x;;  \
707         esac; \
708         >include/config.h ; \
709         if [ "$${CTYPE}" != "MPC8260" ] ; then \
710                 echo "#define CONFIG_$${CTYPE}" >>include/config.h ; \
711         fi; \
712         echo "#define CONFIG_$${CFREQ}MHz"      >>include/config.h ; \
713         echo "... with $${CFREQ}MHz system clock" ; \
714         if [ "$${CACHE}" == "yes" ] ; then \
715                 echo "#define CONFIG_L2_CACHE"  >>include/config.h ; \
716                 echo "... with L2 Cache support" ; \
717         else \
718                 echo "#undef CONFIG_L2_CACHE"   >>include/config.h ; \
719                 echo "... without L2 Cache support" ; \
720         fi; \
721         if [ "$${BMODE}" == "60x" ] ; then \
722                 echo "#define CONFIG_BUSMODE_60x" >>include/config.h ; \
723                 echo "... with 60x Bus Mode" ; \
724         else \
725                 echo "#undef CONFIG_BUSMODE_60x"  >>include/config.h ; \
726                 echo "... without 60x Bus Mode" ; \
727         fi
728         @./mkconfig -a TQM8260 ppc mpc8260 tqm8260
729
730 atc_config:     unconfig
731         @./mkconfig $(@:_config=) ppc mpc8260 atc
732
733 #########################################################################
734 ## 74xx/7xx Systems
735 #########################################################################
736
737 AmigaOneG3SE_config:    unconfig
738         @./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
739
740 EVB64260_config \
741 EVB64260_750CX_config:  unconfig
742         @./mkconfig EVB64260 ppc 74xx_7xx evb64260
743
744 ZUMA_config:    unconfig
745         @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
746
747 PCIPPC2_config \
748 PCIPPC6_config: unconfig
749         @./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2
750
751 BAB7xx_config: unconfig
752         @./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec
753
754 ELPPC_config: unconfig
755         @./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec
756
757 P3G4_config: unconfig
758         @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
759
760 #========================================================================
761 # ARM
762 #========================================================================
763 #########################################################################
764 ## StrongARM Systems
765 #########################################################################
766
767 at91rm9200dk_config     :       unconfig
768         @./mkconfig $(@:_config=) arm at91rm9200 at91rm9200dk
769
770 lart_config     :       unconfig
771         @./mkconfig $(@:_config=) arm sa1100 lart
772
773 dnp1110_config  :       unconfig
774         @./mkconfig $(@:_config=) arm sa1100 dnp1110
775
776 shannon_config  :       unconfig
777         @./mkconfig $(@:_config=) arm sa1100 shannon
778
779 #########################################################################
780 ## ARM92xT Systems
781 #########################################################################
782
783 xtract_trab = $(subst _big_flash,,$(subst _config,,$1))
784
785 omap1510inn_config :    unconfig
786         @./mkconfig $(@:_config=) arm arm925t omap1510inn
787
788 omap1610inn_config :    unconfig
789         @./mkconfig $(@:_config=) arm arm926ejs omap1610inn
790
791 smdk2400_config :       unconfig
792         @./mkconfig $(@:_config=) arm arm920t smdk2400
793
794 smdk2410_config :       unconfig
795         @./mkconfig $(@:_config=) arm arm920t smdk2410
796
797 trab_config \
798 trab_big_flash_config:  unconfig
799         @ >include/config.h
800         @[ -z "$(findstring _big_flash,$@)" ] || \
801                 { echo "#define CONFIG_BIG_FLASH" >>include/config.h ; \
802                   echo "... with big flash support" ; \
803                 }
804         @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab
805
806 VCMA9_config    :       unconfig
807         @./mkconfig $(@:_config=) arm arm920t vcma9 mpl
808
809 #########################################################################
810 ## ARM720T Systems
811 #########################################################################
812
813 impa7_config    :       unconfig
814         @./mkconfig $(@:_config=) arm arm720t impa7
815
816 ep7312_config   :       unconfig
817         @./mkconfig $(@:_config=) arm arm720t ep7312
818
819 #########################################################################
820 ## XScale Systems
821 #########################################################################
822
823 cradle_config   :       unconfig
824         @./mkconfig $(@:_config=) arm pxa cradle
825
826 csb226_config   :       unconfig
827         @./mkconfig $(@:_config=) arm pxa csb226
828
829 innokom_config  :       unconfig
830         @./mkconfig $(@:_config=) arm pxa innokom
831
832 lubbock_config  :       unconfig
833         @./mkconfig $(@:_config=) arm pxa lubbock
834
835 logodl_config   :       unconfig
836         @./mkconfig $(@:_config=) arm pxa logodl
837
838 wepep250_config :       unconfig
839         @./mkconfig $(@:_config=) arm pxa wepep250
840
841 #========================================================================
842 # i386
843 #========================================================================
844 #########################################################################
845 ## AMD SC520 CDP
846 #########################################################################
847 sc520_cdp_config        :       unconfig
848         @./mkconfig $(@:_config=) i386 i386 sc520_cdp
849
850 sc520_spunk_config      :       unconfig
851         @./mkconfig $(@:_config=) i386 i386 sc520_spunk
852
853 sc520_spunk_rel_config  :       unconfig
854         @./mkconfig $(@:_config=) i386 i386 sc520_spunk
855
856 #========================================================================
857 # MIPS
858 #========================================================================
859 #########################################################################
860 ## MIPS32 4Kc
861 #########################################################################
862
863 xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
864
865 incaip_100MHz_config    \
866 incaip_133MHz_config    \
867 incaip_150MHz_config    \
868 incaip_config: unconfig
869         @ >include/config.h
870         @[ -z "$(findstring _100MHz,$@)" ] || \
871                 { echo "#define CPU_CLOCK_RATE 100000000" >>include/config.h ; \
872                   echo "... with 100MHz system clock" ; \
873                 }
874         @[ -z "$(findstring _133MHz,$@)" ] || \
875                 { echo "#define CPU_CLOCK_RATE 133000000" >>include/config.h ; \
876                   echo "... with 133MHz system clock" ; \
877                 }
878         @[ -z "$(findstring _150MHz,$@)" ] || \
879                 { echo "#define CPU_CLOCK_RATE 150000000" >>include/config.h ; \
880                   echo "... with 150MHz system clock" ; \
881                 }
882         @./mkconfig -a $(call xtract_incaip,$@) mips mips incaip
883
884 #########################################################################
885 ## MIPS64 5Kc
886 #########################################################################
887
888 purple_config :         unconfig
889         @./mkconfig $(@:_config=) mips mips purple
890
891 #########################################################################
892 #########################################################################
893
894 clean:
895         find . -type f \
896                 \( -name 'core' -o -name '*.bak' -o -name '*~' \
897                 -o -name '*.o'  -o -name '*.a'  \) -print \
898                 | xargs rm -f
899         rm -f examples/hello_world examples/timer \
900               examples/eepro100_eeprom examples/sched \
901               examples/mem_to_mem_idma2intr examples/82559_eeprom
902
903         rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr
904         rm -f tools/easylogo/easylogo tools/bmp_logo
905         rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend
906         rm -f tools/env/fw_printenv tools/env/fw_setenv
907         rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image
908
909 clobber:        clean
910         find . -type f \
911                 \( -name .depend -o -name '*.srec' -o -name '*.bin' \) \
912                 -print \
913                 | xargs rm -f
914         rm -f $(OBJS) *.bak tags TAGS
915         rm -fr *.*~
916         rm -f u-boot u-boot.map $(ALL)
917         rm -f tools/crc32.c tools/environment.c tools/env/crc32.c
918         rm -f tools/inca-swap-bytes cpu/mpc824x/bedbug_603e.c
919         rm -f include/asm/proc include/asm/arch include/asm
920
921 mrproper \
922 distclean:      clobber unconfig
923
924 backup:
925         F=`basename $(TOPDIR)` ; cd .. ; \
926         gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
927
928 #########################################################################