xref: /rk3399_rockchip-uboot/Makefile (revision 998eaaecd46ee5f00550e30e606cb5556e0b9345)
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
24HOSTARCH := $(shell uname -m | \
25	sed -e s/i.86/i386/ \
26	    -e s/sun4u/sparc64/ \
27	    -e s/arm.*/arm/ \
28	    -e s/sa110/arm/ \
29	    -e s/powerpc/ppc/ \
30	    -e s/macppc/ppc/)
31
32HOSTOS := $(shell uname -s | tr A-Z a-z | \
33	    sed -e 's/\(cygwin\).*/cygwin/')
34
35export	HOSTARCH
36
37# Deal with colliding definitions from tcsh etc.
38VENDOR=
39
40#########################################################################
41
42TOPDIR	:= $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
43export	TOPDIR
44
45ifeq (include/config.mk,$(wildcard include/config.mk))
46# load ARCH, BOARD, and CPU configuration
47include include/config.mk
48export	ARCH CPU BOARD VENDOR
49# load other configuration
50include $(TOPDIR)/config.mk
51
52ifndef CROSS_COMPILE
53ifeq ($(HOSTARCH),ppc)
54CROSS_COMPILE =
55else
56ifeq ($(ARCH),ppc)
57CROSS_COMPILE = ppc_8xx-
58endif
59ifeq ($(ARCH),arm)
60CROSS_COMPILE = arm-linux-
61endif
62ifeq ($(ARCH),i386)
63ifeq ($(HOSTARCH),i386)
64CROSS_COMPILE =
65else
66CROSS_COMPILE = i386-linux-
67endif
68endif
69ifeq ($(ARCH),mips)
70CROSS_COMPILE = mips_4KC-
71endif
72ifeq ($(ARCH),nios)
73CROSS_COMPILE = nios-elf-
74endif
75ifeq ($(ARCH),m68k)
76CROSS_COMPILE = m68k-elf-
77endif
78endif
79endif
80
81export	CROSS_COMPILE
82
83#########################################################################
84# U-Boot objects....order is important (i.e. start must be first)
85
86OBJS  = cpu/$(CPU)/start.o
87ifeq ($(CPU),i386)
88OBJS += cpu/$(CPU)/start16.o
89OBJS += cpu/$(CPU)/reset.o
90endif
91ifeq ($(CPU),ppc4xx)
92OBJS += cpu/$(CPU)/resetvec.o
93endif
94ifeq ($(CPU),mpc85xx)
95OBJS += cpu/$(CPU)/resetvec.o
96endif
97
98LIBS  = lib_generic/libgeneric.a
99LIBS += board/$(BOARDDIR)/lib$(BOARD).a
100LIBS += cpu/$(CPU)/lib$(CPU).a
101LIBS += lib_$(ARCH)/lib$(ARCH).a
102LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
103	fs/reiserfs/libreiserfs.a
104LIBS += net/libnet.a
105LIBS += disk/libdisk.a
106LIBS += rtc/librtc.a
107LIBS += dtt/libdtt.a
108LIBS += drivers/libdrivers.a
109LIBS += drivers/sk98lin/libsk98lin.a
110LIBS += post/libpost.a post/cpu/libcpu.a
111LIBS += common/libcommon.a
112.PHONY : $(LIBS)
113
114# Add GCC lib
115PLATFORM_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)
120SUBDIRS	= tools \
121	  examples \
122	  post \
123	  post/cpu
124.PHONY : $(SUBDIRS)
125
126#########################################################################
127#########################################################################
128
129ALL = u-boot.srec u-boot.bin System.map
130
131all:		$(ALL)
132
133u-boot.srec:	u-boot
134		$(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
135
136u-boot.bin:	u-boot
137		$(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
138
139u-boot.img:	u-boot.bin
140		./tools/mkimage -A $(ARCH) -T firmware -C none \
141		-a $(TEXT_BASE) -e 0 \
142		-n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' include/version.h | \
143			sed -e 's/"[	 ]*$$/ for $(BOARD) board"/') \
144		-d $< $@
145
146u-boot.dis:	u-boot
147		$(OBJDUMP) -d $< > $@
148
149u-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
161gdbtools:
162		$(MAKE) -C tools/gdb || exit 1
163
164depend dep:
165		@for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done
166
167tags:
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
174etags:
175		etags -a `find $(SUBDIRS) include \
176			\( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
177
178System.map:	u-boot
179		@$(NM) $< | \
180		grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
181		sort > System.map
182
183#########################################################################
184else
185all install u-boot u-boot.srec depend dep:
186	@echo "System not configured - see README" >&2
187	@ exit 1
188endif
189
190#########################################################################
191
192unconfig:
193	@rm -f include/config.h include/config.mk board/*/config.tmp
194
195#========================================================================
196# PowerPC
197#========================================================================
198
199#########################################################################
200## MPC5xx Systems
201#########################################################################
202
203cmi_mpc5xx_config:	unconfig
204	@./mkconfig $(@:_config=) ppc mpc5xx cmi
205
206PATI_config:		unconfig
207	@./mkconfig $(@:_config=) ppc mpc5xx pati mpl
208
209#########################################################################
210## MPC5xxx Systems
211#########################################################################
212MPC5200LITE_config		\
213MPC5200LITE_LOWBOOT_config	\
214MPC5200LITE_LOWBOOT08_config	\
215icecube_5200_DDR_config		\
216IceCube_5200_DDR_config		\
217icecube_5200_DDR_LOWBOOT_config \
218icecube_5200_DDR_LOWBOOT08_config \
219icecube_5200_config		\
220IceCube_5200_config		\
221IceCube_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
249MINI5200_config	\
250EVAL5200_config	\
251TOP5200_config:	unconfig
252	@ echo "#define CONFIG_$(@:_config=) 1"	>include/config.h
253	@./mkconfig -a TOP5200 ppc mpc5xxx top5200 emk
254
255PM520_config:	unconfig
256	@./mkconfig $(@:_config=) ppc mpc5xxx pm520
257
258#########################################################################
259## MPC8xx Systems
260#########################################################################
261
262AdderII_config:	unconfig
263	@./mkconfig $(@:_config=) ppc mpc8xx adderII
264
265ADS860_config     \
266DUET_ADS_config   \
267FADS823_config    \
268FADS850SAR_config \
269MPC86xADS_config  \
270FADS860T_config:	unconfig
271	@./mkconfig $(@:_config=) ppc mpc8xx fads
272
273AMX860_config	:	unconfig
274	@./mkconfig $(@:_config=) ppc mpc8xx amx860 westel
275
276c2mon_config:		unconfig
277	@./mkconfig $(@:_config=) ppc mpc8xx c2mon
278
279CCM_config:		unconfig
280	@./mkconfig $(@:_config=) ppc mpc8xx CCM siemens
281
282cogent_mpc8xx_config:	unconfig
283	@./mkconfig $(@:_config=) ppc mpc8xx cogent
284
285ELPT860_config:		unconfig
286	@./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX
287
288ESTEEM192E_config:	unconfig
289	@./mkconfig $(@:_config=) ppc mpc8xx esteem192e
290
291ETX094_config	:	unconfig
292	@./mkconfig $(@:_config=) ppc mpc8xx etx094
293
294FLAGADM_config:	unconfig
295	@./mkconfig $(@:_config=) ppc mpc8xx flagadm
296
297xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
298
299GEN860T_SC_config	\
300GEN860T_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
308GENIETV_config:	unconfig
309	@./mkconfig $(@:_config=) ppc mpc8xx genietv
310
311GTH_config:	unconfig
312	@./mkconfig $(@:_config=) ppc mpc8xx gth
313
314hermes_config	:	unconfig
315	@./mkconfig $(@:_config=) ppc mpc8xx hermes
316
317HMI10_config	:	unconfig
318	@./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
319
320IAD210_config: unconfig
321	@./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens
322
323xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
324
325ICU862_100MHz_config	\
326ICU862_config: unconfig
327	@ >include/config.h
328	@[ -z "$(findstring _100MHz,$@)" ] || \
329		{ echo "#define CONFIG_100MHz"	>>include/config.h ; \
330		  echo "... with 100MHz system clock" ; \
331		}
332	@./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
333
334IP860_config	:	unconfig
335	@./mkconfig $(@:_config=) ppc mpc8xx ip860
336
337IVML24_256_config \
338IVML24_128_config \
339IVML24_config:	unconfig
340	@ >include/config.h
341	@[ -z "$(findstring IVML24_config,$@)" ] || \
342		 { echo "#define CONFIG_IVML24_16M"	>>include/config.h ; \
343		 }
344	@[ -z "$(findstring IVML24_128_config,$@)" ] || \
345		 { echo "#define CONFIG_IVML24_32M"	>>include/config.h ; \
346		 }
347	@[ -z "$(findstring IVML24_256_config,$@)" ] || \
348		 { echo "#define CONFIG_IVML24_64M"	>>include/config.h ; \
349		 }
350	@./mkconfig -a IVML24 ppc mpc8xx ivm
351
352IVMS8_256_config \
353IVMS8_128_config \
354IVMS8_config:	unconfig
355	@ >include/config.h
356	@[ -z "$(findstring IVMS8_config,$@)" ] || \
357		 { echo "#define CONFIG_IVMS8_16M"	>>include/config.h ; \
358		 }
359	@[ -z "$(findstring IVMS8_128_config,$@)" ] || \
360		 { echo "#define CONFIG_IVMS8_32M"	>>include/config.h ; \
361		 }
362	@[ -z "$(findstring IVMS8_256_config,$@)" ] || \
363		 { echo "#define CONFIG_IVMS8_64M"	>>include/config.h ; \
364		 }
365	@./mkconfig -a IVMS8 ppc mpc8xx ivm
366
367KUP4K_config	:	unconfig
368	@./mkconfig $(@:_config=) ppc mpc8xx kup4k kup
369
370KUP4X_config    :       unconfig
371	@./mkconfig $(@:_config=) ppc mpc8xx kup4x kup
372
373LANTEC_config	:	unconfig
374	@./mkconfig $(@:_config=) ppc mpc8xx lantec
375
376lwmon_config:		unconfig
377	@./mkconfig $(@:_config=) ppc mpc8xx lwmon
378
379MBX_config	\
380MBX860T_config:	unconfig
381	@./mkconfig $(@:_config=) ppc mpc8xx mbx8xx
382
383MHPC_config:		unconfig
384	@./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec
385
386MVS1_config :		unconfig
387	@./mkconfig $(@:_config=) ppc mpc8xx mvs1
388
389xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
390
391NETVIA_V2_config \
392NETVIA_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
404xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
405
406NETPHONE_V2_config \
407NETPHONE_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
417xtract_NETTA = $(subst _ISDN,,$(subst _config,,$1))
418
419NETTA_ISDN_config \
420NETTA_config:		unconfig
421	@ >include/config.h
422	@[ -z "$(findstring NETTA_config,$@)" ] || \
423		 { echo "#undef CONFIG_NETTA_ISDN" >>include/config.h ; \
424		 }
425	@[ -z "$(findstring NETTA_ISDN_config,$@)" ] || \
426		 { echo "#define CONFIG_NETTA_ISDN 1" >>include/config.h ; \
427		 }
428	@./mkconfig -a $(call xtract_NETTA,$@) ppc mpc8xx netta
429
430NX823_config:		unconfig
431	@./mkconfig $(@:_config=) ppc mpc8xx nx823
432
433pcu_e_config:		unconfig
434	@./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens
435
436QS850_config:	unconfig
437	@./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
438
439QS823_config:	unconfig
440	@./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
441
442QS860T_config:	unconfig
443	@./mkconfig $(@:_config=) ppc mpc8xx qs860t snmc
444
445R360MPI_config:	unconfig
446	@./mkconfig $(@:_config=) ppc mpc8xx r360mpi
447
448RBC823_config:	unconfig
449	@./mkconfig $(@:_config=) ppc mpc8xx rbc823
450
451RPXClassic_config:	unconfig
452	@./mkconfig $(@:_config=) ppc mpc8xx RPXClassic
453
454RPXlite_config:		unconfig
455	@./mkconfig $(@:_config=) ppc mpc8xx RPXlite
456
457rmu_config:	unconfig
458	@./mkconfig $(@:_config=) ppc mpc8xx rmu
459
460RRvision_config:	unconfig
461	@./mkconfig $(@:_config=) ppc mpc8xx RRvision
462
463RRvision_LCD_config:	unconfig
464	@echo "#define CONFIG_LCD" >include/config.h
465	@echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
466	@./mkconfig -a RRvision ppc mpc8xx RRvision
467
468SM850_config	:	unconfig
469	@./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
470
471SPD823TS_config:	unconfig
472	@./mkconfig $(@:_config=) ppc mpc8xx spd8xx
473
474svm_sc8xx_config:	unconfig
475	@ >include/config.h
476	@./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx
477
478SXNI855T_config:	unconfig
479	@./mkconfig $(@:_config=) ppc mpc8xx sixnet
480
481# EMK MPC8xx based modules
482TOP860_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
489xtract_8xx = $(subst _66MHz,,$(subst _80MHz,,$(subst _100MHz,,$(subst _133MHz,,$(subst _LCD,,$(subst _config,,$1))))))
490
491FPS850L_config		\
492FPS860L_config		\
493NSCU_config		\
494TQM823L_config		\
495TQM823L_66MHz_config	\
496TQM823L_80MHz_config	\
497TQM823L_LCD_config	\
498TQM823L_LCD_66MHz_config \
499TQM823L_LCD_80MHz_config \
500TQM850L_config		\
501TQM850L_66MHz_config	\
502TQM850L_80MHz_config	\
503TQM855L_config		\
504TQM855L_66MHz_config	\
505TQM855L_80MHz_config	\
506TQM860L_config		\
507TQM860L_66MHz_config	\
508TQM860L_80MHz_config	\
509TQM862L_config		\
510TQM862L_66MHz_config	\
511TQM862L_80MHz_config	\
512TQM823M_config		\
513TQM823M_66MHz_config	\
514TQM823M_80MHz_config	\
515TQM850M_config		\
516TQM850M_66MHz_config	\
517TQM850M_80MHz_config	\
518TQM855M_config		\
519TQM855M_66MHz_config	\
520TQM855M_80MHz_config	\
521TQM860M_config		\
522TQM860M_66MHz_config	\
523TQM860M_80MHz_config	\
524TQM862M_config		\
525TQM862M_66MHz_config	\
526TQM862M_80MHz_config	\
527TQM862M_100MHz_config	\
528TQM866M_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
553TTTech_config:	unconfig
554	@echo "#define CONFIG_LCD" >include/config.h
555	@echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
556	@./mkconfig -a TQM823L ppc mpc8xx tqm8xx
557
558v37_config:	unconfig
559	@echo "#define CONFIG_LCD" >include/config.h
560	@echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h
561	@./mkconfig $(@:_config=) ppc mpc8xx v37
562
563wtk_config:	unconfig
564	@echo "#define CONFIG_LCD" >include/config.h
565	@echo "#define CONFIG_SHARP_LQ065T9DR51U" >>include/config.h
566	@./mkconfig -a TQM823L ppc mpc8xx tqm8xx
567
568#########################################################################
569## PPC4xx Systems
570#########################################################################
571xtract_4xx = $(subst _MODEL_BA,,$(subst _MODEL_ME,,$(subst _MODEL_HI,,$(subst _config,,$1))))
572
573ADCIOP_config:	unconfig
574	@./mkconfig $(@:_config=) ppc ppc4xx adciop esd
575
576AR405_config:	unconfig
577	@./mkconfig $(@:_config=) ppc ppc4xx ar405 esd
578
579ASH405_config:	unconfig
580	@./mkconfig $(@:_config=) ppc ppc4xx ash405 esd
581
582BUBINGA405EP_config:	unconfig
583	@./mkconfig $(@:_config=) ppc ppc4xx bubinga405ep
584
585CANBT_config:	unconfig
586	@./mkconfig $(@:_config=) ppc ppc4xx canbt esd
587
588CPCI405_config	\
589CPCI4052_config	\
590CPCI405AB_config:	unconfig
591	@./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd
592	@echo "BOARD_REVISION = $(@:_config=)"	>>include/config.mk
593
594CPCI440_config:	unconfig
595	@./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd
596
597CPCIISER4_config:	unconfig
598	@./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd
599
600CRAYL1_config:	unconfig
601	@./mkconfig $(@:_config=) ppc ppc4xx L1 cray
602
603csb272_config:	unconfig
604	@./mkconfig $(@:_config=) ppc ppc4xx csb272
605
606DASA_SIM_config: unconfig
607	@./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd
608
609DP405_config:	unconfig
610	@./mkconfig $(@:_config=) ppc ppc4xx dp405 esd
611
612DU405_config:	unconfig
613	@./mkconfig $(@:_config=) ppc ppc4xx du405 esd
614
615EBONY_config:	unconfig
616	@./mkconfig $(@:_config=) ppc ppc4xx ebony
617
618ERIC_config:	unconfig
619	@./mkconfig $(@:_config=) ppc ppc4xx eric
620
621EXBITGEN_config:	unconfig
622	@./mkconfig $(@:_config=) ppc ppc4xx exbitgen
623
624HUB405_config:	unconfig
625	@./mkconfig $(@:_config=) ppc ppc4xx hub405 esd
626
627JSE_config:	unconfig
628	@./mkconfig $(@:_config=) ppc ppc4xx jse
629
630MIP405_config:	unconfig
631	@./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl
632
633MIP405T_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
638ML2_config:	unconfig
639	@./mkconfig $(@:_config=) ppc ppc4xx ml2
640
641ml300_config:	unconfig
642	@./mkconfig $(@:_config=) ppc ppc4xx ml300 xilinx
643
644OCOTEA_config:	unconfig
645	@./mkconfig $(@:_config=) ppc ppc4xx ocotea
646
647OCRTC_config		\
648ORSG_config:	unconfig
649	@./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd
650
651PCI405_config:	unconfig
652	@./mkconfig $(@:_config=) ppc ppc4xx pci405 esd
653
654PIP405_config:	unconfig
655	@./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl
656
657PLU405_config:	unconfig
658	@./mkconfig $(@:_config=) ppc ppc4xx plu405 esd
659
660PMC405_config:	unconfig
661	@./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd
662
663PPChameleonEVB_MODEL_BA_config	\
664PPChameleonEVB_MODEL_ME_config	\
665PPChameleonEVB_MODEL_HI_config	\
666PPChameleonEVB_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
682VOH405_config:	unconfig
683	@./mkconfig $(@:_config=) ppc ppc4xx voh405 esd
684
685W7OLMC_config	\
686W7OLMG_config: unconfig
687	@./mkconfig $(@:_config=) ppc ppc4xx w7o
688
689WALNUT405_config:	unconfig
690	@./mkconfig $(@:_config=) ppc ppc4xx walnut405
691
692XPEDITE1K_config:	unconfig
693	@./mkconfig $(@:_config=) ppc ppc4xx xpedite1k
694
695#########################################################################
696## MPC824x Systems
697#########################################################################
698xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
699
700A3000_config: unconfig
701	@./mkconfig $(@:_config=) ppc mpc824x a3000
702
703BMW_config: unconfig
704	@./mkconfig $(@:_config=) ppc mpc824x bmw
705
706CPC45_config	\
707CPC45_ROMBOOT_config:	unconfig
708	@./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45
709	@cd ./include ;				\
710	if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
711		echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
712		echo "... booting from 8-bit flash" ; \
713	else \
714		echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
715		echo "... booting from 64-bit flash" ; \
716	fi; \
717	echo "export CONFIG_BOOT_ROM" >> config.mk;
718
719CU824_config: unconfig
720	@./mkconfig $(@:_config=) ppc mpc824x cu824
721
722eXalion_config: unconfig
723	@./mkconfig $(@:_config=) ppc mpc824x eXalion
724
725MOUSSE_config: unconfig
726	@./mkconfig $(@:_config=) ppc mpc824x mousse
727
728MUSENKI_config: unconfig
729	@./mkconfig $(@:_config=) ppc mpc824x musenki
730
731MVBLUE_config:	unconfig
732	@./mkconfig $(@:_config=) ppc mpc824x mvblue
733
734OXC_config: unconfig
735	@./mkconfig $(@:_config=) ppc mpc824x oxc
736
737PN62_config: unconfig
738	@./mkconfig $(@:_config=) ppc mpc824x pn62
739
740Sandpoint8240_config: unconfig
741	@./mkconfig $(@:_config=) ppc mpc824x sandpoint
742
743Sandpoint8245_config: unconfig
744	@./mkconfig $(@:_config=) ppc mpc824x sandpoint
745
746SL8245_config: unconfig
747	@./mkconfig $(@:_config=) ppc mpc824x sl8245
748
749utx8245_config: unconfig
750	@./mkconfig $(@:_config=) ppc mpc824x utx8245
751
752#########################################################################
753## MPC8260 Systems
754#########################################################################
755
756atc_config:	unconfig
757	@./mkconfig $(@:_config=) ppc mpc8260 atc
758
759cogent_mpc8260_config:	unconfig
760	@./mkconfig $(@:_config=) ppc mpc8260 cogent
761
762CPU86_config	\
763CPU86_ROMBOOT_config: unconfig
764	@./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86
765	@cd ./include ;				\
766	if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
767		echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
768		echo "... booting from 8-bit flash" ; \
769	else \
770		echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
771		echo "... booting from 64-bit flash" ; \
772	fi; \
773	echo "export CONFIG_BOOT_ROM" >> config.mk;
774
775ep8260_config:	unconfig
776	@./mkconfig $(@:_config=) ppc mpc8260 ep8260
777
778gw8260_config:	unconfig
779	@./mkconfig $(@:_config=) ppc mpc8260 gw8260
780
781hymod_config:	unconfig
782	@./mkconfig $(@:_config=) ppc mpc8260 hymod
783
784IPHASE4539_config:	unconfig
785	@./mkconfig $(@:_config=) ppc mpc8260 iphase4539
786
787MPC8260ADS_config	\
788MPC8260ADS_33MHz_config	\
789MPC8260ADS_40MHz_config	\
790MPC8272ADS_config	\
791PQ2FADS_config		\
792PQ2FADS-VR_config	\
793PQ2FADS-ZU_config	\
794PQ2FADS-ZU_66MHz_config	\
795	:		unconfig
796	$(if $(findstring PQ2FADS,$@), \
797	@echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > include/config.h, \
798	@echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > include/config.h)
799	$(if $(findstring MHz,$@), \
800	@echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> include/config.h, \
801	$(if $(findstring VR,$@), \
802	@echo "#define CONFIG_8260_CLKIN 66000000" >> include/config.h))
803	@./mkconfig -a MPC8260ADS ppc mpc8260 mpc8260ads
804
805MPC8266ADS_config:	unconfig
806	@./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads
807
808# PM825/PM826 default configuration:  small (= 8 MB) Flash / boot from 64-bit flash
809PM825_config	\
810PM825_ROMBOOT_config	\
811PM825_BIGFLASH_config	\
812PM825_ROMBOOT_BIGFLASH_config	\
813PM826_config	\
814PM826_ROMBOOT_config	\
815PM826_BIGFLASH_config	\
816PM826_ROMBOOT_BIGFLASH_config:	unconfig
817	@if [ "$(findstring PM825_,$@)" ] ; then \
818		echo "#define CONFIG_PCI"	>include/config.h ; \
819	else \
820		>include/config.h ; \
821	fi
822	@if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
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
842PM828_config	\
843PM828_PCI_config	\
844PM828_ROMBOOT_config	\
845PM828_ROMBOOT_PCI_config:	unconfig
846	@if [ -z "$(findstring _PCI_,$@)" ] ; then \
847		echo "#define CONFIG_PCI"  >>include/config.h ; \
848		echo "... with PCI enabled" ; \
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
859ppmc8260_config:	unconfig
860	@./mkconfig $(@:_config=) ppc mpc8260 ppmc8260
861
862RPXsuper_config:	unconfig
863	@./mkconfig $(@:_config=) ppc mpc8260 rpxsuper
864
865rsdproto_config:	unconfig
866	@./mkconfig $(@:_config=) ppc mpc8260 rsdproto
867
868sacsng_config:	unconfig
869	@./mkconfig $(@:_config=) ppc mpc8260 sacsng
870
871sbc8260_config:	unconfig
872	@./mkconfig $(@:_config=) ppc mpc8260 sbc8260
873
874SCM_config:		unconfig
875	@./mkconfig $(@:_config=) ppc mpc8260 SCM siemens
876
877TQM8255_AA_config \
878TQM8260_AA_config \
879TQM8260_AB_config \
880TQM8260_AC_config \
881TQM8260_AD_config \
882TQM8260_AE_config \
883TQM8260_AF_config \
884TQM8260_AG_config \
885TQM8260_AH_config \
886TQM8265_AA_config:  unconfig
887	@case "$@" in \
888	TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no;  BMODE=8260;;  \
889	TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no;  BMODE=8260;; \
890	TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;;  \
891	TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;;  \
892	TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no;  BMODE=60x;;  \
893	TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no;  BMODE=8260;; \
894	TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no;  BMODE=60x;;  \
895	TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no;  BMODE=8260;; \
896	TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;;  \
897	TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no;  BMODE=60x;;  \
898	esac; \
899	>include/config.h ; \
900	if [ "$${CTYPE}" != "MPC8260" ] ; then \
901		echo "#define CONFIG_$${CTYPE}"	>>include/config.h ; \
902	fi; \
903	echo "#define CONFIG_$${CFREQ}MHz"	>>include/config.h ; \
904	echo "... with $${CFREQ}MHz system clock" ; \
905	if [ "$${CACHE}" == "yes" ] ; then \
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
921ZPC1900_config: unconfig
922	@./mkconfig $(@:_config=) ppc mpc8260 zpc1900
923
924#========================================================================
925# M68K
926#========================================================================
927#########################################################################
928## Coldfire
929#########################################################################
930
931M5272C3_config :		unconfig
932	@./mkconfig $(@:_config=) m68k mcf52x2 m5272c3
933
934M5282EVB_config :		unconfig
935	@./mkconfig $(@:_config=) m68k mcf52x2 m5282evb
936
937#########################################################################
938## MPC85xx Systems
939#########################################################################
940
941MPC8540ADS_config:      unconfig
942	@./mkconfig $(@:_config=) ppc mpc85xx mpc8540ads
943
944MPC8560ADS_config:      unconfig
945	@./mkconfig $(@:_config=) ppc mpc85xx mpc8560ads
946
947#########################################################################
948## 74xx/7xx Systems
949#########################################################################
950
951AmigaOneG3SE_config:	unconfig
952	@./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
953
954BAB7xx_config: unconfig
955	@./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec
956
957DB64360_config:  unconfig
958	@./mkconfig DB64360 ppc 74xx_7xx db64360 Marvell
959
960DB64460_config:  unconfig
961	@./mkconfig DB64460 ppc 74xx_7xx db64460 Marvell
962
963debris_config: unconfig
964	@./mkconfig $(@:_config=) ppc mpc824x debris etin
965
966ELPPC_config: unconfig
967	@./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec
968
969EVB64260_config	\
970EVB64260_750CX_config:	unconfig
971	@./mkconfig EVB64260 ppc 74xx_7xx evb64260
972
973P3G4_config: unconfig
974	@./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
975
976PCIPPC2_config \
977PCIPPC6_config: unconfig
978	@./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2
979
980ZUMA_config:	unconfig
981	@./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
982
983#========================================================================
984# ARM
985#========================================================================
986#########################################################################
987## StrongARM Systems
988#########################################################################
989
990assabet_config	:	unconfig
991	@./mkconfig $(@:_config=) arm sa1100 assabet
992
993dnp1110_config	:	unconfig
994	@./mkconfig $(@:_config=) arm sa1100 dnp1110
995
996gcplus_config	:	unconfig
997	@./mkconfig $(@:_config=) arm sa1100 gcplus
998
999lart_config	:	unconfig
1000	@./mkconfig $(@:_config=) arm sa1100 lart
1001
1002shannon_config	:	unconfig
1003	@./mkconfig $(@:_config=) arm sa1100 shannon
1004
1005#########################################################################
1006## ARM92xT Systems
1007#########################################################################
1008
1009xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
1010
1011xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1012
1013SX1_config :		unconfig
1014	@./mkconfig $(@:_config=) arm arm925t sx1
1015
1016integratorcp_config :	unconfig
1017	@./mkconfig $(@:_config=) arm arm926ejs integratorcp
1018
1019integratorap_config :	unconfig
1020	@./mkconfig $(@:_config=) arm arm926ejs integratorap
1021
1022versatile_config :	unconfig
1023	@./mkconfig $(@:_config=) arm arm926ejs versatile
1024
1025omap1510inn_config :	unconfig
1026	@./mkconfig $(@:_config=) arm arm925t omap1510inn
1027
1028omap1610inn_config \
1029omap1610inn_cs0boot_config \
1030omap1610inn_cs3boot_config \
1031omap1610h2_config \
1032omap1610h2_cs0boot_config \
1033omap1610h2_cs3boot_config :	unconfig
1034	@if [ "$(findstring _cs0boot_, $@)" ] ; then \
1035		echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
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
1043smdk2400_config	:	unconfig
1044	@./mkconfig $(@:_config=) arm arm920t smdk2400
1045
1046smdk2410_config	:	unconfig
1047	@./mkconfig $(@:_config=) arm arm920t smdk2410
1048
1049# TRAB default configuration:	8 MB Flash, 32 MB RAM
1050trab_config \
1051trab_bigram_config \
1052trab_bigflash_config \
1053trab_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
1074VCMA9_config	:	unconfig
1075	@./mkconfig $(@:_config=) arm arm920t vcma9 mpl
1076
1077
1078#########################################################################
1079## S3C44B0 Systems
1080#########################################################################
1081
1082B2_config	:	unconfig
1083	@./mkconfig $(@:_config=) arm s3c44b0 B2 dave
1084
1085#########################################################################
1086## ARM720T Systems
1087#########################################################################
1088
1089impa7_config	:	unconfig
1090	@./mkconfig $(@:_config=) arm arm720t impa7
1091
1092ep7312_config	:	unconfig
1093	@./mkconfig $(@:_config=) arm arm720t ep7312
1094
1095modnet50_config :	unconfig
1096	@./mkconfig $(@:_config=) arm arm720t modnet50
1097
1098#########################################################################
1099## AT91RM9200 Systems
1100#########################################################################
1101
1102at91rm9200dk_config	:	unconfig
1103	@./mkconfig $(@:_config=) arm at91rm9200 at91rm9200dk
1104
1105#########################################################################
1106## XScale Systems
1107#########################################################################
1108
1109cradle_config	:	unconfig
1110	@./mkconfig $(@:_config=) arm pxa cradle
1111
1112csb226_config	:	unconfig
1113	@./mkconfig $(@:_config=) arm pxa csb226
1114
1115innokom_config	:	unconfig
1116	@./mkconfig $(@:_config=) arm pxa innokom
1117
1118ixdp425_config	:	unconfig
1119	@./mkconfig $(@:_config=) arm ixp ixdp425
1120
1121lubbock_config	:	unconfig
1122	@./mkconfig $(@:_config=) arm pxa lubbock
1123
1124logodl_config	:	unconfig
1125	@./mkconfig $(@:_config=) arm pxa logodl
1126
1127wepep250_config	:	unconfig
1128	@./mkconfig $(@:_config=) arm pxa wepep250
1129
1130xm250_config	:	unconfig
1131	@./mkconfig $(@:_config=) arm pxa xm250
1132
1133#========================================================================
1134# i386
1135#========================================================================
1136#########################################################################
1137## AMD SC520 CDP
1138#########################################################################
1139sc520_cdp_config	:	unconfig
1140	@./mkconfig $(@:_config=) i386 i386 sc520_cdp
1141
1142sc520_spunk_config	:	unconfig
1143	@./mkconfig $(@:_config=) i386 i386 sc520_spunk
1144
1145sc520_spunk_rel_config	:	unconfig
1146	@./mkconfig $(@:_config=) i386 i386 sc520_spunk
1147
1148#========================================================================
1149# MIPS
1150#========================================================================
1151#########################################################################
1152## MIPS32 4Kc
1153#########################################################################
1154
1155xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
1156
1157incaip_100MHz_config	\
1158incaip_133MHz_config	\
1159incaip_150MHz_config	\
1160incaip_config: unconfig
1161	@ >include/config.h
1162	@[ -z "$(findstring _100MHz,$@)" ] || \
1163		{ echo "#define CPU_CLOCK_RATE 100000000" >>include/config.h ; \
1164		  echo "... with 100MHz system clock" ; \
1165		}
1166	@[ -z "$(findstring _133MHz,$@)" ] || \
1167		{ echo "#define CPU_CLOCK_RATE 133000000" >>include/config.h ; \
1168		  echo "... with 133MHz system clock" ; \
1169		}
1170	@[ -z "$(findstring _150MHz,$@)" ] || \
1171		{ echo "#define CPU_CLOCK_RATE 150000000" >>include/config.h ; \
1172		  echo "... with 150MHz system clock" ; \
1173		}
1174	@./mkconfig -a $(call xtract_incaip,$@) mips mips incaip
1175
1176tb0229_config: unconfig
1177	@./mkconfig $(@:_config=) mips mips tb0229
1178
1179#########################################################################
1180## MIPS64 5Kc
1181#########################################################################
1182
1183purple_config :		unconfig
1184	@./mkconfig $(@:_config=) mips mips purple
1185
1186#========================================================================
1187# Nios
1188#========================================================================
1189#########################################################################
1190## Nios32
1191#########################################################################
1192
1193DK1C20_safe_32_config		\
1194DK1C20_standard_32_config	\
1195DK1C20_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
1211DK1S10_safe_32_config		\
1212DK1S10_standard_32_config	\
1213DK1S10_mtx_ldk_20_config	\
1214DK1S10_config:	unconfig
1215	@ >include/config.h
1216	@[ -z "$(findstring _safe_32,$@)" ] || \
1217		{ echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
1218		  echo "... NIOS 'safe_32' configuration" ; \
1219		}
1220	@[ -z "$(findstring _standard_32,$@)" ] || \
1221		{ echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1222		  echo "... NIOS 'standard_32' configuration" ; \
1223		}
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
1234ADNPESC1_DNPEVA2_base_32_config	\
1235ADNPESC1_base_32_config		\
1236ADNPESC1_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#########################################################################
1256dbau1000_config		: 	unconfig
1257	@ >include/config.h
1258	@echo "#define CONFIG_DBAU1000 1" >>include/config.h
1259	@./mkconfig -a dbau1x00 mips mips dbau1x00
1260
1261dbau1100_config		: 	unconfig
1262	@ >include/config.h
1263	@echo "#define CONFIG_DBAU1100 1" >>include/config.h
1264	@./mkconfig -a dbau1x00 mips mips dbau1x00
1265
1266dbau1500_config		: 	unconfig
1267	@ >include/config.h
1268	@echo "#define CONFIG_DBAU1500 1" >>include/config.h
1269	@./mkconfig -a dbau1x00 mips mips dbau1x00
1270
1271#########################################################################
1272#########################################################################
1273
1274clean:
1275	find . -type f \
1276		\( -name 'core' -o -name '*.bak' -o -name '*~' \
1277		-o -name '*.o'  -o -name '*.a'  \) -print \
1278		| xargs rm -f
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
1290clobber:	clean
1291	find . -type f \
1292		\( -name .depend -o -name '*.srec' -o -name '*.bin' \) \
1293		-print \
1294		| xargs rm -f
1295	rm -f $(OBJS) *.bak tags TAGS
1296	rm -fr *.*~
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
1302mrproper \
1303distclean:	clobber unconfig
1304
1305backup:
1306	F=`basename $(TOPDIR)` ; cd .. ; \
1307	gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
1308
1309#########################################################################
1310