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