xref: /rk3399_rockchip-uboot/Makefile (revision fd4bb67bd219184481366f95feb6af34cf80effe)
1#
2# (C) Copyright 2000-2005
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 '[:upper:]' '[:lower:]' | \
33	    sed -e 's/\(cygwin\).*/cygwin/')
34
35export	HOSTARCH HOSTOS
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 SOC
49# load other configuration
50include $(TOPDIR)/config.mk
51
52ifndef CROSS_COMPILE
53ifeq ($(HOSTARCH),ppc)
54CROSS_COMPILE =
55else
56ifeq ($(ARCH),ppc)
57CROSS_COMPILE = powerpc-linux-
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),nios2)
76CROSS_COMPILE = nios2-elf-
77endif
78ifeq ($(ARCH),m68k)
79CROSS_COMPILE = m68k-elf-
80endif
81ifeq ($(ARCH),microblaze)
82CROSS_COMPILE = mb-
83endif
84endif
85endif
86
87export	CROSS_COMPILE
88
89#########################################################################
90# U-Boot objects....order is important (i.e. start must be first)
91
92OBJS  = cpu/$(CPU)/start.o
93ifeq ($(CPU),i386)
94OBJS += cpu/$(CPU)/start16.o
95OBJS += cpu/$(CPU)/reset.o
96endif
97ifeq ($(CPU),ppc4xx)
98OBJS += cpu/$(CPU)/resetvec.o
99endif
100ifeq ($(CPU),mpc83xx)
101OBJS += cpu/$(CPU)/resetvec.o
102endif
103ifeq ($(CPU),mpc85xx)
104OBJS += cpu/$(CPU)/resetvec.o
105endif
106
107LIBS  = lib_generic/libgeneric.a
108LIBS += board/$(BOARDDIR)/lib$(BOARD).a
109LIBS += cpu/$(CPU)/lib$(CPU).a
110ifdef SOC
111LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
112endif
113LIBS += lib_$(ARCH)/lib$(ARCH).a
114LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
115	fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a
116LIBS += net/libnet.a
117LIBS += disk/libdisk.a
118LIBS += rtc/librtc.a
119LIBS += dtt/libdtt.a
120LIBS += drivers/libdrivers.a
121LIBS += drivers/sk98lin/libsk98lin.a
122LIBS += post/libpost.a post/cpu/libcpu.a
123LIBS += common/libcommon.a
124.PHONY : $(LIBS)
125
126# Add GCC lib
127PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
128
129
130# The "tools" are needed early, so put this first
131# Don't include stuff already done in $(LIBS)
132SUBDIRS	= tools \
133	  examples \
134	  post \
135	  post/cpu
136.PHONY : $(SUBDIRS)
137
138#########################################################################
139#########################################################################
140
141ALL = u-boot.srec u-boot.bin System.map
142
143all:		$(ALL)
144
145u-boot.hex:	u-boot
146		$(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
147
148u-boot.srec:	u-boot
149		$(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
150
151u-boot.bin:	u-boot
152		$(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
153
154u-boot.img:	u-boot.bin
155		./tools/mkimage -A $(ARCH) -T firmware -C none \
156		-a $(TEXT_BASE) -e 0 \
157		-n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' include/version.h | \
158			sed -e 's/"[	 ]*$$/ for $(BOARD) board"/') \
159		-d $< $@
160
161u-boot.dis:	u-boot
162		$(OBJDUMP) -d $< > $@
163
164u-boot:		depend $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
165		UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed  -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
166		$(LD) $(LDFLAGS) $$UNDEF_SYM $(OBJS) \
167			--start-group $(LIBS) --end-group $(PLATFORM_LIBS) \
168			-Map u-boot.map -o u-boot
169
170$(LIBS):
171		$(MAKE) -C `dirname $@`
172
173$(SUBDIRS):
174		$(MAKE) -C $@ all
175
176gdbtools:
177		$(MAKE) -C tools/gdb || exit 1
178
179depend dep:
180		@for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done
181
182tags:
183		ctags -w `find $(SUBDIRS) include \
184				lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
185				fs/cramfs fs/fat fs/fdos fs/jffs2 \
186				net disk rtc dtt drivers drivers/sk98lin common \
187			\( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
188
189etags:
190		etags -a `find $(SUBDIRS) include \
191				lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
192				fs/cramfs fs/fat fs/fdos fs/jffs2 \
193				net disk rtc dtt drivers drivers/sk98lin common \
194			\( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
195
196System.map:	u-boot
197		@$(NM) $< | \
198		grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
199		sort > System.map
200
201#########################################################################
202else
203all install u-boot u-boot.srec depend dep:
204	@echo "System not configured - see README" >&2
205	@ exit 1
206endif
207
208#########################################################################
209
210unconfig:
211	@rm -f include/config.h include/config.mk board/*/config.tmp
212
213#========================================================================
214# PowerPC
215#========================================================================
216
217#########################################################################
218## MPC5xx Systems
219#########################################################################
220
221canmb_config:	unconfig
222	@./mkconfig -a canmb ppc mpc5xxx canmb
223
224cmi_mpc5xx_config:	unconfig
225	@./mkconfig $(@:_config=) ppc mpc5xx cmi
226
227PATI_config:		unconfig
228	@./mkconfig $(@:_config=) ppc mpc5xx pati mpl
229
230#########################################################################
231## MPC5xxx Systems
232#########################################################################
233
234aev_config: unconfig
235	@./mkconfig -a aev ppc mpc5xxx tqm5200
236
237cpci5200_config:  unconfig
238	@./mkconfig -a cpci5200  ppc mpc5xxx cpci5200 esd
239
240hmi1001_config:         unconfig
241	@./mkconfig hmi1001 ppc mpc5xxx hmi1001
242
243Lite5200_config				\
244Lite5200_LOWBOOT_config			\
245Lite5200_LOWBOOT08_config		\
246icecube_5200_config			\
247icecube_5200_LOWBOOT_config		\
248icecube_5200_LOWBOOT08_config		\
249icecube_5200_DDR_config 		\
250icecube_5200_DDR_LOWBOOT_config 	\
251icecube_5200_DDR_LOWBOOT08_config	\
252icecube_5100_config:			unconfig
253	@ >include/config.h
254	@[ -z "$(findstring LOWBOOT_,$@)" ] || \
255		{ if [ "$(findstring DDR,$@)" ] ; \
256			then echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
257			else echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \
258		  fi ; \
259		  echo "... with LOWBOOT configuration" ; \
260		}
261	@[ -z "$(findstring LOWBOOT08,$@)" ] || \
262		{ echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
263		  echo "... with 8 MB flash only" ; \
264		  echo "... with LOWBOOT configuration" ; \
265		}
266	@[ -z "$(findstring DDR,$@)" ] || \
267		{ echo "#define CONFIG_MPC5200_DDR"	>>include/config.h ; \
268		  echo "... DDR memory revision" ; \
269		}
270	@[ -z "$(findstring 5200,$@)" ] || \
271		{ echo "#define CONFIG_MPC5200"		>>include/config.h ; \
272		  echo "... with MPC5200 processor" ; \
273		}
274	@[ -z "$(findstring 5100,$@)" ] || \
275		{ echo "#define CONFIG_MGT5100"		>>include/config.h ; \
276		  echo "... with MGT5100 processor" ; \
277		}
278	@./mkconfig -a IceCube ppc mpc5xxx icecube
279
280inka4x0_config:		unconfig
281	@./mkconfig inka4x0 ppc mpc5xxx inka4x0
282
283o2dnt_config:
284	@./mkconfig -a o2dnt ppc mpc5xxx o2dnt
285
286pf5200_config:  unconfig
287	@./mkconfig -a pf5200  ppc mpc5xxx pf5200 esd
288
289PM520_config \
290PM520_DDR_config \
291PM520_ROMBOOT_config \
292PM520_ROMBOOT_DDR_config:	unconfig
293	@ >include/config.h
294	@[ -z "$(findstring DDR,$@)" ] || \
295		{ echo "#define CONFIG_MPC5200_DDR"	>>include/config.h ; \
296		  echo "... DDR memory revision" ; \
297		}
298	@[ -z "$(findstring ROMBOOT,$@)" ] || \
299		{ echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
300		  echo "... booting from 8-bit flash" ; \
301		}
302	@./mkconfig -a PM520 ppc mpc5xxx pm520
303
304MINI5200_config	\
305EVAL5200_config	\
306TOP5200_config:	unconfig
307	@ echo "#define CONFIG_$(@:_config=) 1"	>include/config.h
308	@./mkconfig -a TOP5200 ppc mpc5xxx top5200 emk
309
310Total5100_config		\
311Total5200_config		\
312Total5200_lowboot_config	\
313Total5200_Rev2_config		\
314Total5200_Rev2_lowboot_config:	unconfig
315	@ >include/config.h
316	@[ -z "$(findstring 5100,$@)" ] || \
317		{ echo "#define CONFIG_MGT5100"		>>include/config.h ; \
318		  echo "... with MGT5100 processor" ; \
319		}
320	@[ -z "$(findstring 5200,$@)" ] || \
321		{ echo "#define CONFIG_MPC5200"		>>include/config.h ; \
322		  echo "... with MPC5200 processor" ; \
323		}
324	@[ -n "$(findstring Rev,$@)" ] || \
325		{ echo "#define CONFIG_TOTAL5200_REV 1"	>>include/config.h ; \
326		  echo "... revision 1 board" ; \
327		}
328	@[ -z "$(findstring Rev2_,$@)" ] || \
329		{ echo "#define CONFIG_TOTAL5200_REV 2"	>>include/config.h ; \
330		  echo "... revision 2 board" ; \
331		}
332	@[ -z "$(findstring lowboot_,$@)" ] || \
333		{ echo "TEXT_BASE = 0xFE000000" >board/total5200/config.tmp ; \
334		  echo "... with lowboot configuration" ; \
335		}
336	@./mkconfig -a Total5200 ppc mpc5xxx total5200
337
338TQM5200_auto_config	\
339TQM5200_AA_config	\
340TQM5200_AB_config	\
341TQM5200_AC_config	\
342MiniFAP_config:	unconfig
343	@ >include/config.h
344	@[ -z "$(findstring MiniFAP,$@)" ] || \
345		{ echo "#define CONFIG_MINIFAP"	>>include/config.h ; \
346		  echo "#define CONFIG_TQM5200_AC"	>>include/config.h ; \
347		  echo "... TQM5200_AC on MiniFAP" ; \
348		}
349	@[ -z "$(findstring AA,$@)" ] || \
350		{ echo "#define CONFIG_TQM5200_AA"	>>include/config.h ; \
351		  echo "... with 4 MB Flash, 16 MB SDRAM, 32 kB EEPROM" ; \
352		}
353	@[ -z "$(findstring AB,$@)" ] || \
354		{ echo "#define CONFIG_TQM5200_AB"	>>include/config.h ; \
355		  echo "... with 64 MB Flash, 64 MB SDRAM, 32 kB EEPROM, 512 kB SRAM" ; \
356		  echo "... with Graphics Controller"; \
357		}
358	@[ -z "$(findstring AC,$@)" ] || \
359		{ echo "#define CONFIG_TQM5200_AC"	>>include/config.h ; \
360		  echo "... with 4 MB Flash, 128 MB SDRAM" ; \
361		  echo "... with Graphics Controller"; \
362		}
363	@[ -z "$(findstring auto,$@)" ] || \
364		{ echo "#define CONFIG_CS_AUTOCONF"	>>include/config.h ; \
365		  echo "... with automatic CS configuration" ; \
366		}
367	@./mkconfig -a TQM5200 ppc mpc5xxx tqm5200
368
369spieval_config:	unconfig
370	echo "#define CONFIG_CS_AUTOCONF">>include/config.h
371	echo "... with automatic CS configuration"
372	@./mkconfig -a spieval ppc mpc5xxx tqm5200
373
374#########################################################################
375## MPC8xx Systems
376#########################################################################
377
378Adder_config    \
379Adder87x_config \
380AdderII_config  \
381	:		unconfig
382	$(if $(findstring AdderII,$@), \
383	@echo "#define CONFIG_MPC852T" > include/config.h)
384	@./mkconfig -a Adder ppc mpc8xx adder
385
386ADS860_config     \
387FADS823_config    \
388FADS850SAR_config \
389MPC86xADS_config  \
390MPC885ADS_config  \
391FADS860T_config:	unconfig
392	@./mkconfig $(@:_config=) ppc mpc8xx fads
393
394AMX860_config	:	unconfig
395	@./mkconfig $(@:_config=) ppc mpc8xx amx860 westel
396
397c2mon_config:		unconfig
398	@./mkconfig $(@:_config=) ppc mpc8xx c2mon
399
400CCM_config:		unconfig
401	@./mkconfig $(@:_config=) ppc mpc8xx CCM siemens
402
403cogent_mpc8xx_config:	unconfig
404	@./mkconfig $(@:_config=) ppc mpc8xx cogent
405
406ELPT860_config:		unconfig
407	@./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX
408
409ESTEEM192E_config:	unconfig
410	@./mkconfig $(@:_config=) ppc mpc8xx esteem192e
411
412ETX094_config	:	unconfig
413	@./mkconfig $(@:_config=) ppc mpc8xx etx094
414
415FLAGADM_config:	unconfig
416	@./mkconfig $(@:_config=) ppc mpc8xx flagadm
417
418xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
419
420GEN860T_SC_config	\
421GEN860T_config: unconfig
422	@ >include/config.h
423	@[ -z "$(findstring _SC,$@)" ] || \
424		{ echo "#define CONFIG_SC" >>include/config.h ; \
425		  echo "With reduced H/W feature set (SC)..." ; \
426		}
427	@./mkconfig -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
428
429GENIETV_config:	unconfig
430	@./mkconfig $(@:_config=) ppc mpc8xx genietv
431
432GTH_config:	unconfig
433	@./mkconfig $(@:_config=) ppc mpc8xx gth
434
435hermes_config	:	unconfig
436	@./mkconfig $(@:_config=) ppc mpc8xx hermes
437
438HMI10_config	:	unconfig
439	@./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
440
441IAD210_config: unconfig
442	@./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens
443
444xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
445
446ICU862_100MHz_config	\
447ICU862_config: unconfig
448	@ >include/config.h
449	@[ -z "$(findstring _100MHz,$@)" ] || \
450		{ echo "#define CONFIG_100MHz"	>>include/config.h ; \
451		  echo "... with 100MHz system clock" ; \
452		}
453	@./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
454
455IP860_config	:	unconfig
456	@./mkconfig $(@:_config=) ppc mpc8xx ip860
457
458IVML24_256_config \
459IVML24_128_config \
460IVML24_config:	unconfig
461	@ >include/config.h
462	@[ -z "$(findstring IVML24_config,$@)" ] || \
463		 { echo "#define CONFIG_IVML24_16M"	>>include/config.h ; \
464		 }
465	@[ -z "$(findstring IVML24_128_config,$@)" ] || \
466		 { echo "#define CONFIG_IVML24_32M"	>>include/config.h ; \
467		 }
468	@[ -z "$(findstring IVML24_256_config,$@)" ] || \
469		 { echo "#define CONFIG_IVML24_64M"	>>include/config.h ; \
470		 }
471	@./mkconfig -a IVML24 ppc mpc8xx ivm
472
473IVMS8_256_config \
474IVMS8_128_config \
475IVMS8_config:	unconfig
476	@ >include/config.h
477	@[ -z "$(findstring IVMS8_config,$@)" ] || \
478		 { echo "#define CONFIG_IVMS8_16M"	>>include/config.h ; \
479		 }
480	@[ -z "$(findstring IVMS8_128_config,$@)" ] || \
481		 { echo "#define CONFIG_IVMS8_32M"	>>include/config.h ; \
482		 }
483	@[ -z "$(findstring IVMS8_256_config,$@)" ] || \
484		 { echo "#define CONFIG_IVMS8_64M"	>>include/config.h ; \
485		 }
486	@./mkconfig -a IVMS8 ppc mpc8xx ivm
487
488KUP4K_config	:	unconfig
489	@./mkconfig $(@:_config=) ppc mpc8xx kup4k kup
490
491KUP4X_config    :       unconfig
492	@./mkconfig $(@:_config=) ppc mpc8xx kup4x kup
493
494LANTEC_config	:	unconfig
495	@./mkconfig $(@:_config=) ppc mpc8xx lantec
496
497lwmon_config:		unconfig
498	@./mkconfig $(@:_config=) ppc mpc8xx lwmon
499
500MBX_config	\
501MBX860T_config:	unconfig
502	@./mkconfig $(@:_config=) ppc mpc8xx mbx8xx
503
504MHPC_config:		unconfig
505	@./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec
506
507MVS1_config :		unconfig
508	@./mkconfig $(@:_config=) ppc mpc8xx mvs1
509
510xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
511
512NETVIA_V2_config \
513NETVIA_config:		unconfig
514	@ >include/config.h
515	@[ -z "$(findstring NETVIA_config,$@)" ] || \
516		 { echo "#define CONFIG_NETVIA_VERSION 1" >>include/config.h ; \
517		  echo "... Version 1" ; \
518		 }
519	@[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
520		 { echo "#define CONFIG_NETVIA_VERSION 2" >>include/config.h ; \
521		  echo "... Version 2" ; \
522		 }
523	@./mkconfig -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
524
525xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
526
527NETPHONE_V2_config \
528NETPHONE_config:	unconfig
529	@ >include/config.h
530	@[ -z "$(findstring NETPHONE_config,$@)" ] || \
531		 { echo "#define CONFIG_NETPHONE_VERSION 1" >>include/config.h ; \
532		 }
533	@[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
534		 { echo "#define CONFIG_NETPHONE_VERSION 2" >>include/config.h ; \
535		 }
536	@./mkconfig -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
537
538xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
539
540NETTA_ISDN_6412_SWAPHOOK_config \
541NETTA_ISDN_SWAPHOOK_config \
542NETTA_6412_SWAPHOOK_config \
543NETTA_SWAPHOOK_config \
544NETTA_ISDN_6412_config \
545NETTA_ISDN_config \
546NETTA_6412_config \
547NETTA_config:		unconfig
548	@ >include/config.h
549	@[ -z "$(findstring ISDN_,$@)" ] || \
550		 { echo "#define CONFIG_NETTA_ISDN 1" >>include/config.h ; \
551		 }
552	@[ -n "$(findstring ISDN_,$@)" ] || \
553		 { echo "#undef CONFIG_NETTA_ISDN" >>include/config.h ; \
554		 }
555	@[ -z "$(findstring 6412_,$@)" ] || \
556		 { echo "#define CONFIG_NETTA_6412 1" >>include/config.h ; \
557		 }
558	@[ -n "$(findstring 6412_,$@)" ] || \
559		 { echo "#undef CONFIG_NETTA_6412" >>include/config.h ; \
560		 }
561	@[ -z "$(findstring SWAPHOOK_,$@)" ] || \
562		 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>include/config.h ; \
563		 }
564	@[ -n "$(findstring SWAPHOOK_,$@)" ] || \
565		 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>include/config.h ; \
566		 }
567	@./mkconfig -a $(call xtract_NETTA,$@) ppc mpc8xx netta
568
569xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
570
571NETTA2_V2_config \
572NETTA2_config:		unconfig
573	@ >include/config.h
574	@[ -z "$(findstring NETTA2_config,$@)" ] || \
575		 { echo "#define CONFIG_NETTA2_VERSION 1" >>include/config.h ; \
576		 }
577	@[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
578		 { echo "#define CONFIG_NETTA2_VERSION 2" >>include/config.h ; \
579		 }
580	@./mkconfig -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
581
582NC650_config:	unconfig
583	@./mkconfig $(@:_config=) ppc mpc8xx nc650
584
585NX823_config:		unconfig
586	@./mkconfig $(@:_config=) ppc mpc8xx nx823
587
588pcu_e_config:		unconfig
589	@./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens
590
591QS850_config:	unconfig
592	@./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
593
594QS823_config:	unconfig
595	@./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
596
597QS860T_config:	unconfig
598	@./mkconfig $(@:_config=) ppc mpc8xx qs860t snmc
599
600quantum_config:	unconfig
601	@./mkconfig $(@:_config=) ppc mpc8xx quantum
602
603R360MPI_config:	unconfig
604	@./mkconfig $(@:_config=) ppc mpc8xx r360mpi
605
606RBC823_config:	unconfig
607	@./mkconfig $(@:_config=) ppc mpc8xx rbc823
608
609RPXClassic_config:	unconfig
610	@./mkconfig $(@:_config=) ppc mpc8xx RPXClassic
611
612RPXlite_config:		unconfig
613	@./mkconfig $(@:_config=) ppc mpc8xx RPXlite
614
615RPXlite_DW_64_config  		\
616RPXlite_DW_LCD_config 		\
617RPXlite_DW_64_LCD_config 	\
618RPXlite_DW_NVRAM_config		\
619RPXlite_DW_NVRAM_64_config      \
620RPXlite_DW_NVRAM_LCD_config	\
621RPXlite_DW_NVRAM_64_LCD_config  \
622RPXlite_DW_config:         unconfig
623	@ >include/config.h
624	@[ -z "$(findstring _64,$@)" ] || \
625		{ echo "#define RPXlite_64MHz"		>>include/config.h ; \
626		  echo "... with 64MHz system clock ..."; \
627		}
628	@[ -z "$(findstring _LCD,$@)" ] || \
629		{ echo "#define CONFIG_LCD"          	>>include/config.h ; \
630		  echo "#define CONFIG_NEC_NL6448BC20"	>>include/config.h ; \
631		  echo "... with LCD display ..."; \
632		}
633	@[ -z "$(findstring _NVRAM,$@)" ] || \
634		{ echo "#define  CFG_ENV_IS_IN_NVRAM" 	>>include/config.h ; \
635		  echo "... with ENV in NVRAM ..."; \
636		}
637	@./mkconfig -a RPXlite_DW ppc mpc8xx RPXlite_dw
638
639rmu_config:	unconfig
640	@./mkconfig $(@:_config=) ppc mpc8xx rmu
641
642RRvision_config:	unconfig
643	@./mkconfig $(@:_config=) ppc mpc8xx RRvision
644
645RRvision_LCD_config:	unconfig
646	@echo "#define CONFIG_LCD" >include/config.h
647	@echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
648	@./mkconfig -a RRvision ppc mpc8xx RRvision
649
650SM850_config	:	unconfig
651	@./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
652
653SPD823TS_config:	unconfig
654	@./mkconfig $(@:_config=) ppc mpc8xx spd8xx
655
656stxxtc_config:	unconfig
657	@./mkconfig $(@:_config=) ppc mpc8xx stxxtc
658
659svm_sc8xx_config:	unconfig
660	@ >include/config.h
661	@./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx
662
663SXNI855T_config:	unconfig
664	@./mkconfig $(@:_config=) ppc mpc8xx sixnet
665
666# EMK MPC8xx based modules
667TOP860_config:		unconfig
668	@./mkconfig $(@:_config=) ppc mpc8xx top860 emk
669
670# Play some tricks for configuration selection
671# Only 855 and 860 boards may come with FEC
672# and only 823 boards may have LCD support
673xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
674
675FPS850L_config		\
676FPS860L_config		\
677NSCU_config		\
678TQM823L_config		\
679TQM823L_LCD_config	\
680TQM850L_config		\
681TQM855L_config		\
682TQM860L_config		\
683TQM862L_config		\
684TQM823M_config		\
685TQM850M_config		\
686TQM855M_config		\
687TQM860M_config		\
688TQM862M_config		\
689TQM866M_config:		unconfig
690	@ >include/config.h
691	@[ -z "$(findstring _LCD,$@)" ] || \
692		{ echo "#define CONFIG_LCD"		>>include/config.h ; \
693		  echo "#define CONFIG_NEC_NL6448BC20"	>>include/config.h ; \
694		  echo "... with LCD display" ; \
695		}
696	@./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
697
698TTTech_config:	unconfig
699	@echo "#define CONFIG_LCD" >include/config.h
700	@echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
701	@./mkconfig -a TQM823L ppc mpc8xx tqm8xx
702
703uc100_config	:	unconfig
704	@./mkconfig $(@:_config=) ppc mpc8xx uc100
705
706v37_config:	unconfig
707	@echo "#define CONFIG_LCD" >include/config.h
708	@echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h
709	@./mkconfig $(@:_config=) ppc mpc8xx v37
710
711wtk_config:	unconfig
712	@echo "#define CONFIG_LCD" >include/config.h
713	@echo "#define CONFIG_SHARP_LQ065T9DR51U" >>include/config.h
714	@./mkconfig -a TQM823L ppc mpc8xx tqm8xx
715
716#########################################################################
717## PPC4xx Systems
718#########################################################################
719xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
720
721ADCIOP_config:	unconfig
722	@./mkconfig $(@:_config=) ppc ppc4xx adciop esd
723
724APC405_config:	unconfig
725	@./mkconfig $(@:_config=) ppc ppc4xx apc405 esd
726
727AR405_config:	unconfig
728	@./mkconfig $(@:_config=) ppc ppc4xx ar405 esd
729
730ASH405_config:	unconfig
731	@./mkconfig $(@:_config=) ppc ppc4xx ash405 esd
732
733bamboo_config:	unconfig
734	@./mkconfig $(@:_config=) ppc ppc4xx bamboo amcc
735
736bubinga_config:	unconfig
737	@./mkconfig $(@:_config=) ppc ppc4xx bubinga amcc
738
739CANBT_config:	unconfig
740	@./mkconfig $(@:_config=) ppc ppc4xx canbt esd
741
742CATcenter_config	\
743CATcenter_25_config	\
744CATcenter_33_config:	unconfig
745	@ echo "/* CATcenter uses PPChameleon Model ME */"  > include/config.h
746	@ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> include/config.h
747	@[ -z "$(findstring _25,$@)" ] || \
748		{ echo "#define CONFIG_PPCHAMELEON_CLK_25" >>include/config.h ; \
749		  echo "SysClk = 25MHz" ; \
750		}
751	@[ -z "$(findstring _33,$@)" ] || \
752		{ echo "#define CONFIG_PPCHAMELEON_CLK_33" >>include/config.h ; \
753		  echo "SysClk = 33MHz" ; \
754		}
755	@./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
756
757CPCI2DP_config:	unconfig
758	@./mkconfig $(@:_config=) ppc ppc4xx cpci2dp esd
759
760CPCI405_config	\
761CPCI4052_config	\
762CPCI405DT_config	\
763CPCI405AB_config:	unconfig
764	@./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd
765	@echo "BOARD_REVISION = $(@:_config=)"	>>include/config.mk
766
767CPCI440_config:	unconfig
768	@./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd
769
770CPCIISER4_config:	unconfig
771	@./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd
772
773CRAYL1_config:	unconfig
774	@./mkconfig $(@:_config=) ppc ppc4xx L1 cray
775
776csb272_config:	unconfig
777	@./mkconfig $(@:_config=) ppc ppc4xx csb272
778
779csb472_config:	unconfig
780	@./mkconfig $(@:_config=) ppc ppc4xx csb472
781
782DASA_SIM_config: unconfig
783	@./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd
784
785DP405_config:	unconfig
786	@./mkconfig $(@:_config=) ppc ppc4xx dp405 esd
787
788DU405_config:	unconfig
789	@./mkconfig $(@:_config=) ppc ppc4xx du405 esd
790
791ebony_config:	unconfig
792	@./mkconfig $(@:_config=) ppc ppc4xx ebony amcc
793
794ERIC_config:	unconfig
795	@./mkconfig $(@:_config=) ppc ppc4xx eric
796
797EXBITGEN_config:	unconfig
798	@./mkconfig $(@:_config=) ppc ppc4xx exbitgen
799
800G2000_config:	unconfig
801	@./mkconfig $(@:_config=) ppc ppc4xx g2000
802
803HH405_config:	unconfig
804	@./mkconfig $(@:_config=) ppc ppc4xx hh405 esd
805
806HUB405_config:	unconfig
807	@./mkconfig $(@:_config=) ppc ppc4xx hub405 esd
808
809JSE_config:	unconfig
810	@./mkconfig $(@:_config=) ppc ppc4xx jse
811
812KAREF_config: unconfig
813	@./mkconfig $(@:_config=) ppc ppc4xx karef sandburst
814
815METROBOX_config: unconfig
816	@./mkconfig $(@:_config=) ppc ppc4xx metrobox sandburst
817
818MIP405_config:	unconfig
819	@./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl
820
821MIP405T_config:	unconfig
822	@echo "#define CONFIG_MIP405T" >include/config.h
823	@echo "Enable subset config for MIP405T"
824	@./mkconfig -a MIP405 ppc ppc4xx mip405 mpl
825
826ML2_config:	unconfig
827	@./mkconfig $(@:_config=) ppc ppc4xx ml2
828
829ml300_config:	unconfig
830	@./mkconfig $(@:_config=) ppc ppc4xx ml300 xilinx
831
832ocotea_config:	unconfig
833	@./mkconfig $(@:_config=) ppc ppc4xx ocotea amcc
834
835OCRTC_config		\
836ORSG_config:	unconfig
837	@./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd
838
839PCI405_config:	unconfig
840	@./mkconfig $(@:_config=) ppc ppc4xx pci405 esd
841
842PIP405_config:	unconfig
843	@./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl
844
845PLU405_config:	unconfig
846	@./mkconfig $(@:_config=) ppc ppc4xx plu405 esd
847
848PMC405_config:	unconfig
849	@./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd
850
851PPChameleonEVB_config		\
852PPChameleonEVB_BA_25_config	\
853PPChameleonEVB_ME_25_config	\
854PPChameleonEVB_HI_25_config	\
855PPChameleonEVB_BA_33_config	\
856PPChameleonEVB_ME_33_config	\
857PPChameleonEVB_HI_33_config:	unconfig
858	@ >include/config.h
859	@[ -z "$(findstring EVB_BA,$@)" ] || \
860		{ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>include/config.h ; \
861		  echo "... BASIC model" ; \
862		}
863	@[ -z "$(findstring EVB_ME,$@)" ] || \
864		{ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>include/config.h ; \
865		  echo "... MEDIUM model" ; \
866		}
867	@[ -z "$(findstring EVB_HI,$@)" ] || \
868		{ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>include/config.h ; \
869		  echo "... HIGH-END model" ; \
870		}
871	@[ -z "$(findstring _25,$@)" ] || \
872		{ echo "#define CONFIG_PPCHAMELEON_CLK_25" >>include/config.h ; \
873		  echo "SysClk = 25MHz" ; \
874		}
875	@[ -z "$(findstring _33,$@)" ] || \
876		{ echo "#define CONFIG_PPCHAMELEON_CLK_33" >>include/config.h ; \
877		  echo "SysClk = 33MHz" ; \
878		}
879	@./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
880
881sbc405_config:	unconfig
882	@./mkconfig $(@:_config=) ppc ppc4xx sbc405
883
884sycamore_config:	unconfig
885	@echo "Configuring for sycamore board as subset of walnut..."
886	@./mkconfig -a walnut ppc ppc4xx walnut amcc
887
888VOH405_config:	unconfig
889	@./mkconfig $(@:_config=) ppc ppc4xx voh405 esd
890
891VOM405_config:	unconfig
892	@./mkconfig $(@:_config=) ppc ppc4xx vom405 esd
893
894W7OLMC_config	\
895W7OLMG_config: unconfig
896	@./mkconfig $(@:_config=) ppc ppc4xx w7o
897
898walnut_config: unconfig
899	@./mkconfig $(@:_config=) ppc ppc4xx walnut amcc
900
901WUH405_config:	unconfig
902	@./mkconfig $(@:_config=) ppc ppc4xx wuh405 esd
903
904XPEDITE1K_config:	unconfig
905	@./mkconfig $(@:_config=) ppc ppc4xx xpedite1k
906
907yosemite_config:	unconfig
908	@./mkconfig $(@:_config=) ppc ppc4xx yosemite amcc
909
910yellowstone_config:	unconfig
911	@./mkconfig $(@:_config=) ppc ppc4xx yellowstone amcc
912
913#########################################################################
914## MPC8220 Systems
915#########################################################################
916
917Alaska8220_config	\
918Yukon8220_config:	unconfig
919	@./mkconfig $(@:_config=) ppc mpc8220 alaska
920
921sorcery_config:		unconfig
922	@./mkconfig $(@:_config=) ppc mpc8220 sorcery
923
924#########################################################################
925## MPC824x Systems
926#########################################################################
927xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
928
929A3000_config: unconfig
930	@./mkconfig $(@:_config=) ppc mpc824x a3000
931
932BMW_config: unconfig
933	@./mkconfig $(@:_config=) ppc mpc824x bmw
934
935CPC45_config	\
936CPC45_ROMBOOT_config:	unconfig
937	@./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45
938	@cd ./include ;				\
939	if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
940		echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
941		echo "... booting from 8-bit flash" ; \
942	else \
943		echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
944		echo "... booting from 64-bit flash" ; \
945	fi; \
946	echo "export CONFIG_BOOT_ROM" >> config.mk;
947
948CU824_config: unconfig
949	@./mkconfig $(@:_config=) ppc mpc824x cu824
950
951debris_config: unconfig
952	@./mkconfig $(@:_config=) ppc mpc824x debris etin
953
954eXalion_config: unconfig
955	@./mkconfig $(@:_config=) ppc mpc824x eXalion
956
957HIDDEN_DRAGON_config: unconfig
958	@./mkconfig $(@:_config=) ppc mpc824x hidden_dragon
959
960MOUSSE_config: unconfig
961	@./mkconfig $(@:_config=) ppc mpc824x mousse
962
963MUSENKI_config: unconfig
964	@./mkconfig $(@:_config=) ppc mpc824x musenki
965
966MVBLUE_config:	unconfig
967	@./mkconfig $(@:_config=) ppc mpc824x mvblue
968
969OXC_config: unconfig
970	@./mkconfig $(@:_config=) ppc mpc824x oxc
971
972PN62_config: unconfig
973	@./mkconfig $(@:_config=) ppc mpc824x pn62
974
975Sandpoint8240_config: unconfig
976	@./mkconfig $(@:_config=) ppc mpc824x sandpoint
977
978Sandpoint8245_config: unconfig
979	@./mkconfig $(@:_config=) ppc mpc824x sandpoint
980
981sbc8240_config: unconfig
982	@./mkconfig $(@:_config=) ppc mpc824x sbc8240
983
984SL8245_config: unconfig
985	@./mkconfig $(@:_config=) ppc mpc824x sl8245
986
987utx8245_config: unconfig
988	@./mkconfig $(@:_config=) ppc mpc824x utx8245
989
990cobra5272_config :		unconfig
991	@./mkconfig $(@:_config=) m68k mcf52x2 cobra5272
992
993#########################################################################
994## MPC8260 Systems
995#########################################################################
996
997atc_config:	unconfig
998	@./mkconfig $(@:_config=) ppc mpc8260 atc
999
1000cogent_mpc8260_config:	unconfig
1001	@./mkconfig $(@:_config=) ppc mpc8260 cogent
1002
1003CPU86_config	\
1004CPU86_ROMBOOT_config: unconfig
1005	@./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86
1006	@cd ./include ;				\
1007	if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1008		echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1009		echo "... booting from 8-bit flash" ; \
1010	else \
1011		echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1012		echo "... booting from 64-bit flash" ; \
1013	fi; \
1014	echo "export CONFIG_BOOT_ROM" >> config.mk;
1015
1016CPU87_config	\
1017CPU87_ROMBOOT_config: unconfig
1018	@./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu87
1019	@cd ./include ;				\
1020	if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1021		echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1022		echo "... booting from 8-bit flash" ; \
1023	else \
1024		echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1025		echo "... booting from 64-bit flash" ; \
1026	fi; \
1027	echo "export CONFIG_BOOT_ROM" >> config.mk;
1028
1029ep8248_config	\
1030ep8248E_config	:	unconfig
1031	@./mkconfig ep8248 ppc mpc8260 ep8248
1032
1033ep8260_config:	unconfig
1034	@./mkconfig $(@:_config=) ppc mpc8260 ep8260
1035
1036gw8260_config:	unconfig
1037	@./mkconfig $(@:_config=) ppc mpc8260 gw8260
1038
1039hymod_config:	unconfig
1040	@./mkconfig $(@:_config=) ppc mpc8260 hymod
1041
1042IDS8247_config:	unconfig
1043	@./mkconfig $(@:_config=) ppc mpc8260 ids8247
1044
1045IPHASE4539_config:	unconfig
1046	@./mkconfig $(@:_config=) ppc mpc8260 iphase4539
1047
1048ISPAN_config		\
1049ISPAN_REVB_config:	unconfig
1050	@if [ "$(findstring _REVB_,$@)" ] ; then \
1051		echo "#define CFG_REV_B" > include/config.h ; \
1052	fi
1053	@./mkconfig -a ISPAN ppc mpc8260 ispan
1054
1055MPC8260ADS_config	\
1056MPC8260ADS_lowboot_config	\
1057MPC8260ADS_33MHz_config	\
1058MPC8260ADS_33MHz_lowboot_config	\
1059MPC8260ADS_40MHz_config	\
1060MPC8260ADS_40MHz_lowboot_config	\
1061MPC8272ADS_config	\
1062MPC8272ADS_lowboot_config	\
1063PQ2FADS_config		\
1064PQ2FADS_lowboot_config		\
1065PQ2FADS-VR_config	\
1066PQ2FADS-VR_lowboot_config	\
1067PQ2FADS-ZU_config	\
1068PQ2FADS-ZU_lowboot_config	\
1069PQ2FADS-ZU_66MHz_config	\
1070PQ2FADS-ZU_66MHz_lowboot_config	\
1071	:		unconfig
1072	$(if $(findstring PQ2FADS,$@), \
1073	@echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > include/config.h, \
1074	@echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > include/config.h)
1075	$(if $(findstring MHz,$@), \
1076	@echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> include/config.h, \
1077	$(if $(findstring VR,$@), \
1078	@echo "#define CONFIG_8260_CLKIN 66000000" >> include/config.h))
1079	@[ -z "$(findstring lowboot_,$@)" ] || \
1080		{ echo "TEXT_BASE = 0xFF800000" >board/mpc8260ads/config.tmp ; \
1081		  echo "... with lowboot configuration" ; \
1082		}
1083	@./mkconfig -a MPC8260ADS ppc mpc8260 mpc8260ads
1084
1085MPC8266ADS_config:	unconfig
1086	@./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads
1087
1088# PM825/PM826 default configuration:  small (= 8 MB) Flash / boot from 64-bit flash
1089PM825_config	\
1090PM825_ROMBOOT_config	\
1091PM825_BIGFLASH_config	\
1092PM825_ROMBOOT_BIGFLASH_config	\
1093PM826_config	\
1094PM826_ROMBOOT_config	\
1095PM826_BIGFLASH_config	\
1096PM826_ROMBOOT_BIGFLASH_config:	unconfig
1097	@if [ "$(findstring PM825_,$@)" ] ; then \
1098		echo "#define CONFIG_PCI"	>include/config.h ; \
1099	else \
1100		>include/config.h ; \
1101	fi
1102	@if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1103		echo "... booting from 8-bit flash" ; \
1104		echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
1105		echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
1106		if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1107			echo "... with 32 MB Flash" ; \
1108			echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
1109		fi; \
1110	else \
1111		echo "... booting from 64-bit flash" ; \
1112		if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1113			echo "... with 32 MB Flash" ; \
1114			echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
1115			echo "TEXT_BASE = 0x40000000" >board/pm826/config.tmp ; \
1116		else \
1117			echo "TEXT_BASE = 0xFF000000" >board/pm826/config.tmp ; \
1118		fi; \
1119	fi
1120	@./mkconfig -a PM826 ppc mpc8260 pm826
1121
1122PM828_config	\
1123PM828_PCI_config	\
1124PM828_ROMBOOT_config	\
1125PM828_ROMBOOT_PCI_config:	unconfig
1126	@if [ -z "$(findstring _PCI_,$@)" ] ; then \
1127		echo "#define CONFIG_PCI"  >>include/config.h ; \
1128		echo "... with PCI enabled" ; \
1129	else \
1130		>include/config.h ; \
1131	fi
1132	@if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1133		echo "... booting from 8-bit flash" ; \
1134		echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
1135		echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
1136	fi
1137	@./mkconfig -a PM828 ppc mpc8260 pm828
1138
1139ppmc8260_config:	unconfig
1140	@./mkconfig $(@:_config=) ppc mpc8260 ppmc8260
1141
1142Rattler8248_config	\
1143Rattler_config:		unconfig
1144	$(if $(findstring 8248,$@), \
1145	@echo "#define CONFIG_MPC8248" > include/config.h)
1146	@./mkconfig -a Rattler ppc mpc8260 rattler
1147
1148RPXsuper_config:	unconfig
1149	@./mkconfig $(@:_config=) ppc mpc8260 rpxsuper
1150
1151rsdproto_config:	unconfig
1152	@./mkconfig $(@:_config=) ppc mpc8260 rsdproto
1153
1154sacsng_config:	unconfig
1155	@./mkconfig $(@:_config=) ppc mpc8260 sacsng
1156
1157sbc8260_config:	unconfig
1158	@./mkconfig $(@:_config=) ppc mpc8260 sbc8260
1159
1160SCM_config:		unconfig
1161	@./mkconfig $(@:_config=) ppc mpc8260 SCM siemens
1162
1163TQM8255_AA_config \
1164TQM8260_AA_config \
1165TQM8260_AB_config \
1166TQM8260_AC_config \
1167TQM8260_AD_config \
1168TQM8260_AE_config \
1169TQM8260_AF_config \
1170TQM8260_AG_config \
1171TQM8260_AH_config \
1172TQM8265_AA_config:  unconfig
1173	@case "$@" in \
1174	TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no;  BMODE=8260;;  \
1175	TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no;  BMODE=8260;; \
1176	TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;;  \
1177	TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;;  \
1178	TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no;  BMODE=60x;;  \
1179	TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no;  BMODE=8260;; \
1180	TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no;  BMODE=60x;;  \
1181	TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no;  BMODE=8260;; \
1182	TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;;  \
1183	TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no;  BMODE=60x;;  \
1184	esac; \
1185	>include/config.h ; \
1186	if [ "$${CTYPE}" != "MPC8260" ] ; then \
1187		echo "#define CONFIG_$${CTYPE}"	>>include/config.h ; \
1188	fi; \
1189	echo "#define CONFIG_$${CFREQ}MHz"	>>include/config.h ; \
1190	echo "... with $${CFREQ}MHz system clock" ; \
1191	if [ "$${CACHE}" == "yes" ] ; then \
1192		echo "#define CONFIG_L2_CACHE"	>>include/config.h ; \
1193		echo "... with L2 Cache support" ; \
1194	else \
1195		echo "#undef CONFIG_L2_CACHE"	>>include/config.h ; \
1196		echo "... without L2 Cache support" ; \
1197	fi; \
1198	if [ "$${BMODE}" == "60x" ] ; then \
1199		echo "#define CONFIG_BUSMODE_60x" >>include/config.h ; \
1200		echo "... with 60x Bus Mode" ; \
1201	else \
1202		echo "#undef CONFIG_BUSMODE_60x"  >>include/config.h ; \
1203		echo "... without 60x Bus Mode" ; \
1204	fi
1205	@./mkconfig -a TQM8260 ppc mpc8260 tqm8260
1206
1207VoVPN-GW_66MHz_config	\
1208VoVPN-GW_100MHz_config:		unconfig
1209	@echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > include/config.h
1210	@./mkconfig -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
1211
1212ZPC1900_config: unconfig
1213	@./mkconfig $(@:_config=) ppc mpc8260 zpc1900
1214
1215#========================================================================
1216# M68K
1217#========================================================================
1218#########################################################################
1219## Coldfire
1220#########################################################################
1221
1222M5272C3_config :		unconfig
1223	@./mkconfig $(@:_config=) m68k mcf52x2 m5272c3
1224
1225M5282EVB_config :		unconfig
1226	@./mkconfig $(@:_config=) m68k mcf52x2 m5282evb
1227
1228TASREG_config :		unconfig
1229	@./mkconfig $(@:_config=) m68k mcf52x2 tasreg esd
1230
1231#########################################################################
1232## MPC83xx Systems
1233#########################################################################
1234
1235MPC8349ADS_config:	unconfig
1236	@./mkconfig $(@:_config=) ppc mpc83xx mpc8349ads
1237
1238#########################################################################
1239## MPC85xx Systems
1240#########################################################################
1241
1242MPC8540ADS_config:	unconfig
1243	@./mkconfig $(@:_config=) ppc mpc85xx mpc8540ads
1244
1245MPC8540EVAL_config \
1246MPC8540EVAL_33_config \
1247MPC8540EVAL_66_config \
1248MPC8540EVAL_33_slave_config \
1249MPC8540EVAL_66_slave_config:      unconfig
1250	@echo "" >include/config.h ; \
1251	if [ "$(findstring _33_,$@)" ] ; then \
1252		echo -n "... 33 MHz PCI" ; \
1253	else \
1254		echo "#define CONFIG_SYSCLK_66M" >>include/config.h ; \
1255		echo -n "... 66 MHz PCI" ; \
1256	fi ; \
1257	if [ "$(findstring _slave_,$@)" ] ; then \
1258		echo "#define CONFIG_PCI_SLAVE" >>include/config.h ; \
1259		echo " slave" ; \
1260	else \
1261		echo " host" ; \
1262	fi
1263	@./mkconfig -a MPC8540EVAL ppc mpc85xx mpc8540eval
1264
1265MPC8560ADS_config:	unconfig
1266	@./mkconfig $(@:_config=) ppc mpc85xx mpc8560ads
1267
1268MPC8541CDS_config:	unconfig
1269	@./mkconfig $(@:_config=) ppc mpc85xx mpc8541cds cds
1270
1271MPC8548CDS_config:	unconfig
1272	@./mkconfig $(@:_config=) ppc mpc85xx mpc8548cds cds
1273
1274MPC8555CDS_config:	unconfig
1275	@./mkconfig $(@:_config=) ppc mpc85xx mpc8555cds cds
1276
1277PM854_config:	unconfig
1278	@./mkconfig $(@:_config=) ppc mpc85xx pm854
1279
1280PM856_config:	unconfig
1281	@./mkconfig $(@:_config=) ppc mpc85xx pm856
1282
1283sbc8540_config \
1284sbc8540_33_config \
1285sbc8540_66_config:	unconfig
1286	@if [ "$(findstring _66_,$@)" ] ; then \
1287		echo "#define CONFIG_PCI_66"	>>include/config.h ; \
1288		echo "... 66 MHz PCI" ; \
1289	else \
1290		>include/config.h ; \
1291		echo "... 33 MHz PCI" ; \
1292	fi
1293	@./mkconfig -a SBC8540 ppc mpc85xx sbc8560
1294
1295sbc8560_config \
1296sbc8560_33_config \
1297sbc8560_66_config:      unconfig
1298	@if [ "$(findstring _66_,$@)" ] ; then \
1299		echo "#define CONFIG_PCI_66"	>>include/config.h ; \
1300		echo "... 66 MHz PCI" ; \
1301	else \
1302		>include/config.h ; \
1303		echo "... 33 MHz PCI" ; \
1304	fi
1305	@./mkconfig -a sbc8560 ppc mpc85xx sbc8560
1306
1307stxgp3_config:		unconfig
1308	@./mkconfig $(@:_config=) ppc mpc85xx stxgp3
1309
1310TQM8540_config:      unconfig
1311	@./mkconfig $(@:_config=) ppc mpc85xx tqm8540
1312
1313TQM8560_config:      unconfig
1314	@./mkconfig $(@:_config=) ppc mpc85xx tqm8560
1315
1316#########################################################################
1317## 74xx/7xx Systems
1318#########################################################################
1319
1320AmigaOneG3SE_config:	unconfig
1321	@./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
1322
1323BAB7xx_config: unconfig
1324	@./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec
1325
1326CPCI750_config:        unconfig
1327	@./mkconfig CPCI750 ppc 74xx_7xx cpci750 esd
1328
1329DB64360_config:  unconfig
1330	@./mkconfig DB64360 ppc 74xx_7xx db64360 Marvell
1331
1332DB64460_config:  unconfig
1333	@./mkconfig DB64460 ppc 74xx_7xx db64460 Marvell
1334
1335ELPPC_config: unconfig
1336	@./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec
1337
1338EVB64260_config	\
1339EVB64260_750CX_config:	unconfig
1340	@./mkconfig EVB64260 ppc 74xx_7xx evb64260
1341
1342P3G4_config: unconfig
1343	@./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
1344
1345PCIPPC2_config \
1346PCIPPC6_config: unconfig
1347	@./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2
1348
1349ZUMA_config:	unconfig
1350	@./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
1351
1352#========================================================================
1353# ARM
1354#========================================================================
1355#########################################################################
1356## StrongARM Systems
1357#########################################################################
1358
1359assabet_config	:	unconfig
1360	@./mkconfig $(@:_config=) arm sa1100 assabet
1361
1362dnp1110_config	:	unconfig
1363	@./mkconfig $(@:_config=) arm sa1100 dnp1110
1364
1365gcplus_config	:	unconfig
1366	@./mkconfig $(@:_config=) arm sa1100 gcplus
1367
1368lart_config	:	unconfig
1369	@./mkconfig $(@:_config=) arm sa1100 lart
1370
1371shannon_config	:	unconfig
1372	@./mkconfig $(@:_config=) arm sa1100 shannon
1373
1374#########################################################################
1375## ARM92xT Systems
1376#########################################################################
1377
1378xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
1379
1380xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
1381
1382xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1383
1384at91rm9200dk_config	:	unconfig
1385	@./mkconfig $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
1386
1387cmc_pu2_config	:	unconfig
1388	@./mkconfig $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
1389
1390########################################################################
1391## ARM Integrator boards
1392## There are two variants /AP && /CP
1393## - many different core modules (CMs) can be used
1394## - some share characteristics
1395## Those without specific cpu support can still use U-Boot
1396## provided the ARM boot monitor (or similar) runs before U-Boot
1397## to set up the platform e.g. map writeable memory to 0x00000000
1398## setup MMU, setup caches etc.
1399## Ported cores are:-
1400## 	ARM926EJ-S
1401## 	ARM946E-S
1402##
1403########################################################################
1404xtract_int_board = $(subst _$(subst integrator$1_,,$(subst _config,,$2)),,$(subst _config,,$2))
1405xtract_int_cm    = $(subst integrator$1_,,$(subst _config,,$2))
1406#########################################################################
1407## Integrator/AP
1408#########################################################################
1409integratorap_config	:	unconfig
1410	@echo -n "/* Integrator configuration implied " >  tmp.fil;	\
1411	 echo    " by Makefile target	*/"		>> tmp.fil;	\
1412	 echo    					>> tmp.fil
1413	@echo -n "#define CONFIG_INTEGRATOR	1"	>> tmp.fil;	\
1414	echo	 "	/* Integrator board	*/"	>> tmp.fil;	\
1415	echo  -n "#define CONFIG_ARCH_INTEGRATOR"	>> tmp.fil;	\
1416	echo	 "	1	/* Integrator/AP */"	>> tmp.fil;	\
1417	echo "/* Core module not defined	*/"	>> tmp.fil;	\
1418	echo -n "#define CONFIG_ARM_INTCM	1"	>> tmp.fil;	\
1419	echo -n "	/* Integrator core module "	>> tmp.fil;	\
1420	echo    "with unknown core	*/"		>> tmp.fil;	\
1421	cpu=arm_intcm;							\
1422	mv tmp.fil ./include/config.h;					\
1423	ubootlds=board/integratorap/u-boot.lds; 			\
1424	sed -e 's/cpu\/.*\/st/cpu\/'$$cpu'\/st/' 			\
1425	                                   $$ubootlds > $$ubootlds.tmp; \
1426	mv -f $$ubootlds.tmp $$ubootlds;				\
1427	./mkconfig -a integratorap arm arm_intcm integratorap;
1428
1429integratorap_CM720T_config		integratorap_CM7TDMI_config	\
1430integratorap_CM920T_config		integratorap_CM920T_ETM_config	\
1431integratorap_CM922T_XA10_config		integratorap_CM926EJ_S_config	\
1432integratorap_CM940T_config		integratorap_CM946E_S_config	\
1433integratorap_CM966E_S_config		integratorap_CM10200E_config	\
1434integratorap_CM10220E_config		integratorap_CM1026EJ_S_config	\
1435integratorap_CM1136JF_S_config	:	unconfig
1436	@echo -n "/* Integrator configuration implied " >  tmp.fil;	\
1437	 echo    " by Makefile target	*/"		>> tmp.fil;	\
1438	 echo    					>> tmp.fil
1439	@echo -n "#define CONFIG_INTEGRATOR	1"	>>  tmp.fil;	\
1440	echo	 "	/* Integrator board	*/"	>> tmp.fil;	\
1441	echo  -n "#define CONFIG_ARCH_INTEGRATOR"	>> tmp.fil;	\
1442	echo	 "	1	/* Integrator/AP */"	>> tmp.fil;	\
1443	cm=$(call xtract_int_cm,ap,$@); 				\
1444	echo  -n "#define CONFIG_$$cm		"	>> tmp.fil;	\
1445	echo     "	/* core module */"		>> tmp.fil;	\
1446	case $$cm in							\
1447	CM920T)								\
1448			echo -n	"#define CONFIG_ARM920" >> tmp.fil;	\
1449			echo -n "T	1	/* CPU"	>> tmp.fil;	\
1450			echo -n " core is ARM920T"	>> tmp.fil;	\
1451			echo    "	*/"		>> tmp.fil;	\
1452			cpu=arm920t;;					\
1453	CM926EJ_S)	echo -n	"#define CONFIG_ARM926" >> tmp.fil;	\
1454			echo -n "EJ_S	1	/* CPU"	>> tmp.fil;	\
1455			echo -n " core is ARM926EJ-S"	>> tmp.fil;	\
1456			echo    "	*/"		>> tmp.fil;	\
1457			cpu=arm926ejs;;					\
1458	CM946E_S)	echo -n	"#define CONFIG_ARM946" >> tmp.fil;	\
1459			echo -n "E_S	1	/* CPU"	>> tmp.fil;	\
1460			echo -n " core is ARM946E-S"	>> tmp.fil;	\
1461			echo    "	*/"		>> tmp.fil;	\
1462			cpu=arm946es;;					\
1463	*)		echo -n "#define CONFIG_ARM_IN"	>> tmp.fil;	\
1464			echo -n "TCM	1	/* Int"	>> tmp.fil;	\
1465			echo -n "egrator core module w" >> tmp.fil;	\
1466			echo -n "ith unported core"	>> tmp.fil;	\
1467			echo    "	*/"		>> tmp.fil;	\
1468			cpu=arm_intcm;;					\
1469	esac; 								\
1470	mv tmp.fil ./include/config.h;					\
1471	ubootlds=board/$(call xtract_int_board,ap,$@)/u-boot.lds; 	\
1472	sed -e 's/cpu\/.*\/st/cpu\/'$$cpu'\/st/' 			\
1473	                                   $$ubootlds > $$ubootlds.tmp; \
1474	mv -f $$ubootlds.tmp $$ubootlds;				\
1475	./mkconfig -a $(call xtract_int_board,ap,$@) arm $$cpu 		\
1476	              $(call xtract_int_board,ap,$@);
1477
1478#########################################################################
1479## Integrator/CP
1480#########################################################################
1481integratorcp_config	:	unconfig
1482	@echo -n "/* Integrator configuration implied " >  tmp.fil;	\
1483	 echo    " by Makefile target	*/"		>> tmp.fil;	\
1484	 echo    					>> tmp.fil
1485	@echo -n "#define CONFIG_INTEGRATOR	1"	>> tmp.fil;	\
1486	echo	 "	/* Integrator board	*/"	>> tmp.fil;	\
1487	echo  -n "#define CONFIG_ARCH_CINTEGRATOR"	>> tmp.fil;	\
1488	echo	 "	1	/* Integrator/CP */"	>> tmp.fil;	\
1489	echo     "/* Core module not defined	*/"	>> tmp.fil;	\
1490	echo -n "#define CONFIG_ARM_INTCM	1"	>> tmp.fil;	\
1491	echo -n "	/* Integrator core module "	>> tmp.fil;	\
1492	echo    "with unknown core	*/"		>> tmp.fil;	\
1493	cpu=arm_intcm;							\
1494	echo -n "#undef CONFIG_CM_MULTIPLE_SSRAM"	>> tmp.fil;	\
1495	echo -n "		/* CM may not have "	>> tmp.fil;	\
1496	echo    "multiple SSRAM mapping	*/"		>> tmp.fil;	\
1497	echo -n "#undef CONFIG_CM_SPD_DETECT	"	>> tmp.fil;	\
1498	echo -n "	/* CM may not support SPD "	>> tmp.fil;	\
1499	echo    "query */"				>> tmp.fil; 	\
1500	echo -n "#undef CONFIG_CM_REMAP		"	>> tmp.fil;	\
1501	echo -n "	/* CM may not support "		>> tmp.fil;	\
1502	echo    "remapping	*/"			>> tmp.fil; 	\
1503	echo -n "#undef CONFIG_CM_INIT		"	>> tmp.fil;	\
1504	echo -n "	/* CM may not have  "		>> tmp.fil;	\
1505	echo    "initialization reg	*/"		>> tmp.fil; 	\
1506	echo -n "#undef CONFIG_CM_TCRAM		"	>> tmp.fil;	\
1507	echo -n "	/* CM may not have TCRAM */"	>> tmp.fil; 	\
1508	mv tmp.fil ./include/config.h;					\
1509	ubootlds=board/integratorcp/u-boot.lds; 			\
1510	sed -e 's/cpu\/.*\/st/cpu\/'$$cpu'\/st/' 			\
1511	                                   $$ubootlds > $$ubootlds.tmp; \
1512	mv -f $$ubootlds.tmp $$ubootlds;				\
1513	./mkconfig -a integratorcp arm arm_intcm integratorcp;
1514
1515integratorcp_CM920T_config		integratorcp_CM920T_ETM_config	\
1516integratorcp_CM922T_XA10_config		integratorcp_CM926EJ_S_config	\
1517integratorcp_CM940T_config		integratorcp_CM946E_S_config	\
1518integratorcp_CM966E_S_config		integratorcp_CM10200E_config	\
1519integratorcp_CM10220E_config		integratorcp_CM1026EJ_S_config	\
1520integratorcp_CM1136JF_S_config	:	unconfig
1521	@echo -n "/* Integrator configuration implied " >  tmp.fil;	\
1522	 echo    " by Makefile target	*/"		>> tmp.fil;	\
1523	 echo    					>> tmp.fil
1524	@echo -n "#define CONFIG_INTEGRATOR	1"	>> tmp.fil;	\
1525	echo	 "	/* Integrator board	*/"	>> tmp.fil;	\
1526	echo  -n "#define CONFIG_ARCH_CINTEGRATOR"	>> tmp.fil;	\
1527	echo	 "	1	/* Integrator/CP */"	>> tmp.fil;	\
1528	cm=$(call xtract_int_cm,cp,$@); 				\
1529	echo  -n "#define CONFIG_$$cm		"	>> tmp.fil;	\
1530	echo     "	/* core module */"		>> tmp.fil;	\
1531	echo "/* $$cm core module	*/" 		>> tmp.fil;	\
1532	case $$cm in							\
1533	CM920T)		echo -n	"#define CONFIG_ARM920" >> tmp.fil;	\
1534			echo -n "T	1	/* CPU"	>> tmp.fil;	\
1535			echo -n " core is ARM920T"	>> tmp.fil;	\
1536			echo    "	*/"		>> tmp.fil;	\
1537			cpu=arm920t;;					\
1538	CM946E_S)	echo -n	"#define CONFIG_ARM946" >> tmp.fil;	\
1539			echo -n "E_S	1	/* CPU"	>> tmp.fil;	\
1540			echo -n " core is ARM946E-S"	>> tmp.fil;	\
1541			echo    "	*/"		>> tmp.fil;	\
1542			cpu=arm946es;;					\
1543	CM926EJ_S)	echo -n	"#define CONFIG_ARM926" >> tmp.fil;	\
1544			echo -n "EJ_S	1	/* CPU"	>> tmp.fil;	\
1545			echo -n " core is ARM926EJ-S"	>> tmp.fil;	\
1546			echo    "	*/"		>> tmp.fil;	\
1547			cpu=arm926ejs;;					\
1548	*)		echo -n "#define CONFIG_ARM_IN"	>> tmp.fil;	\
1549			echo -n "TCM	1	/* Int"	>> tmp.fil;	\
1550			echo -n "egrator core module w" >> tmp.fil;	\
1551			echo -n "ith unported core"	>> tmp.fil;	\
1552			echo    "	*/"		>> tmp.fil;	\
1553			cpu=arm_intcm;;					\
1554	esac; 								\
1555	mv tmp.fil ./include/config.h;					\
1556	ubootlds=board/$(call xtract_int_board,cp,$@)/u-boot.lds; 	\
1557	sed -e 's/cpu\/.*\/st/cpu\/'$$cpu'\/st/' 			\
1558	                                   $$ubootlds > $$ubootlds.tmp; \
1559	mv -f $$ubootlds.tmp $$ubootlds;				\
1560	./mkconfig -a $(call xtract_int_board,cp,$@) arm $$cpu 		\
1561	              $(call xtract_int_board,cp,$@);
1562
1563lpd7a400_config \
1564lpd7a404_config:	unconfig
1565	@./mkconfig $(@:_config=) arm lh7a40x lpd7a40x
1566
1567mx1ads_config	:	unconfig
1568	@./mkconfig $(@:_config=) arm arm920t mx1ads NULL imx
1569
1570mx1fs2_config	:	unconfig
1571	@./mkconfig $(@:_config=) arm arm920t mx1fs2 NULL imx
1572
1573omap1510inn_config :	unconfig
1574	@./mkconfig $(@:_config=) arm arm925t omap1510inn
1575
1576omap5912osk_config :	unconfig
1577	@./mkconfig $(@:_config=) arm arm926ejs omap5912osk
1578
1579omap1610inn_config \
1580omap1610inn_cs0boot_config \
1581omap1610inn_cs3boot_config \
1582omap1610inn_cs_autoboot_config \
1583omap1610h2_config \
1584omap1610h2_cs0boot_config \
1585omap1610h2_cs3boot_config \
1586omap1610h2_cs_autoboot_config:	unconfig
1587	@if [ "$(findstring _cs0boot_, $@)" ] ; then \
1588		echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
1589		echo "... configured for CS0 boot"; \
1590	elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
1591		echo "#define CONFIG_CS_AUTOBOOT" >> ./include/config.h ; \
1592		echo "... configured for CS_AUTO boot"; \
1593	else \
1594		echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
1595		echo "... configured for CS3 boot"; \
1596	fi;
1597	@./mkconfig -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn
1598
1599omap730p2_config \
1600omap730p2_cs0boot_config \
1601omap730p2_cs3boot_config :	unconfig
1602	@if [ "$(findstring _cs0boot_, $@)" ] ; then \
1603		echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
1604		echo "... configured for CS0 boot"; \
1605	else \
1606		echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
1607		echo "... configured for CS3 boot"; \
1608	fi;
1609	@./mkconfig -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2
1610
1611scb9328_config	:	unconfig
1612	@./mkconfig $(@:_config=) arm arm920t scb9328 NULL imx
1613
1614smdk2400_config	:	unconfig
1615	@./mkconfig $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
1616
1617smdk2410_config	:	unconfig
1618	@./mkconfig $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
1619
1620SX1_config :		unconfig
1621	@./mkconfig $(@:_config=) arm arm925t sx1
1622
1623# TRAB default configuration:	8 MB Flash, 32 MB RAM
1624trab_config \
1625trab_bigram_config \
1626trab_bigflash_config \
1627trab_old_config:	unconfig
1628	@ >include/config.h
1629	@[ -z "$(findstring _bigram,$@)" ] || \
1630		{ echo "#define CONFIG_FLASH_8MB"  >>include/config.h ; \
1631		  echo "#define CONFIG_RAM_32MB"   >>include/config.h ; \
1632		  echo "... with 8 MB Flash, 32 MB RAM" ; \
1633		}
1634	@[ -z "$(findstring _bigflash,$@)" ] || \
1635		{ echo "#define CONFIG_FLASH_16MB" >>include/config.h ; \
1636		  echo "#define CONFIG_RAM_16MB"   >>include/config.h ; \
1637		  echo "... with 16 MB Flash, 16 MB RAM" ; \
1638		  echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
1639		}
1640	@[ -z "$(findstring _old,$@)" ] || \
1641		{ echo "#define CONFIG_FLASH_8MB"  >>include/config.h ; \
1642		  echo "#define CONFIG_RAM_16MB"   >>include/config.h ; \
1643		  echo "... with 8 MB Flash, 16 MB RAM" ; \
1644		  echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
1645		}
1646	@./mkconfig -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
1647
1648VCMA9_config	:	unconfig
1649	@./mkconfig $(@:_config=) arm arm920t vcma9 mpl s3c24x0
1650
1651versatile_config :	unconfig
1652	@./mkconfig $(@:_config=) arm arm926ejs versatile
1653
1654voiceblue_smallflash_config	\
1655voiceblue_config:	unconfig
1656	@if [ "$(findstring _smallflash_,$@)" ] ; then \
1657		echo "... boot from lower flash bank" ; \
1658		echo "#define VOICEBLUE_SMALL_FLASH" >>include/config.h ; \
1659		echo "VOICEBLUE_SMALL_FLASH=y" >board/voiceblue/config.tmp ; \
1660	else \
1661		echo "... boot from upper flash bank" ; \
1662		>include/config.h ; \
1663		echo "VOICEBLUE_SMALL_FLASH=n" >board/voiceblue/config.tmp ; \
1664	fi
1665	@./mkconfig -a voiceblue arm arm925t voiceblue
1666
1667cm4008_config	:	unconfig
1668	@./mkconfig $(@:_config=) arm arm920t cm4008 NULL ks8695
1669
1670cm41xx_config	:	unconfig
1671	@./mkconfig $(@:_config=) arm arm920t cm41xx NULL ks8695
1672
1673#########################################################################
1674## S3C44B0 Systems
1675#########################################################################
1676
1677B2_config	:	unconfig
1678	@./mkconfig $(@:_config=) arm s3c44b0 B2 dave
1679
1680#########################################################################
1681## ARM720T Systems
1682#########################################################################
1683
1684ep7312_config	:	unconfig
1685	@./mkconfig $(@:_config=) arm arm720t ep7312
1686
1687impa7_config	:	unconfig
1688	@./mkconfig $(@:_config=) arm arm720t impa7
1689
1690modnet50_config :	unconfig
1691	@./mkconfig $(@:_config=) arm arm720t modnet50
1692
1693evb4510_config :	unconfig
1694	@./mkconfig $(@:_config=) arm arm720t evb4510
1695
1696#########################################################################
1697## XScale Systems
1698#########################################################################
1699
1700adsvix_config	:	unconfig
1701	@./mkconfig $(@:_config=) arm pxa adsvix
1702
1703cerf250_config :	unconfig
1704	@./mkconfig $(@:_config=) arm pxa cerf250
1705
1706cradle_config	:	unconfig
1707	@./mkconfig $(@:_config=) arm pxa cradle
1708
1709csb226_config	:	unconfig
1710	@./mkconfig $(@:_config=) arm pxa csb226
1711
1712innokom_config	:	unconfig
1713	@./mkconfig $(@:_config=) arm pxa innokom
1714
1715ixdp425_config	:	unconfig
1716	@./mkconfig $(@:_config=) arm ixp ixdp425
1717
1718lubbock_config	:	unconfig
1719	@./mkconfig $(@:_config=) arm pxa lubbock
1720
1721logodl_config	:	unconfig
1722	@./mkconfig $(@:_config=) arm pxa logodl
1723
1724wepep250_config	:	unconfig
1725	@./mkconfig $(@:_config=) arm pxa wepep250
1726
1727xaeniax_config	:	unconfig
1728	@./mkconfig $(@:_config=) arm pxa xaeniax
1729
1730xm250_config	:	unconfig
1731	@./mkconfig $(@:_config=) arm pxa xm250
1732
1733xsengine_config :	unconfig
1734	@./mkconfig $(@:_config=) arm pxa xsengine
1735
1736#########################################################################
1737## ARM1136 Systems
1738#########################################################################
1739omap2420h4_config :    unconfig
1740	@./mkconfig $(@:_config=) arm arm1136 omap2420h4
1741
1742#========================================================================
1743# i386
1744#========================================================================
1745#########################################################################
1746## AMD SC520 CDP
1747#########################################################################
1748sc520_cdp_config	:	unconfig
1749	@./mkconfig $(@:_config=) i386 i386 sc520_cdp
1750
1751sc520_spunk_config	:	unconfig
1752	@./mkconfig $(@:_config=) i386 i386 sc520_spunk
1753
1754sc520_spunk_rel_config	:	unconfig
1755	@./mkconfig $(@:_config=) i386 i386 sc520_spunk
1756
1757#========================================================================
1758# MIPS
1759#========================================================================
1760#########################################################################
1761## MIPS32 4Kc
1762#########################################################################
1763
1764xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
1765
1766incaip_100MHz_config	\
1767incaip_133MHz_config	\
1768incaip_150MHz_config	\
1769incaip_config: unconfig
1770	@ >include/config.h
1771	@[ -z "$(findstring _100MHz,$@)" ] || \
1772		{ echo "#define CPU_CLOCK_RATE 100000000" >>include/config.h ; \
1773		  echo "... with 100MHz system clock" ; \
1774		}
1775	@[ -z "$(findstring _133MHz,$@)" ] || \
1776		{ echo "#define CPU_CLOCK_RATE 133000000" >>include/config.h ; \
1777		  echo "... with 133MHz system clock" ; \
1778		}
1779	@[ -z "$(findstring _150MHz,$@)" ] || \
1780		{ echo "#define CPU_CLOCK_RATE 150000000" >>include/config.h ; \
1781		  echo "... with 150MHz system clock" ; \
1782		}
1783	@./mkconfig -a $(call xtract_incaip,$@) mips mips incaip
1784
1785tb0229_config: unconfig
1786	@./mkconfig $(@:_config=) mips mips tb0229
1787
1788#########################################################################
1789## MIPS32 AU1X00
1790#########################################################################
1791dbau1000_config		: 	unconfig
1792	@ >include/config.h
1793	@echo "#define CONFIG_DBAU1000 1" >>include/config.h
1794	@./mkconfig -a dbau1x00 mips mips dbau1x00
1795
1796dbau1100_config		: 	unconfig
1797	@ >include/config.h
1798	@echo "#define CONFIG_DBAU1100 1" >>include/config.h
1799	@./mkconfig -a dbau1x00 mips mips dbau1x00
1800
1801dbau1500_config		: 	unconfig
1802	@ >include/config.h
1803	@echo "#define CONFIG_DBAU1500 1" >>include/config.h
1804	@./mkconfig -a dbau1x00 mips mips dbau1x00
1805
1806dbau1550_config		:	unconfig
1807	@ >include/config.h
1808	@echo "#define CONFIG_DBAU1550 1" >>include/config.h
1809	@./mkconfig -a dbau1x00 mips mips dbau1x00
1810
1811dbau1550_el_config	:	unconfig
1812	@ >include/config.h
1813	@echo "#define CONFIG_DBAU1550 1" >>include/config.h
1814	@./mkconfig -a dbau1x00 mips mips dbau1x00
1815
1816pb1000_config		: 	unconfig
1817	@ >include/config.h
1818	@echo "#define CONFIG_PB1000 1" >>include/config.h
1819	@./mkconfig -a pb1x00 mips mips pb1x00
1820
1821#########################################################################
1822## MIPS64 5Kc
1823#########################################################################
1824
1825purple_config :		unconfig
1826	@./mkconfig $(@:_config=) mips mips purple
1827
1828#========================================================================
1829# Nios
1830#========================================================================
1831#########################################################################
1832## Nios32
1833#########################################################################
1834
1835DK1C20_safe_32_config		\
1836DK1C20_standard_32_config	\
1837DK1C20_config:	unconfig
1838	@ >include/config.h
1839	@[ -z "$(findstring _safe_32,$@)" ] || \
1840		{ echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
1841		  echo "... NIOS 'safe_32' configuration" ; \
1842		}
1843	@[ -z "$(findstring _standard_32,$@)" ] || \
1844		{ echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1845		  echo "... NIOS 'standard_32' configuration" ; \
1846		}
1847	@[ -z "$(findstring DK1C20_config,$@)" ] || \
1848		{ echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1849		  echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
1850		}
1851	@./mkconfig -a DK1C20 nios nios dk1c20 altera
1852
1853DK1S10_safe_32_config		\
1854DK1S10_standard_32_config	\
1855DK1S10_mtx_ldk_20_config	\
1856DK1S10_config:	unconfig
1857	@ >include/config.h
1858	@[ -z "$(findstring _safe_32,$@)" ] || \
1859		{ echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
1860		  echo "... NIOS 'safe_32' configuration" ; \
1861		}
1862	@[ -z "$(findstring _standard_32,$@)" ] || \
1863		{ echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1864		  echo "... NIOS 'standard_32' configuration" ; \
1865		}
1866	@[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
1867		{ echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>include/config.h ; \
1868		  echo "... NIOS 'mtx_ldk_20' configuration" ; \
1869		}
1870	@[ -z "$(findstring DK1S10_config,$@)" ] || \
1871		{ echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1872		  echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
1873		}
1874	@./mkconfig -a DK1S10 nios nios dk1s10 altera
1875
1876ADNPESC1_DNPEVA2_base_32_config	\
1877ADNPESC1_base_32_config		\
1878ADNPESC1_config: unconfig
1879	@ >include/config.h
1880	@[ -z "$(findstring _DNPEVA2,$@)" ] || \
1881		{ echo "#define CONFIG_DNPEVA2 1" >>include/config.h ; \
1882		  echo "... DNP/EVA2 configuration" ; \
1883		}
1884	@[ -z "$(findstring _base_32,$@)" ] || \
1885		{ echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
1886		  echo "... NIOS 'base_32' configuration" ; \
1887		}
1888	@[ -z "$(findstring ADNPESC1_config,$@)" ] || \
1889		{ echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
1890		  echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
1891		}
1892	@./mkconfig -a ADNPESC1 nios nios adnpesc1 ssv
1893
1894#########################################################################
1895## Nios-II
1896#########################################################################
1897
1898PK1C20_config : unconfig
1899	@./mkconfig  PK1C20 nios2 nios2 pk1c20 psyent
1900
1901PCI5441_config : unconfig
1902	@./mkconfig  PCI5441 nios2 nios2 pci5441 psyent
1903
1904#========================================================================
1905# MicroBlaze
1906#========================================================================
1907#########################################################################
1908## Microblaze
1909#########################################################################
1910suzaku_config:	unconfig
1911	@ >include/config.h
1912	@echo "#define CONFIG_SUZAKU 1" >> include/config.h
1913	@./mkconfig -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
1914
1915#########################################################################
1916#########################################################################
1917
1918clean:
1919	find . -type f \
1920		\( -name 'core' -o -name '*.bak' -o -name '*~' \
1921		-o -name '*.o'  -o -name '*.a'  \) -print \
1922		| xargs rm -f
1923	rm -f examples/hello_world examples/timer \
1924	      examples/eepro100_eeprom examples/sched \
1925	      examples/mem_to_mem_idma2intr examples/82559_eeprom \
1926	      examples/test_burst
1927	rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr
1928	rm -f tools/mpc86x_clk tools/ncb
1929	rm -f tools/easylogo/easylogo tools/bmp_logo
1930	rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend
1931	rm -f tools/env/fw_printenv tools/env/fw_setenv
1932	rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image
1933	rm -f board/trab/trab_fkt board/voiceblue/eeprom
1934
1935clobber:	clean
1936	find . -type f \( -name .depend \
1937		-o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
1938		-print0 \
1939		| xargs -0 rm -f
1940	rm -f $(OBJS) *.bak tags TAGS
1941	rm -fr *.*~
1942	rm -f u-boot u-boot.map u-boot.hex $(ALL)
1943	rm -f tools/crc32.c tools/environment.c tools/env/crc32.c
1944	rm -f tools/inca-swap-bytes cpu/mpc824x/bedbug_603e.c
1945	rm -f include/asm/proc include/asm/arch include/asm
1946
1947mrproper \
1948distclean:	clobber unconfig
1949
1950backup:
1951	F=`basename $(TOPDIR)` ; cd .. ; \
1952	gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
1953
1954#########################################################################
1955